diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..bcc833e2 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,137 @@ +name: Create Release +# Release workflow for Mona Sans + +on: + push: + tags: + - 'v*.*' # Matches tags like v1.300, etc. + workflow_dispatch: + inputs: + version: + description: 'Version for testing (e.g., "test-1.4" or "dev-2024-01-01")' + required: true + default: 'test-1.4' + type: string + +permissions: + contents: write # Required to create releases and upload assets + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 # Full history for proper release notes + + - name: Extract version from tag or input + id: version + run: | + if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then + VERSION="${{ github.event.inputs.version }}" + if [[ "$VERSION" == v* ]]; then + TAG="$VERSION" + else + TAG="v$VERSION" + fi + echo "version=${VERSION}" >> $GITHUB_OUTPUT + echo "tag=${TAG}" >> $GITHUB_OUTPUT + else + VERSION=${GITHUB_REF#refs/tags/v} + echo "version=${VERSION}" >> $GITHUB_OUTPUT + echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT + fi + + - name: Build fonts + run: | + cd sources + bash build.sh + cd .. + env: + FB_CONTINUE_ON_ERROR: true + + - name: Prepare release artifacts + run: | + mkdir -p release-artifacts + + # Create static fonts package (OTF + TTF) + zip -r "release-artifacts/mona-sans-static-v${{ steps.version.outputs.version }}.zip" \ + fonts/static/ OFL.txt README.md + + # Create variable fonts package + zip -r "release-artifacts/mona-sans-variable-v${{ steps.version.outputs.version }}.zip" \ + fonts/variable/ OFL.txt README.md + + # Create webfonts package + if [ -d "fonts/webfonts" ]; then + zip -r "release-artifacts/mona-sans-webfonts-v${{ steps.version.outputs.version }}.zip" \ + fonts/webfonts/ OFL.txt README.md + fi + + # Create complete package with all formats + zip -r "release-artifacts/mona-sans-complete-v${{ steps.version.outputs.version }}.zip" \ + fonts/ -x "fonts/googlefonts/*" -x "fonts/googlefonts/**" \ + OFL.txt README.md + + - name: Create release notes + id: release_notes + run: | + cat > release_notes.md << 'EOF' + # Mona Sans ${{ steps.version.outputs.tag }} + + A versatile typeface, designed by GitHub together with Degarism and inspired by industrial-era grotesques. Mona Sans works well across product, web, and print. + + ## Font Packages + + - **Static Fonts** - Individual OTF and TTF files for each weight, width, and style + - **Variable Fonts** - Modern variable font files with adjustable weight and width + - **Web Fonts** - WOFF/WOFF2 files optimized for web use + - **Complete Package** - All font formats in one download + + See the [README](https://github.com/github/mona-sans#readme) for detailed installation instructions. + + ## Font Specifications + + - **Weight Range**: 200-900 (ExtraLight to Black) + - **Width Range**: 75-125 (Condensed to Expanded) + - **Styles**: Roman and Italic + - **Format Support**: OTF, TTF, Variable TTF, WOFF, WOFF2 + EOF + + - name: Create draft release with assets + uses: softprops/action-gh-release@v2 + with: + tag_name: ${{ steps.version.outputs.tag }} + name: Mona Sans ${{ steps.version.outputs.tag }} + body_path: release_notes.md + draft: true + prerelease: false + files: | + release-artifacts/mona-sans-static-v${{ steps.version.outputs.version }}.zip + release-artifacts/mona-sans-variable-v${{ steps.version.outputs.version }}.zip + release-artifacts/mona-sans-webfonts-v${{ steps.version.outputs.version }}.zip + release-artifacts/mona-sans-complete-v${{ steps.version.outputs.version }}.zip + + - name: Upload build artifacts + uses: actions/upload-artifact@v4 + with: + name: mona-sans-fonts-v${{ steps.version.outputs.version }} + path: fonts/ + + - name: Summary + run: | + echo "## Release Summary" >> $GITHUB_STEP_SUMMARY + echo "Created draft release: **Mona Sans ${{ steps.version.outputs.tag }}**" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "### Uploaded Assets:" >> $GITHUB_STEP_SUMMARY + find release-artifacts -maxdepth 1 -name '*.zip' -print0 | while IFS= read -r -d '' file; do + filename=$(basename "$file") + size=$(stat -c %s "$file") + # Convert size in bytes to human-readable format + hr_size=$(numfmt --to=iec-i --suffix=B "$size") + echo "- $filename ($hr_size)" >> $GITHUB_STEP_SUMMARY + done + echo "" >> $GITHUB_STEP_SUMMARY + echo "🔗 **[View Draft Release](https://github.com/${{ github.repository }}/releases/tag/${{ steps.version.outputs.tag }})**" >> $GITHUB_STEP_SUMMARY diff --git a/.gitignore b/.gitignore index a525dcd7..6ce47ff5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,7 @@ .DS_Store -*).glyphs \ No newline at end of file +*).glyphs + +# Ignore ninja and ufo build files +sources/instance_ufos +sources/.ninja_log +sources/build.ninja \ No newline at end of file diff --git a/README.md b/README.md index c24dae99..478928c2 100644 --- a/README.md +++ b/README.md @@ -6,98 +6,73 @@ A strong and versatile typeface, designed together with [Degarism](https://degar Mona Sans is a [variable font](https://web.dev/variable-fonts/). Variable fonts enable different variations of a typeface to be incorporated into one single file, and are supported by all major browsers, allowing for performance benefits and granular design control of the typeface's weight, width, and slant. -![mona-sans](https://user-images.githubusercontent.com/99746865/200648883-dbd47e9a-9d95-483e-aef6-1bfa602eb942.png) +![mona-sans](https://github.com/user-attachments/assets/3d9667f5-30ad-4b95-bc8a-58e38767187c) -## Usage +## Variable font usage -For web, we recommend using `Mona Sans.woff2`. Define the font with a `@font-face` rule, set its **weight** and **stretch** ranges, and use it: +The design space is large, so we've split the font up into a few variable fonts. + +If you want to access the whole design space, use `MonaSansVF[wdth,wght,opsz,ital]`. On the web, you can utilize points on that space like this: ```css @font-face { - font-family: 'Mona Sans'; + font-family: 'Mona Sans VF'; src: - url('Mona-Sans.woff2') format('woff2 supports variations'), - url('Mona-Sans.woff2') format('woff2-variations'); + url('MonaSansVF[wdth,wght,opsz,ital].woff2') format('woff2 supports variations'), + url('MonaSansVF[wdth,wght,opsz,ital].woff2') format('woff2-variations'); font-weight: 200 900; font-stretch: 75% 125%; + font-optical-sizing: auto; } html { - font-family: 'Mona Sans'; + font-family: 'Mona Sans VF'; +} +``` + +Mona Sans includes an optical size axis (`opsz`) that automatically adjusts the font's design for optimal readability at different sizes. The optical size range spans from 1 to 100, where smaller values (1-20) are optimized for body text with improved readability, while larger values (21-100) are designed for display use with refined details and tighter spacing. When `font-optical-sizing: auto` is set, browsers will automatically select the appropriate optical size based on the font size, or you can manually control it using `font-variation-settings: "opsz" [value]`. That looks like this: + +```css +.heading { + font-variation-settings: "wght" 700, "wdth" 125, "opsz" 72; /* Bold, Expanded, Display size */ +} + +.body-text { + font-variation-settings: "wght" 400, "wdth" 100, "opsz" 12; /* Regular, Normal width, Text size */ } ``` To reduce [CLS](https://web.dev/cls/), you can preload the font in the `head` of your document: ```html - + ``` -## Styles -| Style Name | Italic Name | Weight | Width | -| --- | --- | --- | --- | -| UltraLight Condensed | UltraLight Condensed Italic | 200 | 75 | -| Light Condensed | Light Condensed Italic | 300 | 75 | -| Regular Condensed | Regular Condensed Italic | 400 | 75 | -| Medium Condensed | Medium Condensed Italic | 500 | 75 | -| SemiBold Condensed | SemiBold Condensed Italic | 600 | 75 | -| Bold Condensed | Bold Condensed Italic | 700 | 75 | -| ExtraBold Condensed | ExtraBold Condensed Italic | 800 | 75 | -| Black Condensed | Black Condensed Italic | 900 | 75 | -| UltraLight SemiCondensed | UltraLight SemiCondensed Italic | 200 | 87.5 | -| Light SemiCondensed | Light SemiCondensed Italic | 300 | 87.5 | -| Regular SemiCondensed | Regular SemiCondensed Italic | 400 | 87.5 | -| Medium SemiCondensed | Medium SemiCondensed Italic | 500 | 87.5 | -| SemiBold SemiCondensed | SemiBold SemiCondensed Italic | 600 | 87.5 | -| Bold SemiCondensed | Bold SemiCondensed Italic | 700 | 87.5 | -| ExtraBold SemiCondensed | ExtraBold SemiCondensed Italic | 800 | 87.5 | -| Black SemiCondensed | Black SemiCondensed Italic | 900 | 87.5 | -| UltraLight | UltraLight Italic | 200 | 100 | -| Light | Light Italic | 300 | 100 | -| Regular | Regular Italic | 400 | 100 | -| Medium | Medium Italic | 500 | 100 | -| SemiBold | SemiBold Italic | 600 | 100 | -| Bold | Bold Italic | 700 | 100 | -| ExtraBold | ExtraBold Italic | 800 | 100 | -| Black | Black Italic | 900 | 100 | -| UltraLight SemiExpanded | UltraLight SemiExpanded Italic | 200 | 112.5 | -| Light SemiExpanded | Light SemiExpanded Italic | 300 | 112.5 | -| Regular SemiExpanded | Regular SemiExpanded Italic | 400 | 112.5 | -| Medium SemiExpanded | Medium SemiExpanded Italic | 500 | 112.5 | -| SemiBold SemiExpanded | SemiBold SemiExpanded Italic | 600 | 112.5 | -| Bold SemiExpanded | Bold SemiExpanded Italic | 700 | 112.5 | -| ExtraBold SemiExpanded | ExtraBold SemiExpanded Italic | 800 | 112.5 | -| Black SemiExpanded | Black SemiExpanded Italic | 900 | 112.5 | -| UltraLight Expanded | UltraLight Expanded Italic | 200 | 125 | -| Light Expanded | Light Expanded Italic | 300 | 125 | -| Regular Expanded | Regular Expanded Italic | 400 | 125 | -| Medium Expanded | Medium Expanded Italic | 500 | 125 | -| SemiBold Expanded | SemiBold Expanded Italic | 600 | 125 | -| Bold Expanded | Bold Expanded Italic | 700 | 125 | -| ExtraBold Expanded | ExtraBold Expanded Italic | 800 | 125 | -| Black Expanded | Black Expanded Italic | 900 | 125 | +Or you can use one of the other variable font files, which cover small portions of the design space. For example, if you're only using the regular width weights and the italic styles, you can use the `MonaSansVF[wght,opsz,ital]` file instead. ## Stylistic sets -Mona Sans has eight stylistic sets: +Mona Sans has ten stylistic sets: | Set | Description | Example | | --- | --- | --- | -| ss01 | Square diacritical marks | ![ss01](https://github.com/user-attachments/assets/18fa3132-6839-4ef9-afd9-c75a082899ef) | -| ss02 | Wide uppercase I | ![ss02](https://github.com/user-attachments/assets/a0de7f9c-f9c0-4583-ac32-a10d25a54328) | -| ss03 | Lowercase l with tail | ![ss03](https://github.com/user-attachments/assets/8594effd-0528-4af9-8c58-0dfba66b2b45) | -| ss04 | Lowercase l with top serif | ![ss04](https://github.com/user-attachments/assets/7c7610a9-947e-45d5-80fc-71849a257d82) | -| ss05 | Double-storey a | ![ss05](https://github.com/user-attachments/assets/d31a11b8-1809-4a34-bbcb-b8b7057ddef0) | -| ss06 | Double-storey g | ![ss06](https://github.com/user-attachments/assets/ca8bef04-68d8-4c36-bfa6-8313d5642a9d) | -| ss07 | Round G | ![ss07](https://github.com/user-attachments/assets/4d5fb045-df90-4dc7-8dbb-3f2a271477df) | -| ss08 | Tabular zero with straight bar | ![ss08](https://github.com/user-attachments/assets/6c54f0eb-0054-4876-a366-1c00d955b89b) | - -When using Mona Sans on the web, you can control each stylistic set with the syntax `"ssXX" on/off`, e.g.: +| ss01 | Square diacritical marks | | +| ss02 | Wide uppercase I | | +| ss03 | Lowercase l with tail | | +| ss04 | Lowercase l with top serif | | +| ss05 | Double-storey a | | +| ss06 | Double-storey g | | +| ss07 | Square G | | +| ss08 | Tabular zero with straight bar | | +| ss09 | Q with diagonal arm | | +| ss10 | J with bowl | | + +When using Mona Sans on the web, you can control each stylistic set with the syntax `"ssXX" on/off`. If you wanted square diacritical marks, small letter L distinct from capital I, and alternative small letter g it would look like this: ```css html { - font-family: 'Mona Sans'; - font-feature-settings: "ss01" on, "ss03" on, "ss05" on; /* Turns on square diacritical marks, small letter L distinct from capital I, and alternative small letter g */ + font-family: 'Mona Sans VF'; + font-feature-settings: "ss01" on, "ss03" on, "ss05" on; } ``` @@ -115,5 +90,44 @@ Mona Sans comes with seven ligatures: | ti | ![ti](https://github.com/user-attachments/assets/556aab9f-e8f5-40dd-b8d2-70903d0cab65) | | tt | ![tt](https://github.com/user-attachments/assets/d0392c30-2b8c-4646-b578-0ae66a328505) | +## Mona Sans Styles + +With the newly added monospace and display styles, Mona Sans’ design space now spans 128 instances. Below is a map for the whole space. Style entries with a hyphen are elidable, meaning they are the default and have no name. + +| Axes | Mapping | Style name | +| --- | --- | --- | +| Weight (wght) | 200 | ExtraLight | +| | 300 | Light | +| - | 400 | Regular | +| - | 500 | Medium | +| - | 600 | SemiBold | +| - | 700 | Bold | +| - | 800 | ExtraBold | +| - | 900 | Black | +| Width (wdth) | 75 | Condensed | +| - | 87.5 | SemiCondensed | +| - | 100 | - | +| - | 112.5 | SemiExpanded | +| - | 125 | Expanded | +| Italic (ital) | 0 | Roman | +| - | 1 | Italic | +| Optical Size (opsz) | 20 | - | +| - | 72 | Display | + +### Mona Sans Monospace Styles + +![mona-mono](https://github.com/user-attachments/assets/dd55d2ac-8ba4-4126-89e3-6b125b090fc7) + +| Family or Axes | Mapping | Styles | +| --- | --- | --- | +| Weight (wght) | 200 | ExtraLight | +| - | 300 | Light | +| - | 400 | Regular | +| - | 500 | Medium | +| - | 600 | SemiBold | +| - | 700 | Bold | +| - | 800 | ExtraBold | +| - | 900 | Black | + ## License Mona Sans is licensed under the [SIL Open Font License v1.1](https://scripts.sil.org/OFL). diff --git a/build.log b/build.log new file mode 100644 index 00000000..61441cab --- /dev/null +++ b/build.log @@ -0,0 +1,55 @@ +Starting Mona Sans Google Fonts build process... +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +[1/841] buildVariable +FAILED: /var/folders/c8/prxw74zj4qsczvrt0l8cjm7w0000gn/T/tmp4eaghyil +/Library/Developer/CommandLineTools/usr/bin/python3 -m gftools.builder.jobrunner fontmake --output-path /var/folders/c8/prxw74zj4qsczvrt0l8cjm7w0000gn/T/tmp4eaghyil -o variable -g MonaSans.glyphspackage --filter ... --filter FlattenComponentsFilter --filter DecomposeTransformedComponentsFilter +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( + +Command failed: +fontmake --output-path /var/folders/c8/prxw74zj4qsczvrt0l8cjm7w0000gn/T/tmp4eaghyil -o variable -g MonaSans.glyphspackage --filter ... --filter FlattenComponentsFilter --filter DecomposeTransformedComponentsFilter + +INFO:fontmake.font_project:Building master UFOs and designspace from Glyphs source +INFO:glyphsLib.parser:Parsing .glyphs file +INFO:glyphsLib.builder:Running 'propagate_all_anchors' transformation +INFO:fontmake.font_project:Loading 36 DesignSpace source UFOs +fontmake: Error: In 'MonaSans.glyphspackage' -> 'master_ufo/MonaSans.designspace': can't specify output path because there are several VFs to build + +[2/841] instantiateUfo +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +fontmake -i Mona Sans Display ExtraLight -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos +[3/841] instantiateUfo +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +fontmake -i Mona Sans Display Light -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos +[4/841] instantiateUfo +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +fontmake -i Mona Sans Display SemiCondensed Black -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos +[5/841] instantiateUfo +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +fontmake -i Mona Sans Display SemiCondensed Regular -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos +[6/841] instantiateUfo +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +fontmake -i Mona Sans Display SemiCondensed ExtraBold -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos +[7/841] instantiateUfo +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +fontmake -i Mona Sans Display SemiCondensed Light -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos +[8/841] instantiateUfo +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +fontmake -i Mona Sans Display SemiCondensed Medium -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos +[9/841] instantiateUfo +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +fontmake -i Mona Sans Display SemiCondensed SemiBold -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos +[10/841] instantiateUfo +/Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 + warnings.warn( +fontmake -i Mona Sans Display SemiCondensed Bold -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos +ninja: build stopped: subcommand failed. diff --git a/fonts/otf/MonaSans-Black.otf b/fonts/otf/MonaSans-Black.otf deleted file mode 100644 index cd135640..00000000 Binary files a/fonts/otf/MonaSans-Black.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-BlackItalic.otf b/fonts/otf/MonaSans-BlackItalic.otf deleted file mode 100644 index ba524497..00000000 Binary files a/fonts/otf/MonaSans-BlackItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-Bold.otf b/fonts/otf/MonaSans-Bold.otf deleted file mode 100644 index 1ffd92e8..00000000 Binary files a/fonts/otf/MonaSans-Bold.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-BoldItalic.otf b/fonts/otf/MonaSans-BoldItalic.otf deleted file mode 100644 index 11bc231b..00000000 Binary files a/fonts/otf/MonaSans-BoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-ExtraBold.otf b/fonts/otf/MonaSans-ExtraBold.otf deleted file mode 100644 index 5e65172d..00000000 Binary files a/fonts/otf/MonaSans-ExtraBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-ExtraBoldItalic.otf b/fonts/otf/MonaSans-ExtraBoldItalic.otf deleted file mode 100644 index 65b8c635..00000000 Binary files a/fonts/otf/MonaSans-ExtraBoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-ExtraLight.otf b/fonts/otf/MonaSans-ExtraLight.otf deleted file mode 100644 index 59fefe66..00000000 Binary files a/fonts/otf/MonaSans-ExtraLight.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-ExtraLightItalic.otf b/fonts/otf/MonaSans-ExtraLightItalic.otf deleted file mode 100644 index 73b34520..00000000 Binary files a/fonts/otf/MonaSans-ExtraLightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-Italic.otf b/fonts/otf/MonaSans-Italic.otf deleted file mode 100644 index a9549cc2..00000000 Binary files a/fonts/otf/MonaSans-Italic.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-Light.otf b/fonts/otf/MonaSans-Light.otf deleted file mode 100644 index c50ed867..00000000 Binary files a/fonts/otf/MonaSans-Light.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-LightItalic.otf b/fonts/otf/MonaSans-LightItalic.otf deleted file mode 100644 index caf74b76..00000000 Binary files a/fonts/otf/MonaSans-LightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-Medium.otf b/fonts/otf/MonaSans-Medium.otf deleted file mode 100644 index 04b5e232..00000000 Binary files a/fonts/otf/MonaSans-Medium.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-MediumItalic.otf b/fonts/otf/MonaSans-MediumItalic.otf deleted file mode 100644 index aa835f3a..00000000 Binary files a/fonts/otf/MonaSans-MediumItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-Regular.otf b/fonts/otf/MonaSans-Regular.otf deleted file mode 100644 index ff188c27..00000000 Binary files a/fonts/otf/MonaSans-Regular.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-SemiBold.otf b/fonts/otf/MonaSans-SemiBold.otf deleted file mode 100644 index 0cbb1935..00000000 Binary files a/fonts/otf/MonaSans-SemiBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSans-SemiBoldItalic.otf b/fonts/otf/MonaSans-SemiBoldItalic.otf deleted file mode 100644 index 6b556260..00000000 Binary files a/fonts/otf/MonaSans-SemiBoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-Black.otf b/fonts/otf/MonaSansCondensed-Black.otf deleted file mode 100644 index db943d7f..00000000 Binary files a/fonts/otf/MonaSansCondensed-Black.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-BlackItalic.otf b/fonts/otf/MonaSansCondensed-BlackItalic.otf deleted file mode 100644 index f595b8a5..00000000 Binary files a/fonts/otf/MonaSansCondensed-BlackItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-Bold.otf b/fonts/otf/MonaSansCondensed-Bold.otf deleted file mode 100644 index ef7e432e..00000000 Binary files a/fonts/otf/MonaSansCondensed-Bold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-BoldItalic.otf b/fonts/otf/MonaSansCondensed-BoldItalic.otf deleted file mode 100644 index 6a39dad7..00000000 Binary files a/fonts/otf/MonaSansCondensed-BoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-ExtraBold.otf b/fonts/otf/MonaSansCondensed-ExtraBold.otf deleted file mode 100644 index 1d0aa016..00000000 Binary files a/fonts/otf/MonaSansCondensed-ExtraBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-ExtraBoldItalic.otf b/fonts/otf/MonaSansCondensed-ExtraBoldItalic.otf deleted file mode 100644 index 313166d3..00000000 Binary files a/fonts/otf/MonaSansCondensed-ExtraBoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-ExtraLight.otf b/fonts/otf/MonaSansCondensed-ExtraLight.otf deleted file mode 100644 index b0e7e8ba..00000000 Binary files a/fonts/otf/MonaSansCondensed-ExtraLight.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-ExtraLightItalic.otf b/fonts/otf/MonaSansCondensed-ExtraLightItalic.otf deleted file mode 100644 index 6d979ba5..00000000 Binary files a/fonts/otf/MonaSansCondensed-ExtraLightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-Italic.otf b/fonts/otf/MonaSansCondensed-Italic.otf deleted file mode 100644 index 5652346b..00000000 Binary files a/fonts/otf/MonaSansCondensed-Italic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-Light.otf b/fonts/otf/MonaSansCondensed-Light.otf deleted file mode 100644 index dd9fa9d0..00000000 Binary files a/fonts/otf/MonaSansCondensed-Light.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-LightItalic.otf b/fonts/otf/MonaSansCondensed-LightItalic.otf deleted file mode 100644 index deb6ac21..00000000 Binary files a/fonts/otf/MonaSansCondensed-LightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-Medium.otf b/fonts/otf/MonaSansCondensed-Medium.otf deleted file mode 100644 index 18926d1a..00000000 Binary files a/fonts/otf/MonaSansCondensed-Medium.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-MediumItalic.otf b/fonts/otf/MonaSansCondensed-MediumItalic.otf deleted file mode 100644 index c80f2124..00000000 Binary files a/fonts/otf/MonaSansCondensed-MediumItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-Regular.otf b/fonts/otf/MonaSansCondensed-Regular.otf deleted file mode 100644 index 8ab3b71c..00000000 Binary files a/fonts/otf/MonaSansCondensed-Regular.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-SemiBold.otf b/fonts/otf/MonaSansCondensed-SemiBold.otf deleted file mode 100644 index 65e4546f..00000000 Binary files a/fonts/otf/MonaSansCondensed-SemiBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansCondensed-SemiBoldItalic.otf b/fonts/otf/MonaSansCondensed-SemiBoldItalic.otf deleted file mode 100644 index 0e7c6801..00000000 Binary files a/fonts/otf/MonaSansCondensed-SemiBoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-Black.otf b/fonts/otf/MonaSansExpanded-Black.otf deleted file mode 100644 index e3a6b48e..00000000 Binary files a/fonts/otf/MonaSansExpanded-Black.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-BlackItalic.otf b/fonts/otf/MonaSansExpanded-BlackItalic.otf deleted file mode 100644 index ac72b608..00000000 Binary files a/fonts/otf/MonaSansExpanded-BlackItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-Bold.otf b/fonts/otf/MonaSansExpanded-Bold.otf deleted file mode 100644 index 7f73e2c2..00000000 Binary files a/fonts/otf/MonaSansExpanded-Bold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-BoldItalic.otf b/fonts/otf/MonaSansExpanded-BoldItalic.otf deleted file mode 100644 index 0fead271..00000000 Binary files a/fonts/otf/MonaSansExpanded-BoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-ExtraBold.otf b/fonts/otf/MonaSansExpanded-ExtraBold.otf deleted file mode 100644 index 6ef1425e..00000000 Binary files a/fonts/otf/MonaSansExpanded-ExtraBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-ExtraBoldItalic.otf b/fonts/otf/MonaSansExpanded-ExtraBoldItalic.otf deleted file mode 100644 index 8371d6c3..00000000 Binary files a/fonts/otf/MonaSansExpanded-ExtraBoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-ExtraLight.otf b/fonts/otf/MonaSansExpanded-ExtraLight.otf deleted file mode 100644 index a28ea5fd..00000000 Binary files a/fonts/otf/MonaSansExpanded-ExtraLight.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-ExtraLightItalic.otf b/fonts/otf/MonaSansExpanded-ExtraLightItalic.otf deleted file mode 100644 index c3a196db..00000000 Binary files a/fonts/otf/MonaSansExpanded-ExtraLightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-Italic.otf b/fonts/otf/MonaSansExpanded-Italic.otf deleted file mode 100644 index 9403d932..00000000 Binary files a/fonts/otf/MonaSansExpanded-Italic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-Light.otf b/fonts/otf/MonaSansExpanded-Light.otf deleted file mode 100644 index 693e609b..00000000 Binary files a/fonts/otf/MonaSansExpanded-Light.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-LightItalic.otf b/fonts/otf/MonaSansExpanded-LightItalic.otf deleted file mode 100644 index 0660890d..00000000 Binary files a/fonts/otf/MonaSansExpanded-LightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-Medium.otf b/fonts/otf/MonaSansExpanded-Medium.otf deleted file mode 100644 index 8b811d64..00000000 Binary files a/fonts/otf/MonaSansExpanded-Medium.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-MediumItalic.otf b/fonts/otf/MonaSansExpanded-MediumItalic.otf deleted file mode 100644 index 3a3c8af2..00000000 Binary files a/fonts/otf/MonaSansExpanded-MediumItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-Regular.otf b/fonts/otf/MonaSansExpanded-Regular.otf deleted file mode 100644 index 8f468003..00000000 Binary files a/fonts/otf/MonaSansExpanded-Regular.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-SemiBold.otf b/fonts/otf/MonaSansExpanded-SemiBold.otf deleted file mode 100644 index 3de139f2..00000000 Binary files a/fonts/otf/MonaSansExpanded-SemiBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansExpanded-SemiBoldItalic.otf b/fonts/otf/MonaSansExpanded-SemiBoldItalic.otf deleted file mode 100644 index 45a8e1e5..00000000 Binary files a/fonts/otf/MonaSansExpanded-SemiBoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-Black.otf b/fonts/otf/MonaSansSemiCondensed-Black.otf deleted file mode 100644 index 0f1138cf..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-Black.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-BlackItalic.otf b/fonts/otf/MonaSansSemiCondensed-BlackItalic.otf deleted file mode 100644 index b401ee93..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-BlackItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-Bold.otf b/fonts/otf/MonaSansSemiCondensed-Bold.otf deleted file mode 100644 index 14b9922b..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-Bold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-BoldItalic.otf b/fonts/otf/MonaSansSemiCondensed-BoldItalic.otf deleted file mode 100644 index ee7caee4..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-BoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-ExtraBold.otf b/fonts/otf/MonaSansSemiCondensed-ExtraBold.otf deleted file mode 100644 index e4ebd694..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-ExtraBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-ExtraBoldItalic.otf b/fonts/otf/MonaSansSemiCondensed-ExtraBoldItalic.otf deleted file mode 100644 index 5e2d8dcd..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-ExtraBoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-ExtraLight.otf b/fonts/otf/MonaSansSemiCondensed-ExtraLight.otf deleted file mode 100644 index 8278c8ae..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-ExtraLight.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-ExtraLightItalic.otf b/fonts/otf/MonaSansSemiCondensed-ExtraLightItalic.otf deleted file mode 100644 index 050b01dc..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-ExtraLightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-Italic.otf b/fonts/otf/MonaSansSemiCondensed-Italic.otf deleted file mode 100644 index 585e10dd..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-Italic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-Light.otf b/fonts/otf/MonaSansSemiCondensed-Light.otf deleted file mode 100644 index 77fd1871..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-Light.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-LightItalic.otf b/fonts/otf/MonaSansSemiCondensed-LightItalic.otf deleted file mode 100644 index 3551715d..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-LightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-Medium.otf b/fonts/otf/MonaSansSemiCondensed-Medium.otf deleted file mode 100644 index 1910d4f5..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-Medium.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-MediumItalic.otf b/fonts/otf/MonaSansSemiCondensed-MediumItalic.otf deleted file mode 100644 index 8848b3fe..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-MediumItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-Regular.otf b/fonts/otf/MonaSansSemiCondensed-Regular.otf deleted file mode 100644 index 97684bf7..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-Regular.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-SemiBold.otf b/fonts/otf/MonaSansSemiCondensed-SemiBold.otf deleted file mode 100644 index d76fead3..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-SemiBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiCondensed-SemiBoldItalic.otf b/fonts/otf/MonaSansSemiCondensed-SemiBoldItalic.otf deleted file mode 100644 index c3c1cc5f..00000000 Binary files a/fonts/otf/MonaSansSemiCondensed-SemiBoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-Black.otf b/fonts/otf/MonaSansSemiExpanded-Black.otf deleted file mode 100644 index 02108d14..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-Black.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-BlackItalic.otf b/fonts/otf/MonaSansSemiExpanded-BlackItalic.otf deleted file mode 100644 index 555f517c..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-BlackItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-Bold.otf b/fonts/otf/MonaSansSemiExpanded-Bold.otf deleted file mode 100644 index dc4eec37..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-Bold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-BoldItalic.otf b/fonts/otf/MonaSansSemiExpanded-BoldItalic.otf deleted file mode 100644 index a660156a..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-BoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-ExtraBold.otf b/fonts/otf/MonaSansSemiExpanded-ExtraBold.otf deleted file mode 100644 index 7aed8cb8..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-ExtraBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-ExtraBoldItalic.otf b/fonts/otf/MonaSansSemiExpanded-ExtraBoldItalic.otf deleted file mode 100644 index 54e1a395..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-ExtraBoldItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-ExtraLight.otf b/fonts/otf/MonaSansSemiExpanded-ExtraLight.otf deleted file mode 100644 index 2fb4f857..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-ExtraLight.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-ExtraLightItalic.otf b/fonts/otf/MonaSansSemiExpanded-ExtraLightItalic.otf deleted file mode 100644 index fdd4223a..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-ExtraLightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-Italic.otf b/fonts/otf/MonaSansSemiExpanded-Italic.otf deleted file mode 100644 index 8067f296..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-Italic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-Light.otf b/fonts/otf/MonaSansSemiExpanded-Light.otf deleted file mode 100644 index 3675e791..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-Light.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-LightItalic.otf b/fonts/otf/MonaSansSemiExpanded-LightItalic.otf deleted file mode 100644 index 1fbea1d9..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-LightItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-Medium.otf b/fonts/otf/MonaSansSemiExpanded-Medium.otf deleted file mode 100644 index 3232bae1..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-Medium.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-MediumItalic.otf b/fonts/otf/MonaSansSemiExpanded-MediumItalic.otf deleted file mode 100644 index e79bb9fd..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-MediumItalic.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-Regular.otf b/fonts/otf/MonaSansSemiExpanded-Regular.otf deleted file mode 100644 index eeb5bdad..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-Regular.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-SemiBold.otf b/fonts/otf/MonaSansSemiExpanded-SemiBold.otf deleted file mode 100644 index 99aad01a..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-SemiBold.otf and /dev/null differ diff --git a/fonts/otf/MonaSansSemiExpanded-SemiBoldItalic.otf b/fonts/otf/MonaSansSemiExpanded-SemiBoldItalic.otf deleted file mode 100644 index 505c7e27..00000000 Binary files a/fonts/otf/MonaSansSemiExpanded-SemiBoldItalic.otf and /dev/null differ diff --git a/fonts/static/otf/MonaSans-Black.otf b/fonts/static/otf/MonaSans-Black.otf new file mode 100644 index 00000000..7f9b5128 Binary files /dev/null and b/fonts/static/otf/MonaSans-Black.otf differ diff --git a/fonts/static/otf/MonaSans-BlackItalic.otf b/fonts/static/otf/MonaSans-BlackItalic.otf new file mode 100644 index 00000000..b808235a Binary files /dev/null and b/fonts/static/otf/MonaSans-BlackItalic.otf differ diff --git a/fonts/static/otf/MonaSans-Bold.otf b/fonts/static/otf/MonaSans-Bold.otf new file mode 100644 index 00000000..9426f99b Binary files /dev/null and b/fonts/static/otf/MonaSans-Bold.otf differ diff --git a/fonts/static/otf/MonaSans-BoldItalic.otf b/fonts/static/otf/MonaSans-BoldItalic.otf new file mode 100644 index 00000000..9a455b6e Binary files /dev/null and b/fonts/static/otf/MonaSans-BoldItalic.otf differ diff --git a/fonts/static/otf/MonaSans-ExtraBold.otf b/fonts/static/otf/MonaSans-ExtraBold.otf new file mode 100644 index 00000000..fa89b0ed Binary files /dev/null and b/fonts/static/otf/MonaSans-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSans-ExtraBoldItalic.otf b/fonts/static/otf/MonaSans-ExtraBoldItalic.otf new file mode 100644 index 00000000..ae97c612 Binary files /dev/null and b/fonts/static/otf/MonaSans-ExtraBoldItalic.otf differ diff --git a/fonts/static/otf/MonaSans-ExtraLight.otf b/fonts/static/otf/MonaSans-ExtraLight.otf new file mode 100644 index 00000000..acb57e63 Binary files /dev/null and b/fonts/static/otf/MonaSans-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSans-ExtraLightItalic.otf b/fonts/static/otf/MonaSans-ExtraLightItalic.otf new file mode 100644 index 00000000..9d997fab Binary files /dev/null and b/fonts/static/otf/MonaSans-ExtraLightItalic.otf differ diff --git a/fonts/static/otf/MonaSans-Italic.otf b/fonts/static/otf/MonaSans-Italic.otf new file mode 100644 index 00000000..ae9e83ad Binary files /dev/null and b/fonts/static/otf/MonaSans-Italic.otf differ diff --git a/fonts/static/otf/MonaSans-Light.otf b/fonts/static/otf/MonaSans-Light.otf new file mode 100644 index 00000000..a7578142 Binary files /dev/null and b/fonts/static/otf/MonaSans-Light.otf differ diff --git a/fonts/static/otf/MonaSans-LightItalic.otf b/fonts/static/otf/MonaSans-LightItalic.otf new file mode 100644 index 00000000..9a8ecbb3 Binary files /dev/null and b/fonts/static/otf/MonaSans-LightItalic.otf differ diff --git a/fonts/static/otf/MonaSans-Medium.otf b/fonts/static/otf/MonaSans-Medium.otf new file mode 100644 index 00000000..df30d306 Binary files /dev/null and b/fonts/static/otf/MonaSans-Medium.otf differ diff --git a/fonts/static/otf/MonaSans-MediumItalic.otf b/fonts/static/otf/MonaSans-MediumItalic.otf new file mode 100644 index 00000000..e4d2c9ee Binary files /dev/null and b/fonts/static/otf/MonaSans-MediumItalic.otf differ diff --git a/fonts/static/otf/MonaSans-Regular.otf b/fonts/static/otf/MonaSans-Regular.otf new file mode 100644 index 00000000..68bbebcb Binary files /dev/null and b/fonts/static/otf/MonaSans-Regular.otf differ diff --git a/fonts/static/otf/MonaSans-SemiBold.otf b/fonts/static/otf/MonaSans-SemiBold.otf new file mode 100644 index 00000000..0e6e8d8e Binary files /dev/null and b/fonts/static/otf/MonaSans-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSans-SemiBoldItalic.otf b/fonts/static/otf/MonaSans-SemiBoldItalic.otf new file mode 100644 index 00000000..732ce944 Binary files /dev/null and b/fonts/static/otf/MonaSans-SemiBoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-Black.otf b/fonts/static/otf/MonaSansCondensed-Black.otf new file mode 100644 index 00000000..27fa0a1f Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-Black.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-BlackItalic.otf b/fonts/static/otf/MonaSansCondensed-BlackItalic.otf new file mode 100644 index 00000000..6252eaf3 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-BlackItalic.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-Bold.otf b/fonts/static/otf/MonaSansCondensed-Bold.otf new file mode 100644 index 00000000..7dc00430 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-Bold.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-BoldItalic.otf b/fonts/static/otf/MonaSansCondensed-BoldItalic.otf new file mode 100644 index 00000000..03630844 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-BoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-ExtraBold.otf b/fonts/static/otf/MonaSansCondensed-ExtraBold.otf new file mode 100644 index 00000000..eafec5c0 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-ExtraBoldItalic.otf b/fonts/static/otf/MonaSansCondensed-ExtraBoldItalic.otf new file mode 100644 index 00000000..a37819bd Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-ExtraBoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-ExtraLight.otf b/fonts/static/otf/MonaSansCondensed-ExtraLight.otf new file mode 100644 index 00000000..5a57ae6c Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-ExtraLightItalic.otf b/fonts/static/otf/MonaSansCondensed-ExtraLightItalic.otf new file mode 100644 index 00000000..7544892d Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-ExtraLightItalic.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-Italic.otf b/fonts/static/otf/MonaSansCondensed-Italic.otf new file mode 100644 index 00000000..b8e2e8f5 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-Italic.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-Light.otf b/fonts/static/otf/MonaSansCondensed-Light.otf new file mode 100644 index 00000000..9e503a98 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-Light.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-LightItalic.otf b/fonts/static/otf/MonaSansCondensed-LightItalic.otf new file mode 100644 index 00000000..d0368f43 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-LightItalic.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-Medium.otf b/fonts/static/otf/MonaSansCondensed-Medium.otf new file mode 100644 index 00000000..e71bf9f0 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-Medium.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-MediumItalic.otf b/fonts/static/otf/MonaSansCondensed-MediumItalic.otf new file mode 100644 index 00000000..20eca78a Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-MediumItalic.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-Regular.otf b/fonts/static/otf/MonaSansCondensed-Regular.otf new file mode 100644 index 00000000..ed799012 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-Regular.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-SemiBold.otf b/fonts/static/otf/MonaSansCondensed-SemiBold.otf new file mode 100644 index 00000000..0517e536 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansCondensed-SemiBoldItalic.otf b/fonts/static/otf/MonaSansCondensed-SemiBoldItalic.otf new file mode 100644 index 00000000..26fe5701 Binary files /dev/null and b/fonts/static/otf/MonaSansCondensed-SemiBoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansDisplay-Black.otf b/fonts/static/otf/MonaSansDisplay-Black.otf new file mode 100644 index 00000000..85f40fc5 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplay-Black.otf differ diff --git a/fonts/static/otf/MonaSansDisplay-Bold.otf b/fonts/static/otf/MonaSansDisplay-Bold.otf new file mode 100644 index 00000000..9b8c7adb Binary files /dev/null and b/fonts/static/otf/MonaSansDisplay-Bold.otf differ diff --git a/fonts/static/otf/MonaSansDisplay-ExtraBold.otf b/fonts/static/otf/MonaSansDisplay-ExtraBold.otf new file mode 100644 index 00000000..20821ecb Binary files /dev/null and b/fonts/static/otf/MonaSansDisplay-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansDisplay-ExtraLight.otf b/fonts/static/otf/MonaSansDisplay-ExtraLight.otf new file mode 100644 index 00000000..e1482d0b Binary files /dev/null and b/fonts/static/otf/MonaSansDisplay-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansDisplay-Light.otf b/fonts/static/otf/MonaSansDisplay-Light.otf new file mode 100644 index 00000000..df90931a Binary files /dev/null and b/fonts/static/otf/MonaSansDisplay-Light.otf differ diff --git a/fonts/static/otf/MonaSansDisplay-Medium.otf b/fonts/static/otf/MonaSansDisplay-Medium.otf new file mode 100644 index 00000000..b825405a Binary files /dev/null and b/fonts/static/otf/MonaSansDisplay-Medium.otf differ diff --git a/fonts/static/otf/MonaSansDisplay-Regular.otf b/fonts/static/otf/MonaSansDisplay-Regular.otf new file mode 100644 index 00000000..03284c87 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplay-Regular.otf differ diff --git a/fonts/static/otf/MonaSansDisplay-SemiBold.otf b/fonts/static/otf/MonaSansDisplay-SemiBold.otf new file mode 100644 index 00000000..84cb5918 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplay-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansDisplayCondensed-Black.otf b/fonts/static/otf/MonaSansDisplayCondensed-Black.otf new file mode 100644 index 00000000..1b11ae9f Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayCondensed-Black.otf differ diff --git a/fonts/static/otf/MonaSansDisplayCondensed-Bold.otf b/fonts/static/otf/MonaSansDisplayCondensed-Bold.otf new file mode 100644 index 00000000..9fc5d42f Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayCondensed-Bold.otf differ diff --git a/fonts/static/otf/MonaSansDisplayCondensed-ExtraBold.otf b/fonts/static/otf/MonaSansDisplayCondensed-ExtraBold.otf new file mode 100644 index 00000000..f3c4d056 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayCondensed-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansDisplayCondensed-ExtraLight.otf b/fonts/static/otf/MonaSansDisplayCondensed-ExtraLight.otf new file mode 100644 index 00000000..ec0faa28 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayCondensed-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansDisplayCondensed-Light.otf b/fonts/static/otf/MonaSansDisplayCondensed-Light.otf new file mode 100644 index 00000000..bc0ea52b Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayCondensed-Light.otf differ diff --git a/fonts/static/otf/MonaSansDisplayCondensed-Medium.otf b/fonts/static/otf/MonaSansDisplayCondensed-Medium.otf new file mode 100644 index 00000000..2c3ba105 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayCondensed-Medium.otf differ diff --git a/fonts/static/otf/MonaSansDisplayCondensed-Regular.otf b/fonts/static/otf/MonaSansDisplayCondensed-Regular.otf new file mode 100644 index 00000000..db8f425c Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayCondensed-Regular.otf differ diff --git a/fonts/static/otf/MonaSansDisplayCondensed-SemiBold.otf b/fonts/static/otf/MonaSansDisplayCondensed-SemiBold.otf new file mode 100644 index 00000000..3f6f1654 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayCondensed-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansDisplayExpanded-Black.otf b/fonts/static/otf/MonaSansDisplayExpanded-Black.otf new file mode 100644 index 00000000..28e9e85b Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayExpanded-Black.otf differ diff --git a/fonts/static/otf/MonaSansDisplayExpanded-Bold.otf b/fonts/static/otf/MonaSansDisplayExpanded-Bold.otf new file mode 100644 index 00000000..4c30fa0a Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayExpanded-Bold.otf differ diff --git a/fonts/static/otf/MonaSansDisplayExpanded-ExtraBold.otf b/fonts/static/otf/MonaSansDisplayExpanded-ExtraBold.otf new file mode 100644 index 00000000..ea22ea03 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayExpanded-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansDisplayExpanded-ExtraLight.otf b/fonts/static/otf/MonaSansDisplayExpanded-ExtraLight.otf new file mode 100644 index 00000000..78c74899 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayExpanded-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansDisplayExpanded-Light.otf b/fonts/static/otf/MonaSansDisplayExpanded-Light.otf new file mode 100644 index 00000000..426d15e0 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayExpanded-Light.otf differ diff --git a/fonts/static/otf/MonaSansDisplayExpanded-Medium.otf b/fonts/static/otf/MonaSansDisplayExpanded-Medium.otf new file mode 100644 index 00000000..d87c9739 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayExpanded-Medium.otf differ diff --git a/fonts/static/otf/MonaSansDisplayExpanded-Regular.otf b/fonts/static/otf/MonaSansDisplayExpanded-Regular.otf new file mode 100644 index 00000000..96aabf50 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayExpanded-Regular.otf differ diff --git a/fonts/static/otf/MonaSansDisplayExpanded-SemiBold.otf b/fonts/static/otf/MonaSansDisplayExpanded-SemiBold.otf new file mode 100644 index 00000000..e7ed08c1 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplayExpanded-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiCondensed-Black.otf b/fonts/static/otf/MonaSansDisplaySemiCondensed-Black.otf new file mode 100644 index 00000000..652580b1 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiCondensed-Black.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiCondensed-Bold.otf b/fonts/static/otf/MonaSansDisplaySemiCondensed-Bold.otf new file mode 100644 index 00000000..d668e19a Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiCondensed-Bold.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiCondensed-ExtraBold.otf b/fonts/static/otf/MonaSansDisplaySemiCondensed-ExtraBold.otf new file mode 100644 index 00000000..dac4ab26 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiCondensed-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiCondensed-ExtraLight.otf b/fonts/static/otf/MonaSansDisplaySemiCondensed-ExtraLight.otf new file mode 100644 index 00000000..3ee05c9c Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiCondensed-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiCondensed-Light.otf b/fonts/static/otf/MonaSansDisplaySemiCondensed-Light.otf new file mode 100644 index 00000000..379a5585 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiCondensed-Light.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiCondensed-Medium.otf b/fonts/static/otf/MonaSansDisplaySemiCondensed-Medium.otf new file mode 100644 index 00000000..3ad7973d Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiCondensed-Medium.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiCondensed-Regular.otf b/fonts/static/otf/MonaSansDisplaySemiCondensed-Regular.otf new file mode 100644 index 00000000..6874072d Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiCondensed-Regular.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiCondensed-SemiBold.otf b/fonts/static/otf/MonaSansDisplaySemiCondensed-SemiBold.otf new file mode 100644 index 00000000..8ec34595 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiCondensed-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiExpanded-Black.otf b/fonts/static/otf/MonaSansDisplaySemiExpanded-Black.otf new file mode 100644 index 00000000..2740a84b Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiExpanded-Black.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiExpanded-Bold.otf b/fonts/static/otf/MonaSansDisplaySemiExpanded-Bold.otf new file mode 100644 index 00000000..d95730a2 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiExpanded-Bold.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiExpanded-ExtraBold.otf b/fonts/static/otf/MonaSansDisplaySemiExpanded-ExtraBold.otf new file mode 100644 index 00000000..0defa925 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiExpanded-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiExpanded-ExtraLight.otf b/fonts/static/otf/MonaSansDisplaySemiExpanded-ExtraLight.otf new file mode 100644 index 00000000..4b1271a0 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiExpanded-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiExpanded-Light.otf b/fonts/static/otf/MonaSansDisplaySemiExpanded-Light.otf new file mode 100644 index 00000000..3d7a4f7f Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiExpanded-Light.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiExpanded-Medium.otf b/fonts/static/otf/MonaSansDisplaySemiExpanded-Medium.otf new file mode 100644 index 00000000..45020a06 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiExpanded-Medium.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiExpanded-Regular.otf b/fonts/static/otf/MonaSansDisplaySemiExpanded-Regular.otf new file mode 100644 index 00000000..decb084d Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiExpanded-Regular.otf differ diff --git a/fonts/static/otf/MonaSansDisplaySemiExpanded-SemiBold.otf b/fonts/static/otf/MonaSansDisplaySemiExpanded-SemiBold.otf new file mode 100644 index 00000000..5c7072c9 Binary files /dev/null and b/fonts/static/otf/MonaSansDisplaySemiExpanded-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-Black.otf b/fonts/static/otf/MonaSansExpanded-Black.otf new file mode 100644 index 00000000..473ca28c Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-Black.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-BlackItalic.otf b/fonts/static/otf/MonaSansExpanded-BlackItalic.otf new file mode 100644 index 00000000..087f8833 Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-BlackItalic.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-Bold.otf b/fonts/static/otf/MonaSansExpanded-Bold.otf new file mode 100644 index 00000000..f1ef963a Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-Bold.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-BoldItalic.otf b/fonts/static/otf/MonaSansExpanded-BoldItalic.otf new file mode 100644 index 00000000..23a0888c Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-BoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-ExtraBold.otf b/fonts/static/otf/MonaSansExpanded-ExtraBold.otf new file mode 100644 index 00000000..0519de1d Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-ExtraBoldItalic.otf b/fonts/static/otf/MonaSansExpanded-ExtraBoldItalic.otf new file mode 100644 index 00000000..5b2fed71 Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-ExtraBoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-ExtraLight.otf b/fonts/static/otf/MonaSansExpanded-ExtraLight.otf new file mode 100644 index 00000000..81230c5e Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-ExtraLightItalic.otf b/fonts/static/otf/MonaSansExpanded-ExtraLightItalic.otf new file mode 100644 index 00000000..f1652159 Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-ExtraLightItalic.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-Italic.otf b/fonts/static/otf/MonaSansExpanded-Italic.otf new file mode 100644 index 00000000..04a1f9e5 Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-Italic.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-Light.otf b/fonts/static/otf/MonaSansExpanded-Light.otf new file mode 100644 index 00000000..be5909bc Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-Light.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-LightItalic.otf b/fonts/static/otf/MonaSansExpanded-LightItalic.otf new file mode 100644 index 00000000..d15d4e46 Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-LightItalic.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-Medium.otf b/fonts/static/otf/MonaSansExpanded-Medium.otf new file mode 100644 index 00000000..89e32eb7 Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-Medium.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-MediumItalic.otf b/fonts/static/otf/MonaSansExpanded-MediumItalic.otf new file mode 100644 index 00000000..235ed5ae Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-MediumItalic.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-Regular.otf b/fonts/static/otf/MonaSansExpanded-Regular.otf new file mode 100644 index 00000000..5d43e73a Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-Regular.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-SemiBold.otf b/fonts/static/otf/MonaSansExpanded-SemiBold.otf new file mode 100644 index 00000000..0740c0ee Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansExpanded-SemiBoldItalic.otf b/fonts/static/otf/MonaSansExpanded-SemiBoldItalic.otf new file mode 100644 index 00000000..d0519449 Binary files /dev/null and b/fonts/static/otf/MonaSansExpanded-SemiBoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansMono-Black.otf b/fonts/static/otf/MonaSansMono-Black.otf new file mode 100644 index 00000000..873d6cbe Binary files /dev/null and b/fonts/static/otf/MonaSansMono-Black.otf differ diff --git a/fonts/static/otf/MonaSansMono-Bold.otf b/fonts/static/otf/MonaSansMono-Bold.otf new file mode 100644 index 00000000..fd4e914c Binary files /dev/null and b/fonts/static/otf/MonaSansMono-Bold.otf differ diff --git a/fonts/static/otf/MonaSansMono-ExtraBold.otf b/fonts/static/otf/MonaSansMono-ExtraBold.otf new file mode 100644 index 00000000..78bbec7c Binary files /dev/null and b/fonts/static/otf/MonaSansMono-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansMono-ExtraLight.otf b/fonts/static/otf/MonaSansMono-ExtraLight.otf new file mode 100644 index 00000000..c9cc149c Binary files /dev/null and b/fonts/static/otf/MonaSansMono-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansMono-Light.otf b/fonts/static/otf/MonaSansMono-Light.otf new file mode 100644 index 00000000..1188c598 Binary files /dev/null and b/fonts/static/otf/MonaSansMono-Light.otf differ diff --git a/fonts/static/otf/MonaSansMono-Medium.otf b/fonts/static/otf/MonaSansMono-Medium.otf new file mode 100644 index 00000000..7a1b5aaa Binary files /dev/null and b/fonts/static/otf/MonaSansMono-Medium.otf differ diff --git a/fonts/static/otf/MonaSansMono-Regular.otf b/fonts/static/otf/MonaSansMono-Regular.otf new file mode 100644 index 00000000..e813c304 Binary files /dev/null and b/fonts/static/otf/MonaSansMono-Regular.otf differ diff --git a/fonts/static/otf/MonaSansMono-SemiBold.otf b/fonts/static/otf/MonaSansMono-SemiBold.otf new file mode 100644 index 00000000..99d08df6 Binary files /dev/null and b/fonts/static/otf/MonaSansMono-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-Black.otf b/fonts/static/otf/MonaSansSemiCondensed-Black.otf new file mode 100644 index 00000000..83e0aacd Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-Black.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-BlackItalic.otf b/fonts/static/otf/MonaSansSemiCondensed-BlackItalic.otf new file mode 100644 index 00000000..f380034b Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-BlackItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-Bold.otf b/fonts/static/otf/MonaSansSemiCondensed-Bold.otf new file mode 100644 index 00000000..90114696 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-Bold.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-BoldItalic.otf b/fonts/static/otf/MonaSansSemiCondensed-BoldItalic.otf new file mode 100644 index 00000000..26f11aeb Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-BoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-ExtraBold.otf b/fonts/static/otf/MonaSansSemiCondensed-ExtraBold.otf new file mode 100644 index 00000000..64f1c11c Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-ExtraBoldItalic.otf b/fonts/static/otf/MonaSansSemiCondensed-ExtraBoldItalic.otf new file mode 100644 index 00000000..6d740dbb Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-ExtraBoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-ExtraLight.otf b/fonts/static/otf/MonaSansSemiCondensed-ExtraLight.otf new file mode 100644 index 00000000..dc3e13a7 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-ExtraLightItalic.otf b/fonts/static/otf/MonaSansSemiCondensed-ExtraLightItalic.otf new file mode 100644 index 00000000..6687e881 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-ExtraLightItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-Italic.otf b/fonts/static/otf/MonaSansSemiCondensed-Italic.otf new file mode 100644 index 00000000..2d50fe37 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-Italic.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-Light.otf b/fonts/static/otf/MonaSansSemiCondensed-Light.otf new file mode 100644 index 00000000..a8aaccb8 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-Light.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-LightItalic.otf b/fonts/static/otf/MonaSansSemiCondensed-LightItalic.otf new file mode 100644 index 00000000..3d52a2e4 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-LightItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-Medium.otf b/fonts/static/otf/MonaSansSemiCondensed-Medium.otf new file mode 100644 index 00000000..b3191af3 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-Medium.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-MediumItalic.otf b/fonts/static/otf/MonaSansSemiCondensed-MediumItalic.otf new file mode 100644 index 00000000..d3f892d0 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-MediumItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-Regular.otf b/fonts/static/otf/MonaSansSemiCondensed-Regular.otf new file mode 100644 index 00000000..11e82d8a Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-Regular.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-SemiBold.otf b/fonts/static/otf/MonaSansSemiCondensed-SemiBold.otf new file mode 100644 index 00000000..558cdd04 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansSemiCondensed-SemiBoldItalic.otf b/fonts/static/otf/MonaSansSemiCondensed-SemiBoldItalic.otf new file mode 100644 index 00000000..841daea8 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiCondensed-SemiBoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-Black.otf b/fonts/static/otf/MonaSansSemiExpanded-Black.otf new file mode 100644 index 00000000..d96da100 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-Black.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-BlackItalic.otf b/fonts/static/otf/MonaSansSemiExpanded-BlackItalic.otf new file mode 100644 index 00000000..3c6d61dd Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-BlackItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-Bold.otf b/fonts/static/otf/MonaSansSemiExpanded-Bold.otf new file mode 100644 index 00000000..ab6045bf Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-Bold.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-BoldItalic.otf b/fonts/static/otf/MonaSansSemiExpanded-BoldItalic.otf new file mode 100644 index 00000000..82029262 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-BoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-ExtraBold.otf b/fonts/static/otf/MonaSansSemiExpanded-ExtraBold.otf new file mode 100644 index 00000000..fe373867 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-ExtraBold.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-ExtraBoldItalic.otf b/fonts/static/otf/MonaSansSemiExpanded-ExtraBoldItalic.otf new file mode 100644 index 00000000..7ed5b0a9 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-ExtraBoldItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-ExtraLight.otf b/fonts/static/otf/MonaSansSemiExpanded-ExtraLight.otf new file mode 100644 index 00000000..85460ca6 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-ExtraLight.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-ExtraLightItalic.otf b/fonts/static/otf/MonaSansSemiExpanded-ExtraLightItalic.otf new file mode 100644 index 00000000..40def3ea Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-ExtraLightItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-Italic.otf b/fonts/static/otf/MonaSansSemiExpanded-Italic.otf new file mode 100644 index 00000000..6a964bfc Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-Italic.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-Light.otf b/fonts/static/otf/MonaSansSemiExpanded-Light.otf new file mode 100644 index 00000000..237b5107 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-Light.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-LightItalic.otf b/fonts/static/otf/MonaSansSemiExpanded-LightItalic.otf new file mode 100644 index 00000000..c2136459 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-LightItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-Medium.otf b/fonts/static/otf/MonaSansSemiExpanded-Medium.otf new file mode 100644 index 00000000..30704d5a Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-Medium.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-MediumItalic.otf b/fonts/static/otf/MonaSansSemiExpanded-MediumItalic.otf new file mode 100644 index 00000000..147bf00b Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-MediumItalic.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-Regular.otf b/fonts/static/otf/MonaSansSemiExpanded-Regular.otf new file mode 100644 index 00000000..cea51608 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-Regular.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-SemiBold.otf b/fonts/static/otf/MonaSansSemiExpanded-SemiBold.otf new file mode 100644 index 00000000..545e48f9 Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-SemiBold.otf differ diff --git a/fonts/static/otf/MonaSansSemiExpanded-SemiBoldItalic.otf b/fonts/static/otf/MonaSansSemiExpanded-SemiBoldItalic.otf new file mode 100644 index 00000000..1e312edd Binary files /dev/null and b/fonts/static/otf/MonaSansSemiExpanded-SemiBoldItalic.otf differ diff --git a/fonts/static/ttf/MonaSans-Black.ttf b/fonts/static/ttf/MonaSans-Black.ttf new file mode 100644 index 00000000..ff85a813 Binary files /dev/null and b/fonts/static/ttf/MonaSans-Black.ttf differ diff --git a/fonts/static/ttf/MonaSans-BlackItalic.ttf b/fonts/static/ttf/MonaSans-BlackItalic.ttf new file mode 100644 index 00000000..30338bc2 Binary files /dev/null and b/fonts/static/ttf/MonaSans-BlackItalic.ttf differ diff --git a/fonts/static/ttf/MonaSans-Bold.ttf b/fonts/static/ttf/MonaSans-Bold.ttf new file mode 100644 index 00000000..e1b729e4 Binary files /dev/null and b/fonts/static/ttf/MonaSans-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSans-BoldItalic.ttf b/fonts/static/ttf/MonaSans-BoldItalic.ttf new file mode 100644 index 00000000..e46aea3d Binary files /dev/null and b/fonts/static/ttf/MonaSans-BoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSans-ExtraBold.ttf b/fonts/static/ttf/MonaSans-ExtraBold.ttf new file mode 100644 index 00000000..86f7ccb7 Binary files /dev/null and b/fonts/static/ttf/MonaSans-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSans-ExtraBoldItalic.ttf b/fonts/static/ttf/MonaSans-ExtraBoldItalic.ttf new file mode 100644 index 00000000..d9479e46 Binary files /dev/null and b/fonts/static/ttf/MonaSans-ExtraBoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSans-ExtraLight.ttf b/fonts/static/ttf/MonaSans-ExtraLight.ttf new file mode 100644 index 00000000..bf5d7cc8 Binary files /dev/null and b/fonts/static/ttf/MonaSans-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSans-ExtraLightItalic.ttf b/fonts/static/ttf/MonaSans-ExtraLightItalic.ttf new file mode 100644 index 00000000..2a108d70 Binary files /dev/null and b/fonts/static/ttf/MonaSans-ExtraLightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSans-Italic.ttf b/fonts/static/ttf/MonaSans-Italic.ttf new file mode 100644 index 00000000..3a7d42c8 Binary files /dev/null and b/fonts/static/ttf/MonaSans-Italic.ttf differ diff --git a/fonts/static/ttf/MonaSans-Light.ttf b/fonts/static/ttf/MonaSans-Light.ttf new file mode 100644 index 00000000..814f5ead Binary files /dev/null and b/fonts/static/ttf/MonaSans-Light.ttf differ diff --git a/fonts/static/ttf/MonaSans-LightItalic.ttf b/fonts/static/ttf/MonaSans-LightItalic.ttf new file mode 100644 index 00000000..e56541bc Binary files /dev/null and b/fonts/static/ttf/MonaSans-LightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSans-Medium.ttf b/fonts/static/ttf/MonaSans-Medium.ttf new file mode 100644 index 00000000..348e344d Binary files /dev/null and b/fonts/static/ttf/MonaSans-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSans-MediumItalic.ttf b/fonts/static/ttf/MonaSans-MediumItalic.ttf new file mode 100644 index 00000000..c70e63ea Binary files /dev/null and b/fonts/static/ttf/MonaSans-MediumItalic.ttf differ diff --git a/fonts/static/ttf/MonaSans-Regular.ttf b/fonts/static/ttf/MonaSans-Regular.ttf new file mode 100644 index 00000000..bc3988d1 Binary files /dev/null and b/fonts/static/ttf/MonaSans-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSans-SemiBold.ttf b/fonts/static/ttf/MonaSans-SemiBold.ttf new file mode 100644 index 00000000..dd044d1c Binary files /dev/null and b/fonts/static/ttf/MonaSans-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSans-SemiBoldItalic.ttf b/fonts/static/ttf/MonaSans-SemiBoldItalic.ttf new file mode 100644 index 00000000..6bd3880c Binary files /dev/null and b/fonts/static/ttf/MonaSans-SemiBoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-Black.ttf b/fonts/static/ttf/MonaSansCondensed-Black.ttf new file mode 100644 index 00000000..6d35a3b6 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-BlackItalic.ttf b/fonts/static/ttf/MonaSansCondensed-BlackItalic.ttf new file mode 100644 index 00000000..9c79fca2 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-BlackItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-Bold.ttf b/fonts/static/ttf/MonaSansCondensed-Bold.ttf new file mode 100644 index 00000000..1391d8e4 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-BoldItalic.ttf b/fonts/static/ttf/MonaSansCondensed-BoldItalic.ttf new file mode 100644 index 00000000..1c23e147 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-BoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-ExtraBold.ttf b/fonts/static/ttf/MonaSansCondensed-ExtraBold.ttf new file mode 100644 index 00000000..2a792c54 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-ExtraBoldItalic.ttf b/fonts/static/ttf/MonaSansCondensed-ExtraBoldItalic.ttf new file mode 100644 index 00000000..3d0cf0fc Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-ExtraBoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-ExtraLight.ttf b/fonts/static/ttf/MonaSansCondensed-ExtraLight.ttf new file mode 100644 index 00000000..7ad88eb3 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-ExtraLightItalic.ttf b/fonts/static/ttf/MonaSansCondensed-ExtraLightItalic.ttf new file mode 100644 index 00000000..5330ba59 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-ExtraLightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-Italic.ttf b/fonts/static/ttf/MonaSansCondensed-Italic.ttf new file mode 100644 index 00000000..11a5065f Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-Italic.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-Light.ttf b/fonts/static/ttf/MonaSansCondensed-Light.ttf new file mode 100644 index 00000000..8edd043e Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-LightItalic.ttf b/fonts/static/ttf/MonaSansCondensed-LightItalic.ttf new file mode 100644 index 00000000..c3f54702 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-LightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-Medium.ttf b/fonts/static/ttf/MonaSansCondensed-Medium.ttf new file mode 100644 index 00000000..324d4b1c Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-MediumItalic.ttf b/fonts/static/ttf/MonaSansCondensed-MediumItalic.ttf new file mode 100644 index 00000000..393ea221 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-MediumItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-Regular.ttf b/fonts/static/ttf/MonaSansCondensed-Regular.ttf new file mode 100644 index 00000000..cdbb6367 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-SemiBold.ttf b/fonts/static/ttf/MonaSansCondensed-SemiBold.ttf new file mode 100644 index 00000000..e3b4c393 Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansCondensed-SemiBoldItalic.ttf b/fonts/static/ttf/MonaSansCondensed-SemiBoldItalic.ttf new file mode 100644 index 00000000..9d04a9aa Binary files /dev/null and b/fonts/static/ttf/MonaSansCondensed-SemiBoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplay-Black.ttf b/fonts/static/ttf/MonaSansDisplay-Black.ttf new file mode 100644 index 00000000..b323eba6 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplay-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplay-Bold.ttf b/fonts/static/ttf/MonaSansDisplay-Bold.ttf new file mode 100644 index 00000000..fcab344b Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplay-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplay-ExtraBold.ttf b/fonts/static/ttf/MonaSansDisplay-ExtraBold.ttf new file mode 100644 index 00000000..c8582f29 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplay-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplay-ExtraLight.ttf b/fonts/static/ttf/MonaSansDisplay-ExtraLight.ttf new file mode 100644 index 00000000..1f975bf8 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplay-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplay-Light.ttf b/fonts/static/ttf/MonaSansDisplay-Light.ttf new file mode 100644 index 00000000..9727c43e Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplay-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplay-Medium.ttf b/fonts/static/ttf/MonaSansDisplay-Medium.ttf new file mode 100644 index 00000000..5dee14ee Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplay-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplay-Regular.ttf b/fonts/static/ttf/MonaSansDisplay-Regular.ttf new file mode 100644 index 00000000..26c0979b Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplay-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplay-SemiBold.ttf b/fonts/static/ttf/MonaSansDisplay-SemiBold.ttf new file mode 100644 index 00000000..d9b24118 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplay-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayCondensed-Black.ttf b/fonts/static/ttf/MonaSansDisplayCondensed-Black.ttf new file mode 100644 index 00000000..cbf19e6c Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayCondensed-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayCondensed-Bold.ttf b/fonts/static/ttf/MonaSansDisplayCondensed-Bold.ttf new file mode 100644 index 00000000..14a2cc10 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayCondensed-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayCondensed-ExtraBold.ttf b/fonts/static/ttf/MonaSansDisplayCondensed-ExtraBold.ttf new file mode 100644 index 00000000..daddec9a Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayCondensed-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayCondensed-ExtraLight.ttf b/fonts/static/ttf/MonaSansDisplayCondensed-ExtraLight.ttf new file mode 100644 index 00000000..7dee5c51 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayCondensed-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayCondensed-Light.ttf b/fonts/static/ttf/MonaSansDisplayCondensed-Light.ttf new file mode 100644 index 00000000..02e9b131 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayCondensed-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayCondensed-Medium.ttf b/fonts/static/ttf/MonaSansDisplayCondensed-Medium.ttf new file mode 100644 index 00000000..7e28cb4f Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayCondensed-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayCondensed-Regular.ttf b/fonts/static/ttf/MonaSansDisplayCondensed-Regular.ttf new file mode 100644 index 00000000..41cfbd2b Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayCondensed-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayCondensed-SemiBold.ttf b/fonts/static/ttf/MonaSansDisplayCondensed-SemiBold.ttf new file mode 100644 index 00000000..6f11fa27 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayCondensed-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayExpanded-Black.ttf b/fonts/static/ttf/MonaSansDisplayExpanded-Black.ttf new file mode 100644 index 00000000..2a463006 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayExpanded-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayExpanded-Bold.ttf b/fonts/static/ttf/MonaSansDisplayExpanded-Bold.ttf new file mode 100644 index 00000000..9d71e393 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayExpanded-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayExpanded-ExtraBold.ttf b/fonts/static/ttf/MonaSansDisplayExpanded-ExtraBold.ttf new file mode 100644 index 00000000..90c3b7f6 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayExpanded-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayExpanded-ExtraLight.ttf b/fonts/static/ttf/MonaSansDisplayExpanded-ExtraLight.ttf new file mode 100644 index 00000000..f9c47dd2 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayExpanded-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayExpanded-Light.ttf b/fonts/static/ttf/MonaSansDisplayExpanded-Light.ttf new file mode 100644 index 00000000..826f5307 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayExpanded-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayExpanded-Medium.ttf b/fonts/static/ttf/MonaSansDisplayExpanded-Medium.ttf new file mode 100644 index 00000000..26d30f21 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayExpanded-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayExpanded-Regular.ttf b/fonts/static/ttf/MonaSansDisplayExpanded-Regular.ttf new file mode 100644 index 00000000..0e81bfff Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayExpanded-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplayExpanded-SemiBold.ttf b/fonts/static/ttf/MonaSansDisplayExpanded-SemiBold.ttf new file mode 100644 index 00000000..e602cebf Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplayExpanded-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiCondensed-Black.ttf b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Black.ttf new file mode 100644 index 00000000..72f390ca Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiCondensed-Bold.ttf b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Bold.ttf new file mode 100644 index 00000000..b852c588 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiCondensed-ExtraBold.ttf b/fonts/static/ttf/MonaSansDisplaySemiCondensed-ExtraBold.ttf new file mode 100644 index 00000000..544a7f61 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiCondensed-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiCondensed-ExtraLight.ttf b/fonts/static/ttf/MonaSansDisplaySemiCondensed-ExtraLight.ttf new file mode 100644 index 00000000..db84e001 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiCondensed-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiCondensed-Light.ttf b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Light.ttf new file mode 100644 index 00000000..cf584fa4 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiCondensed-Medium.ttf b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Medium.ttf new file mode 100644 index 00000000..90dddabd Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiCondensed-Regular.ttf b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Regular.ttf new file mode 100644 index 00000000..7d599b27 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiCondensed-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiCondensed-SemiBold.ttf b/fonts/static/ttf/MonaSansDisplaySemiCondensed-SemiBold.ttf new file mode 100644 index 00000000..8f302512 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiCondensed-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiExpanded-Black.ttf b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Black.ttf new file mode 100644 index 00000000..de9cdf1a Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiExpanded-Bold.ttf b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Bold.ttf new file mode 100644 index 00000000..86de776a Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiExpanded-ExtraBold.ttf b/fonts/static/ttf/MonaSansDisplaySemiExpanded-ExtraBold.ttf new file mode 100644 index 00000000..23597ba0 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiExpanded-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiExpanded-ExtraLight.ttf b/fonts/static/ttf/MonaSansDisplaySemiExpanded-ExtraLight.ttf new file mode 100644 index 00000000..d21051ab Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiExpanded-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiExpanded-Light.ttf b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Light.ttf new file mode 100644 index 00000000..6d4b8d74 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiExpanded-Medium.ttf b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Medium.ttf new file mode 100644 index 00000000..fc6dd2fc Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiExpanded-Regular.ttf b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Regular.ttf new file mode 100644 index 00000000..e6eede83 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiExpanded-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansDisplaySemiExpanded-SemiBold.ttf b/fonts/static/ttf/MonaSansDisplaySemiExpanded-SemiBold.ttf new file mode 100644 index 00000000..0bd4a982 Binary files /dev/null and b/fonts/static/ttf/MonaSansDisplaySemiExpanded-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-Black.ttf b/fonts/static/ttf/MonaSansExpanded-Black.ttf new file mode 100644 index 00000000..35418353 Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-BlackItalic.ttf b/fonts/static/ttf/MonaSansExpanded-BlackItalic.ttf new file mode 100644 index 00000000..e8fc1bbb Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-BlackItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-Bold.ttf b/fonts/static/ttf/MonaSansExpanded-Bold.ttf new file mode 100644 index 00000000..666abeff Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-BoldItalic.ttf b/fonts/static/ttf/MonaSansExpanded-BoldItalic.ttf new file mode 100644 index 00000000..2a3ead82 Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-BoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-ExtraBold.ttf b/fonts/static/ttf/MonaSansExpanded-ExtraBold.ttf new file mode 100644 index 00000000..4cff3e06 Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-ExtraBoldItalic.ttf b/fonts/static/ttf/MonaSansExpanded-ExtraBoldItalic.ttf new file mode 100644 index 00000000..f2893187 Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-ExtraBoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-ExtraLight.ttf b/fonts/static/ttf/MonaSansExpanded-ExtraLight.ttf new file mode 100644 index 00000000..391ba841 Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-ExtraLightItalic.ttf b/fonts/static/ttf/MonaSansExpanded-ExtraLightItalic.ttf new file mode 100644 index 00000000..f77ab265 Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-ExtraLightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-Italic.ttf b/fonts/static/ttf/MonaSansExpanded-Italic.ttf new file mode 100644 index 00000000..411faf8f Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-Italic.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-Light.ttf b/fonts/static/ttf/MonaSansExpanded-Light.ttf new file mode 100644 index 00000000..12c5a97c Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-LightItalic.ttf b/fonts/static/ttf/MonaSansExpanded-LightItalic.ttf new file mode 100644 index 00000000..1d96cc9b Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-LightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-Medium.ttf b/fonts/static/ttf/MonaSansExpanded-Medium.ttf new file mode 100644 index 00000000..744a6545 Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-MediumItalic.ttf b/fonts/static/ttf/MonaSansExpanded-MediumItalic.ttf new file mode 100644 index 00000000..c512afbb Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-MediumItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-Regular.ttf b/fonts/static/ttf/MonaSansExpanded-Regular.ttf new file mode 100644 index 00000000..2d323f19 Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-SemiBold.ttf b/fonts/static/ttf/MonaSansExpanded-SemiBold.ttf new file mode 100644 index 00000000..3930a69e Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansExpanded-SemiBoldItalic.ttf b/fonts/static/ttf/MonaSansExpanded-SemiBoldItalic.ttf new file mode 100644 index 00000000..b4b59344 Binary files /dev/null and b/fonts/static/ttf/MonaSansExpanded-SemiBoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansMono-Black.ttf b/fonts/static/ttf/MonaSansMono-Black.ttf new file mode 100644 index 00000000..c6e1b2dd Binary files /dev/null and b/fonts/static/ttf/MonaSansMono-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansMono-Bold.ttf b/fonts/static/ttf/MonaSansMono-Bold.ttf new file mode 100644 index 00000000..8225c41d Binary files /dev/null and b/fonts/static/ttf/MonaSansMono-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansMono-ExtraBold.ttf b/fonts/static/ttf/MonaSansMono-ExtraBold.ttf new file mode 100644 index 00000000..3fe674e3 Binary files /dev/null and b/fonts/static/ttf/MonaSansMono-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansMono-ExtraLight.ttf b/fonts/static/ttf/MonaSansMono-ExtraLight.ttf new file mode 100644 index 00000000..377911c9 Binary files /dev/null and b/fonts/static/ttf/MonaSansMono-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansMono-Light.ttf b/fonts/static/ttf/MonaSansMono-Light.ttf new file mode 100644 index 00000000..d64a9791 Binary files /dev/null and b/fonts/static/ttf/MonaSansMono-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansMono-Medium.ttf b/fonts/static/ttf/MonaSansMono-Medium.ttf new file mode 100644 index 00000000..b8215bcc Binary files /dev/null and b/fonts/static/ttf/MonaSansMono-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansMono-Regular.ttf b/fonts/static/ttf/MonaSansMono-Regular.ttf new file mode 100644 index 00000000..73068ae0 Binary files /dev/null and b/fonts/static/ttf/MonaSansMono-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansMono-SemiBold.ttf b/fonts/static/ttf/MonaSansMono-SemiBold.ttf new file mode 100644 index 00000000..3bcbf080 Binary files /dev/null and b/fonts/static/ttf/MonaSansMono-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-Black.ttf b/fonts/static/ttf/MonaSansSemiCondensed-Black.ttf new file mode 100644 index 00000000..192902b6 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-BlackItalic.ttf b/fonts/static/ttf/MonaSansSemiCondensed-BlackItalic.ttf new file mode 100644 index 00000000..ae726e4b Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-BlackItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-Bold.ttf b/fonts/static/ttf/MonaSansSemiCondensed-Bold.ttf new file mode 100644 index 00000000..befc4df7 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-BoldItalic.ttf b/fonts/static/ttf/MonaSansSemiCondensed-BoldItalic.ttf new file mode 100644 index 00000000..5c1af456 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-BoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-ExtraBold.ttf b/fonts/static/ttf/MonaSansSemiCondensed-ExtraBold.ttf new file mode 100644 index 00000000..3f6bbfa6 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-ExtraBoldItalic.ttf b/fonts/static/ttf/MonaSansSemiCondensed-ExtraBoldItalic.ttf new file mode 100644 index 00000000..adfbbac2 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-ExtraBoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-ExtraLight.ttf b/fonts/static/ttf/MonaSansSemiCondensed-ExtraLight.ttf new file mode 100644 index 00000000..b4e4909c Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-ExtraLightItalic.ttf b/fonts/static/ttf/MonaSansSemiCondensed-ExtraLightItalic.ttf new file mode 100644 index 00000000..e6bb7436 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-ExtraLightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-Italic.ttf b/fonts/static/ttf/MonaSansSemiCondensed-Italic.ttf new file mode 100644 index 00000000..b2e34334 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-Italic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-Light.ttf b/fonts/static/ttf/MonaSansSemiCondensed-Light.ttf new file mode 100644 index 00000000..aab106da Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-LightItalic.ttf b/fonts/static/ttf/MonaSansSemiCondensed-LightItalic.ttf new file mode 100644 index 00000000..99183d93 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-LightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-Medium.ttf b/fonts/static/ttf/MonaSansSemiCondensed-Medium.ttf new file mode 100644 index 00000000..ba4b2a6e Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-MediumItalic.ttf b/fonts/static/ttf/MonaSansSemiCondensed-MediumItalic.ttf new file mode 100644 index 00000000..4dd0be91 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-MediumItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-Regular.ttf b/fonts/static/ttf/MonaSansSemiCondensed-Regular.ttf new file mode 100644 index 00000000..a9d9bdc3 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-SemiBold.ttf b/fonts/static/ttf/MonaSansSemiCondensed-SemiBold.ttf new file mode 100644 index 00000000..1e4f455a Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiCondensed-SemiBoldItalic.ttf b/fonts/static/ttf/MonaSansSemiCondensed-SemiBoldItalic.ttf new file mode 100644 index 00000000..26e379d1 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiCondensed-SemiBoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-Black.ttf b/fonts/static/ttf/MonaSansSemiExpanded-Black.ttf new file mode 100644 index 00000000..dfe84c22 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-Black.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-BlackItalic.ttf b/fonts/static/ttf/MonaSansSemiExpanded-BlackItalic.ttf new file mode 100644 index 00000000..06f73a71 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-BlackItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-Bold.ttf b/fonts/static/ttf/MonaSansSemiExpanded-Bold.ttf new file mode 100644 index 00000000..c33909ca Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-Bold.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-BoldItalic.ttf b/fonts/static/ttf/MonaSansSemiExpanded-BoldItalic.ttf new file mode 100644 index 00000000..5f5f8263 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-BoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-ExtraBold.ttf b/fonts/static/ttf/MonaSansSemiExpanded-ExtraBold.ttf new file mode 100644 index 00000000..92c64cf5 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-ExtraBold.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-ExtraBoldItalic.ttf b/fonts/static/ttf/MonaSansSemiExpanded-ExtraBoldItalic.ttf new file mode 100644 index 00000000..2180d034 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-ExtraBoldItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-ExtraLight.ttf b/fonts/static/ttf/MonaSansSemiExpanded-ExtraLight.ttf new file mode 100644 index 00000000..e5150db1 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-ExtraLight.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-ExtraLightItalic.ttf b/fonts/static/ttf/MonaSansSemiExpanded-ExtraLightItalic.ttf new file mode 100644 index 00000000..8afbd4fd Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-ExtraLightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-Italic.ttf b/fonts/static/ttf/MonaSansSemiExpanded-Italic.ttf new file mode 100644 index 00000000..799c8431 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-Italic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-Light.ttf b/fonts/static/ttf/MonaSansSemiExpanded-Light.ttf new file mode 100644 index 00000000..b73c4ec9 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-Light.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-LightItalic.ttf b/fonts/static/ttf/MonaSansSemiExpanded-LightItalic.ttf new file mode 100644 index 00000000..c2f05b15 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-LightItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-Medium.ttf b/fonts/static/ttf/MonaSansSemiExpanded-Medium.ttf new file mode 100644 index 00000000..41baf398 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-Medium.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-MediumItalic.ttf b/fonts/static/ttf/MonaSansSemiExpanded-MediumItalic.ttf new file mode 100644 index 00000000..bf7ff868 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-MediumItalic.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-Regular.ttf b/fonts/static/ttf/MonaSansSemiExpanded-Regular.ttf new file mode 100644 index 00000000..72fb51a6 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-Regular.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-SemiBold.ttf b/fonts/static/ttf/MonaSansSemiExpanded-SemiBold.ttf new file mode 100644 index 00000000..842d9e0b Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-SemiBold.ttf differ diff --git a/fonts/static/ttf/MonaSansSemiExpanded-SemiBoldItalic.ttf b/fonts/static/ttf/MonaSansSemiExpanded-SemiBoldItalic.ttf new file mode 100644 index 00000000..e2e6d5c6 Binary files /dev/null and b/fonts/static/ttf/MonaSansSemiExpanded-SemiBoldItalic.ttf differ diff --git a/fonts/ttf/MonaSans-Black.ttf b/fonts/ttf/MonaSans-Black.ttf deleted file mode 100644 index d13f9d73..00000000 Binary files a/fonts/ttf/MonaSans-Black.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-BlackItalic.ttf b/fonts/ttf/MonaSans-BlackItalic.ttf deleted file mode 100644 index 92baafbf..00000000 Binary files a/fonts/ttf/MonaSans-BlackItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-Bold.ttf b/fonts/ttf/MonaSans-Bold.ttf deleted file mode 100644 index 127a867e..00000000 Binary files a/fonts/ttf/MonaSans-Bold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-BoldItalic.ttf b/fonts/ttf/MonaSans-BoldItalic.ttf deleted file mode 100644 index 31351a29..00000000 Binary files a/fonts/ttf/MonaSans-BoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-ExtraBold.ttf b/fonts/ttf/MonaSans-ExtraBold.ttf deleted file mode 100644 index 36658914..00000000 Binary files a/fonts/ttf/MonaSans-ExtraBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-ExtraBoldItalic.ttf b/fonts/ttf/MonaSans-ExtraBoldItalic.ttf deleted file mode 100644 index 9f59cd31..00000000 Binary files a/fonts/ttf/MonaSans-ExtraBoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-ExtraLight.ttf b/fonts/ttf/MonaSans-ExtraLight.ttf deleted file mode 100644 index d217c467..00000000 Binary files a/fonts/ttf/MonaSans-ExtraLight.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-ExtraLightItalic.ttf b/fonts/ttf/MonaSans-ExtraLightItalic.ttf deleted file mode 100644 index 612c47cf..00000000 Binary files a/fonts/ttf/MonaSans-ExtraLightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-Italic.ttf b/fonts/ttf/MonaSans-Italic.ttf deleted file mode 100644 index b734bad3..00000000 Binary files a/fonts/ttf/MonaSans-Italic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-Light.ttf b/fonts/ttf/MonaSans-Light.ttf deleted file mode 100644 index 21c92cab..00000000 Binary files a/fonts/ttf/MonaSans-Light.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-LightItalic.ttf b/fonts/ttf/MonaSans-LightItalic.ttf deleted file mode 100644 index 29b25f82..00000000 Binary files a/fonts/ttf/MonaSans-LightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-Medium.ttf b/fonts/ttf/MonaSans-Medium.ttf deleted file mode 100644 index 4d1c049d..00000000 Binary files a/fonts/ttf/MonaSans-Medium.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-MediumItalic.ttf b/fonts/ttf/MonaSans-MediumItalic.ttf deleted file mode 100644 index 6c57185f..00000000 Binary files a/fonts/ttf/MonaSans-MediumItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-Regular.ttf b/fonts/ttf/MonaSans-Regular.ttf deleted file mode 100644 index a0e78fc7..00000000 Binary files a/fonts/ttf/MonaSans-Regular.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-SemiBold.ttf b/fonts/ttf/MonaSans-SemiBold.ttf deleted file mode 100644 index b3cc22bd..00000000 Binary files a/fonts/ttf/MonaSans-SemiBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSans-SemiBoldItalic.ttf b/fonts/ttf/MonaSans-SemiBoldItalic.ttf deleted file mode 100644 index 7b9ac867..00000000 Binary files a/fonts/ttf/MonaSans-SemiBoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-Black.ttf b/fonts/ttf/MonaSansCondensed-Black.ttf deleted file mode 100644 index a4a9ee14..00000000 Binary files a/fonts/ttf/MonaSansCondensed-Black.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-BlackItalic.ttf b/fonts/ttf/MonaSansCondensed-BlackItalic.ttf deleted file mode 100644 index d1f7e14a..00000000 Binary files a/fonts/ttf/MonaSansCondensed-BlackItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-Bold.ttf b/fonts/ttf/MonaSansCondensed-Bold.ttf deleted file mode 100644 index 78a9e873..00000000 Binary files a/fonts/ttf/MonaSansCondensed-Bold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-BoldItalic.ttf b/fonts/ttf/MonaSansCondensed-BoldItalic.ttf deleted file mode 100644 index ee8a03f6..00000000 Binary files a/fonts/ttf/MonaSansCondensed-BoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-ExtraBold.ttf b/fonts/ttf/MonaSansCondensed-ExtraBold.ttf deleted file mode 100644 index 3b010ab9..00000000 Binary files a/fonts/ttf/MonaSansCondensed-ExtraBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-ExtraBoldItalic.ttf b/fonts/ttf/MonaSansCondensed-ExtraBoldItalic.ttf deleted file mode 100644 index 5646e74a..00000000 Binary files a/fonts/ttf/MonaSansCondensed-ExtraBoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-ExtraLight.ttf b/fonts/ttf/MonaSansCondensed-ExtraLight.ttf deleted file mode 100644 index ef33ff53..00000000 Binary files a/fonts/ttf/MonaSansCondensed-ExtraLight.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-ExtraLightItalic.ttf b/fonts/ttf/MonaSansCondensed-ExtraLightItalic.ttf deleted file mode 100644 index 661359c2..00000000 Binary files a/fonts/ttf/MonaSansCondensed-ExtraLightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-Italic.ttf b/fonts/ttf/MonaSansCondensed-Italic.ttf deleted file mode 100644 index 2c557a5d..00000000 Binary files a/fonts/ttf/MonaSansCondensed-Italic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-Light.ttf b/fonts/ttf/MonaSansCondensed-Light.ttf deleted file mode 100644 index dac3a86b..00000000 Binary files a/fonts/ttf/MonaSansCondensed-Light.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-LightItalic.ttf b/fonts/ttf/MonaSansCondensed-LightItalic.ttf deleted file mode 100644 index 51d4ee20..00000000 Binary files a/fonts/ttf/MonaSansCondensed-LightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-Medium.ttf b/fonts/ttf/MonaSansCondensed-Medium.ttf deleted file mode 100644 index d5ba8672..00000000 Binary files a/fonts/ttf/MonaSansCondensed-Medium.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-MediumItalic.ttf b/fonts/ttf/MonaSansCondensed-MediumItalic.ttf deleted file mode 100644 index 571d6054..00000000 Binary files a/fonts/ttf/MonaSansCondensed-MediumItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-Regular.ttf b/fonts/ttf/MonaSansCondensed-Regular.ttf deleted file mode 100644 index c4ceecdb..00000000 Binary files a/fonts/ttf/MonaSansCondensed-Regular.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-SemiBold.ttf b/fonts/ttf/MonaSansCondensed-SemiBold.ttf deleted file mode 100644 index efb3b0e9..00000000 Binary files a/fonts/ttf/MonaSansCondensed-SemiBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansCondensed-SemiBoldItalic.ttf b/fonts/ttf/MonaSansCondensed-SemiBoldItalic.ttf deleted file mode 100644 index 295efb80..00000000 Binary files a/fonts/ttf/MonaSansCondensed-SemiBoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-Black.ttf b/fonts/ttf/MonaSansExpanded-Black.ttf deleted file mode 100644 index 36b3de52..00000000 Binary files a/fonts/ttf/MonaSansExpanded-Black.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-BlackItalic.ttf b/fonts/ttf/MonaSansExpanded-BlackItalic.ttf deleted file mode 100644 index d6d552a4..00000000 Binary files a/fonts/ttf/MonaSansExpanded-BlackItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-Bold.ttf b/fonts/ttf/MonaSansExpanded-Bold.ttf deleted file mode 100644 index 2984fb7d..00000000 Binary files a/fonts/ttf/MonaSansExpanded-Bold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-BoldItalic.ttf b/fonts/ttf/MonaSansExpanded-BoldItalic.ttf deleted file mode 100644 index a6fb4a86..00000000 Binary files a/fonts/ttf/MonaSansExpanded-BoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-ExtraBold.ttf b/fonts/ttf/MonaSansExpanded-ExtraBold.ttf deleted file mode 100644 index 02c4b58b..00000000 Binary files a/fonts/ttf/MonaSansExpanded-ExtraBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-ExtraBoldItalic.ttf b/fonts/ttf/MonaSansExpanded-ExtraBoldItalic.ttf deleted file mode 100644 index 5e1b9252..00000000 Binary files a/fonts/ttf/MonaSansExpanded-ExtraBoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-ExtraLight.ttf b/fonts/ttf/MonaSansExpanded-ExtraLight.ttf deleted file mode 100644 index eb368c94..00000000 Binary files a/fonts/ttf/MonaSansExpanded-ExtraLight.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-ExtraLightItalic.ttf b/fonts/ttf/MonaSansExpanded-ExtraLightItalic.ttf deleted file mode 100644 index bad67a18..00000000 Binary files a/fonts/ttf/MonaSansExpanded-ExtraLightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-Italic.ttf b/fonts/ttf/MonaSansExpanded-Italic.ttf deleted file mode 100644 index 14ae31c8..00000000 Binary files a/fonts/ttf/MonaSansExpanded-Italic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-Light.ttf b/fonts/ttf/MonaSansExpanded-Light.ttf deleted file mode 100644 index b474e1b9..00000000 Binary files a/fonts/ttf/MonaSansExpanded-Light.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-LightItalic.ttf b/fonts/ttf/MonaSansExpanded-LightItalic.ttf deleted file mode 100644 index c5e669ce..00000000 Binary files a/fonts/ttf/MonaSansExpanded-LightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-Medium.ttf b/fonts/ttf/MonaSansExpanded-Medium.ttf deleted file mode 100644 index e79aee56..00000000 Binary files a/fonts/ttf/MonaSansExpanded-Medium.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-MediumItalic.ttf b/fonts/ttf/MonaSansExpanded-MediumItalic.ttf deleted file mode 100644 index 9443f5ce..00000000 Binary files a/fonts/ttf/MonaSansExpanded-MediumItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-Regular.ttf b/fonts/ttf/MonaSansExpanded-Regular.ttf deleted file mode 100644 index 5d31a95a..00000000 Binary files a/fonts/ttf/MonaSansExpanded-Regular.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-SemiBold.ttf b/fonts/ttf/MonaSansExpanded-SemiBold.ttf deleted file mode 100644 index 199d2f1d..00000000 Binary files a/fonts/ttf/MonaSansExpanded-SemiBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansExpanded-SemiBoldItalic.ttf b/fonts/ttf/MonaSansExpanded-SemiBoldItalic.ttf deleted file mode 100644 index 80747832..00000000 Binary files a/fonts/ttf/MonaSansExpanded-SemiBoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-Black.ttf b/fonts/ttf/MonaSansSemiCondensed-Black.ttf deleted file mode 100644 index 2ce6520b..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-Black.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-BlackItalic.ttf b/fonts/ttf/MonaSansSemiCondensed-BlackItalic.ttf deleted file mode 100644 index 967c9805..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-BlackItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-Bold.ttf b/fonts/ttf/MonaSansSemiCondensed-Bold.ttf deleted file mode 100644 index 2545f958..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-Bold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-BoldItalic.ttf b/fonts/ttf/MonaSansSemiCondensed-BoldItalic.ttf deleted file mode 100644 index f871444a..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-BoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-ExtraBold.ttf b/fonts/ttf/MonaSansSemiCondensed-ExtraBold.ttf deleted file mode 100644 index b687f7d7..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-ExtraBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-ExtraBoldItalic.ttf b/fonts/ttf/MonaSansSemiCondensed-ExtraBoldItalic.ttf deleted file mode 100644 index 83b04471..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-ExtraBoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-ExtraLight.ttf b/fonts/ttf/MonaSansSemiCondensed-ExtraLight.ttf deleted file mode 100644 index 76b37f50..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-ExtraLight.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-ExtraLightItalic.ttf b/fonts/ttf/MonaSansSemiCondensed-ExtraLightItalic.ttf deleted file mode 100644 index d94497a3..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-ExtraLightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-Italic.ttf b/fonts/ttf/MonaSansSemiCondensed-Italic.ttf deleted file mode 100644 index c9f3ce4f..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-Italic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-Light.ttf b/fonts/ttf/MonaSansSemiCondensed-Light.ttf deleted file mode 100644 index ba738fbe..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-Light.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-LightItalic.ttf b/fonts/ttf/MonaSansSemiCondensed-LightItalic.ttf deleted file mode 100644 index 0a177dee..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-LightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-Medium.ttf b/fonts/ttf/MonaSansSemiCondensed-Medium.ttf deleted file mode 100644 index 401b6c90..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-Medium.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-MediumItalic.ttf b/fonts/ttf/MonaSansSemiCondensed-MediumItalic.ttf deleted file mode 100644 index 3aa83752..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-MediumItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-Regular.ttf b/fonts/ttf/MonaSansSemiCondensed-Regular.ttf deleted file mode 100644 index 660f43e2..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-Regular.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-SemiBold.ttf b/fonts/ttf/MonaSansSemiCondensed-SemiBold.ttf deleted file mode 100644 index c970fdaa..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-SemiBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiCondensed-SemiBoldItalic.ttf b/fonts/ttf/MonaSansSemiCondensed-SemiBoldItalic.ttf deleted file mode 100644 index fade48d3..00000000 Binary files a/fonts/ttf/MonaSansSemiCondensed-SemiBoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-Black.ttf b/fonts/ttf/MonaSansSemiExpanded-Black.ttf deleted file mode 100644 index ba2ced69..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-Black.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-BlackItalic.ttf b/fonts/ttf/MonaSansSemiExpanded-BlackItalic.ttf deleted file mode 100644 index 843805c5..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-BlackItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-Bold.ttf b/fonts/ttf/MonaSansSemiExpanded-Bold.ttf deleted file mode 100644 index f4040ea1..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-Bold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-BoldItalic.ttf b/fonts/ttf/MonaSansSemiExpanded-BoldItalic.ttf deleted file mode 100644 index 55a6982f..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-BoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-ExtraBold.ttf b/fonts/ttf/MonaSansSemiExpanded-ExtraBold.ttf deleted file mode 100644 index 8cb4dd2b..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-ExtraBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-ExtraBoldItalic.ttf b/fonts/ttf/MonaSansSemiExpanded-ExtraBoldItalic.ttf deleted file mode 100644 index d5d80246..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-ExtraBoldItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-ExtraLight.ttf b/fonts/ttf/MonaSansSemiExpanded-ExtraLight.ttf deleted file mode 100644 index 7af36d85..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-ExtraLight.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-ExtraLightItalic.ttf b/fonts/ttf/MonaSansSemiExpanded-ExtraLightItalic.ttf deleted file mode 100644 index fed0c334..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-ExtraLightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-Italic.ttf b/fonts/ttf/MonaSansSemiExpanded-Italic.ttf deleted file mode 100644 index 6dea0c78..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-Italic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-Light.ttf b/fonts/ttf/MonaSansSemiExpanded-Light.ttf deleted file mode 100644 index d7a82e00..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-Light.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-LightItalic.ttf b/fonts/ttf/MonaSansSemiExpanded-LightItalic.ttf deleted file mode 100644 index 616508c8..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-LightItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-Medium.ttf b/fonts/ttf/MonaSansSemiExpanded-Medium.ttf deleted file mode 100644 index bff1b49e..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-Medium.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-MediumItalic.ttf b/fonts/ttf/MonaSansSemiExpanded-MediumItalic.ttf deleted file mode 100644 index 006eb7d5..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-MediumItalic.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-Regular.ttf b/fonts/ttf/MonaSansSemiExpanded-Regular.ttf deleted file mode 100644 index b7457576..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-Regular.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-SemiBold.ttf b/fonts/ttf/MonaSansSemiExpanded-SemiBold.ttf deleted file mode 100644 index 22c4b8c4..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-SemiBold.ttf and /dev/null differ diff --git a/fonts/ttf/MonaSansSemiExpanded-SemiBoldItalic.ttf b/fonts/ttf/MonaSansSemiExpanded-SemiBoldItalic.ttf deleted file mode 100644 index 642b8860..00000000 Binary files a/fonts/ttf/MonaSansSemiExpanded-SemiBoldItalic.ttf and /dev/null differ diff --git a/fonts/variable/MonaSansMonoVF[wght].ttf b/fonts/variable/MonaSansMonoVF[wght].ttf new file mode 100644 index 00000000..db58cece Binary files /dev/null and b/fonts/variable/MonaSansMonoVF[wght].ttf differ diff --git a/fonts/variable/MonaSansVF[wdth,wght,ital].ttf b/fonts/variable/MonaSansVF[wdth,wght,ital].ttf deleted file mode 100644 index 28c6ee90..00000000 Binary files a/fonts/variable/MonaSansVF[wdth,wght,ital].ttf and /dev/null differ diff --git a/fonts/variable/MonaSansVF[wdth,wght,ital].woff2 b/fonts/variable/MonaSansVF[wdth,wght,ital].woff2 deleted file mode 100644 index 7b521ee5..00000000 Binary files a/fonts/variable/MonaSansVF[wdth,wght,ital].woff2 and /dev/null differ diff --git a/fonts/variable/MonaSansVF[wdth,wght,opsz,ital].ttf b/fonts/variable/MonaSansVF[wdth,wght,opsz,ital].ttf new file mode 100644 index 00000000..5d66dbfe Binary files /dev/null and b/fonts/variable/MonaSansVF[wdth,wght,opsz,ital].ttf differ diff --git a/fonts/variable/MonaSansVF[wdth,wght,opsz].ttf b/fonts/variable/MonaSansVF[wdth,wght,opsz].ttf new file mode 100644 index 00000000..ce443ae4 Binary files /dev/null and b/fonts/variable/MonaSansVF[wdth,wght,opsz].ttf differ diff --git a/fonts/variable/MonaSansVF[wght,opsz,ital].ttf b/fonts/variable/MonaSansVF[wght,opsz,ital].ttf new file mode 100644 index 00000000..1d482b8f Binary files /dev/null and b/fonts/variable/MonaSansVF[wght,opsz,ital].ttf differ diff --git a/fonts/variable/MonaSansVF[wght,opsz].ttf b/fonts/variable/MonaSansVF[wght,opsz].ttf new file mode 100644 index 00000000..6531bda6 Binary files /dev/null and b/fonts/variable/MonaSansVF[wght,opsz].ttf differ diff --git a/fonts/webfonts/MonaSans-Black.woff2 b/fonts/webfonts/MonaSans-Black.woff2 deleted file mode 100644 index 12c9eb56..00000000 Binary files a/fonts/webfonts/MonaSans-Black.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-BlackItalic.woff2 b/fonts/webfonts/MonaSans-BlackItalic.woff2 deleted file mode 100644 index 5069113e..00000000 Binary files a/fonts/webfonts/MonaSans-BlackItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-Bold.woff2 b/fonts/webfonts/MonaSans-Bold.woff2 deleted file mode 100644 index bd635cc9..00000000 Binary files a/fonts/webfonts/MonaSans-Bold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-BoldItalic.woff2 b/fonts/webfonts/MonaSans-BoldItalic.woff2 deleted file mode 100644 index d94daf04..00000000 Binary files a/fonts/webfonts/MonaSans-BoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-ExtraBold.woff2 b/fonts/webfonts/MonaSans-ExtraBold.woff2 deleted file mode 100644 index 4fd63c80..00000000 Binary files a/fonts/webfonts/MonaSans-ExtraBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-ExtraBoldItalic.woff2 b/fonts/webfonts/MonaSans-ExtraBoldItalic.woff2 deleted file mode 100644 index 01210e9d..00000000 Binary files a/fonts/webfonts/MonaSans-ExtraBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-ExtraLight.woff2 b/fonts/webfonts/MonaSans-ExtraLight.woff2 deleted file mode 100644 index 4af053e2..00000000 Binary files a/fonts/webfonts/MonaSans-ExtraLight.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-ExtraLightItalic.woff2 b/fonts/webfonts/MonaSans-ExtraLightItalic.woff2 deleted file mode 100644 index 6c073f99..00000000 Binary files a/fonts/webfonts/MonaSans-ExtraLightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-Italic.woff2 b/fonts/webfonts/MonaSans-Italic.woff2 deleted file mode 100644 index 36e211e4..00000000 Binary files a/fonts/webfonts/MonaSans-Italic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-Light.woff2 b/fonts/webfonts/MonaSans-Light.woff2 deleted file mode 100644 index 4134b8b2..00000000 Binary files a/fonts/webfonts/MonaSans-Light.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-LightItalic.woff2 b/fonts/webfonts/MonaSans-LightItalic.woff2 deleted file mode 100644 index 9cd23b15..00000000 Binary files a/fonts/webfonts/MonaSans-LightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-Medium.woff2 b/fonts/webfonts/MonaSans-Medium.woff2 deleted file mode 100644 index d1bf8f49..00000000 Binary files a/fonts/webfonts/MonaSans-Medium.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-MediumItalic.woff2 b/fonts/webfonts/MonaSans-MediumItalic.woff2 deleted file mode 100644 index 0ac77243..00000000 Binary files a/fonts/webfonts/MonaSans-MediumItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-Regular.woff2 b/fonts/webfonts/MonaSans-Regular.woff2 deleted file mode 100644 index 81caf346..00000000 Binary files a/fonts/webfonts/MonaSans-Regular.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-SemiBold.woff2 b/fonts/webfonts/MonaSans-SemiBold.woff2 deleted file mode 100644 index 8e647e95..00000000 Binary files a/fonts/webfonts/MonaSans-SemiBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans-SemiBoldItalic.woff2 b/fonts/webfonts/MonaSans-SemiBoldItalic.woff2 deleted file mode 100644 index 5a1e4703..00000000 Binary files a/fonts/webfonts/MonaSans-SemiBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-Black.woff2 b/fonts/webfonts/MonaSansCondensed-Black.woff2 deleted file mode 100644 index 903adb7b..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-Black.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-BlackItalic.woff2 b/fonts/webfonts/MonaSansCondensed-BlackItalic.woff2 deleted file mode 100644 index 06419cc4..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-BlackItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-Bold.woff2 b/fonts/webfonts/MonaSansCondensed-Bold.woff2 deleted file mode 100644 index f748ac5a..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-Bold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-BoldItalic.woff2 b/fonts/webfonts/MonaSansCondensed-BoldItalic.woff2 deleted file mode 100644 index b52a8ede..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-BoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-ExtraBold.woff2 b/fonts/webfonts/MonaSansCondensed-ExtraBold.woff2 deleted file mode 100644 index b4a9695c..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-ExtraBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-ExtraBoldItalic.woff2 b/fonts/webfonts/MonaSansCondensed-ExtraBoldItalic.woff2 deleted file mode 100644 index 2e17a4f3..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-ExtraBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-ExtraLight.woff2 b/fonts/webfonts/MonaSansCondensed-ExtraLight.woff2 deleted file mode 100644 index a2d8c1ec..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-ExtraLight.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-ExtraLightItalic.woff2 b/fonts/webfonts/MonaSansCondensed-ExtraLightItalic.woff2 deleted file mode 100644 index aff74ad6..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-ExtraLightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-Italic.woff2 b/fonts/webfonts/MonaSansCondensed-Italic.woff2 deleted file mode 100644 index 113c3f28..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-Italic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-Light.woff2 b/fonts/webfonts/MonaSansCondensed-Light.woff2 deleted file mode 100644 index 9acd7ad1..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-Light.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-LightItalic.woff2 b/fonts/webfonts/MonaSansCondensed-LightItalic.woff2 deleted file mode 100644 index 0328693a..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-LightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-Medium.woff2 b/fonts/webfonts/MonaSansCondensed-Medium.woff2 deleted file mode 100644 index 88dd4ac6..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-Medium.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-MediumItalic.woff2 b/fonts/webfonts/MonaSansCondensed-MediumItalic.woff2 deleted file mode 100644 index caba6476..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-MediumItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-Regular.woff2 b/fonts/webfonts/MonaSansCondensed-Regular.woff2 deleted file mode 100644 index d5066fd2..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-Regular.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-SemiBold.woff2 b/fonts/webfonts/MonaSansCondensed-SemiBold.woff2 deleted file mode 100644 index 5c909a80..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-SemiBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansCondensed-SemiBoldItalic.woff2 b/fonts/webfonts/MonaSansCondensed-SemiBoldItalic.woff2 deleted file mode 100644 index d04605bb..00000000 Binary files a/fonts/webfonts/MonaSansCondensed-SemiBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-Black.woff2 b/fonts/webfonts/MonaSansExpanded-Black.woff2 deleted file mode 100644 index 6b0c94b2..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-Black.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-BlackItalic.woff2 b/fonts/webfonts/MonaSansExpanded-BlackItalic.woff2 deleted file mode 100644 index 46482b0e..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-BlackItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-Bold.woff2 b/fonts/webfonts/MonaSansExpanded-Bold.woff2 deleted file mode 100644 index f7ce40be..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-Bold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-BoldItalic.woff2 b/fonts/webfonts/MonaSansExpanded-BoldItalic.woff2 deleted file mode 100644 index 9d4f3d70..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-BoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-ExtraBold.woff2 b/fonts/webfonts/MonaSansExpanded-ExtraBold.woff2 deleted file mode 100644 index 7747ee66..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-ExtraBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-ExtraBoldItalic.woff2 b/fonts/webfonts/MonaSansExpanded-ExtraBoldItalic.woff2 deleted file mode 100644 index fba8f414..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-ExtraBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-ExtraLight.woff2 b/fonts/webfonts/MonaSansExpanded-ExtraLight.woff2 deleted file mode 100644 index 6017abc0..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-ExtraLight.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-ExtraLightItalic.woff2 b/fonts/webfonts/MonaSansExpanded-ExtraLightItalic.woff2 deleted file mode 100644 index 1119713d..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-ExtraLightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-Italic.woff2 b/fonts/webfonts/MonaSansExpanded-Italic.woff2 deleted file mode 100644 index 9c4f4d34..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-Italic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-Light.woff2 b/fonts/webfonts/MonaSansExpanded-Light.woff2 deleted file mode 100644 index 8b2b15a1..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-Light.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-LightItalic.woff2 b/fonts/webfonts/MonaSansExpanded-LightItalic.woff2 deleted file mode 100644 index bd8a1b2e..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-LightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-Medium.woff2 b/fonts/webfonts/MonaSansExpanded-Medium.woff2 deleted file mode 100644 index 89093752..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-Medium.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-MediumItalic.woff2 b/fonts/webfonts/MonaSansExpanded-MediumItalic.woff2 deleted file mode 100644 index 7b2f8b07..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-MediumItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-Regular.woff2 b/fonts/webfonts/MonaSansExpanded-Regular.woff2 deleted file mode 100644 index 586498ea..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-Regular.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-SemiBold.woff2 b/fonts/webfonts/MonaSansExpanded-SemiBold.woff2 deleted file mode 100644 index 1c8f745c..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-SemiBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansExpanded-SemiBoldItalic.woff2 b/fonts/webfonts/MonaSansExpanded-SemiBoldItalic.woff2 deleted file mode 100644 index c04bd1f7..00000000 Binary files a/fonts/webfonts/MonaSansExpanded-SemiBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-Black.woff2 b/fonts/webfonts/MonaSansSemiCondensed-Black.woff2 deleted file mode 100644 index af6c0954..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-Black.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-BlackItalic.woff2 b/fonts/webfonts/MonaSansSemiCondensed-BlackItalic.woff2 deleted file mode 100644 index 84a85ed5..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-BlackItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-Bold.woff2 b/fonts/webfonts/MonaSansSemiCondensed-Bold.woff2 deleted file mode 100644 index c6ef7b57..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-Bold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-BoldItalic.woff2 b/fonts/webfonts/MonaSansSemiCondensed-BoldItalic.woff2 deleted file mode 100644 index ca2941e5..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-BoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-ExtraBold.woff2 b/fonts/webfonts/MonaSansSemiCondensed-ExtraBold.woff2 deleted file mode 100644 index f554c030..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-ExtraBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-ExtraBoldItalic.woff2 b/fonts/webfonts/MonaSansSemiCondensed-ExtraBoldItalic.woff2 deleted file mode 100644 index efa4c96b..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-ExtraBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-ExtraLight.woff2 b/fonts/webfonts/MonaSansSemiCondensed-ExtraLight.woff2 deleted file mode 100644 index b8bd7e6f..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-ExtraLight.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-ExtraLightItalic.woff2 b/fonts/webfonts/MonaSansSemiCondensed-ExtraLightItalic.woff2 deleted file mode 100644 index 4b892255..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-ExtraLightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-Italic.woff2 b/fonts/webfonts/MonaSansSemiCondensed-Italic.woff2 deleted file mode 100644 index 0c7f56bc..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-Italic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-Light.woff2 b/fonts/webfonts/MonaSansSemiCondensed-Light.woff2 deleted file mode 100644 index bd54394b..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-Light.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-LightItalic.woff2 b/fonts/webfonts/MonaSansSemiCondensed-LightItalic.woff2 deleted file mode 100644 index 071d7cb9..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-LightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-Medium.woff2 b/fonts/webfonts/MonaSansSemiCondensed-Medium.woff2 deleted file mode 100644 index ea4098e2..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-Medium.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-MediumItalic.woff2 b/fonts/webfonts/MonaSansSemiCondensed-MediumItalic.woff2 deleted file mode 100644 index 0966e610..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-MediumItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-Regular.woff2 b/fonts/webfonts/MonaSansSemiCondensed-Regular.woff2 deleted file mode 100644 index a342655a..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-Regular.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-SemiBold.woff2 b/fonts/webfonts/MonaSansSemiCondensed-SemiBold.woff2 deleted file mode 100644 index 7a6d88e2..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-SemiBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiCondensed-SemiBoldItalic.woff2 b/fonts/webfonts/MonaSansSemiCondensed-SemiBoldItalic.woff2 deleted file mode 100644 index bf28a121..00000000 Binary files a/fonts/webfonts/MonaSansSemiCondensed-SemiBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-Black.woff2 b/fonts/webfonts/MonaSansSemiExpanded-Black.woff2 deleted file mode 100644 index e8488747..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-Black.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-BlackItalic.woff2 b/fonts/webfonts/MonaSansSemiExpanded-BlackItalic.woff2 deleted file mode 100644 index 9e173abe..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-BlackItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-Bold.woff2 b/fonts/webfonts/MonaSansSemiExpanded-Bold.woff2 deleted file mode 100644 index 78d8eee5..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-Bold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-BoldItalic.woff2 b/fonts/webfonts/MonaSansSemiExpanded-BoldItalic.woff2 deleted file mode 100644 index 3c2f2557..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-BoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-ExtraBold.woff2 b/fonts/webfonts/MonaSansSemiExpanded-ExtraBold.woff2 deleted file mode 100644 index 9c961d95..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-ExtraBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-ExtraBoldItalic.woff2 b/fonts/webfonts/MonaSansSemiExpanded-ExtraBoldItalic.woff2 deleted file mode 100644 index b635f9ec..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-ExtraBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-ExtraLight.woff2 b/fonts/webfonts/MonaSansSemiExpanded-ExtraLight.woff2 deleted file mode 100644 index b1834428..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-ExtraLight.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-ExtraLightItalic.woff2 b/fonts/webfonts/MonaSansSemiExpanded-ExtraLightItalic.woff2 deleted file mode 100644 index a296621f..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-ExtraLightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-Italic.woff2 b/fonts/webfonts/MonaSansSemiExpanded-Italic.woff2 deleted file mode 100644 index 52393733..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-Italic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-Light.woff2 b/fonts/webfonts/MonaSansSemiExpanded-Light.woff2 deleted file mode 100644 index 23b871ff..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-Light.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-LightItalic.woff2 b/fonts/webfonts/MonaSansSemiExpanded-LightItalic.woff2 deleted file mode 100644 index 1c162ebf..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-LightItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-Medium.woff2 b/fonts/webfonts/MonaSansSemiExpanded-Medium.woff2 deleted file mode 100644 index 5e2807cb..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-Medium.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-MediumItalic.woff2 b/fonts/webfonts/MonaSansSemiExpanded-MediumItalic.woff2 deleted file mode 100644 index 4cf5006e..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-MediumItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-Regular.woff2 b/fonts/webfonts/MonaSansSemiExpanded-Regular.woff2 deleted file mode 100644 index deac55d2..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-Regular.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-SemiBold.woff2 b/fonts/webfonts/MonaSansSemiExpanded-SemiBold.woff2 deleted file mode 100644 index 4e87b51f..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-SemiBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSansSemiExpanded-SemiBoldItalic.woff2 b/fonts/webfonts/MonaSansSemiExpanded-SemiBoldItalic.woff2 deleted file mode 100644 index 1261c4bd..00000000 Binary files a/fonts/webfonts/MonaSansSemiExpanded-SemiBoldItalic.woff2 and /dev/null differ diff --git a/fonts/webfonts/MonaSans[ital,wdth,wght].woff2 b/fonts/webfonts/MonaSans[ital,wdth,wght].woff2 deleted file mode 100644 index 7ccd8563..00000000 Binary files a/fonts/webfonts/MonaSans[ital,wdth,wght].woff2 and /dev/null differ diff --git a/fonts/webfonts/static/MonaSans-Black.woff b/fonts/webfonts/static/MonaSans-Black.woff new file mode 100644 index 00000000..9c560f34 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Black.woff differ diff --git a/fonts/webfonts/static/MonaSans-Black.woff2 b/fonts/webfonts/static/MonaSans-Black.woff2 new file mode 100644 index 00000000..21a8f2d4 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-BlackItalic.woff b/fonts/webfonts/static/MonaSans-BlackItalic.woff new file mode 100644 index 00000000..f8ef6e0e Binary files /dev/null and b/fonts/webfonts/static/MonaSans-BlackItalic.woff differ diff --git a/fonts/webfonts/static/MonaSans-BlackItalic.woff2 b/fonts/webfonts/static/MonaSans-BlackItalic.woff2 new file mode 100644 index 00000000..a50fa383 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-BlackItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-Bold.woff b/fonts/webfonts/static/MonaSans-Bold.woff new file mode 100644 index 00000000..407527be Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSans-Bold.woff2 b/fonts/webfonts/static/MonaSans-Bold.woff2 new file mode 100644 index 00000000..49082c7f Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-BoldItalic.woff b/fonts/webfonts/static/MonaSans-BoldItalic.woff new file mode 100644 index 00000000..d7d26b2a Binary files /dev/null and b/fonts/webfonts/static/MonaSans-BoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSans-BoldItalic.woff2 b/fonts/webfonts/static/MonaSans-BoldItalic.woff2 new file mode 100644 index 00000000..40e7efa5 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-BoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-ExtraBold.woff b/fonts/webfonts/static/MonaSans-ExtraBold.woff new file mode 100644 index 00000000..af6e3553 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSans-ExtraBold.woff2 b/fonts/webfonts/static/MonaSans-ExtraBold.woff2 new file mode 100644 index 00000000..f6d7f9b1 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-ExtraBoldItalic.woff b/fonts/webfonts/static/MonaSans-ExtraBoldItalic.woff new file mode 100644 index 00000000..719d92bd Binary files /dev/null and b/fonts/webfonts/static/MonaSans-ExtraBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSans-ExtraBoldItalic.woff2 b/fonts/webfonts/static/MonaSans-ExtraBoldItalic.woff2 new file mode 100644 index 00000000..1d9893ba Binary files /dev/null and b/fonts/webfonts/static/MonaSans-ExtraBoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-ExtraLight.woff b/fonts/webfonts/static/MonaSans-ExtraLight.woff new file mode 100644 index 00000000..2b5cfd0e Binary files /dev/null and b/fonts/webfonts/static/MonaSans-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSans-ExtraLight.woff2 b/fonts/webfonts/static/MonaSans-ExtraLight.woff2 new file mode 100644 index 00000000..cc265004 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-ExtraLightItalic.woff b/fonts/webfonts/static/MonaSans-ExtraLightItalic.woff new file mode 100644 index 00000000..01dd0ef7 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-ExtraLightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSans-ExtraLightItalic.woff2 b/fonts/webfonts/static/MonaSans-ExtraLightItalic.woff2 new file mode 100644 index 00000000..c9653fdb Binary files /dev/null and b/fonts/webfonts/static/MonaSans-ExtraLightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-Italic.woff b/fonts/webfonts/static/MonaSans-Italic.woff new file mode 100644 index 00000000..e80bf163 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Italic.woff differ diff --git a/fonts/webfonts/static/MonaSans-Italic.woff2 b/fonts/webfonts/static/MonaSans-Italic.woff2 new file mode 100644 index 00000000..e8a0ac88 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Italic.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-Light.woff b/fonts/webfonts/static/MonaSans-Light.woff new file mode 100644 index 00000000..5fa26f3c Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Light.woff differ diff --git a/fonts/webfonts/static/MonaSans-Light.woff2 b/fonts/webfonts/static/MonaSans-Light.woff2 new file mode 100644 index 00000000..bf001d19 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-LightItalic.woff b/fonts/webfonts/static/MonaSans-LightItalic.woff new file mode 100644 index 00000000..18271837 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-LightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSans-LightItalic.woff2 b/fonts/webfonts/static/MonaSans-LightItalic.woff2 new file mode 100644 index 00000000..1ea66db7 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-LightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-Medium.woff b/fonts/webfonts/static/MonaSans-Medium.woff new file mode 100644 index 00000000..d4b37fc7 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSans-Medium.woff2 b/fonts/webfonts/static/MonaSans-Medium.woff2 new file mode 100644 index 00000000..4fba1328 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-MediumItalic.woff b/fonts/webfonts/static/MonaSans-MediumItalic.woff new file mode 100644 index 00000000..bce20efe Binary files /dev/null and b/fonts/webfonts/static/MonaSans-MediumItalic.woff differ diff --git a/fonts/webfonts/static/MonaSans-MediumItalic.woff2 b/fonts/webfonts/static/MonaSans-MediumItalic.woff2 new file mode 100644 index 00000000..2f8b9a5a Binary files /dev/null and b/fonts/webfonts/static/MonaSans-MediumItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-Regular.woff b/fonts/webfonts/static/MonaSans-Regular.woff new file mode 100644 index 00000000..518e870e Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSans-Regular.woff2 b/fonts/webfonts/static/MonaSans-Regular.woff2 new file mode 100644 index 00000000..76dd8b62 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-SemiBold.woff b/fonts/webfonts/static/MonaSans-SemiBold.woff new file mode 100644 index 00000000..ed5fa8a7 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSans-SemiBold.woff2 b/fonts/webfonts/static/MonaSans-SemiBold.woff2 new file mode 100644 index 00000000..9eed0da1 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSans-SemiBoldItalic.woff b/fonts/webfonts/static/MonaSans-SemiBoldItalic.woff new file mode 100644 index 00000000..88433740 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-SemiBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSans-SemiBoldItalic.woff2 b/fonts/webfonts/static/MonaSans-SemiBoldItalic.woff2 new file mode 100644 index 00000000..a44277b7 Binary files /dev/null and b/fonts/webfonts/static/MonaSans-SemiBoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Black.woff b/fonts/webfonts/static/MonaSansCondensed-Black.woff new file mode 100644 index 00000000..68b6dc3c Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Black.woff2 b/fonts/webfonts/static/MonaSansCondensed-Black.woff2 new file mode 100644 index 00000000..521bf6b0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-BlackItalic.woff b/fonts/webfonts/static/MonaSansCondensed-BlackItalic.woff new file mode 100644 index 00000000..2f27c271 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-BlackItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-BlackItalic.woff2 b/fonts/webfonts/static/MonaSansCondensed-BlackItalic.woff2 new file mode 100644 index 00000000..02bd5f33 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-BlackItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Bold.woff b/fonts/webfonts/static/MonaSansCondensed-Bold.woff new file mode 100644 index 00000000..691ce569 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Bold.woff2 b/fonts/webfonts/static/MonaSansCondensed-Bold.woff2 new file mode 100644 index 00000000..4bb38a1e Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-BoldItalic.woff b/fonts/webfonts/static/MonaSansCondensed-BoldItalic.woff new file mode 100644 index 00000000..4446bd5d Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-BoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-BoldItalic.woff2 b/fonts/webfonts/static/MonaSansCondensed-BoldItalic.woff2 new file mode 100644 index 00000000..5fc644ed Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-BoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-ExtraBold.woff b/fonts/webfonts/static/MonaSansCondensed-ExtraBold.woff new file mode 100644 index 00000000..b5e7670f Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansCondensed-ExtraBold.woff2 new file mode 100644 index 00000000..39daec65 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-ExtraBoldItalic.woff b/fonts/webfonts/static/MonaSansCondensed-ExtraBoldItalic.woff new file mode 100644 index 00000000..a4734255 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-ExtraBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-ExtraBoldItalic.woff2 b/fonts/webfonts/static/MonaSansCondensed-ExtraBoldItalic.woff2 new file mode 100644 index 00000000..fa1649e3 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-ExtraBoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-ExtraLight.woff b/fonts/webfonts/static/MonaSansCondensed-ExtraLight.woff new file mode 100644 index 00000000..21906728 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansCondensed-ExtraLight.woff2 new file mode 100644 index 00000000..a9a91042 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-ExtraLightItalic.woff b/fonts/webfonts/static/MonaSansCondensed-ExtraLightItalic.woff new file mode 100644 index 00000000..b3e44cbe Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-ExtraLightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-ExtraLightItalic.woff2 b/fonts/webfonts/static/MonaSansCondensed-ExtraLightItalic.woff2 new file mode 100644 index 00000000..73d26c8f Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-ExtraLightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Italic.woff b/fonts/webfonts/static/MonaSansCondensed-Italic.woff new file mode 100644 index 00000000..e9dce9bc Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Italic.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Italic.woff2 b/fonts/webfonts/static/MonaSansCondensed-Italic.woff2 new file mode 100644 index 00000000..5195a03f Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Italic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Light.woff b/fonts/webfonts/static/MonaSansCondensed-Light.woff new file mode 100644 index 00000000..942ebac1 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Light.woff2 b/fonts/webfonts/static/MonaSansCondensed-Light.woff2 new file mode 100644 index 00000000..7c60905f Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-LightItalic.woff b/fonts/webfonts/static/MonaSansCondensed-LightItalic.woff new file mode 100644 index 00000000..6dd2dc07 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-LightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-LightItalic.woff2 b/fonts/webfonts/static/MonaSansCondensed-LightItalic.woff2 new file mode 100644 index 00000000..e1a4a9ab Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-LightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Medium.woff b/fonts/webfonts/static/MonaSansCondensed-Medium.woff new file mode 100644 index 00000000..e81bd6f4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Medium.woff2 b/fonts/webfonts/static/MonaSansCondensed-Medium.woff2 new file mode 100644 index 00000000..b576e699 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-MediumItalic.woff b/fonts/webfonts/static/MonaSansCondensed-MediumItalic.woff new file mode 100644 index 00000000..0a4f86b4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-MediumItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-MediumItalic.woff2 b/fonts/webfonts/static/MonaSansCondensed-MediumItalic.woff2 new file mode 100644 index 00000000..a775a687 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-MediumItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Regular.woff b/fonts/webfonts/static/MonaSansCondensed-Regular.woff new file mode 100644 index 00000000..fd03f3b5 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-Regular.woff2 b/fonts/webfonts/static/MonaSansCondensed-Regular.woff2 new file mode 100644 index 00000000..1d3a1a5c Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-SemiBold.woff b/fonts/webfonts/static/MonaSansCondensed-SemiBold.woff new file mode 100644 index 00000000..dda23bd8 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-SemiBold.woff2 b/fonts/webfonts/static/MonaSansCondensed-SemiBold.woff2 new file mode 100644 index 00000000..9cb63193 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansCondensed-SemiBoldItalic.woff b/fonts/webfonts/static/MonaSansCondensed-SemiBoldItalic.woff new file mode 100644 index 00000000..2c656c93 Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-SemiBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansCondensed-SemiBoldItalic.woff2 b/fonts/webfonts/static/MonaSansCondensed-SemiBoldItalic.woff2 new file mode 100644 index 00000000..b096597d Binary files /dev/null and b/fonts/webfonts/static/MonaSansCondensed-SemiBoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Black.woff b/fonts/webfonts/static/MonaSansDisplay-Black.woff new file mode 100644 index 00000000..3283374c Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Black.woff2 b/fonts/webfonts/static/MonaSansDisplay-Black.woff2 new file mode 100644 index 00000000..b23afb01 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Bold.woff b/fonts/webfonts/static/MonaSansDisplay-Bold.woff new file mode 100644 index 00000000..747d06d9 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Bold.woff2 b/fonts/webfonts/static/MonaSansDisplay-Bold.woff2 new file mode 100644 index 00000000..074cb7ff Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplay-ExtraBold.woff b/fonts/webfonts/static/MonaSansDisplay-ExtraBold.woff new file mode 100644 index 00000000..a6cc4110 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplay-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansDisplay-ExtraBold.woff2 new file mode 100644 index 00000000..f76bb69e Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplay-ExtraLight.woff b/fonts/webfonts/static/MonaSansDisplay-ExtraLight.woff new file mode 100644 index 00000000..291bc8b9 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplay-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansDisplay-ExtraLight.woff2 new file mode 100644 index 00000000..111003bf Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Light.woff b/fonts/webfonts/static/MonaSansDisplay-Light.woff new file mode 100644 index 00000000..31eb5df4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Light.woff2 b/fonts/webfonts/static/MonaSansDisplay-Light.woff2 new file mode 100644 index 00000000..6c350e80 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Medium.woff b/fonts/webfonts/static/MonaSansDisplay-Medium.woff new file mode 100644 index 00000000..1ec98f0e Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Medium.woff2 b/fonts/webfonts/static/MonaSansDisplay-Medium.woff2 new file mode 100644 index 00000000..2a1a31b5 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Regular.woff b/fonts/webfonts/static/MonaSansDisplay-Regular.woff new file mode 100644 index 00000000..00018b55 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplay-Regular.woff2 b/fonts/webfonts/static/MonaSansDisplay-Regular.woff2 new file mode 100644 index 00000000..7646fa08 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplay-SemiBold.woff b/fonts/webfonts/static/MonaSansDisplay-SemiBold.woff new file mode 100644 index 00000000..dd70ba44 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplay-SemiBold.woff2 b/fonts/webfonts/static/MonaSansDisplay-SemiBold.woff2 new file mode 100644 index 00000000..9afbc711 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplay-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Black.woff b/fonts/webfonts/static/MonaSansDisplayCondensed-Black.woff new file mode 100644 index 00000000..cb2dad89 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Black.woff2 b/fonts/webfonts/static/MonaSansDisplayCondensed-Black.woff2 new file mode 100644 index 00000000..08305d73 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Bold.woff b/fonts/webfonts/static/MonaSansDisplayCondensed-Bold.woff new file mode 100644 index 00000000..2b01e9b4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Bold.woff2 b/fonts/webfonts/static/MonaSansDisplayCondensed-Bold.woff2 new file mode 100644 index 00000000..d9f4910e Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraBold.woff b/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraBold.woff new file mode 100644 index 00000000..240987dc Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraBold.woff2 new file mode 100644 index 00000000..9a656383 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraLight.woff b/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraLight.woff new file mode 100644 index 00000000..53fdba18 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraLight.woff2 new file mode 100644 index 00000000..84bb1beb Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Light.woff b/fonts/webfonts/static/MonaSansDisplayCondensed-Light.woff new file mode 100644 index 00000000..385e2be6 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Light.woff2 b/fonts/webfonts/static/MonaSansDisplayCondensed-Light.woff2 new file mode 100644 index 00000000..8ed5e003 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Medium.woff b/fonts/webfonts/static/MonaSansDisplayCondensed-Medium.woff new file mode 100644 index 00000000..926a696b Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Medium.woff2 b/fonts/webfonts/static/MonaSansDisplayCondensed-Medium.woff2 new file mode 100644 index 00000000..8ed76a04 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Regular.woff b/fonts/webfonts/static/MonaSansDisplayCondensed-Regular.woff new file mode 100644 index 00000000..b20e166b Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-Regular.woff2 b/fonts/webfonts/static/MonaSansDisplayCondensed-Regular.woff2 new file mode 100644 index 00000000..f4b24b70 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-SemiBold.woff b/fonts/webfonts/static/MonaSansDisplayCondensed-SemiBold.woff new file mode 100644 index 00000000..04b226d4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayCondensed-SemiBold.woff2 b/fonts/webfonts/static/MonaSansDisplayCondensed-SemiBold.woff2 new file mode 100644 index 00000000..595af7d8 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayCondensed-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Black.woff b/fonts/webfonts/static/MonaSansDisplayExpanded-Black.woff new file mode 100644 index 00000000..32d20c80 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Black.woff2 b/fonts/webfonts/static/MonaSansDisplayExpanded-Black.woff2 new file mode 100644 index 00000000..8b95b383 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Bold.woff b/fonts/webfonts/static/MonaSansDisplayExpanded-Bold.woff new file mode 100644 index 00000000..9a5cfced Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Bold.woff2 b/fonts/webfonts/static/MonaSansDisplayExpanded-Bold.woff2 new file mode 100644 index 00000000..04e58de4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraBold.woff b/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraBold.woff new file mode 100644 index 00000000..8620fd04 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraBold.woff2 new file mode 100644 index 00000000..72efc713 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraLight.woff b/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraLight.woff new file mode 100644 index 00000000..6dbe51af Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraLight.woff2 new file mode 100644 index 00000000..72540725 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Light.woff b/fonts/webfonts/static/MonaSansDisplayExpanded-Light.woff new file mode 100644 index 00000000..c7f68159 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Light.woff2 b/fonts/webfonts/static/MonaSansDisplayExpanded-Light.woff2 new file mode 100644 index 00000000..8feaa061 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Medium.woff b/fonts/webfonts/static/MonaSansDisplayExpanded-Medium.woff new file mode 100644 index 00000000..067bd2b7 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Medium.woff2 b/fonts/webfonts/static/MonaSansDisplayExpanded-Medium.woff2 new file mode 100644 index 00000000..bebce704 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Regular.woff b/fonts/webfonts/static/MonaSansDisplayExpanded-Regular.woff new file mode 100644 index 00000000..9ea00dc0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-Regular.woff2 b/fonts/webfonts/static/MonaSansDisplayExpanded-Regular.woff2 new file mode 100644 index 00000000..66c2109d Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-SemiBold.woff b/fonts/webfonts/static/MonaSansDisplayExpanded-SemiBold.woff new file mode 100644 index 00000000..ed18fe55 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplayExpanded-SemiBold.woff2 b/fonts/webfonts/static/MonaSansDisplayExpanded-SemiBold.woff2 new file mode 100644 index 00000000..0a11ee39 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplayExpanded-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Black.woff b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Black.woff new file mode 100644 index 00000000..8cf56b3f Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Black.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Black.woff2 new file mode 100644 index 00000000..a938acfe Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Bold.woff b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Bold.woff new file mode 100644 index 00000000..bc87449d Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Bold.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Bold.woff2 new file mode 100644 index 00000000..78c8e7fe Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraBold.woff b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraBold.woff new file mode 100644 index 00000000..d7d32783 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraBold.woff2 new file mode 100644 index 00000000..03c0772e Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraLight.woff b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraLight.woff new file mode 100644 index 00000000..703acc1e Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraLight.woff2 new file mode 100644 index 00000000..beccaf68 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Light.woff b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Light.woff new file mode 100644 index 00000000..90433ce8 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Light.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Light.woff2 new file mode 100644 index 00000000..d2972722 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Medium.woff b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Medium.woff new file mode 100644 index 00000000..9ea69122 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Medium.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Medium.woff2 new file mode 100644 index 00000000..b745df00 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Regular.woff b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Regular.woff new file mode 100644 index 00000000..ce40300d Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Regular.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Regular.woff2 new file mode 100644 index 00000000..36508e31 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-SemiBold.woff b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-SemiBold.woff new file mode 100644 index 00000000..87bb214c Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiCondensed-SemiBold.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-SemiBold.woff2 new file mode 100644 index 00000000..ee8a5685 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiCondensed-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Black.woff b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Black.woff new file mode 100644 index 00000000..13460a74 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Black.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Black.woff2 new file mode 100644 index 00000000..f7b5bcca Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Bold.woff b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Bold.woff new file mode 100644 index 00000000..70426899 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Bold.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Bold.woff2 new file mode 100644 index 00000000..f31f5731 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraBold.woff b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraBold.woff new file mode 100644 index 00000000..39ecaa07 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraBold.woff2 new file mode 100644 index 00000000..27c29c88 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraLight.woff b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraLight.woff new file mode 100644 index 00000000..d64f17e4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraLight.woff2 new file mode 100644 index 00000000..0f203490 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Light.woff b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Light.woff new file mode 100644 index 00000000..ae75f551 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Light.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Light.woff2 new file mode 100644 index 00000000..600b0ad3 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Medium.woff b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Medium.woff new file mode 100644 index 00000000..b9a02ff4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Medium.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Medium.woff2 new file mode 100644 index 00000000..0208c69d Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Regular.woff b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Regular.woff new file mode 100644 index 00000000..8f3e4008 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Regular.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Regular.woff2 new file mode 100644 index 00000000..4bc1210a Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-SemiBold.woff b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-SemiBold.woff new file mode 100644 index 00000000..5b803562 Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansDisplaySemiExpanded-SemiBold.woff2 b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-SemiBold.woff2 new file mode 100644 index 00000000..a8b21f8b Binary files /dev/null and b/fonts/webfonts/static/MonaSansDisplaySemiExpanded-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Black.woff b/fonts/webfonts/static/MonaSansExpanded-Black.woff new file mode 100644 index 00000000..192de1c2 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Black.woff2 b/fonts/webfonts/static/MonaSansExpanded-Black.woff2 new file mode 100644 index 00000000..f532f46f Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-BlackItalic.woff b/fonts/webfonts/static/MonaSansExpanded-BlackItalic.woff new file mode 100644 index 00000000..0ac831fd Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-BlackItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-BlackItalic.woff2 b/fonts/webfonts/static/MonaSansExpanded-BlackItalic.woff2 new file mode 100644 index 00000000..b9292ff6 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-BlackItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Bold.woff b/fonts/webfonts/static/MonaSansExpanded-Bold.woff new file mode 100644 index 00000000..a0509ee4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Bold.woff2 b/fonts/webfonts/static/MonaSansExpanded-Bold.woff2 new file mode 100644 index 00000000..070363d9 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-BoldItalic.woff b/fonts/webfonts/static/MonaSansExpanded-BoldItalic.woff new file mode 100644 index 00000000..e6eec55f Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-BoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-BoldItalic.woff2 b/fonts/webfonts/static/MonaSansExpanded-BoldItalic.woff2 new file mode 100644 index 00000000..cf499dd9 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-BoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-ExtraBold.woff b/fonts/webfonts/static/MonaSansExpanded-ExtraBold.woff new file mode 100644 index 00000000..d7051fad Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansExpanded-ExtraBold.woff2 new file mode 100644 index 00000000..05daf9fa Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-ExtraBoldItalic.woff b/fonts/webfonts/static/MonaSansExpanded-ExtraBoldItalic.woff new file mode 100644 index 00000000..436733c4 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-ExtraBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-ExtraBoldItalic.woff2 b/fonts/webfonts/static/MonaSansExpanded-ExtraBoldItalic.woff2 new file mode 100644 index 00000000..d254fa2c Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-ExtraBoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-ExtraLight.woff b/fonts/webfonts/static/MonaSansExpanded-ExtraLight.woff new file mode 100644 index 00000000..e3177a7e Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansExpanded-ExtraLight.woff2 new file mode 100644 index 00000000..99908c22 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-ExtraLightItalic.woff b/fonts/webfonts/static/MonaSansExpanded-ExtraLightItalic.woff new file mode 100644 index 00000000..f3b533a7 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-ExtraLightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-ExtraLightItalic.woff2 b/fonts/webfonts/static/MonaSansExpanded-ExtraLightItalic.woff2 new file mode 100644 index 00000000..9793a31a Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-ExtraLightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Italic.woff b/fonts/webfonts/static/MonaSansExpanded-Italic.woff new file mode 100644 index 00000000..0b6ead77 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Italic.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Italic.woff2 b/fonts/webfonts/static/MonaSansExpanded-Italic.woff2 new file mode 100644 index 00000000..a5f4ba50 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Italic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Light.woff b/fonts/webfonts/static/MonaSansExpanded-Light.woff new file mode 100644 index 00000000..04ab329f Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Light.woff2 b/fonts/webfonts/static/MonaSansExpanded-Light.woff2 new file mode 100644 index 00000000..d303e69c Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-LightItalic.woff b/fonts/webfonts/static/MonaSansExpanded-LightItalic.woff new file mode 100644 index 00000000..6e64b122 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-LightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-LightItalic.woff2 b/fonts/webfonts/static/MonaSansExpanded-LightItalic.woff2 new file mode 100644 index 00000000..de1adda7 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-LightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Medium.woff b/fonts/webfonts/static/MonaSansExpanded-Medium.woff new file mode 100644 index 00000000..13ecea70 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Medium.woff2 b/fonts/webfonts/static/MonaSansExpanded-Medium.woff2 new file mode 100644 index 00000000..ee12bd18 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-MediumItalic.woff b/fonts/webfonts/static/MonaSansExpanded-MediumItalic.woff new file mode 100644 index 00000000..0be6bcb0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-MediumItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-MediumItalic.woff2 b/fonts/webfonts/static/MonaSansExpanded-MediumItalic.woff2 new file mode 100644 index 00000000..63b0d1c0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-MediumItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Regular.woff b/fonts/webfonts/static/MonaSansExpanded-Regular.woff new file mode 100644 index 00000000..86b4e23e Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-Regular.woff2 b/fonts/webfonts/static/MonaSansExpanded-Regular.woff2 new file mode 100644 index 00000000..72a0c92e Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-SemiBold.woff b/fonts/webfonts/static/MonaSansExpanded-SemiBold.woff new file mode 100644 index 00000000..d677d80d Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-SemiBold.woff2 b/fonts/webfonts/static/MonaSansExpanded-SemiBold.woff2 new file mode 100644 index 00000000..9a8e3f24 Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansExpanded-SemiBoldItalic.woff b/fonts/webfonts/static/MonaSansExpanded-SemiBoldItalic.woff new file mode 100644 index 00000000..aefaf2ab Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-SemiBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansExpanded-SemiBoldItalic.woff2 b/fonts/webfonts/static/MonaSansExpanded-SemiBoldItalic.woff2 new file mode 100644 index 00000000..45e13c8a Binary files /dev/null and b/fonts/webfonts/static/MonaSansExpanded-SemiBoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansMono-Black.woff b/fonts/webfonts/static/MonaSansMono-Black.woff new file mode 100644 index 00000000..5e13633a Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansMono-Black.woff2 b/fonts/webfonts/static/MonaSansMono-Black.woff2 new file mode 100644 index 00000000..b2d566c2 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansMono-Bold.woff b/fonts/webfonts/static/MonaSansMono-Bold.woff new file mode 100644 index 00000000..61ca1329 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansMono-Bold.woff2 b/fonts/webfonts/static/MonaSansMono-Bold.woff2 new file mode 100644 index 00000000..3faae041 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansMono-ExtraBold.woff b/fonts/webfonts/static/MonaSansMono-ExtraBold.woff new file mode 100644 index 00000000..f235a5b0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansMono-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansMono-ExtraBold.woff2 new file mode 100644 index 00000000..0eb96e72 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansMono-ExtraLight.woff b/fonts/webfonts/static/MonaSansMono-ExtraLight.woff new file mode 100644 index 00000000..8e1c7051 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansMono-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansMono-ExtraLight.woff2 new file mode 100644 index 00000000..2ce43f16 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansMono-Light.woff b/fonts/webfonts/static/MonaSansMono-Light.woff new file mode 100644 index 00000000..b54ceb36 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansMono-Light.woff2 b/fonts/webfonts/static/MonaSansMono-Light.woff2 new file mode 100644 index 00000000..5b5e54c6 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansMono-Medium.woff b/fonts/webfonts/static/MonaSansMono-Medium.woff new file mode 100644 index 00000000..51859c17 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansMono-Medium.woff2 b/fonts/webfonts/static/MonaSansMono-Medium.woff2 new file mode 100644 index 00000000..ed1ebc31 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansMono-Regular.woff b/fonts/webfonts/static/MonaSansMono-Regular.woff new file mode 100644 index 00000000..4f994552 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansMono-Regular.woff2 b/fonts/webfonts/static/MonaSansMono-Regular.woff2 new file mode 100644 index 00000000..9109752c Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansMono-SemiBold.woff b/fonts/webfonts/static/MonaSansMono-SemiBold.woff new file mode 100644 index 00000000..2cf3a39c Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansMono-SemiBold.woff2 b/fonts/webfonts/static/MonaSansMono-SemiBold.woff2 new file mode 100644 index 00000000..909b4f67 Binary files /dev/null and b/fonts/webfonts/static/MonaSansMono-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Black.woff b/fonts/webfonts/static/MonaSansSemiCondensed-Black.woff new file mode 100644 index 00000000..ef69783a Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Black.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-Black.woff2 new file mode 100644 index 00000000..df0983d2 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-BlackItalic.woff b/fonts/webfonts/static/MonaSansSemiCondensed-BlackItalic.woff new file mode 100644 index 00000000..7dbd5f3c Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-BlackItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-BlackItalic.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-BlackItalic.woff2 new file mode 100644 index 00000000..93ab2a7c Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-BlackItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Bold.woff b/fonts/webfonts/static/MonaSansSemiCondensed-Bold.woff new file mode 100644 index 00000000..1ca71bfe Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Bold.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-Bold.woff2 new file mode 100644 index 00000000..6a003a7a Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-BoldItalic.woff b/fonts/webfonts/static/MonaSansSemiCondensed-BoldItalic.woff new file mode 100644 index 00000000..0155f3b0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-BoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-BoldItalic.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-BoldItalic.woff2 new file mode 100644 index 00000000..4a631f93 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-BoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBold.woff b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBold.woff new file mode 100644 index 00000000..ea2b6ac9 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBold.woff2 new file mode 100644 index 00000000..a0cbb43f Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBoldItalic.woff b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBoldItalic.woff new file mode 100644 index 00000000..cc8fc433 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBoldItalic.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBoldItalic.woff2 new file mode 100644 index 00000000..02f067a8 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraBoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLight.woff b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLight.woff new file mode 100644 index 00000000..2288eabd Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLight.woff2 new file mode 100644 index 00000000..7e608254 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLightItalic.woff b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLightItalic.woff new file mode 100644 index 00000000..d5ce458f Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLightItalic.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLightItalic.woff2 new file mode 100644 index 00000000..bb524527 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-ExtraLightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Italic.woff b/fonts/webfonts/static/MonaSansSemiCondensed-Italic.woff new file mode 100644 index 00000000..37d296f0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Italic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Italic.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-Italic.woff2 new file mode 100644 index 00000000..8346521c Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Italic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Light.woff b/fonts/webfonts/static/MonaSansSemiCondensed-Light.woff new file mode 100644 index 00000000..f0b57f4e Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Light.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-Light.woff2 new file mode 100644 index 00000000..bcd719c0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-LightItalic.woff b/fonts/webfonts/static/MonaSansSemiCondensed-LightItalic.woff new file mode 100644 index 00000000..6e80d5b0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-LightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-LightItalic.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-LightItalic.woff2 new file mode 100644 index 00000000..ea4c60fc Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-LightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Medium.woff b/fonts/webfonts/static/MonaSansSemiCondensed-Medium.woff new file mode 100644 index 00000000..f0662c2e Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Medium.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-Medium.woff2 new file mode 100644 index 00000000..143da531 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-MediumItalic.woff b/fonts/webfonts/static/MonaSansSemiCondensed-MediumItalic.woff new file mode 100644 index 00000000..e24a9cc7 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-MediumItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-MediumItalic.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-MediumItalic.woff2 new file mode 100644 index 00000000..0f393fef Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-MediumItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Regular.woff b/fonts/webfonts/static/MonaSansSemiCondensed-Regular.woff new file mode 100644 index 00000000..2bfc34cb Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-Regular.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-Regular.woff2 new file mode 100644 index 00000000..081d7dcb Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-SemiBold.woff b/fonts/webfonts/static/MonaSansSemiCondensed-SemiBold.woff new file mode 100644 index 00000000..958efa5d Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-SemiBold.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-SemiBold.woff2 new file mode 100644 index 00000000..1ac734db Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-SemiBoldItalic.woff b/fonts/webfonts/static/MonaSansSemiCondensed-SemiBoldItalic.woff new file mode 100644 index 00000000..de65fe83 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-SemiBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiCondensed-SemiBoldItalic.woff2 b/fonts/webfonts/static/MonaSansSemiCondensed-SemiBoldItalic.woff2 new file mode 100644 index 00000000..a55d8338 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiCondensed-SemiBoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Black.woff b/fonts/webfonts/static/MonaSansSemiExpanded-Black.woff new file mode 100644 index 00000000..b7f64ce0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Black.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Black.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-Black.woff2 new file mode 100644 index 00000000..0012f153 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Black.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-BlackItalic.woff b/fonts/webfonts/static/MonaSansSemiExpanded-BlackItalic.woff new file mode 100644 index 00000000..74c38fb8 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-BlackItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-BlackItalic.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-BlackItalic.woff2 new file mode 100644 index 00000000..7ea92122 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-BlackItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Bold.woff b/fonts/webfonts/static/MonaSansSemiExpanded-Bold.woff new file mode 100644 index 00000000..f0c90710 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Bold.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Bold.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-Bold.woff2 new file mode 100644 index 00000000..be01a17c Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Bold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-BoldItalic.woff b/fonts/webfonts/static/MonaSansSemiExpanded-BoldItalic.woff new file mode 100644 index 00000000..fdaebf3c Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-BoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-BoldItalic.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-BoldItalic.woff2 new file mode 100644 index 00000000..577f5441 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-BoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBold.woff b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBold.woff new file mode 100644 index 00000000..f44518a2 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBold.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBold.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBold.woff2 new file mode 100644 index 00000000..eae2281a Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBoldItalic.woff b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBoldItalic.woff new file mode 100644 index 00000000..c2fa50d8 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBoldItalic.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBoldItalic.woff2 new file mode 100644 index 00000000..0b8b8626 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraBoldItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLight.woff b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLight.woff new file mode 100644 index 00000000..2a87592a Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLight.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLight.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLight.woff2 new file mode 100644 index 00000000..8b5f9e07 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLight.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLightItalic.woff b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLightItalic.woff new file mode 100644 index 00000000..346e6b83 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLightItalic.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLightItalic.woff2 new file mode 100644 index 00000000..14a3a5a3 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-ExtraLightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Italic.woff b/fonts/webfonts/static/MonaSansSemiExpanded-Italic.woff new file mode 100644 index 00000000..2be3285d Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Italic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Italic.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-Italic.woff2 new file mode 100644 index 00000000..dd22a3d1 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Italic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Light.woff b/fonts/webfonts/static/MonaSansSemiExpanded-Light.woff new file mode 100644 index 00000000..4f7eae0f Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Light.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Light.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-Light.woff2 new file mode 100644 index 00000000..368820d1 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Light.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-LightItalic.woff b/fonts/webfonts/static/MonaSansSemiExpanded-LightItalic.woff new file mode 100644 index 00000000..691bb684 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-LightItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-LightItalic.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-LightItalic.woff2 new file mode 100644 index 00000000..e9f52ac9 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-LightItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Medium.woff b/fonts/webfonts/static/MonaSansSemiExpanded-Medium.woff new file mode 100644 index 00000000..9710a4ee Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Medium.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Medium.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-Medium.woff2 new file mode 100644 index 00000000..ec4b1b4e Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Medium.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-MediumItalic.woff b/fonts/webfonts/static/MonaSansSemiExpanded-MediumItalic.woff new file mode 100644 index 00000000..a8a36784 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-MediumItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-MediumItalic.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-MediumItalic.woff2 new file mode 100644 index 00000000..c80e6a12 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-MediumItalic.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Regular.woff b/fonts/webfonts/static/MonaSansSemiExpanded-Regular.woff new file mode 100644 index 00000000..c725fdef Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Regular.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-Regular.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-Regular.woff2 new file mode 100644 index 00000000..cb785df0 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-Regular.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-SemiBold.woff b/fonts/webfonts/static/MonaSansSemiExpanded-SemiBold.woff new file mode 100644 index 00000000..07e75790 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-SemiBold.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-SemiBold.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-SemiBold.woff2 new file mode 100644 index 00000000..74f06aaf Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-SemiBold.woff2 differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-SemiBoldItalic.woff b/fonts/webfonts/static/MonaSansSemiExpanded-SemiBoldItalic.woff new file mode 100644 index 00000000..071b4234 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-SemiBoldItalic.woff differ diff --git a/fonts/webfonts/static/MonaSansSemiExpanded-SemiBoldItalic.woff2 b/fonts/webfonts/static/MonaSansSemiExpanded-SemiBoldItalic.woff2 new file mode 100644 index 00000000..32706204 Binary files /dev/null and b/fonts/webfonts/static/MonaSansSemiExpanded-SemiBoldItalic.woff2 differ diff --git a/fonts/webfonts/variable/MonaSansMonoVF[wght].woff b/fonts/webfonts/variable/MonaSansMonoVF[wght].woff new file mode 100644 index 00000000..74d93994 Binary files /dev/null and b/fonts/webfonts/variable/MonaSansMonoVF[wght].woff differ diff --git a/fonts/webfonts/variable/MonaSansMonoVF[wght].woff2 b/fonts/webfonts/variable/MonaSansMonoVF[wght].woff2 new file mode 100644 index 00000000..f4ccd616 Binary files /dev/null and b/fonts/webfonts/variable/MonaSansMonoVF[wght].woff2 differ diff --git a/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz,ital].woff b/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz,ital].woff new file mode 100644 index 00000000..33267611 Binary files /dev/null and b/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz,ital].woff differ diff --git a/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz,ital].woff2 b/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz,ital].woff2 new file mode 100644 index 00000000..25ad052d Binary files /dev/null and b/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz,ital].woff2 differ diff --git a/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz].woff b/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz].woff new file mode 100644 index 00000000..11b02d27 Binary files /dev/null and b/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz].woff differ diff --git a/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz].woff2 b/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz].woff2 new file mode 100644 index 00000000..8f744267 Binary files /dev/null and b/fonts/webfonts/variable/MonaSansVF[wdth,wght,opsz].woff2 differ diff --git a/fonts/webfonts/variable/MonaSansVF[wght,opsz,ital].woff b/fonts/webfonts/variable/MonaSansVF[wght,opsz,ital].woff new file mode 100644 index 00000000..ef97a3ed Binary files /dev/null and b/fonts/webfonts/variable/MonaSansVF[wght,opsz,ital].woff differ diff --git a/fonts/webfonts/variable/MonaSansVF[wght,opsz,ital].woff2 b/fonts/webfonts/variable/MonaSansVF[wght,opsz,ital].woff2 new file mode 100644 index 00000000..89735a73 Binary files /dev/null and b/fonts/webfonts/variable/MonaSansVF[wght,opsz,ital].woff2 differ diff --git a/fonts/webfonts/variable/MonaSansVF[wght,opsz].woff b/fonts/webfonts/variable/MonaSansVF[wght,opsz].woff new file mode 100644 index 00000000..689344c9 Binary files /dev/null and b/fonts/webfonts/variable/MonaSansVF[wght,opsz].woff differ diff --git a/fonts/webfonts/variable/MonaSansVF[wght,opsz].woff2 b/fonts/webfonts/variable/MonaSansVF[wght,opsz].woff2 new file mode 100644 index 00000000..79ee70d5 Binary files /dev/null and b/fonts/webfonts/variable/MonaSansVF[wght,opsz].woff2 differ diff --git a/fonts/variable/MonaSans-Italic[wdth,wght].ttf b/googlefonts/variable/MonaSans-Italic[wdth,wght].ttf similarity index 96% rename from fonts/variable/MonaSans-Italic[wdth,wght].ttf rename to googlefonts/variable/MonaSans-Italic[wdth,wght].ttf index afc836e5..34f471f6 100644 Binary files a/fonts/variable/MonaSans-Italic[wdth,wght].ttf and b/googlefonts/variable/MonaSans-Italic[wdth,wght].ttf differ diff --git a/fonts/variable/MonaSans[wdth,wght].ttf b/googlefonts/variable/MonaSans[wdth,wght].ttf similarity index 95% rename from fonts/variable/MonaSans[wdth,wght].ttf rename to googlefonts/variable/MonaSans[wdth,wght].ttf index 418b30a7..4f2c921d 100644 Binary files a/fonts/variable/MonaSans[wdth,wght].ttf and b/googlefonts/variable/MonaSans[wdth,wght].ttf differ diff --git a/sources/MonaSansDisplay.glyphspackage/fontinfo.plist b/sources/MonaSansDisplay.glyphspackage/fontinfo.plist new file mode 100644 index 00000000..a0c250eb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/fontinfo.plist @@ -0,0 +1,152671 @@ +{ +.appVersion = "3343"; +.formatVersion = 3; +axes = ( +{ +name = Width; +tag = wdth; +}, +{ +name = Weight; +tag = wght; +}, +{ +name = "Optical size"; +tag = opsz; +}, +{ +name = Italic; +tag = ital; +} +); +classes = ( +{ +automatic = 1; +code = "A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat Eth E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Etilde F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Itilde J Jacute Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Ntilde Eng O Oacute Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde 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 Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ytilde Z Zacute Zcaron Zdotaccent Abrevedotbelow.ss01 Acircumflexdotbelow.ss01 Adieresis.ss01 Adotbelow.ss01 Cdotaccent.ss01 Ecircumflexdotbelow.ss01 Edieresis.ss01 Edotaccent.ss01 Edotbelow.ss01 Gdotaccent.ss01 Idieresis.ss01 Idotaccent.ss01 Idotbelow.ss01 Ldot.ss01 Ocircumflexdotbelow.ss01 Odieresis.ss01 Odotbelow.ss01 Ohorndotbelow.ss01 Udieresis.ss01 Udotbelow.ss01 Uhorndotbelow.ss01 Wdieresis.ss01 Ydieresis.ss01 Ydotbelow.ss01 Zdotaccent.ss01 I.ss02 IJ.ss02 Iacute.ss02 Ibreve.ss02 Icircumflex.ss02 Idieresis.ss02 Idotaccent.ss02 Idotbelow.ss02 Igrave.ss02 Ihookabove.ss02 Imacron.ss02 Iogonek.ss02 Itilde.ss02 G.ss07 Gbreve.ss07 Gcaron.ss07 Gcircumflex.ss07 Gcommaaccent.ss07 Gdotaccent.ss07 Q.ss09 J.ss10 Gdotaccent.ss01.ss07"; +name = Uppercase; +}, +{ +automatic = 1; +code = "A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat Eth E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Etilde F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Itilde J Jacute Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Ntilde Eng O Oacute Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde 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 Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ytilde Z Zacute Zcaron Zdotaccent Abrevedotbelow.ss01 Acircumflexdotbelow.ss01 Adieresis.ss01 Adotbelow.ss01 Cdotaccent.ss01 Ecircumflexdotbelow.ss01 Edieresis.ss01 Edotaccent.ss01 Edotbelow.ss01 Gdotaccent.ss01 Idieresis.ss01 Idotaccent.ss01 Idotbelow.ss01 Ldot.ss01 Ocircumflexdotbelow.ss01 Odieresis.ss01 Odotbelow.ss01 Ohorndotbelow.ss01 Udieresis.ss01 Udotbelow.ss01 Uhorndotbelow.ss01 Wdieresis.ss01 Ydieresis.ss01 Ydotbelow.ss01 Zdotaccent.ss01 I.ss02 IJ.ss02 Iacute.ss02 Ibreve.ss02 Icircumflex.ss02 Idieresis.ss02 Idotaccent.ss02 Idotbelow.ss02 Igrave.ss02 Ihookabove.ss02 Imacron.ss02 Iogonek.ss02 Itilde.ss02 G.ss07 Gbreve.ss07 Gcaron.ss07 Gcircumflex.ss07 Gcommaaccent.ss07 Gdotaccent.ss07 Q.ss09 J.ss10 Gdotaccent.ss01.ss07 a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove amacron aogonek aring atilde ae b c cacute ccaron ccedilla ccircumflex cdotaccent d dcaron dcroat eth e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek etilde f g gbreve gcaron gcircumflex gcommaaccent gdotaccent h hbar hcircumflex i idotless iacute ibreve icircumflex idieresis idotaccent idotbelow igrave ihookabove imacron iogonek itilde ij j jdotless jacute jcircumflex k kcommaaccent l lacute lcaron lcommaaccent ldot lslash m n nacute ncaron ncommaaccent ntilde eng o oacute ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde 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 udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ytilde z zacute zcaron zdotaccent idotbelow.dotless iogonek.dotless f.longarm abrevedotbelow.ss01 acircumflexdotbelow.ss01 adotbelow.ss01 cdotaccent.ss01 ecircumflexdotbelow.ss01 edieresis.ss01 edotaccent.ss01 edotbelow.ss01 gdotaccent.ss01 i.ss01 idieresis.ss01 idotaccent.ss01 idotbelow.ss01 j.ss01 ldot.ss01 ocircumflexdotbelow.ss01 odieresis.ss01 odotbelow.ss01 ohorndotbelow.ss01 udieresis.ss01 udotbelow.ss01 uhorndotbelow.ss01 wdieresis.ss01 ydieresis.ss01 ydotbelow.ss01 zdotaccent.ss01 l.ss03 lacute.ss03 lcaron.ss03 lcommaaccent.ss03 ldot.ss03 lslash.ss03 l.ss04 lacute.ss04 lcaron.ss04 lcommaaccent.ss04 ldot.ss04 lslash.ss04 a.ss05 aacute.ss05 abreve.ss05 abreveacute.ss05 abrevedotbelow.ss05 abrevegrave.ss05 abrevehookabove.ss05 abrevetilde.ss05 acircumflex.ss05 acircumflexacute.ss05 acircumflexdotbelow.ss05 acircumflexgrave.ss05 acircumflexhookabove.ss05 acircumflextilde.ss05 adieresis.ss05 adotbelow.ss05 agrave.ss05 ahookabove.ss05 amacron.ss05 aogonek.ss05 aring.ss05 atilde.ss05 g.ss06 gbreve.ss06 gcaron.ss06 gcircumflex.ss06 gcommaaccent.ss06 gdotaccent.ss06 idotbelow.dotless.ss01 adieresis.ss05.ss01 adotbelow.ss05.ss01 ldot.ss01.ss03 ldot.ss01.ss04 gdotaccent.ss01.ss06 f_f.liga f_f_i.liga f_y.liga fi fl t_i.liga t_t.liga fi.ss01 f_f_i.liga.ss01 t_i.liga.ss01 ordfeminine ordmasculine mu pi zero one two three four five six seven eight nine zero.blackCircled one.blackCircled two.blackCircled three.blackCircled four.blackCircled five.blackCircled six.blackCircled seven.blackCircled eight.blackCircled nine.blackCircled zero.circled one.circled two.circled three.circled four.circled five.circled six.circled seven.circled eight.circled nine.circled zero.tf one.tf two.tf three.tf four.tf five.tf six.tf seven.tf eight.tf nine.tf zero.tf.ss08 zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr fraction onehalf onequarter threequarters oneeighth threeeighths fiveeighths seveneighths zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior space nbspace period comma colon semicolon ellipsis exclam exclamdown question questiondown periodcentered bullet asterisk numbersign slash backslash exclamdown.case questiondown.case periodcentered.loclCAT period.ss01 comma.ss01 colon.ss01 semicolon.ss01 ellipsis.ss01 exclam.ss01 exclamdown.ss01 question.ss01 questiondown.ss01 periodcentered.ss01 bullet.ss01 periodcentered.loclCAT.case exclamdown.ss01.case questiondown.ss01.case periodcentered.loclCAT.ss01 periodcentered.loclCAT.case.ss01 hyphen endash emdash underscore hyphen.case endash.case emdash.case parenleft parenright braceleft braceright bracketleft bracketright parenleft.case parenright.case braceleft.case braceright.case bracketleft.case bracketright.case quotesinglbase quotedblbase quotedblleft quotedblright quoteleft quoteright guillemetleft guillemetright guilsinglleft guilsinglright quotedbl quotesingle quotesinglbase.ss01 quotedblbase.ss01 quotedblleft.ss01 quotedblright.ss01 quoteleft.ss01 quoteright.ss01 florin baht whiteFrowningFace whiteSmilingFace checkmark apple at ampersand paragraph section copyright registered published trademark degree bar brokenbar literSign estimated numero bitcoin cent currency dollar euro liraTurkish rupeeIndian sheqel sterling tenge won yen plus minus multiply divide equal notequal greater less greaterequal lessequal plusminus approxequal logicalnot asciitilde asciicircum infinity emptyset integral product summation radical percent perthousand upArrow rightArrow downArrow leftArrow leftRightArrow blackCircle whiteCircle dottedCircle dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb commaturnedabovecomb horncomb dotbelowcomb commaaccentcomb cedillacomb ogonekcomb strokeshortcomb strokelongcomb slashshortcomb slashlongcomb brevecomb_acutecomb brevecomb_gravecomb brevecomb_hookabovecomb brevecomb_tildecomb circumflexcomb_acutecomb circumflexcomb_gravecomb circumflexcomb_hookabovecomb circumflexcomb_tildecomb strokeshortcomb.case slashshortcomb.case slashlongcomb.case dieresiscomb.ss01 dotaccentcomb.ss01 dotbelowcomb.ss01 dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron cedilla ogonek"; +name = All; +} +); +customParameters = ( +{ +name = "Use Typo Metrics"; +value = 1; +}, +{ +name = fsType; +value = ( +); +}, +{ +name = "Use Line Breaks"; +value = 1; +}, +{ +name = "Use Extension Kerning"; +value = 1; +}, +{ +name = "Write DisplayStrings"; +value = 0; +}, +{ +name = "Variable Font Origin"; +value = m019; +}, +{ +disabled = 1; +name = unicodeRanges; +value = ( +0 +); +} +); +date = "2025-07-16 23:44:39 +0000"; +familyName = "Mona Sans"; +featurePrefixes = ( +{ +automatic = 1; +code = "languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn AZE; +languagesystem latn CRT; +languagesystem latn KAZ; +languagesystem latn TAT; +languagesystem latn TRK; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem latn NLD; +"; +name = Languagesystems; +} +); +features = ( +{ +automatic = 1; +code = "feature locl; +feature subs; +feature sinf; +feature sups; +feature numr; +feature dnom; +feature frac; +feature ordn; +feature pnum; +feature tnum; +feature case; +feature ss01; +feature ss02; +feature ss03; +feature ss04; +feature ss05; +feature ss06; +feature ss07; +feature ss08; +feature ss09; +feature ss10; +"; +tag = aalt; +}, +{ +automatic = 1; +code = "lookup ccmp_DFLT_1 { + @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb]; + lookupflag UseMarkFilteringSet @CombiningTopAccents; + sub i' @CombiningTopAccents by idotless; + sub iogonek' @CombiningTopAccents by iogonek.dotless; + sub idotbelow' @CombiningTopAccents by idotbelow.dotless; + sub j' @CombiningTopAccents by jdotless; +} ccmp_DFLT_1; + +lookup ccmp_DFLT_2 { + lookupflag 0; + sub brevecomb acutecomb by brevecomb_acutecomb; + sub brevecomb gravecomb by brevecomb_gravecomb; + sub brevecomb hookabovecomb by brevecomb_hookabovecomb; + sub brevecomb tildecomb by brevecomb_tildecomb; + sub circumflexcomb acutecomb by circumflexcomb_acutecomb; + sub circumflexcomb gravecomb by circumflexcomb_gravecomb; + sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb; + sub circumflexcomb tildecomb by circumflexcomb_tildecomb; +} ccmp_DFLT_2; + +lookup ccmp_Other_1 { + lookupflag 0; + @Markscomb = [strokeshortcomb slashshortcomb slashlongcomb]; + @MarkscombCase = [strokeshortcomb.case slashshortcomb.case slashlongcomb.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @Uppercase @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + lookupflag 0; + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; + +lookup ccmp_latn_1 { + lookupflag 0; + sub fi by f i; + sub fl by f l; + sub Ldot by L periodcentered.loclCAT.case; + sub ldot by l periodcentered.loclCAT; +} ccmp_latn_1; + +script latn; +lookup ccmp_latn_1; +"; +tag = ccmp; +}, +{ +automatic = 1; +code = "script latn; +language AZE; +lookup locl_latn_0 { + sub i by idotaccent; +} locl_latn_0; +language CRT; +lookup locl_latn_0; +language KAZ; +lookup locl_latn_0; +language TAT; +lookup locl_latn_0; +language TRK; +lookup locl_latn_0; + +script latn; +language ROM; +lookup locl_latn_1 { + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; +} locl_latn_1; +language MOL; +lookup locl_latn_1; + +script latn; +language CAT; +lookup locl_latn_2 { + sub l periodcentered' l by periodcentered.loclCAT; + sub L periodcentered' L by periodcentered.loclCAT.case; +} locl_latn_2; + +script latn; +language NLD; +lookup locl_latn_3 { + sub iacute j' by jacute; + sub Iacute J' by Jacute; +} locl_latn_3; +"; +tag = locl; +}, +{ +automatic = 1; +code = "sub zero by zeroinferior; +sub one by oneinferior; +sub two by twoinferior; +sub three by threeinferior; +sub four by fourinferior; +sub five by fiveinferior; +sub six by sixinferior; +sub seven by seveninferior; +sub eight by eightinferior; +sub nine by nineinferior; +"; +tag = subs; +}, +{ +automatic = 1; +code = "sub zero by zeroinferior; +sub one by oneinferior; +sub two by twoinferior; +sub three by threeinferior; +sub four by fourinferior; +sub five by fiveinferior; +sub six by sixinferior; +sub seven by seveninferior; +sub eight by eightinferior; +sub nine by nineinferior; +"; +tag = sinf; +}, +{ +automatic = 1; +code = "sub zero by zerosuperior; +sub one by onesuperior; +sub two by twosuperior; +sub three by threesuperior; +sub four by foursuperior; +sub five by fivesuperior; +sub six by sixsuperior; +sub seven by sevensuperior; +sub eight by eightsuperior; +sub nine by ninesuperior; +"; +tag = sups; +}, +{ +automatic = 1; +code = "sub zero by zero.numr; +sub one by one.numr; +sub two by two.numr; +sub three by three.numr; +sub four by four.numr; +sub five by five.numr; +sub six by six.numr; +sub seven by seven.numr; +sub eight by eight.numr; +sub nine by nine.numr; +"; +tag = numr; +}, +{ +automatic = 1; +code = "sub zero by zero.dnom; +sub one by one.dnom; +sub two by two.dnom; +sub three by three.dnom; +sub four by four.dnom; +sub five by five.dnom; +sub six by six.dnom; +sub seven by seven.dnom; +sub eight by eight.dnom; +sub nine by nine.dnom; +"; +tag = dnom; +}, +{ +automatic = 1; +code = "lookup FRAC { + sub slash by fraction; +} FRAC; +lookup UP { + sub [zero one two three four five six seven eight nine] by [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]; +} UP; +lookup DOWN { + sub fraction [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; + sub [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom] [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; +} DOWN; +"; +tag = frac; +}, +{ +automatic = 1; +code = "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; +"; +tag = ordn; +}, +{ +automatic = 1; +code = "sub zero.tf by zero; +sub one.tf by one; +sub two.tf by two; +sub three.tf by three; +sub four.tf by four; +sub five.tf by five; +sub six.tf by six; +sub seven.tf by seven; +sub eight.tf by eight; +sub nine.tf by nine; +"; +tag = pnum; +}, +{ +automatic = 1; +code = "sub zero by zero.tf; +sub one by one.tf; +sub two by two.tf; +sub three by three.tf; +sub four by four.tf; +sub five by five.tf; +sub six by six.tf; +sub seven by seven.tf; +sub eight by eight.tf; +sub nine by nine.tf; +"; +tag = tnum; +}, +{ +automatic = 1; +code = "sub exclamdown by exclamdown.case; +sub questiondown by questiondown.case; +sub periodcentered.loclCAT by periodcentered.loclCAT.case; +sub exclamdown.ss01 by exclamdown.ss01.case; +sub questiondown.ss01 by questiondown.ss01.case; +sub hyphen by hyphen.case; +sub endash by endash.case; +sub emdash by emdash.case; +sub parenleft by parenleft.case; +sub parenright by parenright.case; +sub braceleft by braceleft.case; +sub braceright by braceright.case; +sub bracketleft by bracketleft.case; +sub bracketright by bracketright.case; +sub strokeshortcomb by strokeshortcomb.case; +sub slashshortcomb by slashshortcomb.case; +sub slashlongcomb by slashlongcomb.case; +"; +tag = case; +}, +{ +automatic = 1; +code = "lookupflag IgnoreMarks; +sub f f i by f_f_i.liga; +sub f f by f_f.liga; +sub f y by f_y.liga; +sub t i by t_i.liga; +sub t t by t_t.liga; +sub f i by fi; +sub f l by fl; +"; +tag = liga; +}, +{ +automatic = 1; +code = "sub Abrevedotbelow by Abrevedotbelow.ss01; +sub Acircumflexdotbelow by Acircumflexdotbelow.ss01; +sub Adieresis by Adieresis.ss01; +sub Adotbelow by Adotbelow.ss01; +sub Cdotaccent by Cdotaccent.ss01; +sub Ecircumflexdotbelow by Ecircumflexdotbelow.ss01; +sub Edieresis by Edieresis.ss01; +sub Edotaccent by Edotaccent.ss01; +sub Edotbelow by Edotbelow.ss01; +sub Gdotaccent by Gdotaccent.ss01; +sub Idieresis by Idieresis.ss01; +sub Idotaccent by Idotaccent.ss01; +sub Idotbelow by Idotbelow.ss01; +sub Ldot by Ldot.ss01; +sub Ocircumflexdotbelow by Ocircumflexdotbelow.ss01; +sub Odieresis by Odieresis.ss01; +sub Odotbelow by Odotbelow.ss01; +sub Ohorndotbelow by Ohorndotbelow.ss01; +sub Udieresis by Udieresis.ss01; +sub Udotbelow by Udotbelow.ss01; +sub Uhorndotbelow by Uhorndotbelow.ss01; +sub Wdieresis by Wdieresis.ss01; +sub Ydieresis by Ydieresis.ss01; +sub Ydotbelow by Ydotbelow.ss01; +sub Zdotaccent by Zdotaccent.ss01; +sub abrevedotbelow by abrevedotbelow.ss01; +sub acircumflexdotbelow by acircumflexdotbelow.ss01; +sub adotbelow by adotbelow.ss01; +sub cdotaccent by cdotaccent.ss01; +sub ecircumflexdotbelow by ecircumflexdotbelow.ss01; +sub edieresis by edieresis.ss01; +sub edotaccent by edotaccent.ss01; +sub edotbelow by edotbelow.ss01; +sub gdotaccent by gdotaccent.ss01; +sub i by i.ss01; +sub idieresis by idieresis.ss01; +sub idotaccent by idotaccent.ss01; +sub idotbelow by idotbelow.ss01; +sub j by j.ss01; +sub ldot by ldot.ss01; +sub ocircumflexdotbelow by ocircumflexdotbelow.ss01; +sub odieresis by odieresis.ss01; +sub odotbelow by odotbelow.ss01; +sub ohorndotbelow by ohorndotbelow.ss01; +sub udieresis by udieresis.ss01; +sub udotbelow by udotbelow.ss01; +sub uhorndotbelow by uhorndotbelow.ss01; +sub wdieresis by wdieresis.ss01; +sub ydieresis by ydieresis.ss01; +sub ydotbelow by ydotbelow.ss01; +sub zdotaccent by zdotaccent.ss01; +sub idotbelow.dotless by idotbelow.dotless.ss01; +sub adieresis.ss05 by adieresis.ss05.ss01; +sub adotbelow.ss05 by adotbelow.ss05.ss01; +sub fi by fi.ss01; +sub f_f_i.liga by f_f_i.liga.ss01; +sub t_i.liga by t_i.liga.ss01; +sub period by period.ss01; +sub comma by comma.ss01; +sub colon by colon.ss01; +sub semicolon by semicolon.ss01; +sub ellipsis by ellipsis.ss01; +sub exclam by exclam.ss01; +sub exclamdown by exclamdown.ss01; +sub question by question.ss01; +sub questiondown by questiondown.ss01; +sub periodcentered by periodcentered.ss01; +sub bullet by bullet.ss01; +sub periodcentered.loclCAT by periodcentered.loclCAT.ss01; +sub periodcentered.loclCAT.case by periodcentered.loclCAT.case.ss01; +sub quotesinglbase by quotesinglbase.ss01; +sub quotedblbase by quotedblbase.ss01; +sub quotedblleft by quotedblleft.ss01; +sub quotedblright by quotedblright.ss01; +sub quoteleft by quoteleft.ss01; +sub quoteright by quoteright.ss01; +sub dieresiscomb by dieresiscomb.ss01; +sub dotaccentcomb by dotaccentcomb.ss01; +sub dotbelowcomb by dotbelowcomb.ss01; +"; +labels = ( +{ +language = dflt; +value = "Square dots"; +} +); +tag = ss01; +}, +{ +automatic = 1; +code = "sub I by I.ss02; +sub IJ by IJ.ss02; +sub Iacute by Iacute.ss02; +sub Ibreve by Ibreve.ss02; +sub Icircumflex by Icircumflex.ss02; +sub Idieresis by Idieresis.ss02; +sub Idotaccent by Idotaccent.ss02; +sub Idotbelow by Idotbelow.ss02; +sub Igrave by Igrave.ss02; +sub Ihookabove by Ihookabove.ss02; +sub Imacron by Imacron.ss02; +sub Iogonek by Iogonek.ss02; +sub Itilde by Itilde.ss02; +"; +labels = ( +{ +language = dflt; +value = "Wider uppercase I"; +} +); +tag = ss02; +}, +{ +automatic = 1; +code = "sub l by l.ss03; +sub lacute by lacute.ss03; +sub lcaron by lcaron.ss03; +sub lcommaaccent by lcommaaccent.ss03; +sub ldot by ldot.ss03; +sub lslash by lslash.ss03; +sub ldot.ss01 by ldot.ss01.ss03; +"; +labels = ( +{ +language = dflt; +value = "Lowercase l with tail"; +} +); +tag = ss03; +}, +{ +automatic = 1; +code = "sub l by l.ss04; +sub lacute by lacute.ss04; +sub lcaron by lcaron.ss04; +sub lcommaaccent by lcommaaccent.ss04; +sub ldot by ldot.ss04; +sub lslash by lslash.ss04; +sub ldot.ss01 by ldot.ss01.ss04; +"; +labels = ( +{ +language = dflt; +value = "Lowercase l with top serif"; +} +); +tag = ss04; +}, +{ +automatic = 1; +code = "sub a by a.ss05; +sub aacute by aacute.ss05; +sub abreve by abreve.ss05; +sub abreveacute by abreveacute.ss05; +sub abrevedotbelow by abrevedotbelow.ss05; +sub abrevegrave by abrevegrave.ss05; +sub abrevehookabove by abrevehookabove.ss05; +sub abrevetilde by abrevetilde.ss05; +sub acircumflex by acircumflex.ss05; +sub acircumflexacute by acircumflexacute.ss05; +sub acircumflexdotbelow by acircumflexdotbelow.ss05; +sub acircumflexgrave by acircumflexgrave.ss05; +sub acircumflexhookabove by acircumflexhookabove.ss05; +sub acircumflextilde by acircumflextilde.ss05; +sub adieresis by adieresis.ss05; +sub adotbelow by adotbelow.ss05; +sub agrave by agrave.ss05; +sub ahookabove by ahookabove.ss05; +sub amacron by amacron.ss05; +sub aogonek by aogonek.ss05; +sub aring by aring.ss05; +sub atilde by atilde.ss05; +"; +labels = ( +{ +language = dflt; +value = "Double-storey a"; +} +); +tag = ss05; +}, +{ +automatic = 1; +code = "sub g by g.ss06; +sub gbreve by gbreve.ss06; +sub gcaron by gcaron.ss06; +sub gcircumflex by gcircumflex.ss06; +sub gcommaaccent by gcommaaccent.ss06; +sub gdotaccent by gdotaccent.ss06; +sub gdotaccent.ss01 by gdotaccent.ss01.ss06; +"; +labels = ( +{ +language = dflt; +value = "Double-storey g"; +} +); +tag = ss06; +}, +{ +automatic = 1; +code = "sub G by G.ss07; +sub Gbreve by Gbreve.ss07; +sub Gcaron by Gcaron.ss07; +sub Gcircumflex by Gcircumflex.ss07; +sub Gcommaaccent by Gcommaaccent.ss07; +sub Gdotaccent by Gdotaccent.ss07; +sub Gdotaccent.ss01 by Gdotaccent.ss01.ss07; +"; +labels = ( +{ +language = dflt; +value = "Square G"; +} +); +tag = ss07; +}, +{ +automatic = 1; +code = "sub zero.tf by zero.tf.ss08; +"; +labels = ( +{ +language = dflt; +value = "Tabular zero with straight bar"; +} +); +tag = ss08; +}, +{ +automatic = 1; +code = "sub Q by Q.ss09; +"; +labels = ( +{ +language = dflt; +value = "Q with diagonal arm"; +} +); +tag = ss09; +}, +{ +automatic = 1; +code = "sub J by J.ss10; +"; +labels = ( +{ +language = dflt; +value = "J with bowl"; +} +); +tag = ss10; +}, +{ +code = "#ifdef VARIABLE +condition opsz < 38; +sub a by a.ss05; +sub Q by Q.ss09; +sub J by J.ss10; +#endif +"; +tag = rlig; +}, +{ +code = "pos @All <14 0 14 0 (opsz:20) 9 0 9 0 (opsz:34) 4 0 4 0 (opsz:42) 17 0 17 0 (opsz:64) -2 0 -2 0 (opsz:100) 0 0 0 0>; +"; +tag = kern; +} +); +fontMaster = ( +{ +axesValues = ( +75, +200, +100, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 100; +}, +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 25; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = D; +}, +{ +name = paramArea; +value = 306; +}, +{ +name = paramDepth; +value = 14; +} +); +iconName = Light_Condensed; +id = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 516; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Display Condensed ExtraLight"; +stemValues = ( +30, +27, +29, +29 +); +userData = { +GSOffsetHorizontal = 13; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetPosition = 0.33; +GSOffsetProportional = 1; +GSOffsetVertical = 16; +HTLSManagerMasterRules = { +}; +KernOnIndependentPairs = ( +"A Z", +"P T", +"f o", +"g j", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"T u", +"T o", +"seven four", +"L Y", +"A V", +"parenleft n", +"T i", +"o v", +"fraction zero.dnom", +"F i", +"hyphen s", +"s hyphen", +"l l", +"l n", +"s l", +"f l", +"r n", +"f n", +"f f", +"v n", +"o n", +"n n", +"l period", +"l exclam", +"l question", +"l colon", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"H x", +"H s", +"H o", +"H n", +"one zero", +"one two", +"one three", +"one seven", +"one four", +"one one", +"L H", +"E H", +"H Z", +"H T", +"H V", +"H O", +"H H", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t t", +"z v", +"hyphen S", +"t v", +"v v", +"z z", +"lcaron l", +"T V", +"E T" +); +}; +}, +{ +axesValues = ( +75, +900, +100, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 100; +}, +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 160; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = D; +}, +{ +name = paramArea; +value = 141; +}, +{ +name = paramDepth; +value = 4; +} +); +iconName = Bold_Condensed; +id = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 541; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Display Condensed Black"; +stemValues = ( +156, +137, +177, +177 +); +userData = { +GSOffsetHorizontal = 82; +GSOffsetMakeStroke = 1; +GSOffsetPosition = 0.52; +GSOffsetVertical = 70; +KernOnIndependentPairs = ( +"bracketleft l", +"parenleft H", +"parenleft l", +"H s", +"l slash", +"f o", +"f n", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"L Y", +"parenleft n", +"seven four", +"T o", +"A V", +"T u", +"parenleft T", +"fraction zero.dnom", +"o v", +"T i", +"P T", +"hyphen s", +"l l", +"l n", +"f l", +"s l", +"r n", +"t v", +"z z", +"z v", +"v n", +"o n", +"n n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l hyphen", +"s hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"F i", +"H x", +"H o", +"H n", +"one zero", +"one seven", +"one one", +"one four", +"one two", +"one three", +"L H", +"E H", +"H T", +"H Z", +"H H", +"H O", +"H V", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior oneinferior", +"oneinferior twoinferior", +"one.dnom zero.dnom", +"one.dnom one.dnom", +"one.dnom two.dnom", +"one.numr fraction", +"period period", +"slash l", +"endash endash", +"equal equal", +"t t", +"f f", +"v v", +"E T", +"T V", +"A Z", +"hyphen S", +"g j", +"lcaron l" +); +}; +}, +{ +axesValues = ( +100, +200, +100, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 100; +}, +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 25; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = D; +}, +{ +name = paramArea; +value = 438; +}, +{ +name = paramDepth; +value = 14; +} +); +guides = ( +{ +pos = (293,976); +}, +{ +pos = (301,836); +} +); +iconName = Light; +id = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 517; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Display ExtraLight"; +stemValues = ( +36, +35, +36, +38 +); +userData = { +GSOffsetAutoStroke = 1; +GSOffsetHorizontal = 16; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 17; +KernOnIndependentPairs = ( +"f n", +"H s", +"T u", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"T o", +"L Y", +"A V", +"seven four", +"parenleft n", +"fraction zero.dnom", +"T i", +"F i", +"f o", +"o v", +"P T", +"s hyphen", +"hyphen s", +"l l", +"l n", +"s l", +"f l", +"g j", +"f f", +"r n", +"v n", +"n n", +"o n", +"l period", +"l exclam", +"l colon", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"H x", +"H n", +"H o", +"one zero", +"one two", +"one seven", +"one three", +"one four", +"one one", +"L H", +"H T", +"E H", +"H Z", +"H V", +"H H", +"H O", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen S", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t t", +"z v", +"t v", +"z z", +"T V", +"E T", +"v v", +"lcaron l", +"A Z" +); +}; +}, +{ +axesValues = ( +100, +900, +100, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 100; +}, +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 160; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = D; +}, +{ +name = paramArea; +value = 290; +}, +{ +name = paramDepth; +value = 10; +} +); +iconName = Bold; +id = "DED42A87-C949-4722-A202-2B551272A3FB"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 544; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Display Black"; +stemValues = ( +172, +153, +191, +193 +); +userData = { +HTLSManagerMasterRules = { +}; +KernOnIndependentPairs = ( +"one percent", +"H question", +"l question", +"f n", +"v v", +"H V", +"parenleft l", +"l slash", +"H comma", +"H O", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"L Y", +"A V", +"T o", +"seven four", +"parenleft n", +"T u", +"fraction zero.dnom", +"o v", +"T i", +"l l", +"l n", +"s l", +"f l", +"f o", +"r n", +"z z", +"o n", +"v n", +"n n", +"l period", +"l colon", +"l exclam", +"l quoteright", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"F i", +"H s", +"H o", +"H n", +"H x", +"one zero", +"one seven", +"one four", +"one one", +"one two", +"one three", +"L H", +"H Z", +"E H", +"H T", +"P T", +"H H", +"H period", +"H colon", +"H exclam", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen s", +"endash endash", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t v", +"z v", +"t t", +"s hyphen", +"A Z", +"E T", +"g j", +"hyphen S", +"f f", +"T V", +"lcaron l" +); +}; +}, +{ +axesValues = ( +125, +200, +100, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 100; +}, +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 25; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = D; +}, +{ +name = paramArea; +value = 338; +}, +{ +name = paramDepth; +value = 12; +} +); +iconName = Light_Extended; +id = "106FCE83-F343-403B-A314-646E4D059B3F"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 517; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Display Expanded ExtraLight"; +stemValues = ( +36, +35, +37, +38 +); +userData = { +GSOffsetAutoStroke = 1; +GSOffsetHorizontal = 17; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 16; +KernOnIndependentPairs = ( +"f n", +"l slash", +"one zero", +"one two", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"A V", +"T o", +"L Y", +"T u", +"seven four", +"parenleft n", +"f o", +"o v", +"T i", +"P T", +"fraction zero.dnom", +"F i", +"l l", +"l n", +"s l", +"f l", +"r n", +"v n", +"n n", +"o n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"H s", +"H x", +"H n", +"H o", +"one seven", +"one three", +"one four", +"one one", +"L H", +"E H", +"H Z", +"H T", +"H H", +"H O", +"H V", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen s", +"hyphen S", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t t", +"z v", +"s hyphen", +"t v", +"E T", +"f f", +"z z", +"g j", +"T V", +"v v", +"A Z", +"lcaron l" +); +}; +}, +{ +axesValues = ( +125, +900, +100, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 100; +}, +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 160; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = D; +}, +{ +name = paramArea; +value = 230; +}, +{ +name = paramDepth; +value = 11; +} +); +guides = ( +{ +pos = (493,729); +}, +{ +pos = (467,988); +} +); +iconName = Bold_Extended; +id = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 544; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Display Expanded Black"; +stemValues = ( +178, +166, +221, +220 +); +userData = { +KernOnIndependentPairs = ( +"H o", +"f o", +"f l", +"o v", +"E H", +"one zero", +"H Z", +"one two", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"L Y", +"A V", +"T o", +"seven four", +"parenleft n", +"fraction zero.dnom", +"T u", +"l l", +"l n", +"s l", +"f n", +"r n", +"v n", +"n n", +"o n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"F i", +"H s", +"H n", +"H x", +"one seven", +"one one", +"one three", +"one four", +"L H", +"H T", +"H H", +"H O", +"H V", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen s", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t t", +"s hyphen", +"z v", +"T i", +"t v", +"z z", +"hyphen S", +"P T", +"g j", +"E T", +"f f", +"A Z", +"v v", +"T V", +"lcaron l" +); +}; +}, +{ +axesValues = ( +75, +200, +1, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 25; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 306; +}, +{ +name = paramDepth; +value = 14; +} +); +iconName = Light_Condensed; +id = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 516; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Condensed ExtraLight"; +stemValues = ( +30, +27, +29, +29 +); +userData = { +GSOffsetHorizontal = 13; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetPosition = 0.33; +GSOffsetProportional = 1; +GSOffsetVertical = 16; +HTLSManagerMasterRules = { +}; +KernOnIndependentPairs = ( +"l periodcentered.loclCAT" +); +KernOnModels = ( +"T u", +"T o", +"seven four", +"L Y", +"A V", +"parenleft n", +"T i", +"fraction zero.dnom", +"F i", +"hyphen s", +"s hyphen", +"l l", +"l n", +"s l", +"g j", +"f l", +"f o", +"f n", +"f f", +"r n", +"o v", +"v n", +"o n", +"n n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"H x", +"H s", +"H o", +"H n", +"one zero", +"one two", +"one three", +"one seven", +"one four", +"one one", +"L H", +"E H", +"H T", +"P T", +"H Z", +"H V", +"H O", +"H H", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t t", +"z v", +"hyphen S", +"t v", +"v v", +"z z", +"lcaron l", +"T V", +"E T", +"A Z" +); +}; +}, +{ +axesValues = ( +75, +900, +1, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 160; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 141; +}, +{ +name = paramDepth; +value = 4; +} +); +iconName = Bold_Condensed; +id = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 541; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Condensed Black"; +stemValues = ( +156, +137, +177, +177 +); +userData = { +GSOffsetHorizontal = 82; +GSOffsetMakeStroke = 1; +GSOffsetPosition = 0.52; +GSOffsetVertical = 70; +KernOnIndependentPairs = ( +"l slash", +"f n", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"L Y", +"parenleft n", +"seven four", +"T o", +"A V", +"T u", +"parenleft T", +"fraction zero.dnom", +"o v", +"T i", +"P T", +"f o", +"hyphen s", +"l l", +"l n", +"s l", +"f l", +"t v", +"r n", +"z z", +"z v", +"v n", +"o n", +"n n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l hyphen", +"s hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"F i", +"H s", +"H o", +"H n", +"H x", +"L H", +"one zero", +"one seven", +"one four", +"one one", +"one two", +"one three", +"E H", +"H T", +"H Z", +"H V", +"H O", +"H H", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"equal equal", +"t t", +"f f", +"v v", +"E T", +"T V", +"A Z", +"hyphen S", +"g j", +"lcaron l" +); +}; +}, +{ +axesValues = ( +100, +200, +1, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 25; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 438; +}, +{ +name = paramDepth; +value = 14; +} +); +guides = ( +{ +pos = (293,976); +}, +{ +pos = (301,836); +} +); +iconName = Light; +id = m019; +metricValues = ( +{ +pos = 759; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 517; +}, +{ +over = -10; +}, +{ +over = -10; +pos = -182; +}, +{ +} +); +name = ExtraLight; +stemValues = ( +36, +35, +36, +38 +); +userData = { +GSOffsetAutoStroke = 1; +GSOffsetHorizontal = 16; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 17; +KernOnModels = ( +"T o", +"L Y", +"A V", +"T u", +"seven four", +"parenleft n", +"fraction zero.dnom", +"T i", +"F i", +"f o", +"o v", +"P T", +"l l", +"l n", +"s l", +"f l", +"f n", +"f f", +"r n", +"v n", +"n n", +"o n", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"H s", +"H x", +"H n", +"H o", +"one three", +"one seven", +"one one", +"L H", +"H Z", +"E H", +"H T", +"H V", +"H H", +"H O", +"H period", +"H comma", +"H exclam", +"one percent", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen S", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t t", +"z v", +"t v", +"z z", +"v v", +"quotedbl W", +"lcaron l", +"E T", +"A Z" +); +}; +}, +{ +axesValues = ( +100, +900, +1, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 160; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 290; +}, +{ +name = paramDepth; +value = 10; +} +); +iconName = Bold; +id = m020; +metricValues = ( +{ +pos = 759; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 544; +}, +{ +over = -10; +}, +{ +over = -10; +pos = -182; +}, +{ +} +); +name = Black; +stemValues = ( +172, +153, +191, +193 +); +userData = { +HTLSManagerMasterRules = { +}; +KernOnIndependentPairs = ( +"s hyphen" +); +KernOnModels = ( +"L Y", +"A V", +"T o", +"seven four", +"parenleft n", +"T u", +"fraction zero.dnom", +"o v", +"T i", +"l l", +"l n", +"s l", +"f l", +"f o", +"r n", +"z z", +"v n", +"o n", +"n n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"F i", +"H l", +"H s", +"H o", +"H x", +"I I", +"one zero", +"one seven", +"one three", +"one four", +"one one", +"L H", +"E H", +"H T", +"P T", +"H V", +"O G", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen s", +"endash endash", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t v", +"z v", +"t t", +"E T", +"A Z", +"hyphen S", +"f f", +"T V", +"v v", +"quotedbl W", +"lcaron l" +); +}; +}, +{ +axesValues = ( +125, +200, +1, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 25; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 338; +}, +{ +name = paramDepth; +value = 12; +} +); +iconName = Light_Extended; +id = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 517; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Expanded ExtraLight"; +stemValues = ( +36, +35, +37, +38 +); +userData = { +GSOffsetAutoStroke = 1; +GSOffsetHorizontal = 17; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 16; +KernOnIndependentPairs = ( +"f n", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"A V", +"T o", +"L Y", +"T u", +"seven four", +"parenleft n", +"f o", +"T i", +"o v", +"P T", +"fraction zero.dnom", +"F i", +"l l", +"l n", +"s l", +"f l", +"r n", +"v n", +"n n", +"o n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"H s", +"H x", +"H n", +"H o", +"one zero", +"one two", +"one three", +"one seven", +"one four", +"one one", +"L H", +"H T", +"E H", +"H Z", +"H H", +"H O", +"H V", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen s", +"hyphen S", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t t", +"z v", +"s hyphen", +"t v", +"E T", +"f f", +"z z", +"g j", +"T V", +"v v", +"A Z", +"lcaron l" +); +}; +}, +{ +axesValues = ( +125, +900, +1, +0 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 160; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 230; +}, +{ +name = paramDepth; +value = 11; +} +); +guides = ( +{ +pos = (493,729); +}, +{ +pos = (467,988); +} +); +iconName = Bold_Extended; +id = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 544; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Expanded Black"; +stemValues = ( +178, +166, +221, +220 +); +userData = { +KernOnIndependentPairs = ( +"f n", +"one zero", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"L Y", +"A V", +"T o", +"seven four", +"parenleft n", +"fraction zero.dnom", +"o v", +"T u", +"l l", +"l n", +"s l", +"f l", +"r n", +"v n", +"o n", +"n n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"F i", +"H s", +"H o", +"H x", +"H n", +"one seven", +"one two", +"one three", +"one one", +"one four", +"L H", +"H T", +"H Z", +"E H", +"H H", +"H O", +"H V", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen s", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t t", +"s hyphen", +"z v", +"T i", +"f o", +"t v", +"z z", +"hyphen S", +"P T", +"g j", +"E T", +"f f", +"A Z", +"v v", +"T V", +"lcaron l" +); +}; +}, +{ +axesValues = ( +75, +200, +1, +1 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = Italic; +Location = 1; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 25; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 306; +}, +{ +name = paramDepth; +value = 14; +} +); +guides = ( +{ +pos = (126,-200); +}, +{ +pos = (217,746); +}, +{ +pos = (225,846); +}, +{ +pos = (149,882); +}, +{ +pos = (134,100); +} +); +iconName = Light_Condensed; +id = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 516; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +pos = 11.7; +} +); +name = "Condensed ExtraLight Italic"; +stemValues = ( +30, +27, +29, +29 +); +userData = { +GSOffsetHorizontal = 16; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 14; +HTLSManagerLinkedMaster = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +KernOnIndependentPairs = ( +"one zero", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"T u", +"T o", +"parenleft n", +"L Y", +"A V", +"seven four", +"s hyphen", +"P T", +"o v", +"T i", +"l l", +"s l", +"f l", +"g j", +"f o", +"f n", +"r n", +"v n", +"o n", +"n n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"F i", +"H x", +"H s", +"H o", +"H n", +"one two", +"one three", +"one seven", +"one four", +"one one", +"L H", +"E H", +"H T", +"H Z", +"H V", +"H O", +"H H", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"fraction zero.dnom", +"period period", +"slash l", +"hyphen s", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"equal equal", +"parenleft T", +"f f", +"t t", +"z v", +"hyphen S", +"t v", +"v v", +"z z", +"E T", +"lcaron l", +"T V", +"A Z" +); +}; +}, +{ +axesValues = ( +75, +900, +1, +1 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = Italic; +Location = 1; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 160; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 141; +}, +{ +name = paramDepth; +value = 4; +} +); +iconName = Bold_Condensed; +id = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 541; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +pos = 11.7; +} +); +name = "Condensed Black Italic"; +stemValues = ( +156, +137, +177, +177 +); +userData = { +GSOffsetAutoStroke = 1; +GSOffsetHorizontal = 2; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetProportional = 1; +GSOffsetVertical = 10; +KernOnIndependentPairs = ( +"f n", +"one one", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"L Y", +"A V", +"parenleft n", +"seven four", +"T o", +"parenleft T", +"T u", +"o v", +"P T", +"fraction zero.dnom", +"T i", +"s hyphen", +"hyphen s", +"l l", +"s l", +"f l", +"f o", +"r n", +"z z", +"z v", +"v n", +"o n", +"n n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"F i", +"H s", +"H o", +"H x", +"H n", +"L H", +"one seven", +"one zero", +"one four", +"one two", +"one three", +"E H", +"H T", +"H Z", +"H O", +"H H", +"H V", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"equal equal", +"t t", +"t v", +"f f", +"v v", +"T V", +"A Z", +"E T", +"hyphen S", +"g j", +"lcaron l" +); +}; +}, +{ +axesValues = ( +100, +200, +1, +1 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = Italic; +Location = 1; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 25; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 438; +}, +{ +name = paramDepth; +value = 14; +} +); +guides = ( +{ +pos = (285,793); +} +); +iconName = Light; +id = "095FE76F-1953-440B-9108-AA0678D151F9"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 517; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +pos = 11.7; +} +); +name = "ExtraLight Italic"; +stemValues = ( +36, +35, +36, +35 +); +userData = { +GSOffsetHorizontal = 20; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 18; +KernOnIndependentPairs = ( +"H hyphen", +"f n", +"H O", +"oneinferior zeroinferior", +"one.dnom zero.dnom", +"l hyphen", +"H o" +); +KernOnModels = ( +"A V", +"T o", +"L Y", +"T u", +"seven four", +"parenleft n", +"P T", +"T i", +"o v", +"F i", +"equal equal", +"s hyphen", +"f o", +"fraction zero.dnom", +"l l", +"s l", +"f l", +"t t", +"r n", +"z z", +"v n", +"n n", +"o n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l endash", +"l underscore", +"l at", +"H s", +"H x", +"H n", +"one zero", +"one three", +"one seven", +"one two", +"one four", +"one one", +"L H", +"H T", +"E H", +"H Z", +"H V", +"H H", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H endash", +"H ampersand", +"one equal", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen s", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"g j", +"E T", +"hyphen S", +"z v", +"parenleft T", +"l periodcentered.loclCAT", +"t v", +"f f", +"T V", +"v v", +"lcaron l", +"A Z" +); +}; +}, +{ +axesValues = ( +100, +900, +1, +1 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = Italic; +Location = 1; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 160; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 290; +}, +{ +name = paramDepth; +value = 10; +} +); +guides = ( +{ +angle = 78.1644; +pos = (-175,729); +}, +{ +pos = (369,793); +} +); +iconName = Bold; +id = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 544; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +pos = 11.7; +} +); +name = "Black Italic"; +stemValues = ( +172, +153, +191, +193 +); +userData = { +KernOnIndependentPairs = ( +"l n", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"L Y", +"A V", +"T o", +"parenleft n", +"seven four", +"o v", +"T u", +"T i", +"P T", +"fraction zero.dnom", +"l l", +"s l", +"f l", +"f o", +"r n", +"t v", +"z z", +"v n", +"o n", +"n n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"s hyphen", +"l endash", +"l underscore", +"l at", +"F i", +"H s", +"H o", +"H n", +"H x", +"one zero", +"one seven", +"one two", +"one three", +"one one", +"one four", +"L H", +"E H", +"H Z", +"H T", +"H V", +"H H", +"H O", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen s", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"z v", +"t t", +"E T", +"A Z", +"hyphen S", +"g j", +"T V", +"f f", +"v v", +"lcaron l" +); +}; +}, +{ +axesValues = ( +125, +200, +1, +1 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = Italic; +Location = 1; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 25; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 338; +}, +{ +name = paramDepth; +value = 12; +} +); +iconName = Light_Extended; +id = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 517; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +pos = 11.7; +} +); +name = "Expanded ExtraLight Italic"; +stemValues = ( +38, +35, +37, +38 +); +userData = { +GSOffsetHorizontal = 17; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 15; +KernOnIndependentPairs = ( +"f n", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"A V", +"L Y", +"T o", +"T u", +"seven four", +"parenleft n", +"o v", +"P T", +"T i", +"F i", +"bracketleft l", +"f o", +"s hyphen", +"l l", +"s l", +"f l", +"r n", +"v n", +"n n", +"o n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H s", +"H x", +"H n", +"H o", +"one zero", +"one seven", +"one three", +"one two", +"one four", +"one one", +"L H", +"H T", +"E H", +"H Z", +"H H", +"H O", +"H V", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"fraction zero.dnom", +"period period", +"slash l", +"hyphen s", +"endash endash", +"parenleft l", +"parenleft H", +"parenleft T", +"equal equal", +"E T", +"hyphen S", +"t t", +"t v", +"z v", +"z z", +"T V", +"f f", +"g j", +"v v", +"A Z", +"lcaron l" +); +}; +}, +{ +axesValues = ( +125, +900, +1, +1 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = "Optical size"; +Location = 0; +}, +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = Italic; +Location = 1; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = underlineThickness; +value = 160; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = n; +}, +{ +name = paramArea; +value = 230; +}, +{ +name = paramDepth; +value = 11; +} +); +guides = ( +{ +pos = (295,793); +} +); +iconName = Bold_Extended; +id = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 544; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +pos = 11.7; +} +); +name = "Expanded Black Italic"; +stemValues = ( +178, +166, +221, +220 +); +userData = { +KernOnIndependentPairs = ( +"one zero", +"l periodcentered.loclCAT" +); +KernOnModels = ( +"L Y", +"A V", +"seven four", +"parenleft n", +"T o", +"o v", +"l quoteright", +"fraction zero.dnom", +"T u", +"parenleft l", +"parenleft H", +"l l", +"s l", +"f n", +"v n", +"o n", +"n n", +"s hyphen", +"l at", +"H s", +"H o", +"H x", +"H n", +"one seven", +"one two", +"one one", +"one four", +"one three", +"L H", +"H T", +"P T", +"H Z", +"E H", +"H H", +"H O", +"H V", +"H exclam", +"one percent", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"endash endash", +"parenleft T", +"equal equal", +"f l", +"r n", +"l exclam", +"l hyphen", +"l endash", +"l underscore", +"F i", +"H period", +"H colon", +"period period", +"bracketleft l", +"l period", +"l colon", +"l question", +"H question", +"l slash", +"H slash", +"hyphen s", +"t t", +"z v", +"H comma", +"f o", +"z z", +"T i", +"hyphen S", +"t v", +"g j", +"E T", +"f f", +"A Z", +"slash l", +"v v", +"T V", +"lcaron l" +); +}; +} +); +instances = ( +{ +customParameters = ( +{ +name = fileName; +value = "MonaSansVF[wdth,wght,opsz,ital]"; +}, +{ +name = "Variable Font Origin"; +value = m019; +}, +{ +name = "Italic Style Linking"; +value = 1; +} +); +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans VF"; +} +); +}, +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans VF"; +} +); +} +); +type = variable; +}, +{ +customParameters = ( +{ +name = fileName; +value = "MonaSansVF[wdth,wght,opsz]"; +}, +{ +name = "Variable Font Origin"; +value = m019; +}, +{ +name = "Italic Style Linking"; +value = 1; +}, +{ +name = "Disable Masters"; +value = ( +"Condensed ExtraLight Italic", +"Condensed Black Italic", +"ExtraLight Italic", +"Black Italic", +"Expanded ExtraLight Italic", +"Expanded Black Italic" +); +} +); +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans VF"; +} +); +}, +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans VF"; +} +); +} +); +type = variable; +}, +{ +customParameters = ( +{ +name = fileName; +value = "MonaSansVF[wght,opsz]"; +}, +{ +name = "Variable Font Origin"; +value = m019; +}, +{ +name = "Italic Style Linking"; +value = 1; +}, +{ +name = "Disable Masters"; +value = ( +"Condensed ExtraLight Italic", +"Condensed Black Italic", +"ExtraLight Italic", +"Black Italic", +"Expanded ExtraLight Italic", +"Expanded Black Italic", +"Condensed ExtraLight", +"Condensed Black", +"Expanded ExtraLight", +"Expanded Black", +"Display Condensed ExtraLight", +"Display Condensed Black", +"Display Expanded ExtraLight", +"Display Expanded Black" +); +} +); +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans VF"; +} +); +}, +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans VF"; +} +); +} +); +type = variable; +}, +{ +customParameters = ( +{ +name = fileName; +value = "MonaSansVF[wght,opsz,ital]"; +}, +{ +name = "Variable Font Origin"; +value = m019; +}, +{ +name = "Italic Style Linking"; +value = 1; +}, +{ +name = "Disable Masters"; +value = ( +"Condensed ExtraLight Italic", +"Condensed Black Italic", +"Expanded ExtraLight Italic", +"Expanded Black Italic", +"Condensed ExtraLight", +"Condensed Black", +"Expanded ExtraLight", +"Expanded Black", +"Display Condensed ExtraLight", +"Display Condensed Black", +"Display Expanded ExtraLight", +"Display Expanded Black" +); +} +); +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans VF"; +} +); +}, +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans VF"; +} +); +} +); +type = variable; +}, +{ +axesValues = ( +75, +200, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.20202; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.79798; +}; +name = ExtraLight; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Condensed ExtraLight"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Condensed"; +}, +{ +key = WWSSubfamilyName; +value = ExtraLight; +} +); +weightClass = 200; +widthClass = 3; +}, +{ +axesValues = ( +75, +329, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.16479; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.65092; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.03723; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.14706; +}; +name = Light; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Condensed Light"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Condensed"; +}, +{ +key = WWSSubfamilyName; +value = Light; +} +); +weightClass = 300; +widthClass = 3; +}, +{ +axesValues = ( +75, +438, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.13333; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.52667; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.06869; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.27131; +}; +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Condensed"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Condensed"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +widthClass = 3; +}, +{ +axesValues = ( +75, +534, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.10563; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.41723; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.09639; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.38075; +}; +name = Medium; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Condensed Medium"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Condensed"; +}, +{ +key = WWSSubfamilyName; +value = Medium; +} +); +weightClass = 500; +widthClass = 3; +}, +{ +axesValues = ( +75, +600, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.08658; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.34199; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.11544; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.45599; +}; +name = SemiBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Condensed SemiBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Condensed"; +}, +{ +key = WWSSubfamilyName; +value = SemiBold; +} +); +weightClass = 600; +widthClass = 3; +}, +{ +axesValues = ( +75, +665, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.06782; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.26789; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.1342; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.53009; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Condensed Bold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Condensed"; +}, +{ +key = WWSSubfamilyName; +value = Bold; +} +); +weightClass = 700; +widthClass = 3; +}, +{ +axesValues = ( +75, +780, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.03463; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.1368; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.16739; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.66118; +}; +name = ExtraBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Condensed ExtraBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Condensed"; +}, +{ +key = WWSSubfamilyName; +value = ExtraBold; +} +); +weightClass = 800; +widthClass = 3; +}, +{ +axesValues = ( +75, +900, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.20202; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.79798; +}; +name = Black; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Condensed Black"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Condensed"; +}, +{ +key = WWSSubfamilyName; +value = Black; +} +); +weightClass = 900; +widthClass = 3; +}, +{ +axesValues = ( +87.5, +200, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.10101; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.39899; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.39899; +m019 = 0.10101; +}; +name = ExtraLight; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiCondensed ExtraLight"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiCondensed"; +}, +{ +key = WWSSubfamilyName; +value = ExtraLight; +} +); +weightClass = 200; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +329, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.0824; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.32546; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.32546; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.07353; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.01861; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.07353; +m019 = 0.0824; +m020 = 0.01861; +}; +name = Light; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiCondensed Light"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiCondensed"; +}, +{ +key = WWSSubfamilyName; +value = Light; +} +); +weightClass = 300; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +438, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.06667; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.26333; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.26333; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.13566; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.03434; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.13566; +m019 = 0.06667; +m020 = 0.03434; +}; +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiCondensed"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiCondensed"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +widthClass = 4; +}, +{ +axesValues = ( +87.5, +534, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.05281; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.20861; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.20861; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.19038; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.0482; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.19038; +m019 = 0.05281; +m020 = 0.0482; +}; +name = Medium; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiCondensed Medium"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiCondensed"; +}, +{ +key = WWSSubfamilyName; +value = Medium; +} +); +weightClass = 500; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +600, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.04329; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.171; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.171; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.22799; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.05772; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.22799; +m019 = 0.04329; +m020 = 0.05772; +}; +name = SemiBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiCondensed SemiBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiCondensed"; +}, +{ +key = WWSSubfamilyName; +value = SemiBold; +} +); +weightClass = 600; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +665, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.03391; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.13395; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.13395; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.26504; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.0671; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.26504; +m019 = 0.03391; +m020 = 0.0671; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiCondensed Bold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display"; +}, +{ +key = WWSSubfamilyName; +value = "Bold SemiCondensed SemiCondensed"; +} +); +weightClass = 700; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +780, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.01732; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.0684; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.0684; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.33059; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.08369; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.33059; +m019 = 0.01732; +m020 = 0.08369; +}; +name = ExtraBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiCondensed ExtraBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiCondensed"; +}, +{ +key = WWSSubfamilyName; +value = ExtraBold; +} +); +weightClass = 800; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +900, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.39899; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.10101; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.39899; +m020 = 0.10101; +}; +name = Black; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiCondensed Black"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiCondensed"; +}, +{ +key = WWSSubfamilyName; +value = Black; +} +); +weightClass = 900; +widthClass = 4; +}, +{ +axesValues = ( +100, +200, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.79798; +m019 = 0.20202; +}; +name = ExtraLight; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display ExtraLight"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display"; +}, +{ +key = WWSSubfamilyName; +value = ExtraLight; +} +); +weightClass = 200; +}, +{ +axesValues = ( +100, +329, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.65092; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.14706; +m019 = 0.16479; +m020 = 0.03723; +}; +name = Light; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Light"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display"; +}, +{ +key = WWSSubfamilyName; +value = Light; +} +); +weightClass = 300; +}, +{ +axesValues = ( +100, +438, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.52667; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.27131; +m019 = 0.13333; +m020 = 0.06869; +}; +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Display; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +}, +{ +axesValues = ( +100, +534, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.41723; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.38075; +m019 = 0.10563; +m020 = 0.09639; +}; +name = Medium; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Medium"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display"; +}, +{ +key = WWSSubfamilyName; +value = Medium; +} +); +weightClass = 500; +}, +{ +axesValues = ( +100, +600, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.34199; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.45599; +m019 = 0.08658; +m020 = 0.11544; +}; +name = SemiBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display"; +}, +{ +key = WWSSubfamilyName; +value = SemiBold; +} +); +weightClass = 600; +}, +{ +axesValues = ( +100, +665, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.26789; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.53009; +m019 = 0.06782; +m020 = 0.1342; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Bold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display"; +}, +{ +key = WWSSubfamilyName; +value = Bold; +} +); +weightClass = 700; +}, +{ +axesValues = ( +100, +780, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.1368; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.66118; +m019 = 0.03463; +m020 = 0.16739; +}; +name = ExtraBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display ExtraBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display"; +}, +{ +key = WWSSubfamilyName; +value = ExtraBold; +} +); +weightClass = 800; +}, +{ +axesValues = ( +100, +900, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.79798; +m020 = 0.20202; +}; +name = Black; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Black"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display"; +}, +{ +key = WWSSubfamilyName; +value = Black; +} +); +weightClass = 900; +}, +{ +axesValues = ( +112.5, +200, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.39899; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.10101; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.39899; +m019 = 0.10101; +}; +name = ExtraLight; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiExpanded ExtraLight"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiExpanded"; +}, +{ +key = WWSSubfamilyName; +value = ExtraLight; +} +); +weightClass = 200; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +329, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.32546; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.0824; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.07353; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.32546; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.01861; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.07353; +m019 = 0.0824; +m020 = 0.01861; +}; +name = Light; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiExpanded Light"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiExpanded"; +}, +{ +key = WWSSubfamilyName; +value = Light; +} +); +weightClass = 300; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +438, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.26333; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.06667; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.13566; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.26333; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.03434; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.13566; +m019 = 0.06667; +m020 = 0.03434; +}; +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiExpanded"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiExpanded"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +widthClass = 6; +}, +{ +axesValues = ( +112.5, +534, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.20861; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.05281; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.19038; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.20861; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.0482; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.19038; +m019 = 0.05281; +m020 = 0.0482; +}; +name = Medium; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiExpanded Medium"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiExpanded"; +}, +{ +key = WWSSubfamilyName; +value = Medium; +} +); +weightClass = 500; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +600, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.171; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.04329; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.22799; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.171; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.05772; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.22799; +m019 = 0.04329; +m020 = 0.05772; +}; +name = SemiBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiExpanded SemiBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiExpanded"; +}, +{ +key = WWSSubfamilyName; +value = SemiBold; +} +); +weightClass = 600; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +665, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.13395; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.03391; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.26504; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.13395; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.0671; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.26504; +m019 = 0.03391; +m020 = 0.0671; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiExpanded Bold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiExpanded"; +}, +{ +key = WWSSubfamilyName; +value = Bold; +} +); +weightClass = 700; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +780, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.0684; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.01732; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.33059; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.0684; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.08369; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.33059; +m019 = 0.01732; +m020 = 0.08369; +}; +name = ExtraBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiExpanded ExtraBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiExpanded"; +}, +{ +key = WWSSubfamilyName; +value = ExtraBold; +} +); +weightClass = 800; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +900, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.39899; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.10101; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.39899; +m020 = 0.10101; +}; +name = Black; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display SemiExpanded Black"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display SemiExpanded"; +}, +{ +key = WWSSubfamilyName; +value = Black; +} +); +weightClass = 900; +widthClass = 6; +}, +{ +axesValues = ( +125, +200, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.79798; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.20202; +}; +name = ExtraLight; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Expanded ExtraLight"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Expanded"; +}, +{ +key = WWSSubfamilyName; +value = ExtraLight; +} +); +weightClass = 200; +widthClass = 7; +}, +{ +axesValues = ( +125, +329, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.65092; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.16479; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.14706; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.03723; +}; +name = Light; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Expanded Light"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Expanded"; +}, +{ +key = WWSSubfamilyName; +value = Light; +} +); +weightClass = 300; +widthClass = 7; +}, +{ +axesValues = ( +125, +438, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.52667; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.13333; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.27131; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.06869; +}; +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Expanded"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Expanded"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +widthClass = 7; +}, +{ +axesValues = ( +125, +534, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.41723; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.10563; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.38075; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.09639; +}; +name = Medium; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Expanded Medium"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Expanded"; +}, +{ +key = WWSSubfamilyName; +value = Medium; +} +); +weightClass = 500; +widthClass = 7; +}, +{ +axesValues = ( +125, +600, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.34199; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.08658; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.45599; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.11544; +}; +name = SemiBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Expanded SemiBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Expanded"; +}, +{ +key = WWSSubfamilyName; +value = "SemiBold Expanded"; +} +); +weightClass = 600; +widthClass = 7; +}, +{ +axesValues = ( +125, +665, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.26789; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.06782; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.53009; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.1342; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Expanded Bold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Expanded"; +}, +{ +key = WWSSubfamilyName; +value = Bold; +} +); +weightClass = 700; +widthClass = 7; +}, +{ +axesValues = ( +125, +780, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.1368; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.03463; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.66118; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.16739; +}; +name = ExtraBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Expanded ExtraBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Expanded"; +}, +{ +key = WWSSubfamilyName; +value = ExtraBold; +} +); +weightClass = 800; +widthClass = 7; +}, +{ +axesValues = ( +125, +900, +80, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 72; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.79798; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.20202; +}; +name = Black; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Display Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Display Expanded Black"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Display Expanded"; +}, +{ +key = WWSSubfamilyName; +value = Black; +} +); +weightClass = 900; +widthClass = 7; +}, +{ +axesValues = ( +75, +200, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.56566; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.43434; +}; +name = ExtraLight; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed ExtraLight"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 200; +widthClass = 3; +}, +{ +axesValues = ( +75, +329, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.46141; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.3543; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.10424; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.08004; +}; +name = Light; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed Light"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 300; +widthClass = 3; +}, +{ +axesValues = ( +75, +438, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.37333; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.28667; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.19232; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.14768; +}; +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Condensed; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +widthClass = 3; +}, +{ +axesValues = ( +75, +534, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.29576; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.2271; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.2699; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.20724; +}; +name = Medium; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed Medium"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 500; +widthClass = 3; +}, +{ +axesValues = ( +75, +600, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.24242; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.18615; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.32323; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.2482; +}; +name = SemiBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed SemiBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 600; +widthClass = 3; +}, +{ +axesValues = ( +75, +665, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.1899; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.14582; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.37576; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.28853; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed Bold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 700; +widthClass = 3; +}, +{ +axesValues = ( +75, +780, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.09697; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.07446; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.46869; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.35988; +}; +name = ExtraBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed ExtraBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 800; +widthClass = 3; +}, +{ +axesValues = ( +75, +900, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.56566; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.43434; +}; +name = Black; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed Black"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 900; +widthClass = 3; +}, +{ +axesValues = ( +87.5, +200, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.28283; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.21717; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.21717; +m019 = 0.28283; +}; +name = ExtraLight; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed ExtraLight"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 200; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +329, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.23071; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.17715; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.17715; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.04002; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.05212; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.04002; +m019 = 0.23071; +m020 = 0.05212; +}; +name = Light; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed Light"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 300; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +438, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.18667; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.14333; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.14333; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.07384; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.09616; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.07384; +m019 = 0.18667; +m020 = 0.09616; +}; +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = SemiCondensed; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +widthClass = 4; +}, +{ +axesValues = ( +87.5, +534, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.14788; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.11355; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.11355; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.10362; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.13495; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.10362; +m019 = 0.14788; +m020 = 0.13495; +}; +name = Medium; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed Medium"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 500; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +600, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.12121; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.09307; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.09307; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.1241; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.16162; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.1241; +m019 = 0.12121; +m020 = 0.16162; +}; +name = SemiBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed SemiBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 600; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +665, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.09495; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.07291; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.07291; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.14426; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.18788; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.14426; +m019 = 0.09495; +m020 = 0.18788; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed Bold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 700; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +780, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.04848; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.03723; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.03723; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.17994; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.23434; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.17994; +m019 = 0.04848; +m020 = 0.23434; +}; +name = ExtraBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed ExtraBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 800; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +900, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.21717; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = 0.28283; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.21717; +m020 = 0.28283; +}; +name = Black; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed Black"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 900; +widthClass = 4; +}, +{ +axesValues = ( +100, +200, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.43434; +m019 = 0.56566; +}; +name = ExtraLight; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = ExtraLight; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 200; +}, +{ +axesValues = ( +100, +329, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.3543; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.08004; +m019 = 0.46141; +m020 = 0.10424; +}; +name = Light; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Light; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 300; +}, +{ +axesValues = ( +100, +438, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.28667; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.14768; +m019 = 0.37333; +m020 = 0.19232; +}; +name = Regular; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Regular; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +}, +{ +axesValues = ( +100, +534, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.2271; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.20724; +m019 = 0.29576; +m020 = 0.2699; +}; +name = Medium; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Medium; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 500; +}, +{ +axesValues = ( +100, +600, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.18615; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.2482; +m019 = 0.24242; +m020 = 0.32323; +}; +name = SemiBold; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = SemiBold; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 600; +}, +{ +axesValues = ( +100, +665, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.14582; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.28853; +m019 = 0.1899; +m020 = 0.37576; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Bold; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 700; +}, +{ +axesValues = ( +100, +780, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.07446; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.35988; +m019 = 0.09697; +m020 = 0.46869; +}; +name = ExtraBold; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = ExtraBold; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 800; +}, +{ +axesValues = ( +100, +900, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.43434; +m020 = 0.56566; +}; +name = Black; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Black; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 900; +}, +{ +axesValues = ( +112.5, +200, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.21717; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.28283; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.21717; +m019 = 0.28283; +}; +name = ExtraLight; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded ExtraLight"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 200; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +329, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.17715; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.23071; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.04002; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.17715; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.05212; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.04002; +m019 = 0.23071; +m020 = 0.05212; +}; +name = Light; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded Light"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 300; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +438, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.14333; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.18667; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.07384; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.14333; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.09616; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.07384; +m019 = 0.18667; +m020 = 0.09616; +}; +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = SemiExpanded; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +widthClass = 6; +}, +{ +axesValues = ( +112.5, +534, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.11355; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.14788; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.10362; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.11355; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.13495; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.10362; +m019 = 0.14788; +m020 = 0.13495; +}; +name = Medium; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded Medium"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 500; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +600, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.09307; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.12121; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.1241; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.09307; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.16162; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.1241; +m019 = 0.12121; +m020 = 0.16162; +}; +name = SemiBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded SemiBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 600; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +665, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.07291; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.09495; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.14426; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.07291; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.18788; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.14426; +m019 = 0.09495; +m020 = 0.18788; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded Bold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 700; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +780, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.03723; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.04848; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.17994; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.03723; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.23434; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.17994; +m019 = 0.04848; +m020 = 0.23434; +}; +name = ExtraBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded ExtraBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 800; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +900, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.21717; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.28283; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.21717; +m020 = 0.28283; +}; +name = Black; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded Black"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 900; +widthClass = 6; +}, +{ +axesValues = ( +125, +200, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.43434; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.56566; +}; +name = ExtraLight; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded ExtraLight"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 200; +widthClass = 7; +}, +{ +axesValues = ( +125, +329, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.3543; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.46141; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.08004; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.10424; +}; +name = Light; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded Light"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 300; +widthClass = 7; +}, +{ +axesValues = ( +125, +438, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.28667; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.37333; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.14768; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.19232; +}; +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Expanded; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +}, +{ +key = WWSSubfamilyName; +value = Regular; +} +); +widthClass = 7; +}, +{ +axesValues = ( +125, +534, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.2271; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.29576; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.20724; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.2699; +}; +name = Medium; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded Medium"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 500; +widthClass = 7; +}, +{ +axesValues = ( +125, +600, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.18615; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.24242; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.2482; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.32323; +}; +name = SemiBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded SemiBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 600; +widthClass = 7; +}, +{ +axesValues = ( +125, +665, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.14582; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.1899; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.28853; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.37576; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded Bold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 700; +widthClass = 7; +}, +{ +axesValues = ( +125, +780, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.07446; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.09697; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.35988; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.46869; +}; +name = ExtraBold; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded ExtraBold"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 800; +widthClass = 7; +}, +{ +axesValues = ( +125, +900, +44, +0 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.43434; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = 0.56566; +}; +name = Black; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded Black"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 900; +widthClass = 7; +}, +{ +axesValues = ( +75, +200, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 1; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.43434; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.43434; +}; +isItalic = 1; +linkStyle = ExtraLight; +name = "ExtraLight Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed ExtraLight Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 200; +widthClass = 3; +}, +{ +axesValues = ( +75, +329, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = -0.1086; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 1.00675; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = -0.00675; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.03399; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.1086; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = -0.04844; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.40035; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.48279; +}; +isItalic = 1; +linkStyle = Light; +name = "Light Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed Light Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 300; +widthClass = 3; +}, +{ +axesValues = ( +75, +438, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = -0.14791; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.95449; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.04551; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.07933; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.14791; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = -0.06726; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.35501; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.5016; +}; +isItalic = 1; +name = Italic; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +widthClass = 3; +}, +{ +axesValues = ( +75, +534, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = -0.24901; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.91363; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.08637; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.03752; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.24901; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = -0.10424; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.39683; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.53859; +}; +isItalic = 1; +linkStyle = Medium; +name = "Medium Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed Medium Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 500; +widthClass = 3; +}, +{ +axesValues = ( +75, +600, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = -0.08127; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.68866; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.31134; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.11427; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.08127; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = -0.06454; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.32007; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.49889; +}; +isItalic = 1; +linkStyle = SemiBold; +name = "SemiBold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed SemiBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 600; +widthClass = 3; +}, +{ +axesValues = ( +75, +665, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.02443; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.16786; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.83214; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = 0.00781; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = -0.02443; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.13562; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.44216; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.29873; +}; +isBold = 1; +isItalic = 1; +name = "Bold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed Bold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 700; +widthClass = 3; +}, +{ +axesValues = ( +75, +780, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.08571; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.91429; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.08571; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.43434; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.34863; +}; +isItalic = 1; +linkStyle = ExtraBold; +name = "ExtraBold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed ExtraBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 800; +widthClass = 3; +}, +{ +axesValues = ( +75, +900, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 75; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 1; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.43434; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.43434; +}; +isItalic = 1; +linkStyle = Black; +name = "Black Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Condensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Condensed Black Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Condensed"; +} +); +weightClass = 900; +widthClass = 3; +}, +{ +axesValues = ( +87.5, +200, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.19807; +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.13884; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.7186; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.04524; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.22041; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.11675; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.17875; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.08333; +m019 = -0.16869; +}; +name = "ExtraLight Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed ExtraLight Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 200; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +329, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.09082; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.65112; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.03821; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.08173; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.05235; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.04742; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.03543; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.09069; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.01692; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.38199; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.38199; +}; +name = "Light Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed Light Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 300; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +438, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.24103; +"106FCE83-F343-403B-A314-646E4D059B3F" = -0.01259; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.37514; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = -0.00604; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.18528; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.06811; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.11829; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = -0.0014; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.091; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.14357; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.03944; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.30757; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.31079; +m019 = -0.00691; +m020 = -0.00158; +}; +isItalic = 1; +name = Italic; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +widthClass = 4; +}, +{ +axesValues = ( +87.5, +534, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.16206; +"106FCE83-F343-403B-A314-646E4D059B3F" = -0.00669; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.33778; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.29038; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.06507; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.06093; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = -0.0029; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.11503; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.07024; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.02968; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.05607; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.36702; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.31762; +m019 = -0.00639; +}; +name = "Medium Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed Medium Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 500; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +600, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.10064; +"106FCE83-F343-403B-A314-646E4D059B3F" = -0.0077; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.26422; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = -0.00074; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.35994; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.03769; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.06037; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.17455; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.07509; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.06297; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.04667; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.3677; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.32102; +m019 = -0.00627; +}; +name = "SemiBold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed SemiBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 600; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +665, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.05904; +"106FCE83-F343-403B-A314-646E4D059B3F" = -0.00462; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.18867; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = -0.00322; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.45685; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.04809; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.06915; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = -0.00086; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.16058; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.07965; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.08676; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.031; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.36141; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.33239; +m019 = -0.00378; +}; +isBold = 1; +isItalic = 1; +name = "Bold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed Bold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 700; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +780, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.03654; +"106FCE83-F343-403B-A314-646E4D059B3F" = -0.00172; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.09438; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = -0.00455; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.51968; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.07687; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.08465; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.23658; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.09432; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.03595; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.01717; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.3463; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.32913; +m019 = -0.0034; +}; +name = "ExtraBold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed ExtraBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 800; +widthClass = 4; +}, +{ +axesValues = ( +87.5, +900, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 87.5; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = -0.02084; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.54165; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.08333; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.37502; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.17193; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.26241; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.28325; +m020 = -0.17193; +}; +name = "Black Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiCondensed"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiCondensed Black Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiCondensed"; +} +); +weightClass = 900; +widthClass = 4; +}, +{ +axesValues = ( +100, +200, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.44444; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.27778; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.43434; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.27778; +m019 = -0.43434; +}; +isItalic = 1; +linkStyle = ExtraLight; +name = "ExtraLight Italic"; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "ExtraLight Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 200; +}, +{ +axesValues = ( +100, +329, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.17536; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.32529; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.06244; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.20882; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.20183; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.04919; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.17891; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.23251; +m019 = -0.06568; +m020 = -0.36867; +}; +isItalic = 1; +linkStyle = Light; +name = "Light Italic"; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Light Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 300; +}, +{ +axesValues = ( +100, +438, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.1858; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.24187; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.09043; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.1149; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.12465; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.1496; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.2174; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.30969; +m019 = -0.10972; +m020 = -0.32462; +}; +isItalic = 1; +name = Italic; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Italic; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +}, +{ +axesValues = ( +100, +534, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.11502; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.19769; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.09001; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.06026; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.07447; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.30958; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.22744; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.35987; +m019 = -0.09176; +m020 = -0.34258; +}; +isItalic = 1; +linkStyle = Medium; +name = "Medium Italic"; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Medium Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 500; +}, +{ +axesValues = ( +100, +600, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.12796; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.20741; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.0946; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.14392; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.04228; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.26803; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.15809; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.39206; +m019 = -0.10717; +m020 = -0.32718; +}; +isItalic = 1; +linkStyle = SemiBold; +name = "SemiBold Italic"; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 600; +}, +{ +axesValues = ( +100, +665, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.03494; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.16268; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.14284; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.11141; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.05073; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.35402; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.19411; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.38361; +m019 = -0.10675; +m020 = -0.32759; +}; +isBold = 1; +isItalic = 1; +linkStyle = Regular; +name = "Bold Italic"; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Bold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 700; +}, +{ +axesValues = ( +100, +780, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.01563; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.08593; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.21954; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.11696; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.02066; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.37343; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.18851; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.41369; +m019 = -0.13929; +m020 = -0.29505; +}; +isItalic = 1; +linkStyle = ExtraBold; +name = "ExtraBold Italic"; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "ExtraBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 800; +}, +{ +axesValues = ( +100, +900, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.27778; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.27778; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.44444; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.43434; +m020 = -0.43434; +}; +isItalic = 1; +linkStyle = Black; +name = "Black Italic"; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Black Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans"; +} +); +weightClass = 900; +}, +{ +axesValues = ( +112.5, +200, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.53529; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.09279; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.03619; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.34671; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.34468; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = -0.34671; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.08966; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.37192; +m019 = -0.39815; +}; +name = "ExtraLight Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded ExtraLight Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 200; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +329, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.64983; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = -0.53427; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.88444; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = 0.16546; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.43477; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = -0.16589; +m019 = -0.43434; +}; +name = "Light Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded Light Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 300; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +438, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = -0.17476; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.21915; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = -0.09003; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.76023; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = -0.04588; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.48022; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.50456; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.3302; +m019 = 0.11501; +}; +name = Italic; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +widthClass = 6; +}, +{ +axesValues = ( +112.5, +534, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = -0.12871; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.0847; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = -0.11746; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 1.05117; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = -0.01673; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.45107; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.195; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.45657; +m019 = 0.10692; +}; +name = "Medium Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded Medium Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 500; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +600, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.05357; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.12679; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.03571; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.41429; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = -0.30585; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.12143; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.30585; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.24821; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = -0.12849; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.12849; +}; +name = "SemiBold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded SemiBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 600; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +665, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.03797; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = -0.05753; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.13815; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = -0.11384; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 1.37561; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = -0.02499; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.42137; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = -0.20424; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.59749; +m019 = 0.02499; +}; +isBold = 1; +isItalic = 1; +name = "Bold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded Bold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 700; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +780, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.01478; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = 0.07655; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = 0.01924; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = -0.16408; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.99265; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = -0.15134; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = 0.39097; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.09488; +"DED42A87-C949-4722-A202-2B551272A3FB" = -0.13817; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.31811; +m019 = -0.27365; +m020 = -0.17994; +}; +name = "ExtraBold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded ExtraBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 800; +widthClass = 6; +}, +{ +axesValues = ( +112.5, +900, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 112.5; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = -0.34671; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = 0.09279; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.37192; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.53529; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.34671; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.03619; +"DED42A87-C949-4722-A202-2B551272A3FB" = 0.34468; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = 0.08966; +m020 = -0.39815; +}; +name = "Black Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans SemiExpanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "Expanded Black Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans SemiExpanded"; +} +); +weightClass = 900; +widthClass = 6; +}, +{ +axesValues = ( +125, +200, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 200; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.43434; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.43434; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 1; +}; +isItalic = 1; +linkStyle = ExtraLight; +name = "ExtraLight Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded ExtraLight Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 200; +widthClass = 7; +}, +{ +axesValues = ( +125, +329, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 300; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.12503; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.21717; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.30931; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.09214; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.90786; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.21717; +}; +isItalic = 1; +linkStyle = Light; +name = "Light Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded Light Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 300; +widthClass = 7; +}, +{ +axesValues = ( +125, +438, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 400; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.12444; +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.13706; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.0415; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.29728; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.56; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = -0.12444; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.44; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.39284; +}; +isItalic = 1; +name = Italic; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +widthClass = 7; +}, +{ +axesValues = ( +125, +534, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 500; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = -0.23857; +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.41536; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.41536; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.01899; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.23857; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = 0.23857; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.76143; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.01899; +}; +isItalic = 1; +linkStyle = Medium; +name = "Medium Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded Medium Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 500; +widthClass = 7; +}, +{ +axesValues = ( +125, +600, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 600; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"095FE76F-1953-440B-9108-AA0678D151F9" = 0.10714; +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.18083; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.07368; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.25352; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.78571; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = -0.10714; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.21429; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.36066; +}; +isItalic = 1; +linkStyle = SemiBold; +name = "SemiBold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded SemiBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 600; +widthClass = 7; +}, +{ +axesValues = ( +125, +665, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 700; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.07291; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.07291; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.36144; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.66429; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.33571; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.36144; +}; +isBold = 1; +isItalic = 1; +name = "Bold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded Bold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 700; +widthClass = 7; +}, +{ +axesValues = ( +125, +780, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 800; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"106FCE83-F343-403B-A314-646E4D059B3F" = 0.10742; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = -0.0217; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.32692; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 0.91429; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = 0.08571; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.41264; +}; +isItalic = 1; +linkStyle = ExtraBold; +name = "ExtraBold Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded ExtraBold Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 800; +widthClass = 7; +}, +{ +axesValues = ( +125, +900, +44, +1 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 125; +}, +{ +Axis = Weight; +Location = 900; +}, +{ +Axis = "Optical size"; +Location = 20; +}, +{ +Axis = Italic; +Location = 1; +} +); +} +); +instanceInterpolations = { +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = 0.43434; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = 1; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = -0.43434; +}; +isItalic = 1; +linkStyle = Black; +name = "Black Italic"; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Expanded"; +} +); +}, +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = "SemiExpanded Black Italic"; +} +); +}, +{ +key = WWSFamilyName; +value = "Mona Sans Expanded"; +} +); +weightClass = 900; +widthClass = 7; +} +); +kerningLTR = { +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 27; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 32; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = -42; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -80; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 20; +"@MMK_R_KO_comma.ss01" = 10; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -42; +"@MMK_R_KO_ellipsis" = 15; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -46; +"@MMK_R_KO_foursuperior" = -37; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -73; +"@MMK_R_KO_onesuperior" = -49; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = 19; +"@MMK_R_KO_period" = 28; +"@MMK_R_KO_period.ss01" = 11; +"@MMK_R_KO_question" = -34; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -49; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -43; +"@MMK_R_KO_quoteright" = -46; +"@MMK_R_KO_quoteright.ss01" = -49; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -56; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = -47; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -37; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 31; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_x" = 23; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 27; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -12; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -44; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 30; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -33; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -7; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -33; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -7; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = -26; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -74; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period" = -9; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -7; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -15; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -31; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -12; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -23; +"@MMK_R_KO_Y" = -23; +"@MMK_R_KO_Z" = -22; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -34; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -30; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -46; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 8; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 16; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -21; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = -31; +"@MMK_R_KO_period" = -26; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -19; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -41; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = -19; +"@MMK_R_KO_I.ss02" = -31; +"@MMK_R_KO_J" = -30; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = -17; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -35; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = -34; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_bracketright" = -50; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -64; +"@MMK_R_KO_exclam" = -13; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = -8; +"@MMK_R_KO_hyphen.case" = -6; +"@MMK_R_KO_i" = -17; +"@MMK_R_KO_j" = -27; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_ninesuperior" = -48; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -48; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -53; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_sevensuperior" = -36; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_y" = -11; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 40; +"@MMK_R_KO_J" = 25; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 38; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 22; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -76; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -41; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 11; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 3; +"@MMK_R_KO_parenright.case" = 27; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 18; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = 35; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -38; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 37; +"@MMK_R_KO_J" = -20; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = -13; +"@MMK_R_KO_T" = 39; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 34; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = 29; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asciicircum" = -77; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -50; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -111; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -42; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -54; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_hyphen.case" = 20; +"@MMK_R_KO_icircumflex" = 12; +"@MMK_R_KO_imacron" = -7; +"@MMK_R_KO_j" = -19; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 14; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = 27; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -46; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_threesuperior" = 11; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_underscore" = -86; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -28; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = -61; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -15; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -17; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -31; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 25; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period" = -12; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -20; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 5; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -38; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 5; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_egrave" = -1; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -37; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 28; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = 29; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 41; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 30; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_X" = 18; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = 36; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -69; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = 17; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 8; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -24; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 16; +"@MMK_R_KO_imacron" = 7; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 17; +"@MMK_R_KO_parenright.case" = 38; +"@MMK_R_KO_period" = 20; +"@MMK_R_KO_period.ss01" = 8; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 12; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 7; +"@MMK_R_KO_quoteright.ss01" = 16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 33; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 25; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = 37; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -25; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = 21; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 1; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 31; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = 2; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 30; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 35; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 24; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 13; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_X" = 20; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -79; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 22; +"@MMK_R_KO_comma.ss01" = 14; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 19; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -47; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -45; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 26; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = 10; +"@MMK_R_KO_parenright" = 11; +"@MMK_R_KO_parenright.case" = 22; +"@MMK_R_KO_period" = 30; +"@MMK_R_KO_period.ss01" = 14; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 17; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 30; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = 2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = 38; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -27; +"@MMK_R_KO_x" = 27; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = 31; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 32; +"@MMK_R_KO_I.ss02" = 44; +"@MMK_R_KO_J" = 36; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = -58; +"@MMK_R_KO_U" = -21; +"@MMK_R_KO_V" = -46; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 39; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -112; +"@MMK_R_KO_bracketright" = -40; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 19; +"@MMK_R_KO_comma.ss01" = 25; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = -82; +"@MMK_R_KO_ellipsis" = 6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -85; +"@MMK_R_KO_foursuperior" = -76; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -66; +"@MMK_R_KO_guillemetright" = -69; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -107; +"@MMK_R_KO_onesuperior" = -65; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 22; +"@MMK_R_KO_period.ss01" = 6; +"@MMK_R_KO_question" = -40; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -70; +"@MMK_R_KO_quotedblleft.ss01" = -111; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -77; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -73; +"@MMK_R_KO_six" = -22; +"@MMK_R_KO_sixsuperior" = -84; +"@MMK_R_KO_slash" = 25; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_threesuperior" = -78; +"@MMK_R_KO_trademark" = -84; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_underscore" = 45; +"@MMK_R_KO_v" = -37; +"@MMK_R_KO_w" = -27; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 38; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 50; +"@MMK_R_KO_J" = 42; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -51; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = 27; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = 45; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -15; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_comma.ss01" = 31; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = 12; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_fivesuperior" = -33; +"@MMK_R_KO_foursuperior" = -46; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = -65; +"@MMK_R_KO_hyphen" = -40; +"@MMK_R_KO_hyphen.case" = -4; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_ninesuperior" = -60; +"@MMK_R_KO_onesuperior" = -47; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = 28; +"@MMK_R_KO_period.ss01" = 12; +"@MMK_R_KO_question" = -36; +"@MMK_R_KO_question.ss01" = -43; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -67; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = 31; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = 23; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -19; +"@MMK_R_KO_Y" = -20; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -22; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = 6; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 13; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 18; +"@MMK_R_KO_imacron" = 20; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -33; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -44; +"@MMK_R_KO_H" = -36; +"@MMK_R_KO_I.ss02" = -45; +"@MMK_R_KO_J" = -50; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -28; +"@MMK_R_KO_T" = -67; +"@MMK_R_KO_U" = -35; +"@MMK_R_KO_V" = -42; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = -53; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = -47; +"@MMK_R_KO_a" = -39; +"@MMK_R_KO_a.ss05" = -37; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = -37; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -38; +"@MMK_R_KO_eightsuperior" = -44; +"@MMK_R_KO_ellipsis" = -78; +"@MMK_R_KO_exclam" = -38; +"@MMK_R_KO_f" = -34; +"@MMK_R_KO_fivesuperior" = -48; +"@MMK_R_KO_foursuperior" = -37; +"@MMK_R_KO_g" = -39; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = -52; +"@MMK_R_KO_hyphen" = -34; +"@MMK_R_KO_hyphen.case" = -32; +"@MMK_R_KO_i" = -37; +"@MMK_R_KO_j" = -48; +"@MMK_R_KO_l.ss04" = -39; +"@MMK_R_KO_n" = -38; +"@MMK_R_KO_ninesuperior" = -76; +"@MMK_R_KO_onesuperior" = -49; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -57; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -38; +"@MMK_R_KO_question.ss01" = -43; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -47; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -39; +"@MMK_R_KO_quoteright" = -46; +"@MMK_R_KO_quoteright.ss01" = -44; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_sevensuperior" = -56; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_sixsuperior" = -47; +"@MMK_R_KO_slash" = -48; +"@MMK_R_KO_t" = -37; +"@MMK_R_KO_threesuperior" = -40; +"@MMK_R_KO_trademark" = -76; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_underscore" = -40; +"@MMK_R_KO_v" = -37; +"@MMK_R_KO_w" = -39; +"@MMK_R_KO_x" = -41; +"@MMK_R_KO_y" = -37; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = -26; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = -25; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_X" = -21; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -37; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_ellipsis" = -78; +"@MMK_R_KO_exclam" = -20; +"@MMK_R_KO_guillemetright" = -52; +"@MMK_R_KO_hyphen" = -34; +"@MMK_R_KO_hyphen.case" = -32; +"@MMK_R_KO_i" = -35; +"@MMK_R_KO_n" = -38; +"@MMK_R_KO_parenright" = 3; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -30; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_slash" = -46; +"@MMK_R_KO_t" = -37; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_X" = -20; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = -22; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -15; +"@MMK_R_KO_bracketright" = -23; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -144; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_fivesuperior" = 4; +"@MMK_R_KO_foursuperior" = 25; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -53; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 46; +"@MMK_R_KO_imacron" = 34; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 19; +"@MMK_R_KO_question.ss01" = 22; +"@MMK_R_KO_quotedbl" = 25; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = 15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 17; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 9; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 17; +"@MMK_R_KO_threesuperior" = 11; +"@MMK_R_KO_trademark" = -19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -115; +"@MMK_R_KO_v" = 21; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 21; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -12; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -37; +"@MMK_R_KO_U" = -22; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -18; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = -38; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -30; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_hyphen.case" = -13; +"@MMK_R_KO_i" = -14; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -24; +"@MMK_R_KO_l.ss04" = -16; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_ninesuperior" = -51; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = -19; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -59; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = -28; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -59; +"@MMK_R_KO_u" = -20; +"@MMK_R_KO_underscore" = 3; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 26; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -7; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 5; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -32; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 25; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -4; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = -10; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 16; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 10; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 25; +"@MMK_R_KO_hyphen.case" = -17; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_icircumflex" = 37; +"@MMK_R_KO_imacron" = 36; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_parenright.case" = -8; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = 7; +"@MMK_R_KO_question.ss01" = 9; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 17; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -24; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = -32; +"@MMK_R_KO_I.ss02" = -43; +"@MMK_R_KO_J" = -38; +"@MMK_R_KO_O" = -30; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = -54; +"@MMK_R_KO_U" = -31; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = -41; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = -40; +"@MMK_R_KO_a" = -38; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_bracketright" = -41; +"@MMK_R_KO_colon" = -41; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -36; +"@MMK_R_KO_eightsuperior" = -54; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_exclam" = -35; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_fivesuperior" = -53; +"@MMK_R_KO_foursuperior" = -49; +"@MMK_R_KO_g" = -38; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -56; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_hyphen.case" = -58; +"@MMK_R_KO_i" = -37; +"@MMK_R_KO_icircumflex" = -11; +"@MMK_R_KO_imacron" = -9; +"@MMK_R_KO_j" = -45; +"@MMK_R_KO_l.ss04" = -37; +"@MMK_R_KO_n" = -41; +"@MMK_R_KO_ninesuperior" = -73; +"@MMK_R_KO_onesuperior" = -51; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -50; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -33; +"@MMK_R_KO_question.ss01" = -35; +"@MMK_R_KO_quotedbl" = -31; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -38; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_sixsuperior" = -47; +"@MMK_R_KO_slash" = -35; +"@MMK_R_KO_t" = -35; +"@MMK_R_KO_threesuperior" = -52; +"@MMK_R_KO_u" = -41; +"@MMK_R_KO_v" = -39; +"@MMK_R_KO_w" = -41; +"@MMK_R_KO_x" = -39; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = -37; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -44; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = -25; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = 43; +"@MMK_R_KO_U" = 1; +"@MMK_R_KO_V" = 32; +"@MMK_R_KO_W" = 38; +"@MMK_R_KO_X" = 11; +"@MMK_R_KO_Y" = 33; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asciicircum" = -80; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -58; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -73; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -40; +"@MMK_R_KO_g" = -62; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -75; +"@MMK_R_KO_hyphen" = -62; +"@MMK_R_KO_hyphen.case" = -60; +"@MMK_R_KO_i" = -20; +"@MMK_R_KO_icircumflex" = 12; +"@MMK_R_KO_imacron" = -21; +"@MMK_R_KO_j" = -30; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_n" = -64; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 4; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 18; +"@MMK_R_KO_s" = -54; +"@MMK_R_KO_sevensuperior" = 27; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_threesuperior" = 3; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -62; +"@MMK_R_KO_underscore" = -53; +"@MMK_R_KO_v" = -63; +"@MMK_R_KO_w" = -65; +"@MMK_R_KO_x" = -60; +"@MMK_R_KO_y" = -63; +"@MMK_R_KO_z" = -60; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -13; +"@MMK_R_KO_O" = 1; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 1; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_imacron" = 31; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = 2; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -13; +"@MMK_R_KO_O" = 1; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 1; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = 2; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 13; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_T" = 24; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_X" = 15; +"@MMK_R_KO_Y" = 28; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_bracketright" = 55; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_eightsuperior" = 24; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_fivesuperior" = 33; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = 27; +"@MMK_R_KO_parenright" = 88; +"@MMK_R_KO_parenright.case" = 87; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 2; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quoteright" = 25; +"@MMK_R_KO_quoteright.ss01" = 20; +"@MMK_R_KO_sevensuperior" = 66; +"@MMK_R_KO_sixsuperior" = 15; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_threesuperior" = 36; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -44; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = 32; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 20; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -36; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -81; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = -35; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = -12; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_icircumflex" = 35; +"@MMK_R_KO_imacron" = 31; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = 18; +"@MMK_R_KO_parenright" = 15; +"@MMK_R_KO_parenright.case" = 18; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 7; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = 14; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = -25; +"@MMK_R_KO_sevensuperior" = 22; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -53; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_threesuperior" = 7; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_underscore" = -61; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = -11; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -26; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 36; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 38; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 35; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = 27; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -41; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = 7; +"@MMK_R_KO_ellipsis" = -53; +"@MMK_R_KO_exclam" = 16; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 43; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = 25; +"@MMK_R_KO_parenright" = 22; +"@MMK_R_KO_parenright.case" = 25; +"@MMK_R_KO_period" = -34; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 19; +"@MMK_R_KO_question.ss01" = 9; +"@MMK_R_KO_quotedbl" = 29; +"@MMK_R_KO_quotedblleft" = 25; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = 25; +"@MMK_R_KO_quoteright" = 18; +"@MMK_R_KO_quoteright.ss01" = 19; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = 29; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 14; +"@MMK_R_KO_trademark" = 7; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 22; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = -18; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -78; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = 4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -46; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -39; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -34; +"@MMK_R_KO_hyphen.case" = -59; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 9; +"@MMK_R_KO_imacron" = 21; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 7; +"@MMK_R_KO_period" = 15; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = 4; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 16; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_underscore" = 24; +"@MMK_R_KO_v" = -39; +"@MMK_R_KO_w" = -36; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -51; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 32; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 34; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -27; +"@MMK_R_KO_asciicircum" = -65; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -87; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = -62; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -53; +"@MMK_R_KO_hyphen" = -72; +"@MMK_R_KO_hyphen.case" = -46; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 23; +"@MMK_R_KO_imacron" = 11; +"@MMK_R_KO_j" = -20; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = -47; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = 20; +"@MMK_R_KO_parenright" = 17; +"@MMK_R_KO_parenright.case" = 20; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = 11; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = -48; +"@MMK_R_KO_sevensuperior" = 25; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_threesuperior" = 9; +"@MMK_R_KO_trademark" = 3; +"@MMK_R_KO_u" = -36; +"@MMK_R_KO_underscore" = -65; +"@MMK_R_KO_v" = -29; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_x" = -28; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = -26; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = 40; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 31; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = 20; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = 21; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = 13; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -57; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -67; +"@MMK_R_KO_hyphen.case" = -44; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 33; +"@MMK_R_KO_imacron" = 34; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = 15; +"@MMK_R_KO_parenright" = 16; +"@MMK_R_KO_parenright.case" = 22; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 2; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = 10; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 23; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 12; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_threesuperior" = 7; +"@MMK_R_KO_trademark" = 2; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 33; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -63; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = -40; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -28; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -34; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -34; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -51; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -60; +"@MMK_R_KO_u" = 1; +"@MMK_R_KO_v" = 1; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 1; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 27; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -59; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -67; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -56; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_period" = 19; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -42; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -79; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -49; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -75; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 34; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = 26; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -24; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = -66; +"@MMK_R_KO_U" = -31; +"@MMK_R_KO_V" = -48; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -24; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = -44; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = -15; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_fivesuperior" = -49; +"@MMK_R_KO_foursuperior" = -46; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_icircumflex" = -22; +"@MMK_R_KO_imacron" = -18; +"@MMK_R_KO_j" = -32; +"@MMK_R_KO_l.ss04" = -24; +"@MMK_R_KO_n" = -22; +"@MMK_R_KO_ninesuperior" = -76; +"@MMK_R_KO_onesuperior" = -49; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_question" = -53; +"@MMK_R_KO_question.ss01" = -57; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -57; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_sixsuperior" = -49; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -36; +"@MMK_R_KO_threesuperior" = -39; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -38; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = -41; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_T" = -66; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_t" = -22; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = -43; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_T" = -80; +"@MMK_R_KO_a" = -66; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_i" = -51; +"@MMK_R_KO_n" = -53; +"@MMK_R_KO_t" = -35; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -74; +"@MMK_R_KO_H" = -54; +"@MMK_R_KO_O" = -41; +"@MMK_R_KO_T" = -109; +"@MMK_R_KO_a" = -55; +"@MMK_R_KO_e" = -54; +"@MMK_R_KO_f" = -61; +"@MMK_R_KO_i" = -50; +"@MMK_R_KO_n" = -58; +"@MMK_R_KO_t" = -67; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_Y" = 4; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = -51; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_asterisk" = 34; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -69; +"@MMK_R_KO_g" = -50; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -112; +"@MMK_R_KO_hyphen.case" = -119; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = 13; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 16; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_seven" = 31; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -59; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 14; +"@MMK_R_KO_two" = 18; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -27; +"@MMK_R_KO_asterisk" = -25; +"@MMK_R_KO_colon" = -36; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -33; +"@MMK_R_KO_eight" = -27; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -20; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -55; +"@MMK_R_KO_hyphen" = -40; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -41; +"@MMK_R_KO_nine" = -47; +"@MMK_R_KO_one" = -18; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -54; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -25; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_three" = -21; +"@MMK_R_KO_two" = -19; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -34; +"@MMK_R_KO_w" = -34; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -24; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -30; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = -26; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = -25; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -21; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -58; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_nine" = -42; +"@MMK_R_KO_one" = -20; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -56; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_slash" = 40; +"@MMK_R_KO_three" = -19; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -68; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = -13; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = -34; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_icircumflex" = -5; +"@MMK_R_KO_imacron" = -4; +"@MMK_R_KO_j" = -17; +"@MMK_R_KO_l.ss04" = -8; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = -31; +"@MMK_R_KO_question.ss01" = -38; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -51; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -67; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -50; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_eight" = -9; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -50; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_hyphen.case" = -50; +"@MMK_R_KO_nine" = -39; +"@MMK_R_KO_one" = -24; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 21; +"@MMK_R_KO_quotedbl" = -50; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_seven" = -43; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 26; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -73; +"@MMK_R_KO_H" = -21; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_a" = -67; +"@MMK_R_KO_e" = -67; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_n" = -43; +"@MMK_R_KO_t" = -24; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -17; +"@MMK_R_KO_Y" = -60; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -64; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -3; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = -49; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = -47; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -78; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_I.ss02" = -27; +"@MMK_R_KO_J" = -25; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = -25; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = -37; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = -26; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_bracketright" = -51; +"@MMK_R_KO_colon" = -34; +"@MMK_R_KO_comma" = -41; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = -32; +"@MMK_R_KO_ellipsis" = -52; +"@MMK_R_KO_exclam" = -23; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_fivesuperior" = -37; +"@MMK_R_KO_foursuperior" = -34; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = -24; +"@MMK_R_KO_icircumflex" = -24; +"@MMK_R_KO_imacron" = -24; +"@MMK_R_KO_j" = -35; +"@MMK_R_KO_l.ss04" = -27; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_ninesuperior" = -64; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -49; +"@MMK_R_KO_question.ss01" = -54; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -57; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -42; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_sevensuperior" = -51; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = -29; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_underscore" = -5; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = -31; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -28; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 24; +"@MMK_R_KO_T" = -15; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 2; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eight" = 15; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 23; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = -17; +"@MMK_R_KO_one" = 11; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 24; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = -38; +"@MMK_R_KO_I.ss02" = -17; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = -62; +"@MMK_R_KO_S" = -44; +"@MMK_R_KO_T" = -99; +"@MMK_R_KO_U" = -59; +"@MMK_R_KO_V" = -107; +"@MMK_R_KO_W" = -80; +"@MMK_R_KO_Y" = -113; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asterisk" = -119; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -60; +"@MMK_R_KO_eight" = -51; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_five" = -55; +"@MMK_R_KO_four" = -173; +"@MMK_R_KO_g" = -66; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -92; +"@MMK_R_KO_hyphen" = -167; +"@MMK_R_KO_hyphen.case" = -187; +"@MMK_R_KO_i" = -45; +"@MMK_R_KO_j" = -56; +"@MMK_R_KO_n" = -45; +"@MMK_R_KO_nine" = -82; +"@MMK_R_KO_one" = -68; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period" = -12; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quoteright" = -90; +"@MMK_R_KO_s" = -44; +"@MMK_R_KO_seven" = -87; +"@MMK_R_KO_six" = -61; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = -59; +"@MMK_R_KO_three" = -43; +"@MMK_R_KO_two" = -18; +"@MMK_R_KO_u" = -56; +"@MMK_R_KO_v" = -90; +"@MMK_R_KO_w" = -80; +"@MMK_R_KO_y" = -89; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = -41; +"@MMK_R_KO_I.ss02" = -17; +"@MMK_R_KO_J" = -15; +"@MMK_R_KO_O" = -59; +"@MMK_R_KO_S" = -41; +"@MMK_R_KO_T" = -103; +"@MMK_R_KO_U" = -56; +"@MMK_R_KO_V" = -107; +"@MMK_R_KO_W" = -81; +"@MMK_R_KO_Y" = -117; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = -59; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_asterisk" = -119; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = -58; +"@MMK_R_KO_egrave" = -58; +"@MMK_R_KO_eight" = -49; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_five" = -52; +"@MMK_R_KO_four" = -173; +"@MMK_R_KO_g" = -63; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -92; +"@MMK_R_KO_hyphen" = -167; +"@MMK_R_KO_hyphen.case" = -187; +"@MMK_R_KO_i" = -46; +"@MMK_R_KO_j" = -56; +"@MMK_R_KO_n" = -46; +"@MMK_R_KO_nine" = -80; +"@MMK_R_KO_one" = -72; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -25; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft.ss01" = -111; +"@MMK_R_KO_quoteright.ss01" = -111; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_seven" = -91; +"@MMK_R_KO_six" = -58; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = -61; +"@MMK_R_KO_three" = -40; +"@MMK_R_KO_two" = -21; +"@MMK_R_KO_u" = -55; +"@MMK_R_KO_v" = -90; +"@MMK_R_KO_w" = -80; +"@MMK_R_KO_y" = -90; +"@MMK_R_KO_z" = -26; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -26; +"@MMK_R_KO_J" = -21; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -76; +"@MMK_R_KO_Z" = -20; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_colon" = -62; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 21; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = 29; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_i" = -1; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -37; +"@MMK_R_KO_one" = -30; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_seven" = -57; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -32; +"@MMK_R_KO_u" = 1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = -20; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 28; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 30; +"@MMK_R_KO_X" = 2; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = -38; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -54; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -37; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -33; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 38; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 33; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = 27; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 27; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -25; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -12; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -22; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = -38; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -17; +"@MMK_R_KO_l.ss04" = -7; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -9; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -51; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = -3; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = 25; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 28; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 26; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 29; +"@MMK_R_KO_hyphen.case" = 25; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = -25; +"@MMK_R_KO_one" = -22; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 16; +"@MMK_R_KO_seven" = 16; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 18; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 27; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = -15; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -17; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eight" = 17; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_five" = 15; +"@MMK_R_KO_four" = 31; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = -15; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -11; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -54; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -12; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = 28; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 21; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -52; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 18; +"@MMK_R_KO_comma.ss01" = 10; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = 20; +"@MMK_R_KO_period" = 23; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 43; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -42; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_underscore" = 39; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 15; +"@MMK_R_KO_ellipsis" = -72; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_five" = 15; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -11; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteright" = -43; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 17; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 20; +"@MMK_R_KO_three" = 27; +"@MMK_R_KO_two" = 16; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_v" = 17; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_y" = 17; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -60; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = -21; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -67; +"@MMK_R_KO_colon" = -38; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eight" = 8; +"@MMK_R_KO_ellipsis" = -92; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 18; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 33; +"@MMK_R_KO_guillemetright" = -41; +"@MMK_R_KO_hyphen" = 29; +"@MMK_R_KO_hyphen.case" = 16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = -18; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_parenright.case" = -33; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -54; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_slash" = -16; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -30; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -21; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -22; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -112; +"@MMK_R_KO_colon" = -62; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 21; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = 29; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_i" = -1; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -34; +"@MMK_R_KO_one" = -30; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = -112; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_seven" = -54; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_three" = 8; +"@MMK_R_KO_two" = -30; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -38; +"@MMK_R_KO_H" = -25; +"@MMK_R_KO_I.ss02" = -49; +"@MMK_R_KO_J" = -44; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = -54; +"@MMK_R_KO_T" = -87; +"@MMK_R_KO_U" = -24; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_Z" = -66; +"@MMK_R_KO_asterisk" = -119; +"@MMK_R_KO_colon" = -50; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_eight" = -33; +"@MMK_R_KO_five" = -19; +"@MMK_R_KO_four" = -35; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -52; +"@MMK_R_KO_hyphen.case" = -8; +"@MMK_R_KO_nine" = -39; +"@MMK_R_KO_one" = -53; +"@MMK_R_KO_parenright.case" = -66; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_seven" = -96; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -41; +"@MMK_R_KO_three" = -60; +"@MMK_R_KO_two" = -99; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -4; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -10; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -51; +"@MMK_R_KO_quoteleft" = -17; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -21; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -18; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 1; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 29; +"@MMK_R_KO_I.ss02" = 61; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = 53; +"@MMK_R_KO_U" = 31; +"@MMK_R_KO_V" = 56; +"@MMK_R_KO_W" = 63; +"@MMK_R_KO_X" = 38; +"@MMK_R_KO_Y" = 58; +"@MMK_R_KO_Z" = 50; +"@MMK_R_KO_a" = -1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = 19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 23; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = 29; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 16; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 20; +"@MMK_R_KO_parenright" = 34; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = 12; +"@MMK_R_KO_quotedbl" = 40; +"@MMK_R_KO_quotedblleft" = 28; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = 28; +"@MMK_R_KO_quoteright" = 36; +"@MMK_R_KO_quoteright.ss01" = 28; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 46; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = 17; +"@MMK_R_KO_slash" = 17; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 33; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 1; +"@MMK_R_KO_underscore" = 4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 1; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 34; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 29; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -54; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 24; +"@MMK_R_KO_Y" = -28; +"@MMK_R_KO_Z" = 37; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asciicircum" = -34; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 26; +"@MMK_R_KO_comma" = 21; +"@MMK_R_KO_comma.ss01" = 7; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = 9; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 18; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_icircumflex" = 10; +"@MMK_R_KO_imacron" = 10; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 10; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_period" = 29; +"@MMK_R_KO_period.ss01" = 7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -32; +"@MMK_R_KO_quoteright" = -34; +"@MMK_R_KO_quoteright.ss01" = -56; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -50; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 23; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -52; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 44; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 30; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 34; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = 1; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -1; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 1; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = 1; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 28; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 18; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 6; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -40; +"@MMK_R_KO_onesuperior" = -9; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 19; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -5; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = 17; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -25; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 35; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = 28; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 23; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = 66; +"@MMK_R_KO_exclam" = 77; +"@MMK_R_KO_f" = 22; +"@MMK_R_KO_fivesuperior" = 62; +"@MMK_R_KO_foursuperior" = 35; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_i" = 22; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 30; +"@MMK_R_KO_onesuperior" = 59; +"@MMK_R_KO_parenright" = 74; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = 79; +"@MMK_R_KO_question.ss01" = 67; +"@MMK_R_KO_quotedbl" = 87; +"@MMK_R_KO_quotedblleft" = 82; +"@MMK_R_KO_quotedblleft.ss01" = 29; +"@MMK_R_KO_quoteleft" = 82; +"@MMK_R_KO_sevensuperior" = 93; +"@MMK_R_KO_sixsuperior" = 61; +"@MMK_R_KO_slash" = -1; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 78; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_T" = -58; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = -2; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = -5; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -62; +"@MMK_R_KO_bracketright" = -40; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_ninesuperior" = -51; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 1; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = -33; +"@MMK_R_KO_question.ss01" = -44; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -62; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -58; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = 1; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 1; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_X" = -19; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -66; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_ninesuperior" = -51; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -51; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -79; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -23; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -72; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_I.ss02" = -36; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = -68; +"@MMK_R_KO_V" = -46; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -25; +"@MMK_R_KO_bracketright" = -58; +"@MMK_R_KO_colon" = -41; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -25; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eightsuperior" = -38; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = -30; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_fivesuperior" = -44; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = -26; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_i" = -29; +"@MMK_R_KO_icircumflex" = -29; +"@MMK_R_KO_imacron" = -28; +"@MMK_R_KO_j" = -39; +"@MMK_R_KO_l.ss04" = -32; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_ninesuperior" = -73; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -61; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -61; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -20; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_sixsuperior" = -45; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = -37; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_trademark" = -58; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_underscore" = -9; +"@MMK_R_KO_v" = -37; +"@MMK_R_KO_w" = -36; +"@MMK_R_KO_x" = -37; +"@MMK_R_KO_y" = -37; +"@MMK_R_KO_z" = -37; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 22; +"@MMK_R_KO_Y" = 16; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -44; +"@MMK_R_KO_a.ss05" = -26; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eight" = -24; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -31; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -52; +"@MMK_R_KO_guillemetright" = -63; +"@MMK_R_KO_hyphen" = -51; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -42; +"@MMK_R_KO_nine" = -44; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 63; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -33; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -31; +"@MMK_R_KO_seven" = 20; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_slash" = 7; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_three" = -18; +"@MMK_R_KO_two" = -13; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -44; +"@MMK_R_KO_w" = -37; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 19; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 36; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -28; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_Y" = 18; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_eight" = -17; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -15; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_nine" = -42; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright.case" = 60; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 22; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_slash" = 43; +"@MMK_R_KO_three" = -11; +"@MMK_R_KO_two" = 14; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 27; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -42; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -42; +"@MMK_R_KO_W" = -35; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = 37; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -42; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -42; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -42; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen" = -42; +"@MMK_R_KO_hyphen.case" = -42; +"@MMK_R_KO_i" = -1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -1; +"@MMK_R_KO_nine" = -35; +"@MMK_R_KO_one" = -30; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -42; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quoteright" = -42; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -42; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_slash" = 32; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 29; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -42; +"@MMK_R_KO_w" = -31; +"@MMK_R_KO_y" = -42; +"@MMK_R_KO_z" = 29; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = -13; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = -41; +"@MMK_R_KO_U" = -30; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -41; +"@MMK_R_KO_Y" = -41; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asterisk" = -41; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_eight" = -21; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_five" = -25; +"@MMK_R_KO_four" = -41; +"@MMK_R_KO_g" = -37; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = -41; +"@MMK_R_KO_hyphen" = -41; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = -17; +"@MMK_R_KO_j" = -30; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_nine" = -41; +"@MMK_R_KO_one" = -41; +"@MMK_R_KO_parenright" = -28; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft.ss01" = -41; +"@MMK_R_KO_quoteright.ss01" = -41; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_seven" = -41; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -34; +"@MMK_R_KO_three" = -13; +"@MMK_R_KO_two" = 4; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -41; +"@MMK_R_KO_y" = -41; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -11; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -49; +"@MMK_R_KO_T" = -87; +"@MMK_R_KO_U" = -53; +"@MMK_R_KO_V" = -84; +"@MMK_R_KO_W" = -64; +"@MMK_R_KO_Y" = -94; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_eight" = -49; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_five" = -61; +"@MMK_R_KO_four" = -67; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetright" = -85; +"@MMK_R_KO_i" = -10; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_nine" = -80; +"@MMK_R_KO_one" = -56; +"@MMK_R_KO_parenright" = 10; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_s" = -32; +"@MMK_R_KO_seven" = -68; +"@MMK_R_KO_six" = -51; +"@MMK_R_KO_t" = -37; +"@MMK_R_KO_three" = -48; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = -36; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -57; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -73; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -42; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = -22; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -24; +"@MMK_R_KO_a" = -63; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -24; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -62; +"@MMK_R_KO_egrave" = -53; +"@MMK_R_KO_eight" = -20; +"@MMK_R_KO_ellipsis" = -126; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = -93; +"@MMK_R_KO_g" = -63; +"@MMK_R_KO_guillemetleft" = -78; +"@MMK_R_KO_guillemetright" = -52; +"@MMK_R_KO_hyphen" = -112; +"@MMK_R_KO_hyphen.case" = -126; +"@MMK_R_KO_i" = -28; +"@MMK_R_KO_j" = -36; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = -40; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -45; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_slash" = -91; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -66; +"@MMK_R_KO_U" = -19; +"@MMK_R_KO_V" = -67; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_Y" = -77; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -50; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eight" = -9; +"@MMK_R_KO_ellipsis" = 4; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_five" = -13; +"@MMK_R_KO_four" = -50; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_hyphen.case" = -50; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -44; +"@MMK_R_KO_one" = -27; +"@MMK_R_KO_period" = 15; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -47; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_slash" = 37; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 6; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -35; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = -41; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = -58; +"@MMK_R_KO_S" = -40; +"@MMK_R_KO_T" = -93; +"@MMK_R_KO_U" = -56; +"@MMK_R_KO_V" = -106; +"@MMK_R_KO_W" = -61; +"@MMK_R_KO_Y" = -111; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = -58; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_asterisk" = -61; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_egrave" = -57; +"@MMK_R_KO_eight" = -47; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_five" = -51; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -46; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -61; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -45; +"@MMK_R_KO_j" = -35; +"@MMK_R_KO_n" = -45; +"@MMK_R_KO_nine" = -61; +"@MMK_R_KO_one" = -61; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -41; +"@MMK_R_KO_seven" = -61; +"@MMK_R_KO_six" = -57; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = -61; +"@MMK_R_KO_three" = -39; +"@MMK_R_KO_two" = -21; +"@MMK_R_KO_u" = -55; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_y" = -52; +"@MMK_R_KO_z" = -26; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -56; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 10; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -59; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -46; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -90; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -86; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -69; +"@MMK_R_KO_hyphen" = -90; +"@MMK_R_KO_hyphen.case" = -90; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_n" = -61; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -74; +"@MMK_R_KO_seven" = 29; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -76; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -50; +"@MMK_R_KO_w" = -50; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -60; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = -25; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_Y" = 13; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_asterisk" = 7; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -61; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -36; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -20; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_nine" = -28; +"@MMK_R_KO_one" = 5; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -54; +"@MMK_R_KO_seven" = 22; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_slash" = -61; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 6; +"@MMK_R_KO_u" = -31; +"@MMK_R_KO_v" = -56; +"@MMK_R_KO_w" = -56; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -57; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 15; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -69; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asterisk" = 11; +"@MMK_R_KO_colon" = -57; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_e" = -89; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -90; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -90; +"@MMK_R_KO_g" = -89; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -77; +"@MMK_R_KO_hyphen" = -90; +"@MMK_R_KO_hyphen.case" = -90; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = 9; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_s" = -82; +"@MMK_R_KO_seven" = 36; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_slash" = -83; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 10; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_v" = -69; +"@MMK_R_KO_w" = -70; +"@MMK_R_KO_y" = -69; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 10; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -46; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -50; +"@MMK_R_KO_g" = -50; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_hyphen.case" = -50; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -44; +"@MMK_R_KO_seven" = 29; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -50; +"@MMK_R_KO_y" = -48; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 15; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asterisk" = 11; +"@MMK_R_KO_colon" = -50; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -50; +"@MMK_R_KO_g" = -50; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_hyphen.case" = -50; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = 9; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 7; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_s" = -50; +"@MMK_R_KO_seven" = 36; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 10; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -50; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -61; +"@MMK_R_KO_H" = -37; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -59; +"@MMK_R_KO_O" = -40; +"@MMK_R_KO_S" = -27; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = -35; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_Y" = -15; +"@MMK_R_KO_Z" = -22; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -54; +"@MMK_R_KO_asterisk" = -9; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -61; +"@MMK_R_KO_eight" = -35; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_five" = -37; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -61; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -61; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -35; +"@MMK_R_KO_j" = -51; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_nine" = -57; +"@MMK_R_KO_one" = -10; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -52; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = -61; +"@MMK_R_KO_seven" = -13; +"@MMK_R_KO_six" = -41; +"@MMK_R_KO_slash" = -61; +"@MMK_R_KO_t" = -45; +"@MMK_R_KO_three" = -23; +"@MMK_R_KO_two" = -20; +"@MMK_R_KO_u" = -61; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_y" = -59; +"@MMK_R_KO_z" = -54; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 20; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_Y" = 13; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asterisk" = 21; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -41; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -41; +"@MMK_R_KO_g" = -26; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -41; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = -9; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = 15; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -41; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 8; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_seven" = 28; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -41; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 19; +"@MMK_R_KO_two" = 22; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -40; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = -29; +"@MMK_R_KO_J" = -24; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -65; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -43; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = -50; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -72; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -44; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -57; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = -47; +"@MMK_R_KO_quoteright.ss01" = -48; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -44; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -49; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -58; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asciicircum" = -57; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -45; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -34; +"@MMK_R_KO_question.ss01" = -40; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -74; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -56; +"@MMK_R_KO_s" = 22; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -62; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = -27; +"@MMK_R_KO_I.ss02" = -19; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -88; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_exclam" = -25; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_fivesuperior" = -37; +"@MMK_R_KO_foursuperior" = -32; +"@MMK_R_KO_g" = -26; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_i" = -27; +"@MMK_R_KO_icircumflex" = -27; +"@MMK_R_KO_imacron" = -25; +"@MMK_R_KO_j" = -37; +"@MMK_R_KO_l.ss04" = -29; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_ninesuperior" = -65; +"@MMK_R_KO_onesuperior" = -41; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = -45; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -39; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -48; +"@MMK_R_KO_quoteright" = -48; +"@MMK_R_KO_quoteright.ss01" = -59; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = -51; +"@MMK_R_KO_sixsuperior" = -37; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -43; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 44; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 31; +"@MMK_R_KO_W" = 41; +"@MMK_R_KO_Y" = 32; +"@MMK_R_KO_Z" = 28; +"@MMK_R_KO_a" = -54; +"@MMK_R_KO_a.ss05" = -49; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_colon" = -19; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -53; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_ellipsis" = -94; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -58; +"@MMK_R_KO_g" = -54; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_hyphen" = -55; +"@MMK_R_KO_hyphen.case" = -37; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -41; +"@MMK_R_KO_nine" = -31; +"@MMK_R_KO_one" = 10; +"@MMK_R_KO_parenright" = 28; +"@MMK_R_KO_parenright.case" = 31; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = 23; +"@MMK_R_KO_quotedblleft" = 21; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteright" = 14; +"@MMK_R_KO_quoteright.ss01" = 19; +"@MMK_R_KO_s" = -44; +"@MMK_R_KO_seven" = 38; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_slash" = -67; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -40; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -26; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 5; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = 18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_nine" = -24; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = 13; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = -13; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 40; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 33; +"@MMK_R_KO_W" = 44; +"@MMK_R_KO_Y" = 29; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -16; +"@MMK_R_KO_asterisk" = 24; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -94; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = -46; +"@MMK_R_KO_g" = -36; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_hyphen.case" = -15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = -24; +"@MMK_R_KO_one" = 18; +"@MMK_R_KO_parenright" = 4; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = 24; +"@MMK_R_KO_quotedblleft" = 13; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_quoteright.ss01" = 14; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = 40; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -63; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 10; +"@MMK_R_KO_u" = -20; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 19; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -31; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 22; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_period" = 13; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -46; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -23; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 30; +"@MMK_R_KO_v" = 16; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 22; +"@MMK_R_KO_y" = 16; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -14; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eight" = 13; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_five" = 7; +"@MMK_R_KO_four" = 21; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = -18; +"@MMK_R_KO_one" = 9; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_three" = 21; +"@MMK_R_KO_two" = 10; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 29; +"@MMK_R_KO_J" = 34; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = -18; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 6; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = 7; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -54; +"@MMK_R_KO_g" = -21; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -53; +"@MMK_R_KO_hyphen.case" = -9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = -23; +"@MMK_R_KO_one" = 15; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 5; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 12; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 17; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 22; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -26; +"@MMK_R_KO_J" = -21; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -63; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -39; +"@MMK_R_KO_Y" = -29; +"@MMK_R_KO_Z" = -35; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = -43; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_ninesuperior" = -38; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -28; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -50; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -59; +"@MMK_R_KO_quoteleft" = -46; +"@MMK_R_KO_quoteright" = -48; +"@MMK_R_KO_quoteright.ss01" = -56; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = 19; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -5; +"@MMK_R_KO_v" = 18; +"@MMK_R_KO_w" = 15; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = 18; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -21; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -25; +"@MMK_R_KO_J" = -20; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -64; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -35; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = -27; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -34; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 19; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 5; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -38; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_period" = -28; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -5; +"@MMK_R_KO_question.ss01" = -48; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -56; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -36; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 15; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -48; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 21; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -60; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = -29; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 17; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -28; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_period" = 15; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -56; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = 16; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -52; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 29; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 21; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 22; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -29; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 21; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -40; +"@MMK_R_KO_onesuperior" = -21; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -32; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -59; +"@MMK_R_KO_quoteleft" = -45; +"@MMK_R_KO_quoteright" = -46; +"@MMK_R_KO_quoteright.ss01" = -56; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 11; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 33; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 9; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 9; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = 11; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 22; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -18; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -24; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eight" = 4; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_five" = 5; +"@MMK_R_KO_four" = 9; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = 14; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_nine" = -18; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -34; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = 0; +Tbar = -30; +asciitilde = -22; +asterisk = -49; +backslash = -39; +g.ss06 = 0; +minus = -43; +one = -21; +ordmasculine = -53; +plus = -37; +quotedbl = -51; +registered = -45; +seven = -30; +two = 21; +twosuperior = -26; +}; +Aacute = { +Tbar = -30; +}; +Abrevedotbelow.ss01 = { +T = -44; +}; +Aogonek = { +comma = 28; +parenright = 8; +}; +Atilde = { +ordfeminine = -53; +}; +B = { +Hbar = 29; +hbar = 16; +idieresis = 19; +itilde = 32; +}; +C = { +h = 3; +l = 3; +plus = -88; +three = 15; +}; +D = { +Lslash = 23; +Oslash = 9; +braceright = -34; +bracketright.case = -35; +}; +E = { +H = 0; +idieresis = 0; +}; +Eogonek = { +comma = 31; +}; +F = { +fourinferior = -64; +i = -8; +igrave = 55; +}; +G = { +Lslash = 28; +lslash = 20; +}; +Germandbls = { +S = 29; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -10; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 29; +itilde = 35; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 25; +D = 25; +E = 25; +H = 25; +Hbar = 90; +I = 25; +L = 25; +M = 25; +O = 22; +R = 25; +S = 39; +U = 27; +W = 42; +i = 19; +}; +I = { +Hbar = 25; +I = 0; +jcircumflex = 10; +}; +Icircumflex = { +Icircumflex = 0; +l.ss04 = 0; +}; +Imacron = { +Imacron = 0; +}; +Itilde = { +itilde = 35; +}; +J = { +Hbar = 27; +itilde = 37; +}; +Jacute = { +Imacron = 0; +}; +K = { +asciitilde = -56; +four = -11; +idieresis = 20; +igrave = 52; +itilde = 29; +less = -62; +logicalnot = -35; +minus = -74; +one = -4; +oslash = 0; +plus = -61; +}; +L = { +H = 0; +Tbar = -55; +asciitilde = -80; +asterisk = -69; +backslash = -47; +equal = -74; +four = -73; +less = -79; +logicalnot = -61; +minus = -95; +one = -28; +ordfeminine = -86; +ordmasculine = -85; +oslash = 0; +plus = -87; +quotedbl = -68; +quoteleft.ss01 = -61; +quoteright = -50; +quoteright.ss01 = -61; +registered = -87; +seven = -41; +twosuperior = -75; +}; +Lcaron = { +A = 32; +O = -13; +U = -3; +Uacute = -3; +V = 10; +a = -13; +hyphen = -65; +hyphen.case = -69; +u = -11; +v = -22; +}; +Lcommaaccent = { +twosuperior = -75; +}; +Lslash = { +twosuperior = -16; +}; +M = { +Hbar = 25; +idieresis = 22; +igrave = 29; +itilde = 35; +}; +N = { +Hbar = 25; +idieresis = 22; +igrave = 29; +itilde = 35; +}; +O = { +Dcroat = 7; +Lslash = 22; +braceright = -31; +bracketright.case = -26; +itilde = 22; +}; +Oslash = { +T = -14; +V = -16; +Y = -14; +parenright = 0; +parenright.case = 0; +}; +P = { +fourinferior = -80; +idieresis = 37; +itilde = 50; +two = 24; +}; +R = { +Hbar = 29; +jcircumflex = 11; +two = 6; +}; +S = { +Hbar = 40; +Lslash = 30; +dollar = 11; +four = 24; +idieresis = 28; +itilde = 41; +lslash = 8; +three = 26; +}; +T = { +Oslash = -22; +a.ss05 = -59; +aacute.ss05 = -58; +abreve = -20; +abreveacute = -22; +acircumflex = -43; +acircumflexacute = -43; +acircumflexdotbelow = -43; +adieresis = -38; +adotbelow.ss05 = -59; +ae = -59; +agrave = -15; +amacron = -34; +ampersand = -29; +aring = -34; +asciitilde = -69; +atilde = -33; +equal = -62; +four = -60; +g.ss06 = -64; +h = 5; +i.ss01 = 5; +iacute = -29; +idieresis = 0; +idotless = -51; +igrave = 53; +itilde = 0; +less = -70; +logicalnot = -47; +minus = -83; +ograve = -10; +plus = -83; +racute = -51; +scaron = 0; +seven = 34; +twoinferior = -61; +udieresis = -39; +udieresis.ss01 = -28; +ugrave = -13; +uhorngrave = -13; +umacron = -39; +ycircumflex = -25; +ygrave = 0; +yhookabove = -29; +zcaron = 5; +zeroinferior = -71; +}; +Tbar = { +A = -30; +Aacute = -30; +Tbar = 43; +a = -15; +comma = -50; +e = -14; +o = -13; +period = -42; +slash = -42; +}; +Tcaron = { +a.ss05 = -59; +}; +Tcedilla = { +a.ss05 = -59; +abreve = -20; +four = -60; +}; +Tcommaaccent = { +a.ss05 = -59; +abreve = -20; +four = -60; +}; +Thorn = { +A = -13; +AE = -15; +Aacute = -13; +J = -18; +O = 13; +Oacute = 13; +V = -15; +Y = -40; +Yacute = -40; +a = 11; +aacute = 11; +e = 12; +o = 13; +oacute = 13; +period = -42; +}; +U = { +Hbar = 27; +jcircumflex = 11; +}; +V = { +four = -41; +iacute = -15; +ibreve = 57; +idieresis = 37; +igrave = 56; +itilde = 51; +minus = -46; +plus = -44; +scaron = 0; +seven = 28; +twoinferior = -35; +}; +W = { +Hbar = 42; +backslash = 54; +idieresis = 47; +igrave = 63; +itilde = 60; +}; +X = { +asciitilde = -68; +four = -24; +less = -75; +logicalnot = -53; +minus = -90; +notequal = -59; +one = -7; +plus = -75; +}; +Y = { +a.ss05 = -52; +agrave = -18; +amacron = -29; +ampersand = -27; +asciitilde = -71; +at = -37; +four = -70; +g.ss06 = -67; +igrave = 59; +less = -68; +logicalnot = -44; +minus = -82; +ograve = -12; +plus = -70; +scaron = 0; +twoinferior = -74; +}; +Z = { +four = -72; +ibreve = 59; +igrave = 57; +itilde = 46; +minus = -78; +plus = -66; +}; +_B.currency = { +_baht.bar = -24; +}; +a = { +braceright = -41; +}; +a.ss05 = { +g.ss06 = 0; +}; +acircumflexacute.ss05 = { +y = -41; +}; +adieresis.ss05 = { +germandbls = -31; +}; +ampersand = { +V = -38; +W = -23; +Y = -65; +quotedbl = -90; +quotedblleft = -86; +}; +aogonek = { +j = -14; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 0; +}; +approxequal = { +parenright = -74; +parenright.case = -64; +}; +asciicircum = { +J = -65; +X = -79; +Y = -65; +bracketright = -85; +comma = -50; +comma.ss01 = -41; +four = -89; +hyphen = -112; +parenright = -87; +parenright.case = -79; +period = -42; +period.ss01 = -41; +slash = -94; +}; +asciitilde = { +I.ss02 = -77; +J = -73; +V = -73; +W = -60; +X = -114; +Y = -100; +Z = -101; +bracketright = -93; +bracketright.case = -94; +comma = -50; +comma.ss01 = -41; +eight = -69; +exclam = -62; +four = -69; +one = -80; +parenright = -88; +parenright.case = -79; +period = -42; +period.ss01 = -41; +question = -117; +quotedbl = -107; +quotedblright = -90; +seven = -114; +slash = -94; +three = -92; +two = -101; +}; +at = { +T = -46; +parenright = -40; +}; +b = { +asterisk = -50; +braceright = -35; +lslash = 11; +one = -31; +}; +backslash = { +T = -49; +V = -56; +Y = -65; +asterisk = -62; +backslash = -60; +quotedbl = -68; +quotedblleft = -75; +quotedblleft.ss01 = -92; +quotedblright = -77; +quotedblright.ss01 = -75; +quoteleft = -50; +quoteright = -50; +quotesingle = -41; +}; +baht = { +parenright = -55; +}; +braceleft = { +p = 0; +}; +bracketleft = { +asciicircum = -85; +asciitilde = -55; +bracketright = 67; +jcircumflex = 0; +p = 0; +pi = -27; +plus = -64; +x = -29; +}; +c = { +asterisk = -41; +braceright = -37; +}; +cent = { +parenright = -35; +}; +colon = { +T = -62; +Y = -49; +four = -62; +one = -36; +parenright = -49; +two = -3; +zero = -18; +}; +colon.ss01 = { +T = -61; +four = -61; +parenright = -59; +}; +comma = { +eightsuperior = -50; +fivesuperior = -50; +foursuperior = -50; +ninesuperior = -50; +onesuperior = -50; +quoteleft = -50; +quotesingle = -41; +sevensuperior = -50; +sixsuperior = -50; +threesuperior = -50; +twosuperior = -50; +}; +comma.ss01 = { +eightsuperior = -41; +fivesuperior = -41; +foursuperior = -41; +ninesuperior = -41; +onesuperior = -41; +sevensuperior = -41; +sixsuperior = -41; +threesuperior = -41; +twosuperior = -41; +}; +copyright = { +Y = -79; +parenright = -84; +}; +d = { +idieresis = 0; +igrave = 0; +itilde = 0; +}; +dcaron = { +C = 47; +H = 72; +bracketright = 31; +eightsuperior = 66; +exclam = 77; +exclam.ss01 = 76; +fivesuperior = 62; +foursuperior = 35; +h = 22; +i = 0; +j = 0; +k = 22; +l = 22; +l.ss03 = 21; +l.ss04 = 18; +ninesuperior = 30; +onesuperior = 59; +parenright = 74; +question = 79; +question.ss01 = 67; +quotedbl = 87; +quotedblleft = 82; +quotedblleft.ss01 = 29; +quoteleft = 82; +quoteleft.ss01 = 29; +quotesingle = 87; +sevensuperior = 93; +sixsuperior = 61; +t = 10; +t_i.liga = 7; +t_t.liga = 7; +threesuperior = 78; +twosuperior = 84; +zcaron = 15; +}; +dcroat = { +i = 0; +igrave = 0; +itilde = 0; +}; +degree = { +J = -43; +comma = -50; +comma.ss01 = -41; +emdash = -145; +endash = -145; +four = -91; +hyphen = -112; +parenright = -27; +parenright.case = -23; +period = -42; +period.ss01 = -41; +slash = -89; +}; +divide = { +parenright = -80; +}; +dollar = { +parenright = -27; +three = 10; +}; +e = { +asterisk = -46; +backslash = -29; +braceright = -39; +germandbls = -2; +one = -30; +seven = -33; +}; +ecircumflexacute = { +t = -29; +}; +eight = { +bracketright = -23; +degree = -13; +}; +eight.dnom = { +degree = -115; +question.ss01 = -73; +quotedbl = -115; +quotedblleft = -90; +quotedblright = -90; +}; +eightsuperior = { +comma = -50; +comma.ss01 = -41; +period = -42; +period.ss01 = -41; +slash = -84; +}; +ellipsis = { +Tbar = -99; +bracketright = -73; +eightsuperior = -142; +fivesuperior = -135; +foursuperior = -113; +ninesuperior = -140; +onesuperior = -65; +parenleft = -56; +parenleft.case = -70; +question = -91; +quoteleft = -50; +quoteright = -50; +quotesingle = -41; +sevensuperior = -100; +sixsuperior = -140; +threesuperior = -132; +twosuperior = -118; +}; +ellipsis.ss01 = { +Tbar = -103; +bracketright = -72; +eightsuperior = -142; +fivesuperior = -135; +foursuperior = -113; +ninesuperior = -140; +onesuperior = -65; +question.ss01 = -104; +quoteleft.ss01 = -61; +quoteright.ss01 = -61; +quotesingle = -41; +sevensuperior = -100; +sixsuperior = -140; +threesuperior = -132; +twosuperior = -118; +}; +emdash = { +foursuperior = -113; +question = -65; +}; +emdash.case = { +X = -86; +quotedblbase = -90; +quotedblbase.ss01 = -111; +}; +endash = { +X = -38; +endash = 0; +foursuperior = -113; +question = -60; +}; +endash.case = { +H = -26; +X = -86; +quotedblbase = -90; +quotedblbase.ss01 = -111; +}; +eng = { +bracketright = 0; +}; +eogonek = { +lslash = 14; +}; +equal = { +T = -62; +equal = 0; +parenright = -54; +parenright.case = -42; +}; +eth = { +a = 0; +e = 0; +g = 0; +hyphen = 10; +parenright = -20; +}; +euro = { +parenright = -26; +parenright.case = -22; +}; +exclamdown = { +T = -62; +V = -14; +Y = -43; +}; +f = { +igrave = 0; +n = 0; +o = 0; +}; +f_f.liga = { +igrave = 2; +}; +f_f_i.liga = { +idieresis = 0; +}; +fi = { +idieresis = 0; +}; +five = { +degree = -26; +ordmasculine = -14; +percent = 0; +}; +five.dnom = { +degree = -108; +question.ss01 = -71; +quotedblleft = -90; +}; +five.numr = { +fraction = -20; +}; +fiveinferior = { +T = -65; +}; +fivesuperior = { +comma = -50; +comma.ss01 = -41; +period = -42; +period.ss01 = -41; +slash = -78; +}; +fl = { +idieresis = 0; +itilde = 0; +periodcentered.loclCAT = 55; +}; +four = { +asciicircum = -61; +bracketright = -2; +bracketright.case = 0; +degree = -39; +ordfeminine = -29; +ordmasculine = -28; +percent = -18; +x = -12; +}; +four.dnom = { +degree = -106; +question.ss01 = -75; +quotedblleft = -90; +}; +fourinferior = { +T = -62; +V = -44; +}; +foursuperior = { +comma = -50; +comma.ss01 = -41; +period = -42; +period.ss01 = -41; +slash = -55; +}; +fraction = { +eight.dnom = -3; +four.dnom = -20; +fourinferior = -20; +seveninferior = 24; +two.dnom = 0; +zero.dnom = -10; +}; +g = { +bracketright = 0; +j = 0; +j.ss01 = -14; +parenright = -2; +slash = 13; +}; +g.ss06 = { +g.ss06 = 11; +}; +gcaron.ss06 = { +gcaron.ss06 = 11; +}; +gdotaccent = { +j = -14; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 11; +}; +germandbls = { +e = 11; +hyphen = 23; +parenright = -23; +}; +greater = { +T = -43; +parenright = -42; +}; +greaterequal = { +T = -58; +}; +guillemetleft = { +pi = 28; +}; +guillemetright = { +X = -40; +bracketright = -32; +}; +guilsinglright = { +X = -40; +}; +h = { +asterisk = -41; +}; +hyphen = { +Lslash = 51; +X = -34; +bracketright = -40; +foursuperior = -104; +pi = -11; +question = -62; +quotedblbase = -90; +quoteleft = -50; +quotesingle = -41; +x = -23; +}; +hyphen.case = { +Dcroat = 12; +X = -85; +bracketright.case = -66; +quotedblbase = -90; +quotedblbase.ss01 = -111; +quotesinglbase = -50; +}; +i = { +T = -20; +idieresis = 0; +jcircumflex = 0; +parenright = -19; +}; +i.ss01 = { +parenright = -2; +}; +iacute = { +rcaron = 0; +}; +icircumflex = { +b = 0; +h = 0; +i = 0; +icircumflex = 0; +j = 0; +k = 0; +l = 0; +l.ss03 = 0; +l.ss04 = 0; +question = 34; +quotedbl = 34; +quoteright = 18; +quotesingle = 34; +}; +idieresis = { +b = 0; +idieresis = 0; +k = 0; +l = 0; +l.ss03 = 0; +l.ss04 = 0; +}; +idotaccent = { +parenright = -19; +}; +idotaccent.ss01 = { +parenright = -2; +}; +imacron = { +b = 0; +imacron = 0; +j = -10; +k = 0; +kcommaaccent = 0; +l = 0; +l.ss04 = 0; +lcommaaccent = 0; +quotedbl = 0; +}; +infinity = { +parenright = -53; +parenright.case = -35; +}; +integral = { +a = -42; +}; +iogonek = { +j = -14; +}; +itilde = { +h = 0; +itilde = 0; +quotedbl = 47; +quotesingle = 47; +}; +j = { +j = -13; +}; +jacute = { +backslash = 57; +iogonek = 2; +}; +jcircumflex = { +i = 0; +jcircumflex = 0; +}; +k = { +oslash = 0; +}; +l = { +at = 0; +idieresis = 0; +igrave = 0; +itilde = 0; +jcircumflex = 0; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 10; +}; +l.ss03 = { +periodcentered.loclCAT = 49; +periodcentered.loclCAT.ss01 = 2; +}; +l.ss04 = { +periodcentered.loclCAT = 55; +periodcentered.loclCAT.ss01 = 9; +}; +lcaron = { +exclam.ss01 = 76; +l = 26; +ncaron = 0; +scaron = 8; +twosuperior = 84; +}; +lcaron.ss03 = { +b = 19; +eightsuperior = 58; +exclam = 69; +exclam.ss01 = 68; +fivesuperior = 54; +k = 19; +ninesuperior = 22; +onesuperior = 52; +question = 71; +quotedbl = 79; +quotesingle = 79; +sevensuperior = 85; +sixsuperior = 53; +}; +lcaron.ss04 = { +exclam.ss01 = 76; +twosuperior = 84; +}; +liraTurkish = { +one = -27; +parenright = -41; +question = -43; +quotedbl = -50; +quotesingle = -41; +seven = -36; +}; +logicalnot = { +Y = -63; +parenright = -39; +seven = -58; +}; +m = { +asterisk = -42; +braceright = -40; +twosuperior = -10; +}; +minus = { +T = -83; +X = -91; +comma = -50; +one = -51; +parenright = -80; +parenright.case = -68; +period = -42; +seven = -101; +three = -71; +two = -101; +}; +mu = { +mu = -1; +parenright = -26; +quotesingle = -9; +}; +multiply = { +parenright = -81; +parenright.case = -71; +}; +n = { +asterisk = -41; +at = -2; +braceright = -40; +degree = -62; +g.ss06 = -5; +n = 0; +one = -31; +ordmasculine = -30; +}; +ncaron = { +Yacute = -17; +}; +nine = { +bracketright = -33; +degree = -19; +}; +nine.dnom = { +degree = -134; +question = -77; +question.ss01 = -75; +quotedbl = -126; +quotedblleft = -90; +quotedblleft.ss01 = -111; +quotedblright = -90; +quotedblright.ss01 = -111; +}; +ninesuperior = { +comma = -50; +comma.ss01 = -41; +fraction = -14; +period = -42; +period.ss01 = -41; +slash = -59; +}; +notequal = { +parenright = -59; +parenright.case = -50; +}; +numbersign = { +parenright = -29; +}; +o = { +asterisk = -50; +backslash = -29; +braceright = -35; +germandbls = -4; +lslash = 13; +n = 0; +one = -30; +}; +oacute = { +lslash = -15; +}; +ocircumflexacute = { +bracketright = 0; +parenright = 0; +}; +odieresis = { +germandbls = -30; +}; +ohorn = { +i = 0; +m = 0; +n = 0; +parenright = -11; +}; +ohornacute = { +c = -25; +i = -26; +m = -27; +n = -27; +p = -27; +t = -19; +t_i.liga = -22; +t_t.liga = -22; +}; +ohorndotbelow = { +c = -25; +i = -26; +n = -27; +p = -27; +t = -19; +t_i.liga = -22; +t_t.liga = -22; +u = -26; +}; +ohorngrave = { +i = -26; +n = -27; +parenright = -34; +}; +ohornhookabove = { +i = -26; +n = -27; +}; +ohorntilde = { +i = -26; +n = -27; +}; +ohungarumlaut = { +parenright = -17; +}; +one = { +comma.ss01 = -13; +degree = -21; +equal = 0; +four = 0; +icircumflex = 21; +nine = -24; +one = 0; +parenright = -2; +percent = 0; +period.ss01 = -13; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -63; +one.dnom = 0; +question.ss01 = -63; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -50; +comma.ss01 = -41; +period = -42; +period.ss01 = -41; +slash = -60; +}; +ordfeminine = { +comma = -50; +comma.ss01 = -41; +period = -42; +period.ss01 = -41; +}; +ordmasculine = { +comma = -50; +comma.ss01 = -41; +hyphen = -112; +parenright = -16; +period = -42; +period.ss01 = -41; +slash = -67; +}; +oslash = { +d = -26; +e = -25; +g = -26; +hyphen = -19; +parenright = -53; +y = -26; +}; +p = { +asterisk = -50; +backslash = -30; +braceright = -35; +lslash = 11; +one = -31; +}; +parenleft = { +Dcroat = 0; +H = 0; +Icircumflex = 11; +Oslash = 0; +ampersand = -31; +approxequal = -77; +asciicircum = -87; +asciitilde = -69; +at = -46; +cent = -41; +copyright = -56; +degree = -27; +divide = -80; +dollar = -27; +equal = -54; +euro = -34; +greaterequal = -24; +i = -19; +idotaccent = -19; +infinity = -53; +iogonek = 60; +jcircumflex = 0; +less = -69; +literSign = -30; +logicalnot = -38; +minus = -80; +mu = 0; +multiply = -82; +notequal = -59; +numbersign = -31; +oslash = -3; +p = 0; +parenleft = -29; +pi = -31; +plus = -80; +plusminus = -42; +published = -56; +question = -17; +quotedblbase = 0; +quoteleft = 0; +radical = -31; +scaron = 0; +section = -15; +sterling = -9; +x = -9; +}; +parenleft.case = { +Icircumflex = 30; +approxequal = -66; +asciicircum = -79; +asciitilde = -58; +dollar = -21; +equal = -42; +euro = -25; +minus = -68; +numbersign = -21; +parenleft.case = -19; +plus = -68; +question = -15; +quotedblbase = 0; +quoteleft = 0; +}; +parenright = { +bracketright = -24; +comma = -12; +comma.ss01 = -27; +hyphen = 21; +parenleft = 22; +parenright = -29; +period = 0; +period.ss01 = -29; +quotedbl = 0; +}; +parenright.case = { +comma = -24; +comma.ss01 = -41; +parenright.case = -19; +period = -18; +period.ss01 = -41; +}; +percent = { +asterisk = -70; +bracketright = -40; +comma.ss01 = -38; +eightsuperior = -57; +fivesuperior = -62; +foursuperior = -84; +ninesuperior = -84; +onesuperior = -61; +parenright = -45; +parenright.case = -23; +period = -15; +period.ss01 = -38; +question = -73; +question.ss01 = -77; +quotedbl = -71; +quotedblleft = -75; +quotedblright = -66; +quoteleft = -50; +quoteright = -50; +quotesingle = -41; +sevensuperior = -61; +sixsuperior = -62; +threesuperior = -52; +twosuperior = -30; +}; +period = { +bracketright = -36; +eightsuperior = -42; +fivesuperior = -42; +foursuperior = -42; +ninesuperior = -42; +onesuperior = -42; +ordfeminine = -42; +ordmasculine = -42; +parenleft.case = -18; +question = -42; +quoteleft = -42; +quotesingle = -41; +sevensuperior = -42; +sixsuperior = -42; +threesuperior = -42; +twosuperior = -42; +}; +period.ss01 = { +bracketright = -41; +eightsuperior = -41; +fivesuperior = -41; +foursuperior = -41; +ninesuperior = -41; +onesuperior = -41; +ordfeminine = -41; +ordmasculine = -41; +question.ss01 = -41; +sevensuperior = -41; +sixsuperior = -41; +threesuperior = -41; +twosuperior = -41; +}; +periodcentered.loclCAT = { +l = 52; +l.ss03 = 51; +}; +perthousand = { +asterisk = -119; +parenright = -56; +parenright.case = -27; +question = -79; +question.ss01 = -83; +quotedblleft = -90; +quotedblleft.ss01 = -111; +quotedblright = -90; +quotedblright.ss01 = -111; +quoteleft = -50; +quoteright = -50; +}; +pi = { +hyphen = -12; +parenright = -20; +period = 14; +pi = 24; +quotesingle = 0; +}; +plus = { +J = -43; +T = -83; +V = -44; +X = -76; +Y = -70; +braceright = -70; +bracketright = -64; +comma = -50; +comma.ss01 = -41; +one = -51; +parenright = -80; +parenright.case = -68; +period = -42; +period.ss01 = -41; +quotedbl = -99; +seven = -81; +slash = -40; +three = -65; +two = -81; +}; +published = { +parenright = -84; +}; +q = { +bracketright = 0; +j = -11; +parenright = 0; +}; +question = { +A = -34; +J = -15; +comma = -47; +hyphen = -29; +parenright = -3; +parenright.case = 0; +period = -39; +question = 19; +questiondown = -72; +slash = -36; +}; +question.ss01 = { +comma.ss01 = -41; +parenright = -2; +parenright.case = 0; +period.ss01 = -41; +questiondown.ss01 = -49; +}; +questiondown.case = { +T = -55; +V = -57; +Y = -61; +quotedbl = -66; +quotedblleft = -70; +quotedblleft.ss01 = -104; +quoteright = -50; +}; +questiondown.ss01 = { +C = -50; +Q = -50; +Q.ss09 = -50; +T = -80; +V = -81; +Y = -90; +four = -68; +quotedbl = -69; +quotedblleft.ss01 = -111; +quotesingle = -41; +}; +quotedbl = { +ellipsis.ss01 = -126; +exclamdown = -67; +g.ss06 = -68; +icircumflex = 0; +mu = -35; +questiondown = -105; +questiondown.case = -98; +questiondown.ss01 = -82; +underscore = -126; +}; +quotedblbase = { +copyright = -78; +divide = -90; +equal = -90; +euro = -60; +minus = -90; +p = 0; +plus = -90; +question = -66; +quotedblright = -90; +quoteleft = -50; +}; +quotedblbase.ss01 = { +divide = -111; +minus = -111; +plus = -111; +question.ss01 = -104; +quotedblright.ss01 = -111; +}; +quotedblleft = { +g.ss06 = -82; +mu = -61; +questiondown = -90; +questiondown.case = -77; +quotedblbase = -90; +underscore = -90; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -111; +questiondown.ss01 = -90; +quotedblbase.ss01 = -111; +underscore = -111; +}; +quotedblright = { +asciitilde = -90; +questiondown = -90; +questiondown.case = -70; +quotesinglbase = -50; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -111; +questiondown.case = -111; +questiondown.ss01 = -111; +}; +quoteleft = { +questiondown = -50; +questiondown.case = -50; +quotedblbase = -50; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -61; +}; +quoteright = { +icircumflex = 33; +questiondown = -50; +quotedblbase = -50; +}; +quoteright.ss01 = { +questiondown.ss01 = -61; +quotedblbase.ss01 = -61; +}; +quotesinglbase = { +T = -50; +V = -50; +Y = -50; +minus = -50; +plus = -50; +question = -50; +quotedblleft = -50; +quoteleft = -50; +}; +quotesinglbase.ss01 = { +T = -61; +V = -61; +Y = -61; +question.ss01 = -61; +}; +quotesingle = { +Hbar = 34; +g.ss06 = -33; +icircumflex = 34; +igrave = 40; +imacron = 0; +itilde = 44; +l.ss04 = 2; +questiondown = -41; +questiondown.case = -41; +underscore = -41; +}; +r = { +braceright = -37; +fourinferior = -61; +g.ss06 = -25; +parenright = -39; +}; +radical = { +A = -40; +}; +rcaron = { +sevensuperior = 9; +}; +registered = { +comma = -50; +comma.ss01 = -41; +parenright = -39; +parenright.case = -32; +period = -42; +period.ss01 = -41; +slash = -53; +}; +s = { +asterisk = -29; +braceright = -29; +l = 0; +}; +scaron = { +T = -27; +}; +semicolon = { +hyphen = -50; +}; +seven = { +minus = -71; +percent = 0; +plus = -63; +underscore = -73; +}; +seven.dnom = { +question.ss01 = -83; +}; +seven.numr = { +fraction = -20; +}; +seveninferior = { +parenright = -46; +}; +sevensuperior = { +A = -68; +comma = -50; +comma.ss01 = -41; +fraction = -20; +period = -42; +period.ss01 = -41; +slash = -83; +}; +six = { +bracketright = -25; +degree = -20; +}; +six.dnom = { +degree = -114; +question.ss01 = -75; +quotedbl = -114; +quotedblleft = -90; +quotedblleft.ss01 = -111; +quotedblright = -90; +}; +sixinferior = { +T = -69; +}; +sixsuperior = { +comma = -50; +comma.ss01 = -41; +period = -42; +period.ss01 = -41; +slash = -82; +}; +slash = { +fourinferior = -75; +g.ss06 = -44; +ibreve = 54; +l.ss04 = 6; +mu = -30; +quotedblbase = -90; +quotedblbase.ss01 = -94; +quotesinglbase = -50; +underscore = -67; +}; +sterling = { +two = 14; +}; +t_i.liga = { +idieresis = 0; +}; +tcaron = { +b = 2; +exclam = 17; +h = 2; +hyphen = -27; +i = 2; +j = -4; +k = 2; +parenright = 49; +quotedbl = 21; +quotedblleft = 11; +quotesingle = 23; +}; +tcedilla = { +parenright = 24; +}; +tenge = { +comma = -50; +comma.ss01 = -41; +period = -42; +period.ss01 = -41; +slash = -61; +}; +three = { +bracketright = -26; +}; +three.dnom = { +degree = -106; +question.ss01 = -73; +quotedbl = -106; +quotedblleft = -90; +quotedblright = -90; +}; +three.numr = { +fraction = -20; +}; +threeinferior = { +T = -66; +V = -44; +Y = -82; +}; +threesuperior = { +comma = -50; +comma.ss01 = -41; +fraction = -20; +parenright = -36; +period = -42; +period.ss01 = -41; +slash = -84; +}; +trademark = { +comma = -50; +comma.ss01 = -41; +hyphen = -112; +period = -42; +period.ss01 = -41; +slash = -87; +}; +two = { +percent = 0; +}; +two.dnom = { +degree = -92; +question.ss01 = -65; +quotedbl = -92; +quotedblleft = -90; +quotedblright = -90; +}; +twoinferior = { +T = -62; +V = -36; +Y = -74; +}; +twosuperior = { +comma = -50; +comma.ss01 = -41; +parenright = -17; +parenright.case = -15; +period = -42; +period.ss01 = -41; +slash = -65; +}; +uhorn = { +a = -7; +ohorn = -5; +ohornacute = -5; +ohorndotbelow = -5; +ohorndotbelow.ss01 = -5; +ohorngrave = -5; +ohornhookabove = -5; +ohorntilde = -3; +}; +uhornacute = { +a = -7; +c = -5; +}; +uhorndotbelow = { +a = -7; +c = -5; +comma = -11; +period = -9; +}; +uhorngrave = { +a = -7; +a.ss05 = -3; +}; +uhornhookabove = { +a = -7; +comma = -11; +comma.ss01 = -28; +period = -9; +period.ss01 = -28; +}; +uhorntilde = { +a = -7; +comma = -11; +period = -9; +}; +uhungarumlaut = { +parenright = 0; +}; +underscore = { +C = 0; +O = 0; +T = -53; +V = -60; +W = -35; +Y = -65; +asterisk = -119; +four = -119; +one = -24; +quotedbl = -126; +quotedblright = -90; +quotedblright.ss01 = -111; +quotesingle = -41; +seven = -39; +six = 0; +v = -43; +}; +uogonek = { +j = -14; +parenright = 0; +}; +v = { +braceright = -33; +n = 0; +}; +w = { +braceright = -35; +}; +x = { +four = -18; +}; +y = { +braceright = -25; +}; +ydotbelow = { +period = -41; +}; +zero = { +braceright = -34; +bracketright = -33; +bracketright.case = -34; +degree = -21; +percent = 0; +}; +zero.dnom = { +degree = -119; +question = -70; +question.ss01 = -75; +quotedbl = -119; +quotedblleft = -90; +quotedblleft.ss01 = -111; +quotedblright = -90; +quotedblright.ss01 = -111; +quoteleft = -50; +}; +zeroinferior = { +parenright = -41; +}; +zerosuperior = { +comma = -50; +comma.ss01 = -41; +fraction = -20; +period = -42; +period.ss01 = -41; +slash = -86; +}; +}; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 1; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = -13; +"@MMK_R_KO_V" = -54; +"@MMK_R_KO_W" = -46; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = -56; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 6; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = -40; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -20; +"@MMK_R_KO_fivesuperior" = -42; +"@MMK_R_KO_foursuperior" = -50; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -9; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -69; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -52; +"@MMK_R_KO_question.ss01" = -54; +"@MMK_R_KO_quotedbl" = -48; +"@MMK_R_KO_quotedblleft" = -39; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteleft" = -39; +"@MMK_R_KO_quoteright" = -45; +"@MMK_R_KO_quoteright.ss01" = -39; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = -70; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_sixsuperior" = -44; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = -45; +"@MMK_R_KO_trademark" = -73; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -38; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = -20; +"@MMK_R_KO_Y" = -28; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -42; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -35; +"@MMK_R_KO_v" = -5; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -11; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = -27; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 9; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 21; +"@MMK_R_KO_imacron" = 26; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_sevensuperior" = -21; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -28; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -37; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -21; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -20; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -38; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -17; +"@MMK_R_KO_bracketright" = -57; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_exclam" = -6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_hyphen.case" = 3; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 9; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = -65; +"@MMK_R_KO_parenright.case" = -61; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -61; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = -35; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -52; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 9; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -57; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = -13; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_y" = -4; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 2; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 41; +"@MMK_R_KO_imacron" = 47; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 26; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = -23; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = -3; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = -27; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -7; +"@MMK_R_KO_colon" = -20; +"@MMK_R_KO_comma" = -86; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -102; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_icircumflex" = 34; +"@MMK_R_KO_imacron" = 46; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = -86; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_question" = -9; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -56; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_underscore" = -81; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_x" = -44; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = -27; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = -27; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -12; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 24; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -21; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -23; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -38; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -17; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 18; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -16; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 33; +"@MMK_R_KO_imacron" = 41; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -4; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -10; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -11; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = -13; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = -7; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -38; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -34; +"@MMK_R_KO_hyphen.case" = -49; +"@MMK_R_KO_i" = -10; +"@MMK_R_KO_icircumflex" = 23; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = -29; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = -23; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -42; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = -9; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -15; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 44; +"@MMK_R_KO_imacron" = 43; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -10; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -31; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -32; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -64; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = -26; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -48; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_hyphen.case" = -40; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 28; +"@MMK_R_KO_imacron" = 45; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 21; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -32; +"@MMK_R_KO_question.ss01" = -32; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_sevensuperior" = -6; +"@MMK_R_KO_six" = -31; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -11; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -38; +"@MMK_R_KO_w" = -33; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -59; +"@MMK_R_KO_W" = -51; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -80; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asciicircum" = -93; +"@MMK_R_KO_bracketright" = -65; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eightsuperior" = -82; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = -8; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_fivesuperior" = -83; +"@MMK_R_KO_foursuperior" = -87; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -74; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -82; +"@MMK_R_KO_onesuperior" = -91; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period" = 14; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -72; +"@MMK_R_KO_question.ss01" = -76; +"@MMK_R_KO_quotedbl" = -74; +"@MMK_R_KO_quotedblleft" = -77; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -77; +"@MMK_R_KO_quoteright" = -79; +"@MMK_R_KO_quoteright.ss01" = -79; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = -90; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = -82; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_threesuperior" = -86; +"@MMK_R_KO_trademark" = -92; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -45; +"@MMK_R_KO_w" = -27; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -58; +"@MMK_R_KO_W" = -46; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -80; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -64; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = -47; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_fivesuperior" = -51; +"@MMK_R_KO_foursuperior" = -52; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -37; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -53; +"@MMK_R_KO_onesuperior" = -82; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_parenright.case" = -25; +"@MMK_R_KO_period" = 14; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -51; +"@MMK_R_KO_question.ss01" = -53; +"@MMK_R_KO_quotedbl" = -56; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -48; +"@MMK_R_KO_quoteleft" = -37; +"@MMK_R_KO_quoteright" = -54; +"@MMK_R_KO_quoteright.ss01" = -46; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -82; +"@MMK_R_KO_sixsuperior" = -49; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_threesuperior" = -53; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -16; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -16; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = -34; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -15; +"@MMK_R_KO_bracketright" = -42; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -18; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 17; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -57; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -45; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -8; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -16; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -16; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = -34; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_bracketright" = -38; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -18; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -44; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -45; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -8; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 23; +"@MMK_R_KO_I.ss02" = 25; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 23; +"@MMK_R_KO_U" = 25; +"@MMK_R_KO_V" = 20; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -18; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 22; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 27; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 25; +"@MMK_R_KO_quoteright" = 16; +"@MMK_R_KO_quoteright.ss01" = 30; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 8; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -32; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -147; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 17; +"@MMK_R_KO_imacron" = 21; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_parenright.case" = -53; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = -19; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -66; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -25; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -146; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -8; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_X" = -4; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -51; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -8; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 7; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -21; +"@MMK_R_KO_question.ss01" = -27; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -50; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -3; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -26; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -11; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 23; +"@MMK_R_KO_imacron" = 26; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -15; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -25; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -29; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -20; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 1; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -28; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -9; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -29; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 1; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -9; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = -3; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -52; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asciicircum" = -39; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -43; +"@MMK_R_KO_comma" = -46; +"@MMK_R_KO_comma.ss01" = -66; +"@MMK_R_KO_e" = -54; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -66; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_g" = -52; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_hyphen.case" = -50; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = -28; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = -46; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -57; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -49; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_underscore" = -38; +"@MMK_R_KO_v" = -51; +"@MMK_R_KO_w" = -45; +"@MMK_R_KO_x" = -48; +"@MMK_R_KO_y" = -58; +"@MMK_R_KO_z" = -42; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_X" = -8; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -24; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 26; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -7; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -23; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -37; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = -9; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -27; +"@MMK_R_KO_H" = -12; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -20; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -20; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_bracketright" = -24; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -23; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = -13; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -24; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = -36; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_v" = -13; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -26; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_bracketright" = 16; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -23; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_eightsuperior" = 7; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = 11; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_ninesuperior" = 6; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 6; +"@MMK_R_KO_sevensuperior" = 11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_threesuperior" = 5; +"@MMK_R_KO_u" = -13; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -55; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 1; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -34; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = -25; +"@MMK_R_KO_comma" = -52; +"@MMK_R_KO_comma.ss01" = -72; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_egrave" = -23; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -72; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = -30; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 26; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = -14; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -70; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -4; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_underscore" = -52; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = -27; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -21; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -46; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -31; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -24; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = -19; +"@MMK_R_KO_comma" = -41; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -25; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_hyphen.case" = -15; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 36; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 26; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -6; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period" = -41; +"@MMK_R_KO_period.ss01" = -56; +"@MMK_R_KO_question" = -10; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -64; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = -40; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -32; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = -3; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asciicircum" = -56; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_egrave" = -26; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -44; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -53; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -26; +"@MMK_R_KO_hyphen.case" = -44; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 45; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -30; +"@MMK_R_KO_question.ss01" = -30; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -22; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_sevensuperior" = -11; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -72; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -42; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_S" = -27; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -72; +"@MMK_R_KO_a.ss05" = -66; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = -56; +"@MMK_R_KO_comma" = -86; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = -76; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -102; +"@MMK_R_KO_exclam" = -7; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = -71; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen" = -76; +"@MMK_R_KO_hyphen.case" = -50; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = -86; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_question" = -30; +"@MMK_R_KO_question.ss01" = -30; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -21; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = -73; +"@MMK_R_KO_sevensuperior" = -7; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = -95; +"@MMK_R_KO_t" = -35; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -11; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_underscore" = -80; +"@MMK_R_KO_v" = -44; +"@MMK_R_KO_w" = -44; +"@MMK_R_KO_x" = -50; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = -42; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 1; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_hyphen.case" = -34; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 41; +"@MMK_R_KO_imacron" = 49; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -5; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -3; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -59; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -19; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -25; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -53; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -78; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -49; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -25; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -8; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -76; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -60; +"@MMK_R_KO_question.ss01" = -52; +"@MMK_R_KO_quotedbl" = -52; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -80; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -32; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -32; +"@MMK_R_KO_trademark" = -80; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -41; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -65; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -8; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 7; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -55; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -59; +"@MMK_R_KO_question.ss01" = -50; +"@MMK_R_KO_quotedbl" = -38; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -35; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -25; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_T" = -54; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = -21; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = -14; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_T" = -38; +"@MMK_R_KO_a" = -30; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_i" = -18; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_t" = -2; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = -15; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_T" = -69; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_i" = -14; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_t" = -11; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -31; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -51; +"@MMK_R_KO_a.ss05" = -71; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_colon" = -30; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = -72; +"@MMK_R_KO_eight" = 2; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -77; +"@MMK_R_KO_g" = -51; +"@MMK_R_KO_guillemetleft" = -86; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = -125; +"@MMK_R_KO_hyphen.case" = -107; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_n" = -23; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_parenright.case" = -43; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = -53; +"@MMK_R_KO_seven" = 5; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_slash" = -101; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -67; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = -37; +"@MMK_R_KO_S" = -29; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_Y" = -9; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = -70; +"@MMK_R_KO_a.ss05" = -72; +"@MMK_R_KO_asterisk" = -17; +"@MMK_R_KO_colon" = -72; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -72; +"@MMK_R_KO_egrave" = -55; +"@MMK_R_KO_eight" = -23; +"@MMK_R_KO_ellipsis" = -79; +"@MMK_R_KO_f" = -57; +"@MMK_R_KO_five" = -21; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -82; +"@MMK_R_KO_hyphen" = -71; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 35; +"@MMK_R_KO_n" = -73; +"@MMK_R_KO_nine" = -26; +"@MMK_R_KO_one" = -71; +"@MMK_R_KO_period" = -69; +"@MMK_R_KO_period.ss01" = -78; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -76; +"@MMK_R_KO_seven" = -9; +"@MMK_R_KO_six" = -45; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_three" = -37; +"@MMK_R_KO_two" = -32; +"@MMK_R_KO_u" = -64; +"@MMK_R_KO_v" = -79; +"@MMK_R_KO_w" = -76; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = -56; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_S" = -31; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_Y" = -9; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_asterisk" = -19; +"@MMK_R_KO_colon" = -20; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_five" = -17; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -65; +"@MMK_R_KO_hyphen.case" = -72; +"@MMK_R_KO_nine" = -26; +"@MMK_R_KO_one" = -70; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -34; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_seven" = -9; +"@MMK_R_KO_six" = -38; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_three" = -30; +"@MMK_R_KO_two" = -10; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -52; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = -75; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = -8; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -51; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = -52; +"@MMK_R_KO_question.ss01" = -44; +"@MMK_R_KO_quotedbl" = -44; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -73; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -62; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = -26; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -100; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = -8; +"@MMK_R_KO_four" = -4; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_hyphen.case" = -100; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = -76; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_quotedbl" = -100; +"@MMK_R_KO_quotedblleft" = -100; +"@MMK_R_KO_quoteright" = -100; +"@MMK_R_KO_seven" = -79; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = 10; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -60; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_a" = -44; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_t" = -6; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = -24; +"@MMK_R_KO_Y" = -75; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -25; +"@MMK_R_KO_onesuperior" = -67; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = -58; +"@MMK_R_KO_question.ss01" = -50; +"@MMK_R_KO_quotedbl" = -44; +"@MMK_R_KO_quotedblleft" = -31; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -31; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -71; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -24; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -45; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -24; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = -59; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_icircumflex" = 9; +"@MMK_R_KO_imacron" = 1; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -49; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = -52; +"@MMK_R_KO_question.ss01" = -45; +"@MMK_R_KO_quotedbl" = -27; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -45; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -24; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eight" = 35; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 20; +"@MMK_R_KO_four" = 15; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_nine" = 11; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = -36; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_three" = 17; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_S" = -23; +"@MMK_R_KO_T" = -63; +"@MMK_R_KO_U" = -28; +"@MMK_R_KO_V" = -72; +"@MMK_R_KO_W" = -61; +"@MMK_R_KO_Y" = -102; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asterisk" = -125; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eight" = -11; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = -24; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -77; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -131; +"@MMK_R_KO_hyphen.case" = -229; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_nine" = -30; +"@MMK_R_KO_one" = -92; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -187; +"@MMK_R_KO_quotedblleft" = -204; +"@MMK_R_KO_quoteright" = -204; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_seven" = -97; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -32; +"@MMK_R_KO_three" = -19; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -57; +"@MMK_R_KO_w" = -37; +"@MMK_R_KO_y" = -68; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = -22; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -16; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_S" = -30; +"@MMK_R_KO_T" = -74; +"@MMK_R_KO_U" = -35; +"@MMK_R_KO_V" = -81; +"@MMK_R_KO_W" = -72; +"@MMK_R_KO_Y" = -111; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asterisk" = -125; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eight" = -20; +"@MMK_R_KO_f" = -45; +"@MMK_R_KO_five" = -30; +"@MMK_R_KO_four" = -31; +"@MMK_R_KO_g" = -28; +"@MMK_R_KO_guillemetleft" = -76; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -58; +"@MMK_R_KO_hyphen.case" = -229; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_j" = -25; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = -36; +"@MMK_R_KO_one" = -102; +"@MMK_R_KO_parenright" = -74; +"@MMK_R_KO_parenright.case" = -42; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_quotedbl" = -187; +"@MMK_R_KO_quotedblleft.ss01" = -210; +"@MMK_R_KO_quoteright.ss01" = -210; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_seven" = -106; +"@MMK_R_KO_six" = -38; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_three" = -28; +"@MMK_R_KO_two" = -17; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = -66; +"@MMK_R_KO_w" = -49; +"@MMK_R_KO_y" = -71; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -25; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_Y" = -78; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_colon" = -56; +"@MMK_R_KO_comma" = -48; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eight" = 7; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = -77; +"@MMK_R_KO_parenright" = -73; +"@MMK_R_KO_period" = -48; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_quotedbl" = -85; +"@MMK_R_KO_quotedblleft" = -134; +"@MMK_R_KO_quotedblleft.ss01" = -95; +"@MMK_R_KO_quoteright" = -100; +"@MMK_R_KO_quoteright.ss01" = -95; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_seven" = -94; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -35; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -12; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -18; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -13; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -44; +"@MMK_R_KO_comma.ss01" = -54; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 35; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -30; +"@MMK_R_KO_period" = -44; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -58; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = -40; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -13; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -26; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = -26; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 9; +"@MMK_R_KO_W" = 10; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -33; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 34; +"@MMK_R_KO_imacron" = 40; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 26; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 6; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_period" = -33; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 4; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 7; +"@MMK_R_KO_s" = -10; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 9; +"@MMK_R_KO_slash" = -42; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -29; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -14; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = -1; +"@MMK_R_KO_comma" = -1; +"@MMK_R_KO_e" = -1; +"@MMK_R_KO_egrave" = -1; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 1; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -1; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = -1; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -9; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_period" = -1; +"@MMK_R_KO_question" = -13; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -10; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_underscore" = -1; +"@MMK_R_KO_v" = -1; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -15; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_Y" = -24; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = -14; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -9; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 19; +"@MMK_R_KO_ellipsis" = -27; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 7; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 9; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = -25; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -17; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -8; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -34; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -31; +"@MMK_R_KO_colon" = -18; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 17; +"@MMK_R_KO_ellipsis" = -22; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 6; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -34; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_parenright.case" = -47; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_quotedbl" = -27; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -35; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -34; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -16; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -28; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = -14; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -26; +"@MMK_R_KO_egrave" = -23; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 9; +"@MMK_R_KO_j" = 20; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_sevensuperior" = -6; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -22; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -38; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asterisk" = -16; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -14; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -28; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -72; +"@MMK_R_KO_parenright.case" = -54; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = -41; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -37; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -23; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_Y" = -79; +"@MMK_R_KO_Z" = -40; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_asterisk" = -86; +"@MMK_R_KO_colon" = -36; +"@MMK_R_KO_comma" = -70; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -77; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -58; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 3; +"@MMK_R_KO_i" = -9; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_n" = -9; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = -39; +"@MMK_R_KO_parenright" = -80; +"@MMK_R_KO_parenright.case" = -74; +"@MMK_R_KO_period" = -69; +"@MMK_R_KO_period.ss01" = -60; +"@MMK_R_KO_quotedbl" = -64; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteright" = -45; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_seven" = -40; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -62; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_three" = -22; +"@MMK_R_KO_two" = -41; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = -31; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -25; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -43; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_Y" = -76; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asterisk" = -125; +"@MMK_R_KO_colon" = -55; +"@MMK_R_KO_comma" = -47; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eight" = 19; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_five" = 3; +"@MMK_R_KO_four" = 8; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -74; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_period" = -46; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_quotedbl" = -159; +"@MMK_R_KO_quotedblleft" = -132; +"@MMK_R_KO_quotedblleft.ss01" = -95; +"@MMK_R_KO_quoteright" = -100; +"@MMK_R_KO_quoteright.ss01" = -95; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = -91; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_three" = 5; +"@MMK_R_KO_two" = -8; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = -21; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = -13; +"@MMK_R_KO_I.ss02" = -46; +"@MMK_R_KO_J" = -43; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -57; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_Y" = -67; +"@MMK_R_KO_Z" = -47; +"@MMK_R_KO_asterisk" = -109; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -4; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -41; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = -14; +"@MMK_R_KO_parenright.case" = -78; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_quotedbl" = -35; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_seven" = -15; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_slash" = -69; +"@MMK_R_KO_three" = -69; +"@MMK_R_KO_two" = -44; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 2; +"@MMK_R_KO_Y" = -10; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -45; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 34; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -19; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -15; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 26; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 29; +"@MMK_R_KO_V" = 15; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_X" = 18; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -12; +"@MMK_R_KO_bracketright" = 22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 30; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 20; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = 26; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 19; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 36; +"@MMK_R_KO_j" = 30; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 29; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_quoteright.ss01" = 26; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 19; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 27; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -1; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -68; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 3; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = -40; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_sevensuperior" = -81; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_trademark" = -56; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 1; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 2; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 35; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -9; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = -16; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -24; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -34; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 17; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -21; +"@MMK_R_KO_question.ss01" = -27; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 44; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 42; +"@MMK_R_KO_eightsuperior" = 87; +"@MMK_R_KO_exclam" = 91; +"@MMK_R_KO_f" = 58; +"@MMK_R_KO_fivesuperior" = 89; +"@MMK_R_KO_foursuperior" = 79; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 61; +"@MMK_R_KO_j" = 56; +"@MMK_R_KO_l.ss04" = 58; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 90; +"@MMK_R_KO_onesuperior" = 34; +"@MMK_R_KO_parenright" = 42; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 80; +"@MMK_R_KO_question.ss01" = 79; +"@MMK_R_KO_quotedbl" = 91; +"@MMK_R_KO_quotedblleft" = 85; +"@MMK_R_KO_quotedblleft.ss01" = 83; +"@MMK_R_KO_quoteleft" = 85; +"@MMK_R_KO_sevensuperior" = 14; +"@MMK_R_KO_sixsuperior" = 89; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = 37; +"@MMK_R_KO_threesuperior" = 54; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_z" = 44; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -69; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -72; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = -65; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -38; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -24; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -71; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -67; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = -23; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = -8; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -64; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = -42; +"@MMK_R_KO_question.ss01" = -45; +"@MMK_R_KO_quotedbl" = -43; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -70; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -28; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_Y" = -41; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -64; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -24; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = -7; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 18; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = -40; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -24; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -52; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -28; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -43; +"@MMK_R_KO_H" = -27; +"@MMK_R_KO_I.ss02" = -20; +"@MMK_R_KO_J" = -44; +"@MMK_R_KO_O" = -59; +"@MMK_R_KO_S" = -49; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = -25; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_Y" = -28; +"@MMK_R_KO_Z" = -27; +"@MMK_R_KO_a" = -69; +"@MMK_R_KO_a.ss05" = -67; +"@MMK_R_KO_asterisk" = -43; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -71; +"@MMK_R_KO_egrave" = -62; +"@MMK_R_KO_eight" = -41; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_f" = -67; +"@MMK_R_KO_five" = -33; +"@MMK_R_KO_four" = -70; +"@MMK_R_KO_g" = -49; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -71; +"@MMK_R_KO_hyphen" = -71; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 15; +"@MMK_R_KO_n" = -62; +"@MMK_R_KO_nine" = -51; +"@MMK_R_KO_one" = -56; +"@MMK_R_KO_parenright" = -6; +"@MMK_R_KO_period" = -54; +"@MMK_R_KO_period.ss01" = -60; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -52; +"@MMK_R_KO_quotedblleft.ss01" = -47; +"@MMK_R_KO_quoteright" = -40; +"@MMK_R_KO_quoteright.ss01" = -32; +"@MMK_R_KO_s" = -70; +"@MMK_R_KO_seven" = -28; +"@MMK_R_KO_six" = -61; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = -64; +"@MMK_R_KO_three" = -53; +"@MMK_R_KO_two" = -41; +"@MMK_R_KO_u" = -65; +"@MMK_R_KO_v" = -70; +"@MMK_R_KO_w" = -70; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -57; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = -20; +"@MMK_R_KO_I.ss02" = -15; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = -54; +"@MMK_R_KO_S" = -42; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = -24; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -18; +"@MMK_R_KO_asterisk" = -42; +"@MMK_R_KO_colon" = -33; +"@MMK_R_KO_comma" = -28; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_eight" = -36; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_five" = -31; +"@MMK_R_KO_four" = -54; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -55; +"@MMK_R_KO_hyphen.case" = -64; +"@MMK_R_KO_nine" = -45; +"@MMK_R_KO_one" = -52; +"@MMK_R_KO_parenright.case" = -6; +"@MMK_R_KO_period" = -32; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -46; +"@MMK_R_KO_quoteright" = -39; +"@MMK_R_KO_quoteright.ss01" = -31; +"@MMK_R_KO_seven" = -24; +"@MMK_R_KO_six" = -56; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_three" = -41; +"@MMK_R_KO_two" = -23; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = -43; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -51; +"@MMK_R_KO_W" = -41; +"@MMK_R_KO_Y" = -86; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -99; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -69; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -46; +"@MMK_R_KO_hyphen.case" = -99; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -12; +"@MMK_R_KO_one" = -77; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -31; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -99; +"@MMK_R_KO_quotedblleft" = -99; +"@MMK_R_KO_quoteright" = -99; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -80; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_v" = -46; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_y" = -62; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -59; +"@MMK_R_KO_U" = -20; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -56; +"@MMK_R_KO_Y" = -93; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asterisk" = -93; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -19; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -93; +"@MMK_R_KO_hyphen.case" = -95; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_nine" = -23; +"@MMK_R_KO_one" = -88; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -29; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -93; +"@MMK_R_KO_quotedblleft.ss01" = -93; +"@MMK_R_KO_quoteright.ss01" = -93; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = -93; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -32; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = -52; +"@MMK_R_KO_w" = -34; +"@MMK_R_KO_y" = -58; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -20; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = -59; +"@MMK_R_KO_S" = -46; +"@MMK_R_KO_T" = -72; +"@MMK_R_KO_U" = -50; +"@MMK_R_KO_V" = -83; +"@MMK_R_KO_W" = -75; +"@MMK_R_KO_Y" = -103; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = -42; +"@MMK_R_KO_a.ss05" = -34; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_eight" = -40; +"@MMK_R_KO_f" = -41; +"@MMK_R_KO_five" = -46; +"@MMK_R_KO_four" = -87; +"@MMK_R_KO_g" = -26; +"@MMK_R_KO_guillemetright" = -95; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_j" = 31; +"@MMK_R_KO_nine" = -52; +"@MMK_R_KO_one" = -81; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_quotedbl" = -85; +"@MMK_R_KO_quotedblleft" = -83; +"@MMK_R_KO_quoteright" = -98; +"@MMK_R_KO_s" = -44; +"@MMK_R_KO_seven" = -83; +"@MMK_R_KO_six" = -59; +"@MMK_R_KO_t" = -52; +"@MMK_R_KO_three" = -50; +"@MMK_R_KO_two" = -17; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -73; +"@MMK_R_KO_w" = -50; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -26; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -42; +"@MMK_R_KO_a.ss05" = -39; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_colon" = -25; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -187; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -63; +"@MMK_R_KO_g" = -42; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -159; +"@MMK_R_KO_hyphen.case" = -21; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = -25; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -39; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_slash" = -100; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = -51; +"@MMK_R_KO_U" = -14; +"@MMK_R_KO_V" = -67; +"@MMK_R_KO_W" = -51; +"@MMK_R_KO_Y" = -93; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -7; +"@MMK_R_KO_asterisk" = -100; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_e" = -25; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -4; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -55; +"@MMK_R_KO_hyphen.case" = -100; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = 22; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_nine" = -17; +"@MMK_R_KO_one" = -84; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_quotedblleft" = -204; +"@MMK_R_KO_quoteright" = -100; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_seven" = -87; +"@MMK_R_KO_six" = -21; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -33; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_v" = -55; +"@MMK_R_KO_w" = -38; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = -20; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -56; +"@MMK_R_KO_Y" = -99; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asterisk" = -95; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -19; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_hyphen.case" = -95; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = 33; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_nine" = -23; +"@MMK_R_KO_one" = -88; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -95; +"@MMK_R_KO_quoteright.ss01" = -95; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = -93; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = -32; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = -52; +"@MMK_R_KO_w" = -34; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -38; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = -24; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asterisk" = -11; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -204; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -43; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -132; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_s" = -20; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -88; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = -25; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -41; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -95; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -9; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -82; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = -10; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -27; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_a.ss05" = -51; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_colon" = -27; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -204; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -69; +"@MMK_R_KO_g" = -47; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = -142; +"@MMK_R_KO_hyphen.case" = -27; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -37; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = 2; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_slash" = -101; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -19; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -38; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = -24; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asterisk" = -11; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -100; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -43; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -100; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_s" = -20; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -88; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -27; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -51; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_colon" = -28; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_e" = -56; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -100; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -69; +"@MMK_R_KO_g" = -44; +"@MMK_R_KO_guillemetleft" = -75; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -100; +"@MMK_R_KO_hyphen.case" = -29; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -37; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = 2; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_slash" = -100; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -19; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -51; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -36; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asterisk" = 3; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -67; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = -95; +"@MMK_R_KO_hyphen.case" = -22; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -28; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -92; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -26; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -39; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_colon" = -25; +"@MMK_R_KO_comma" = -85; +"@MMK_R_KO_comma.ss01" = -85; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -85; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -63; +"@MMK_R_KO_g" = -41; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -85; +"@MMK_R_KO_hyphen.case" = -21; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = -25; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -85; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -39; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_slash" = -85; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -27; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -27; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -37; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = -36; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asciicircum" = -3; +"@MMK_R_KO_bracketright" = -72; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -59; +"@MMK_R_KO_comma.ss01" = -66; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -66; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_period" = -59; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -60; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -65; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = 3; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -51; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -73; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -71; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = -45; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -38; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -22; +"@MMK_R_KO_quoteright" = -25; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -76; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -36; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = -38; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -21; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -54; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 8; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -39; +"@MMK_R_KO_a.ss05" = -47; +"@MMK_R_KO_asterisk" = 4; +"@MMK_R_KO_colon" = -30; +"@MMK_R_KO_comma" = -69; +"@MMK_R_KO_comma.ss01" = -83; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -84; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -60; +"@MMK_R_KO_g" = -37; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -42; +"@MMK_R_KO_hyphen.case" = -24; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -23; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = -69; +"@MMK_R_KO_period.ss01" = -80; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -38; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_slash" = -77; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eight" = 20; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 7; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 3; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = -7; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -9; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -57; +"@MMK_R_KO_H" = 20; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -22; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 23; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -36; +"@MMK_R_KO_a.ss05" = -49; +"@MMK_R_KO_asterisk" = -3; +"@MMK_R_KO_colon" = -39; +"@MMK_R_KO_comma" = -91; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = -53; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -103; +"@MMK_R_KO_f" = -20; +"@MMK_R_KO_five" = 7; +"@MMK_R_KO_four" = -60; +"@MMK_R_KO_g" = -46; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -53; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -31; +"@MMK_R_KO_nine" = -6; +"@MMK_R_KO_one" = -6; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = -91; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = -49; +"@MMK_R_KO_seven" = 31; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_slash" = -107; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_three" = -9; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -24; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -12; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -42; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -27; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -33; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 7; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -9; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -35; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -33; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eight" = 24; +"@MMK_R_KO_ellipsis" = -22; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 6; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_parenright.case" = -43; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = -1; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eight" = 11; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -2; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -34; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 7; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -38; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -27; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = -35; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = -33; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -77; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -48; +"@MMK_R_KO_comma.ss01" = -53; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -62; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_period" = -46; +"@MMK_R_KO_period.ss01" = -52; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -1; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = -33; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_sevensuperior" = -74; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -61; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -51; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -52; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = -8; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -28; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -18; +"@MMK_R_KO_J" = -21; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -42; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_X" = -29; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = -20; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -29; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = -58; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_period" = -29; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_sevensuperior" = -70; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -45; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -33; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = -8; +"@MMK_R_KO_y" = 1; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = -81; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = -22; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -36; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -72; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -20; +"@MMK_R_KO_question.ss01" = -21; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -44; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_sevensuperior" = -83; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -37; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -71; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -69; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -7; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_imacron" = 27; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -4; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -17; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -15; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asterisk" = -5; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = -3; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_parenright.case" = -56; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -2; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -7; +Tbar = -35; +asciitilde = -39; +asterisk = -48; +backslash = -57; +g.ss06 = 0; +minus = -37; +one = -45; +ordmasculine = -51; +plus = -37; +quotedbl = -48; +registered = -40; +seven = -47; +two = 0; +twosuperior = -40; +}; +Aacute = { +Tbar = -35; +}; +Abrevedotbelow.ss01 = { +T = -47; +}; +Aogonek = { +comma = 17; +parenright = 0; +}; +Atilde = { +ordfeminine = -48; +}; +B = { +Hbar = 26; +hbar = 19; +idieresis = 38; +itilde = 32; +}; +C = { +h = 3; +l = 3; +plus = -29; +three = 4; +}; +D = { +Lslash = 5; +Oslash = 4; +braceright = -48; +bracketright.case = -69; +}; +E = { +H = 0; +idieresis = 49; +}; +Eogonek = { +comma = 19; +}; +F = { +fourinferior = -57; +i = 0; +igrave = 25; +}; +G = { +Lslash = 11; +lslash = 14; +}; +Germandbls = { +S = 0; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = 0; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 25; +itilde = 38; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 20; +D = 20; +E = 20; +H = 20; +Hbar = 56; +I = 20; +L = 20; +M = 20; +O = 19; +R = 20; +S = 28; +U = 23; +W = 23; +i = 25; +}; +I = { +Hbar = 21; +I = 0; +jcircumflex = 35; +}; +Icircumflex = { +Icircumflex = 46; +l.ss04 = 23; +}; +Imacron = { +Imacron = 57; +}; +Itilde = { +itilde = 40; +}; +J = { +Hbar = 23; +itilde = 40; +}; +Jacute = { +Imacron = 49; +}; +K = { +asciitilde = -60; +four = -24; +idieresis = 44; +igrave = 19; +itilde = 40; +less = -64; +logicalnot = -47; +minus = -59; +one = -30; +oslash = -26; +plus = -59; +}; +L = { +H = 0; +Tbar = -49; +asciitilde = -97; +asterisk = -82; +backslash = -71; +equal = -36; +four = 0; +less = -96; +logicalnot = -81; +minus = -91; +one = -77; +ordfeminine = -83; +ordmasculine = -83; +oslash = -15; +plus = -87; +quotedbl = -74; +quoteleft.ss01 = -81; +quoteright = -78; +quoteright.ss01 = -79; +registered = -86; +seven = -76; +twosuperior = -83; +}; +Lcaron = { +A = 6; +O = 0; +U = 50; +Uacute = 50; +V = 37; +a = -9; +hyphen = -23; +hyphen.case = -74; +u = -5; +v = -38; +}; +Lcommaaccent = { +twosuperior = -83; +}; +Lslash = { +twosuperior = -52; +}; +M = { +Hbar = 21; +idieresis = 45; +igrave = 25; +itilde = 38; +}; +N = { +Hbar = 21; +idieresis = 45; +igrave = 25; +itilde = 38; +}; +O = { +Dcroat = 13; +Lslash = 11; +braceright = -38; +bracketright.case = -55; +itilde = 24; +}; +Oslash = { +T = -10; +V = -11; +Y = -20; +parenright = -21; +parenright.case = -18; +}; +P = { +fourinferior = -81; +idieresis = 31; +itilde = 25; +two = 0; +}; +R = { +Hbar = 28; +jcircumflex = 18; +two = 7; +}; +S = { +Hbar = 28; +Lslash = 12; +dollar = 5; +four = 4; +idieresis = 38; +itilde = 32; +lslash = 9; +three = 8; +}; +T = { +Oslash = -16; +a.ss05 = -56; +aacute.ss05 = -56; +abreve = -36; +abreveacute = -36; +acircumflex = -25; +acircumflexacute = -34; +acircumflexdotbelow = -25; +adieresis = -18; +adotbelow.ss05 = -56; +ae = -57; +agrave = -35; +amacron = -34; +ampersand = -39; +aring = -52; +asciitilde = -72; +atilde = -20; +equal = -40; +four = -54; +g.ss06 = -55; +h = 0; +i.ss01 = 0; +iacute = -17; +idieresis = 0; +idotless = -28; +igrave = 0; +itilde = 0; +less = -71; +logicalnot = -56; +minus = -66; +ograve = -31; +plus = -66; +racute = -28; +scaron = -22; +seven = 11; +twoinferior = -62; +udieresis = -18; +udieresis.ss01 = -16; +ugrave = -25; +uhorngrave = -25; +umacron = -22; +ycircumflex = -25; +ygrave = -33; +yhookabove = -52; +zcaron = -2; +zeroinferior = -56; +}; +Tbar = { +A = -39; +Aacute = -39; +Tbar = 14; +a = -20; +comma = -46; +e = -20; +o = -20; +period = -46; +slash = -61; +}; +Tcaron = { +a.ss05 = -56; +}; +Tcedilla = { +a.ss05 = -56; +abreve = -36; +four = -54; +}; +Tcommaaccent = { +a.ss05 = -56; +abreve = -36; +four = -54; +}; +Thorn = { +A = -22; +AE = -22; +Aacute = -22; +J = -33; +O = 8; +Oacute = 8; +V = -22; +Y = -59; +Yacute = -59; +a = 4; +aacute = 4; +e = 0; +o = 0; +oacute = 0; +period = -45; +}; +U = { +Hbar = 24; +jcircumflex = 39; +}; +V = { +four = -42; +iacute = -17; +ibreve = 27; +idieresis = 31; +igrave = 12; +itilde = 23; +minus = -39; +plus = -39; +scaron = -17; +seven = 3; +twoinferior = -45; +}; +W = { +Hbar = 24; +backslash = 11; +idieresis = 35; +igrave = 16; +itilde = 28; +}; +X = { +asciitilde = -64; +four = -26; +less = -66; +logicalnot = -52; +minus = -65; +notequal = -33; +one = -28; +plus = -65; +}; +Y = { +a.ss05 = -77; +agrave = -41; +amacron = -43; +ampersand = -72; +asciitilde = -90; +at = -66; +four = -87; +g.ss06 = -74; +igrave = 0; +less = -77; +logicalnot = -67; +minus = -75; +ograve = -41; +plus = -75; +scaron = -30; +twoinferior = -90; +}; +Z = { +four = -2; +ibreve = 39; +igrave = 29; +itilde = 46; +minus = -58; +plus = -58; +}; +_B.currency = { +_baht.bar = -36; +}; +a = { +braceright = -52; +}; +a.ss05 = { +g.ss06 = 4; +}; +acircumflexacute.ss05 = { +y = -29; +}; +adieresis.ss05 = { +germandbls = -23; +}; +ampersand = { +V = -48; +W = -39; +Y = -84; +quotedbl = -80; +quotedblleft = -61; +}; +aogonek = { +j = 17; +parenright = -10; +}; +aogonek.ss05 = { +parenright = -2; +}; +approxequal = { +parenright = -72; +parenright.case = -68; +}; +asciicircum = { +J = -46; +X = -55; +Y = -53; +bracketright = -81; +comma = -100; +comma.ss01 = -95; +four = -63; +hyphen = -166; +parenright = -76; +parenright.case = -74; +period = -99; +period.ss01 = -93; +slash = -93; +}; +asciitilde = { +I.ss02 = -56; +J = -53; +V = -39; +W = -35; +X = -69; +Y = -72; +Z = -81; +bracketright = -85; +bracketright.case = -98; +comma = -100; +comma.ss01 = -95; +eight = -25; +exclam = -18; +four = -34; +one = -21; +parenright = -82; +parenright.case = -79; +period = -99; +period.ss01 = -93; +question = -104; +quotedbl = -33; +quotedblright = -25; +seven = -21; +slash = -82; +three = -85; +two = -54; +}; +at = { +T = -31; +parenright = -73; +}; +b = { +asterisk = -50; +braceright = -56; +lslash = 9; +one = -28; +}; +backslash = { +T = -57; +V = -69; +Y = -95; +asterisk = -101; +backslash = -107; +quotedbl = -100; +quotedblleft = -86; +quotedblleft.ss01 = -78; +quotedblright = -90; +quotedblright.ss01 = -75; +quoteleft = -86; +quoteright = -91; +quotesingle = -85; +}; +baht = { +parenright = -78; +}; +braceleft = { +p = -4; +}; +bracketleft = { +asciicircum = -80; +asciitilde = -85; +bracketright = 0; +jcircumflex = 38; +p = -7; +pi = -74; +plus = -83; +x = -81; +}; +c = { +asterisk = -65; +braceright = -60; +}; +cent = { +parenright = -72; +}; +colon = { +T = -42; +Y = -56; +four = -19; +one = -5; +parenright = -60; +two = 0; +zero = 0; +}; +colon.ss01 = { +T = -51; +four = -24; +parenright = -72; +}; +comma = { +eightsuperior = -100; +fivesuperior = -100; +foursuperior = -100; +ninesuperior = -100; +onesuperior = -100; +quoteleft = -100; +quotesingle = -85; +sevensuperior = -100; +sixsuperior = -100; +threesuperior = -100; +twosuperior = -100; +}; +comma.ss01 = { +eightsuperior = -95; +fivesuperior = -95; +foursuperior = -95; +ninesuperior = -95; +onesuperior = -95; +sevensuperior = -95; +sixsuperior = -95; +threesuperior = -95; +twosuperior = -95; +}; +copyright = { +Y = -84; +parenright = -100; +}; +d = { +idieresis = 35; +igrave = 12; +itilde = 30; +}; +dcaron = { +C = 78; +H = 114; +bracketright = 44; +eightsuperior = 87; +exclam = 91; +exclam.ss01 = 88; +fivesuperior = 89; +foursuperior = 79; +h = 61; +i = 60; +j = 56; +k = 61; +l = 61; +l.ss03 = 61; +l.ss04 = 58; +ninesuperior = 90; +onesuperior = 34; +parenright = 42; +question = 80; +question.ss01 = 79; +quotedbl = 91; +quotedblleft = 85; +quotedblleft.ss01 = 83; +quoteleft = 85; +quoteleft.ss01 = 83; +quotesingle = 91; +sevensuperior = 14; +sixsuperior = 89; +t = 31; +t_i.liga = 37; +t_t.liga = 37; +threesuperior = 54; +twosuperior = 50; +zcaron = 44; +}; +dcroat = { +i = 16; +igrave = 26; +itilde = 33; +}; +degree = { +J = -44; +comma = -100; +comma.ss01 = -95; +emdash = -157; +endash = -157; +four = -75; +hyphen = -155; +parenright = -57; +parenright.case = -55; +period = -99; +period.ss01 = -93; +slash = -98; +}; +divide = { +parenright = -83; +}; +dollar = { +parenright = -65; +three = 0; +}; +e = { +asterisk = -67; +backslash = -52; +braceright = -59; +germandbls = -16; +one = -36; +seven = -36; +}; +ecircumflexacute = { +t = -12; +}; +eight = { +bracketright = -26; +degree = -2; +}; +eight.dnom = { +degree = -121; +question.ss01 = -78; +quotedbl = -116; +quotedblleft = -101; +quotedblright = -94; +}; +eightsuperior = { +comma = -100; +comma.ss01 = -95; +period = -99; +period.ss01 = -93; +slash = -81; +}; +ellipsis = { +Tbar = -63; +bracketright = -78; +eightsuperior = -136; +fivesuperior = -139; +foursuperior = -152; +ninesuperior = -144; +onesuperior = -106; +parenleft = -18; +parenleft.case = -31; +question = -88; +quoteleft = -100; +quoteright = -100; +quotesingle = -85; +sevensuperior = -141; +sixsuperior = -144; +threesuperior = -139; +twosuperior = -134; +}; +ellipsis.ss01 = { +Tbar = -74; +bracketright = -90; +eightsuperior = -136; +fivesuperior = -139; +foursuperior = -152; +ninesuperior = -144; +onesuperior = -106; +question.ss01 = -98; +quoteleft.ss01 = -95; +quoteright.ss01 = -95; +quotesingle = -85; +sevensuperior = -141; +sixsuperior = -144; +threesuperior = -139; +twosuperior = -134; +}; +emdash = { +foursuperior = -117; +question = -89; +}; +emdash.case = { +X = -64; +quotedblbase = -204; +quotedblbase.ss01 = -210; +}; +endash = { +X = -31; +endash = 0; +foursuperior = -117; +question = -89; +}; +endash.case = { +H = -13; +X = -64; +quotedblbase = -204; +quotedblbase.ss01 = -210; +}; +eng = { +bracketright = -17; +}; +eogonek = { +lslash = 9; +}; +equal = { +T = -40; +equal = 0; +parenright = -67; +parenright.case = -58; +}; +eth = { +a = 5; +e = 7; +g = 6; +hyphen = 7; +parenright = -47; +}; +euro = { +parenright = -65; +parenright.case = -58; +}; +exclamdown = { +T = -44; +V = -23; +Y = -60; +}; +f = { +igrave = 16; +n = 0; +o = -4; +}; +f_f.liga = { +igrave = 23; +}; +f_f_i.liga = { +idieresis = 33; +}; +fi = { +idieresis = 32; +}; +five = { +degree = -31; +ordmasculine = -25; +percent = -21; +}; +five.dnom = { +degree = -105; +question.ss01 = -80; +quotedblleft = -88; +}; +five.numr = { +fraction = -11; +}; +fiveinferior = { +T = -52; +}; +fivesuperior = { +comma = -100; +comma.ss01 = -95; +period = -99; +period.ss01 = -93; +slash = -80; +}; +fl = { +idieresis = 35; +itilde = 30; +periodcentered.loclCAT = 8; +}; +four = { +asciicircum = -47; +bracketright = -47; +bracketright.case = -54; +degree = -44; +ordfeminine = -37; +ordmasculine = -40; +percent = -34; +x = -22; +}; +four.dnom = { +degree = -110; +question.ss01 = -80; +quotedblleft = -91; +}; +fourinferior = { +T = -54; +V = -57; +}; +foursuperior = { +comma = -100; +comma.ss01 = -95; +period = -99; +period.ss01 = -93; +slash = -83; +}; +fraction = { +eight.dnom = -12; +four.dnom = -47; +fourinferior = -59; +seveninferior = 2; +two.dnom = -10; +zero.dnom = -16; +}; +g = { +bracketright = -21; +j = 10; +j.ss01 = 10; +parenright = -40; +slash = -2; +}; +g.ss06 = { +g.ss06 = 5; +}; +gcaron.ss06 = { +gcaron.ss06 = 5; +}; +gdotaccent = { +j = 12; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 5; +}; +germandbls = { +e = 0; +hyphen = 4; +parenright = -69; +}; +greater = { +T = -53; +parenright = -73; +}; +greaterequal = { +T = -37; +}; +guillemetleft = { +pi = -9; +}; +guillemetright = { +X = -55; +bracketright = -80; +}; +guilsinglright = { +X = -55; +}; +h = { +asterisk = -47; +}; +hyphen = { +Lslash = 11; +X = -27; +bracketright = -71; +foursuperior = -116; +pi = -23; +question = -86; +quotedblbase = -51; +quoteleft = -100; +quotesingle = -85; +x = -38; +}; +hyphen.case = { +Dcroat = -2; +X = -60; +bracketright.case = -98; +quotedblbase = -176; +quotedblbase.ss01 = -176; +quotesinglbase = -100; +}; +i = { +T = -4; +idieresis = 36; +jcircumflex = 22; +parenright = -34; +}; +i.ss01 = { +parenright = -36; +}; +iacute = { +rcaron = 18; +}; +icircumflex = { +b = 24; +h = 24; +i = 23; +icircumflex = 34; +j = 22; +k = 24; +l = 24; +l.ss03 = 26; +l.ss04 = 29; +question = 0; +quotedbl = 27; +quoteright = 21; +quotesingle = 27; +}; +idieresis = { +b = 36; +idieresis = 43; +k = 36; +l = 36; +l.ss03 = 37; +l.ss04 = 32; +}; +idotaccent = { +parenright = -34; +}; +idotaccent.ss01 = { +parenright = -36; +}; +imacron = { +b = 35; +imacron = 39; +j = 32; +k = 35; +kcommaaccent = 35; +l = 35; +l.ss04 = 31; +lcommaaccent = 35; +quotedbl = 30; +}; +infinity = { +parenright = -74; +parenright.case = -69; +}; +integral = { +a = -54; +}; +iogonek = { +j = 20; +}; +itilde = { +h = 27; +itilde = 35; +quotedbl = 25; +quotesingle = 25; +}; +j = { +j = 23; +}; +jacute = { +backslash = 15; +iogonek = 23; +}; +jcircumflex = { +i = 23; +jcircumflex = 63; +}; +k = { +oslash = -22; +}; +l = { +at = 0; +idieresis = 35; +igrave = 12; +itilde = 30; +jcircumflex = 24; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = -11; +periodcentered.loclCAT.ss01 = -23; +}; +l.ss04 = { +periodcentered.loclCAT = 8; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 88; +l = 166; +ncaron = 33; +scaron = 43; +twosuperior = 50; +}; +lcaron.ss03 = { +b = 62; +eightsuperior = 60; +exclam = 87; +exclam.ss01 = 81; +fivesuperior = 62; +k = 62; +ninesuperior = 63; +onesuperior = 11; +question = 53; +quotedbl = 64; +quotesingle = 64; +sevensuperior = 0; +sixsuperior = 62; +}; +lcaron.ss04 = { +exclam.ss01 = 88; +twosuperior = 50; +}; +liraTurkish = { +one = -91; +parenright = -82; +question = -94; +quotedbl = -140; +quotesingle = -85; +seven = -109; +}; +logicalnot = { +Y = -70; +parenright = -65; +seven = -79; +}; +m = { +asterisk = -49; +braceright = -52; +twosuperior = -16; +}; +minus = { +T = -63; +X = -67; +comma = -100; +one = -82; +parenright = -83; +parenright.case = -78; +period = -99; +seven = -92; +three = -98; +two = -64; +}; +mu = { +mu = 0; +parenright = -61; +quotesingle = -24; +}; +multiply = { +parenright = -81; +parenright.case = -76; +}; +n = { +asterisk = -47; +at = -1; +braceright = -52; +degree = -40; +g.ss06 = 0; +n = 0; +one = -25; +ordmasculine = -27; +}; +ncaron = { +Yacute = -36; +}; +nine = { +bracketright = -40; +degree = -12; +}; +nine.dnom = { +degree = -127; +question = -76; +question.ss01 = -80; +quotedbl = -117; +quotedblleft = -108; +quotedblleft.ss01 = -61; +quotedblright = -95; +quotedblright.ss01 = -73; +}; +ninesuperior = { +comma = -100; +comma.ss01 = -95; +fraction = -23; +period = -99; +period.ss01 = -93; +slash = -86; +}; +notequal = { +parenright = -67; +parenright.case = -58; +}; +numbersign = { +parenright = -65; +}; +o = { +asterisk = -72; +backslash = -53; +braceright = -59; +germandbls = -17; +lslash = 10; +n = 0; +one = -36; +}; +oacute = { +lslash = 11; +}; +ocircumflexacute = { +bracketright = 0; +parenright = 0; +}; +odieresis = { +germandbls = -17; +}; +ohorn = { +i = 11; +m = 5; +n = 5; +parenright = -41; +}; +ohornacute = { +c = -2; +i = 11; +m = 5; +n = 5; +p = 5; +t = 11; +t_i.liga = 18; +t_t.liga = 18; +}; +ohorndotbelow = { +c = -2; +i = 11; +n = 5; +p = 5; +t = 11; +t_i.liga = 18; +t_t.liga = 18; +u = 9; +}; +ohorngrave = { +i = 11; +n = 5; +parenright = -40; +}; +ohornhookabove = { +i = 11; +n = 5; +}; +ohorntilde = { +i = 11; +n = 5; +}; +ohungarumlaut = { +parenright = 0; +}; +one = { +comma.ss01 = -10; +degree = -6; +equal = 0; +four = 0; +icircumflex = 31; +nine = 0; +one = 0; +parenright = -27; +percent = 0; +period.ss01 = -7; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -97; +one.dnom = 0; +question.ss01 = -85; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -100; +comma.ss01 = -95; +period = -99; +period.ss01 = -93; +slash = -77; +}; +ordfeminine = { +comma = -100; +comma.ss01 = -95; +period = -99; +period.ss01 = -93; +}; +ordmasculine = { +comma = -100; +comma.ss01 = -95; +hyphen = -132; +parenright = -48; +period = -99; +period.ss01 = -93; +slash = -90; +}; +oslash = { +d = 5; +e = 7; +g = 6; +hyphen = 7; +parenright = -71; +y = -22; +}; +p = { +asterisk = -51; +backslash = -47; +braceright = -56; +lslash = 9; +one = -28; +}; +parenleft = { +Dcroat = -34; +H = 0; +Icircumflex = 0; +Oslash = -43; +ampersand = -73; +approxequal = -74; +asciicircum = -77; +asciitilde = -85; +at = -73; +cent = -72; +copyright = -87; +degree = -55; +divide = -82; +dollar = -63; +equal = -67; +euro = -74; +greaterequal = -39; +i = -34; +idotaccent = -34; +infinity = -74; +iogonek = -27; +jcircumflex = 26; +less = -86; +literSign = -73; +logicalnot = -75; +minus = -82; +mu = -26; +multiply = -83; +notequal = -67; +numbersign = -65; +oslash = -70; +p = -15; +parenleft = -68; +pi = -67; +plus = -82; +plusminus = -59; +published = -87; +question = -56; +quotedblbase = -25; +quoteleft = -52; +radical = -71; +scaron = -38; +section = -65; +sterling = -61; +x = -56; +}; +parenleft.case = { +Icircumflex = 0; +approxequal = -69; +asciicircum = -75; +asciitilde = -79; +dollar = -55; +equal = -59; +euro = -69; +minus = -78; +numbersign = -57; +parenleft.case = -61; +plus = -78; +question = -53; +quotedblbase = -34; +quoteleft = -50; +}; +parenright = { +bracketright = -45; +comma = -10; +comma.ss01 = -15; +hyphen = 5; +parenleft = 6; +parenright = -68; +period = -10; +period.ss01 = -12; +quotedbl = -17; +}; +parenright.case = { +comma = -21; +comma.ss01 = -26; +parenright.case = -61; +period = -21; +period.ss01 = -21; +}; +percent = { +asterisk = -115; +bracketright = -73; +comma.ss01 = -11; +eightsuperior = -83; +fivesuperior = -85; +foursuperior = -126; +ninesuperior = -85; +onesuperior = -92; +parenright = -66; +parenright.case = -42; +period = 0; +period.ss01 = -9; +question = -84; +question.ss01 = -85; +quotedbl = -97; +quotedblleft = -106; +quotedblright = -93; +quoteleft = -100; +quoteright = -93; +quotesingle = -85; +sevensuperior = -91; +sixsuperior = -90; +threesuperior = -85; +twosuperior = -41; +}; +period = { +bracketright = -58; +eightsuperior = -99; +fivesuperior = -99; +foursuperior = -99; +ninesuperior = -99; +onesuperior = -99; +ordfeminine = -99; +ordmasculine = -99; +parenleft.case = -21; +question = -76; +quoteleft = -99; +quotesingle = -85; +sevensuperior = -99; +sixsuperior = -99; +threesuperior = -99; +twosuperior = -99; +}; +period.ss01 = { +bracketright = -78; +eightsuperior = -93; +fivesuperior = -93; +foursuperior = -93; +ninesuperior = -93; +onesuperior = -93; +ordfeminine = -93; +ordmasculine = -93; +question.ss01 = -85; +sevensuperior = -93; +sixsuperior = -93; +threesuperior = -93; +twosuperior = -93; +}; +periodcentered.loclCAT = { +l = 8; +l.ss03 = 10; +}; +perthousand = { +asterisk = -125; +parenright = -66; +parenright.case = -44; +question = -84; +question.ss01 = -86; +quotedblleft = -117; +quotedblleft.ss01 = -161; +quotedblright = -112; +quotedblright.ss01 = -174; +quoteleft = -100; +quoteright = -100; +}; +pi = { +hyphen = -25; +parenright = -56; +period = 0; +pi = 6; +quotesingle = -18; +}; +plus = { +J = -48; +T = -63; +V = -39; +X = -67; +Y = -75; +braceright = -76; +bracketright = -83; +comma = -100; +comma.ss01 = -95; +one = -52; +parenright = -83; +parenright.case = -78; +period = -99; +period.ss01 = -93; +quotedbl = -49; +seven = -79; +slash = -65; +three = -80; +two = -64; +}; +published = { +parenright = -100; +}; +q = { +bracketright = -6; +j = 29; +parenright = -15; +}; +question = { +A = -49; +J = -35; +comma = -79; +hyphen = -46; +parenright = -52; +parenright.case = -51; +period = -79; +question = -4; +questiondown = -82; +slash = -85; +}; +question.ss01 = { +comma.ss01 = -88; +parenright = -52; +parenright.case = -51; +period.ss01 = -85; +questiondown.ss01 = -84; +}; +questiondown.case = { +T = -55; +V = -54; +Y = -86; +quotedbl = -78; +quotedblleft = -84; +quotedblleft.ss01 = -81; +quoteright = -78; +}; +questiondown.ss01 = { +C = -58; +Q = -61; +Q.ss09 = -61; +T = -78; +V = -84; +Y = -104; +four = -90; +quotedbl = -99; +quotedblleft.ss01 = -86; +quotesingle = -85; +}; +quotedbl = { +ellipsis.ss01 = -187; +exclamdown = -42; +g.ss06 = -44; +icircumflex = 28; +mu = -24; +questiondown = -103; +questiondown.case = -76; +questiondown.ss01 = -99; +underscore = -187; +}; +quotedblbase = { +copyright = -70; +divide = -113; +equal = -56; +euro = -57; +minus = -204; +p = 0; +plus = -123; +question = -81; +quotedblright = -204; +quoteleft = -100; +}; +quotedblbase.ss01 = { +divide = -112; +minus = -210; +plus = -128; +question.ss01 = -85; +quotedblright.ss01 = -210; +}; +quotedblleft = { +g.ss06 = -25; +mu = -13; +questiondown = -84; +questiondown.case = -81; +quotedblbase = -204; +underscore = -191; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -210; +questiondown.ss01 = -89; +quotedblbase.ss01 = -210; +underscore = -191; +}; +quotedblright = { +asciitilde = -70; +questiondown = -104; +questiondown.case = -78; +quotesinglbase = -100; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -210; +questiondown.case = -79; +questiondown.ss01 = -97; +}; +quoteleft = { +questiondown = -84; +questiondown.case = -81; +quotedblbase = -100; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -95; +}; +quoteright = { +icircumflex = 23; +questiondown = -100; +quotedblbase = -100; +}; +quoteright.ss01 = { +questiondown.ss01 = -95; +quotedblbase.ss01 = -95; +}; +quotesinglbase = { +T = -51; +V = -67; +Y = -93; +minus = -100; +plus = -100; +question = -81; +quotedblleft = -100; +quoteleft = -100; +}; +quotesinglbase.ss01 = { +T = -59; +V = -68; +Y = -95; +question.ss01 = -85; +}; +quotesingle = { +Hbar = 30; +g.ss06 = -44; +icircumflex = 28; +igrave = 21; +imacron = 30; +itilde = 28; +l.ss04 = 24; +questiondown = -85; +questiondown.case = -76; +underscore = -85; +}; +r = { +braceright = -51; +fourinferior = -63; +g.ss06 = -7; +parenright = -69; +}; +radical = { +A = -64; +}; +rcaron = { +sevensuperior = 0; +}; +registered = { +comma = -100; +comma.ss01 = -95; +parenright = -67; +parenright.case = -65; +period = -99; +period.ss01 = -93; +slash = -78; +}; +s = { +asterisk = -53; +braceright = -51; +l = 0; +}; +scaron = { +T = -18; +}; +semicolon = { +hyphen = -58; +}; +seven = { +minus = -46; +percent = 0; +plus = -46; +underscore = -60; +}; +seven.dnom = { +question.ss01 = -90; +}; +seven.numr = { +fraction = -35; +}; +seveninferior = { +parenright = -75; +}; +sevensuperior = { +A = -69; +comma = -100; +comma.ss01 = -95; +fraction = -42; +period = -99; +period.ss01 = -93; +slash = -113; +}; +six = { +bracketright = -38; +degree = -16; +}; +six.dnom = { +degree = -124; +question.ss01 = -79; +quotedbl = -116; +quotedblleft = -102; +quotedblleft.ss01 = -53; +quotedblright = -94; +}; +sixinferior = { +T = -51; +}; +sixsuperior = { +comma = -100; +comma.ss01 = -95; +period = -99; +period.ss01 = -93; +slash = -81; +}; +slash = { +fourinferior = -92; +g.ss06 = -55; +ibreve = 11; +l.ss04 = 24; +mu = -31; +quotedblbase = -100; +quotedblbase.ss01 = -99; +quotesinglbase = -100; +underscore = -104; +}; +sterling = { +two = 2; +}; +t_i.liga = { +idieresis = 32; +}; +tcaron = { +b = 63; +exclam = 80; +h = 63; +hyphen = -33; +i = 60; +j = 58; +k = 63; +parenright = 30; +quotedbl = 69; +quotedblleft = 83; +quotesingle = 69; +}; +tcedilla = { +parenright = 0; +}; +tenge = { +comma = -67; +comma.ss01 = -74; +period = -67; +period.ss01 = -71; +slash = -72; +}; +three = { +bracketright = -34; +}; +three.dnom = { +degree = -124; +question.ss01 = -78; +quotedbl = -115; +quotedblleft = -101; +quotedblright = -93; +}; +three.numr = { +fraction = -12; +}; +threeinferior = { +T = -51; +V = -44; +Y = -90; +}; +threesuperior = { +comma = -100; +comma.ss01 = -95; +fraction = -16; +parenright = -36; +period = -99; +period.ss01 = -93; +slash = -82; +}; +trademark = { +comma = -100; +comma.ss01 = -95; +hyphen = -166; +period = -99; +period.ss01 = -93; +slash = -94; +}; +two = { +percent = 0; +}; +two.dnom = { +degree = -120; +question.ss01 = -80; +quotedbl = -115; +quotedblleft = -99; +quotedblright = -93; +}; +twoinferior = { +T = -55; +V = -46; +Y = -90; +}; +twosuperior = { +comma = -100; +comma.ss01 = -95; +parenright = -34; +parenright.case = -33; +period = -99; +period.ss01 = -93; +slash = -72; +}; +uhorn = { +a = -27; +ohorn = -31; +ohornacute = -31; +ohorndotbelow = -31; +ohorndotbelow.ss01 = -31; +ohorngrave = -31; +ohornhookabove = -31; +ohorntilde = -29; +}; +uhornacute = { +a = -27; +c = -31; +}; +uhorndotbelow = { +a = -27; +c = -31; +comma = -34; +period = -34; +}; +uhorngrave = { +a = -27; +a.ss05 = -31; +}; +uhornhookabove = { +a = -27; +comma = -34; +comma.ss01 = -44; +period = -34; +period.ss01 = -41; +}; +uhorntilde = { +a = -27; +comma = -34; +period = -34; +}; +uhungarumlaut = { +parenright = 0; +}; +underscore = { +C = -42; +O = -45; +T = -35; +V = -51; +W = -40; +Y = -80; +asterisk = -125; +four = -136; +one = -68; +quotedbl = -187; +quotedblright = -191; +quotedblright.ss01 = -191; +quotesingle = -85; +seven = -72; +six = -44; +v = -52; +}; +uogonek = { +j = 17; +parenright = -10; +}; +v = { +braceright = -61; +n = 0; +}; +w = { +braceright = -57; +}; +x = { +four = -29; +}; +y = { +braceright = -61; +}; +ydotbelow = { +period = -37; +}; +zero = { +braceright = -43; +bracketright = -52; +bracketright.case = -60; +degree = -15; +percent = 0; +}; +zero.dnom = { +degree = -128; +question = -76; +question.ss01 = -80; +quotedbl = -118; +quotedblleft = -108; +quotedblleft.ss01 = -63; +quotedblright = -96; +quotedblright.ss01 = -74; +quoteleft = -100; +}; +zeroinferior = { +parenright = -64; +}; +zerosuperior = { +comma = -100; +comma.ss01 = -95; +fraction = -23; +period = -99; +period.ss01 = -93; +slash = -86; +}; +}; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 50; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = -32; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -119; +"@MMK_R_KO_U" = -28; +"@MMK_R_KO_V" = -122; +"@MMK_R_KO_W" = -71; +"@MMK_R_KO_X" = 40; +"@MMK_R_KO_Y" = -131; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -147; +"@MMK_R_KO_bracketright" = -55; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 37; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -87; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_fivesuperior" = -96; +"@MMK_R_KO_foursuperior" = -87; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_hyphen.case" = -45; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -119; +"@MMK_R_KO_onesuperior" = -99; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 36; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -78; +"@MMK_R_KO_question.ss01" = -102; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -111; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -99; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -119; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_sixsuperior" = -91; +"@MMK_R_KO_slash" = 29; +"@MMK_R_KO_t" = -35; +"@MMK_R_KO_threesuperior" = -88; +"@MMK_R_KO_trademark" = -160; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -59; +"@MMK_R_KO_w" = -40; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = -62; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = -19; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -15; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = -39; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -17; +"@MMK_R_KO_comma.ss01" = -48; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -54; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = 29; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 50; +"@MMK_R_KO_imacron" = 54; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -38; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period" = -12; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -41; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -23; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -54; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -38; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -32; +"@MMK_R_KO_J" = -26; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 24; +"@MMK_R_KO_T" = -30; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -31; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -26; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -38; +"@MMK_R_KO_bracketright" = -68; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -32; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = -35; +"@MMK_R_KO_ellipsis" = -70; +"@MMK_R_KO_exclam" = -18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -36; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -38; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 26; +"@MMK_R_KO_j" = -25; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -60; +"@MMK_R_KO_onesuperior" = -52; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_parenright.case" = -58; +"@MMK_R_KO_period" = -33; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -37; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -38; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = -58; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = -35; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -41; +"@MMK_R_KO_trademark" = -59; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -72; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -54; +"@MMK_R_KO_J" = -48; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = -49; +"@MMK_R_KO_Y" = -43; +"@MMK_R_KO_Z" = -45; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -47; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -91; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = 12; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_hyphen.case" = 34; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -81; +"@MMK_R_KO_parenright.case" = -77; +"@MMK_R_KO_period" = -44; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -57; +"@MMK_R_KO_quoteleft" = -37; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -32; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -35; +"@MMK_R_KO_six" = 22; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -65; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_underscore" = -61; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = -47; +"@MMK_R_KO_J" = -41; +"@MMK_R_KO_O" = 35; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -41; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = -42; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = -38; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -36; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -86; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = 23; +"@MMK_R_KO_hyphen" = 34; +"@MMK_R_KO_hyphen.case" = 45; +"@MMK_R_KO_i" = 18; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_n" = 18; +"@MMK_R_KO_ninesuperior" = -25; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -74; +"@MMK_R_KO_parenright.case" = -70; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -50; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -16; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 22; +"@MMK_R_KO_y" = 22; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 55; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -27; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = -42; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asciicircum" = -87; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_egrave" = -43; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -55; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -64; +"@MMK_R_KO_g" = -29; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = -22; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -43; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -48; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -55; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -16; +"@MMK_R_KO_u" = -46; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -42; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -76; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = -103; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = 19; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 24; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 21; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -40; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asciicircum" = -79; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -87; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -40; +"@MMK_R_KO_egrave" = -38; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -271; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -45; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -72; +"@MMK_R_KO_g" = -36; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -69; +"@MMK_R_KO_hyphen" = -24; +"@MMK_R_KO_hyphen.case" = 16; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -21; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_n" = -48; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = 3; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = -38; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -87; +"@MMK_R_KO_t" = -50; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = -42; +"@MMK_R_KO_underscore" = -205; +"@MMK_R_KO_v" = -44; +"@MMK_R_KO_w" = -37; +"@MMK_R_KO_x" = -80; +"@MMK_R_KO_y" = -47; +"@MMK_R_KO_z" = -153; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = -48; +"@MMK_R_KO_J" = -42; +"@MMK_R_KO_O" = 20; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -42; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -43; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = -39; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -59; +"@MMK_R_KO_bracketright" = -50; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -37; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -87; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 44; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -77; +"@MMK_R_KO_parenright.case" = -72; +"@MMK_R_KO_period" = -37; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -54; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -29; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -72; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -72; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -67; +"@MMK_R_KO_bracketright" = -58; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 13; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 33; +"@MMK_R_KO_imacron" = 36; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -50; +"@MMK_R_KO_onesuperior" = -43; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = 18; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -55; +"@MMK_R_KO_quoteleft" = -38; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -34; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -37; +"@MMK_R_KO_trademark" = -80; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -12; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -65; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 58; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_ninesuperior" = -36; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -37; +"@MMK_R_KO_quoteleft" = -28; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 42; +"@MMK_R_KO_O" = -56; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = 25; +"@MMK_R_KO_Y" = 17; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -38; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asciicircum" = -95; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_egrave" = -42; +"@MMK_R_KO_eightsuperior" = -42; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = -16; +"@MMK_R_KO_f" = -41; +"@MMK_R_KO_fivesuperior" = -44; +"@MMK_R_KO_foursuperior" = -96; +"@MMK_R_KO_g" = -40; +"@MMK_R_KO_guillemetleft" = -83; +"@MMK_R_KO_guillemetright" = -56; +"@MMK_R_KO_hyphen" = -104; +"@MMK_R_KO_hyphen.case" = -104; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -37; +"@MMK_R_KO_ninesuperior" = -71; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = -31; +"@MMK_R_KO_question.ss01" = -59; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -73; +"@MMK_R_KO_quoteleft" = -48; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -39; +"@MMK_R_KO_s" = -49; +"@MMK_R_KO_sevensuperior" = -23; +"@MMK_R_KO_six" = -39; +"@MMK_R_KO_sixsuperior" = -48; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = -63; +"@MMK_R_KO_threesuperior" = -45; +"@MMK_R_KO_trademark" = -16; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_underscore" = -15; +"@MMK_R_KO_v" = -107; +"@MMK_R_KO_w" = -87; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = -111; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_X" = -16; +"@MMK_R_KO_Y" = 7; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -62; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -20; +"@MMK_R_KO_comma.ss01" = -51; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 6; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 36; +"@MMK_R_KO_imacron" = 54; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -24; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -23; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 36; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = -49; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 30; +"@MMK_R_KO_W" = 53; +"@MMK_R_KO_X" = 45; +"@MMK_R_KO_Y" = 25; +"@MMK_R_KO_Z" = 39; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -96; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 27; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eightsuperior" = -25; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = -68; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -59; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_hyphen.case" = -97; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 20; +"@MMK_R_KO_imacron" = 43; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -49; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 10; +"@MMK_R_KO_period" = 26; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -10; +"@MMK_R_KO_question.ss01" = -32; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -44; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_t" = -39; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = -28; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -56; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = -63; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 15; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = -68; +"@MMK_R_KO_S" = -42; +"@MMK_R_KO_T" = -117; +"@MMK_R_KO_U" = -63; +"@MMK_R_KO_V" = -131; +"@MMK_R_KO_W" = -82; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = -126; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = -54; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asciicircum" = -247; +"@MMK_R_KO_bracketright" = -67; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_egrave" = -58; +"@MMK_R_KO_eightsuperior" = -205; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -54; +"@MMK_R_KO_fivesuperior" = -201; +"@MMK_R_KO_foursuperior" = -171; +"@MMK_R_KO_g" = -29; +"@MMK_R_KO_guillemetleft" = -87; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_hyphen" = -170; +"@MMK_R_KO_hyphen.case" = -190; +"@MMK_R_KO_i" = -15; +"@MMK_R_KO_icircumflex" = -15; +"@MMK_R_KO_imacron" = -15; +"@MMK_R_KO_j" = -21; +"@MMK_R_KO_l.ss04" = -22; +"@MMK_R_KO_n" = -15; +"@MMK_R_KO_ninesuperior" = -208; +"@MMK_R_KO_onesuperior" = -99; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -78; +"@MMK_R_KO_question.ss01" = -106; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -125; +"@MMK_R_KO_quotedblleft.ss01" = -151; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -125; +"@MMK_R_KO_quoteright.ss01" = -151; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_sevensuperior" = -153; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_sixsuperior" = -208; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = -66; +"@MMK_R_KO_threesuperior" = -196; +"@MMK_R_KO_trademark" = -246; +"@MMK_R_KO_u" = -52; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -91; +"@MMK_R_KO_w" = -74; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = -96; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -65; +"@MMK_R_KO_S" = -43; +"@MMK_R_KO_T" = -121; +"@MMK_R_KO_U" = -52; +"@MMK_R_KO_V" = -137; +"@MMK_R_KO_W" = -89; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -135; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -58; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_bracketright" = -71; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -60; +"@MMK_R_KO_eightsuperior" = -141; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = -148; +"@MMK_R_KO_foursuperior" = -141; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = -44; +"@MMK_R_KO_hyphen" = -114; +"@MMK_R_KO_hyphen.case" = -92; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_ninesuperior" = -174; +"@MMK_R_KO_onesuperior" = -99; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_parenright.case" = -29; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -82; +"@MMK_R_KO_question.ss01" = -115; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -125; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -99; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_sevensuperior" = -153; +"@MMK_R_KO_sixsuperior" = -154; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_threesuperior" = -133; +"@MMK_R_KO_u" = -57; +"@MMK_R_KO_y" = -99; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -56; +"@MMK_R_KO_J" = -51; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -51; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = -47; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -51; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -93; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = 13; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_hyphen.case" = 35; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_icircumflex" = 36; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 8; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -83; +"@MMK_R_KO_parenright.case" = -77; +"@MMK_R_KO_period" = -48; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -57; +"@MMK_R_KO_quoteleft" = -38; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -36; +"@MMK_R_KO_six" = 23; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -67; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -64; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -58; +"@MMK_R_KO_H" = -27; +"@MMK_R_KO_I.ss02" = -81; +"@MMK_R_KO_J" = -75; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = -75; +"@MMK_R_KO_U" = -21; +"@MMK_R_KO_V" = -53; +"@MMK_R_KO_W" = -36; +"@MMK_R_KO_X" = -77; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_Z" = -73; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_bracketright" = -80; +"@MMK_R_KO_colon" = -24; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = -119; +"@MMK_R_KO_exclam" = -20; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -34; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_hyphen" = -8; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_j" = -25; +"@MMK_R_KO_l.ss04" = -25; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_ninesuperior" = -59; +"@MMK_R_KO_onesuperior" = -53; +"@MMK_R_KO_parenright" = -112; +"@MMK_R_KO_parenright.case" = -104; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -54; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_sevensuperior" = -63; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = -51; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -31; +"@MMK_R_KO_trademark" = -93; +"@MMK_R_KO_u" = -19; +"@MMK_R_KO_underscore" = -88; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = -28; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -27; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = -25; +"@MMK_R_KO_I.ss02" = -52; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = -21; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_X" = -66; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = -24; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_ellipsis" = -119; +"@MMK_R_KO_exclam" = -20; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_hyphen" = -8; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -57; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -34; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -52; +"@MMK_R_KO_slash" = -51; +"@MMK_R_KO_t" = -13; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -75; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -105; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = -48; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = -34; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -271; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 18; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -38; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 37; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 32; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = 17; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = -72; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -32; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -205; +"@MMK_R_KO_v" = 25; +"@MMK_R_KO_w" = 33; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 20; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 38; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = 32; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -59; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 37; +"@MMK_R_KO_Y" = -55; +"@MMK_R_KO_Z" = 30; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 9; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 36; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -66; +"@MMK_R_KO_quoteleft" = -47; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -37; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -76; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -31; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 42; +"@MMK_R_KO_imacron" = 57; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = 13; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -15; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 25; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = -13; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -65; +"@MMK_R_KO_bracketright" = -39; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = 27; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_icircumflex" = 53; +"@MMK_R_KO_imacron" = 46; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -42; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -46; +"@MMK_R_KO_question" = 5; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -32; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_trademark" = -65; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_I.ss02" = -35; +"@MMK_R_KO_J" = -30; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = -25; +"@MMK_R_KO_V" = -42; +"@MMK_R_KO_W" = -32; +"@MMK_R_KO_X" = -43; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = -36; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_bracketright" = -68; +"@MMK_R_KO_colon" = -27; +"@MMK_R_KO_comma" = -36; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -52; +"@MMK_R_KO_ellipsis" = -72; +"@MMK_R_KO_exclam" = -27; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_fivesuperior" = -47; +"@MMK_R_KO_foursuperior" = -51; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_hyphen.case" = -34; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_icircumflex" = 16; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = -28; +"@MMK_R_KO_l.ss04" = -20; +"@MMK_R_KO_n" = -22; +"@MMK_R_KO_ninesuperior" = -69; +"@MMK_R_KO_onesuperior" = -56; +"@MMK_R_KO_parenright" = -83; +"@MMK_R_KO_parenright.case" = -69; +"@MMK_R_KO_period" = -35; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -36; +"@MMK_R_KO_quotedbl" = -34; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -66; +"@MMK_R_KO_quoteleft" = -54; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -44; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_sixsuperior" = -41; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = -61; +"@MMK_R_KO_u" = -20; +"@MMK_R_KO_v" = -27; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = -29; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -119; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = -100; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = 20; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 16; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -129; +"@MMK_R_KO_a.ss05" = -57; +"@MMK_R_KO_asciicircum" = -87; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -85; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -128; +"@MMK_R_KO_egrave" = -79; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -159; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -58; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -71; +"@MMK_R_KO_g" = -126; +"@MMK_R_KO_guillemetleft" = -108; +"@MMK_R_KO_guillemetright" = -128; +"@MMK_R_KO_hyphen" = -115; +"@MMK_R_KO_hyphen.case" = -115; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -35; +"@MMK_R_KO_j" = -29; +"@MMK_R_KO_l.ss04" = 19; +"@MMK_R_KO_n" = -143; +"@MMK_R_KO_ninesuperior" = -41; +"@MMK_R_KO_onesuperior" = 3; +"@MMK_R_KO_parenright" = -23; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteleft" = -22; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = -127; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -35; +"@MMK_R_KO_sixsuperior" = -27; +"@MMK_R_KO_slash" = -108; +"@MMK_R_KO_t" = -55; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -10; +"@MMK_R_KO_u" = -120; +"@MMK_R_KO_underscore" = -126; +"@MMK_R_KO_v" = -125; +"@MMK_R_KO_w" = -120; +"@MMK_R_KO_x" = -123; +"@MMK_R_KO_y" = -126; +"@MMK_R_KO_z" = -124; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -38; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = 9; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = -26; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -38; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -82; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_imacron" = 53; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = -38; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -33; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -22; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -51; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -55; +"@MMK_R_KO_H" = -29; +"@MMK_R_KO_I.ss02" = -26; +"@MMK_R_KO_J" = -63; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = -23; +"@MMK_R_KO_T" = -22; +"@MMK_R_KO_U" = -23; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = -47; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -33; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_bracketright" = -26; +"@MMK_R_KO_colon" = -33; +"@MMK_R_KO_comma" = -66; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -26; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eightsuperior" = -30; +"@MMK_R_KO_ellipsis" = -100; +"@MMK_R_KO_exclam" = -25; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_fivesuperior" = -36; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -18; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_j" = -32; +"@MMK_R_KO_l.ss04" = -8; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_ninesuperior" = -57; +"@MMK_R_KO_onesuperior" = -24; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -21; +"@MMK_R_KO_question.ss01" = -33; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -58; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -30; +"@MMK_R_KO_s" = -31; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_sixsuperior" = -30; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = -32; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_x" = -30; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = -33; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -55; +"@MMK_R_KO_H" = -14; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = 25; +"@MMK_R_KO_X" = -11; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_bracketright" = 14; +"@MMK_R_KO_colon" = -33; +"@MMK_R_KO_comma" = -66; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -26; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -100; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 6; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -13; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_u" = -30; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -122; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = -101; +"@MMK_R_KO_O" = -27; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = 16; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 60; +"@MMK_R_KO_W" = 60; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = 50; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -60; +"@MMK_R_KO_a.ss05" = -47; +"@MMK_R_KO_asciicircum" = -67; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -62; +"@MMK_R_KO_egrave" = -56; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -172; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = -57; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -40; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 35; +"@MMK_R_KO_imacron" = 56; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 37; +"@MMK_R_KO_n" = -44; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 16; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 25; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 20; +"@MMK_R_KO_quoteright.ss01" = 16; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_sevensuperior" = 2; +"@MMK_R_KO_six" = -22; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -120; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -32; +"@MMK_R_KO_underscore" = -140; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -24; +"@MMK_R_KO_x" = -33; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = -49; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -71; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = -82; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 39; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 60; +"@MMK_R_KO_W" = 60; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = 53; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -34; +"@MMK_R_KO_asciicircum" = -58; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -115; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -30; +"@MMK_R_KO_hyphen" = -38; +"@MMK_R_KO_hyphen.case" = -18; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 68; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 50; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 28; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 33; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 25; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -28; +"@MMK_R_KO_sevensuperior" = 4; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -65; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 3; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_underscore" = -90; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 40; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 25; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -18; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_X" = 39; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -122; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = -41; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_fivesuperior" = -44; +"@MMK_R_KO_foursuperior" = -78; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = -52; +"@MMK_R_KO_hyphen.case" = -99; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 31; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -64; +"@MMK_R_KO_onesuperior" = -21; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 23; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -31; +"@MMK_R_KO_question.ss01" = -44; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -62; +"@MMK_R_KO_quoteleft" = -47; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -35; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_sevensuperior" = -22; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = -43; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = -41; +"@MMK_R_KO_threesuperior" = -44; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -70; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = -72; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -131; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = -103; +"@MMK_R_KO_O" = -46; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = 16; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 49; +"@MMK_R_KO_W" = 53; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 47; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -107; +"@MMK_R_KO_a.ss05" = -71; +"@MMK_R_KO_asciicircum" = -82; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -48; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -111; +"@MMK_R_KO_egrave" = -72; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -173; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -39; +"@MMK_R_KO_g" = -102; +"@MMK_R_KO_guillemetleft" = -105; +"@MMK_R_KO_guillemetright" = -67; +"@MMK_R_KO_hyphen" = -123; +"@MMK_R_KO_hyphen.case" = -84; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 11; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = -20; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = -70; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = 16; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -92; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -38; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -121; +"@MMK_R_KO_t" = -36; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -65; +"@MMK_R_KO_underscore" = -137; +"@MMK_R_KO_v" = -55; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_x" = -61; +"@MMK_R_KO_y" = -54; +"@MMK_R_KO_z" = -63; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = -53; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 35; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asciicircum" = -90; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -44; +"@MMK_R_KO_eightsuperior" = -42; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -61; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -74; +"@MMK_R_KO_g" = -30; +"@MMK_R_KO_guillemetleft" = -66; +"@MMK_R_KO_guillemetright" = -57; +"@MMK_R_KO_hyphen" = -144; +"@MMK_R_KO_hyphen.case" = -101; +"@MMK_R_KO_i" = -13; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 41; +"@MMK_R_KO_j" = -19; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -45; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = -34; +"@MMK_R_KO_s" = -32; +"@MMK_R_KO_sevensuperior" = -22; +"@MMK_R_KO_six" = -32; +"@MMK_R_KO_sixsuperior" = -42; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -41; +"@MMK_R_KO_threesuperior" = -42; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = -47; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -71; +"@MMK_R_KO_w" = -64; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = -68; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -143; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -44; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -69; +"@MMK_R_KO_bracketright" = -66; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -62; +"@MMK_R_KO_onesuperior" = -51; +"@MMK_R_KO_parenright" = -75; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -48; +"@MMK_R_KO_quotedbl" = -27; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -53; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -53; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_trademark" = -85; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -124; +"@MMK_R_KO_U" = -21; +"@MMK_R_KO_V" = -73; +"@MMK_R_KO_W" = -51; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -114; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -96; +"@MMK_R_KO_bracketright" = -55; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -42; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = -59; +"@MMK_R_KO_foursuperior" = -50; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -78; +"@MMK_R_KO_onesuperior" = -77; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = -44; +"@MMK_R_KO_question.ss01" = -86; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -74; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -62; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -88; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = -50; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = -46; +"@MMK_R_KO_trademark" = -120; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_x" = 23; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = -84; +"@MMK_R_KO_U" = -18; +"@MMK_R_KO_V" = -51; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -55; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -40; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = -53; +"@MMK_R_KO_foursuperior" = -50; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 7; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -75; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = -44; +"@MMK_R_KO_question.ss01" = -64; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -67; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -52; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -49; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = -46; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_x" = 23; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_T" = -127; +"@MMK_R_KO_a" = -24; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_t" = -43; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -147; +"@MMK_R_KO_H" = -65; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_T" = -87; +"@MMK_R_KO_a" = -84; +"@MMK_R_KO_e" = -87; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_i" = -61; +"@MMK_R_KO_n" = -68; +"@MMK_R_KO_t" = -37; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -133; +"@MMK_R_KO_H" = -78; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_T" = -201; +"@MMK_R_KO_a" = -73; +"@MMK_R_KO_e" = -73; +"@MMK_R_KO_f" = -70; +"@MMK_R_KO_i" = -77; +"@MMK_R_KO_n" = -79; +"@MMK_R_KO_t" = -70; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -88; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -94; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_Y" = 9; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -44; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_asterisk" = 55; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -41; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -131; +"@MMK_R_KO_hyphen.case" = -57; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = 28; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_quoteright.ss01" = 25; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = 42; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -89; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 5; +"@MMK_R_KO_two" = 32; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -55; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -50; +"@MMK_R_KO_O" = -54; +"@MMK_R_KO_S" = -35; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -60; +"@MMK_R_KO_a.ss05" = -62; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -53; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -59; +"@MMK_R_KO_eight" = -38; +"@MMK_R_KO_ellipsis" = -77; +"@MMK_R_KO_f" = -49; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -53; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -91; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 38; +"@MMK_R_KO_n" = -66; +"@MMK_R_KO_nine" = -61; +"@MMK_R_KO_one" = -50; +"@MMK_R_KO_period" = -60; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -63; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -52; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -44; +"@MMK_R_KO_three" = -33; +"@MMK_R_KO_two" = -21; +"@MMK_R_KO_u" = -68; +"@MMK_R_KO_v" = -60; +"@MMK_R_KO_w" = -56; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = -56; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -54; +"@MMK_R_KO_S" = -27; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = -32; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -54; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -55; +"@MMK_R_KO_hyphen.case" = -69; +"@MMK_R_KO_nine" = -57; +"@MMK_R_KO_one" = -51; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_slash" = 36; +"@MMK_R_KO_three" = -28; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -34; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -126; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -55; +"@MMK_R_KO_W" = -31; +"@MMK_R_KO_X" = -20; +"@MMK_R_KO_Y" = -95; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -70; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -53; +"@MMK_R_KO_exclam" = -6; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -58; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -83; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -50; +"@MMK_R_KO_question" = -26; +"@MMK_R_KO_question.ss01" = -74; +"@MMK_R_KO_quotedbl" = -43; +"@MMK_R_KO_quotedblleft" = -58; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -83; +"@MMK_R_KO_quoteright" = -47; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -58; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -93; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -8; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -71; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -71; +"@MMK_R_KO_hyphen.case" = -71; +"@MMK_R_KO_nine" = -37; +"@MMK_R_KO_one" = -64; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = 4; +"@MMK_R_KO_quotedbl" = -71; +"@MMK_R_KO_quotedblleft" = -71; +"@MMK_R_KO_quoteright" = -71; +"@MMK_R_KO_seven" = -71; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_three" = -4; +"@MMK_R_KO_two" = 41; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -142; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_O" = -36; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_a" = -93; +"@MMK_R_KO_e" = -97; +"@MMK_R_KO_f" = -34; +"@MMK_R_KO_i" = -31; +"@MMK_R_KO_n" = -72; +"@MMK_R_KO_t" = -34; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -32; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -123; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -56; +"@MMK_R_KO_W" = -32; +"@MMK_R_KO_X" = -28; +"@MMK_R_KO_Y" = -100; +"@MMK_R_KO_Z" = -18; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -81; +"@MMK_R_KO_bracketright" = -60; +"@MMK_R_KO_colon" = -24; +"@MMK_R_KO_comma" = -22; +"@MMK_R_KO_comma.ss01" = -55; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = -33; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_hyphen" = 35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -63; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -89; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -55; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -87; +"@MMK_R_KO_quotedbl" = -48; +"@MMK_R_KO_quotedblleft" = -68; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -56; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -71; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -32; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -100; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -51; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -19; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = -19; +"@MMK_R_KO_I.ss02" = -53; +"@MMK_R_KO_J" = -55; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = -109; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -75; +"@MMK_R_KO_W" = -52; +"@MMK_R_KO_X" = -43; +"@MMK_R_KO_Y" = -88; +"@MMK_R_KO_Z" = -41; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_bracketright" = -80; +"@MMK_R_KO_colon" = -40; +"@MMK_R_KO_comma" = -38; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -42; +"@MMK_R_KO_ellipsis" = -76; +"@MMK_R_KO_exclam" = -23; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_fivesuperior" = -54; +"@MMK_R_KO_foursuperior" = -55; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_guillemetright" = -52; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_icircumflex" = -16; +"@MMK_R_KO_imacron" = -16; +"@MMK_R_KO_j" = -23; +"@MMK_R_KO_l.ss04" = -23; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_ninesuperior" = -76; +"@MMK_R_KO_onesuperior" = -70; +"@MMK_R_KO_parenright" = -107; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -54; +"@MMK_R_KO_question.ss01" = -88; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -81; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -71; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -10; +"@MMK_R_KO_sevensuperior" = -81; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = -50; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = -34; +"@MMK_R_KO_threesuperior" = -40; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_underscore" = -66; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -19; +"@MMK_R_KO_x" = -39; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -6; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -46; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eight" = 20; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 10; +"@MMK_R_KO_four" = 26; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = 25; +"@MMK_R_KO_hyphen.case" = -13; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -12; +"@MMK_R_KO_one" = 2; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -44; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_period.ss01" = -49; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -42; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 23; +"@MMK_R_KO_two" = 3; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = -28; +"@MMK_R_KO_H" = -63; +"@MMK_R_KO_I.ss02" = -35; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = -119; +"@MMK_R_KO_S" = -80; +"@MMK_R_KO_T" = -186; +"@MMK_R_KO_U" = -100; +"@MMK_R_KO_V" = -198; +"@MMK_R_KO_W" = -148; +"@MMK_R_KO_Y" = -199; +"@MMK_R_KO_Z" = -29; +"@MMK_R_KO_a" = -86; +"@MMK_R_KO_a.ss05" = -67; +"@MMK_R_KO_asterisk" = -131; +"@MMK_R_KO_colon" = -20; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_e" = -87; +"@MMK_R_KO_egrave" = -88; +"@MMK_R_KO_eight" = -76; +"@MMK_R_KO_ellipsis" = -46; +"@MMK_R_KO_f" = -85; +"@MMK_R_KO_five" = -81; +"@MMK_R_KO_four" = -214; +"@MMK_R_KO_g" = -77; +"@MMK_R_KO_guillemetleft" = -108; +"@MMK_R_KO_guillemetright" = -84; +"@MMK_R_KO_hyphen" = -190; +"@MMK_R_KO_hyphen.case" = -237; +"@MMK_R_KO_i" = -62; +"@MMK_R_KO_j" = -66; +"@MMK_R_KO_n" = -62; +"@MMK_R_KO_nine" = -96; +"@MMK_R_KO_one" = -124; +"@MMK_R_KO_parenright" = -96; +"@MMK_R_KO_parenright.case" = -44; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_quotedbl" = -163; +"@MMK_R_KO_quotedblleft" = -125; +"@MMK_R_KO_quoteright" = -125; +"@MMK_R_KO_s" = -70; +"@MMK_R_KO_seven" = -141; +"@MMK_R_KO_six" = -91; +"@MMK_R_KO_slash" = -28; +"@MMK_R_KO_t" = -89; +"@MMK_R_KO_three" = -71; +"@MMK_R_KO_two" = -34; +"@MMK_R_KO_u" = -85; +"@MMK_R_KO_v" = -138; +"@MMK_R_KO_w" = -103; +"@MMK_R_KO_y" = -148; +"@MMK_R_KO_z" = -31; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = -67; +"@MMK_R_KO_I.ss02" = -39; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = -117; +"@MMK_R_KO_S" = -79; +"@MMK_R_KO_T" = -190; +"@MMK_R_KO_U" = -99; +"@MMK_R_KO_V" = -201; +"@MMK_R_KO_W" = -151; +"@MMK_R_KO_Y" = -203; +"@MMK_R_KO_Z" = -32; +"@MMK_R_KO_a" = -85; +"@MMK_R_KO_a.ss05" = -65; +"@MMK_R_KO_asterisk" = -131; +"@MMK_R_KO_comma.ss01" = -51; +"@MMK_R_KO_e" = -88; +"@MMK_R_KO_egrave" = -88; +"@MMK_R_KO_eight" = -74; +"@MMK_R_KO_f" = -85; +"@MMK_R_KO_five" = -79; +"@MMK_R_KO_four" = -214; +"@MMK_R_KO_g" = -80; +"@MMK_R_KO_guillemetleft" = -108; +"@MMK_R_KO_guillemetright" = -86; +"@MMK_R_KO_hyphen" = -195; +"@MMK_R_KO_hyphen.case" = -237; +"@MMK_R_KO_i" = -62; +"@MMK_R_KO_j" = -66; +"@MMK_R_KO_n" = -62; +"@MMK_R_KO_nine" = -95; +"@MMK_R_KO_one" = -128; +"@MMK_R_KO_parenright" = -97; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period.ss01" = -48; +"@MMK_R_KO_quotedbl" = -163; +"@MMK_R_KO_quotedblleft.ss01" = -151; +"@MMK_R_KO_quoteright.ss01" = -151; +"@MMK_R_KO_s" = -69; +"@MMK_R_KO_seven" = -145; +"@MMK_R_KO_six" = -91; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = -94; +"@MMK_R_KO_three" = -69; +"@MMK_R_KO_two" = -36; +"@MMK_R_KO_u" = -85; +"@MMK_R_KO_v" = -140; +"@MMK_R_KO_w" = -106; +"@MMK_R_KO_y" = -151; +"@MMK_R_KO_z" = -34; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -19; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -83; +"@MMK_R_KO_J" = -98; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -115; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -69; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_Y" = -121; +"@MMK_R_KO_Z" = -54; +"@MMK_R_KO_a" = 25; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_colon" = -85; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 27; +"@MMK_R_KO_egrave" = 27; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 37; +"@MMK_R_KO_g" = 29; +"@MMK_R_KO_guillemetleft" = 20; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -34; +"@MMK_R_KO_one" = -65; +"@MMK_R_KO_parenright" = -103; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -125; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright" = -99; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_seven" = -94; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = -33; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -42; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -60; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -59; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -39; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -54; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -80; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -41; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -37; +"@MMK_R_KO_quoteleft" = -20; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -48; +"@MMK_R_KO_t" = -1; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -57; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -42; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = -53; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 19; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 30; +"@MMK_R_KO_W" = 37; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -49; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -77; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -45; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = 10; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -47; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = 16; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -42; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -52; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -73; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -46; +"@MMK_R_KO_onesuperior" = -10; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = -4; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eight" = 29; +"@MMK_R_KO_ellipsis" = -53; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = 18; +"@MMK_R_KO_four" = 43; +"@MMK_R_KO_g" = 22; +"@MMK_R_KO_guillemetleft" = 21; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = 43; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_i" = 16; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 10; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = -21; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -70; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -35; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_three" = 26; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -13; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = -53; +"@MMK_R_KO_J" = -49; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 39; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_Z" = -28; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -41; +"@MMK_R_KO_colon" = -56; +"@MMK_R_KO_comma" = -48; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 32; +"@MMK_R_KO_ellipsis" = -81; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_five" = 32; +"@MMK_R_KO_four" = 15; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_hyphen.case" = -33; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -9; +"@MMK_R_KO_one" = -51; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_parenright.case" = -61; +"@MMK_R_KO_period" = -50; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = -55; +"@MMK_R_KO_quotedblleft" = -53; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright" = -53; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_seven" = -50; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_three" = 46; +"@MMK_R_KO_two" = -4; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = -38; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 12; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -81; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asciicircum" = -54; +"@MMK_R_KO_bracketright" = 12; +"@MMK_R_KO_colon" = 37; +"@MMK_R_KO_comma" = 44; +"@MMK_R_KO_comma.ss01" = 3; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 12; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 41; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 20; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 57; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -73; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_underscore" = 11; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -108; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -41; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -37; +"@MMK_R_KO_f" = 38; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -79; +"@MMK_R_KO_parenright.case" = -43; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -44; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = 37; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 19; +"@MMK_R_KO_w" = 36; +"@MMK_R_KO_y" = 21; +"@MMK_R_KO_z" = 19; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -59; +"@MMK_R_KO_J" = -57; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -127; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_Y" = -104; +"@MMK_R_KO_Z" = -54; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asterisk" = -47; +"@MMK_R_KO_colon" = -40; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eight" = 2; +"@MMK_R_KO_ellipsis" = -97; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_five" = -3; +"@MMK_R_KO_four" = 5; +"@MMK_R_KO_g" = 20; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = -56; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -29; +"@MMK_R_KO_one" = -61; +"@MMK_R_KO_parenright" = -101; +"@MMK_R_KO_parenright.case" = -77; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = -58; +"@MMK_R_KO_quotedblleft" = -71; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright" = -60; +"@MMK_R_KO_quoteright.ss01" = -71; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = -54; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -35; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -81; +"@MMK_R_KO_J" = -97; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -115; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_Y" = -121; +"@MMK_R_KO_Z" = -45; +"@MMK_R_KO_a" = 25; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asterisk" = -131; +"@MMK_R_KO_colon" = -85; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 27; +"@MMK_R_KO_egrave" = 27; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_f" = -30; +"@MMK_R_KO_five" = 6; +"@MMK_R_KO_four" = 37; +"@MMK_R_KO_g" = 29; +"@MMK_R_KO_guillemetleft" = 20; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_hyphen" = 30; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -62; +"@MMK_R_KO_parenright" = -103; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = -163; +"@MMK_R_KO_quotedblleft" = -125; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright" = -99; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = -94; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -29; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -23; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -49; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -72; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_I.ss02" = -104; +"@MMK_R_KO_J" = -125; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = -43; +"@MMK_R_KO_T" = -145; +"@MMK_R_KO_U" = -18; +"@MMK_R_KO_V" = -66; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_Y" = -108; +"@MMK_R_KO_Z" = -118; +"@MMK_R_KO_asterisk" = -70; +"@MMK_R_KO_colon" = -44; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_eight" = -26; +"@MMK_R_KO_five" = -14; +"@MMK_R_KO_four" = -28; +"@MMK_R_KO_guillemetleft" = -8; +"@MMK_R_KO_guillemetright" = -60; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_nine" = -34; +"@MMK_R_KO_one" = -88; +"@MMK_R_KO_parenright.case" = -118; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -95; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright" = -94; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_seven" = -86; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -73; +"@MMK_R_KO_three" = -66; +"@MMK_R_KO_two" = -57; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -22; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -66; +"@MMK_R_KO_bracketright" = -40; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 10; +"@MMK_R_KO_imacron" = 10; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -58; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = -75; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -43; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -69; +"@MMK_R_KO_quoteleft" = -48; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -40; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -51; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 18; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 23; +"@MMK_R_KO_U" = 26; +"@MMK_R_KO_V" = 43; +"@MMK_R_KO_W" = 50; +"@MMK_R_KO_X" = 23; +"@MMK_R_KO_Y" = 29; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = 19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_icircumflex" = 14; +"@MMK_R_KO_imacron" = 10; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = 7; +"@MMK_R_KO_parenright" = 11; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 7; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 34; +"@MMK_R_KO_quotedblleft" = 13; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 26; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 14; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 28; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 5; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -125; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = -59; +"@MMK_R_KO_colon" = 29; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -40; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -67; +"@MMK_R_KO_onesuperior" = -60; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 26; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -25; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -58; +"@MMK_R_KO_quoteleft" = -37; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = -81; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = 19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -40; +"@MMK_R_KO_trademark" = -85; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 19; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 25; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -37; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 10; +"@MMK_R_KO_imacron" = 10; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -22; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -41; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = -20; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -84; +"@MMK_R_KO_bracketright" = -17; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -30; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = -36; +"@MMK_R_KO_foursuperior" = -34; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -58; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_question.ss01" = -35; +"@MMK_R_KO_quotedbl" = -28; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -64; +"@MMK_R_KO_quoteleft" = -53; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -36; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -31; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_threesuperior" = -35; +"@MMK_R_KO_trademark" = -56; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = 28; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 44; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 82; +"@MMK_R_KO_exclam" = 101; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = 89; +"@MMK_R_KO_foursuperior" = 50; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 32; +"@MMK_R_KO_j" = 15; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 14; +"@MMK_R_KO_ninesuperior" = 54; +"@MMK_R_KO_onesuperior" = 95; +"@MMK_R_KO_parenright" = 64; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 113; +"@MMK_R_KO_question.ss01" = 76; +"@MMK_R_KO_quotedbl" = 127; +"@MMK_R_KO_quotedblleft" = 110; +"@MMK_R_KO_quotedblleft.ss01" = 60; +"@MMK_R_KO_quoteleft" = 80; +"@MMK_R_KO_sevensuperior" = 97; +"@MMK_R_KO_sixsuperior" = 77; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = 72; +"@MMK_R_KO_u" = 18; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = -17; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_T" = -147; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_f" = -46; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_t" = -47; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -137; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -37; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -109; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -85; +"@MMK_R_KO_bracketright" = -61; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = -28; +"@MMK_R_KO_ellipsis" = -31; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_fivesuperior" = -40; +"@MMK_R_KO_foursuperior" = -38; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_ninesuperior" = -69; +"@MMK_R_KO_onesuperior" = -62; +"@MMK_R_KO_parenright" = -72; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = -35; +"@MMK_R_KO_question.ss01" = -79; +"@MMK_R_KO_quotedbl" = -46; +"@MMK_R_KO_quotedblleft" = -66; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -54; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -76; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -25; +"@MMK_R_KO_trademark" = -102; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -37; +"@MMK_R_KO_J" = -39; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -129; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -61; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = -28; +"@MMK_R_KO_Y" = -106; +"@MMK_R_KO_Z" = -21; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -85; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = -28; +"@MMK_R_KO_comma" = -29; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = -28; +"@MMK_R_KO_ellipsis" = -67; +"@MMK_R_KO_exclam" = -6; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = -38; +"@MMK_R_KO_foursuperior" = -40; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 16; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_hyphen" = 27; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_ninesuperior" = -67; +"@MMK_R_KO_onesuperior" = -60; +"@MMK_R_KO_parenright" = -91; +"@MMK_R_KO_period" = -27; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -40; +"@MMK_R_KO_question.ss01" = -85; +"@MMK_R_KO_quotedbl" = -49; +"@MMK_R_KO_quotedblleft" = -71; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -74; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -103; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -41; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -24; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = -26; +"@MMK_R_KO_I.ss02" = -68; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = -119; +"@MMK_R_KO_V" = -79; +"@MMK_R_KO_W" = -54; +"@MMK_R_KO_Y" = -100; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_bracketright" = -86; +"@MMK_R_KO_colon" = -56; +"@MMK_R_KO_comma" = -48; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = -53; +"@MMK_R_KO_ellipsis" = -88; +"@MMK_R_KO_exclam" = -34; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_fivesuperior" = -65; +"@MMK_R_KO_foursuperior" = -68; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -59; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_i" = -24; +"@MMK_R_KO_icircumflex" = -24; +"@MMK_R_KO_imacron" = -23; +"@MMK_R_KO_j" = -31; +"@MMK_R_KO_l.ss04" = -29; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_ninesuperior" = -84; +"@MMK_R_KO_onesuperior" = -83; +"@MMK_R_KO_parenright" = -125; +"@MMK_R_KO_period" = -49; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -68; +"@MMK_R_KO_question.ss01" = -94; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -91; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -77; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_sevensuperior" = -84; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_sixsuperior" = -63; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = -36; +"@MMK_R_KO_threesuperior" = -55; +"@MMK_R_KO_trademark" = -137; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_underscore" = -74; +"@MMK_R_KO_v" = -37; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = -45; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = -50; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 37; +"@MMK_R_KO_J" = -25; +"@MMK_R_KO_O" = -57; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = -64; +"@MMK_R_KO_a.ss05" = -50; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = 13; +"@MMK_R_KO_e" = -64; +"@MMK_R_KO_egrave" = -63; +"@MMK_R_KO_eight" = -31; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_f" = -45; +"@MMK_R_KO_five" = -6; +"@MMK_R_KO_four" = -55; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = -79; +"@MMK_R_KO_hyphen" = -76; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 75; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = -45; +"@MMK_R_KO_one" = -21; +"@MMK_R_KO_parenright" = 28; +"@MMK_R_KO_period" = -32; +"@MMK_R_KO_period.ss01" = -46; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 6; +"@MMK_R_KO_s" = -53; +"@MMK_R_KO_seven" = 41; +"@MMK_R_KO_six" = -46; +"@MMK_R_KO_slash" = 31; +"@MMK_R_KO_t" = -45; +"@MMK_R_KO_three" = -28; +"@MMK_R_KO_two" = -18; +"@MMK_R_KO_u" = -60; +"@MMK_R_KO_v" = -51; +"@MMK_R_KO_w" = -50; +"@MMK_R_KO_y" = 18; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 25; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -50; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_Y" = 13; +"@MMK_R_KO_Z" = 51; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 27; +"@MMK_R_KO_comma.ss01" = 4; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = -6; +"@MMK_R_KO_four" = -32; +"@MMK_R_KO_guillemetleft" = -51; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen.case" = -64; +"@MMK_R_KO_nine" = -41; +"@MMK_R_KO_one" = -17; +"@MMK_R_KO_parenright.case" = 30; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 23; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_seven" = 44; +"@MMK_R_KO_six" = -36; +"@MMK_R_KO_slash" = 72; +"@MMK_R_KO_three" = -18; +"@MMK_R_KO_two" = 27; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 36; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -48; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = -65; +"@MMK_R_KO_U" = -38; +"@MMK_R_KO_V" = -65; +"@MMK_R_KO_W" = -65; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = 45; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -65; +"@MMK_R_KO_colon" = 33; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_eight" = -8; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = -17; +"@MMK_R_KO_four" = -65; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -40; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_hyphen.case" = -65; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -38; +"@MMK_R_KO_one" = -65; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -65; +"@MMK_R_KO_quotedblleft" = -65; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -65; +"@MMK_R_KO_six" = -31; +"@MMK_R_KO_slash" = 52; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 43; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_v" = -65; +"@MMK_R_KO_w" = -54; +"@MMK_R_KO_y" = -65; +"@MMK_R_KO_z" = 43; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -38; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = -62; +"@MMK_R_KO_S" = -54; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = -62; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -62; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -37; +"@MMK_R_KO_asterisk" = -62; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -62; +"@MMK_R_KO_eight" = -45; +"@MMK_R_KO_f" = -62; +"@MMK_R_KO_five" = -50; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -58; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -57; +"@MMK_R_KO_hyphen" = -62; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -32; +"@MMK_R_KO_j" = -39; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_nine" = -61; +"@MMK_R_KO_one" = -61; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_quotedbl" = -62; +"@MMK_R_KO_quotedblleft.ss01" = -62; +"@MMK_R_KO_quoteright.ss01" = -62; +"@MMK_R_KO_s" = -41; +"@MMK_R_KO_seven" = -61; +"@MMK_R_KO_six" = -61; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -62; +"@MMK_R_KO_three" = -41; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -62; +"@MMK_R_KO_v" = -62; +"@MMK_R_KO_w" = -62; +"@MMK_R_KO_y" = -62; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -71; +"@MMK_R_KO_S" = -37; +"@MMK_R_KO_T" = -130; +"@MMK_R_KO_U" = -59; +"@MMK_R_KO_V" = -129; +"@MMK_R_KO_W" = -91; +"@MMK_R_KO_Y" = -140; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -40; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_e" = -44; +"@MMK_R_KO_eight" = -24; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -37; +"@MMK_R_KO_four" = -99; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetright" = -52; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = 27; +"@MMK_R_KO_nine" = -50; +"@MMK_R_KO_one" = -70; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -110; +"@MMK_R_KO_quoteright" = -99; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_seven" = -87; +"@MMK_R_KO_six" = -43; +"@MMK_R_KO_t" = -47; +"@MMK_R_KO_three" = -35; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -83; +"@MMK_R_KO_w" = -65; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -134; +"@MMK_R_KO_H" = -30; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -136; +"@MMK_R_KO_O" = -36; +"@MMK_R_KO_S" = -23; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = -24; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -36; +"@MMK_R_KO_a" = -82; +"@MMK_R_KO_a.ss05" = -67; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -27; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -86; +"@MMK_R_KO_egrave" = -80; +"@MMK_R_KO_eight" = -31; +"@MMK_R_KO_ellipsis" = -163; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = -31; +"@MMK_R_KO_four" = -115; +"@MMK_R_KO_g" = -79; +"@MMK_R_KO_guillemetleft" = -88; +"@MMK_R_KO_guillemetright" = -57; +"@MMK_R_KO_hyphen" = -163; +"@MMK_R_KO_hyphen.case" = -71; +"@MMK_R_KO_i" = -32; +"@MMK_R_KO_j" = -40; +"@MMK_R_KO_n" = -55; +"@MMK_R_KO_nine" = -37; +"@MMK_R_KO_one" = -6; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_parenright.case" = -34; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -47; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = -65; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -35; +"@MMK_R_KO_slash" = -136; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_three" = -29; +"@MMK_R_KO_two" = -17; +"@MMK_R_KO_u" = -52; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -24; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -36; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = -10; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -81; +"@MMK_R_KO_S" = -29; +"@MMK_R_KO_T" = -125; +"@MMK_R_KO_U" = -54; +"@MMK_R_KO_V" = -125; +"@MMK_R_KO_W" = -89; +"@MMK_R_KO_Y" = -125; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = -40; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asterisk" = -89; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 30; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_egrave" = -42; +"@MMK_R_KO_eight" = -43; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_f" = -44; +"@MMK_R_KO_five" = -29; +"@MMK_R_KO_four" = -89; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -89; +"@MMK_R_KO_guillemetright" = -69; +"@MMK_R_KO_hyphen" = -89; +"@MMK_R_KO_hyphen.case" = -89; +"@MMK_R_KO_i" = -10; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -10; +"@MMK_R_KO_nine" = -68; +"@MMK_R_KO_one" = -89; +"@MMK_R_KO_period" = 34; +"@MMK_R_KO_quotedblleft" = -125; +"@MMK_R_KO_quoteright" = -89; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_seven" = -89; +"@MMK_R_KO_six" = -60; +"@MMK_R_KO_slash" = 54; +"@MMK_R_KO_t" = -52; +"@MMK_R_KO_three" = -21; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = -40; +"@MMK_R_KO_v" = -89; +"@MMK_R_KO_w" = -89; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 23; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = -62; +"@MMK_R_KO_I.ss02" = -39; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = -81; +"@MMK_R_KO_S" = -75; +"@MMK_R_KO_T" = -151; +"@MMK_R_KO_U" = -81; +"@MMK_R_KO_V" = -151; +"@MMK_R_KO_W" = -81; +"@MMK_R_KO_Y" = -151; +"@MMK_R_KO_Z" = -31; +"@MMK_R_KO_a" = -81; +"@MMK_R_KO_a.ss05" = -63; +"@MMK_R_KO_asterisk" = -81; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = -81; +"@MMK_R_KO_egrave" = -81; +"@MMK_R_KO_eight" = -71; +"@MMK_R_KO_f" = -81; +"@MMK_R_KO_five" = -76; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -55; +"@MMK_R_KO_guillemetleft" = -81; +"@MMK_R_KO_guillemetright" = -75; +"@MMK_R_KO_hyphen" = -81; +"@MMK_R_KO_hyphen.case" = -81; +"@MMK_R_KO_i" = -62; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_n" = -62; +"@MMK_R_KO_nine" = -81; +"@MMK_R_KO_one" = -81; +"@MMK_R_KO_period.ss01" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -67; +"@MMK_R_KO_seven" = -81; +"@MMK_R_KO_six" = -81; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -81; +"@MMK_R_KO_three" = -67; +"@MMK_R_KO_two" = -31; +"@MMK_R_KO_u" = -81; +"@MMK_R_KO_v" = -81; +"@MMK_R_KO_w" = -81; +"@MMK_R_KO_y" = -69; +"@MMK_R_KO_z" = -33; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -112; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -103; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_Y" = 25; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -69; +"@MMK_R_KO_a.ss05" = -44; +"@MMK_R_KO_asterisk" = 23; +"@MMK_R_KO_colon" = -13; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_e" = -74; +"@MMK_R_KO_egrave" = -66; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = -125; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -98; +"@MMK_R_KO_g" = -66; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_hyphen" = -125; +"@MMK_R_KO_hyphen.case" = -82; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_nine" = -10; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_quotedbl" = 19; +"@MMK_R_KO_quotedblleft" = 12; +"@MMK_R_KO_quoteright" = 16; +"@MMK_R_KO_s" = -50; +"@MMK_R_KO_seven" = 35; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_slash" = -112; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -81; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 25; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = -81; +"@MMK_R_KO_a.ss05" = -81; +"@MMK_R_KO_asterisk" = 19; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -81; +"@MMK_R_KO_egrave" = -81; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = -11; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -81; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -81; +"@MMK_R_KO_hyphen.case" = -81; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -27; +"@MMK_R_KO_n" = -61; +"@MMK_R_KO_nine" = -27; +"@MMK_R_KO_one" = -7; +"@MMK_R_KO_parenright" = -6; +"@MMK_R_KO_parenright.case" = -6; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -81; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_three" = -13; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -56; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = -37; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -125; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -106; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = -92; +"@MMK_R_KO_a.ss05" = -65; +"@MMK_R_KO_asterisk" = 21; +"@MMK_R_KO_colon" = -44; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_e" = -99; +"@MMK_R_KO_egrave" = -85; +"@MMK_R_KO_eight" = -13; +"@MMK_R_KO_ellipsis" = -125; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -123; +"@MMK_R_KO_g" = -89; +"@MMK_R_KO_guillemetleft" = -97; +"@MMK_R_KO_guillemetright" = -62; +"@MMK_R_KO_hyphen" = -125; +"@MMK_R_KO_hyphen.case" = -93; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_n" = -54; +"@MMK_R_KO_nine" = -22; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_quotedbl" = 16; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_s" = -74; +"@MMK_R_KO_seven" = 27; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_slash" = -125; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -49; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -25; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -89; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -89; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 22; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_Y" = 21; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -72; +"@MMK_R_KO_a.ss05" = -56; +"@MMK_R_KO_asterisk" = 13; +"@MMK_R_KO_colon" = -31; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_e" = -80; +"@MMK_R_KO_egrave" = -65; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_ellipsis" = -89; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -89; +"@MMK_R_KO_g" = -68; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_hyphen" = -89; +"@MMK_R_KO_hyphen.case" = -89; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -19; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quotedblleft" = 8; +"@MMK_R_KO_quoteright" = 16; +"@MMK_R_KO_s" = -54; +"@MMK_R_KO_seven" = 30; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_slash" = -89; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -32; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -99; +"@MMK_R_KO_H" = -40; +"@MMK_R_KO_I.ss02" = -21; +"@MMK_R_KO_J" = -99; +"@MMK_R_KO_O" = -68; +"@MMK_R_KO_S" = -43; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = -35; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = -40; +"@MMK_R_KO_a" = -99; +"@MMK_R_KO_a.ss05" = -99; +"@MMK_R_KO_asterisk" = -6; +"@MMK_R_KO_colon" = -73; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_e" = -99; +"@MMK_R_KO_egrave" = -99; +"@MMK_R_KO_eight" = -51; +"@MMK_R_KO_ellipsis" = -99; +"@MMK_R_KO_f" = -45; +"@MMK_R_KO_five" = -43; +"@MMK_R_KO_four" = -99; +"@MMK_R_KO_g" = -99; +"@MMK_R_KO_guillemetleft" = -99; +"@MMK_R_KO_guillemetright" = -88; +"@MMK_R_KO_hyphen" = -99; +"@MMK_R_KO_hyphen.case" = -99; +"@MMK_R_KO_i" = -42; +"@MMK_R_KO_j" = -44; +"@MMK_R_KO_n" = -77; +"@MMK_R_KO_nine" = -61; +"@MMK_R_KO_one" = -28; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_s" = -99; +"@MMK_R_KO_seven" = -9; +"@MMK_R_KO_six" = -62; +"@MMK_R_KO_slash" = -99; +"@MMK_R_KO_t" = -45; +"@MMK_R_KO_three" = -46; +"@MMK_R_KO_two" = -36; +"@MMK_R_KO_u" = -84; +"@MMK_R_KO_v" = -59; +"@MMK_R_KO_w" = -54; +"@MMK_R_KO_y" = -52; +"@MMK_R_KO_z" = -61; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = -38; +"@MMK_R_KO_I.ss02" = -39; +"@MMK_R_KO_J" = -81; +"@MMK_R_KO_O" = -59; +"@MMK_R_KO_S" = -35; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_U" = -33; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -20; +"@MMK_R_KO_Z" = -52; +"@MMK_R_KO_a" = -81; +"@MMK_R_KO_a.ss05" = -81; +"@MMK_R_KO_asterisk" = -6; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -81; +"@MMK_R_KO_egrave" = -81; +"@MMK_R_KO_eight" = -43; +"@MMK_R_KO_f" = -52; +"@MMK_R_KO_five" = -40; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -81; +"@MMK_R_KO_guillemetleft" = -81; +"@MMK_R_KO_guillemetright" = -72; +"@MMK_R_KO_hyphen" = -81; +"@MMK_R_KO_hyphen.case" = -81; +"@MMK_R_KO_i" = -42; +"@MMK_R_KO_j" = -51; +"@MMK_R_KO_n" = -77; +"@MMK_R_KO_nine" = -52; +"@MMK_R_KO_one" = -28; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -37; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -51; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = -81; +"@MMK_R_KO_seven" = -7; +"@MMK_R_KO_six" = -52; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = -52; +"@MMK_R_KO_three" = -36; +"@MMK_R_KO_two" = -25; +"@MMK_R_KO_u" = -81; +"@MMK_R_KO_v" = -67; +"@MMK_R_KO_w" = -67; +"@MMK_R_KO_y" = -63; +"@MMK_R_KO_z" = -71; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -63; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -63; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 24; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_Y" = 17; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -34; +"@MMK_R_KO_asterisk" = 25; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -52; +"@MMK_R_KO_egrave" = -52; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -63; +"@MMK_R_KO_g" = -44; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_hyphen.case" = -47; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = -10; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -10; +"@MMK_R_KO_parenright.case" = -9; +"@MMK_R_KO_period" = -63; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 8; +"@MMK_R_KO_s" = -39; +"@MMK_R_KO_seven" = 20; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_slash" = -63; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -87; +"@MMK_R_KO_J" = -94; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -135; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_X" = -80; +"@MMK_R_KO_Y" = -66; +"@MMK_R_KO_Z" = -96; +"@MMK_R_KO_a" = -39; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = -59; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_egrave" = -45; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -117; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -87; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -61; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -16; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -50; +"@MMK_R_KO_quoteleft" = -48; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = -72; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = -82; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -71; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -105; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -15; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -125; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -56; +"@MMK_R_KO_W" = -32; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -94; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -72; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -63; +"@MMK_R_KO_onesuperior" = -62; +"@MMK_R_KO_parenright" = -74; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = -26; +"@MMK_R_KO_question.ss01" = -71; +"@MMK_R_KO_quotedbl" = -34; +"@MMK_R_KO_quotedblleft" = -53; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -83; +"@MMK_R_KO_quoteright" = -48; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -74; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -28; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -94; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_I.ss02" = -38; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -152; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = -28; +"@MMK_R_KO_comma" = -22; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = -48; +"@MMK_R_KO_ellipsis" = -64; +"@MMK_R_KO_exclam" = -31; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_fivesuperior" = -63; +"@MMK_R_KO_foursuperior" = -52; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_i" = -26; +"@MMK_R_KO_icircumflex" = -26; +"@MMK_R_KO_imacron" = -24; +"@MMK_R_KO_j" = -32; +"@MMK_R_KO_l.ss04" = -32; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_ninesuperior" = -79; +"@MMK_R_KO_onesuperior" = -72; +"@MMK_R_KO_parenright" = -97; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -47; +"@MMK_R_KO_question.ss01" = -85; +"@MMK_R_KO_quotedbl" = -68; +"@MMK_R_KO_quotedblleft" = -70; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_sevensuperior" = -85; +"@MMK_R_KO_sixsuperior" = -56; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -29; +"@MMK_R_KO_threesuperior" = -50; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -21; +"@MMK_R_KO_x" = -26; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -25; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -123; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 33; +"@MMK_R_KO_J" = -100; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = 20; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 55; +"@MMK_R_KO_W" = 56; +"@MMK_R_KO_Y" = 52; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -88; +"@MMK_R_KO_a.ss05" = -83; +"@MMK_R_KO_asterisk" = 21; +"@MMK_R_KO_colon" = -39; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -90; +"@MMK_R_KO_egrave" = -68; +"@MMK_R_KO_eight" = -16; +"@MMK_R_KO_ellipsis" = -163; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -106; +"@MMK_R_KO_g" = -84; +"@MMK_R_KO_guillemetleft" = -88; +"@MMK_R_KO_guillemetright" = -62; +"@MMK_R_KO_hyphen" = -95; +"@MMK_R_KO_hyphen.case" = -69; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -60; +"@MMK_R_KO_nine" = -30; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = 24; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = 25; +"@MMK_R_KO_quoteright.ss01" = 10; +"@MMK_R_KO_s" = -78; +"@MMK_R_KO_seven" = 45; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_slash" = -112; +"@MMK_R_KO_t" = -30; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -58; +"@MMK_R_KO_v" = -47; +"@MMK_R_KO_w" = -43; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = -59; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 30; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 20; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asterisk" = 13; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = 21; +"@MMK_R_KO_egrave" = 21; +"@MMK_R_KO_eight" = 31; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_five" = 20; +"@MMK_R_KO_four" = 45; +"@MMK_R_KO_g" = 24; +"@MMK_R_KO_guillemetleft" = 22; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 44; +"@MMK_R_KO_hyphen.case" = 15; +"@MMK_R_KO_i" = 19; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_n" = 15; +"@MMK_R_KO_nine" = -7; +"@MMK_R_KO_one" = 22; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -40; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_period.ss01" = -49; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 3; +"@MMK_R_KO_quotedblleft.ss01" = -33; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_seven" = 15; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_three" = 34; +"@MMK_R_KO_two" = 13; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -118; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -95; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 17; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 38; +"@MMK_R_KO_W" = 48; +"@MMK_R_KO_Y" = 26; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -53; +"@MMK_R_KO_a.ss05" = -48; +"@MMK_R_KO_asterisk" = 40; +"@MMK_R_KO_colon" = -20; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -44; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -162; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_hyphen" = -69; +"@MMK_R_KO_hyphen.case" = -42; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -47; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = 37; +"@MMK_R_KO_quotedblleft" = 17; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteright" = 32; +"@MMK_R_KO_quoteright.ss01" = 17; +"@MMK_R_KO_s" = -55; +"@MMK_R_KO_seven" = 47; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_slash" = -111; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -67; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -55; +"@MMK_R_KO_colon" = 29; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 18; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -48; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -57; +"@MMK_R_KO_onesuperior" = -39; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -50; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 17; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -72; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 26; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asterisk" = 15; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eight" = 26; +"@MMK_R_KO_ellipsis" = -48; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_five" = 14; +"@MMK_R_KO_four" = 31; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_nine" = -8; +"@MMK_R_KO_one" = 15; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -40; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -45; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_three" = 30; +"@MMK_R_KO_two" = 14; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 21; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 23; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asterisk" = 25; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -69; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_hyphen.case" = -12; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = -6; +"@MMK_R_KO_one" = 24; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_seven" = 20; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 28; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -62; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -80; +"@MMK_R_KO_J" = -85; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -126; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = -69; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = -80; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -38; +"@MMK_R_KO_bracketright" = -61; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -108; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 22; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_ninesuperior" = -49; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -75; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -50; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -55; +"@MMK_R_KO_t" = 22; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -94; +"@MMK_R_KO_v" = 26; +"@MMK_R_KO_w" = 27; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 26; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -40; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = -60; +"@MMK_R_KO_J" = -60; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -120; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -55; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = -54; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = -56; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -56; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -84; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 24; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_i" = 13; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 13; +"@MMK_R_KO_ninesuperior" = -45; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -74; +"@MMK_R_KO_period" = -53; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -50; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -49; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -38; +"@MMK_R_KO_t" = 23; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -67; +"@MMK_R_KO_u" = 17; +"@MMK_R_KO_underscore" = -70; +"@MMK_R_KO_v" = 29; +"@MMK_R_KO_w" = 40; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = 27; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -123; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = 11; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -57; +"@MMK_R_KO_colon" = 30; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -28; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -58; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -67; +"@MMK_R_KO_onesuperior" = -60; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_period" = 26; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -58; +"@MMK_R_KO_quoteleft" = -38; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = -77; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_trademark" = -83; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 27; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 22; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -128; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -67; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -59; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -28; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -55; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_l.ss04" = -9; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -61; +"@MMK_R_KO_onesuperior" = -46; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -58; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = -10; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -36; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -20; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_bracketright" = -27; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = -25; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -28; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -55; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = -8; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -54; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -51; +"@MMK_R_KO_quoteleft" = -31; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = -10; +"@MMK_R_KO_sevensuperior" = -47; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -34; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = -34; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -34; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 7; +"@MMK_R_KO_ellipsis" = -77; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = 16; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_nine" = -9; +"@MMK_R_KO_one" = -3; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_parenright.case" = -61; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -42; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 4; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 17; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -26; +Tbar = -96; +asciitilde = -64; +asterisk = -87; +backslash = -104; +g.ss06 = 18; +minus = -79; +one = -66; +ordmasculine = -105; +plus = -59; +quotedbl = -107; +registered = -87; +seven = -78; +two = 39; +twosuperior = -79; +}; +Aacute = { +Tbar = -96; +}; +Abrevedotbelow.ss01 = { +T = -120; +}; +Aogonek = { +comma = 48; +parenright = 0; +}; +Atilde = { +ordfeminine = -105; +}; +B = { +Hbar = 37; +hbar = 42; +idieresis = 42; +itilde = 52; +}; +C = { +h = 0; +l = 0; +plus = -34; +three = 26; +}; +D = { +Lslash = 21; +Oslash = 24; +braceright = -81; +bracketright.case = -52; +}; +E = { +H = 0; +idieresis = 0; +}; +Eogonek = { +comma = 41; +}; +F = { +fourinferior = -110; +i = -16; +igrave = 22; +}; +G = { +Lslash = 28; +lslash = 27; +}; +Germandbls = { +S = 24; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -16; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 18; +itilde = 54; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 32; +D = 32; +E = 32; +H = 32; +Hbar = 124; +I = 32; +L = 32; +M = 32; +O = 27; +R = 32; +S = 49; +U = 36; +W = 61; +i = 21; +}; +I = { +Hbar = 32; +I = 0; +jcircumflex = 20; +}; +Icircumflex = { +Icircumflex = 13; +l.ss04 = 9; +}; +Imacron = { +Imacron = 7; +}; +Itilde = { +itilde = 54; +}; +J = { +Hbar = 34; +itilde = 59; +}; +Jacute = { +Imacron = 0; +}; +K = { +asciitilde = -110; +four = -35; +idieresis = 43; +igrave = 40; +itilde = 45; +less = -125; +logicalnot = -159; +minus = -139; +one = -12; +oslash = 0; +plus = -108; +}; +L = { +H = 0; +Tbar = -117; +asciitilde = -233; +asterisk = -131; +backslash = -135; +equal = -210; +four = -164; +less = -229; +logicalnot = -247; +minus = -245; +one = -62; +ordfeminine = -201; +ordmasculine = -198; +oslash = -20; +plus = -162; +quotedbl = -163; +quoteleft.ss01 = -81; +quoteright = -99; +quoteright.ss01 = -81; +registered = -228; +seven = -73; +twosuperior = -185; +}; +Lcaron = { +A = 15; +O = -57; +U = -42; +Uacute = -42; +V = -48; +a = -54; +hyphen = -170; +hyphen.case = -150; +u = -52; +v = -91; +}; +Lcommaaccent = { +twosuperior = -185; +}; +Lslash = { +twosuperior = -129; +}; +M = { +Hbar = 32; +idieresis = 43; +igrave = 18; +itilde = 54; +}; +N = { +Hbar = 32; +idieresis = 43; +igrave = 18; +itilde = 54; +}; +O = { +Dcroat = 30; +Lslash = 22; +braceright = -81; +bracketright.case = -54; +itilde = 41; +}; +Oslash = { +T = -40; +V = -34; +Y = -39; +parenright = -48; +parenright.case = -46; +}; +P = { +fourinferior = -119; +idieresis = 33; +itilde = 39; +two = 24; +}; +R = { +Hbar = 48; +jcircumflex = 32; +two = 16; +}; +S = { +Hbar = 41; +Lslash = 32; +dollar = 9; +four = 29; +idieresis = 42; +itilde = 53; +lslash = 26; +three = 29; +}; +T = { +Oslash = -51; +a.ss05 = -127; +aacute.ss05 = -118; +abreve = -64; +abreveacute = -66; +acircumflex = -92; +acircumflexacute = -92; +acircumflexdotbelow = -92; +adieresis = -84; +adotbelow.ss05 = -127; +ae = -127; +agrave = -81; +amacron = -74; +ampersand = -59; +aring = -84; +asciitilde = -143; +atilde = -82; +equal = -123; +four = -119; +g.ss06 = -121; +h = -18; +i.ss01 = -18; +iacute = -47; +idieresis = 0; +idotless = -77; +igrave = 23; +itilde = 0; +less = -148; +logicalnot = -163; +minus = -145; +ograve = -79; +plus = -128; +racute = -74; +scaron = -46; +seven = 16; +twoinferior = -136; +udieresis = -75; +udieresis.ss01 = -68; +ugrave = -73; +uhorngrave = -73; +umacron = -67; +ycircumflex = -76; +ygrave = -57; +yhookabove = -74; +zcaron = -37; +zeroinferior = -135; +}; +Tbar = { +A = -97; +Aacute = -97; +Tbar = 30; +a = -44; +comma = -71; +e = -47; +o = -49; +period = -65; +slash = -100; +}; +Tcaron = { +a.ss05 = -127; +}; +Tcedilla = { +a.ss05 = -127; +abreve = -63; +four = -119; +}; +Tcommaaccent = { +a.ss05 = -127; +abreve = -64; +four = -119; +}; +Thorn = { +A = -42; +AE = -37; +Aacute = -42; +J = -102; +O = 26; +Oacute = 26; +V = -37; +Y = -71; +Yacute = -71; +a = 0; +aacute = 0; +e = 0; +o = 0; +oacute = 0; +period = -65; +}; +U = { +Hbar = 36; +jcircumflex = 28; +}; +V = { +four = -76; +iacute = -17; +ibreve = 82; +idieresis = 47; +igrave = 43; +itilde = 52; +minus = -77; +plus = -54; +scaron = -21; +seven = 45; +twoinferior = -82; +}; +W = { +Hbar = 61; +backslash = 62; +idieresis = 59; +igrave = 50; +itilde = 72; +}; +X = { +asciitilde = -111; +four = -37; +less = -126; +logicalnot = -161; +minus = -141; +notequal = -95; +one = -28; +plus = -111; +}; +Y = { +a.ss05 = -96; +agrave = -76; +amacron = -59; +ampersand = -65; +asciitilde = -120; +at = -60; +four = -129; +g.ss06 = -100; +igrave = 28; +less = -116; +logicalnot = -124; +minus = -112; +ograve = -73; +plus = -91; +scaron = -31; +twoinferior = -131; +}; +Z = { +four = -149; +ibreve = 58; +igrave = 36; +itilde = 40; +minus = -142; +plus = -115; +}; +_B.currency = { +_baht.bar = -13; +}; +a = { +braceright = -85; +}; +a.ss05 = { +g.ss06 = 22; +}; +acircumflexacute.ss05 = { +y = -24; +}; +adieresis.ss05 = { +germandbls = -16; +}; +ampersand = { +V = -91; +W = -66; +Y = -132; +quotedbl = -126; +quotedblleft = -125; +}; +aogonek = { +j = 0; +parenright = -10; +}; +aogonek.ss05 = { +parenright = 0; +}; +approxequal = { +parenright = -136; +parenright.case = -126; +}; +asciicircum = { +J = -164; +X = -121; +Y = -81; +bracketright = -111; +comma = -71; +comma.ss01 = -61; +four = -125; +hyphen = -170; +parenright = -138; +parenright.case = -134; +period = -65; +period.ss01 = -62; +slash = -149; +}; +asciitilde = { +I.ss02 = -164; +J = -164; +V = -118; +W = -95; +X = -184; +Y = -155; +Z = -185; +bracketright = -148; +bracketright.case = -149; +comma = -71; +comma.ss01 = -61; +eight = -89; +exclam = -85; +four = -88; +one = -138; +parenright = -160; +parenright.case = -151; +period = -65; +period.ss01 = -62; +question = -103; +quotedbl = -121; +quotedblright = -125; +seven = -114; +slash = -136; +three = -109; +two = -94; +}; +at = { +T = -58; +parenright = -90; +}; +b = { +asterisk = -45; +braceright = -91; +lslash = 29; +one = -59; +}; +backslash = { +T = -124; +V = -130; +Y = -127; +asterisk = -96; +backslash = -108; +quotedbl = -117; +quotedblleft = -119; +quotedblleft.ss01 = -151; +quotedblright = -108; +quotedblright.ss01 = -140; +quoteleft = -89; +quoteright = -99; +quotesingle = -63; +}; +baht = { +parenright = -70; +}; +braceleft = { +p = 0; +}; +bracketleft = { +asciicircum = -112; +asciitilde = -90; +bracketright = 71; +jcircumflex = 40; +p = 0; +pi = -55; +plus = -90; +x = -57; +}; +c = { +asterisk = -35; +braceright = -89; +}; +cent = { +parenright = -88; +}; +colon = { +T = -85; +Y = -73; +four = -85; +one = -24; +parenright = -81; +two = -3; +zero = -25; +}; +colon.ss01 = { +T = -82; +four = -82; +parenright = -82; +}; +comma = { +eightsuperior = -71; +fivesuperior = -71; +foursuperior = -71; +ninesuperior = -71; +onesuperior = -71; +quoteleft = -71; +quotesingle = -63; +sevensuperior = -71; +sixsuperior = -71; +threesuperior = -71; +twosuperior = -71; +}; +comma.ss01 = { +eightsuperior = -61; +fivesuperior = -61; +foursuperior = -61; +ninesuperior = -61; +onesuperior = -61; +sevensuperior = -61; +sixsuperior = -61; +threesuperior = -61; +twosuperior = -61; +}; +copyright = { +Y = -67; +parenright = -119; +}; +d = { +idieresis = 10; +igrave = 10; +itilde = 10; +}; +dcaron = { +C = 49; +H = 95; +bracketright = 44; +eightsuperior = 82; +exclam = 101; +exclam.ss01 = 104; +fivesuperior = 89; +foursuperior = 50; +h = 32; +i = 24; +j = 15; +k = 32; +l = 32; +l.ss03 = 27; +l.ss04 = 23; +ninesuperior = 54; +onesuperior = 95; +parenright = 64; +question = 113; +question.ss01 = 76; +quotedbl = 127; +quotedblleft = 110; +quotedblleft.ss01 = 60; +quoteleft = 80; +quoteleft.ss01 = 60; +quotesingle = 127; +sevensuperior = 97; +sixsuperior = 77; +t = 13; +t_i.liga = 14; +t_t.liga = 14; +threesuperior = 72; +twosuperior = 78; +zcaron = 13; +}; +dcroat = { +i = 11; +igrave = 10; +itilde = 11; +}; +degree = { +J = -139; +comma = -71; +comma.ss01 = -61; +emdash = -197; +endash = -182; +four = -128; +hyphen = -165; +parenright = -67; +parenright.case = -66; +period = -65; +period.ss01 = -62; +slash = -146; +}; +divide = { +parenright = -124; +}; +dollar = { +parenright = -72; +three = 12; +}; +e = { +asterisk = -41; +backslash = -48; +braceright = -89; +germandbls = -9; +one = -62; +seven = -65; +}; +ecircumflexacute = { +t = -33; +}; +eight = { +bracketright = -38; +degree = -30; +}; +eight.dnom = { +degree = -174; +question.ss01 = -132; +quotedbl = -146; +quotedblleft = -125; +quotedblright = -125; +}; +eightsuperior = { +comma = -71; +comma.ss01 = -61; +period = -65; +period.ss01 = -62; +slash = -118; +}; +ellipsis = { +Tbar = -186; +bracketright = -85; +eightsuperior = -205; +fivesuperior = -201; +foursuperior = -171; +ninesuperior = -208; +onesuperior = -99; +parenleft = -78; +parenleft.case = -93; +question = -127; +quoteleft = -89; +quoteright = -99; +quotesingle = -63; +sevensuperior = -153; +sixsuperior = -208; +threesuperior = -196; +twosuperior = -185; +}; +ellipsis.ss01 = { +Tbar = -190; +bracketright = -92; +eightsuperior = -205; +fivesuperior = -201; +foursuperior = -171; +ninesuperior = -208; +onesuperior = -99; +question.ss01 = -170; +quoteleft.ss01 = -81; +quoteright.ss01 = -81; +quotesingle = -63; +sevensuperior = -153; +sixsuperior = -208; +threesuperior = -196; +twosuperior = -185; +}; +emdash = { +foursuperior = -138; +question = -96; +}; +emdash.case = { +X = -131; +quotedblbase = -125; +quotedblbase.ss01 = -151; +}; +endash = { +X = -61; +endash = 0; +foursuperior = -125; +question = -96; +}; +endash.case = { +H = -23; +X = -124; +quotedblbase = -125; +quotedblbase.ss01 = -151; +}; +eng = { +bracketright = 0; +}; +eogonek = { +lslash = 3; +}; +equal = { +T = -123; +equal = 0; +parenright = -94; +parenright.case = -85; +}; +eth = { +a = 16; +e = 18; +g = 20; +hyphen = 27; +parenright = -71; +}; +euro = { +parenright = -76; +parenright.case = -68; +}; +exclamdown = { +T = -93; +V = -38; +Y = -63; +}; +f = { +igrave = 0; +n = 0; +o = -14; +}; +f_f.liga = { +igrave = 0; +}; +f_f_i.liga = { +idieresis = 4; +}; +fi = { +idieresis = 4; +}; +five = { +degree = -66; +ordmasculine = -52; +percent = -18; +}; +five.dnom = { +degree = -138; +question.ss01 = -133; +quotedblleft = -125; +}; +five.numr = { +fraction = -40; +}; +fiveinferior = { +T = -131; +}; +fivesuperior = { +comma = -71; +comma.ss01 = -61; +period = -65; +period.ss01 = -62; +slash = -118; +}; +fl = { +idieresis = 10; +itilde = 10; +periodcentered.loclCAT = 63; +}; +four = { +asciicircum = -115; +bracketright = -39; +bracketright.case = -39; +degree = -80; +ordfeminine = -62; +ordmasculine = -60; +percent = -50; +x = -42; +}; +four.dnom = { +degree = -153; +question.ss01 = -130; +quotedblleft = -125; +}; +fourinferior = { +T = -129; +V = -96; +}; +foursuperior = { +comma = -71; +comma.ss01 = -61; +period = -65; +period.ss01 = -62; +slash = -85; +}; +fraction = { +eight.dnom = -13; +four.dnom = -41; +fourinferior = -41; +seveninferior = 20; +two.dnom = 0; +zero.dnom = -24; +}; +g = { +bracketright = -12; +j = 0; +j.ss01 = 0; +parenright = -45; +slash = 21; +}; +g.ss06 = { +g.ss06 = 33; +}; +gcaron.ss06 = { +gcaron.ss06 = 33; +}; +gdotaccent = { +j = 0; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 33; +}; +germandbls = { +e = 13; +hyphen = 32; +parenright = -68; +}; +greater = { +T = -121; +parenright = -102; +}; +greaterequal = { +T = -144; +}; +guillemetleft = { +pi = 38; +}; +guillemetright = { +X = -61; +bracketright = -65; +}; +guilsinglright = { +X = -61; +}; +h = { +asterisk = -41; +}; +hyphen = { +Lslash = 50; +X = -52; +bracketright = -68; +foursuperior = -115; +pi = -19; +question = -96; +quotedblbase = -125; +quoteleft = -89; +quotesingle = -63; +x = -59; +}; +hyphen.case = { +Dcroat = 4; +X = -124; +bracketright.case = -96; +quotedblbase = -125; +quotedblbase.ss01 = -151; +quotesinglbase = -89; +}; +i = { +T = -22; +idieresis = 10; +jcircumflex = 2; +parenright = -44; +}; +i.ss01 = { +parenright = -25; +}; +iacute = { +rcaron = 11; +}; +icircumflex = { +b = 11; +h = 11; +i = 10; +icircumflex = 24; +j = 2; +k = 11; +l = 11; +l.ss03 = 0; +l.ss04 = 4; +question = 60; +quotedbl = 53; +quoteright = 42; +quotesingle = 60; +}; +idieresis = { +b = 10; +idieresis = 11; +k = 10; +l = 10; +l.ss03 = 0; +l.ss04 = 2; +}; +idotaccent = { +parenright = -44; +}; +idotaccent.ss01 = { +parenright = -25; +}; +imacron = { +b = 10; +imacron = 24; +j = 2; +k = 10; +kcommaaccent = 10; +l = 10; +l.ss04 = 2; +lcommaaccent = 10; +quotedbl = 49; +}; +infinity = { +parenright = -101; +parenright.case = -89; +}; +integral = { +a = -59; +}; +iogonek = { +j = 2; +}; +itilde = { +h = 10; +itilde = 11; +quotedbl = 56; +quotesingle = 66; +}; +j = { +j = 2; +}; +jacute = { +backslash = 59; +iogonek = 14; +}; +jcircumflex = { +i = 10; +jcircumflex = 15; +}; +k = { +oslash = 0; +}; +l = { +at = 0; +idieresis = 10; +igrave = 10; +itilde = 10; +jcircumflex = 2; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 29; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss04 = { +periodcentered.loclCAT = 63; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 104; +l = 32; +ncaron = 22; +scaron = 13; +twosuperior = 78; +}; +lcaron.ss03 = { +b = 15; +eightsuperior = 47; +exclam = 66; +exclam.ss01 = 69; +fivesuperior = 54; +k = 15; +ninesuperior = 19; +onesuperior = 63; +question = 78; +quotedbl = 92; +quotesingle = 92; +sevensuperior = 62; +sixsuperior = 44; +}; +lcaron.ss04 = { +exclam.ss01 = 104; +twosuperior = 78; +}; +liraTurkish = { +one = -58; +parenright = -97; +question = -75; +quotedbl = -88; +quotesingle = -63; +seven = -72; +}; +logicalnot = { +Y = -130; +parenright = -111; +seven = -118; +}; +m = { +asterisk = -41; +braceright = -80; +twosuperior = -28; +}; +minus = { +T = -145; +X = -141; +comma = -71; +one = -88; +parenright = -128; +parenright.case = -111; +period = -65; +seven = -145; +three = -102; +two = -128; +}; +mu = { +mu = 0; +parenright = -75; +quotesingle = -27; +}; +multiply = { +parenright = -113; +parenright.case = -103; +}; +n = { +asterisk = -41; +at = 3; +braceright = -80; +degree = -91; +g.ss06 = 11; +n = 0; +one = -53; +ordmasculine = -59; +}; +ncaron = { +Yacute = -52; +}; +nine = { +bracketright = -45; +degree = -26; +}; +nine.dnom = { +degree = -178; +question = -102; +question.ss01 = -128; +quotedbl = -144; +quotedblleft = -125; +quotedblleft.ss01 = -151; +quotedblright = -125; +quotedblright.ss01 = -151; +}; +ninesuperior = { +comma = -71; +comma.ss01 = -61; +fraction = -31; +period = -65; +period.ss01 = -62; +slash = -95; +}; +notequal = { +parenright = -104; +parenright.case = -95; +}; +numbersign = { +parenright = -77; +}; +o = { +asterisk = -49; +backslash = -51; +braceright = -92; +germandbls = -9; +lslash = 26; +n = 0; +one = -64; +}; +oacute = { +lslash = -4; +}; +ocircumflexacute = { +bracketright = -11; +parenright = -40; +}; +odieresis = { +germandbls = -35; +}; +ohorn = { +i = 0; +m = 0; +n = 0; +parenright = -72; +}; +ohornacute = { +c = -10; +i = -22; +m = -25; +n = -25; +p = -24; +t = -26; +t_i.liga = -25; +t_t.liga = -25; +}; +ohorndotbelow = { +c = -10; +i = -22; +n = -25; +p = -23; +t = -26; +t_i.liga = -25; +t_t.liga = -25; +u = -24; +}; +ohorngrave = { +i = -22; +n = -25; +parenright = -97; +}; +ohornhookabove = { +i = -22; +n = -25; +}; +ohorntilde = { +i = -22; +n = -25; +}; +ohungarumlaut = { +parenright = -92; +}; +one = { +comma.ss01 = -35; +degree = -28; +equal = 0; +four = 0; +icircumflex = 25; +nine = -19; +one = 0; +parenright = -25; +percent = 0; +period.ss01 = -38; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -94; +one.dnom = 0; +question.ss01 = -94; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -71; +comma.ss01 = -61; +period = -65; +period.ss01 = -62; +slash = -90; +}; +ordfeminine = { +comma = -71; +comma.ss01 = -61; +period = -65; +period.ss01 = -62; +}; +ordmasculine = { +comma = -71; +comma.ss01 = -61; +hyphen = -91; +parenright = -55; +period = -65; +period.ss01 = -62; +slash = -107; +}; +oslash = { +d = -11; +e = -10; +g = -8; +hyphen = -5; +parenright = -98; +y = -21; +}; +p = { +asterisk = -45; +backslash = -49; +braceright = -91; +lslash = 29; +one = -59; +}; +parenleft = { +Dcroat = -27; +H = 0; +Icircumflex = 35; +Oslash = -36; +ampersand = -50; +approxequal = -114; +asciicircum = -113; +asciitilde = -99; +at = -72; +cent = -67; +copyright = -62; +degree = -42; +divide = -93; +dollar = -39; +equal = -67; +euro = -68; +greaterequal = -42; +i = -19; +idotaccent = -19; +infinity = -74; +iogonek = 76; +jcircumflex = 88; +less = -102; +literSign = -63; +logicalnot = -90; +minus = -98; +mu = 0; +multiply = -81; +notequal = -77; +numbersign = -51; +oslash = -2; +p = 5; +parenleft = -46; +pi = -45; +plus = -90; +plusminus = -43; +published = -62; +question = -18; +quotedblbase = 23; +quoteleft = -20; +radical = -65; +scaron = -29; +section = -39; +sterling = -31; +x = -10; +}; +parenleft.case = { +Icircumflex = 53; +approxequal = -98; +asciicircum = -107; +asciitilde = -85; +dollar = -35; +equal = -58; +euro = -57; +minus = -90; +numbersign = -42; +parenleft.case = -33; +plus = -70; +question = -14; +quotedblbase = 27; +quoteleft = -20; +}; +parenright = { +bracketright = -47; +comma = -19; +comma.ss01 = -43; +hyphen = 16; +parenleft = 8; +parenright = -74; +period = -16; +period.ss01 = -60; +quotedbl = -21; +}; +parenright.case = { +comma = -38; +comma.ss01 = -61; +parenright.case = -63; +period = -35; +period.ss01 = -62; +}; +percent = { +asterisk = -69; +bracketright = -53; +comma.ss01 = -55; +eightsuperior = -69; +fivesuperior = -73; +foursuperior = -95; +ninesuperior = -89; +onesuperior = -73; +parenright = -78; +parenright.case = -59; +period = -16; +period.ss01 = -53; +question = -86; +question.ss01 = -99; +quotedbl = -78; +quotedblleft = -96; +quotedblright = -72; +quoteleft = -89; +quoteright = -72; +quotesingle = -63; +sevensuperior = -74; +sixsuperior = -74; +threesuperior = -69; +twosuperior = -49; +}; +period = { +bracketright = -60; +eightsuperior = -65; +fivesuperior = -65; +foursuperior = -65; +ninesuperior = -65; +onesuperior = -65; +ordfeminine = -65; +ordmasculine = -65; +parenleft.case = -35; +question = -65; +quoteleft = -65; +quotesingle = -63; +sevensuperior = -65; +sixsuperior = -65; +threesuperior = -65; +twosuperior = -65; +}; +period.ss01 = { +bracketright = -62; +eightsuperior = -62; +fivesuperior = -62; +foursuperior = -62; +ninesuperior = -62; +onesuperior = -62; +ordfeminine = -62; +ordmasculine = -62; +question.ss01 = -62; +sevensuperior = -62; +sixsuperior = -62; +threesuperior = -62; +twosuperior = -62; +}; +periodcentered.loclCAT = { +l = 63; +l.ss03 = 58; +}; +perthousand = { +asterisk = -117; +parenright = -92; +parenright.case = -59; +question = -103; +question.ss01 = -128; +quotedblleft = -125; +quotedblleft.ss01 = -151; +quotedblright = -125; +quotedblright.ss01 = -151; +quoteleft = -89; +quoteright = -99; +}; +pi = { +hyphen = -21; +parenright = -51; +period = 10; +pi = 23; +quotesingle = 0; +}; +plus = { +J = -107; +T = -128; +V = -54; +X = -110; +Y = -90; +braceright = -121; +bracketright = -90; +comma = -71; +comma.ss01 = -61; +one = -70; +parenright = -117; +parenright.case = -96; +period = -65; +period.ss01 = -62; +quotedbl = -71; +seven = -109; +slash = -57; +three = -78; +two = -77; +}; +published = { +parenright = -119; +}; +q = { +bracketright = 0; +j = 2; +parenright = -7; +}; +question = { +A = -83; +J = -89; +comma = -71; +hyphen = -76; +parenright = -50; +parenright.case = -47; +period = -65; +question = 31; +questiondown = -132; +slash = -82; +}; +question.ss01 = { +comma.ss01 = -61; +parenright = -53; +parenright.case = -48; +period.ss01 = -62; +questiondown.ss01 = -136; +}; +questiondown.case = { +T = -96; +V = -88; +Y = -94; +quotedbl = -106; +quotedblleft = -113; +quotedblleft.ss01 = -149; +quoteright = -99; +}; +questiondown.ss01 = { +C = -102; +Q = -102; +Q.ss09 = -102; +T = -170; +V = -155; +Y = -173; +four = -126; +quotedbl = -129; +quotedblleft.ss01 = -151; +quotesingle = -63; +}; +quotedbl = { +ellipsis.ss01 = -163; +exclamdown = -56; +g.ss06 = -73; +icircumflex = 14; +mu = -55; +questiondown = -163; +questiondown.case = -159; +questiondown.ss01 = -163; +underscore = -163; +}; +quotedblbase = { +copyright = -78; +divide = -125; +equal = -125; +euro = -105; +minus = -125; +p = 0; +plus = -125; +question = -96; +quotedblright = -125; +quoteleft = -89; +}; +quotedblbase.ss01 = { +divide = -151; +minus = -151; +plus = -151; +question.ss01 = -151; +quotedblright.ss01 = -151; +}; +quotedblleft = { +g.ss06 = -59; +mu = -32; +questiondown = -125; +questiondown.case = -125; +quotedblbase = -125; +underscore = -125; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -151; +questiondown.ss01 = -151; +quotedblbase.ss01 = -151; +underscore = -151; +}; +quotedblright = { +asciitilde = -125; +questiondown = -125; +questiondown.case = -125; +quotesinglbase = -89; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -151; +questiondown.case = -151; +questiondown.ss01 = -151; +}; +quoteleft = { +questiondown = -89; +questiondown.case = -89; +quotedblbase = -89; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -81; +}; +quoteright = { +icircumflex = 0; +questiondown = -99; +quotedblbase = -99; +}; +quoteright.ss01 = { +questiondown.ss01 = -81; +quotedblbase.ss01 = -81; +}; +quotesinglbase = { +T = -89; +V = -89; +Y = -89; +minus = -89; +plus = -89; +question = -89; +quotedblleft = -89; +quoteleft = -89; +}; +quotesinglbase.ss01 = { +T = -81; +V = -81; +Y = -81; +question.ss01 = -81; +}; +quotesingle = { +Hbar = 47; +g.ss06 = -39; +icircumflex = 58; +igrave = 33; +imacron = 58; +itilde = 61; +l.ss04 = 0; +questiondown = -63; +questiondown.case = -63; +underscore = -63; +}; +r = { +braceright = -86; +fourinferior = -96; +g.ss06 = -25; +parenright = -73; +}; +radical = { +A = -88; +}; +rcaron = { +sevensuperior = -14; +}; +registered = { +comma = -71; +comma.ss01 = -61; +parenright = -80; +parenright.case = -79; +period = -65; +period.ss01 = -62; +slash = -87; +}; +s = { +asterisk = -32; +braceright = -88; +l = 0; +}; +scaron = { +T = -69; +}; +semicolon = { +hyphen = -89; +}; +seven = { +minus = -95; +percent = 0; +plus = -78; +underscore = -127; +}; +seven.dnom = { +question.ss01 = -141; +}; +seven.numr = { +fraction = -41; +}; +seveninferior = { +parenright = -87; +}; +sevensuperior = { +A = -135; +comma = -71; +comma.ss01 = -61; +fraction = -41; +period = -65; +period.ss01 = -62; +slash = -130; +}; +six = { +bracketright = -31; +degree = -26; +}; +six.dnom = { +degree = -171; +question.ss01 = -134; +quotedbl = -144; +quotedblleft = -125; +quotedblleft.ss01 = -151; +quotedblright = -125; +}; +sixinferior = { +T = -133; +}; +sixsuperior = { +comma = -71; +comma.ss01 = -61; +period = -65; +period.ss01 = -62; +slash = -121; +}; +slash = { +fourinferior = -119; +g.ss06 = -55; +ibreve = 77; +l.ss04 = 41; +mu = -47; +quotedblbase = -125; +quotedblbase.ss01 = -151; +quotesinglbase = -89; +underscore = -142; +}; +sterling = { +two = 25; +}; +t_i.liga = { +idieresis = 4; +}; +tcaron = { +b = 3; +exclam = 31; +h = 3; +hyphen = -48; +i = 0; +j = 0; +k = 3; +parenright = 34; +quotedbl = 46; +quotedblleft = 23; +quotesingle = 46; +}; +tcedilla = { +parenright = 4; +}; +tenge = { +comma = -71; +comma.ss01 = -61; +period = -65; +period.ss01 = -62; +slash = -104; +}; +three = { +bracketright = -33; +}; +three.dnom = { +degree = -167; +question.ss01 = -131; +quotedbl = -145; +quotedblleft = -125; +quotedblright = -125; +}; +three.numr = { +fraction = -41; +}; +threeinferior = { +T = -136; +V = -84; +Y = -132; +}; +threesuperior = { +comma = -71; +comma.ss01 = -61; +fraction = -41; +parenright = -60; +period = -65; +period.ss01 = -62; +slash = -119; +}; +trademark = { +comma = -71; +comma.ss01 = -61; +hyphen = -112; +period = -65; +period.ss01 = -62; +slash = -130; +}; +two = { +percent = 20; +}; +two.dnom = { +degree = -155; +question.ss01 = -128; +quotedbl = -139; +quotedblleft = -125; +quotedblright = -125; +}; +twoinferior = { +T = -135; +V = -77; +Y = -129; +}; +twosuperior = { +comma = -71; +comma.ss01 = -61; +parenright = -49; +parenright.case = -48; +period = -65; +period.ss01 = -62; +slash = -109; +}; +uhorn = { +a = -20; +ohorn = -21; +ohornacute = -20; +ohorndotbelow = -21; +ohorndotbelow.ss01 = -21; +ohorngrave = -19; +ohornhookabove = -19; +ohorntilde = -18; +}; +uhornacute = { +a = -20; +c = -22; +}; +uhorndotbelow = { +a = -20; +c = -22; +comma = -23; +period = -21; +}; +uhorngrave = { +a = -20; +a.ss05 = -22; +}; +uhornhookabove = { +a = -20; +comma = -23; +comma.ss01 = -59; +period = -21; +period.ss01 = -58; +}; +uhorntilde = { +a = -20; +comma = -23; +period = -21; +}; +uhungarumlaut = { +parenright = -63; +}; +underscore = { +C = -64; +O = -64; +T = -126; +V = -140; +W = -90; +Y = -136; +asterisk = -131; +four = -168; +one = -79; +quotedbl = -163; +quotedblright = -125; +quotedblright.ss01 = -151; +quotesingle = -63; +seven = -99; +six = -38; +v = -89; +}; +uogonek = { +j = 0; +parenright = -10; +}; +v = { +braceright = -86; +n = 0; +}; +w = { +braceright = -80; +}; +x = { +four = -51; +}; +y = { +braceright = -86; +}; +ydotbelow = { +period = -65; +}; +zero = { +braceright = -79; +bracketright = -52; +bracketright.case = -49; +degree = -32; +percent = 12; +}; +zero.dnom = { +degree = -180; +question = -102; +question.ss01 = -128; +quotedbl = -143; +quotedblleft = -125; +quotedblleft.ss01 = -151; +quotedblright = -125; +quotedblright.ss01 = -151; +quoteleft = -89; +}; +zeroinferior = { +parenright = -79; +}; +zerosuperior = { +comma = -71; +comma.ss01 = -61; +fraction = -41; +period = -65; +period.ss01 = -62; +slash = -121; +}; +}; +"DED42A87-C949-4722-A202-2B551272A3FB" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 19; +"@MMK_R_KO_H" = 19; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -81; +"@MMK_R_KO_U" = -18; +"@MMK_R_KO_V" = -96; +"@MMK_R_KO_W" = -63; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = -106; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -98; +"@MMK_R_KO_bracketright" = -41; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = -59; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_fivesuperior" = -64; +"@MMK_R_KO_foursuperior" = -70; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 19; +"@MMK_R_KO_ninesuperior" = -81; +"@MMK_R_KO_onesuperior" = -94; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -76; +"@MMK_R_KO_question.ss01" = -75; +"@MMK_R_KO_quotedbl" = -91; +"@MMK_R_KO_quotedblleft" = -57; +"@MMK_R_KO_quotedblleft.ss01" = -74; +"@MMK_R_KO_quoteleft" = -61; +"@MMK_R_KO_quoteright" = -69; +"@MMK_R_KO_quoteright.ss01" = -72; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -93; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_sixsuperior" = -72; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_threesuperior" = -72; +"@MMK_R_KO_trademark" = -103; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -74; +"@MMK_R_KO_w" = -38; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 25; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = -31; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 19; +"@MMK_R_KO_egrave" = 19; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 12; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 72; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -10; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 23; +"@MMK_R_KO_sevensuperior" = -9; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -27; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = -45; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -34; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 14; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 35; +"@MMK_R_KO_imacron" = 42; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -55; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = -13; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -22; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -37; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -75; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -57; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -42; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 22; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 21; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 14; +"@MMK_R_KO_hyphen.case" = 23; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 31; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -62; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_question" = -19; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = 5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -45; +"@MMK_R_KO_t" = 17; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = -83; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = -12; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 26; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -57; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_bracketright" = -43; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = -30; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 18; +"@MMK_R_KO_egrave" = 18; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = 22; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 24; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_parenright.case" = -62; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -19; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = 6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -44; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_y" = 0; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = 5; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 8; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -21; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 74; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 42; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -59; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = -71; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = 9; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -132; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = -9; +"@MMK_R_KO_hyphen.case" = -8; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 30; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 36; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = -102; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -78; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = -211; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = -23; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 26; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -15; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -47; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 18; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -38; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -22; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 17; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 20; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 32; +"@MMK_R_KO_imacron" = 38; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_parenright.case" = -58; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -38; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -76; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = -11; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -39; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 18; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 10; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_icircumflex" = 29; +"@MMK_R_KO_imacron" = 33; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 11; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 13; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -25; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -51; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -22; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 61; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = 3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 2; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 15; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -42; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -84; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 54; +"@MMK_R_KO_imacron" = 71; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 44; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -8; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -22; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -26; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 61; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -34; +"@MMK_R_KO_question" = -14; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = 3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -37; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -51; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 5; +"@MMK_R_KO_O" = -49; +"@MMK_R_KO_S" = -36; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -38; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -78; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = -44; +"@MMK_R_KO_egrave" = -36; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -30; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -62; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -78; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -55; +"@MMK_R_KO_hyphen.case" = -88; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 17; +"@MMK_R_KO_imacron" = 53; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -55; +"@MMK_R_KO_question.ss01" = -48; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -52; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = -30; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -47; +"@MMK_R_KO_sixsuperior" = -31; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = -51; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -12; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -64; +"@MMK_R_KO_w" = -56; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -91; +"@MMK_R_KO_U" = -18; +"@MMK_R_KO_V" = -98; +"@MMK_R_KO_W" = -65; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = -130; +"@MMK_R_KO_Z" = 26; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -203; +"@MMK_R_KO_bracketright" = -48; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 37; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = -181; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_fivesuperior" = -184; +"@MMK_R_KO_foursuperior" = -181; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -43; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -138; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_icircumflex" = -3; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = -13; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -193; +"@MMK_R_KO_onesuperior" = -137; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = 31; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -94; +"@MMK_R_KO_question.ss01" = -91; +"@MMK_R_KO_quotedbl" = -93; +"@MMK_R_KO_quotedblleft" = -172; +"@MMK_R_KO_quotedblleft.ss01" = -198; +"@MMK_R_KO_quoteleft" = -110; +"@MMK_R_KO_quoteright" = -177; +"@MMK_R_KO_quoteright.ss01" = -178; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -178; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_sixsuperior" = -183; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -48; +"@MMK_R_KO_threesuperior" = -179; +"@MMK_R_KO_trademark" = -199; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -69; +"@MMK_R_KO_w" = -42; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -37; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -88; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -98; +"@MMK_R_KO_W" = -62; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -129; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 38; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = -97; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = -104; +"@MMK_R_KO_foursuperior" = -111; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -103; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -121; +"@MMK_R_KO_onesuperior" = -137; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = 32; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -91; +"@MMK_R_KO_question.ss01" = -87; +"@MMK_R_KO_quotedbl" = -93; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quotedblleft.ss01" = -108; +"@MMK_R_KO_quoteleft" = -94; +"@MMK_R_KO_quoteright" = -109; +"@MMK_R_KO_quoteright.ss01" = -108; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -141; +"@MMK_R_KO_sixsuperior" = -101; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_threesuperior" = -114; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 27; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -57; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -3; +"@MMK_R_KO_bracketright" = -43; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 18; +"@MMK_R_KO_egrave" = 18; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 23; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 22; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 24; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_parenright.case" = -62; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -19; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = 6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -44; +"@MMK_R_KO_t" = 18; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = -82; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = -11; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = -13; +"@MMK_R_KO_I.ss02" = -30; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = -38; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -48; +"@MMK_R_KO_W" = -37; +"@MMK_R_KO_X" = -78; +"@MMK_R_KO_Y" = -75; +"@MMK_R_KO_Z" = -27; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_bracketright" = -43; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -46; +"@MMK_R_KO_comma.ss01" = -63; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = -16; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -36; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = -13; +"@MMK_R_KO_j" = -20; +"@MMK_R_KO_l.ss04" = -10; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -43; +"@MMK_R_KO_parenright" = -87; +"@MMK_R_KO_parenright.case" = -83; +"@MMK_R_KO_period" = -47; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_question" = -39; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -58; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_underscore" = -99; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = -31; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 29; +"@MMK_R_KO_I.ss02" = 32; +"@MMK_R_KO_O" = 26; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 38; +"@MMK_R_KO_U" = 38; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_bracketright" = 34; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 18; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = 34; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 24; +"@MMK_R_KO_i" = 33; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_parenright" = 13; +"@MMK_R_KO_parenright.case" = 14; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 28; +"@MMK_R_KO_quoteright" = 28; +"@MMK_R_KO_quoteright.ss01" = 26; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 23; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -63; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -76; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -54; +"@MMK_R_KO_Y" = -35; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -24; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -111; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -164; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 37; +"@MMK_R_KO_imacron" = 46; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_parenright.case" = -59; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 24; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = 16; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -23; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -219; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_x" = -11; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -52; +"@MMK_R_KO_W" = -37; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -83; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -38; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -33; +"@MMK_R_KO_question.ss01" = -33; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -43; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 21; +"@MMK_R_KO_sevensuperior" = -50; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = -31; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 18; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 46; +"@MMK_R_KO_imacron" = 69; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 41; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = 12; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = 8; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -23; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 17; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 24; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -35; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -27; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 37; +"@MMK_R_KO_imacron" = 54; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -49; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 21; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_trademark" = -40; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -23; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_X" = -42; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_bracketright" = -34; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = -9; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 42; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_ninesuperior" = -40; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_parenright.case" = -57; +"@MMK_R_KO_period" = -9; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = -24; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -37; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -32; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -16; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -92; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = -68; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = 21; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_X" = -3; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -75; +"@MMK_R_KO_a.ss05" = -37; +"@MMK_R_KO_asciicircum" = -30; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = -101; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -82; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -109; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_g" = -73; +"@MMK_R_KO_guillemetleft" = -88; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -98; +"@MMK_R_KO_hyphen.case" = -96; +"@MMK_R_KO_i" = -14; +"@MMK_R_KO_icircumflex" = 11; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = 2; +"@MMK_R_KO_parenright" = -10; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = -102; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -76; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -22; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -107; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_underscore" = -116; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = -23; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 8; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -12; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -24; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 9; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_imacron" = 70; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = -26; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 19; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = 12; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -42; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -11; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -72; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -49; +"@MMK_R_KO_H" = -18; +"@MMK_R_KO_I.ss02" = -17; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = -13; +"@MMK_R_KO_T" = -15; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -12; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = -25; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = -19; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = -44; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -52; +"@MMK_R_KO_exclam" = -18; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_hyphen.case" = -15; +"@MMK_R_KO_i" = -18; +"@MMK_R_KO_j" = -21; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -42; +"@MMK_R_KO_period" = -45; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = -31; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -33; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_sevensuperior" = -21; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -63; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_u" = -20; +"@MMK_R_KO_v" = -13; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = -26; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 49; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_T" = 45; +"@MMK_R_KO_U" = 58; +"@MMK_R_KO_V" = 38; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = 52; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_bracketright" = 54; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -24; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_eightsuperior" = 44; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 55; +"@MMK_R_KO_fivesuperior" = 47; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 20; +"@MMK_R_KO_onesuperior" = 18; +"@MMK_R_KO_parenright" = 34; +"@MMK_R_KO_parenright.case" = 32; +"@MMK_R_KO_period" = -26; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 44; +"@MMK_R_KO_quoteright" = 54; +"@MMK_R_KO_quoteright.ss01" = 23; +"@MMK_R_KO_sevensuperior" = 58; +"@MMK_R_KO_sixsuperior" = 29; +"@MMK_R_KO_slash" = -41; +"@MMK_R_KO_threesuperior" = 32; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -96; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -60; +"@MMK_R_KO_a.ss05" = -56; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = -37; +"@MMK_R_KO_comma" = -101; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -109; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = -57; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -66; +"@MMK_R_KO_hyphen.case" = -46; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 31; +"@MMK_R_KO_imacron" = 46; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 42; +"@MMK_R_KO_n" = -37; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -4; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = -102; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_question" = -27; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -56; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -36; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -125; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_underscore" = -138; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_x" = -46; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -72; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -61; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -38; +"@MMK_R_KO_a.ss05" = -42; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -18; +"@MMK_R_KO_comma" = -70; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -39; +"@MMK_R_KO_egrave" = -33; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -80; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = -35; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_hyphen.case" = -28; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 42; +"@MMK_R_KO_imacron" = 64; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 42; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -85; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -2; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_underscore" = -90; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_x" = -24; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -37; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -39; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = -85; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_egrave" = -45; +"@MMK_R_KO_eightsuperior" = -33; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_exclam" = -7; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_fivesuperior" = -32; +"@MMK_R_KO_foursuperior" = -71; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_hyphen.case" = -97; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = -50; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = -59; +"@MMK_R_KO_question.ss01" = -54; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -58; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_sixsuperior" = -39; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -59; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_trademark" = -24; +"@MMK_R_KO_u" = -35; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -64; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -37; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -113; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -78; +"@MMK_R_KO_O" = -57; +"@MMK_R_KO_S" = -43; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = -98; +"@MMK_R_KO_a.ss05" = -71; +"@MMK_R_KO_asciicircum" = -65; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -66; +"@MMK_R_KO_comma" = -111; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -102; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -160; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -44; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -53; +"@MMK_R_KO_g" = -96; +"@MMK_R_KO_guillemetleft" = -107; +"@MMK_R_KO_guillemetright" = -82; +"@MMK_R_KO_hyphen" = -115; +"@MMK_R_KO_hyphen.case" = -84; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = -73; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_question" = -45; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -95; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -57; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -141; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = -57; +"@MMK_R_KO_underscore" = -154; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -54; +"@MMK_R_KO_x" = -75; +"@MMK_R_KO_y" = -62; +"@MMK_R_KO_z" = -56; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -49; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 71; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 39; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -11; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -73; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -36; +"@MMK_R_KO_onesuperior" = -62; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -21; +"@MMK_R_KO_question" = -27; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -34; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -76; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -78; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = -81; +"@MMK_R_KO_W" = -48; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -109; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -36; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -44; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -56; +"@MMK_R_KO_onesuperior" = -91; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_period" = 5; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -61; +"@MMK_R_KO_question.ss01" = -59; +"@MMK_R_KO_quotedbl" = -64; +"@MMK_R_KO_quotedblleft" = -31; +"@MMK_R_KO_quotedblleft.ss01" = -53; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -43; +"@MMK_R_KO_quoteright.ss01" = -37; +"@MMK_R_KO_s" = 16; +"@MMK_R_KO_sevensuperior" = -85; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = -46; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -42; +"@MMK_R_KO_trademark" = -98; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -19; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -43; +"@MMK_R_KO_U" = -18; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = -39; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -47; +"@MMK_R_KO_foursuperior" = -47; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_icircumflex" = -4; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -14; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_ninesuperior" = -59; +"@MMK_R_KO_onesuperior" = -64; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = -63; +"@MMK_R_KO_question.ss01" = -63; +"@MMK_R_KO_quotedbl" = -60; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -56; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = -45; +"@MMK_R_KO_quoteright.ss01" = -41; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -56; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_sixsuperior" = -47; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_threesuperior" = -46; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -44; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = -37; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_T" = -93; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = -14; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -100; +"@MMK_R_KO_H" = -22; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_T" = -29; +"@MMK_R_KO_a" = -41; +"@MMK_R_KO_e" = -46; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -28; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -52; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_T" = -96; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -97; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -82; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -4; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -15; +"@MMK_R_KO_a" = -65; +"@MMK_R_KO_a.ss05" = -63; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = -111; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -73; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -13; +"@MMK_R_KO_four" = -87; +"@MMK_R_KO_g" = -61; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = -128; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -50; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -56; +"@MMK_R_KO_seven" = 11; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_slash" = -112; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -5; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -49; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -48; +"@MMK_R_KO_O" = -42; +"@MMK_R_KO_S" = -23; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -52; +"@MMK_R_KO_a.ss05" = -47; +"@MMK_R_KO_asterisk" = -12; +"@MMK_R_KO_colon" = -45; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_egrave" = -45; +"@MMK_R_KO_eight" = -21; +"@MMK_R_KO_ellipsis" = -62; +"@MMK_R_KO_f" = -42; +"@MMK_R_KO_five" = -17; +"@MMK_R_KO_four" = -62; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -82; +"@MMK_R_KO_hyphen" = -66; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 41; +"@MMK_R_KO_n" = -44; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -58; +"@MMK_R_KO_period" = -49; +"@MMK_R_KO_period.ss01" = -60; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = -57; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -36; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -47; +"@MMK_R_KO_three" = -24; +"@MMK_R_KO_two" = -25; +"@MMK_R_KO_u" = -52; +"@MMK_R_KO_v" = -64; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -43; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = -40; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = -14; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_eight" = -21; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_guillemetleft" = -66; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen.case" = -67; +"@MMK_R_KO_nine" = -17; +"@MMK_R_KO_one" = -56; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -37; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_three" = -21; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -81; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -59; +"@MMK_R_KO_W" = -41; +"@MMK_R_KO_X" = -49; +"@MMK_R_KO_Y" = -99; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -55; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 14; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_period" = -11; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = -50; +"@MMK_R_KO_question.ss01" = -55; +"@MMK_R_KO_quotedbl" = -54; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -86; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -61; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -34; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -111; +"@MMK_R_KO_comma" = 19; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -111; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -88; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_quotedbl" = -111; +"@MMK_R_KO_quotedblleft" = -111; +"@MMK_R_KO_quoteright" = -111; +"@MMK_R_KO_seven" = -77; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 9; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -96; +"@MMK_R_KO_H" = -17; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_T" = -16; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_i" = -18; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_t" = -6; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 20; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = -77; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -61; +"@MMK_R_KO_W" = -37; +"@MMK_R_KO_X" = -40; +"@MMK_R_KO_Y" = -100; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -44; +"@MMK_R_KO_bracketright" = -61; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 14; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = -25; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = -9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -32; +"@MMK_R_KO_foursuperior" = -28; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -78; +"@MMK_R_KO_parenright" = -79; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_question" = -62; +"@MMK_R_KO_question.ss01" = -64; +"@MMK_R_KO_quotedbl" = -56; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -41; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 16; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_six" = 15; +"@MMK_R_KO_sixsuperior" = -35; +"@MMK_R_KO_slash" = -29; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -32; +"@MMK_R_KO_trademark" = -89; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -59; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -41; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 28; +"@MMK_R_KO_S" = 28; +"@MMK_R_KO_T" = -41; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -57; +"@MMK_R_KO_W" = -30; +"@MMK_R_KO_X" = -33; +"@MMK_R_KO_Y" = -60; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 25; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 22; +"@MMK_R_KO_egrave" = 25; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 12; +"@MMK_R_KO_imacron" = 7; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -58; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = -51; +"@MMK_R_KO_question.ss01" = -50; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 24; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = 23; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -55; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = -36; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 14; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asterisk" = -14; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 15; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eight" = 19; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 22; +"@MMK_R_KO_four" = 7; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = 35; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 21; +"@MMK_R_KO_seven" = -3; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 9; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 5; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -103; +"@MMK_R_KO_U" = -30; +"@MMK_R_KO_V" = -106; +"@MMK_R_KO_W" = -76; +"@MMK_R_KO_Y" = -155; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -136; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 12; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -41; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -12; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_hyphen.case" = -121; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_j" = -16; +"@MMK_R_KO_n" = -11; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -94; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_parenright.case" = -44; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_quotedbl" = -228; +"@MMK_R_KO_quotedblleft" = -228; +"@MMK_R_KO_quoteright" = -228; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_seven" = -85; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = -51; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -77; +"@MMK_R_KO_w" = -52; +"@MMK_R_KO_y" = -72; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = -23; +"@MMK_R_KO_H" = -35; +"@MMK_R_KO_I.ss02" = -21; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = -57; +"@MMK_R_KO_S" = -35; +"@MMK_R_KO_T" = -131; +"@MMK_R_KO_U" = -55; +"@MMK_R_KO_V" = -130; +"@MMK_R_KO_W" = -93; +"@MMK_R_KO_Y" = -177; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = -38; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asterisk" = -136; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_egrave" = -42; +"@MMK_R_KO_eight" = -33; +"@MMK_R_KO_f" = -64; +"@MMK_R_KO_five" = -36; +"@MMK_R_KO_four" = -29; +"@MMK_R_KO_g" = -42; +"@MMK_R_KO_guillemetleft" = -78; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = -200; +"@MMK_R_KO_i" = -35; +"@MMK_R_KO_j" = -37; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = -26; +"@MMK_R_KO_one" = -107; +"@MMK_R_KO_parenright" = -86; +"@MMK_R_KO_parenright.case" = -59; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_quotedbl" = -228; +"@MMK_R_KO_quotedblleft.ss01" = -247; +"@MMK_R_KO_quoteright.ss01" = -247; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_seven" = -99; +"@MMK_R_KO_six" = -54; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = -77; +"@MMK_R_KO_three" = -34; +"@MMK_R_KO_two" = -22; +"@MMK_R_KO_u" = -42; +"@MMK_R_KO_v" = -95; +"@MMK_R_KO_w" = -73; +"@MMK_R_KO_y" = -68; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -95; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -67; +"@MMK_R_KO_W" = -43; +"@MMK_R_KO_Y" = -114; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 18; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -27; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eight" = 8; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 15; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -85; +"@MMK_R_KO_parenright" = -78; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_quotedbl" = -72; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -94; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -17; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -21; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -49; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = -48; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -54; +"@MMK_R_KO_comma.ss01" = -66; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -66; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 17; +"@MMK_R_KO_imacron" = 21; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 12; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_period" = -57; +"@MMK_R_KO_period.ss01" = -67; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = 17; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = 10; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -57; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 7; +"@MMK_R_KO_trademark" = -2; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -57; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -48; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -52; +"@MMK_R_KO_comma.ss01" = -65; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -65; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -19; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_period" = -55; +"@MMK_R_KO_period.ss01" = -66; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft" = 19; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 11; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 6; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 3; +"@MMK_R_KO_slash" = -56; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 9; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -56; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -3; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 12; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -25; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -25; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -2; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -19; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 2; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asterisk" = -12; +"@MMK_R_KO_colon" = -6; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 18; +"@MMK_R_KO_four" = 6; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = 14; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_nine" = 31; +"@MMK_R_KO_one" = -13; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = -9; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_seven" = -2; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -46; +"@MMK_R_KO_W" = -40; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -55; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 10; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 5; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = -52; +"@MMK_R_KO_parenright" = -74; +"@MMK_R_KO_parenright.case" = -56; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_quotedbl" = -55; +"@MMK_R_KO_quotedblleft" = -46; +"@MMK_R_KO_quotedblleft.ss01" = -65; +"@MMK_R_KO_quoteright" = -53; +"@MMK_R_KO_quoteright.ss01" = -52; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -46; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = -35; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -40; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -27; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 34; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 41; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -8; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = 4; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -11; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -12; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 23; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_Y" = -66; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -14; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = 14; +"@MMK_R_KO_one" = -5; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_parenright.case" = -49; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -5; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -41; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -39; +"@MMK_R_KO_J" = -41; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -84; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -69; +"@MMK_R_KO_W" = -46; +"@MMK_R_KO_Y" = -107; +"@MMK_R_KO_Z" = -27; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asterisk" = -79; +"@MMK_R_KO_colon" = -32; +"@MMK_R_KO_comma" = -51; +"@MMK_R_KO_comma.ss01" = -64; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = 3; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 3; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = -42; +"@MMK_R_KO_parenright" = -88; +"@MMK_R_KO_parenright.case" = -80; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_quotedbl" = -65; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -54; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -35; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -45; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_slash" = -56; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_three" = -21; +"@MMK_R_KO_two" = -36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -95; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -67; +"@MMK_R_KO_W" = -43; +"@MMK_R_KO_Y" = -114; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 18; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -128; +"@MMK_R_KO_colon" = -27; +"@MMK_R_KO_comma" = -17; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eight" = 8; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 15; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -85; +"@MMK_R_KO_parenright" = -78; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_quotedbl" = -72; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -94; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -8; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -21; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -58; +"@MMK_R_KO_H" = -15; +"@MMK_R_KO_I.ss02" = -90; +"@MMK_R_KO_J" = -88; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = -98; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -60; +"@MMK_R_KO_W" = -43; +"@MMK_R_KO_Y" = -98; +"@MMK_R_KO_Z" = -56; +"@MMK_R_KO_asterisk" = -45; +"@MMK_R_KO_colon" = -27; +"@MMK_R_KO_comma" = -111; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_five" = -13; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen.case" = -4; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -7; +"@MMK_R_KO_parenright.case" = -84; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_quotedbl" = -38; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_seven" = -11; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = -77; +"@MMK_R_KO_three" = -54; +"@MMK_R_KO_two" = -18; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 38; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -50; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -27; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -49; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -23; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 30; +"@MMK_R_KO_I.ss02" = 25; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 39; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 38; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = 38; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 25; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_icircumflex" = 35; +"@MMK_R_KO_imacron" = 36; +"@MMK_R_KO_j" = 29; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 5; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_W" = -30; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -77; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -41; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -60; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = -46; +"@MMK_R_KO_egrave" = -45; +"@MMK_R_KO_eightsuperior" = -39; +"@MMK_R_KO_ellipsis" = -27; +"@MMK_R_KO_exclam" = -10; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -32; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = -27; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_icircumflex" = -11; +"@MMK_R_KO_imacron" = -11; +"@MMK_R_KO_j" = -17; +"@MMK_R_KO_l.ss04" = -19; +"@MMK_R_KO_n" = -11; +"@MMK_R_KO_ninesuperior" = -49; +"@MMK_R_KO_onesuperior" = -91; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -21; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -29; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -46; +"@MMK_R_KO_s" = -30; +"@MMK_R_KO_sevensuperior" = -92; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -52; +"@MMK_R_KO_trademark" = -80; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 29; +"@MMK_R_KO_imacron" = 38; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = 3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -6; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -21; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 5; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asciicircum" = -49; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = -30; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 21; +"@MMK_R_KO_imacron" = 33; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -38; +"@MMK_R_KO_onesuperior" = -28; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -31; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = -31; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 57; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 38; +"@MMK_R_KO_eightsuperior" = 104; +"@MMK_R_KO_exclam" = 93; +"@MMK_R_KO_f" = 57; +"@MMK_R_KO_fivesuperior" = 107; +"@MMK_R_KO_foursuperior" = 62; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 74; +"@MMK_R_KO_j" = 63; +"@MMK_R_KO_l.ss04" = 73; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 85; +"@MMK_R_KO_onesuperior" = 46; +"@MMK_R_KO_parenright" = 49; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = 7; +"@MMK_R_KO_question.ss01" = 45; +"@MMK_R_KO_quotedbl" = 101; +"@MMK_R_KO_quotedblleft" = 100; +"@MMK_R_KO_quotedblleft.ss01" = 75; +"@MMK_R_KO_quoteleft" = 95; +"@MMK_R_KO_sevensuperior" = 38; +"@MMK_R_KO_sixsuperior" = 113; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 33; +"@MMK_R_KO_threesuperior" = 53; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_z" = 55; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -46; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_T" = -132; +"@MMK_R_KO_a" = -24; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_i" = -34; +"@MMK_R_KO_n" = -34; +"@MMK_R_KO_t" = -31; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -74; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -63; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = -100; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = -9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -34; +"@MMK_R_KO_foursuperior" = -32; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -9; +"@MMK_R_KO_ninesuperior" = -46; +"@MMK_R_KO_onesuperior" = -80; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -54; +"@MMK_R_KO_question.ss01" = -57; +"@MMK_R_KO_quotedbl" = -54; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -42; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -73; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -35; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_trademark" = -86; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = -71; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -60; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = -37; +"@MMK_R_KO_Y" = -97; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -39; +"@MMK_R_KO_bracketright" = -57; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -13; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_exclam" = -12; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = -7; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -77; +"@MMK_R_KO_parenright" = -77; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = -54; +"@MMK_R_KO_question.ss01" = -57; +"@MMK_R_KO_quotedbl" = -50; +"@MMK_R_KO_quotedblleft" = -17; +"@MMK_R_KO_quotedblleft.ss01" = -38; +"@MMK_R_KO_quoteleft" = -22; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = -32; +"@MMK_R_KO_slash" = -29; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_trademark" = -83; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -50; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -42; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -40; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -57; +"@MMK_R_KO_colon" = -17; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -37; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = -19; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = -34; +"@MMK_R_KO_foursuperior" = -37; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_icircumflex" = -5; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_l.ss04" = -12; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = -46; +"@MMK_R_KO_onesuperior" = -62; +"@MMK_R_KO_parenright" = -86; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_question" = -58; +"@MMK_R_KO_question.ss01" = -65; +"@MMK_R_KO_quotedbl" = -49; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -48; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -50; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -41; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = -33; +"@MMK_R_KO_trademark" = -89; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = -69; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = -48; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -47; +"@MMK_R_KO_O" = -54; +"@MMK_R_KO_S" = -49; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = -66; +"@MMK_R_KO_a.ss05" = -58; +"@MMK_R_KO_asterisk" = -40; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_egrave" = -53; +"@MMK_R_KO_eight" = -49; +"@MMK_R_KO_ellipsis" = -68; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_five" = -35; +"@MMK_R_KO_four" = -66; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -72; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 29; +"@MMK_R_KO_n" = -48; +"@MMK_R_KO_nine" = -43; +"@MMK_R_KO_one" = -52; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -57; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -59; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = -64; +"@MMK_R_KO_seven" = -9; +"@MMK_R_KO_six" = -59; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = -56; +"@MMK_R_KO_three" = -49; +"@MMK_R_KO_two" = -38; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_v" = -60; +"@MMK_R_KO_w" = -50; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = -44; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -24; +"@MMK_R_KO_O" = -53; +"@MMK_R_KO_S" = -45; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_Y" = -20; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_asterisk" = -42; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_eight" = -39; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_five" = -34; +"@MMK_R_KO_four" = -54; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -56; +"@MMK_R_KO_hyphen.case" = -70; +"@MMK_R_KO_nine" = -38; +"@MMK_R_KO_one" = -52; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -34; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -49; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteright" = -31; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_seven" = -11; +"@MMK_R_KO_six" = -55; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_three" = -45; +"@MMK_R_KO_two" = -10; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -100; +"@MMK_R_KO_U" = -27; +"@MMK_R_KO_V" = -103; +"@MMK_R_KO_W" = -72; +"@MMK_R_KO_Y" = -110; +"@MMK_R_KO_Z" = 26; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -110; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -53; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -110; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -91; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_parenright.case" = -42; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -110; +"@MMK_R_KO_quotedblleft" = -110; +"@MMK_R_KO_quoteright" = -110; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -80; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = -49; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 10; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_v" = -73; +"@MMK_R_KO_w" = -48; +"@MMK_R_KO_y" = -64; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = -20; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -41; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = -105; +"@MMK_R_KO_U" = -40; +"@MMK_R_KO_V" = -106; +"@MMK_R_KO_W" = -83; +"@MMK_R_KO_Y" = -106; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asterisk" = -106; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_eight" = -17; +"@MMK_R_KO_f" = -54; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -16; +"@MMK_R_KO_g" = -30; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -106; +"@MMK_R_KO_i" = -20; +"@MMK_R_KO_j" = -26; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = -93; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_parenright.case" = -47; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = -106; +"@MMK_R_KO_quotedblleft.ss01" = -106; +"@MMK_R_KO_quoteright.ss01" = -106; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_seven" = -87; +"@MMK_R_KO_six" = -31; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -65; +"@MMK_R_KO_three" = -18; +"@MMK_R_KO_two" = -5; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_v" = -86; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -55; +"@MMK_R_KO_z" = -8; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = -27; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = -69; +"@MMK_R_KO_S" = -62; +"@MMK_R_KO_T" = -135; +"@MMK_R_KO_U" = -72; +"@MMK_R_KO_V" = -134; +"@MMK_R_KO_W" = -103; +"@MMK_R_KO_Y" = -168; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -56; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_eight" = -55; +"@MMK_R_KO_f" = -60; +"@MMK_R_KO_five" = -61; +"@MMK_R_KO_four" = -102; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_i" = -27; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_nine" = -54; +"@MMK_R_KO_one" = -101; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_quotedbl" = -93; +"@MMK_R_KO_quotedblleft" = -99; +"@MMK_R_KO_quoteright" = -111; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_seven" = -98; +"@MMK_R_KO_six" = -69; +"@MMK_R_KO_t" = -79; +"@MMK_R_KO_three" = -58; +"@MMK_R_KO_two" = -12; +"@MMK_R_KO_u" = -50; +"@MMK_R_KO_v" = -98; +"@MMK_R_KO_w" = -74; +"@MMK_R_KO_y" = -44; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -102; +"@MMK_R_KO_H" = -13; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -89; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = -25; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = -23; +"@MMK_R_KO_a" = -63; +"@MMK_R_KO_a.ss05" = -57; +"@MMK_R_KO_asterisk" = -7; +"@MMK_R_KO_colon" = -25; +"@MMK_R_KO_comma" = -111; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -70; +"@MMK_R_KO_egrave" = -59; +"@MMK_R_KO_eight" = -30; +"@MMK_R_KO_ellipsis" = -228; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = -85; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -49; +"@MMK_R_KO_hyphen" = -76; +"@MMK_R_KO_hyphen.case" = -38; +"@MMK_R_KO_i" = -13; +"@MMK_R_KO_j" = -26; +"@MMK_R_KO_n" = -46; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = -14; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -44; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = -57; +"@MMK_R_KO_seven" = -5; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_slash" = -115; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_three" = -24; +"@MMK_R_KO_two" = -22; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -27; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = -36; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -101; +"@MMK_R_KO_U" = -33; +"@MMK_R_KO_V" = -106; +"@MMK_R_KO_W" = -73; +"@MMK_R_KO_Y" = -157; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -110; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 16; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -39; +"@MMK_R_KO_five" = -14; +"@MMK_R_KO_four" = -16; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -59; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -20; +"@MMK_R_KO_hyphen.case" = -110; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_n" = -11; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = -91; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_quotedblleft" = -228; +"@MMK_R_KO_quoteright" = -110; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_seven" = -82; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = -55; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -20; +"@MMK_R_KO_v" = -76; +"@MMK_R_KO_w" = -54; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = -23; +"@MMK_R_KO_H" = -33; +"@MMK_R_KO_I.ss02" = -20; +"@MMK_R_KO_J" = -13; +"@MMK_R_KO_O" = -54; +"@MMK_R_KO_S" = -34; +"@MMK_R_KO_T" = -126; +"@MMK_R_KO_U" = -52; +"@MMK_R_KO_V" = -127; +"@MMK_R_KO_W" = -92; +"@MMK_R_KO_Y" = -177; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asterisk" = -117; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eight" = -29; +"@MMK_R_KO_f" = -58; +"@MMK_R_KO_five" = -32; +"@MMK_R_KO_four" = -29; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -24; +"@MMK_R_KO_hyphen.case" = -117; +"@MMK_R_KO_i" = -33; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = -24; +"@MMK_R_KO_one" = -107; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -117; +"@MMK_R_KO_quoteright.ss01" = -117; +"@MMK_R_KO_s" = -25; +"@MMK_R_KO_seven" = -96; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = -75; +"@MMK_R_KO_three" = -30; +"@MMK_R_KO_two" = -20; +"@MMK_R_KO_u" = -36; +"@MMK_R_KO_v" = -92; +"@MMK_R_KO_w" = -67; +"@MMK_R_KO_y" = -48; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -74; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -82; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asterisk" = -3; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -111; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eight" = -13; +"@MMK_R_KO_ellipsis" = -228; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -48; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_nine" = 15; +"@MMK_R_KO_one" = -1; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 22; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_seven" = 5; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -91; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_three" = -9; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -79; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -47; +"@MMK_R_KO_g" = -26; +"@MMK_R_KO_guillemetleft" = -44; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -6; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -11; +"@MMK_R_KO_two" = -4; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -85; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = -73; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 19; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = -43; +"@MMK_R_KO_a.ss05" = -40; +"@MMK_R_KO_asterisk" = 25; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -111; +"@MMK_R_KO_e" = -49; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -228; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -3; +"@MMK_R_KO_four" = -59; +"@MMK_R_KO_g" = -42; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_hyphen.case" = -22; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = 8; +"@MMK_R_KO_one" = 9; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_seven" = 18; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_slash" = -98; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -75; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -82; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -18; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -110; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -110; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -50; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_n" = -10; +"@MMK_R_KO_nine" = 16; +"@MMK_R_KO_one" = -1; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 22; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_seven" = 5; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -92; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_three" = -8; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -89; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -80; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -9; +"@MMK_R_KO_Z" = -15; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -45; +"@MMK_R_KO_asterisk" = 15; +"@MMK_R_KO_colon" = -13; +"@MMK_R_KO_comma" = -111; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_egrave" = -35; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_ellipsis" = -111; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -8; +"@MMK_R_KO_four" = -63; +"@MMK_R_KO_g" = -45; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = -56; +"@MMK_R_KO_hyphen.case" = -29; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -40; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quoteright" = 12; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_slash" = -102; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -101; +"@MMK_R_KO_H" = -16; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -92; +"@MMK_R_KO_O" = -25; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -14; +"@MMK_R_KO_Z" = -26; +"@MMK_R_KO_a" = -59; +"@MMK_R_KO_a.ss05" = -51; +"@MMK_R_KO_asterisk" = -12; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_egrave" = -56; +"@MMK_R_KO_eight" = -29; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_five" = -25; +"@MMK_R_KO_four" = -83; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -75; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -80; +"@MMK_R_KO_hyphen.case" = -32; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_j" = -32; +"@MMK_R_KO_n" = -44; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = -19; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = -42; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -53; +"@MMK_R_KO_seven" = -7; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_slash" = -112; +"@MMK_R_KO_t" = -16; +"@MMK_R_KO_three" = -24; +"@MMK_R_KO_two" = -22; +"@MMK_R_KO_u" = -35; +"@MMK_R_KO_v" = -27; +"@MMK_R_KO_w" = -24; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = -32; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -91; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asterisk" = 8; +"@MMK_R_KO_colon" = -13; +"@MMK_R_KO_comma" = -93; +"@MMK_R_KO_comma.ss01" = -93; +"@MMK_R_KO_e" = -58; +"@MMK_R_KO_egrave" = -43; +"@MMK_R_KO_eight" = -12; +"@MMK_R_KO_ellipsis" = -93; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -11; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_g" = -46; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_hyphen.case" = -24; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -34; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = -93; +"@MMK_R_KO_period.ss01" = -93; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = 2; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -93; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -4; +"@MMK_R_KO_u" = -31; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -54; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -70; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_X" = -63; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = -15; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = -60; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -85; +"@MMK_R_KO_comma.ss01" = -90; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 7; +"@MMK_R_KO_ellipsis" = -92; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_period" = -87; +"@MMK_R_KO_period.ss01" = -90; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = 19; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = 7; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -55; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -70; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -56; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -95; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = -69; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -56; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = -30; +"@MMK_R_KO_Y" = -97; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 20; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -57; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = -7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -38; +"@MMK_R_KO_onesuperior" = -80; +"@MMK_R_KO_parenright" = -74; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = -47; +"@MMK_R_KO_question.ss01" = -50; +"@MMK_R_KO_quotedbl" = -46; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 20; +"@MMK_R_KO_sevensuperior" = -69; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_trademark" = -79; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -44; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = -29; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -83; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -51; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = -11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -30; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_icircumflex" = -8; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_l.ss04" = -12; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = -49; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = -55; +"@MMK_R_KO_question.ss01" = -58; +"@MMK_R_KO_quotedbl" = -49; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -43; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_sixsuperior" = -33; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = -37; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -87; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = -66; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 17; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 13; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -56; +"@MMK_R_KO_a.ss05" = -55; +"@MMK_R_KO_asterisk" = 3; +"@MMK_R_KO_colon" = -17; +"@MMK_R_KO_comma" = -94; +"@MMK_R_KO_comma.ss01" = -100; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -101; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -11; +"@MMK_R_KO_four" = -64; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -66; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -42; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = 3; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = -95; +"@MMK_R_KO_period.ss01" = -100; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 4; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = 10; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -51; +"@MMK_R_KO_seven" = 14; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_slash" = -103; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -3; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 11; +"@MMK_R_KO_eight" = 10; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_five" = 14; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_nine" = 26; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -51; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_slash" = -37; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 20; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -110; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -84; +"@MMK_R_KO_O" = -37; +"@MMK_R_KO_S" = -30; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_a.ss05" = -61; +"@MMK_R_KO_asterisk" = -9; +"@MMK_R_KO_colon" = -41; +"@MMK_R_KO_comma" = -108; +"@MMK_R_KO_comma.ss01" = -106; +"@MMK_R_KO_e" = -70; +"@MMK_R_KO_egrave" = -40; +"@MMK_R_KO_eight" = -31; +"@MMK_R_KO_ellipsis" = -116; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = -79; +"@MMK_R_KO_g" = -62; +"@MMK_R_KO_guillemetleft" = -78; +"@MMK_R_KO_guillemetright" = -59; +"@MMK_R_KO_hyphen" = -77; +"@MMK_R_KO_hyphen.case" = -56; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -44; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -25; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = -109; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -62; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = -36; +"@MMK_R_KO_slash" = -133; +"@MMK_R_KO_t" = -24; +"@MMK_R_KO_three" = -26; +"@MMK_R_KO_two" = -28; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -40; +"@MMK_R_KO_w" = -31; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = -36; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -16; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -53; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 9; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -56; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -3; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asterisk" = -6; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 18; +"@MMK_R_KO_eight" = 19; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_five" = 22; +"@MMK_R_KO_four" = 8; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 35; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -47; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 21; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_three" = 11; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eight" = 13; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_f" = 17; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -27; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = 21; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 19; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 17; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 17; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -74; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -23; +"@MMK_R_KO_J" = -61; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_X" = -63; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = -23; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = -23; +"@MMK_R_KO_bracketright" = -70; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -72; +"@MMK_R_KO_comma.ss01" = -84; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -84; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -68; +"@MMK_R_KO_parenright" = -65; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -84; +"@MMK_R_KO_question" = -13; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_sevensuperior" = -68; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -87; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -60; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -107; +"@MMK_R_KO_v" = 18; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = -19; +"@MMK_R_KO_J" = -38; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -58; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asciicircum" = -12; +"@MMK_R_KO_bracketright" = -59; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -49; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -60; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 21; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 8; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -62; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 9; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = -62; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -57; +"@MMK_R_KO_t" = 21; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -56; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_underscore" = -70; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 20; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -47; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -75; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -38; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -60; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_egrave" = -41; +"@MMK_R_KO_eightsuperior" = -32; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_l.ss04" = -13; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -48; +"@MMK_R_KO_onesuperior" = -85; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = -21; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -29; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -39; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_sevensuperior" = -87; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -42; +"@MMK_R_KO_trademark" = -78; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -69; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -43; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = -67; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -31; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 18; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -67; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = -31; +"@MMK_R_KO_I.ss02" = -26; +"@MMK_R_KO_J" = -26; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = -28; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_U" = -32; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_X" = -24; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = -23; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_bracketright" = -53; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = -32; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eightsuperior" = -39; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = -32; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_fivesuperior" = -44; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -59; +"@MMK_R_KO_guillemetright" = -44; +"@MMK_R_KO_hyphen" = -44; +"@MMK_R_KO_i" = -32; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -31; +"@MMK_R_KO_l.ss04" = -31; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_ninesuperior" = -58; +"@MMK_R_KO_onesuperior" = -65; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_period" = -35; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -53; +"@MMK_R_KO_question.ss01" = -53; +"@MMK_R_KO_quotedbl" = -45; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -55; +"@MMK_R_KO_quoteleft" = -31; +"@MMK_R_KO_quoteright" = -52; +"@MMK_R_KO_quoteright.ss01" = -36; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_sixsuperior" = -42; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_threesuperior" = -48; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = -30; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -28; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_Y" = -52; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asterisk" = -14; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 14; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eight" = 4; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_f" = 19; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 6; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 18; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 18; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -65; +"@MMK_R_KO_parenright.case" = -64; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = 7; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 13; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +A = { +Dcroat = -23; +Tbar = -79; +asciitilde = -81; +asterisk = -96; +backslash = -92; +g.ss06 = 0; +minus = -65; +one = -72; +ordmasculine = -86; +plus = -57; +quotedbl = -91; +registered = -74; +seven = -73; +two = 4; +twosuperior = -65; +}; +Aacute = { +Tbar = -64; +}; +Abrevedotbelow.ss01 = { +T = -91; +}; +Aogonek = { +comma = 32; +parenright = 0; +}; +Atilde = { +ordfeminine = -78; +}; +B = { +Hbar = 47; +hbar = 22; +idieresis = 55; +itilde = 68; +}; +C = { +h = 0; +l = 0; +plus = -2; +three = 4; +}; +D = { +Lslash = 33; +Oslash = 25; +braceright = -52; +bracketright.case = -41; +}; +E = { +H = 0; +idieresis = 74; +}; +Eogonek = { +comma = 27; +}; +F = { +fourinferior = -75; +i = 0; +igrave = 13; +}; +G = { +Lslash = 32; +lslash = 24; +}; +Germandbls = { +S = 25; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -2; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 30; +itilde = 63; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 42; +D = 42; +E = 42; +H = 42; +Hbar = 95; +I = 42; +L = 42; +M = 42; +O = 46; +R = 42; +S = 54; +U = 51; +W = 49; +i = 55; +}; +I = { +Hbar = 42; +I = 0; +jcircumflex = 47; +}; +Icircumflex = { +Icircumflex = 39; +l.ss04 = 24; +}; +Imacron = { +Imacron = 61; +}; +Itilde = { +itilde = 64; +}; +J = { +Hbar = 42; +itilde = 63; +}; +Jacute = { +Imacron = 40; +}; +K = { +asciitilde = -123; +four = -50; +idieresis = 51; +igrave = 18; +itilde = 47; +less = -69; +logicalnot = -119; +minus = -110; +one = -47; +oslash = 0; +plus = -94; +}; +L = { +H = 0; +Tbar = -83; +asciitilde = -129; +asterisk = -136; +backslash = -93; +equal = -2; +four = 0; +less = -57; +logicalnot = -195; +minus = -158; +one = -81; +ordfeminine = -184; +ordmasculine = -182; +oslash = 0; +plus = -113; +quotedbl = -182; +quoteleft.ss01 = -117; +quoteright = -111; +quoteright.ss01 = -117; +registered = -134; +seven = -74; +twosuperior = -181; +}; +Lcaron = { +A = 13; +O = -8; +U = -2; +Uacute = -2; +V = -7; +a = -8; +hyphen = 0; +hyphen.case = -138; +u = -8; +v = -65; +}; +Lcommaaccent = { +twosuperior = -181; +}; +Lslash = { +twosuperior = -102; +}; +M = { +Hbar = 42; +idieresis = 62; +igrave = 30; +itilde = 63; +}; +N = { +Hbar = 42; +idieresis = 62; +igrave = 30; +itilde = 63; +}; +O = { +Dcroat = 30; +Lslash = 34; +braceright = -50; +bracketright.case = -40; +itilde = 23; +}; +Oslash = { +T = -25; +V = -18; +Y = -25; +parenright = -33; +parenright.case = -29; +}; +P = { +fourinferior = -88; +idieresis = 49; +itilde = 48; +two = 7; +}; +R = { +Hbar = 63; +jcircumflex = 54; +two = 18; +}; +S = { +Hbar = 49; +Lslash = 33; +dollar = 13; +four = 11; +idieresis = 42; +itilde = 53; +lslash = 24; +three = 11; +}; +T = { +Oslash = -19; +a.ss05 = -79; +aacute.ss05 = -72; +abreve = -56; +abreveacute = -56; +acircumflex = -49; +acircumflexacute = -49; +acircumflexdotbelow = -49; +adieresis = -48; +adotbelow.ss05 = -79; +ae = -79; +agrave = -65; +amacron = -47; +ampersand = -34; +aring = -65; +asciitilde = -132; +atilde = -41; +equal = 0; +four = -85; +g.ss06 = -78; +h = -4; +i.ss01 = -11; +iacute = -24; +idieresis = 28; +idotless = -24; +igrave = 0; +itilde = 25; +less = -70; +logicalnot = -140; +minus = -120; +ograve = -57; +plus = -98; +racute = -24; +scaron = -30; +seven = 13; +twoinferior = -106; +udieresis = -23; +udieresis.ss01 = -23; +ugrave = -23; +uhorngrave = -23; +umacron = -23; +ycircumflex = -23; +ygrave = -23; +yhookabove = -23; +zcaron = -27; +zeroinferior = -108; +}; +Tbar = { +A = -90; +Aacute = -90; +Tbar = 13; +a = -48; +comma = -96; +e = -49; +o = -49; +period = -99; +slash = -100; +}; +Tcaron = { +a.ss05 = -86; +}; +Tcedilla = { +a.ss05 = -86; +abreve = -63; +four = -93; +}; +Tcommaaccent = { +a.ss05 = -86; +abreve = -63; +four = -93; +}; +Thorn = { +A = -39; +AE = -34; +Aacute = -39; +J = -39; +O = 29; +Oacute = 29; +V = -42; +Y = -76; +Yacute = -76; +a = 18; +aacute = 18; +e = 16; +o = 18; +oacute = 18; +period = -52; +}; +U = { +Hbar = 51; +jcircumflex = 53; +}; +V = { +four = -71; +iacute = -31; +ibreve = 27; +idieresis = 45; +igrave = 14; +itilde = 44; +minus = -69; +plus = -63; +scaron = -17; +seven = 10; +twoinferior = -85; +}; +W = { +Hbar = 49; +backslash = 25; +idieresis = 62; +igrave = 24; +itilde = 59; +}; +X = { +asciitilde = -131; +four = -55; +less = -73; +logicalnot = -127; +minus = -118; +notequal = -63; +one = -48; +plus = -100; +}; +Y = { +a.ss05 = -99; +agrave = -68; +amacron = -49; +ampersand = -71; +asciitilde = -134; +at = -75; +four = -125; +g.ss06 = -101; +igrave = 0; +less = -74; +logicalnot = -123; +minus = -109; +ograve = -61; +plus = -104; +scaron = -26; +twoinferior = -135; +}; +Z = { +four = 0; +ibreve = 55; +igrave = 40; +itilde = 74; +minus = -71; +plus = -60; +}; +_B.currency = { +_baht.bar = -18; +}; +a = { +braceright = -45; +}; +a.ss05 = { +g.ss06 = 13; +}; +acircumflexacute.ss05 = { +y = -37; +}; +adieresis.ss05 = { +germandbls = -21; +}; +ampersand = { +V = -79; +W = -56; +Y = -110; +quotedbl = -65; +quotedblleft = -35; +}; +aogonek = { +j = 14; +parenright = -19; +}; +aogonek.ss05 = { +parenright = -13; +}; +approxequal = { +parenright = -65; +parenright.case = -66; +}; +asciicircum = { +J = -107; +X = -83; +Y = -65; +bracketright = -69; +comma = -111; +comma.ss01 = -106; +four = -72; +hyphen = -173; +parenright = -88; +parenright.case = -87; +period = -110; +period.ss01 = -106; +slash = -121; +}; +asciitilde = { +I.ss02 = -78; +J = -76; +V = -43; +W = -25; +X = -97; +Y = -79; +Z = -73; +bracketright = -65; +bracketright.case = -65; +comma = -111; +comma.ss01 = -106; +eight = -5; +exclam = -9; +four = 0; +one = 0; +parenright = -78; +parenright.case = -74; +period = -110; +period.ss01 = -106; +question = -49; +quotedbl = -22; +quotedblright = -2; +seven = 0; +slash = -70; +three = -37; +two = 0; +}; +at = { +T = -25; +parenright = -71; +}; +b = { +asterisk = -64; +braceright = -72; +lslash = 20; +one = -23; +}; +backslash = { +T = -102; +V = -125; +Y = -139; +asterisk = -110; +backslash = -117; +quotedbl = -103; +quotedblleft = -85; +quotedblleft.ss01 = -101; +quotedblright = -93; +quotedblright.ss01 = -90; +quoteleft = -88; +quoteright = -93; +quotesingle = -93; +}; +baht = { +parenright = -53; +}; +braceleft = { +p = -2; +}; +bracketleft = { +asciicircum = -68; +asciitilde = -97; +bracketright = 9; +jcircumflex = 58; +p = -2; +pi = -47; +plus = -77; +x = -60; +}; +c = { +asterisk = -66; +braceright = -78; +}; +cent = { +parenright = -77; +}; +colon = { +T = -18; +Y = -60; +four = -9; +one = 0; +parenright = -60; +two = 12; +zero = 10; +}; +colon.ss01 = { +T = -33; +four = -22; +parenright = -72; +}; +comma = { +eightsuperior = -111; +fivesuperior = -111; +foursuperior = -111; +ninesuperior = -111; +onesuperior = -111; +quoteleft = -110; +quotesingle = -93; +sevensuperior = -111; +sixsuperior = -111; +threesuperior = -111; +twosuperior = -111; +}; +comma.ss01 = { +eightsuperior = -106; +fivesuperior = -106; +foursuperior = -106; +ninesuperior = -106; +onesuperior = -106; +sevensuperior = -106; +sixsuperior = -106; +threesuperior = -106; +twosuperior = -106; +}; +copyright = { +Y = -67; +parenright = -78; +}; +d = { +idieresis = 35; +igrave = 7; +itilde = 35; +}; +dcaron = { +C = 84; +H = 119; +bracketright = 57; +eightsuperior = 104; +exclam = 93; +exclam.ss01 = 84; +fivesuperior = 107; +foursuperior = 62; +h = 74; +i = 68; +j = 63; +k = 74; +l = 74; +l.ss03 = 75; +l.ss04 = 73; +ninesuperior = 85; +onesuperior = 46; +parenright = 49; +question = 7; +question.ss01 = 45; +quotedbl = 101; +quotedblleft = 100; +quotedblleft.ss01 = 75; +quoteleft = 95; +quoteleft.ss01 = 75; +quotesingle = 101; +sevensuperior = 38; +sixsuperior = 113; +t = 31; +t_i.liga = 33; +t_t.liga = 33; +threesuperior = 53; +twosuperior = 56; +zcaron = 55; +}; +dcroat = { +i = 18; +igrave = 28; +itilde = 35; +}; +degree = { +J = -89; +comma = -111; +comma.ss01 = -106; +emdash = -88; +endash = -88; +four = -83; +hyphen = -88; +parenright = -63; +parenright.case = -64; +period = -110; +period.ss01 = -106; +slash = -109; +}; +divide = { +parenright = -85; +}; +dollar = { +parenright = -62; +three = 3; +}; +e = { +asterisk = -70; +backslash = -54; +braceright = -78; +germandbls = 0; +one = -30; +seven = -32; +}; +ecircumflexacute = { +t = 8; +}; +eight = { +bracketright = -21; +degree = -22; +}; +eight.dnom = { +degree = -141; +question.ss01 = -101; +quotedbl = -113; +quotedblleft = -77; +quotedblright = -56; +}; +eightsuperior = { +comma = -111; +comma.ss01 = -106; +period = -110; +period.ss01 = -106; +slash = -101; +}; +ellipsis = { +Tbar = -94; +bracketright = -58; +eightsuperior = -190; +fivesuperior = -194; +foursuperior = -198; +ninesuperior = -200; +onesuperior = -137; +parenleft = -17; +parenleft.case = -29; +question = -102; +quoteleft = -110; +quoteright = -111; +quotesingle = -93; +sevensuperior = -178; +sixsuperior = -200; +threesuperior = -187; +twosuperior = -184; +}; +ellipsis.ss01 = { +Tbar = -112; +bracketright = -60; +eightsuperior = -190; +fivesuperior = -194; +foursuperior = -198; +ninesuperior = -200; +onesuperior = -137; +question.ss01 = -117; +quoteleft.ss01 = -117; +quoteright.ss01 = -117; +quotesingle = -93; +sevensuperior = -178; +sixsuperior = -200; +threesuperior = -187; +twosuperior = -184; +}; +emdash = { +foursuperior = -96; +question = -112; +}; +emdash.case = { +X = -113; +quotedblbase = -131; +quotedblbase.ss01 = -185; +}; +endash = { +X = -60; +endash = 0; +foursuperior = -96; +question = -112; +}; +endash.case = { +H = -15; +X = -111; +quotedblbase = -131; +quotedblbase.ss01 = -185; +}; +eng = { +bracketright = -5; +}; +eogonek = { +lslash = 19; +}; +equal = { +T = 0; +equal = 0; +parenright = -76; +parenright.case = -72; +}; +eth = { +a = 19; +e = 20; +g = 20; +hyphen = 20; +parenright = -33; +}; +euro = { +parenright = -67; +parenright.case = -58; +}; +exclamdown = { +T = -54; +V = -49; +Y = -86; +}; +f = { +igrave = 10; +n = 0; +o = 0; +}; +f_f.liga = { +igrave = 12; +}; +f_f_i.liga = { +idieresis = 32; +}; +fi = { +idieresis = 32; +}; +five = { +degree = -22; +ordmasculine = -12; +percent = -17; +}; +five.dnom = { +degree = -104; +question.ss01 = -105; +quotedblleft = -42; +}; +five.numr = { +fraction = -42; +}; +fiveinferior = { +T = -104; +}; +fivesuperior = { +comma = -111; +comma.ss01 = -106; +period = -110; +period.ss01 = -106; +slash = -104; +}; +fl = { +idieresis = 35; +itilde = 35; +periodcentered.loclCAT = 20; +}; +four = { +asciicircum = -76; +bracketright = -54; +bracketright.case = -52; +degree = -62; +ordfeminine = -57; +ordmasculine = -56; +percent = -63; +x = -42; +}; +four.dnom = { +degree = -122; +question.ss01 = -105; +quotedblleft = -62; +}; +fourinferior = { +T = -111; +V = -92; +}; +foursuperior = { +comma = -111; +comma.ss01 = -106; +period = -110; +period.ss01 = -106; +slash = -96; +}; +fraction = { +eight.dnom = -21; +four.dnom = -60; +fourinferior = -59; +seveninferior = 0; +two.dnom = -28; +zero.dnom = -22; +}; +g = { +bracketright = -17; +j = 12; +j.ss01 = 12; +parenright = -47; +slash = -6; +}; +g.ss06 = { +g.ss06 = 32; +}; +gcaron.ss06 = { +gcaron.ss06 = 21; +}; +gdotaccent = { +j = 10; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 21; +}; +germandbls = { +e = 15; +hyphen = 11; +parenright = -71; +}; +greater = { +T = -69; +parenright = -73; +}; +greaterequal = { +T = -58; +}; +guillemetleft = { +pi = 3; +}; +guillemetright = { +X = -79; +bracketright = -67; +}; +guilsinglright = { +X = -79; +}; +h = { +asterisk = -64; +}; +hyphen = { +Lslash = 36; +X = -59; +bracketright = -66; +foursuperior = -96; +pi = -5; +question = -112; +quotedblbase = -20; +quoteleft = -32; +quotesingle = -59; +x = -67; +}; +hyphen.case = { +Dcroat = 6; +X = -111; +bracketright.case = -76; +quotedblbase = -131; +quotedblbase.ss01 = -185; +quotesinglbase = -110; +}; +i = { +T = -13; +idieresis = 35; +jcircumflex = 22; +parenright = -23; +}; +i.ss01 = { +parenright = -30; +}; +iacute = { +rcaron = 14; +}; +icircumflex = { +b = 30; +h = 30; +i = 31; +icircumflex = 36; +j = 22; +k = 30; +l = 30; +l.ss03 = 30; +l.ss04 = 27; +question = 0; +quotedbl = 5; +quoteright = 30; +quotesingle = 31; +}; +idieresis = { +b = 35; +idieresis = 49; +k = 35; +l = 35; +l.ss03 = 36; +l.ss04 = 34; +}; +idotaccent = { +parenright = -23; +}; +idotaccent.ss01 = { +parenright = -30; +}; +imacron = { +b = 38; +imacron = 62; +j = 32; +k = 38; +kcommaaccent = 38; +l = 38; +l.ss04 = 37; +lcommaaccent = 38; +quotedbl = 10; +}; +infinity = { +parenright = -80; +parenright.case = -75; +}; +integral = { +a = -51; +}; +iogonek = { +j = 13; +}; +itilde = { +h = 35; +itilde = 40; +quotedbl = 13; +quotesingle = 39; +}; +j = { +j = 19; +}; +jacute = { +backslash = 28; +iogonek = 21; +}; +jcircumflex = { +i = 31; +jcircumflex = 53; +}; +k = { +oslash = -14; +}; +l = { +at = 0; +idieresis = 35; +igrave = 7; +itilde = 35; +jcircumflex = 20; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -24; +}; +l.ss04 = { +periodcentered.loclCAT = 20; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 84; +l = 128; +ncaron = 33; +scaron = 52; +twosuperior = 56; +}; +lcaron.ss03 = { +b = 66; +eightsuperior = 60; +exclam = 67; +exclam.ss01 = 58; +fivesuperior = 62; +k = 66; +ninesuperior = 44; +onesuperior = 26; +question = 0; +quotedbl = 56; +quotesingle = 56; +sevensuperior = 17; +sixsuperior = 68; +}; +lcaron.ss04 = { +exclam.ss01 = 84; +twosuperior = 56; +}; +liraTurkish = { +one = -93; +parenright = -85; +question = -106; +quotedbl = -98; +quotesingle = -93; +seven = -95; +}; +logicalnot = { +Y = -134; +parenright = -97; +seven = -56; +}; +m = { +asterisk = -64; +braceright = -47; +twosuperior = -20; +}; +minus = { +T = -115; +X = -118; +comma = -111; +one = -17; +parenright = -94; +parenright.case = -92; +period = -110; +seven = -19; +three = -76; +two = -33; +}; +mu = { +mu = 0; +parenright = -59; +quotesingle = -34; +}; +multiply = { +parenright = -87; +parenright.case = -86; +}; +n = { +asterisk = -64; +at = 0; +braceright = -47; +degree = -57; +g.ss06 = -2; +n = 0; +one = -29; +ordmasculine = -42; +}; +ncaron = { +Yacute = -57; +}; +nine = { +bracketright = -36; +degree = -20; +}; +nine.dnom = { +degree = -147; +question = -103; +question.ss01 = -103; +quotedbl = -119; +quotedblleft = -84; +quotedblleft.ss01 = -85; +quotedblright = -63; +quotedblright.ss01 = -74; +}; +ninesuperior = { +comma = -111; +comma.ss01 = -106; +fraction = -26; +period = -110; +period.ss01 = -106; +slash = -97; +}; +notequal = { +parenright = -87; +parenright.case = -85; +}; +numbersign = { +parenright = -62; +}; +o = { +asterisk = -72; +backslash = -54; +braceright = -75; +germandbls = 6; +lslash = 23; +n = 0; +one = -32; +}; +oacute = { +lslash = 9; +}; +ocircumflexacute = { +bracketright = 0; +parenright = 0; +}; +odieresis = { +germandbls = -6; +}; +ohorn = { +i = 39; +m = 39; +n = 39; +parenright = -24; +}; +ohornacute = { +c = 2; +i = 17; +m = 17; +n = 17; +p = 17; +t = 22; +t_i.liga = 22; +t_t.liga = 22; +}; +ohorndotbelow = { +c = 2; +i = 17; +n = 17; +p = 17; +t = 22; +t_i.liga = 22; +t_t.liga = 22; +u = 22; +}; +ohorngrave = { +i = 17; +n = 17; +parenright = -39; +}; +ohornhookabove = { +i = 17; +n = 17; +}; +ohorntilde = { +i = 17; +n = 17; +}; +ohungarumlaut = { +parenright = -17; +}; +one = { +comma.ss01 = -19; +degree = -17; +equal = 0; +four = 0; +icircumflex = 54; +nine = 14; +one = 0; +parenright = -11; +percent = 0; +period.ss01 = -20; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -107; +one.dnom = 0; +question.ss01 = -107; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -111; +comma.ss01 = -106; +period = -110; +period.ss01 = -106; +slash = -90; +}; +ordfeminine = { +comma = -111; +comma.ss01 = -106; +period = -110; +period.ss01 = -106; +}; +ordmasculine = { +comma = -111; +comma.ss01 = -106; +hyphen = -64; +parenright = -57; +period = -110; +period.ss01 = -106; +slash = -100; +}; +oslash = { +d = 4; +e = 6; +g = 5; +hyphen = 7; +parenright = -60; +y = -13; +}; +p = { +asterisk = -63; +backslash = -50; +braceright = -69; +lslash = 20; +one = -22; +}; +parenleft = { +Dcroat = -35; +H = 0; +Icircumflex = 8; +Oslash = -26; +ampersand = -56; +approxequal = -77; +asciicircum = -79; +asciitilde = -104; +at = -64; +cent = -62; +copyright = -77; +degree = -58; +divide = -79; +dollar = -52; +equal = -68; +euro = -70; +greaterequal = -39; +i = -11; +idotaccent = -11; +infinity = -72; +iogonek = 9; +jcircumflex = 36; +less = -66; +literSign = -63; +logicalnot = -97; +minus = -89; +mu = -15; +multiply = -81; +notequal = -79; +numbersign = -53; +oslash = -23; +p = 0; +parenleft = -61; +pi = -56; +plus = -85; +plusminus = -42; +published = -77; +question = -60; +quotedblbase = -6; +quoteleft = -51; +radical = -63; +scaron = -36; +section = -54; +sterling = -43; +x = -56; +}; +parenleft.case = { +Icircumflex = 19; +approxequal = -61; +asciicircum = -79; +asciitilde = -102; +dollar = -48; +equal = -65; +euro = -64; +minus = -88; +numbersign = -53; +parenleft.case = -57; +plus = -81; +question = -61; +quotedblbase = -26; +quoteleft = -53; +}; +parenright = { +bracketright = -31; +comma = -2; +comma.ss01 = -15; +hyphen = 14; +parenleft = 13; +parenright = -66; +period = -8; +period.ss01 = -27; +quotedbl = -23; +}; +parenright.case = { +comma = -23; +comma.ss01 = -38; +parenright.case = -62; +period = -26; +period.ss01 = -39; +}; +percent = { +asterisk = -97; +bracketright = -57; +comma.ss01 = -23; +eightsuperior = -79; +fivesuperior = -84; +foursuperior = -114; +ninesuperior = -93; +onesuperior = -86; +parenright = -82; +parenright.case = -63; +period = -10; +period.ss01 = -28; +question = -105; +question.ss01 = -102; +quotedbl = -81; +quotedblleft = -81; +quotedblright = -70; +quoteleft = -89; +quoteright = -70; +quotesingle = -80; +sevensuperior = -78; +sixsuperior = -86; +threesuperior = -81; +twosuperior = -50; +}; +period = { +bracketright = -49; +eightsuperior = -110; +fivesuperior = -110; +foursuperior = -110; +ninesuperior = -110; +onesuperior = -110; +ordfeminine = -110; +ordmasculine = -110; +parenleft.case = -26; +question = -101; +quoteleft = -110; +quotesingle = -93; +sevensuperior = -110; +sixsuperior = -110; +threesuperior = -110; +twosuperior = -110; +}; +period.ss01 = { +bracketright = -60; +eightsuperior = -106; +fivesuperior = -106; +foursuperior = -106; +ninesuperior = -106; +onesuperior = -106; +ordfeminine = -106; +ordmasculine = -106; +question.ss01 = -100; +sevensuperior = -106; +sixsuperior = -106; +threesuperior = -106; +twosuperior = -106; +}; +periodcentered.loclCAT = { +l = 20; +l.ss03 = 22; +}; +perthousand = { +asterisk = -136; +parenright = -84; +parenright.case = -64; +question = -109; +question.ss01 = -109; +quotedblleft = -91; +quotedblleft.ss01 = -92; +quotedblright = -71; +quotedblright.ss01 = -80; +quoteleft = -98; +quoteright = -71; +}; +pi = { +hyphen = -7; +parenright = -55; +period = 0; +pi = 7; +quotesingle = -24; +}; +plus = { +J = -83; +T = -96; +V = -63; +X = -99; +Y = -103; +braceright = -91; +bracketright = -77; +comma = -111; +comma.ss01 = -106; +one = -5; +parenright = -93; +parenright.case = -89; +period = -110; +period.ss01 = -106; +quotedbl = -43; +seven = -10; +slash = -76; +three = -64; +two = -22; +}; +published = { +parenright = -90; +}; +q = { +bracketright = -2; +j = 26; +parenright = -13; +}; +question = { +A = -77; +J = -74; +comma = -100; +hyphen = -36; +parenright = -55; +parenright.case = -56; +period = -101; +question = 0; +questiondown = -89; +slash = -91; +}; +question.ss01 = { +comma.ss01 = -93; +parenright = -56; +parenright.case = -57; +period.ss01 = -93; +questiondown.ss01 = -94; +}; +questiondown.case = { +T = -92; +V = -92; +Y = -107; +quotedbl = -99; +quotedblleft = -95; +quotedblleft.ss01 = -110; +quoteright = -96; +}; +questiondown.ss01 = { +C = -77; +Q = -75; +Q.ss09 = -75; +T = -121; +V = -136; +Y = -173; +four = -106; +quotedbl = -132; +quotedblleft.ss01 = -117; +quotesingle = -93; +}; +quotedbl = { +ellipsis.ss01 = -228; +exclamdown = -64; +g.ss06 = -65; +icircumflex = 0; +mu = -46; +questiondown = -144; +questiondown.case = -97; +questiondown.ss01 = -143; +underscore = -219; +}; +quotedblbase = { +copyright = -54; +divide = -116; +equal = -30; +euro = -75; +minus = -134; +p = 0; +plus = -124; +question = -102; +quotedblright = -228; +quoteleft = -110; +}; +quotedblbase.ss01 = { +divide = -143; +minus = -184; +plus = -146; +question.ss01 = -117; +quotedblright.ss01 = -247; +}; +quotedblleft = { +g.ss06 = -24; +mu = -13; +questiondown = -100; +questiondown.case = -65; +quotedblbase = -228; +underscore = -219; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -247; +questiondown.ss01 = -103; +quotedblbase.ss01 = -247; +underscore = -219; +}; +quotedblright = { +asciitilde = -83; +questiondown = -108; +questiondown.case = -67; +quotesinglbase = -110; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -247; +questiondown.case = -95; +questiondown.ss01 = -139; +}; +quoteleft = { +questiondown = -100; +questiondown.case = -66; +quotedblbase = -110; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -117; +}; +quoteright = { +icircumflex = 30; +questiondown = -111; +quotedblbase = -111; +}; +quoteright.ss01 = { +questiondown.ss01 = -117; +quotedblbase.ss01 = -117; +}; +quotesinglbase = { +T = -99; +V = -105; +Y = -110; +minus = -110; +plus = -110; +question = -101; +quotedblleft = -110; +quoteleft = -110; +}; +quotesinglbase.ss01 = { +T = -117; +V = -117; +Y = -117; +question.ss01 = -117; +}; +quotesingle = { +Hbar = 44; +g.ss06 = -52; +icircumflex = 31; +igrave = 10; +imacron = 37; +itilde = 42; +l.ss04 = 25; +questiondown = -93; +questiondown.case = -76; +underscore = -93; +}; +r = { +braceright = -68; +fourinferior = -74; +g.ss06 = -7; +parenright = -69; +}; +radical = { +A = -100; +}; +rcaron = { +sevensuperior = 0; +}; +registered = { +comma = -111; +comma.ss01 = -106; +parenright = -75; +parenright.case = -75; +period = -110; +period.ss01 = -106; +slash = -88; +}; +s = { +asterisk = -56; +braceright = -66; +l = 0; +}; +scaron = { +T = -43; +}; +semicolon = { +hyphen = -27; +}; +seven = { +minus = -63; +percent = 0; +plus = -54; +underscore = -110; +}; +seven.dnom = { +question.ss01 = -114; +}; +seven.numr = { +fraction = -53; +}; +seveninferior = { +parenright = -83; +}; +sevensuperior = { +A = -115; +comma = -111; +comma.ss01 = -106; +fraction = -56; +period = -110; +period.ss01 = -106; +slash = -137; +}; +six = { +bracketright = -26; +degree = -15; +}; +six.dnom = { +degree = -141; +question.ss01 = -104; +quotedbl = -114; +quotedblleft = -77; +quotedblleft.ss01 = -78; +quotedblright = -57; +}; +sixinferior = { +T = -103; +}; +sixsuperior = { +comma = -111; +comma.ss01 = -106; +period = -110; +period.ss01 = -106; +slash = -104; +}; +slash = { +fourinferior = -107; +g.ss06 = -70; +ibreve = 24; +l.ss04 = 24; +mu = -42; +quotedblbase = -114; +quotedblbase.ss01 = -120; +quotesinglbase = -110; +underscore = -152; +}; +sterling = { +two = 7; +}; +t_i.liga = { +idieresis = 32; +}; +tcaron = { +b = 39; +exclam = 65; +h = 39; +hyphen = -32; +i = 37; +j = 33; +k = 39; +parenright = 27; +quotedbl = 39; +quotedblleft = 37; +quotesingle = 44; +}; +tcedilla = { +parenright = -14; +}; +tenge = { +comma = -100; +comma.ss01 = -101; +period = -102; +period.ss01 = -101; +slash = -79; +}; +three = { +bracketright = -17; +}; +three.dnom = { +degree = -140; +question.ss01 = -102; +quotedbl = -112; +quotedblleft = -76; +quotedblright = -55; +}; +three.numr = { +fraction = -39; +}; +threeinferior = { +T = -104; +V = -86; +Y = -134; +}; +threesuperior = { +comma = -111; +comma.ss01 = -106; +fraction = -31; +parenright = -53; +period = -110; +period.ss01 = -106; +slash = -102; +}; +trademark = { +comma = -111; +comma.ss01 = -106; +hyphen = -81; +period = -110; +period.ss01 = -106; +slash = -113; +}; +two = { +percent = -2; +}; +two.dnom = { +degree = -140; +question.ss01 = -102; +quotedbl = -113; +quotedblleft = -76; +quotedblright = -56; +}; +twoinferior = { +T = -103; +V = -84; +Y = -132; +}; +twosuperior = { +comma = -111; +comma.ss01 = -106; +parenright = -52; +parenright.case = -53; +period = -110; +period.ss01 = -106; +slash = -100; +}; +uhorn = { +a = -18; +ohorn = -16; +ohornacute = -16; +ohorndotbelow = -16; +ohorndotbelow.ss01 = -16; +ohorngrave = -16; +ohornhookabove = -16; +ohorntilde = -13; +}; +uhornacute = { +a = -18; +c = -16; +}; +uhorndotbelow = { +a = -18; +c = -16; +comma = -21; +period = -25; +}; +uhorngrave = { +a = -18; +a.ss05 = -15; +}; +uhornhookabove = { +a = -18; +comma = -21; +comma.ss01 = -42; +period = -25; +period.ss01 = -43; +}; +uhorntilde = { +a = -18; +comma = -21; +period = -25; +}; +uhungarumlaut = { +parenright = -12; +}; +underscore = { +C = -82; +O = -82; +T = -112; +V = -140; +W = -91; +Y = -154; +asterisk = -136; +four = -197; +one = -99; +quotedbl = -219; +quotedblright = -219; +quotedblright.ss01 = -219; +quotesingle = -93; +seven = -81; +six = -69; +v = -103; +}; +uogonek = { +j = 14; +parenright = -19; +}; +v = { +braceright = -72; +n = 0; +}; +w = { +braceright = -67; +}; +x = { +four = -46; +}; +y = { +braceright = -71; +}; +ydotbelow = { +period = -76; +}; +zero = { +braceright = -46; +bracketright = -37; +bracketright.case = -36; +degree = -21; +percent = -9; +}; +zero.dnom = { +degree = -148; +question = -104; +question.ss01 = -104; +quotedbl = -120; +quotedblleft = -85; +quotedblleft.ss01 = -86; +quotedblright = -65; +quotedblright.ss01 = -75; +quoteleft = -92; +}; +zeroinferior = { +parenright = -72; +}; +zerosuperior = { +comma = -111; +comma.ss01 = -106; +fraction = -38; +period = -110; +period.ss01 = -106; +slash = -105; +}; +}; +"106FCE83-F343-403B-A314-646E4D059B3F" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = -42; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -156; +"@MMK_R_KO_U" = -36; +"@MMK_R_KO_V" = -158; +"@MMK_R_KO_W" = -99; +"@MMK_R_KO_X" = 33; +"@MMK_R_KO_Y" = -154; +"@MMK_R_KO_Z" = 36; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -165; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 27; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eightsuperior" = -89; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_fivesuperior" = -98; +"@MMK_R_KO_foursuperior" = -98; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -36; +"@MMK_R_KO_hyphen.case" = -65; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -114; +"@MMK_R_KO_onesuperior" = -104; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 27; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -89; +"@MMK_R_KO_question.ss01" = -97; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -117; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -138; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_sixsuperior" = -106; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = -51; +"@MMK_R_KO_threesuperior" = -88; +"@MMK_R_KO_trademark" = -183; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -89; +"@MMK_R_KO_w" = -66; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = -75; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -17; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 31; +"@MMK_R_KO_T" = -27; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = -16; +"@MMK_R_KO_Y" = -28; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 21; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_asciicircum" = -44; +"@MMK_R_KO_bracketright" = -51; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 20; +"@MMK_R_KO_guillemetleft" = 10; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_icircumflex" = 60; +"@MMK_R_KO_imacron" = 80; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = 5; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 27; +"@MMK_R_KO_sevensuperior" = -16; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -43; +"@MMK_R_KO_u" = 16; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -32; +"@MMK_R_KO_J" = -50; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 32; +"@MMK_R_KO_T" = -51; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_X" = -36; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = -28; +"@MMK_R_KO_a" = 18; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -29; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 11; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -62; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_hyphen.case" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 41; +"@MMK_R_KO_imacron" = 56; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -39; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_parenright.case" = -65; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 8; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -42; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -50; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -80; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -55; +"@MMK_R_KO_J" = -71; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -72; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -47; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = -55; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = -48; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = -6; +"@MMK_R_KO_comma" = -49; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -82; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 12; +"@MMK_R_KO_hyphen.case" = 24; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 36; +"@MMK_R_KO_imacron" = 45; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -41; +"@MMK_R_KO_parenright" = -83; +"@MMK_R_KO_parenright.case" = -82; +"@MMK_R_KO_period" = -49; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -52; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -78; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 31; +"@MMK_R_KO_I.ss02" = -37; +"@MMK_R_KO_J" = -65; +"@MMK_R_KO_O" = 41; +"@MMK_R_KO_S" = 28; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = 42; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -41; +"@MMK_R_KO_Y" = -52; +"@MMK_R_KO_Z" = -32; +"@MMK_R_KO_a" = 42; +"@MMK_R_KO_a.ss05" = 28; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = -44; +"@MMK_R_KO_comma.ss01" = -55; +"@MMK_R_KO_e" = 33; +"@MMK_R_KO_egrave" = 33; +"@MMK_R_KO_eightsuperior" = 25; +"@MMK_R_KO_ellipsis" = -78; +"@MMK_R_KO_exclam" = 38; +"@MMK_R_KO_fivesuperior" = 18; +"@MMK_R_KO_foursuperior" = 30; +"@MMK_R_KO_guillemetleft" = 35; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_hyphen.case" = 35; +"@MMK_R_KO_i" = 31; +"@MMK_R_KO_j" = 26; +"@MMK_R_KO_n" = 31; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -79; +"@MMK_R_KO_parenright.case" = -79; +"@MMK_R_KO_period" = -45; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 20; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_sixsuperior" = 18; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_threesuperior" = 28; +"@MMK_R_KO_u" = 43; +"@MMK_R_KO_y" = 33; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 23; +"@MMK_R_KO_Y" = 6; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -68; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 29; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -41; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -57; +"@MMK_R_KO_g" = -26; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = -12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 29; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 43; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 30; +"@MMK_R_KO_period" = 30; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -20; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -44; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -46; +"@MMK_R_KO_w" = -34; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -49; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -92; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 25; +"@MMK_R_KO_J" = -138; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -24; +"@MMK_R_KO_T" = 16; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 15; +"@MMK_R_KO_W" = 21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 14; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -30; +"@MMK_R_KO_asciicircum" = -64; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -73; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_egrave" = -33; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -230; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -49; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -58; +"@MMK_R_KO_g" = -27; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = -61; +"@MMK_R_KO_hyphen" = -39; +"@MMK_R_KO_hyphen.case" = 15; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 46; +"@MMK_R_KO_n" = -37; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_sevensuperior" = 8; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = -95; +"@MMK_R_KO_t" = -53; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_underscore" = -214; +"@MMK_R_KO_v" = -45; +"@MMK_R_KO_w" = -33; +"@MMK_R_KO_x" = -75; +"@MMK_R_KO_y" = -48; +"@MMK_R_KO_z" = -109; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -41; +"@MMK_R_KO_J" = -58; +"@MMK_R_KO_O" = 27; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -37; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -44; +"@MMK_R_KO_Y" = -49; +"@MMK_R_KO_Z" = -35; +"@MMK_R_KO_a" = 20; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -75; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -72; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 21; +"@MMK_R_KO_guillemetleft" = 20; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 32; +"@MMK_R_KO_hyphen.case" = 32; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 52; +"@MMK_R_KO_imacron" = 49; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -74; +"@MMK_R_KO_parenright.case" = -74; +"@MMK_R_KO_period" = -39; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -9; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 25; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -73; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -57; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = -60; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 21; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_hyphen.case" = 16; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -6; +"@MMK_R_KO_period" = 21; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_sevensuperior" = -36; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -60; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -5; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 1; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 60; +"@MMK_R_KO_imacron" = 101; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -4; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 51; +"@MMK_R_KO_J" = 17; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = 21; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 25; +"@MMK_R_KO_W" = 41; +"@MMK_R_KO_X" = 34; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 41; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = -89; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 29; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -40; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = -36; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -75; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -95; +"@MMK_R_KO_hyphen.case" = -95; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 29; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 43; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 15; +"@MMK_R_KO_parenright.case" = 30; +"@MMK_R_KO_period" = 30; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_sevensuperior" = 8; +"@MMK_R_KO_six" = -40; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_t" = -39; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -89; +"@MMK_R_KO_w" = -76; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -87; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -23; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = -25; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_X" = -11; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -20; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 67; +"@MMK_R_KO_imacron" = 90; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 2; +"@MMK_R_KO_parenright.case" = -8; +"@MMK_R_KO_period" = -22; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 7; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -33; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 49; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = 25; +"@MMK_R_KO_O" = -53; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 51; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 50; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -120; +"@MMK_R_KO_bracketright" = -4; +"@MMK_R_KO_colon" = 24; +"@MMK_R_KO_comma" = 41; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eightsuperior" = -28; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -87; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -59; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = -57; +"@MMK_R_KO_hyphen.case" = -109; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 14; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -12; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 42; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -39; +"@MMK_R_KO_quotedblleft.ss01" = -37; +"@MMK_R_KO_quoteleft" = -43; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_sevensuperior" = -9; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_sixsuperior" = -41; +"@MMK_R_KO_slash" = 42; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -23; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -83; +"@MMK_R_KO_w" = -68; +"@MMK_R_KO_x" = 25; +"@MMK_R_KO_y" = -84; +"@MMK_R_KO_z" = 25; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -75; +"@MMK_R_KO_S" = -34; +"@MMK_R_KO_T" = -149; +"@MMK_R_KO_U" = -58; +"@MMK_R_KO_V" = -182; +"@MMK_R_KO_W" = -92; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -146; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asciicircum" = -285; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 30; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_egrave" = -53; +"@MMK_R_KO_eightsuperior" = -220; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -46; +"@MMK_R_KO_fivesuperior" = -220; +"@MMK_R_KO_foursuperior" = -220; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -98; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -179; +"@MMK_R_KO_hyphen.case" = -189; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -223; +"@MMK_R_KO_onesuperior" = -104; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period" = 31; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -89; +"@MMK_R_KO_question.ss01" = -95; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -117; +"@MMK_R_KO_quotedblleft.ss01" = -128; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -117; +"@MMK_R_KO_quoteright.ss01" = -128; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_sevensuperior" = -177; +"@MMK_R_KO_six" = -47; +"@MMK_R_KO_sixsuperior" = -223; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -66; +"@MMK_R_KO_threesuperior" = -214; +"@MMK_R_KO_trademark" = -273; +"@MMK_R_KO_u" = -45; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -105; +"@MMK_R_KO_w" = -79; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -102; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 22; +"@MMK_R_KO_H" = 15; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 26; +"@MMK_R_KO_O" = -62; +"@MMK_R_KO_S" = -23; +"@MMK_R_KO_T" = -140; +"@MMK_R_KO_U" = -46; +"@MMK_R_KO_V" = -174; +"@MMK_R_KO_W" = -85; +"@MMK_R_KO_X" = 19; +"@MMK_R_KO_Y" = -139; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = -40; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_bracketright" = -75; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 44; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -46; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eightsuperior" = -113; +"@MMK_R_KO_ellipsis" = 4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = -124; +"@MMK_R_KO_foursuperior" = -109; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -138; +"@MMK_R_KO_hyphen.case" = -115; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -141; +"@MMK_R_KO_onesuperior" = -104; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = 45; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -82; +"@MMK_R_KO_question.ss01" = -88; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -117; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = -177; +"@MMK_R_KO_sixsuperior" = -125; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_threesuperior" = -107; +"@MMK_R_KO_u" = -36; +"@MMK_R_KO_y" = -94; +"@MMK_R_KO_z" = 24; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -54; +"@MMK_R_KO_J" = -70; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -71; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -47; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = -54; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = -47; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -48; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -81; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 12; +"@MMK_R_KO_hyphen.case" = 24; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 37; +"@MMK_R_KO_imacron" = 46; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -41; +"@MMK_R_KO_parenright" = -82; +"@MMK_R_KO_parenright.case" = -82; +"@MMK_R_KO_period" = -48; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -52; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -76; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -46; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -52; +"@MMK_R_KO_J" = -67; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -69; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = -44; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = -53; +"@MMK_R_KO_Y" = -56; +"@MMK_R_KO_Z" = -45; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -47; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -80; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 16; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -39; +"@MMK_R_KO_parenright" = -81; +"@MMK_R_KO_parenright.case" = -80; +"@MMK_R_KO_period" = -47; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 28; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 2; +"@MMK_R_KO_trademark" = -61; +"@MMK_R_KO_u" = 16; +"@MMK_R_KO_underscore" = -74; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 15; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -47; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -54; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_X" = -54; +"@MMK_R_KO_bracketright" = -42; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -48; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_ellipsis" = -81; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 12; +"@MMK_R_KO_hyphen.case" = 24; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -36; +"@MMK_R_KO_period" = -48; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_slash" = -52; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -86; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = -18; +"@MMK_R_KO_J" = -143; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -39; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = -29; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -23; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = 18; +"@MMK_R_KO_ellipsis" = -230; +"@MMK_R_KO_exclam" = 26; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = 11; +"@MMK_R_KO_foursuperior" = 31; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -45; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 93; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = -40; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 35; +"@MMK_R_KO_question.ss01" = 12; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 20; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 13; +"@MMK_R_KO_quoteright" = 28; +"@MMK_R_KO_quoteright.ss01" = 14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_sixsuperior" = 22; +"@MMK_R_KO_slash" = -90; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 21; +"@MMK_R_KO_trademark" = -27; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -214; +"@MMK_R_KO_v" = 35; +"@MMK_R_KO_w" = 46; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 29; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 49; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 65; +"@MMK_R_KO_J" = 38; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -75; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_X" = 46; +"@MMK_R_KO_Y" = -60; +"@MMK_R_KO_Z" = 50; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = -66; +"@MMK_R_KO_colon" = 35; +"@MMK_R_KO_comma" = 43; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 6; +"@MMK_R_KO_exclam" = 28; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_icircumflex" = 31; +"@MMK_R_KO_imacron" = 51; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = 15; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -44; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = 44; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteleft" = -22; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 43; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -66; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 28; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 27; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -22; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 10; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 73; +"@MMK_R_KO_imacron" = 87; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -10; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 20; +"@MMK_R_KO_question.ss01" = 6; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 19; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -6; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 20; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -16; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 32; +"@MMK_R_KO_T" = -37; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = -14; +"@MMK_R_KO_Y" = -35; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = 22; +"@MMK_R_KO_a.ss05" = 22; +"@MMK_R_KO_asciicircum" = -49; +"@MMK_R_KO_bracketright" = -59; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -24; +"@MMK_R_KO_e" = 14; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 21; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 30; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_icircumflex" = 58; +"@MMK_R_KO_imacron" = 67; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -28; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 24; +"@MMK_R_KO_sevensuperior" = -21; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -25; +"@MMK_R_KO_trademark" = -54; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -48; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -20; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -20; +"@MMK_R_KO_J" = -27; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -37; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -70; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -37; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = -46; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_hyphen.case" = -15; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -41; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -32; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = -14; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -155; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_J" = -139; +"@MMK_R_KO_O" = -71; +"@MMK_R_KO_S" = -27; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 27; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 4; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -150; +"@MMK_R_KO_a.ss05" = -56; +"@MMK_R_KO_asciicircum" = -92; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -71; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -154; +"@MMK_R_KO_egrave" = -93; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -184; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -56; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -82; +"@MMK_R_KO_g" = -151; +"@MMK_R_KO_guillemetleft" = -100; +"@MMK_R_KO_guillemetright" = -110; +"@MMK_R_KO_hyphen" = -148; +"@MMK_R_KO_hyphen.case" = -147; +"@MMK_R_KO_i" = -26; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -28; +"@MMK_R_KO_l.ss04" = 40; +"@MMK_R_KO_n" = -141; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -10; +"@MMK_R_KO_parenright.case" = -10; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -154; +"@MMK_R_KO_sevensuperior" = 3; +"@MMK_R_KO_six" = -50; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = -153; +"@MMK_R_KO_t" = -66; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -132; +"@MMK_R_KO_underscore" = -191; +"@MMK_R_KO_v" = -167; +"@MMK_R_KO_w" = -163; +"@MMK_R_KO_x" = -167; +"@MMK_R_KO_y" = -170; +"@MMK_R_KO_z" = -176; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = -47; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_X" = -9; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -37; +"@MMK_R_KO_comma.ss01" = -56; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 8; +"@MMK_R_KO_ellipsis" = -67; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_imacron" = 94; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = -37; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 7; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_sixsuperior" = 11; +"@MMK_R_KO_slash" = -44; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -4; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -56; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 21; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -59; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -4; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -21; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = -45; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -76; +"@MMK_R_KO_exclam" = -6; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_hyphen.case" = -4; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = -11; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -6; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = -45; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = -3; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -55; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 32; +"@MMK_R_KO_I.ss02" = 55; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_T" = 48; +"@MMK_R_KO_U" = 43; +"@MMK_R_KO_V" = 72; +"@MMK_R_KO_X" = 40; +"@MMK_R_KO_Y" = 74; +"@MMK_R_KO_Z" = 61; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 83; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -37; +"@MMK_R_KO_comma.ss01" = -56; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_eightsuperior" = 44; +"@MMK_R_KO_ellipsis" = -67; +"@MMK_R_KO_exclam" = 38; +"@MMK_R_KO_fivesuperior" = 53; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 24; +"@MMK_R_KO_onesuperior" = 36; +"@MMK_R_KO_parenright" = 94; +"@MMK_R_KO_parenright.case" = 94; +"@MMK_R_KO_period" = -37; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_question" = 16; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 40; +"@MMK_R_KO_quoteright" = 52; +"@MMK_R_KO_quoteright.ss01" = 32; +"@MMK_R_KO_sevensuperior" = 89; +"@MMK_R_KO_sixsuperior" = 27; +"@MMK_R_KO_slash" = -44; +"@MMK_R_KO_threesuperior" = 43; +"@MMK_R_KO_u" = 2; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -157; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = -145; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 34; +"@MMK_R_KO_W" = 38; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 36; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -81; +"@MMK_R_KO_a.ss05" = -72; +"@MMK_R_KO_asciicircum" = -79; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -34; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -85; +"@MMK_R_KO_egrave" = -76; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -192; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -30; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -39; +"@MMK_R_KO_g" = -81; +"@MMK_R_KO_guillemetleft" = -82; +"@MMK_R_KO_guillemetright" = -58; +"@MMK_R_KO_hyphen" = -94; +"@MMK_R_KO_hyphen.case" = -62; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 93; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 39; +"@MMK_R_KO_n" = -56; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 13; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = 12; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 11; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = -71; +"@MMK_R_KO_sevensuperior" = 24; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -171; +"@MMK_R_KO_t" = -31; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 3; +"@MMK_R_KO_u" = -47; +"@MMK_R_KO_underscore" = -188; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -37; +"@MMK_R_KO_x" = -44; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = -57; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -103; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = -99; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 27; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = 38; +"@MMK_R_KO_W" = 43; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = 38; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = -51; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asciicircum" = -59; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_egrave" = -55; +"@MMK_R_KO_eightsuperior" = 7; +"@MMK_R_KO_ellipsis" = -116; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = -50; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = -37; +"@MMK_R_KO_hyphen" = -49; +"@MMK_R_KO_hyphen.case" = -26; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 75; +"@MMK_R_KO_imacron" = 105; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 56; +"@MMK_R_KO_n" = -28; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 18; +"@MMK_R_KO_parenright" = 2; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 5; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_quoteright.ss01" = 19; +"@MMK_R_KO_s" = -41; +"@MMK_R_KO_sevensuperior" = 30; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -105; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = 3; +"@MMK_R_KO_trademark" = 5; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_underscore" = -125; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_x" = -23; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -26; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 33; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 34; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 35; +"@MMK_R_KO_Y" = 3; +"@MMK_R_KO_Z" = 34; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asciicircum" = -111; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -38; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = -75; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -30; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_hyphen.case" = -108; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 49; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = 7; +"@MMK_R_KO_period" = 26; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -32; +"@MMK_R_KO_question.ss01" = -39; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -34; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_sixsuperior" = -31; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = -50; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -74; +"@MMK_R_KO_w" = -66; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = -75; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -155; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = -145; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -25; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 35; +"@MMK_R_KO_W" = 38; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = 34; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -118; +"@MMK_R_KO_a.ss05" = -82; +"@MMK_R_KO_asciicircum" = -90; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -54; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -127; +"@MMK_R_KO_egrave" = -85; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -184; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -47; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -59; +"@MMK_R_KO_g" = -119; +"@MMK_R_KO_guillemetleft" = -100; +"@MMK_R_KO_guillemetright" = -79; +"@MMK_R_KO_hyphen" = -133; +"@MMK_R_KO_hyphen.case" = -102; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 34; +"@MMK_R_KO_imacron" = 79; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = 40; +"@MMK_R_KO_n" = -74; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = 8; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = -13; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -91; +"@MMK_R_KO_sevensuperior" = 23; +"@MMK_R_KO_six" = -44; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -163; +"@MMK_R_KO_t" = -49; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 3; +"@MMK_R_KO_u" = -70; +"@MMK_R_KO_underscore" = -181; +"@MMK_R_KO_v" = -55; +"@MMK_R_KO_w" = -63; +"@MMK_R_KO_x" = -68; +"@MMK_R_KO_y" = -57; +"@MMK_R_KO_z" = -69; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 17; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = 15; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_X" = 32; +"@MMK_R_KO_Y" = 27; +"@MMK_R_KO_Z" = 39; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -86; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 31; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -53; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -61; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -82; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -142; +"@MMK_R_KO_hyphen.case" = -111; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 37; +"@MMK_R_KO_imacron" = 83; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 38; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = 8; +"@MMK_R_KO_parenright" = 16; +"@MMK_R_KO_parenright.case" = 25; +"@MMK_R_KO_period" = 32; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -9; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_sevensuperior" = 22; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -36; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = -59; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -16; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -143; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -56; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -80; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -60; +"@MMK_R_KO_bracketright" = -75; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -60; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -32; +"@MMK_R_KO_quotedbl" = -31; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -52; +"@MMK_R_KO_quoteleft" = -32; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -41; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -67; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -76; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 1; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -168; +"@MMK_R_KO_U" = -19; +"@MMK_R_KO_V" = -91; +"@MMK_R_KO_W" = -65; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -133; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -93; +"@MMK_R_KO_bracketright" = -78; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = -38; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -46; +"@MMK_R_KO_foursuperior" = -44; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -55; +"@MMK_R_KO_onesuperior" = -76; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 27; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -50; +"@MMK_R_KO_question.ss01" = -77; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -79; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -79; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = -45; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = -26; +"@MMK_R_KO_threesuperior" = -38; +"@MMK_R_KO_trademark" = -96; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -100; +"@MMK_R_KO_U" = -19; +"@MMK_R_KO_V" = -74; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -82; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -78; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eightsuperior" = -38; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -43; +"@MMK_R_KO_foursuperior" = -42; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 9; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -55; +"@MMK_R_KO_onesuperior" = -67; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 27; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -50; +"@MMK_R_KO_question.ss01" = -72; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -70; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -56; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -69; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -44; +"@MMK_R_KO_slash" = 20; +"@MMK_R_KO_t" = -26; +"@MMK_R_KO_threesuperior" = -35; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_O" = -30; +"@MMK_R_KO_T" = -153; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_f" = -45; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_t" = -61; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -165; +"@MMK_R_KO_H" = -46; +"@MMK_R_KO_O" = -43; +"@MMK_R_KO_T" = -91; +"@MMK_R_KO_a" = -75; +"@MMK_R_KO_e" = -81; +"@MMK_R_KO_f" = -36; +"@MMK_R_KO_i" = -49; +"@MMK_R_KO_n" = -59; +"@MMK_R_KO_t" = -36; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -182; +"@MMK_R_KO_H" = -81; +"@MMK_R_KO_O" = -82; +"@MMK_R_KO_T" = -251; +"@MMK_R_KO_a" = -99; +"@MMK_R_KO_e" = -103; +"@MMK_R_KO_f" = -98; +"@MMK_R_KO_i" = -74; +"@MMK_R_KO_n" = -105; +"@MMK_R_KO_t" = -98; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -130; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -141; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = -66; +"@MMK_R_KO_a.ss05" = -53; +"@MMK_R_KO_asterisk" = 24; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -70; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -102; +"@MMK_R_KO_g" = -64; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -141; +"@MMK_R_KO_hyphen.case" = -84; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_nine" = 15; +"@MMK_R_KO_one" = 3; +"@MMK_R_KO_parenright" = -28; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 18; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_seven" = 34; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -134; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_three" = 3; +"@MMK_R_KO_two" = 16; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = -71; +"@MMK_R_KO_O" = -62; +"@MMK_R_KO_S" = -38; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = -71; +"@MMK_R_KO_a.ss05" = -70; +"@MMK_R_KO_asterisk" = -38; +"@MMK_R_KO_colon" = -70; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -74; +"@MMK_R_KO_egrave" = -74; +"@MMK_R_KO_eight" = -41; +"@MMK_R_KO_ellipsis" = -73; +"@MMK_R_KO_f" = -56; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -81; +"@MMK_R_KO_hyphen" = -82; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 87; +"@MMK_R_KO_n" = -72; +"@MMK_R_KO_nine" = -42; +"@MMK_R_KO_one" = -57; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -70; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -55; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -53; +"@MMK_R_KO_three" = -44; +"@MMK_R_KO_two" = -27; +"@MMK_R_KO_u" = -79; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -64; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -66; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -56; +"@MMK_R_KO_S" = -30; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_asterisk" = -37; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = -30; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -67; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -56; +"@MMK_R_KO_hyphen.case" = -83; +"@MMK_R_KO_nine" = -31; +"@MMK_R_KO_one" = -52; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -34; +"@MMK_R_KO_quotedblleft.ss01" = -37; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_slash" = 45; +"@MMK_R_KO_three" = -36; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -34; +"@MMK_R_KO_J" = -41; +"@MMK_R_KO_O" = 20; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -174; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -73; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_X" = -28; +"@MMK_R_KO_Y" = -95; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_asciicircum" = -60; +"@MMK_R_KO_bracketright" = -80; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -13; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -49; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -46; +"@MMK_R_KO_parenright" = -79; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = -35; +"@MMK_R_KO_question.ss01" = -75; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -68; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -60; +"@MMK_R_KO_quoteright" = -58; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 28; +"@MMK_R_KO_sevensuperior" = -52; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -81; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -54; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -21; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -63; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_eight" = -13; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = -63; +"@MMK_R_KO_guillemetleft" = -57; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_hyphen.case" = -63; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -63; +"@MMK_R_KO_parenright" = -6; +"@MMK_R_KO_parenright.case" = 18; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -63; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_seven" = -63; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_three" = -16; +"@MMK_R_KO_two" = 48; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -146; +"@MMK_R_KO_H" = -18; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_a" = -77; +"@MMK_R_KO_e" = -81; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_i" = -20; +"@MMK_R_KO_n" = -43; +"@MMK_R_KO_t" = -12; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -34; +"@MMK_R_KO_J" = -42; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -155; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -82; +"@MMK_R_KO_W" = -49; +"@MMK_R_KO_X" = -29; +"@MMK_R_KO_Y" = -113; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -74; +"@MMK_R_KO_bracketright" = -81; +"@MMK_R_KO_colon" = -18; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -52; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = 32; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -53; +"@MMK_R_KO_parenright" = -82; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -47; +"@MMK_R_KO_question" = -45; +"@MMK_R_KO_question.ss01" = -82; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -81; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 18; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -89; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -55; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -30; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = -24; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = 29; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -74; +"@MMK_R_KO_W" = -36; +"@MMK_R_KO_X" = -21; +"@MMK_R_KO_Y" = -86; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 20; +"@MMK_R_KO_bracketright" = -75; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 24; +"@MMK_R_KO_egrave" = 25; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_g" = 33; +"@MMK_R_KO_guillemetleft" = 24; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 46; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -46; +"@MMK_R_KO_parenright" = -75; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = -32; +"@MMK_R_KO_question.ss01" = -63; +"@MMK_R_KO_quotedbl" = -50; +"@MMK_R_KO_quotedblleft" = -64; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -61; +"@MMK_R_KO_quoteright" = -54; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = 32; +"@MMK_R_KO_sevensuperior" = -50; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -23; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 27; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -9; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eight" = 22; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 23; +"@MMK_R_KO_four" = 29; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 26; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_parenright.case" = -37; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 22; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 28; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = -32; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = -85; +"@MMK_R_KO_S" = -56; +"@MMK_R_KO_T" = -196; +"@MMK_R_KO_U" = -76; +"@MMK_R_KO_V" = -207; +"@MMK_R_KO_W" = -132; +"@MMK_R_KO_Y" = -195; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -67; +"@MMK_R_KO_a.ss05" = -39; +"@MMK_R_KO_asterisk" = -141; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_e" = -70; +"@MMK_R_KO_egrave" = -69; +"@MMK_R_KO_eight" = -52; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_f" = -65; +"@MMK_R_KO_five" = -62; +"@MMK_R_KO_four" = -200; +"@MMK_R_KO_g" = -50; +"@MMK_R_KO_guillemetleft" = -99; +"@MMK_R_KO_guillemetright" = -57; +"@MMK_R_KO_hyphen" = -200; +"@MMK_R_KO_hyphen.case" = -230; +"@MMK_R_KO_i" = -34; +"@MMK_R_KO_j" = -36; +"@MMK_R_KO_n" = -37; +"@MMK_R_KO_nine" = -59; +"@MMK_R_KO_one" = -90; +"@MMK_R_KO_parenright" = -73; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_quotedbl" = -148; +"@MMK_R_KO_quotedblleft" = -117; +"@MMK_R_KO_quoteright" = -117; +"@MMK_R_KO_s" = -48; +"@MMK_R_KO_seven" = -101; +"@MMK_R_KO_six" = -68; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -74; +"@MMK_R_KO_three" = -55; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -66; +"@MMK_R_KO_v" = -127; +"@MMK_R_KO_w" = -90; +"@MMK_R_KO_y" = -118; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = -37; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = -84; +"@MMK_R_KO_S" = -52; +"@MMK_R_KO_T" = -201; +"@MMK_R_KO_U" = -74; +"@MMK_R_KO_V" = -207; +"@MMK_R_KO_W" = -134; +"@MMK_R_KO_Y" = -199; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -66; +"@MMK_R_KO_a.ss05" = -40; +"@MMK_R_KO_asterisk" = -141; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = -69; +"@MMK_R_KO_egrave" = -69; +"@MMK_R_KO_eight" = -49; +"@MMK_R_KO_f" = -67; +"@MMK_R_KO_five" = -59; +"@MMK_R_KO_four" = -200; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -100; +"@MMK_R_KO_guillemetright" = -55; +"@MMK_R_KO_hyphen" = -202; +"@MMK_R_KO_hyphen.case" = -227; +"@MMK_R_KO_i" = -34; +"@MMK_R_KO_j" = -40; +"@MMK_R_KO_n" = -34; +"@MMK_R_KO_nine" = -59; +"@MMK_R_KO_one" = -93; +"@MMK_R_KO_parenright" = -77; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedbl" = -148; +"@MMK_R_KO_quotedblleft.ss01" = -128; +"@MMK_R_KO_quoteright.ss01" = -128; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = -103; +"@MMK_R_KO_six" = -67; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = -77; +"@MMK_R_KO_three" = -51; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -65; +"@MMK_R_KO_v" = -124; +"@MMK_R_KO_w" = -95; +"@MMK_R_KO_y" = -121; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -40; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -95; +"@MMK_R_KO_J" = -132; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -149; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -96; +"@MMK_R_KO_W" = -58; +"@MMK_R_KO_Y" = -133; +"@MMK_R_KO_Z" = -60; +"@MMK_R_KO_a" = 32; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -71; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 24; +"@MMK_R_KO_egrave" = 24; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_f" = -39; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 26; +"@MMK_R_KO_g" = 32; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -73; +"@MMK_R_KO_parenright" = -101; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -117; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -106; +"@MMK_R_KO_six" = 28; +"@MMK_R_KO_slash" = -52; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -38; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_y" = -41; +"@MMK_R_KO_z" = -78; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = -73; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 10; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 10; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_asciicircum" = -49; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -80; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -28; +"@MMK_R_KO_guillemetleft" = -51; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 5; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -7; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_underscore" = -83; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = 21; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = -57; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 43; +"@MMK_R_KO_U" = 25; +"@MMK_R_KO_V" = 40; +"@MMK_R_KO_W" = 46; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 37; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = -51; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eightsuperior" = 7; +"@MMK_R_KO_ellipsis" = -68; +"@MMK_R_KO_exclam" = 22; +"@MMK_R_KO_f" = 38; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_i" = 26; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 25; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 13; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -50; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 30; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 32; +"@MMK_R_KO_quoteright.ss01" = 10; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 23; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -54; +"@MMK_R_KO_t" = 17; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 2; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -64; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 22; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -16; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -27; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -59; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 23; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -30; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 1; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 27; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_Y" = 2; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asterisk" = -13; +"@MMK_R_KO_colon" = -24; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eight" = 24; +"@MMK_R_KO_ellipsis" = -46; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_five" = 27; +"@MMK_R_KO_four" = 38; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 18; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 39; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_n" = 10; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -30; +"@MMK_R_KO_parenright" = -4; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 24; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_three" = 28; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = -21; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -55; +"@MMK_R_KO_J" = -64; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 29; +"@MMK_R_KO_T" = -60; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -58; +"@MMK_R_KO_W" = -53; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = -39; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -60; +"@MMK_R_KO_colon" = -59; +"@MMK_R_KO_comma" = -55; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 23; +"@MMK_R_KO_ellipsis" = -75; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_five" = 26; +"@MMK_R_KO_four" = 21; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = 16; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -54; +"@MMK_R_KO_parenright" = -72; +"@MMK_R_KO_parenright.case" = -60; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -65; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -59; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -54; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = -36; +"@MMK_R_KO_three" = 30; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -47; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_y" = -49; +"@MMK_R_KO_z" = -54; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 15; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -101; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -49; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 37; +"@MMK_R_KO_comma" = 46; +"@MMK_R_KO_comma.ss01" = 18; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 20; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -28; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 43; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 32; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -16; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 65; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_underscore" = 45; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = -13; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = -46; +"@MMK_R_KO_J" = -57; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -100; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -46; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asterisk" = -6; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -17; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -39; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_hyphen.case" = -17; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_nine" = 16; +"@MMK_R_KO_one" = -42; +"@MMK_R_KO_parenright" = -73; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -21; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -6; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 3; +"@MMK_R_KO_two" = 22; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_y" = 3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -55; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = -70; +"@MMK_R_KO_J" = -92; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -83; +"@MMK_R_KO_W" = -52; +"@MMK_R_KO_Y" = -110; +"@MMK_R_KO_Z" = -57; +"@MMK_R_KO_a" = 14; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asterisk" = -64; +"@MMK_R_KO_colon" = -44; +"@MMK_R_KO_comma" = -60; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -92; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = 6; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = -52; +"@MMK_R_KO_hyphen" = 29; +"@MMK_R_KO_hyphen.case" = 16; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = -63; +"@MMK_R_KO_parenright" = -95; +"@MMK_R_KO_parenright.case" = -78; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -70; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -63; +"@MMK_R_KO_six" = 15; +"@MMK_R_KO_slash" = -59; +"@MMK_R_KO_t" = -29; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -38; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -49; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -95; +"@MMK_R_KO_J" = -129; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -149; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -94; +"@MMK_R_KO_W" = -45; +"@MMK_R_KO_Y" = -132; +"@MMK_R_KO_Z" = -55; +"@MMK_R_KO_a" = 32; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = -141; +"@MMK_R_KO_colon" = -71; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 24; +"@MMK_R_KO_egrave" = 24; +"@MMK_R_KO_eight" = 26; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = 16; +"@MMK_R_KO_four" = 45; +"@MMK_R_KO_g" = 32; +"@MMK_R_KO_guillemetleft" = 28; +"@MMK_R_KO_guillemetright" = -36; +"@MMK_R_KO_hyphen" = 26; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -72; +"@MMK_R_KO_parenright" = -101; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = -148; +"@MMK_R_KO_quotedblleft" = -117; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -106; +"@MMK_R_KO_six" = 28; +"@MMK_R_KO_slash" = -46; +"@MMK_R_KO_t" = -39; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = -30; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -72; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -78; +"@MMK_R_KO_H" = -10; +"@MMK_R_KO_I.ss02" = -104; +"@MMK_R_KO_J" = -150; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = -163; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -75; +"@MMK_R_KO_W" = -36; +"@MMK_R_KO_Y" = -111; +"@MMK_R_KO_Z" = -116; +"@MMK_R_KO_asterisk" = -98; +"@MMK_R_KO_colon" = -43; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_eight" = -15; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -26; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen.case" = 6; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -74; +"@MMK_R_KO_parenright.case" = -102; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -117; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_seven" = -91; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_slash" = -90; +"@MMK_R_KO_three" = -38; +"@MMK_R_KO_two" = -48; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = -13; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -26; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -36; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = -10; +"@MMK_R_KO_Y" = -20; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -69; +"@MMK_R_KO_bracketright" = -63; +"@MMK_R_KO_colon" = -13; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -37; +"@MMK_R_KO_exclam" = -13; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_fivesuperior" = -28; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_i" = -13; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = -17; +"@MMK_R_KO_l.ss04" = -17; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_ninesuperior" = -46; +"@MMK_R_KO_onesuperior" = -59; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -44; +"@MMK_R_KO_quotedbl" = -35; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -47; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = -36; +"@MMK_R_KO_quoteright.ss01" = -29; +"@MMK_R_KO_s" = -10; +"@MMK_R_KO_sevensuperior" = -68; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -33; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_underscore" = -15; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 35; +"@MMK_R_KO_I.ss02" = 49; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 46; +"@MMK_R_KO_U" = 46; +"@MMK_R_KO_V" = 48; +"@MMK_R_KO_W" = 61; +"@MMK_R_KO_X" = 39; +"@MMK_R_KO_Y" = 46; +"@MMK_R_KO_Z" = 41; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -50; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 23; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = 35; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = 18; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 23; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 19; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 8; +"@MMK_R_KO_onesuperior" = 29; +"@MMK_R_KO_parenright" = 29; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = 2; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quotedblleft.ss01" = 4; +"@MMK_R_KO_quoteleft" = 8; +"@MMK_R_KO_quoteright" = 29; +"@MMK_R_KO_quoteright.ss01" = 21; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 43; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = 14; +"@MMK_R_KO_slash" = 21; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = 24; +"@MMK_R_KO_trademark" = 9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -168; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -58; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -76; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = -79; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -38; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -51; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -41; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 24; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -25; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteleft" = -24; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_sevensuperior" = -79; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -81; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 18; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -15; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -50; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 1; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = -40; +"@MMK_R_KO_S" = -13; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = -25; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -30; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -98; +"@MMK_R_KO_bracketright" = -49; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eightsuperior" = -53; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 15; +"@MMK_R_KO_f" = -30; +"@MMK_R_KO_fivesuperior" = -58; +"@MMK_R_KO_foursuperior" = -46; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -49; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = -39; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -65; +"@MMK_R_KO_onesuperior" = -50; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 27; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -38; +"@MMK_R_KO_question.ss01" = -53; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -51; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -55; +"@MMK_R_KO_quoteright" = -46; +"@MMK_R_KO_quoteright.ss01" = -54; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_sixsuperior" = -53; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_threesuperior" = -49; +"@MMK_R_KO_trademark" = -68; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -39; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = -41; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = -1; +"@MMK_R_KO_bracketright" = 5; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = 105; +"@MMK_R_KO_exclam" = 111; +"@MMK_R_KO_f" = 31; +"@MMK_R_KO_fivesuperior" = 110; +"@MMK_R_KO_foursuperior" = 27; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 64; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 81; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 97; +"@MMK_R_KO_onesuperior" = 107; +"@MMK_R_KO_parenright" = 55; +"@MMK_R_KO_period" = -11; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 106; +"@MMK_R_KO_question.ss01" = 99; +"@MMK_R_KO_quotedbl" = 126; +"@MMK_R_KO_quotedblleft" = 96; +"@MMK_R_KO_quotedblleft.ss01" = 101; +"@MMK_R_KO_quoteleft" = 89; +"@MMK_R_KO_sevensuperior" = 119; +"@MMK_R_KO_sixsuperior" = 95; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = 90; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -72; +"@MMK_R_KO_H" = -58; +"@MMK_R_KO_O" = -43; +"@MMK_R_KO_T" = -236; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_e" = -51; +"@MMK_R_KO_f" = -79; +"@MMK_R_KO_i" = -60; +"@MMK_R_KO_n" = -60; +"@MMK_R_KO_t" = -82; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -164; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -82; +"@MMK_R_KO_W" = -51; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -114; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -78; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -34; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -40; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 12; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_ninesuperior" = -41; +"@MMK_R_KO_onesuperior" = -61; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = -38; +"@MMK_R_KO_question.ss01" = -66; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -67; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = -42; +"@MMK_R_KO_slash" = 1; +"@MMK_R_KO_t" = -16; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -86; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -26; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -36; +"@MMK_R_KO_J" = -54; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -152; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -83; +"@MMK_R_KO_W" = -51; +"@MMK_R_KO_X" = -36; +"@MMK_R_KO_Y" = -122; +"@MMK_R_KO_Z" = -24; +"@MMK_R_KO_a" = 14; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -78; +"@MMK_R_KO_bracketright" = -83; +"@MMK_R_KO_colon" = -31; +"@MMK_R_KO_comma" = -24; +"@MMK_R_KO_comma.ss01" = -46; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -38; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_ninesuperior" = -40; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -88; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_question" = -45; +"@MMK_R_KO_question.ss01" = -83; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -78; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -32; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = -16; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -92; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = -51; +"@MMK_R_KO_v" = -27; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_x" = -32; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = -34; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = -40; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -115; +"@MMK_R_KO_V" = -79; +"@MMK_R_KO_W" = -50; +"@MMK_R_KO_Y" = -100; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -85; +"@MMK_R_KO_colon" = -36; +"@MMK_R_KO_comma" = -26; +"@MMK_R_KO_comma.ss01" = -51; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -65; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -20; +"@MMK_R_KO_fivesuperior" = -32; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = -30; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_icircumflex" = -3; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -60; +"@MMK_R_KO_parenright" = -91; +"@MMK_R_KO_period" = -27; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = -51; +"@MMK_R_KO_question.ss01" = -81; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -78; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -59; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -62; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -37; +"@MMK_R_KO_slash" = -37; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_trademark" = -89; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -57; +"@MMK_R_KO_v" = -29; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = -36; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -36; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 34; +"@MMK_R_KO_J" = -43; +"@MMK_R_KO_O" = -72; +"@MMK_R_KO_S" = -30; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = -77; +"@MMK_R_KO_a.ss05" = -60; +"@MMK_R_KO_asterisk" = -17; +"@MMK_R_KO_comma" = 39; +"@MMK_R_KO_comma.ss01" = 10; +"@MMK_R_KO_e" = -79; +"@MMK_R_KO_egrave" = -77; +"@MMK_R_KO_eight" = -32; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_f" = -58; +"@MMK_R_KO_five" = -6; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -81; +"@MMK_R_KO_guillemetright" = -73; +"@MMK_R_KO_hyphen" = -92; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 112; +"@MMK_R_KO_n" = -40; +"@MMK_R_KO_nine" = -34; +"@MMK_R_KO_one" = -36; +"@MMK_R_KO_parenright" = 52; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -55; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -66; +"@MMK_R_KO_seven" = 35; +"@MMK_R_KO_six" = -57; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -59; +"@MMK_R_KO_three" = -41; +"@MMK_R_KO_two" = -21; +"@MMK_R_KO_u" = -72; +"@MMK_R_KO_v" = -63; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -40; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 52; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -71; +"@MMK_R_KO_S" = -29; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 50; +"@MMK_R_KO_asterisk" = -18; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 27; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = -27; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -50; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = -41; +"@MMK_R_KO_hyphen.case" = -83; +"@MMK_R_KO_nine" = -32; +"@MMK_R_KO_one" = -27; +"@MMK_R_KO_parenright.case" = 50; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 35; +"@MMK_R_KO_six" = -43; +"@MMK_R_KO_slash" = 47; +"@MMK_R_KO_three" = -33; +"@MMK_R_KO_two" = 27; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 27; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_J" = 31; +"@MMK_R_KO_O" = -45; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = -37; +"@MMK_R_KO_V" = -61; +"@MMK_R_KO_W" = -61; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 41; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -61; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_e" = -25; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_f" = -34; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -61; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -61; +"@MMK_R_KO_quoteright" = -61; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -61; +"@MMK_R_KO_six" = -39; +"@MMK_R_KO_slash" = 22; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = 52; +"@MMK_R_KO_u" = -20; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_y" = -61; +"@MMK_R_KO_z" = 32; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -19; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -58; +"@MMK_R_KO_S" = -40; +"@MMK_R_KO_T" = -58; +"@MMK_R_KO_U" = -54; +"@MMK_R_KO_V" = -58; +"@MMK_R_KO_W" = -58; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -52; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asterisk" = -58; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -56; +"@MMK_R_KO_eight" = -28; +"@MMK_R_KO_f" = -55; +"@MMK_R_KO_five" = -36; +"@MMK_R_KO_four" = -58; +"@MMK_R_KO_g" = -40; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen" = -58; +"@MMK_R_KO_hyphen.case" = -58; +"@MMK_R_KO_i" = -18; +"@MMK_R_KO_j" = -21; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = -35; +"@MMK_R_KO_one" = -58; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -58; +"@MMK_R_KO_quotedblleft.ss01" = -58; +"@MMK_R_KO_quoteright.ss01" = -58; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = -58; +"@MMK_R_KO_six" = -57; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -58; +"@MMK_R_KO_three" = -36; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -48; +"@MMK_R_KO_v" = -58; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -58; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -78; +"@MMK_R_KO_S" = -33; +"@MMK_R_KO_T" = -162; +"@MMK_R_KO_U" = -58; +"@MMK_R_KO_V" = -155; +"@MMK_R_KO_W" = -97; +"@MMK_R_KO_Y" = -159; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -45; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_eight" = -28; +"@MMK_R_KO_f" = -39; +"@MMK_R_KO_five" = -39; +"@MMK_R_KO_four" = -107; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = 62; +"@MMK_R_KO_nine" = -37; +"@MMK_R_KO_one" = -77; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -112; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_s" = -20; +"@MMK_R_KO_seven" = -87; +"@MMK_R_KO_six" = -47; +"@MMK_R_KO_t" = -58; +"@MMK_R_KO_three" = -33; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -40; +"@MMK_R_KO_v" = -83; +"@MMK_R_KO_w" = -74; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -148; +"@MMK_R_KO_H" = -16; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -148; +"@MMK_R_KO_O" = -25; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = -24; +"@MMK_R_KO_a" = -84; +"@MMK_R_KO_a.ss05" = -56; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -18; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -87; +"@MMK_R_KO_egrave" = -80; +"@MMK_R_KO_eight" = -26; +"@MMK_R_KO_ellipsis" = -148; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -121; +"@MMK_R_KO_g" = -82; +"@MMK_R_KO_guillemetleft" = -78; +"@MMK_R_KO_guillemetright" = -47; +"@MMK_R_KO_hyphen" = -148; +"@MMK_R_KO_hyphen.case" = -116; +"@MMK_R_KO_i" = -20; +"@MMK_R_KO_j" = -29; +"@MMK_R_KO_n" = -48; +"@MMK_R_KO_nine" = -9; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = -65; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_slash" = -148; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_three" = -17; +"@MMK_R_KO_two" = -8; +"@MMK_R_KO_u" = -35; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -43; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = -15; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_O" = -73; +"@MMK_R_KO_S" = -38; +"@MMK_R_KO_T" = -121; +"@MMK_R_KO_U" = -57; +"@MMK_R_KO_V" = -121; +"@MMK_R_KO_W" = -73; +"@MMK_R_KO_Y" = -121; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -27; +"@MMK_R_KO_asterisk" = -73; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_egrave" = -55; +"@MMK_R_KO_eight" = -42; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_f" = -52; +"@MMK_R_KO_five" = -44; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -61; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_hyphen.case" = -73; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_j" = 26; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = -49; +"@MMK_R_KO_one" = -73; +"@MMK_R_KO_period" = 23; +"@MMK_R_KO_quotedblleft" = -117; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_seven" = -73; +"@MMK_R_KO_six" = -57; +"@MMK_R_KO_slash" = 29; +"@MMK_R_KO_t" = -65; +"@MMK_R_KO_three" = -39; +"@MMK_R_KO_two" = 9; +"@MMK_R_KO_u" = -45; +"@MMK_R_KO_v" = -73; +"@MMK_R_KO_w" = -73; +"@MMK_R_KO_y" = -43; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = -68; +"@MMK_R_KO_S" = -44; +"@MMK_R_KO_T" = -128; +"@MMK_R_KO_U" = -66; +"@MMK_R_KO_V" = -128; +"@MMK_R_KO_W" = -68; +"@MMK_R_KO_Y" = -128; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -55; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asterisk" = -68; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -54; +"@MMK_R_KO_egrave" = -59; +"@MMK_R_KO_eight" = -41; +"@MMK_R_KO_f" = -63; +"@MMK_R_KO_five" = -48; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -25; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -55; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -28; +"@MMK_R_KO_j" = 23; +"@MMK_R_KO_n" = -34; +"@MMK_R_KO_nine" = -47; +"@MMK_R_KO_one" = -68; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_seven" = -68; +"@MMK_R_KO_six" = -55; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = -68; +"@MMK_R_KO_three" = -49; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -54; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -68; +"@MMK_R_KO_y" = -45; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -117; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = -117; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 25; +"@MMK_R_KO_W" = 35; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -73; +"@MMK_R_KO_a.ss05" = -50; +"@MMK_R_KO_asterisk" = 11; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_e" = -80; +"@MMK_R_KO_egrave" = -68; +"@MMK_R_KO_eight" = -7; +"@MMK_R_KO_ellipsis" = -117; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -117; +"@MMK_R_KO_g" = -74; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = -117; +"@MMK_R_KO_hyphen.case" = -117; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_n" = -43; +"@MMK_R_KO_nine" = 6; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_s" = -66; +"@MMK_R_KO_seven" = 37; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_slash" = -117; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 10; +"@MMK_R_KO_u" = -31; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = -24; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -68; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 5; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -68; +"@MMK_R_KO_a.ss05" = -63; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -68; +"@MMK_R_KO_eight" = -12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -8; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -68; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -41; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_n" = -43; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -64; +"@MMK_R_KO_seven" = 19; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -36; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = -50; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -117; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = -117; +"@MMK_R_KO_O" = -32; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 27; +"@MMK_R_KO_Y" = 10; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -93; +"@MMK_R_KO_a.ss05" = -67; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_e" = -95; +"@MMK_R_KO_egrave" = -82; +"@MMK_R_KO_eight" = -15; +"@MMK_R_KO_ellipsis" = -117; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -117; +"@MMK_R_KO_g" = -92; +"@MMK_R_KO_guillemetleft" = -88; +"@MMK_R_KO_guillemetright" = -65; +"@MMK_R_KO_hyphen" = -117; +"@MMK_R_KO_hyphen.case" = -117; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -68; +"@MMK_R_KO_nine" = -7; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 10; +"@MMK_R_KO_s" = -78; +"@MMK_R_KO_seven" = 21; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_slash" = -117; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = -5; +"@MMK_R_KO_u" = -49; +"@MMK_R_KO_v" = -37; +"@MMK_R_KO_w" = -36; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -43; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -63; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = -63; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 35; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -63; +"@MMK_R_KO_a.ss05" = -50; +"@MMK_R_KO_asterisk" = 11; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_egrave" = -63; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -63; +"@MMK_R_KO_g" = -63; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_hyphen.case" = -63; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_n" = -39; +"@MMK_R_KO_nine" = 6; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_s" = -53; +"@MMK_R_KO_seven" = 37; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_slash" = -63; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 10; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = -24; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -63; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -63; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -63; +"@MMK_R_KO_a.ss05" = -63; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_egrave" = -63; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_f" = -20; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -63; +"@MMK_R_KO_g" = -63; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -63; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_hyphen.case" = -63; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -55; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_s" = -63; +"@MMK_R_KO_seven" = 15; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_slash" = -63; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_three" = -17; +"@MMK_R_KO_two" = -9; +"@MMK_R_KO_u" = -49; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -39; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -56; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = -19; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -68; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = -68; +"@MMK_R_KO_a.ss05" = -68; +"@MMK_R_KO_asterisk" = -4; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -68; +"@MMK_R_KO_eight" = -23; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_five" = -21; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -68; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -65; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_j" = -27; +"@MMK_R_KO_n" = -58; +"@MMK_R_KO_nine" = -13; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = -68; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_three" = -18; +"@MMK_R_KO_two" = -11; +"@MMK_R_KO_u" = -53; +"@MMK_R_KO_v" = -39; +"@MMK_R_KO_w" = -38; +"@MMK_R_KO_y" = -40; +"@MMK_R_KO_z" = -68; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -57; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -57; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_Y" = 3; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asterisk" = 8; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -57; +"@MMK_R_KO_comma.ss01" = -57; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_egrave" = -57; +"@MMK_R_KO_eight" = -12; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -57; +"@MMK_R_KO_g" = -57; +"@MMK_R_KO_guillemetleft" = -57; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = -57; +"@MMK_R_KO_hyphen.case" = -57; +"@MMK_R_KO_i" = -10; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -57; +"@MMK_R_KO_period.ss01" = -57; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = 11; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_slash" = -57; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -28; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -95; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -90; +"@MMK_R_KO_J" = -104; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -166; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = -79; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_Z" = -97; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asciicircum" = -18; +"@MMK_R_KO_bracketright" = -81; +"@MMK_R_KO_colon" = 24; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -40; +"@MMK_R_KO_egrave" = -40; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -113; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 5; +"@MMK_R_KO_g" = -32; +"@MMK_R_KO_guillemetleft" = -43; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -100; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -96; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -62; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -135; +"@MMK_R_KO_v" = 19; +"@MMK_R_KO_w" = 23; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 16; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -17; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = -149; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -74; +"@MMK_R_KO_W" = -45; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -92; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 23; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = -77; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -26; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = -27; +"@MMK_R_KO_question.ss01" = -70; +"@MMK_R_KO_quotedbl" = -53; +"@MMK_R_KO_quotedblleft" = -66; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -53; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 25; +"@MMK_R_KO_sevensuperior" = -59; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -78; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -31; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -159; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_bracketright" = -75; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_exclam" = -12; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_i" = -9; +"@MMK_R_KO_icircumflex" = -9; +"@MMK_R_KO_imacron" = -6; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_l.ss04" = -11; +"@MMK_R_KO_n" = -9; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = -59; +"@MMK_R_KO_parenright" = -72; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = -32; +"@MMK_R_KO_question.ss01" = -60; +"@MMK_R_KO_quotedbl" = -56; +"@MMK_R_KO_quotedblleft" = -57; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -62; +"@MMK_R_KO_quoteright" = -52; +"@MMK_R_KO_quoteright.ss01" = -59; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_sixsuperior" = -27; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = -16; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -158; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = -141; +"@MMK_R_KO_O" = -45; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 39; +"@MMK_R_KO_W" = 42; +"@MMK_R_KO_Y" = 32; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -93; +"@MMK_R_KO_a.ss05" = -84; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -45; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -99; +"@MMK_R_KO_egrave" = -82; +"@MMK_R_KO_eight" = -20; +"@MMK_R_KO_ellipsis" = -182; +"@MMK_R_KO_f" = -40; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -112; +"@MMK_R_KO_g" = -93; +"@MMK_R_KO_guillemetleft" = -93; +"@MMK_R_KO_guillemetright" = -71; +"@MMK_R_KO_hyphen" = -103; +"@MMK_R_KO_hyphen.case" = -82; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -68; +"@MMK_R_KO_nine" = -18; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -82; +"@MMK_R_KO_seven" = 36; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_slash" = -161; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_three" = -23; +"@MMK_R_KO_two" = -18; +"@MMK_R_KO_u" = -60; +"@MMK_R_KO_v" = -44; +"@MMK_R_KO_w" = -47; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = -69; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -27; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 32; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_ellipsis" = -45; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 28; +"@MMK_R_KO_four" = 39; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 19; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 39; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_n" = 15; +"@MMK_R_KO_nine" = 7; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 25; +"@MMK_R_KO_seven" = 11; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 33; +"@MMK_R_KO_two" = 7; +"@MMK_R_KO_u" = 16; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -154; +"@MMK_R_KO_H" = 13; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = -141; +"@MMK_R_KO_O" = -32; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = 27; +"@MMK_R_KO_U" = 25; +"@MMK_R_KO_V" = 43; +"@MMK_R_KO_W" = 47; +"@MMK_R_KO_Y" = 44; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = -72; +"@MMK_R_KO_a.ss05" = -64; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -34; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -76; +"@MMK_R_KO_egrave" = -62; +"@MMK_R_KO_eight" = -17; +"@MMK_R_KO_ellipsis" = -184; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = -86; +"@MMK_R_KO_g" = -72; +"@MMK_R_KO_guillemetleft" = -77; +"@MMK_R_KO_guillemetright" = -52; +"@MMK_R_KO_hyphen" = -92; +"@MMK_R_KO_hyphen.case" = -64; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 20; +"@MMK_R_KO_quoteright.ss01" = 18; +"@MMK_R_KO_s" = -62; +"@MMK_R_KO_seven" = 44; +"@MMK_R_KO_six" = -26; +"@MMK_R_KO_slash" = -167; +"@MMK_R_KO_t" = -26; +"@MMK_R_KO_three" = -18; +"@MMK_R_KO_two" = -11; +"@MMK_R_KO_u" = -41; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -43; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -81; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -38; +"@MMK_R_KO_bracketright" = -68; +"@MMK_R_KO_colon" = 35; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -25; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_period" = 25; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -43; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 19; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 19; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -17; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 35; +"@MMK_R_KO_T" = -22; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -20; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = 24; +"@MMK_R_KO_a.ss05" = 23; +"@MMK_R_KO_asterisk" = 8; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eight" = 29; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_five" = 31; +"@MMK_R_KO_four" = 37; +"@MMK_R_KO_g" = 24; +"@MMK_R_KO_guillemetleft" = 12; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 35; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 14; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_n" = 12; +"@MMK_R_KO_nine" = 13; +"@MMK_R_KO_one" = 2; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 29; +"@MMK_R_KO_seven" = 11; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_slash" = -16; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 35; +"@MMK_R_KO_two" = 16; +"@MMK_R_KO_u" = 18; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 36; +"@MMK_R_KO_J" = 25; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_Y" = -23; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_colon" = 29; +"@MMK_R_KO_comma" = 34; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -66; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -37; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_hyphen.case" = -9; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 13; +"@MMK_R_KO_one" = 8; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 35; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 6; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteright" = 17; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_seven" = 17; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 40; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 17; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -88; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -90; +"@MMK_R_KO_J" = -101; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -170; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = -74; +"@MMK_R_KO_Y" = -56; +"@MMK_R_KO_Z" = -90; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -78; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eightsuperior" = 11; +"@MMK_R_KO_ellipsis" = -109; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 21; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -31; +"@MMK_R_KO_icircumflex" = -1; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = -75; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = 3; +"@MMK_R_KO_slash" = -96; +"@MMK_R_KO_t" = 17; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -105; +"@MMK_R_KO_v" = 24; +"@MMK_R_KO_w" = 31; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 21; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -66; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = -76; +"@MMK_R_KO_J" = -76; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -164; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = -37; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = -66; +"@MMK_R_KO_Y" = -63; +"@MMK_R_KO_Z" = -69; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -18; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = 18; +"@MMK_R_KO_ellipsis" = -83; +"@MMK_R_KO_exclam" = 16; +"@MMK_R_KO_f" = 27; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 16; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_icircumflex" = 11; +"@MMK_R_KO_imacron" = 11; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 11; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 3; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -9; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_sixsuperior" = 16; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = 24; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -53; +"@MMK_R_KO_u" = 21; +"@MMK_R_KO_underscore" = -90; +"@MMK_R_KO_v" = 32; +"@MMK_R_KO_w" = 40; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = 29; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -168; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -44; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -67; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -78; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = -76; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -53; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 24; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -37; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_sevensuperior" = -72; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -73; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 18; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -174; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -71; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asciicircum" = -39; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 29; +"@MMK_R_KO_comma" = 21; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -75; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -38; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_sevensuperior" = -66; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 17; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -37; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_bracketright" = -63; +"@MMK_R_KO_colon" = 29; +"@MMK_R_KO_comma" = 21; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -75; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_sevensuperior" = -63; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 17; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = -27; +"@MMK_R_KO_J" = -46; +"@MMK_R_KO_O" = 36; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = -35; +"@MMK_R_KO_a" = 20; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eight" = 11; +"@MMK_R_KO_ellipsis" = -70; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_five" = 12; +"@MMK_R_KO_four" = 17; +"@MMK_R_KO_g" = 21; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 33; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_nine" = 22; +"@MMK_R_KO_one" = -6; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_parenright.case" = -57; +"@MMK_R_KO_period" = -39; +"@MMK_R_KO_period.ss01" = -56; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = 33; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_three" = 14; +"@MMK_R_KO_two" = 14; +"@MMK_R_KO_u" = 21; +"@MMK_R_KO_v" = 26; +"@MMK_R_KO_w" = 31; +"@MMK_R_KO_y" = 22; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -41; +Tbar = -140; +asciitilde = -59; +asterisk = -128; +backslash = -144; +g.ss06 = 7; +minus = -96; +one = -65; +ordmasculine = -127; +plus = -77; +quotedbl = -141; +registered = -92; +seven = -76; +two = 41; +twosuperior = -76; +}; +Aacute = { +Tbar = -140; +}; +Abrevedotbelow.ss01 = { +T = -165; +}; +Aogonek = { +comma = 82; +parenright = 0; +}; +Atilde = { +ordfeminine = -128; +}; +B = { +Hbar = 41; +hbar = 44; +idieresis = 54; +itilde = 69; +}; +C = { +h = 0; +l = 0; +plus = -5; +three = 34; +}; +D = { +Lslash = 23; +Oslash = 11; +braceright = -80; +bracketright.case = -74; +}; +E = { +H = 0; +idieresis = 25; +}; +Eogonek = { +comma = 51; +}; +F = { +fourinferior = -113; +i = -8; +igrave = 50; +}; +G = { +Lslash = 31; +lslash = 23; +}; +Germandbls = { +S = 33; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -12; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 33; +itilde = 95; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 15; +D = 15; +E = 15; +H = 15; +Hbar = 96; +I = 15; +L = 15; +M = 15; +O = 0; +R = 15; +S = 26; +U = 27; +W = 27; +i = 3; +}; +I = { +Hbar = 33; +I = 0; +jcircumflex = 55; +}; +Icircumflex = { +Icircumflex = 35; +l.ss04 = 0; +}; +Imacron = { +Imacron = 40; +}; +Itilde = { +itilde = 75; +}; +J = { +Hbar = 40; +itilde = 85; +}; +Jacute = { +Imacron = 20; +}; +K = { +asciitilde = -88; +four = -50; +idieresis = 40; +igrave = 34; +itilde = 37; +less = -102; +logicalnot = -183; +minus = -134; +one = -42; +oslash = 0; +plus = -105; +}; +L = { +H = 0; +Tbar = -149; +asciitilde = -238; +asterisk = -141; +backslash = -154; +equal = -154; +four = -220; +less = -203; +logicalnot = -285; +minus = -285; +one = -67; +ordfeminine = -223; +ordmasculine = -217; +oslash = -23; +plus = -153; +quotedbl = -148; +quoteleft.ss01 = -68; +quoteright = -63; +quoteright.ss01 = -68; +registered = -257; +seven = -76; +twosuperior = -197; +}; +Lcaron = { +A = 5; +O = -67; +U = -46; +Uacute = -46; +V = -73; +a = -49; +hyphen = -179; +hyphen.case = -188; +u = -45; +v = -104; +}; +Lcommaaccent = { +twosuperior = -197; +}; +Lslash = { +twosuperior = -130; +}; +M = { +Hbar = 33; +idieresis = 66; +igrave = 33; +itilde = 95; +}; +N = { +Hbar = 33; +idieresis = 66; +igrave = 33; +itilde = 95; +}; +O = { +Dcroat = 13; +Lslash = 23; +braceright = -80; +bracketright.case = -75; +itilde = 39; +}; +Oslash = { +T = -29; +V = -20; +Y = -26; +parenright = -20; +parenright.case = -18; +}; +P = { +fourinferior = -111; +idieresis = 42; +itilde = 71; +two = 27; +}; +R = { +Hbar = 50; +jcircumflex = 69; +two = 22; +}; +S = { +Hbar = 39; +Lslash = 18; +dollar = 13; +four = 34; +idieresis = 50; +itilde = 65; +lslash = 24; +three = 33; +}; +T = { +Oslash = -71; +a.ss05 = -151; +aacute.ss05 = -147; +abreve = -82; +abreveacute = -95; +acircumflex = -113; +acircumflexacute = -113; +acircumflexdotbelow = -113; +adieresis = -100; +adotbelow.ss05 = -151; +ae = -151; +agrave = -99; +amacron = -86; +ampersand = -73; +aring = -97; +asciitilde = -176; +atilde = -99; +equal = -122; +four = -146; +g.ss06 = -158; +h = 0; +i.ss01 = -5; +iacute = -42; +idieresis = 0; +idotless = -74; +igrave = 44; +itilde = 0; +less = -181; +logicalnot = -212; +minus = -196; +ograve = -89; +plus = -139; +racute = -81; +scaron = -50; +seven = 19; +twoinferior = -173; +udieresis = -90; +udieresis.ss01 = -79; +ugrave = -83; +uhorngrave = -83; +umacron = -67; +ycircumflex = -91; +ygrave = -77; +yhookabove = -97; +zcaron = -52; +zeroinferior = -166; +}; +Tbar = { +A = -140; +Aacute = -140; +Tbar = 23; +a = -62; +comma = -63; +e = -66; +o = -66; +period = -61; +slash = -142; +}; +Tcaron = { +a.ss05 = -151; +}; +Tcedilla = { +a.ss05 = -151; +abreve = -82; +four = -146; +}; +Tcommaaccent = { +a.ss05 = -151; +abreve = -82; +four = -146; +}; +Thorn = { +A = -52; +AE = -49; +Aacute = -52; +J = -118; +O = 24; +Oacute = 24; +V = -50; +Y = -67; +Yacute = -67; +a = 19; +aacute = 19; +e = 11; +o = 10; +oacute = 10; +period = -61; +}; +U = { +Hbar = 44; +jcircumflex = 67; +}; +V = { +four = -102; +iacute = -29; +ibreve = 92; +idieresis = 57; +igrave = 47; +itilde = 68; +minus = -97; +plus = -78; +scaron = -36; +seven = 35; +twoinferior = -86; +}; +W = { +Hbar = 43; +backslash = 63; +idieresis = 70; +igrave = 59; +itilde = 86; +}; +X = { +asciitilde = -95; +four = -56; +less = -108; +logicalnot = -171; +minus = -141; +notequal = -110; +one = -30; +plus = -112; +}; +Y = { +a.ss05 = -93; +agrave = -96; +amacron = -75; +ampersand = -68; +asciitilde = -111; +at = -73; +four = -146; +g.ss06 = -106; +igrave = 44; +less = -109; +logicalnot = -161; +minus = -134; +ograve = -91; +plus = -111; +scaron = -43; +twoinferior = -138; +}; +Z = { +four = -153; +ibreve = 76; +igrave = 46; +itilde = 59; +minus = -141; +plus = -120; +}; +_B.currency = { +_baht.bar = 0; +}; +a = { +braceright = -73; +}; +a.ss05 = { +g.ss06 = 13; +}; +acircumflexacute.ss05 = { +y = -31; +}; +adieresis.ss05 = { +germandbls = -25; +}; +ampersand = { +V = -117; +W = -79; +Y = -150; +quotedbl = -135; +quotedblleft = -117; +}; +aogonek = { +j = 18; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 0; +}; +approxequal = { +parenright = -140; +parenright.case = -137; +}; +asciicircum = { +J = -205; +X = -110; +Y = -90; +bracketright = -131; +comma = -63; +comma.ss01 = -58; +four = -122; +hyphen = -179; +parenright = -131; +parenright.case = -131; +period = -61; +period.ss01 = -58; +slash = -179; +}; +asciitilde = { +I.ss02 = -219; +J = -205; +V = -166; +W = -133; +X = -208; +Y = -192; +Z = -215; +bracketright = -166; +bracketright.case = -167; +comma = -63; +comma.ss01 = -58; +eight = -109; +exclam = -80; +four = -112; +one = -133; +parenright = -158; +parenright.case = -149; +period = -61; +period.ss01 = -58; +question = -108; +quotedbl = -136; +quotedblright = -117; +seven = -113; +slash = -197; +three = -109; +two = -102; +}; +at = { +T = -85; +parenright = -87; +}; +b = { +asterisk = -66; +braceright = -78; +lslash = 23; +one = -65; +}; +backslash = { +T = -164; +V = -171; +Y = -161; +asterisk = -134; +backslash = -154; +quotedbl = -143; +quotedblleft = -117; +quotedblleft.ss01 = -128; +quotedblright = -117; +quotedblright.ss01 = -128; +quoteleft = -63; +quoteright = -63; +quotesingle = -57; +}; +baht = { +parenright = -65; +}; +braceleft = { +p = 0; +}; +bracketleft = { +asciicircum = -118; +asciitilde = -93; +bracketright = 44; +jcircumflex = 86; +p = 0; +pi = -66; +plus = -103; +x = -70; +}; +c = { +asterisk = -56; +braceright = -77; +}; +cent = { +parenright = -85; +}; +colon = { +T = -71; +Y = -66; +four = -71; +one = -37; +parenright = -71; +two = 14; +zero = -5; +}; +colon.ss01 = { +T = -68; +four = -68; +parenright = -68; +}; +comma = { +eightsuperior = -63; +fivesuperior = -63; +foursuperior = -63; +ninesuperior = -63; +onesuperior = -63; +quoteleft = -63; +quotesingle = -57; +sevensuperior = -63; +sixsuperior = -63; +threesuperior = -63; +twosuperior = -63; +}; +comma.ss01 = { +eightsuperior = -58; +fivesuperior = -58; +foursuperior = -58; +ninesuperior = -58; +onesuperior = -58; +sevensuperior = -58; +sixsuperior = -58; +threesuperior = -58; +twosuperior = -58; +}; +copyright = { +Y = -77; +parenright = -108; +}; +d = { +idieresis = 26; +igrave = 23; +itilde = 27; +}; +dcaron = { +C = 37; +H = 91; +bracketright = 0; +eightsuperior = 85; +exclam = 92; +exclam.ss01 = 91; +fivesuperior = 90; +foursuperior = 20; +h = 53; +i = 38; +j = 34; +k = 53; +l = 53; +l.ss03 = 48; +l.ss04 = 52; +ninesuperior = 77; +onesuperior = 88; +parenright = 55; +question = 86; +question.ss01 = 79; +quotedbl = 106; +quotedblleft = 76; +quotedblleft.ss01 = 81; +quoteleft = 69; +quoteleft.ss01 = 81; +quotesingle = 106; +sevensuperior = 101; +sixsuperior = 75; +t = 19; +t_i.liga = 20; +t_t.liga = 19; +threesuperior = 72; +twosuperior = 79; +zcaron = 9; +}; +dcroat = { +i = 34; +igrave = 36; +itilde = 37; +}; +degree = { +J = -185; +comma = -63; +comma.ss01 = -58; +emdash = -202; +endash = -202; +four = -128; +hyphen = -179; +parenright = -50; +parenright.case = -50; +period = -61; +period.ss01 = -58; +slash = -152; +}; +divide = { +parenright = -121; +}; +dollar = { +parenright = -67; +three = 14; +}; +e = { +asterisk = -65; +backslash = -64; +braceright = -80; +germandbls = -21; +one = -68; +seven = -62; +}; +ecircumflexacute = { +t = -9; +}; +eight = { +bracketright = -54; +degree = -20; +}; +eight.dnom = { +degree = -99; +question.ss01 = -103; +quotedbl = -113; +quotedblleft = -117; +quotedblright = -117; +}; +eightsuperior = { +comma = -63; +comma.ss01 = -58; +period = -61; +period.ss01 = -58; +slash = -116; +}; +ellipsis = { +Tbar = -196; +bracketright = -88; +eightsuperior = -220; +fivesuperior = -220; +foursuperior = -220; +ninesuperior = -223; +onesuperior = -104; +parenleft = -50; +parenleft.case = -69; +question = -120; +quoteleft = -63; +quoteright = -63; +quotesingle = -57; +sevensuperior = -177; +sixsuperior = -223; +threesuperior = -214; +twosuperior = -197; +}; +ellipsis.ss01 = { +Tbar = -201; +bracketright = -96; +eightsuperior = -220; +fivesuperior = -220; +foursuperior = -220; +ninesuperior = -223; +onesuperior = -104; +question.ss01 = -119; +quoteleft.ss01 = -68; +quoteright.ss01 = -68; +quotesingle = -57; +sevensuperior = -177; +sixsuperior = -223; +threesuperior = -214; +twosuperior = -197; +}; +emdash = { +foursuperior = -193; +question = -109; +}; +emdash.case = { +X = -117; +quotedblbase = -121; +quotedblbase.ss01 = -128; +}; +endash = { +X = -72; +endash = 0; +foursuperior = -193; +question = -109; +}; +endash.case = { +H = -10; +X = -117; +quotedblbase = -121; +quotedblbase.ss01 = -128; +}; +eng = { +bracketright = -20; +}; +eogonek = { +lslash = 13; +}; +equal = { +T = -123; +equal = 0; +parenright = -102; +parenright.case = -96; +}; +eth = { +a = 19; +e = 10; +g = 18; +hyphen = 32; +parenright = -50; +}; +euro = { +parenright = -70; +parenright.case = -70; +}; +exclamdown = { +T = -90; +V = -47; +Y = -69; +}; +f = { +igrave = 0; +n = 0; +o = -32; +}; +f_f.liga = { +igrave = 20; +}; +f_f_i.liga = { +idieresis = 26; +}; +fi = { +idieresis = 26; +}; +five = { +degree = -41; +ordmasculine = -31; +percent = -21; +}; +five.dnom = { +degree = -105; +question.ss01 = -90; +quotedblleft = -117; +}; +five.numr = { +fraction = -16; +}; +fiveinferior = { +T = -167; +}; +fivesuperior = { +comma = -63; +comma.ss01 = -58; +period = -61; +period.ss01 = -58; +slash = -120; +}; +fl = { +idieresis = 26; +itilde = 27; +periodcentered.loclCAT = 43; +}; +four = { +asciicircum = -114; +bracketright = -67; +bracketright.case = -59; +degree = -77; +ordfeminine = -67; +ordmasculine = -67; +percent = -62; +x = -54; +}; +four.dnom = { +degree = -102; +question.ss01 = -97; +quotedblleft = -117; +}; +fourinferior = { +T = -174; +V = -115; +}; +foursuperior = { +comma = -63; +comma.ss01 = -58; +period = -61; +period.ss01 = -58; +slash = -116; +}; +fraction = { +eight.dnom = 0; +four.dnom = -45; +fourinferior = -45; +seveninferior = 42; +two.dnom = 5; +zero.dnom = -16; +}; +g = { +bracketright = -40; +j = 17; +j.ss01 = 17; +parenright = -33; +slash = 8; +}; +g.ss06 = { +g.ss06 = 38; +}; +gcaron.ss06 = { +gcaron.ss06 = 38; +}; +gdotaccent = { +j = 43; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 38; +}; +germandbls = { +e = 14; +hyphen = 36; +parenright = -49; +}; +greater = { +T = -168; +parenright = -107; +}; +greaterequal = { +T = -212; +}; +guillemetleft = { +pi = 0; +}; +guillemetright = { +X = -64; +bracketright = -81; +}; +guilsinglright = { +X = -64; +}; +h = { +asterisk = -60; +}; +hyphen = { +Lslash = 41; +X = -62; +bracketright = -93; +foursuperior = -156; +pi = -23; +question = -109; +quotedblbase = -121; +quoteleft = -63; +quotesingle = -57; +x = -76; +}; +hyphen.case = { +Dcroat = 34; +X = -116; +bracketright.case = -102; +quotedblbase = -121; +quotedblbase.ss01 = -128; +quotesinglbase = -73; +}; +i = { +T = -25; +idieresis = 27; +jcircumflex = 18; +parenright = -30; +}; +i.ss01 = { +parenright = -24; +}; +iacute = { +rcaron = 4; +}; +icircumflex = { +b = 8; +h = 8; +i = 4; +icircumflex = 38; +j = 0; +k = 8; +l = 8; +l.ss03 = 7; +l.ss04 = 3; +question = 65; +quotedbl = 27; +quoteright = 30; +quotesingle = 31; +}; +idieresis = { +b = 7; +idieresis = 8; +k = 7; +l = 7; +l.ss03 = 0; +l.ss04 = 0; +}; +idotaccent = { +parenright = -42; +}; +idotaccent.ss01 = { +parenright = -24; +}; +imacron = { +b = 4; +imacron = 45; +j = 0; +k = 4; +kcommaaccent = 4; +l = 4; +l.ss04 = 0; +lcommaaccent = 4; +quotedbl = 14; +}; +infinity = { +parenright = -87; +parenright.case = -82; +}; +integral = { +a = -75; +}; +iogonek = { +j = 0; +}; +itilde = { +h = 8; +itilde = 11; +quotedbl = 55; +quotesingle = 57; +}; +j = { +j = 18; +}; +jacute = { +backslash = 83; +iogonek = 31; +}; +jcircumflex = { +i = 23; +jcircumflex = 74; +}; +k = { +oslash = -14; +}; +l = { +at = 0; +idieresis = 26; +igrave = 23; +itilde = 27; +jcircumflex = 22; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -34; +}; +l.ss04 = { +periodcentered.loclCAT = 43; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 90; +l = 64; +ncaron = 2; +scaron = 0; +twosuperior = 79; +}; +lcaron.ss03 = { +b = 16; +eightsuperior = 34; +exclam = 44; +exclam.ss01 = 43; +fivesuperior = 39; +k = 16; +ninesuperior = 26; +onesuperior = 41; +question = 36; +quotedbl = 55; +quotesingle = 55; +sevensuperior = 53; +sixsuperior = 24; +}; +lcaron.ss04 = { +exclam.ss01 = 110; +twosuperior = 98; +}; +liraTurkish = { +one = -66; +parenright = -92; +question = -70; +quotedbl = -88; +quotesingle = -57; +seven = -74; +}; +logicalnot = { +Y = -188; +parenright = -150; +seven = -149; +}; +m = { +asterisk = -59; +braceright = -74; +twosuperior = -10; +}; +minus = { +T = -196; +X = -140; +comma = -63; +one = -96; +parenright = -126; +parenright.case = -117; +period = -61; +seven = -90; +three = -19; +two = -25; +}; +mu = { +mu = 0; +parenright = -58; +quotesingle = -29; +}; +multiply = { +parenright = -116; +parenright.case = -111; +}; +n = { +asterisk = -61; +at = 7; +braceright = -75; +degree = -72; +g.ss06 = 13; +n = 0; +one = -60; +ordmasculine = -48; +}; +ncaron = { +Yacute = -75; +}; +nine = { +bracketright = -64; +degree = -13; +}; +nine.dnom = { +degree = -102; +question = -87; +question.ss01 = -97; +quotedbl = -115; +quotedblleft = -117; +quotedblleft.ss01 = -128; +quotedblright = -117; +quotedblright.ss01 = -128; +}; +ninesuperior = { +comma = -63; +comma.ss01 = -58; +fraction = -22; +period = -61; +period.ss01 = -58; +slash = -125; +}; +notequal = { +parenright = -140; +parenright.case = -134; +}; +numbersign = { +parenright = -72; +}; +o = { +asterisk = -72; +backslash = -68; +braceright = -80; +germandbls = -18; +lslash = 15; +n = 0; +one = -67; +}; +oacute = { +lslash = 15; +}; +ocircumflexacute = { +bracketright = -11; +parenright = -9; +}; +odieresis = { +germandbls = -20; +}; +ohorn = { +i = 16; +m = 16; +n = 16; +parenright = -42; +}; +ohornacute = { +c = 0; +i = -2; +m = -2; +n = -2; +p = -2; +t = -16; +t_i.liga = -16; +t_t.liga = -16; +}; +ohorndotbelow = { +c = 0; +i = -2; +n = -2; +p = -2; +t = -16; +t_i.liga = -16; +t_t.liga = -16; +u = 2; +}; +ohorngrave = { +i = -2; +n = -2; +parenright = -57; +}; +ohornhookabove = { +i = -2; +n = -2; +}; +ohorntilde = { +i = -2; +n = -2; +}; +ohungarumlaut = { +parenright = -73; +}; +one = { +comma.ss01 = -20; +degree = -18; +equal = 0; +four = 0; +icircumflex = 54; +nine = 7; +one = 0; +parenright = -12; +percent = 0; +period.ss01 = -19; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -93; +one.dnom = 0; +question.ss01 = -97; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -63; +comma.ss01 = -58; +period = -61; +period.ss01 = -58; +slash = -94; +}; +ordfeminine = { +comma = -63; +comma.ss01 = -58; +period = -61; +period.ss01 = -58; +}; +ordmasculine = { +comma = -63; +comma.ss01 = -58; +hyphen = -141; +parenright = -46; +period = -61; +period.ss01 = -58; +slash = -131; +}; +oslash = { +d = 0; +e = 0; +g = 6; +hyphen = 20; +parenright = -79; +y = -17; +}; +p = { +asterisk = -65; +backslash = -66; +braceright = -78; +lslash = 19; +one = -65; +}; +parenleft = { +Dcroat = -46; +H = 0; +Icircumflex = 32; +Oslash = -40; +ampersand = -66; +approxequal = -148; +asciicircum = -119; +asciitilde = -106; +at = -84; +cent = -81; +copyright = -82; +degree = -39; +divide = -111; +dollar = -44; +equal = -88; +euro = -77; +greaterequal = -69; +i = -20; +idotaccent = -20; +infinity = -79; +iogonek = 83; +jcircumflex = 103; +less = -107; +literSign = -66; +logicalnot = -124; +minus = -116; +mu = 0; +multiply = -103; +notequal = -126; +numbersign = -64; +oslash = -23; +p = 0; +parenleft = -48; +pi = -59; +plus = -108; +plusminus = -52; +published = -82; +question = -39; +quotedblbase = 30; +quoteleft = -18; +radical = -82; +scaron = -42; +section = -31; +sterling = -39; +x = -30; +}; +parenleft.case = { +Icircumflex = 63; +approxequal = -124; +asciicircum = -119; +asciitilde = -90; +dollar = -43; +equal = -83; +euro = -73; +minus = -109; +numbersign = -59; +parenleft.case = -37; +plus = -99; +question = -33; +quotedblbase = 14; +quoteleft = -18; +}; +parenright = { +bracketright = -53; +comma = -4; +comma.ss01 = -33; +hyphen = 22; +parenleft = 22; +parenright = -61; +period = -15; +period.ss01 = -37; +quotedbl = -23; +}; +parenright.case = { +comma = -30; +comma.ss01 = -57; +parenright.case = -50; +period = -32; +period.ss01 = -56; +}; +percent = { +asterisk = -91; +bracketright = -76; +comma.ss01 = -37; +eightsuperior = -60; +fivesuperior = -67; +foursuperior = -95; +ninesuperior = -72; +onesuperior = -76; +parenright = -79; +parenright.case = -48; +period = -15; +period.ss01 = -40; +question = -90; +question.ss01 = -108; +quotedbl = -92; +quotedblleft = -105; +quotedblright = -89; +quoteleft = -63; +quoteright = -63; +quotesingle = -57; +sevensuperior = -76; +sixsuperior = -70; +threesuperior = -59; +twosuperior = -37; +}; +period = { +bracketright = -61; +eightsuperior = -61; +fivesuperior = -61; +foursuperior = -61; +ninesuperior = -61; +onesuperior = -61; +ordfeminine = -61; +ordmasculine = -61; +parenleft.case = -33; +question = -61; +quoteleft = -61; +quotesingle = -57; +sevensuperior = -61; +sixsuperior = -61; +threesuperior = -61; +twosuperior = -61; +}; +period.ss01 = { +bracketright = -58; +eightsuperior = -58; +fivesuperior = -58; +foursuperior = -58; +ninesuperior = -58; +onesuperior = -58; +ordfeminine = -58; +ordmasculine = -58; +question.ss01 = -58; +sevensuperior = -58; +sixsuperior = -58; +threesuperior = -58; +twosuperior = -58; +}; +periodcentered.loclCAT = { +l = 43; +l.ss03 = 45; +}; +perthousand = { +asterisk = -113; +parenright = -86; +parenright.case = -55; +question = -95; +question.ss01 = -120; +quotedblleft = -117; +quotedblleft.ss01 = -128; +quotedblright = -117; +quotedblright.ss01 = -128; +quoteleft = -63; +quoteright = -63; +}; +pi = { +hyphen = -23; +parenright = -42; +period = 23; +pi = 20; +quotesingle = -15; +}; +plus = { +J = -144; +T = -139; +V = -78; +X = -111; +Y = -110; +braceright = -112; +bracketright = -111; +comma = -63; +comma.ss01 = -58; +one = -80; +parenright = -120; +parenright.case = -109; +period = -61; +period.ss01 = -58; +quotedbl = -77; +seven = -74; +slash = -93; +three = -19; +two = -25; +}; +published = { +parenright = -108; +}; +q = { +bracketright = -8; +j = 19; +parenright = 0; +}; +question = { +A = -109; +J = -108; +comma = -63; +hyphen = -69; +parenright = -41; +parenright.case = -39; +period = -61; +question = 32; +questiondown = -102; +slash = -113; +}; +question.ss01 = { +comma.ss01 = -58; +parenright = -43; +parenright.case = -40; +period.ss01 = -58; +questiondown.ss01 = -122; +}; +questiondown.case = { +T = -97; +V = -96; +Y = -101; +quotedbl = -119; +quotedblleft = -113; +quotedblleft.ss01 = -128; +quoteright = -63; +}; +questiondown.ss01 = { +C = -89; +Q = -96; +Q.ss09 = -96; +T = -198; +V = -159; +Y = -179; +four = -112; +quotedbl = -118; +quotedblleft.ss01 = -128; +quotesingle = -57; +}; +quotedbl = { +ellipsis.ss01 = -148; +exclamdown = -54; +g.ss06 = -74; +icircumflex = 26; +mu = -48; +questiondown = -142; +questiondown.case = -113; +questiondown.ss01 = -148; +underscore = -148; +}; +quotedblbase = { +copyright = -85; +divide = -121; +equal = -121; +euro = -121; +minus = -121; +p = -7; +plus = -121; +question = -106; +quotedblright = -117; +quoteleft = -63; +}; +quotedblbase.ss01 = { +divide = -128; +minus = -128; +plus = -128; +question.ss01 = -119; +quotedblright.ss01 = -128; +}; +quotedblleft = { +g.ss06 = -64; +mu = -39; +questiondown = -116; +questiondown.case = -96; +quotedblbase = -117; +underscore = -117; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -128; +questiondown.ss01 = -128; +quotedblbase.ss01 = -128; +underscore = -128; +}; +quotedblright = { +asciitilde = -89; +questiondown = -117; +questiondown.case = -104; +quotesinglbase = -73; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -128; +questiondown.case = -128; +questiondown.ss01 = -128; +}; +quoteleft = { +questiondown = -63; +questiondown.case = -63; +quotedblbase = -63; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -68; +}; +quoteright = { +icircumflex = 42; +questiondown = -63; +quotedblbase = -63; +}; +quoteright.ss01 = { +questiondown.ss01 = -68; +quotedblbase.ss01 = -68; +}; +quotesinglbase = { +T = -73; +V = -73; +Y = -73; +minus = -73; +plus = -73; +question = -73; +quotedblleft = -73; +quoteleft = -63; +}; +quotesinglbase.ss01 = { +T = -68; +V = -68; +Y = -68; +question.ss01 = -68; +}; +quotesingle = { +Hbar = 40; +g.ss06 = -52; +icircumflex = 48; +igrave = 24; +imacron = 25; +itilde = 69; +l.ss04 = 5; +questiondown = -57; +questiondown.case = -57; +underscore = -57; +}; +r = { +braceright = -77; +fourinferior = -102; +g.ss06 = -24; +parenright = -75; +}; +radical = { +A = -123; +}; +rcaron = { +sevensuperior = -4; +}; +registered = { +comma = -63; +comma.ss01 = -58; +parenright = -65; +parenright.case = -63; +period = -61; +period.ss01 = -58; +slash = -101; +}; +s = { +asterisk = -49; +braceright = -74; +l = 0; +}; +scaron = { +T = -61; +}; +semicolon = { +hyphen = -73; +}; +seven = { +minus = -110; +percent = -5; +plus = -96; +underscore = -169; +}; +seven.dnom = { +question.ss01 = -115; +}; +seven.numr = { +fraction = -45; +}; +seveninferior = { +parenright = -84; +}; +sevensuperior = { +A = -177; +comma = -63; +comma.ss01 = -58; +fraction = -45; +period = -61; +period.ss01 = -58; +slash = -177; +}; +six = { +bracketright = -50; +degree = -15; +}; +six.dnom = { +degree = -100; +question.ss01 = -99; +quotedbl = -113; +quotedblleft = -117; +quotedblleft.ss01 = -128; +quotedblright = -117; +}; +sixinferior = { +T = -166; +}; +sixsuperior = { +comma = -63; +comma.ss01 = -58; +period = -61; +period.ss01 = -58; +slash = -122; +}; +slash = { +fourinferior = -139; +g.ss06 = -70; +ibreve = 99; +l.ss04 = 57; +mu = -51; +quotedblbase = -121; +quotedblbase.ss01 = -128; +quotesinglbase = -73; +underscore = -175; +}; +sterling = { +two = 17; +}; +t_i.liga = { +idieresis = 26; +}; +tcaron = { +b = 0; +exclam = 17; +h = 0; +hyphen = -54; +i = 0; +j = 0; +k = 0; +parenright = 28; +quotedbl = 19; +quotedblleft = 3; +quotesingle = 19; +}; +tcedilla = { +parenright = 9; +}; +tenge = { +comma = -63; +comma.ss01 = -58; +period = -61; +period.ss01 = -58; +slash = -131; +}; +three = { +bracketright = -44; +}; +three.dnom = { +degree = -99; +question.ss01 = -103; +quotedbl = -113; +quotedblleft = -117; +quotedblright = -117; +}; +three.numr = { +fraction = -14; +}; +threeinferior = { +T = -168; +V = -91; +Y = -141; +}; +threesuperior = { +comma = -63; +comma.ss01 = -58; +fraction = -18; +parenright = -26; +period = -61; +period.ss01 = -58; +slash = -118; +}; +trademark = { +comma = -63; +comma.ss01 = -58; +hyphen = -172; +period = -61; +period.ss01 = -58; +slash = -140; +}; +two = { +percent = 9; +}; +two.dnom = { +degree = -97; +question.ss01 = -90; +quotedbl = -112; +quotedblleft = -117; +quotedblright = -117; +}; +twoinferior = { +T = -177; +V = -87; +Y = -137; +}; +twosuperior = { +comma = -63; +comma.ss01 = -58; +parenright = -23; +parenright.case = -23; +period = -61; +period.ss01 = -58; +slash = -92; +}; +uhorn = { +a = -16; +ohorn = -20; +ohornacute = -20; +ohorndotbelow = -20; +ohorndotbelow.ss01 = -20; +ohorngrave = -20; +ohornhookabove = -20; +ohorntilde = -20; +}; +uhornacute = { +a = -26; +c = -31; +}; +uhorndotbelow = { +a = -26; +c = -31; +comma = -29; +period = -31; +}; +uhorngrave = { +a = -26; +a.ss05 = -25; +}; +uhornhookabove = { +a = -26; +comma = -29; +comma.ss01 = -50; +period = -31; +period.ss01 = -52; +}; +uhorntilde = { +a = -26; +comma = -29; +period = -31; +}; +uhungarumlaut = { +parenright = -60; +}; +underscore = { +C = -69; +O = -76; +T = -192; +V = -189; +W = -120; +Y = -180; +asterisk = -141; +four = -192; +one = -90; +quotedbl = -148; +quotedblright = -117; +quotedblright.ss01 = -128; +quotesingle = -57; +seven = -110; +six = -45; +v = -122; +}; +uogonek = { +j = 0; +parenright = -11; +}; +v = { +braceright = -73; +n = 0; +}; +w = { +braceright = -69; +}; +x = { +four = -67; +}; +y = { +braceright = -74; +}; +ydotbelow = { +period = -61; +}; +zero = { +braceright = -66; +bracketright = -70; +bracketright.case = -56; +degree = -21; +percent = 8; +}; +zero.dnom = { +degree = -106; +question = -86; +question.ss01 = -102; +quotedbl = -118; +quotedblleft = -117; +quotedblleft.ss01 = -128; +quotedblright = -117; +quotedblright.ss01 = -128; +quoteleft = -63; +}; +zeroinferior = { +parenright = -73; +}; +zerosuperior = { +comma = -63; +comma.ss01 = -58; +fraction = -31; +period = -61; +period.ss01 = -58; +slash = -132; +}; +}; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 24; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 30; +"@MMK_R_KO_O" = -35; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = -108; +"@MMK_R_KO_U" = -35; +"@MMK_R_KO_V" = -112; +"@MMK_R_KO_W" = -86; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = -138; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -108; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -35; +"@MMK_R_KO_eightsuperior" = -83; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_fivesuperior" = -94; +"@MMK_R_KO_foursuperior" = -76; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -34; +"@MMK_R_KO_hyphen.case" = -55; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -109; +"@MMK_R_KO_onesuperior" = -119; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -96; +"@MMK_R_KO_question.ss01" = -98; +"@MMK_R_KO_quotedbl" = -99; +"@MMK_R_KO_quotedblleft" = -89; +"@MMK_R_KO_quotedblleft.ss01" = -95; +"@MMK_R_KO_quoteleft" = -89; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -74; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_sevensuperior" = -116; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_sixsuperior" = -99; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = -47; +"@MMK_R_KO_threesuperior" = -82; +"@MMK_R_KO_trademark" = -131; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -89; +"@MMK_R_KO_w" = -66; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 17; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 25; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = -24; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 80; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = 8; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -9; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -13; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -24; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -35; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -38; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = -41; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -40; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -29; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 6; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 51; +"@MMK_R_KO_imacron" = 16; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -21; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_parenright.case" = -37; +"@MMK_R_KO_period" = -24; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = -25; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -72; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -15; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -50; +"@MMK_R_KO_Y" = -57; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -4; +"@MMK_R_KO_bracketright" = -45; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -40; +"@MMK_R_KO_comma.ss01" = -37; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 34; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period" = -33; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 26; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -82; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = -15; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = 16; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 27; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 30; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = -42; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = -30; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_guillemetleft" = 20; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_n" = 15; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = -34; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = 7; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = 7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -25; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_threesuperior" = 2; +"@MMK_R_KO_u" = 19; +"@MMK_R_KO_y" = 0; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 32; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 21; +"@MMK_R_KO_X" = 23; +"@MMK_R_KO_Y" = 14; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 8; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = 16; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 4; +"@MMK_R_KO_exclam" = 15; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = 4; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -20; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_icircumflex" = 105; +"@MMK_R_KO_imacron" = 78; +"@MMK_R_KO_j" = 12; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 25; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 5; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -58; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_J" = -85; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 25; +"@MMK_R_KO_U" = 19; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -24; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -75; +"@MMK_R_KO_comma.ss01" = -124; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -82; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_hyphen.case" = -8; +"@MMK_R_KO_icircumflex" = 58; +"@MMK_R_KO_imacron" = 85; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 38; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 9; +"@MMK_R_KO_parenright" = 2; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 5; +"@MMK_R_KO_quotedbl" = 17; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 8; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = -23; +"@MMK_R_KO_sevensuperior" = 12; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = 11; +"@MMK_R_KO_slash" = -69; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 10; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -219; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 24; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -43; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 16; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_hyphen.case" = 10; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_icircumflex" = 58; +"@MMK_R_KO_imacron" = 21; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -22; +"@MMK_R_KO_six" = 25; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -36; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = -74; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = 15; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -3; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = 18; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = 8; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 52; +"@MMK_R_KO_imacron" = 17; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 18; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_underscore" = 16; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -1; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 91; +"@MMK_R_KO_imacron" = 65; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_sevensuperior" = -3; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -15; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 33; +"@MMK_R_KO_J" = 25; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_X" = 26; +"@MMK_R_KO_Y" = 17; +"@MMK_R_KO_Z" = 35; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 12; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = 17; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 5; +"@MMK_R_KO_exclam" = 16; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -89; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 109; +"@MMK_R_KO_imacron" = 82; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_l.ss04" = 35; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 26; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 3; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = 5; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 15; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -4; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 99; +"@MMK_R_KO_imacron" = 73; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 5; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_period.ss01" = -21; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_sixsuperior" = 3; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -40; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 29; +"@MMK_R_KO_O" = -58; +"@MMK_R_KO_S" = -37; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_X" = 29; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 28; +"@MMK_R_KO_a" = -45; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -94; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = 4; +"@MMK_R_KO_e" = -49; +"@MMK_R_KO_egrave" = -47; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -67; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -60; +"@MMK_R_KO_hyphen.case" = -101; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 16; +"@MMK_R_KO_imacron" = 82; +"@MMK_R_KO_j" = 23; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -17; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 6; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = 3; +"@MMK_R_KO_question" = -53; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -60; +"@MMK_R_KO_quotedblleft.ss01" = -48; +"@MMK_R_KO_quoteleft" = -59; +"@MMK_R_KO_quoteright" = -31; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = -32; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -46; +"@MMK_R_KO_sixsuperior" = -34; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -54; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -77; +"@MMK_R_KO_w" = -69; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 24; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 28; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -115; +"@MMK_R_KO_U" = -14; +"@MMK_R_KO_V" = -114; +"@MMK_R_KO_W" = -61; +"@MMK_R_KO_X" = 23; +"@MMK_R_KO_Y" = -150; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asciicircum" = -226; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -206; +"@MMK_R_KO_ellipsis" = 11; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_fivesuperior" = -203; +"@MMK_R_KO_foursuperior" = -214; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -121; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -211; +"@MMK_R_KO_onesuperior" = -149; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -1; +"@MMK_R_KO_period" = 32; +"@MMK_R_KO_period.ss01" = 2; +"@MMK_R_KO_question" = -111; +"@MMK_R_KO_question.ss01" = -99; +"@MMK_R_KO_quotedbl" = -99; +"@MMK_R_KO_quotedblleft" = -209; +"@MMK_R_KO_quotedblleft.ss01" = -222; +"@MMK_R_KO_quoteleft" = -148; +"@MMK_R_KO_quoteright" = -212; +"@MMK_R_KO_quoteright.ss01" = -211; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -188; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -206; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_threesuperior" = -203; +"@MMK_R_KO_trademark" = -229; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -57; +"@MMK_R_KO_w" = -51; +"@MMK_R_KO_x" = 19; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 54; +"@MMK_R_KO_H" = 30; +"@MMK_R_KO_I.ss02" = 47; +"@MMK_R_KO_J" = 58; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 37; +"@MMK_R_KO_T" = -94; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -91; +"@MMK_R_KO_W" = -49; +"@MMK_R_KO_X" = 52; +"@MMK_R_KO_Y" = -131; +"@MMK_R_KO_Z" = 62; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 47; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 41; +"@MMK_R_KO_comma" = 53; +"@MMK_R_KO_comma.ss01" = 32; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -105; +"@MMK_R_KO_ellipsis" = 41; +"@MMK_R_KO_exclam" = 31; +"@MMK_R_KO_fivesuperior" = -111; +"@MMK_R_KO_foursuperior" = -100; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = 33; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -102; +"@MMK_R_KO_i" = 19; +"@MMK_R_KO_ninesuperior" = -120; +"@MMK_R_KO_onesuperior" = -115; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = 29; +"@MMK_R_KO_period" = 62; +"@MMK_R_KO_period.ss01" = 31; +"@MMK_R_KO_question" = -87; +"@MMK_R_KO_question.ss01" = -77; +"@MMK_R_KO_quotedbl" = -99; +"@MMK_R_KO_quotedblleft" = -102; +"@MMK_R_KO_quotedblleft.ss01" = -115; +"@MMK_R_KO_quoteleft" = -102; +"@MMK_R_KO_quoteright" = -112; +"@MMK_R_KO_quoteright.ss01" = -108; +"@MMK_R_KO_s" = 34; +"@MMK_R_KO_sevensuperior" = -118; +"@MMK_R_KO_sixsuperior" = -105; +"@MMK_R_KO_slash" = 39; +"@MMK_R_KO_threesuperior" = -100; +"@MMK_R_KO_u" = 17; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 37; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -40; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -16; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -4; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -42; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 31; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -47; +"@MMK_R_KO_period" = -35; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -83; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -40; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -16; +"@MMK_R_KO_O" = 20; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -42; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -47; +"@MMK_R_KO_period" = -35; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -83; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 22; +"@MMK_R_KO_I.ss02" = 39; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 38; +"@MMK_R_KO_U" = 35; +"@MMK_R_KO_V" = 49; +"@MMK_R_KO_X" = 38; +"@MMK_R_KO_bracketright" = 45; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -42; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = 24; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 20; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_parenright" = 43; +"@MMK_R_KO_parenright.case" = 49; +"@MMK_R_KO_period" = -35; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = 31; +"@MMK_R_KO_quoteright" = 14; +"@MMK_R_KO_quoteright.ss01" = 28; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 7; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -70; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = -88; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -43; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = -136; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = 14; +"@MMK_R_KO_ellipsis" = -139; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 21; +"@MMK_R_KO_fivesuperior" = 6; +"@MMK_R_KO_foursuperior" = 18; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = 7; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 97; +"@MMK_R_KO_imacron" = 61; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -130; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 11; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = 18; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 18; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 8; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 22; +"@MMK_R_KO_sixsuperior" = 14; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = 21; +"@MMK_R_KO_threesuperior" = 11; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -234; +"@MMK_R_KO_v" = 23; +"@MMK_R_KO_w" = 19; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 19; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 54; +"@MMK_R_KO_H" = 32; +"@MMK_R_KO_I.ss02" = 46; +"@MMK_R_KO_J" = 57; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 31; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = 52; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 53; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 45; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 47; +"@MMK_R_KO_comma" = 53; +"@MMK_R_KO_comma.ss01" = 32; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = 36; +"@MMK_R_KO_exclam" = 41; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 36; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 6; +"@MMK_R_KO_i" = 23; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 31; +"@MMK_R_KO_j" = 39; +"@MMK_R_KO_l.ss04" = 26; +"@MMK_R_KO_n" = 25; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = 11; +"@MMK_R_KO_period" = 62; +"@MMK_R_KO_period.ss01" = 31; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 38; +"@MMK_R_KO_sevensuperior" = -36; +"@MMK_R_KO_six" = 25; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 39; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 23; +"@MMK_R_KO_underscore" = 26; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 53; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 39; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 15; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 16; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 98; +"@MMK_R_KO_imacron" = 65; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 10; +"@MMK_R_KO_question.ss01" = 8; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 9; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = 9; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = 15; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = 5; +"@MMK_R_KO_v" = 17; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 18; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -32; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_icircumflex" = 64; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -32; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_icircumflex" = 64; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -17; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -110; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = -89; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 24; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 32; +"@MMK_R_KO_W" = 35; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -71; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = -130; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -78; +"@MMK_R_KO_egrave" = -52; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -138; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = -69; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -142; +"@MMK_R_KO_hyphen.case" = -113; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 84; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 37; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = 6; +"@MMK_R_KO_parenright" = 1; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -127; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 4; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -54; +"@MMK_R_KO_sevensuperior" = 9; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = 10; +"@MMK_R_KO_slash" = -112; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = -130; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_imacron" = 70; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -24; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 25; +"@MMK_R_KO_sixsuperior" = 9; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = -64; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = -11; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -27; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -46; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -46; +"@MMK_R_KO_exclam" = -12; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = -43; +"@MMK_R_KO_period.ss01" = -44; +"@MMK_R_KO_question" = -13; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_sevensuperior" = -17; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = -54; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_x" = -18; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 53; +"@MMK_R_KO_I.ss02" = 75; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_T" = 73; +"@MMK_R_KO_U" = 59; +"@MMK_R_KO_V" = 87; +"@MMK_R_KO_X" = 76; +"@MMK_R_KO_Y" = 62; +"@MMK_R_KO_Z" = 57; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 76; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_eightsuperior" = 48; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = 58; +"@MMK_R_KO_fivesuperior" = 48; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 28; +"@MMK_R_KO_onesuperior" = 62; +"@MMK_R_KO_parenright" = 80; +"@MMK_R_KO_parenright.case" = 88; +"@MMK_R_KO_period" = -24; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 4; +"@MMK_R_KO_quotedbl" = 62; +"@MMK_R_KO_quoteright" = 37; +"@MMK_R_KO_quoteright.ss01" = 54; +"@MMK_R_KO_sevensuperior" = 78; +"@MMK_R_KO_sixsuperior" = 36; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_threesuperior" = 50; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -112; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 25; +"@MMK_R_KO_J" = -94; +"@MMK_R_KO_O" = -39; +"@MMK_R_KO_S" = -29; +"@MMK_R_KO_T" = 32; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -70; +"@MMK_R_KO_a.ss05" = -54; +"@MMK_R_KO_asciicircum" = -45; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -38; +"@MMK_R_KO_comma" = -131; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -75; +"@MMK_R_KO_egrave" = -52; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -138; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -33; +"@MMK_R_KO_g" = -66; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = -75; +"@MMK_R_KO_hyphen.case" = -54; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 71; +"@MMK_R_KO_imacron" = 94; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 40; +"@MMK_R_KO_n" = -44; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -128; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_question" = -23; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = 5; +"@MMK_R_KO_s" = -60; +"@MMK_R_KO_sevensuperior" = 15; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -130; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = 5; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_underscore" = -153; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_x" = -30; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -80; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = -56; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 35; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = 31; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_X" = 23; +"@MMK_R_KO_Y" = 32; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = -41; +"@MMK_R_KO_a.ss05" = -40; +"@MMK_R_KO_asciicircum" = -12; +"@MMK_R_KO_bracketright" = 3; +"@MMK_R_KO_colon" = -18; +"@MMK_R_KO_comma" = -80; +"@MMK_R_KO_comma.ss01" = -75; +"@MMK_R_KO_e" = -44; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -77; +"@MMK_R_KO_exclam" = 16; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = -41; +"@MMK_R_KO_guillemetleft" = -44; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_hyphen.case" = -28; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 93; +"@MMK_R_KO_imacron" = 101; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 47; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 8; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -76; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = 23; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = -38; +"@MMK_R_KO_sevensuperior" = 22; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = 2; +"@MMK_R_KO_trademark" = 8; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_underscore" = -87; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = -21; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 29; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -30; +"@MMK_R_KO_T" = 8; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 25; +"@MMK_R_KO_X" = 32; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = -45; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asciicircum" = -83; +"@MMK_R_KO_bracketright" = 14; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = 4; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_egrave" = -48; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -60; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -58; +"@MMK_R_KO_hyphen.case" = -99; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 89; +"@MMK_R_KO_j" = 22; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = -9; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 14; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = 3; +"@MMK_R_KO_question" = -47; +"@MMK_R_KO_question.ss01" = -43; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -55; +"@MMK_R_KO_quotedblleft.ss01" = -43; +"@MMK_R_KO_quoteleft" = -55; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = -32; +"@MMK_R_KO_sevensuperior" = 5; +"@MMK_R_KO_six" = -40; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -47; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -2; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -53; +"@MMK_R_KO_w" = -56; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -133; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = -89; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_S" = -43; +"@MMK_R_KO_T" = 23; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 22; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 9; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -114; +"@MMK_R_KO_a.ss05" = -55; +"@MMK_R_KO_asciicircum" = -69; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -56; +"@MMK_R_KO_comma" = -148; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -118; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -191; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -45; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -51; +"@MMK_R_KO_g" = -112; +"@MMK_R_KO_guillemetleft" = -110; +"@MMK_R_KO_guillemetright" = -47; +"@MMK_R_KO_hyphen" = -135; +"@MMK_R_KO_hyphen.case" = -90; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 49; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 41; +"@MMK_R_KO_n" = -59; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_question" = -37; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = -46; +"@MMK_R_KO_quotedblleft.ss01" = -38; +"@MMK_R_KO_quoteleft" = -46; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = 5; +"@MMK_R_KO_s" = -105; +"@MMK_R_KO_sevensuperior" = 21; +"@MMK_R_KO_six" = -52; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = -142; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = 12; +"@MMK_R_KO_u" = -54; +"@MMK_R_KO_underscore" = -168; +"@MMK_R_KO_v" = -43; +"@MMK_R_KO_w" = -46; +"@MMK_R_KO_x" = -47; +"@MMK_R_KO_y" = -42; +"@MMK_R_KO_z" = -54; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 21; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = 36; +"@MMK_R_KO_J" = 27; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 22; +"@MMK_R_KO_X" = 25; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -6; +"@MMK_R_KO_bracketright" = 8; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 20; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 8; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = 11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -47; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_icircumflex" = 102; +"@MMK_R_KO_imacron" = 75; +"@MMK_R_KO_j" = 12; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 29; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 5; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 18; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -12; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -44; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -16; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = 22; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -74; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = -84; +"@MMK_R_KO_W" = -48; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = -120; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = -35; +"@MMK_R_KO_ellipsis" = 6; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = -40; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -48; +"@MMK_R_KO_onesuperior" = -80; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 13; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -51; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -43; +"@MMK_R_KO_quoteleft" = -37; +"@MMK_R_KO_quoteright" = -31; +"@MMK_R_KO_quoteright.ss01" = -32; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -63; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = -43; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_trademark" = -81; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -34; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_x" = 19; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 22; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -34; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_X" = 23; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = -33; +"@MMK_R_KO_ellipsis" = 6; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = -39; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -46; +"@MMK_R_KO_onesuperior" = -60; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 13; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -50; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -42; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -31; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -56; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = -38; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -34; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_x" = 19; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_T" = -112; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = -2; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -108; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -85; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -105; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = -98; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_Y" = -14; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -44; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asterisk" = 27; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -148; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -46; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -62; +"@MMK_R_KO_g" = -41; +"@MMK_R_KO_guillemetleft" = -49; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_hyphen.case" = -16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = 12; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 6; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_seven" = 22; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = -114; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 6; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = 18; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_y" = 18; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = 29; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -25; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 19; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 17; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 13; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -49; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -67; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 79; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_nine" = -6; +"@MMK_R_KO_one" = -5; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -43; +"@MMK_R_KO_seven" = 15; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_v" = -57; +"@MMK_R_KO_w" = -56; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 16; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = 13; +"@MMK_R_KO_W" = 21; +"@MMK_R_KO_Y" = 16; +"@MMK_R_KO_Z" = 36; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = 5; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -25; +"@MMK_R_KO_guillemetleft" = -49; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen.case" = -70; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -7; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 12; +"@MMK_R_KO_six" = -21; +"@MMK_R_KO_slash" = 35; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 28; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -33; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -72; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -66; +"@MMK_R_KO_W" = -47; +"@MMK_R_KO_X" = -45; +"@MMK_R_KO_Y" = -113; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -64; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = -15; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_icircumflex" = -8; +"@MMK_R_KO_imacron" = -4; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = -8; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -56; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -36; +"@MMK_R_KO_question.ss01" = -45; +"@MMK_R_KO_quotedbl" = -42; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -35; +"@MMK_R_KO_slash" = -35; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -53; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_x" = -39; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -148; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = -6; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = -46; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -101; +"@MMK_R_KO_nine" = -17; +"@MMK_R_KO_one" = -92; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_quotedbl" = -148; +"@MMK_R_KO_quotedblleft" = -148; +"@MMK_R_KO_quoteright" = -148; +"@MMK_R_KO_seven" = -77; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 36; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -112; +"@MMK_R_KO_H" = -12; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_a" = -51; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -15; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -77; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -73; +"@MMK_R_KO_W" = -49; +"@MMK_R_KO_X" = -45; +"@MMK_R_KO_Y" = -116; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = -61; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -18; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = -10; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_icircumflex" = -6; +"@MMK_R_KO_imacron" = -6; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -10; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -40; +"@MMK_R_KO_onesuperior" = -59; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -51; +"@MMK_R_KO_quotedbl" = -46; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -32; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -47; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -75; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -52; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = -41; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -21; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -51; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = -36; +"@MMK_R_KO_Y" = -80; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_bracketright" = -48; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -38; +"@MMK_R_KO_onesuperior" = -56; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -36; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -39; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -34; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -46; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -21; +"@MMK_R_KO_x" = -35; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 24; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = 15; +"@MMK_R_KO_four" = 19; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -16; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 19; +"@MMK_R_KO_two" = 21; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 43; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -119; +"@MMK_R_KO_U" = -19; +"@MMK_R_KO_V" = -121; +"@MMK_R_KO_W" = -66; +"@MMK_R_KO_Y" = -164; +"@MMK_R_KO_Z" = 37; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = 28; +"@MMK_R_KO_asterisk" = -155; +"@MMK_R_KO_colon" = 25; +"@MMK_R_KO_comma" = 20; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eight" = 6; +"@MMK_R_KO_ellipsis" = 21; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = 22; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_hyphen.case" = -90; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_nine" = -10; +"@MMK_R_KO_one" = -78; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 26; +"@MMK_R_KO_quotedbl" = -235; +"@MMK_R_KO_quotedblleft" = -299; +"@MMK_R_KO_quoteright" = -299; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_seven" = -68; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = -37; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 39; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_v" = -63; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_y" = -37; +"@MMK_R_KO_z" = 26; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = -32; +"@MMK_R_KO_I.ss02" = -15; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = -43; +"@MMK_R_KO_S" = -24; +"@MMK_R_KO_T" = -172; +"@MMK_R_KO_U" = -40; +"@MMK_R_KO_V" = -151; +"@MMK_R_KO_W" = -99; +"@MMK_R_KO_Y" = -212; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asterisk" = -155; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_egrave" = -37; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_f" = -59; +"@MMK_R_KO_five" = -29; +"@MMK_R_KO_four" = -17; +"@MMK_R_KO_g" = -36; +"@MMK_R_KO_guillemetleft" = -52; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_hyphen.case" = -184; +"@MMK_R_KO_i" = -31; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -31; +"@MMK_R_KO_nine" = -34; +"@MMK_R_KO_one" = -124; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_quotedbl" = -235; +"@MMK_R_KO_quotedblleft.ss01" = -271; +"@MMK_R_KO_quoteright.ss01" = -271; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_seven" = -103; +"@MMK_R_KO_six" = -37; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = -62; +"@MMK_R_KO_three" = -23; +"@MMK_R_KO_two" = -8; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_v" = -90; +"@MMK_R_KO_w" = -76; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -140; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -76; +"@MMK_R_KO_W" = -45; +"@MMK_R_KO_Y" = -134; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -19; +"@MMK_R_KO_comma" = -26; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 18; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = -77; +"@MMK_R_KO_parenright" = -85; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_quotedbl" = -49; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -104; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -42; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -14; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -24; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = -45; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 24; +"@MMK_R_KO_U" = 24; +"@MMK_R_KO_V" = 31; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = 33; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 3; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = -54; +"@MMK_R_KO_comma.ss01" = -62; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = 19; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = 24; +"@MMK_R_KO_fivesuperior" = 11; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = 7; +"@MMK_R_KO_hyphen" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 91; +"@MMK_R_KO_imacron" = 93; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 46; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 2; +"@MMK_R_KO_onesuperior" = 16; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 9; +"@MMK_R_KO_question.ss01" = 8; +"@MMK_R_KO_quotedbl" = 19; +"@MMK_R_KO_quotedblleft" = 12; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 12; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 20; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 18; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = 19; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_t" = 21; +"@MMK_R_KO_threesuperior" = 21; +"@MMK_R_KO_trademark" = 6; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -50; +"@MMK_R_KO_v" = 25; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = 18; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 12; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = -44; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 26; +"@MMK_R_KO_U" = 26; +"@MMK_R_KO_V" = 33; +"@MMK_R_KO_W" = 41; +"@MMK_R_KO_X" = 23; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 5; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = -53; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = 21; +"@MMK_R_KO_ellipsis" = -56; +"@MMK_R_KO_exclam" = 23; +"@MMK_R_KO_f" = 26; +"@MMK_R_KO_fivesuperior" = 13; +"@MMK_R_KO_foursuperior" = 13; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = 9; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 92; +"@MMK_R_KO_imacron" = 73; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 48; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 4; +"@MMK_R_KO_onesuperior" = 18; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 10; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 14; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 22; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 20; +"@MMK_R_KO_six" = 15; +"@MMK_R_KO_sixsuperior" = 21; +"@MMK_R_KO_slash" = -49; +"@MMK_R_KO_t" = 23; +"@MMK_R_KO_threesuperior" = 23; +"@MMK_R_KO_trademark" = 8; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -49; +"@MMK_R_KO_v" = 27; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = 20; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -4; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -4; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_e" = -1; +"@MMK_R_KO_egrave" = -1; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -1; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = -1; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 54; +"@MMK_R_KO_imacron" = 59; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -5; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = -2; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -3; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = -4; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asterisk" = -8; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eight" = 20; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_five" = 14; +"@MMK_R_KO_four" = 23; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 12; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -4; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_seven" = -4; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_slash" = -23; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_three" = 14; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -46; +"@MMK_R_KO_W" = -30; +"@MMK_R_KO_Y" = -43; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asterisk" = -46; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eight" = 18; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 22; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -45; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_quotedbl" = -50; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -53; +"@MMK_R_KO_quoteright" = -45; +"@MMK_R_KO_quoteright.ss01" = -52; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_seven" = -41; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -16; +"@MMK_R_KO_t" = -30; +"@MMK_R_KO_three" = 10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -29; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_y" = -40; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 27; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 21; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = 26; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 18; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 19; +"@MMK_R_KO_comma.ss01" = 6; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 84; +"@MMK_R_KO_imacron" = 65; +"@MMK_R_KO_j" = 61; +"@MMK_R_KO_l.ss04" = 12; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 41; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 6; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 27; +"@MMK_R_KO_y" = 9; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -8; +"@MMK_R_KO_g" = -21; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = 14; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 5; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 20; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_y" = 21; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -32; +"@MMK_R_KO_J" = -27; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -73; +"@MMK_R_KO_W" = -46; +"@MMK_R_KO_Y" = -110; +"@MMK_R_KO_Z" = -24; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asterisk" = -49; +"@MMK_R_KO_colon" = -28; +"@MMK_R_KO_comma" = -47; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 15; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = -36; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = -29; +"@MMK_R_KO_parenright" = -74; +"@MMK_R_KO_parenright.case" = -58; +"@MMK_R_KO_period" = -43; +"@MMK_R_KO_period.ss01" = -44; +"@MMK_R_KO_quotedbl" = -50; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -34; +"@MMK_R_KO_six" = 15; +"@MMK_R_KO_slash" = -52; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = -24; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -138; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -76; +"@MMK_R_KO_W" = -45; +"@MMK_R_KO_Y" = -134; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -73; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = -28; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 20; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = -77; +"@MMK_R_KO_parenright" = -84; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_quotedbl" = -51; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -104; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -14; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -24; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -67; +"@MMK_R_KO_H" = -14; +"@MMK_R_KO_I.ss02" = -92; +"@MMK_R_KO_J" = -112; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = -117; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -66; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_Y" = -103; +"@MMK_R_KO_Z" = -51; +"@MMK_R_KO_asterisk" = -29; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -110; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_eight" = -18; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_nine" = -6; +"@MMK_R_KO_one" = -9; +"@MMK_R_KO_parenright.case" = -88; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = -38; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_seven" = -12; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = -75; +"@MMK_R_KO_three" = -39; +"@MMK_R_KO_two" = -6; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = -15; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = -11; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -30; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -18; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = -25; +"@MMK_R_KO_ellipsis" = -27; +"@MMK_R_KO_exclam" = -16; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -19; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_ninesuperior" = -41; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = -22; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -41; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -29; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -27; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_underscore" = -13; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = -15; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 25; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -1; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 42; +"@MMK_R_KO_U" = 39; +"@MMK_R_KO_V" = 58; +"@MMK_R_KO_W" = 61; +"@MMK_R_KO_X" = 47; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = 29; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 44; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -18; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -1; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = 18; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = -1; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 50; +"@MMK_R_KO_imacron" = 89; +"@MMK_R_KO_j" = 30; +"@MMK_R_KO_l.ss04" = 54; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = 6; +"@MMK_R_KO_parenright" = 34; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -19; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 27; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = 19; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = 46; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_threesuperior" = 9; +"@MMK_R_KO_trademark" = 22; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = -15; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = -43; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -47; +"@MMK_R_KO_egrave" = -47; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_sevensuperior" = -49; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = -31; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 29; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -1; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = -1; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 73; +"@MMK_R_KO_imacron" = 54; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -4; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -21; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -11; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 21; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 28; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 29; +"@MMK_R_KO_Y" = -26; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 22; +"@MMK_R_KO_comma.ss01" = 3; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = 8; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = -36; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = 8; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 32; +"@MMK_R_KO_imacron" = 15; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -10; +"@MMK_R_KO_period" = 31; +"@MMK_R_KO_period.ss01" = 2; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -48; +"@MMK_R_KO_quoteleft" = -32; +"@MMK_R_KO_quoteright" = -36; +"@MMK_R_KO_quoteright.ss01" = -33; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -31; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_trademark" = -40; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -25; +"@MMK_R_KO_x" = 20; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 152; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -20; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = 60; +"@MMK_R_KO_eightsuperior" = 174; +"@MMK_R_KO_exclam" = 189; +"@MMK_R_KO_f" = 97; +"@MMK_R_KO_fivesuperior" = 179; +"@MMK_R_KO_foursuperior" = 116; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_i" = 172; +"@MMK_R_KO_j" = 139; +"@MMK_R_KO_l.ss04" = 191; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 161; +"@MMK_R_KO_onesuperior" = 148; +"@MMK_R_KO_parenright" = 118; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = 126; +"@MMK_R_KO_question.ss01" = 138; +"@MMK_R_KO_quotedbl" = 199; +"@MMK_R_KO_quotedblleft" = 122; +"@MMK_R_KO_quotedblleft.ss01" = 132; +"@MMK_R_KO_quoteleft" = 122; +"@MMK_R_KO_sevensuperior" = 102; +"@MMK_R_KO_sixsuperior" = 163; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 72; +"@MMK_R_KO_threesuperior" = 74; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_z" = 93; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = -60; +"@MMK_R_KO_O" = -50; +"@MMK_R_KO_T" = -170; +"@MMK_R_KO_a" = -59; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_f" = -53; +"@MMK_R_KO_i" = -61; +"@MMK_R_KO_n" = -61; +"@MMK_R_KO_t" = -53; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -63; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = -108; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -35; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -63; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -30; +"@MMK_R_KO_question.ss01" = -38; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -52; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -43; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -68; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -19; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -72; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -74; +"@MMK_R_KO_W" = -45; +"@MMK_R_KO_X" = -47; +"@MMK_R_KO_Y" = -115; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = -64; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -23; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = -27; +"@MMK_R_KO_exclam" = -16; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_fivesuperior" = -36; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -3; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = -7; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -64; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = -38; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -46; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteleft" = -32; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -52; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -39; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -50; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_x" = -41; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -28; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_V" = -47; +"@MMK_R_KO_W" = -36; +"@MMK_R_KO_Y" = -77; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -51; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_exclam" = -9; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_icircumflex" = 10; +"@MMK_R_KO_imacron" = 10; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 12; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -50; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = -9; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -37; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = -34; +"@MMK_R_KO_slash" = -29; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -66; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = -54; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_x" = -37; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -30; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -39; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -69; +"@MMK_R_KO_a.ss05" = -47; +"@MMK_R_KO_asterisk" = -13; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -65; +"@MMK_R_KO_eight" = -34; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_f" = -48; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -66; +"@MMK_R_KO_g" = -30; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -56; +"@MMK_R_KO_hyphen" = -84; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 64; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = -43; +"@MMK_R_KO_one" = -44; +"@MMK_R_KO_parenright" = 50; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -53; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -47; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = -59; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -50; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -52; +"@MMK_R_KO_three" = -37; +"@MMK_R_KO_two" = -23; +"@MMK_R_KO_u" = -55; +"@MMK_R_KO_v" = -55; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -41; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_asterisk" = -24; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -44; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen.case" = -72; +"@MMK_R_KO_nine" = -32; +"@MMK_R_KO_one" = -37; +"@MMK_R_KO_parenright.case" = 48; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -44; +"@MMK_R_KO_quotedblleft.ss01" = -45; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -36; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_three" = -24; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 25; +"@MMK_R_KO_J" = 38; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -123; +"@MMK_R_KO_U" = -23; +"@MMK_R_KO_V" = -128; +"@MMK_R_KO_W" = -78; +"@MMK_R_KO_Y" = -144; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asterisk" = -144; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -43; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_hyphen.case" = -97; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -15; +"@MMK_R_KO_one" = -93; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -144; +"@MMK_R_KO_quotedblleft" = -144; +"@MMK_R_KO_quoteright" = -144; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -81; +"@MMK_R_KO_six" = -26; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -44; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 29; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_v" = -72; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_y" = -40; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -19; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = -35; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -126; +"@MMK_R_KO_U" = -32; +"@MMK_R_KO_V" = -126; +"@MMK_R_KO_W" = -81; +"@MMK_R_KO_Y" = -126; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asterisk" = -126; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_five" = -14; +"@MMK_R_KO_four" = -2; +"@MMK_R_KO_g" = -26; +"@MMK_R_KO_guillemetleft" = -44; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_hyphen.case" = -126; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -107; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft.ss01" = -126; +"@MMK_R_KO_quoteright.ss01" = -126; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_seven" = -86; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -52; +"@MMK_R_KO_three" = -8; +"@MMK_R_KO_two" = 2; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_v" = -74; +"@MMK_R_KO_w" = -64; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -60; +"@MMK_R_KO_S" = -32; +"@MMK_R_KO_T" = -134; +"@MMK_R_KO_U" = -46; +"@MMK_R_KO_V" = -141; +"@MMK_R_KO_W" = -89; +"@MMK_R_KO_Y" = -180; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -38; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_eight" = -24; +"@MMK_R_KO_f" = -39; +"@MMK_R_KO_five" = -33; +"@MMK_R_KO_four" = -114; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = 44; +"@MMK_R_KO_nine" = -39; +"@MMK_R_KO_one" = -91; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_quotedbl" = -99; +"@MMK_R_KO_quotedblleft" = -123; +"@MMK_R_KO_quoteright" = -142; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_seven" = -73; +"@MMK_R_KO_six" = -43; +"@MMK_R_KO_t" = -49; +"@MMK_R_KO_three" = -29; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_v" = -88; +"@MMK_R_KO_w" = -72; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -117; +"@MMK_R_KO_H" = -17; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -109; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = -3; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = -55; +"@MMK_R_KO_a.ss05" = -46; +"@MMK_R_KO_asterisk" = -4; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = -148; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_egrave" = -54; +"@MMK_R_KO_eight" = -23; +"@MMK_R_KO_ellipsis" = -235; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = -70; +"@MMK_R_KO_g" = -52; +"@MMK_R_KO_guillemetleft" = -59; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -60; +"@MMK_R_KO_hyphen.case" = -38; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_j" = -21; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_nine" = -20; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -10; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_slash" = -121; +"@MMK_R_KO_t" = -16; +"@MMK_R_KO_three" = -23; +"@MMK_R_KO_two" = -16; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -29; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -127; +"@MMK_R_KO_U" = -35; +"@MMK_R_KO_V" = -127; +"@MMK_R_KO_W" = -85; +"@MMK_R_KO_Y" = -183; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = -148; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = -8; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -42; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = -8; +"@MMK_R_KO_g" = -22; +"@MMK_R_KO_guillemetleft" = -51; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = -103; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = 28; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = -26; +"@MMK_R_KO_one" = -97; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_quotedblleft" = -299; +"@MMK_R_KO_quoteright" = -148; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_seven" = -80; +"@MMK_R_KO_six" = -31; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = -49; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = 15; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_v" = -79; +"@MMK_R_KO_w" = -64; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = -30; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_O" = -40; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = -147; +"@MMK_R_KO_U" = -38; +"@MMK_R_KO_V" = -148; +"@MMK_R_KO_W" = -96; +"@MMK_R_KO_Y" = -202; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asterisk" = -136; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -35; +"@MMK_R_KO_eight" = -18; +"@MMK_R_KO_f" = -59; +"@MMK_R_KO_five" = -27; +"@MMK_R_KO_four" = -16; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -136; +"@MMK_R_KO_i" = -31; +"@MMK_R_KO_j" = 19; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = -32; +"@MMK_R_KO_one" = -115; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -136; +"@MMK_R_KO_quoteright.ss01" = -136; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_seven" = -103; +"@MMK_R_KO_six" = -35; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = -61; +"@MMK_R_KO_three" = -21; +"@MMK_R_KO_two" = -8; +"@MMK_R_KO_u" = -32; +"@MMK_R_KO_v" = -86; +"@MMK_R_KO_w" = -73; +"@MMK_R_KO_y" = -44; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -94; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -103; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -148; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_egrave" = -36; +"@MMK_R_KO_eight" = -18; +"@MMK_R_KO_ellipsis" = -299; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -48; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -39; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_n" = -15; +"@MMK_R_KO_nine" = -3; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_seven" = 5; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_slash" = -104; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -80; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -102; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 5; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asterisk" = 4; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -26; +"@MMK_R_KO_eight" = -18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -8; +"@MMK_R_KO_four" = -40; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -4; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -6; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = -92; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -11; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -114; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -101; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -59; +"@MMK_R_KO_a.ss05" = -52; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -148; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_egrave" = -50; +"@MMK_R_KO_eight" = -11; +"@MMK_R_KO_ellipsis" = -299; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -8; +"@MMK_R_KO_four" = -88; +"@MMK_R_KO_g" = -57; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -75; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_nine" = -8; +"@MMK_R_KO_one" = 4; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_s" = -51; +"@MMK_R_KO_seven" = 14; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_slash" = -117; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -94; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -103; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -148; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eight" = -18; +"@MMK_R_KO_ellipsis" = -148; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -48; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_n" = -15; +"@MMK_R_KO_nine" = -3; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_seven" = 5; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_slash" = -104; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -114; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -101; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_a.ss05" = -51; +"@MMK_R_KO_asterisk" = 15; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -148; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_egrave" = -42; +"@MMK_R_KO_eight" = -11; +"@MMK_R_KO_ellipsis" = -148; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -8; +"@MMK_R_KO_four" = -88; +"@MMK_R_KO_g" = -55; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -76; +"@MMK_R_KO_hyphen.case" = -39; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_nine" = -8; +"@MMK_R_KO_one" = 4; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_s" = -51; +"@MMK_R_KO_seven" = 14; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_slash" = -117; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -120; +"@MMK_R_KO_H" = -18; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -117; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_S" = -25; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = -20; +"@MMK_R_KO_a" = -55; +"@MMK_R_KO_a.ss05" = -46; +"@MMK_R_KO_asterisk" = -10; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -58; +"@MMK_R_KO_egrave" = -56; +"@MMK_R_KO_eight" = -28; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_five" = -24; +"@MMK_R_KO_four" = -76; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -59; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -70; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_j" = -31; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = -22; +"@MMK_R_KO_one" = -11; +"@MMK_R_KO_parenright" = -9; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -33; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = -5; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_slash" = -121; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_three" = -24; +"@MMK_R_KO_two" = -18; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -29; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -99; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -99; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 15; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_Y" = 14; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -44; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asterisk" = 12; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -99; +"@MMK_R_KO_comma.ss01" = -99; +"@MMK_R_KO_e" = -47; +"@MMK_R_KO_egrave" = -42; +"@MMK_R_KO_eight" = -11; +"@MMK_R_KO_ellipsis" = -99; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_five" = -6; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -43; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -51; +"@MMK_R_KO_hyphen.case" = -26; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_nine" = -5; +"@MMK_R_KO_one" = 8; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -99; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -38; +"@MMK_R_KO_seven" = 17; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_slash" = -99; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -60; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -75; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -57; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -56; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = -96; +"@MMK_R_KO_comma.ss01" = -107; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = 14; +"@MMK_R_KO_ellipsis" = -96; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 6; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 9; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_period" = -89; +"@MMK_R_KO_period.ss01" = -108; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = 10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = 7; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = 20; +"@MMK_R_KO_threesuperior" = 14; +"@MMK_R_KO_trademark" = -51; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -88; +"@MMK_R_KO_v" = 28; +"@MMK_R_KO_w" = 19; +"@MMK_R_KO_x" = 7; +"@MMK_R_KO_y" = 18; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -64; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_X" = -30; +"@MMK_R_KO_Y" = -106; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asciicircum" = -13; +"@MMK_R_KO_bracketright" = -52; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = -64; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -38; +"@MMK_R_KO_quotedbl" = -39; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -20; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -30; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -21; +"@MMK_R_KO_x" = -24; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_bracketright" = -45; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = 20; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = -47; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -28; +"@MMK_R_KO_question.ss01" = -38; +"@MMK_R_KO_quotedbl" = -38; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -20; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -21; +"@MMK_R_KO_x" = -23; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -109; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = -87; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 22; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 35; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -58; +"@MMK_R_KO_a.ss05" = -51; +"@MMK_R_KO_asterisk" = 21; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -121; +"@MMK_R_KO_comma.ss01" = -124; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -126; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -62; +"@MMK_R_KO_g" = -56; +"@MMK_R_KO_guillemetleft" = -57; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -71; +"@MMK_R_KO_hyphen.case" = -40; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 15; +"@MMK_R_KO_parenright" = 2; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -118; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -50; +"@MMK_R_KO_seven" = 28; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -111; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_Y" = -43; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -13; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eight" = 23; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_five" = 14; +"@MMK_R_KO_four" = 22; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 10; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 14; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 8; +"@MMK_R_KO_one" = 4; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_seven" = 6; +"@MMK_R_KO_six" = 22; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_three" = 18; +"@MMK_R_KO_two" = 17; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 9; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -125; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = -98; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = -27; +"@MMK_R_KO_T" = 23; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = 17; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_Y" = 13; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -49; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -41; +"@MMK_R_KO_comma" = -142; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -82; +"@MMK_R_KO_egrave" = -62; +"@MMK_R_KO_eight" = -25; +"@MMK_R_KO_ellipsis" = -139; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -84; +"@MMK_R_KO_g" = -71; +"@MMK_R_KO_guillemetleft" = -78; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -84; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -45; +"@MMK_R_KO_nine" = -25; +"@MMK_R_KO_one" = -10; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -138; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 10; +"@MMK_R_KO_s" = -63; +"@MMK_R_KO_seven" = 32; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_slash" = -140; +"@MMK_R_KO_t" = -24; +"@MMK_R_KO_three" = -26; +"@MMK_R_KO_two" = -25; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = -41; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -3; +"@MMK_R_KO_bracketright" = -7; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -19; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -39; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 14; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asterisk" = 6; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 24; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 13; +"@MMK_R_KO_four" = 20; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 9; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_nine" = 14; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -30; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_seven" = 5; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 20; +"@MMK_R_KO_two" = 25; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -41; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asterisk" = 9; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = 15; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_ellipsis" = 2; +"@MMK_R_KO_f" = 11; +"@MMK_R_KO_five" = 7; +"@MMK_R_KO_four" = 2; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = 10; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_hyphen.case" = -4; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 17; +"@MMK_R_KO_one" = 8; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 24; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 4; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_seven" = 11; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_three" = 9; +"@MMK_R_KO_two" = 30; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = 9; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -94; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -63; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -54; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -69; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -93; +"@MMK_R_KO_comma.ss01" = -86; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -90; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 24; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = -28; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = 21; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = -5; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -74; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = 5; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 12; +"@MMK_R_KO_slash" = -97; +"@MMK_R_KO_t" = 24; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -45; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -114; +"@MMK_R_KO_v" = 32; +"@MMK_R_KO_w" = 24; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 30; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -62; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -48; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_X" = -57; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -24; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -68; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -64; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 18; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 3; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_icircumflex" = -3; +"@MMK_R_KO_imacron" = -3; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = -7; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = -57; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = -65; +"@MMK_R_KO_t" = 18; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -78; +"@MMK_R_KO_v" = 23; +"@MMK_R_KO_w" = 15; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 24; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -1; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_egrave" = -40; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -43; +"@MMK_R_KO_guillemetright" = 9; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 8; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_sevensuperior" = -49; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -53; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 20; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 27; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -4; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 12; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 21; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -58; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = -5; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -24; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -16; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -3; +"@MMK_R_KO_n" = -11; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_period" = 1; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -11; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -27; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = -33; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = 31; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 25; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asterisk" = -3; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = -33; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eight" = 12; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_f" = 15; +"@MMK_R_KO_five" = 15; +"@MMK_R_KO_four" = 17; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 16; +"@MMK_R_KO_hyphen.case" = 23; +"@MMK_R_KO_i" = 13; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 13; +"@MMK_R_KO_nine" = 19; +"@MMK_R_KO_one" = 8; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = 3; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = 36; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = 15; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 3; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -13; +Tbar = -98; +asciitilde = -62; +asterisk = -104; +backslash = -105; +g.ss06 = 16; +minus = -69; +one = -80; +ordmasculine = -104; +plus = -55; +quotedbl = -108; +registered = -81; +seven = -65; +two = 25; +twosuperior = -59; +}; +Aacute = { +Tbar = -98; +}; +Abrevedotbelow.ss01 = { +T = -109; +}; +Aogonek = { +comma = 24; +parenright = 0; +}; +Atilde = { +ordfeminine = -104; +}; +B = { +Hbar = 39; +hbar = 22; +idieresis = 62; +itilde = 44; +}; +C = { +h = 9; +l = 9; +plus = 0; +three = 9; +}; +D = { +Lslash = 22; +Oslash = 13; +braceright = -36; +bracketright.case = -36; +}; +E = { +H = 0; +idieresis = 98; +}; +Eogonek = { +comma = 26; +}; +F = { +fourinferior = -52; +i = 0; +igrave = 43; +}; +G = { +Lslash = 31; +lslash = 18; +}; +Germandbls = { +S = 20; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = 0; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 24; +itilde = 64; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 31; +D = 31; +E = 31; +H = 31; +Hbar = 97; +I = 31; +L = 31; +M = 31; +O = 17; +R = 31; +S = 41; +U = 44; +W = 57; +i = 39; +}; +I = { +Hbar = 31; +I = 0; +jcircumflex = 86; +}; +Icircumflex = { +Icircumflex = 170; +l.ss04 = 15; +}; +Imacron = { +Imacron = 162; +}; +Itilde = { +itilde = 64; +}; +J = { +Hbar = 39; +itilde = 72; +}; +Jacute = { +Imacron = 136; +}; +K = { +asciitilde = -101; +four = -39; +idieresis = 75; +igrave = 41; +itilde = 39; +less = -79; +logicalnot = -155; +minus = -110; +one = -50; +oslash = -7; +plus = -99; +}; +L = { +H = 0; +Tbar = -64; +asciitilde = -23; +asterisk = -155; +backslash = -102; +equal = 0; +four = 0; +less = -5; +logicalnot = -129; +minus = -37; +one = -83; +ordfeminine = -209; +ordmasculine = -208; +oslash = -6; +plus = -30; +quotedbl = -211; +quoteleft.ss01 = -136; +quoteright = -148; +quoteright.ss01 = -136; +registered = -98; +seven = -69; +twosuperior = -207; +}; +Lcaron = { +A = 24; +O = -21; +U = -11; +Uacute = -11; +V = -37; +a = -5; +hyphen = 0; +hyphen.case = -121; +u = 0; +v = -57; +}; +Lcommaaccent = { +twosuperior = -207; +}; +Lslash = { +twosuperior = -103; +}; +M = { +Hbar = 31; +idieresis = 84; +igrave = 24; +itilde = 64; +}; +N = { +Hbar = 31; +idieresis = 84; +igrave = 24; +itilde = 64; +}; +O = { +Dcroat = 19; +Lslash = 22; +braceright = -37; +bracketright.case = -37; +itilde = 0; +}; +Oslash = { +T = -13; +V = -11; +Y = -6; +parenright = 0; +parenright.case = 0; +}; +P = { +fourinferior = -79; +idieresis = 65; +itilde = 46; +two = 23; +}; +R = { +Hbar = 53; +jcircumflex = 93; +two = 37; +}; +S = { +Hbar = 34; +Lslash = 33; +dollar = 7; +four = 25; +idieresis = 35; +itilde = 21; +lslash = 20; +three = 22; +}; +T = { +Oslash = -19; +a.ss05 = -55; +aacute.ss05 = -55; +abreve = -67; +abreveacute = -64; +acircumflex = -52; +acircumflexacute = -60; +acircumflexdotbelow = -52; +adieresis = -54; +adotbelow.ss05 = -55; +ae = -56; +agrave = -71; +amacron = -58; +ampersand = -41; +aring = -71; +asciitilde = -74; +atilde = -60; +equal = 0; +four = -93; +g.ss06 = -52; +h = 0; +i.ss01 = -6; +iacute = -13; +idieresis = 108; +idotless = -14; +igrave = 41; +itilde = 84; +less = -5; +logicalnot = -166; +minus = -49; +ograve = -66; +plus = -43; +racute = -13; +scaron = -32; +seven = 20; +twoinferior = -126; +udieresis = -6; +udieresis.ss01 = -6; +ugrave = -6; +uhorngrave = -6; +umacron = -6; +ycircumflex = 0; +ygrave = 0; +yhookabove = 0; +zcaron = -4; +zeroinferior = -126; +}; +Tbar = { +A = -102; +Aacute = -102; +Tbar = 26; +a = -57; +comma = -114; +e = -57; +o = -58; +period = -107; +slash = -109; +}; +Tcaron = { +a.ss05 = -55; +}; +Tcedilla = { +a.ss05 = -55; +abreve = -67; +four = -93; +}; +Tcommaaccent = { +a.ss05 = -55; +abreve = -67; +four = -93; +}; +Thorn = { +A = -42; +AE = -34; +Aacute = -42; +J = -18; +O = 26; +Oacute = 26; +V = -45; +Y = -66; +Yacute = -66; +a = 11; +aacute = 11; +e = 9; +o = 8; +oacute = 8; +period = -41; +}; +U = { +Hbar = 44; +jcircumflex = 92; +}; +V = { +four = -79; +iacute = -38; +ibreve = 72; +idieresis = 95; +igrave = 57; +itilde = 64; +minus = -71; +plus = -57; +scaron = -25; +seven = 28; +twoinferior = -91; +}; +W = { +Hbar = 58; +backslash = 49; +idieresis = 107; +igrave = 60; +itilde = 78; +}; +X = { +asciitilde = -100; +four = -37; +less = -77; +logicalnot = -152; +minus = -109; +notequal = -72; +one = -40; +plus = -93; +}; +Y = { +a.ss05 = -108; +agrave = -83; +amacron = -56; +ampersand = -66; +asciitilde = -125; +at = -82; +four = -125; +g.ss06 = -103; +igrave = 20; +less = -75; +logicalnot = -147; +minus = -106; +ograve = -61; +plus = -91; +scaron = -24; +twoinferior = -142; +}; +Z = { +four = 4; +ibreve = 50; +igrave = 35; +itilde = 75; +minus = -44; +plus = -24; +}; +_B.currency = { +_baht.bar = -24; +}; +a = { +braceright = -2; +}; +a.ss05 = { +g.ss06 = 12; +}; +acircumflexacute.ss05 = { +y = -26; +}; +adieresis.ss05 = { +germandbls = -19; +}; +ampersand = { +V = -71; +W = -50; +Y = -124; +quotedbl = -44; +quotedblleft = -31; +}; +aogonek = { +j = 35; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 26; +}; +approxequal = { +parenright = -78; +parenright.case = -72; +}; +asciicircum = { +J = -121; +X = -83; +Y = -67; +bracketright = -75; +comma = -148; +comma.ss01 = -126; +four = -59; +hyphen = -71; +parenright = -94; +parenright.case = -91; +period = -144; +period.ss01 = -126; +slash = -118; +}; +asciitilde = { +I.ss02 = -19; +J = -73; +V = -58; +W = -35; +X = -109; +Y = -88; +Z = -35; +bracketright = -105; +bracketright.case = -106; +comma = -111; +comma.ss01 = -101; +eight = -5; +exclam = -5; +four = -5; +one = 0; +parenright = -107; +parenright.case = -97; +period = -105; +period.ss01 = -102; +question = 0; +quotedbl = -18; +quotedblright = -5; +seven = 0; +slash = -95; +three = -5; +two = 0; +}; +at = { +T = -21; +parenright = -61; +}; +b = { +asterisk = -44; +braceright = -58; +lslash = 0; +one = -24; +}; +backslash = { +T = -112; +V = -129; +Y = -142; +asterisk = -114; +backslash = -112; +quotedbl = -113; +quotedblleft = -100; +quotedblleft.ss01 = -104; +quotedblright = -83; +quotedblright.ss01 = -87; +quoteleft = -100; +quoteright = -82; +quotesingle = -99; +}; +baht = { +parenright = -58; +}; +braceleft = { +p = 4; +}; +bracketleft = { +asciicircum = -64; +asciitilde = -95; +bracketright = 27; +jcircumflex = 99; +p = 6; +pi = -25; +plus = -83; +x = 0; +}; +c = { +asterisk = -42; +braceright = -57; +}; +cent = { +parenright = -63; +}; +colon = { +T = 0; +Y = -46; +four = 0; +one = 28; +parenright = -24; +two = 57; +zero = 39; +}; +colon.ss01 = { +T = -19; +four = -17; +parenright = -59; +}; +comma = { +eightsuperior = -148; +fivesuperior = -148; +foursuperior = -148; +ninesuperior = -148; +onesuperior = -148; +quoteleft = -148; +quotesingle = -99; +sevensuperior = -148; +sixsuperior = -148; +threesuperior = -148; +twosuperior = -148; +}; +comma.ss01 = { +eightsuperior = -126; +fivesuperior = -126; +foursuperior = -126; +ninesuperior = -126; +onesuperior = -126; +sevensuperior = -126; +sixsuperior = -126; +threesuperior = -126; +twosuperior = -126; +}; +copyright = { +Y = -92; +parenright = -89; +}; +d = { +idieresis = 73; +igrave = 6; +itilde = 52; +}; +dcaron = { +C = 74; +H = 172; +bracketright = 136; +eightsuperior = 154; +exclam = 169; +exclam.ss01 = 168; +fivesuperior = 159; +foursuperior = 96; +h = 172; +i = 139; +j = 138; +k = 172; +l = 172; +l.ss03 = 163; +l.ss04 = 187; +ninesuperior = 141; +onesuperior = 132; +parenright = 118; +question = 107; +question.ss01 = 118; +quotedbl = 181; +quotedblleft = 102; +quotedblleft.ss01 = 112; +quoteleft = 102; +quoteleft.ss01 = 112; +quotesingle = 181; +sevensuperior = 85; +sixsuperior = 144; +t = 72; +t_i.liga = 72; +t_t.liga = 72; +threesuperior = 62; +twosuperior = 72; +zcaron = 88; +}; +dcroat = { +i = 0; +igrave = 7; +itilde = 83; +}; +degree = { +J = -106; +comma = -148; +comma.ss01 = -126; +emdash = -70; +endash = -70; +four = -72; +hyphen = -70; +parenright = -39; +parenright.case = -37; +period = -144; +period.ss01 = -126; +slash = -114; +}; +divide = { +parenright = -103; +}; +dollar = { +parenright = -55; +three = 4; +}; +e = { +asterisk = -46; +backslash = -60; +braceright = -57; +germandbls = -10; +one = -27; +seven = -33; +}; +ecircumflexacute = { +t = -2; +}; +eight = { +bracketright = -12; +degree = -14; +}; +eight.dnom = { +degree = -99; +question.ss01 = -104; +quotedbl = -76; +quotedblleft = -57; +quotedblright = -37; +}; +eightsuperior = { +comma = -148; +comma.ss01 = -126; +period = -144; +period.ss01 = -126; +slash = -108; +}; +ellipsis = { +Tbar = -106; +bracketright = -16; +eightsuperior = -224; +fivesuperior = -224; +foursuperior = -216; +ninesuperior = -230; +onesuperior = -149; +parenleft = 0; +parenleft.case = -15; +question = -103; +quoteleft = -148; +quoteright = -148; +quotesingle = -99; +sevensuperior = -188; +sixsuperior = -230; +threesuperior = -219; +twosuperior = -207; +}; +ellipsis.ss01 = { +Tbar = -122; +bracketright = -21; +eightsuperior = -224; +fivesuperior = -224; +foursuperior = -216; +ninesuperior = -230; +onesuperior = -149; +question.ss01 = -136; +quoteleft.ss01 = -136; +quoteright.ss01 = -136; +quotesingle = -99; +sevensuperior = -188; +sixsuperior = -230; +threesuperior = -219; +twosuperior = -207; +}; +emdash = { +foursuperior = -53; +question = -140; +}; +emdash.case = { +X = -118; +quotedblbase = -112; +quotedblbase.ss01 = -168; +}; +endash = { +X = -62; +endash = 0; +foursuperior = -53; +question = -134; +}; +endash.case = { +H = -14; +X = -118; +quotedblbase = -112; +quotedblbase.ss01 = -168; +}; +eng = { +bracketright = -9; +}; +eogonek = { +lslash = 16; +}; +equal = { +T = 0; +equal = 0; +parenright = -80; +parenright.case = -71; +}; +eth = { +a = 9; +e = 10; +g = 13; +hyphen = 22; +parenright = -10; +}; +euro = { +parenright = -52; +parenright.case = -44; +}; +exclamdown = { +T = -28; +V = -48; +Y = -69; +}; +f = { +igrave = 46; +n = 0; +o = 8; +}; +f_f.liga = { +igrave = 48; +}; +f_f_i.liga = { +idieresis = 78; +}; +fi = { +idieresis = 78; +}; +five = { +degree = -25; +ordmasculine = -17; +percent = -12; +}; +five.dnom = { +degree = -73; +question.ss01 = -107; +quotedblleft = -38; +}; +five.numr = { +fraction = -34; +}; +fiveinferior = { +T = -125; +}; +fivesuperior = { +comma = -148; +comma.ss01 = -126; +period = -144; +period.ss01 = -126; +slash = -108; +}; +fl = { +idieresis = 70; +itilde = 49; +periodcentered.loclCAT = 32; +}; +four = { +asciicircum = -66; +bracketright = -35; +bracketright.case = -19; +degree = -55; +ordfeminine = -51; +ordmasculine = -50; +percent = -50; +x = -38; +}; +four.dnom = { +degree = -96; +question.ss01 = -108; +quotedblleft = -50; +}; +fourinferior = { +T = -132; +V = -99; +}; +foursuperior = { +comma = -148; +comma.ss01 = -126; +period = -144; +period.ss01 = -126; +slash = -89; +}; +fraction = { +eight.dnom = -15; +four.dnom = -61; +fourinferior = -61; +seveninferior = 42; +two.dnom = -17; +zero.dnom = -28; +}; +g = { +bracketright = -18; +j = 14; +j.ss01 = 14; +parenright = -33; +slash = 0; +}; +g.ss06 = { +g.ss06 = 28; +}; +gcaron.ss06 = { +gcaron.ss06 = 28; +}; +gdotaccent = { +j = 36; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 28; +}; +germandbls = { +e = 0; +hyphen = 14; +parenright = -50; +}; +greater = { +T = 0; +parenright = -69; +}; +greaterequal = { +T = -36; +}; +guillemetleft = { +pi = 10; +}; +guillemetright = { +X = -66; +bracketright = -67; +}; +guilsinglright = { +X = -66; +}; +h = { +asterisk = -37; +}; +hyphen = { +Lslash = 29; +X = -61; +bracketright = -82; +foursuperior = -53; +pi = 0; +question = -134; +quotedblbase = -31; +quoteleft = -37; +quotesingle = -51; +x = -63; +}; +hyphen.case = { +Dcroat = 0; +X = -118; +bracketright.case = -98; +quotedblbase = -112; +quotedblbase.ss01 = -168; +quotesinglbase = -112; +}; +i = { +T = 0; +idieresis = 86; +jcircumflex = 63; +parenright = -5; +}; +i.ss01 = { +parenright = -22; +}; +iacute = { +rcaron = 26; +}; +icircumflex = { +b = 57; +h = 57; +i = 48; +icircumflex = 95; +j = 43; +k = 57; +l = 57; +l.ss03 = 60; +l.ss04 = 88; +question = 11; +quotedbl = 64; +quoteright = 46; +quotesingle = 64; +}; +idieresis = { +b = 54; +idieresis = 141; +k = 54; +l = 54; +l.ss03 = 57; +l.ss04 = 98; +}; +idotaccent = { +parenright = -22; +}; +idotaccent.ss01 = { +parenright = -22; +}; +imacron = { +b = 35; +imacron = 82; +j = 43; +k = 35; +kcommaaccent = 35; +l = 35; +l.ss04 = 82; +lcommaaccent = 35; +quotedbl = 53; +}; +infinity = { +parenright = -59; +parenright.case = -47; +}; +integral = { +a = -52; +}; +iogonek = { +j = 23; +}; +itilde = { +h = 29; +itilde = 88; +quotedbl = 50; +quotesingle = 50; +}; +j = { +j = 30; +}; +jacute = { +backslash = 74; +iogonek = 9; +}; +jcircumflex = { +i = 68; +jcircumflex = 148; +}; +k = { +oslash = -13; +}; +l = { +at = 0; +idieresis = 73; +igrave = 6; +itilde = 52; +jcircumflex = 71; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -4; +}; +l.ss03 = { +periodcentered.loclCAT = -4; +periodcentered.loclCAT.ss01 = -33; +}; +l.ss04 = { +periodcentered.loclCAT = 32; +periodcentered.loclCAT.ss01 = -6; +}; +lcaron = { +exclam.ss01 = 168; +l = 172; +ncaron = 62; +scaron = 82; +twosuperior = 66; +}; +lcaron.ss03 = { +b = 139; +eightsuperior = 133; +exclam = 148; +exclam.ss01 = 147; +fivesuperior = 138; +k = 139; +ninesuperior = 120; +onesuperior = 115; +question = 87; +quotedbl = 160; +quotesingle = 160; +sevensuperior = 61; +sixsuperior = 122; +}; +lcaron.ss04 = { +exclam.ss01 = 188; +twosuperior = 88; +}; +liraTurkish = { +one = -94; +parenright = -81; +question = -131; +quotedbl = -55; +quotesingle = -55; +seven = -119; +}; +logicalnot = { +Y = -162; +parenright = -120; +seven = -58; +}; +m = { +asterisk = -38; +braceright = 0; +twosuperior = -5; +}; +minus = { +T = -49; +X = -112; +comma = -77; +one = -2; +parenright = -107; +parenright.case = -104; +period = -70; +seven = -5; +three = -5; +two = 0; +}; +mu = { +mu = -4; +parenright = -52; +quotesingle = -25; +}; +multiply = { +parenright = -89; +parenright.case = -80; +}; +n = { +asterisk = -37; +at = 8; +braceright = 0; +degree = -46; +g.ss06 = 6; +n = 0; +one = -17; +ordmasculine = -38; +}; +ncaron = { +Yacute = -47; +}; +nine = { +bracketright = -31; +degree = -14; +}; +nine.dnom = { +degree = -110; +question = -113; +question.ss01 = -106; +quotedbl = -93; +quotedblleft = -65; +quotedblleft.ss01 = -59; +quotedblright = -43; +quotedblright.ss01 = -52; +}; +ninesuperior = { +comma = -148; +comma.ss01 = -126; +fraction = -28; +period = -144; +period.ss01 = -126; +slash = -103; +}; +notequal = { +parenright = -98; +parenright.case = -88; +}; +numbersign = { +parenright = -43; +}; +o = { +asterisk = -47; +backslash = -59; +braceright = -59; +germandbls = -11; +lslash = 0; +n = 0; +one = -28; +}; +oacute = { +lslash = 16; +}; +ocircumflexacute = { +bracketright = 12; +parenright = 39; +}; +odieresis = { +germandbls = -4; +}; +ohorn = { +i = 36; +m = 38; +n = 38; +parenright = -5; +}; +ohornacute = { +c = 0; +i = 18; +m = 20; +n = 20; +p = 20; +t = 40; +t_i.liga = 40; +t_t.liga = 40; +}; +ohorndotbelow = { +c = 0; +i = 18; +n = 20; +p = 20; +t = 40; +t_i.liga = 40; +t_t.liga = 40; +u = 28; +}; +ohorngrave = { +i = 18; +n = 20; +parenright = -20; +}; +ohornhookabove = { +i = 18; +n = 20; +}; +ohorntilde = { +i = 18; +n = 20; +}; +ohungarumlaut = { +parenright = -14; +}; +one = { +comma.ss01 = -17; +degree = -12; +equal = 0; +four = 0; +icircumflex = 91; +nine = 2; +one = 0; +parenright = 0; +percent = 0; +period.ss01 = -19; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -74; +one.dnom = 0; +question.ss01 = -115; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -148; +comma.ss01 = -126; +period = -144; +period.ss01 = -126; +slash = -87; +}; +ordfeminine = { +comma = -148; +comma.ss01 = -126; +period = -144; +period.ss01 = -126; +}; +ordmasculine = { +comma = -148; +comma.ss01 = -126; +hyphen = -57; +parenright = -32; +period = -144; +period.ss01 = -126; +slash = -107; +}; +oslash = { +d = 0; +e = 3; +g = 5; +hyphen = 19; +parenright = -52; +y = -18; +}; +p = { +asterisk = -45; +backslash = -58; +braceright = -58; +lslash = 0; +one = -26; +}; +parenleft = { +Dcroat = -5; +H = 0; +Icircumflex = 95; +Oslash = -31; +ampersand = -54; +approxequal = -79; +asciicircum = -96; +asciitilde = -114; +at = -63; +cent = -66; +copyright = -72; +degree = -40; +divide = -103; +dollar = -50; +equal = -80; +euro = -66; +greaterequal = -64; +i = -5; +idotaccent = -5; +infinity = -59; +iogonek = 29; +jcircumflex = 68; +less = -83; +literSign = -59; +logicalnot = -114; +minus = -108; +mu = -5; +multiply = -89; +notequal = -104; +numbersign = -43; +oslash = -22; +p = 0; +parenleft = -48; +pi = -51; +plus = -102; +plusminus = -69; +published = -72; +question = -51; +quotedblbase = 0; +quoteleft = -48; +radical = -61; +scaron = -20; +section = -39; +sterling = -47; +x = -33; +}; +parenleft.case = { +Icircumflex = 97; +approxequal = -74; +asciicircum = -92; +asciitilde = -102; +dollar = -41; +equal = -72; +euro = -55; +minus = -104; +numbersign = -31; +parenleft.case = -35; +plus = -92; +question = -48; +quotedblbase = -5; +quoteleft = -44; +}; +parenright = { +bracketright = -20; +comma = -8; +comma.ss01 = -16; +hyphen = 17; +parenleft = 34; +parenright = -48; +period = 0; +period.ss01 = -17; +quotedbl = -21; +}; +parenright.case = { +comma = -25; +comma.ss01 = -29; +parenright.case = -35; +period = -19; +period.ss01 = -32; +}; +percent = { +asterisk = -92; +bracketright = -52; +comma.ss01 = -11; +eightsuperior = -61; +fivesuperior = -67; +foursuperior = -93; +ninesuperior = -81; +onesuperior = -69; +parenright = -55; +parenright.case = -30; +period = 0; +period.ss01 = -12; +question = -111; +question.ss01 = -105; +quotedbl = -68; +quotedblleft = -68; +quotedblright = -51; +quoteleft = -68; +quoteright = -51; +quotesingle = -68; +sevensuperior = -63; +sixsuperior = -75; +threesuperior = -62; +twosuperior = -36; +}; +period = { +bracketright = -25; +eightsuperior = -144; +fivesuperior = -144; +foursuperior = -144; +ninesuperior = -144; +onesuperior = -144; +ordfeminine = -144; +ordmasculine = -144; +parenleft.case = -20; +question = -119; +quoteleft = -144; +quotesingle = -99; +sevensuperior = -144; +sixsuperior = -144; +threesuperior = -144; +twosuperior = -144; +}; +period.ss01 = { +bracketright = -9; +eightsuperior = -126; +fivesuperior = -126; +foursuperior = -126; +ninesuperior = -126; +onesuperior = -126; +ordfeminine = -126; +ordmasculine = -126; +question.ss01 = -121; +sevensuperior = -126; +sixsuperior = -126; +threesuperior = -126; +twosuperior = -126; +}; +periodcentered.loclCAT = { +l = 35; +l.ss03 = 38; +}; +perthousand = { +asterisk = -128; +parenright = -63; +parenright.case = -36; +question = -116; +question.ss01 = -109; +quotedblleft = -71; +quotedblleft.ss01 = -73; +quotedblright = -51; +quotedblright.ss01 = -62; +quoteleft = -71; +quoteright = -51; +}; +pi = { +hyphen = -8; +parenright = -44; +period = 13; +pi = 8; +quotesingle = -15; +}; +plus = { +J = -33; +T = -43; +V = -57; +X = -97; +Y = -90; +braceright = -92; +bracketright = -96; +comma = -70; +comma.ss01 = -64; +one = 0; +parenright = -102; +parenright.case = -92; +period = -64; +period.ss01 = -64; +quotedbl = -20; +seven = 0; +slash = -68; +three = 0; +two = 0; +}; +published = { +parenright = -89; +}; +q = { +bracketright = 0; +j = 36; +parenright = 0; +}; +question = { +A = -81; +J = -91; +comma = -111; +hyphen = -26; +parenright = -34; +parenright.case = -31; +period = -104; +question = 10; +questiondown = -99; +slash = -82; +}; +question.ss01 = { +comma.ss01 = -116; +parenright = -33; +parenright.case = -30; +period.ss01 = -117; +questiondown.ss01 = -96; +}; +questiondown.case = { +T = -111; +V = -99; +Y = -124; +quotedbl = -117; +quotedblleft = -121; +quotedblleft.ss01 = -132; +quoteright = -121; +}; +questiondown.ss01 = { +C = -72; +Q = -75; +Q.ss09 = -75; +T = -114; +V = -133; +Y = -169; +four = -105; +quotedbl = -121; +quotedblleft.ss01 = -136; +quotesingle = -99; +}; +quotedbl = { +ellipsis.ss01 = -235; +exclamdown = -39; +g.ss06 = -47; +icircumflex = 63; +mu = -36; +questiondown = -148; +questiondown.case = -75; +questiondown.ss01 = -131; +underscore = -234; +}; +quotedblbase = { +copyright = -51; +divide = -74; +equal = -7; +euro = -64; +minus = -79; +p = -3; +plus = -72; +question = -121; +quotedblright = -299; +quoteleft = -148; +}; +quotedblbase.ss01 = { +divide = -66; +minus = -72; +plus = -65; +question.ss01 = -122; +quotedblright.ss01 = -271; +}; +quotedblleft = { +g.ss06 = -22; +mu = -17; +questiondown = -115; +questiondown.case = -48; +quotedblbase = -299; +underscore = -234; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -271; +questiondown.ss01 = -116; +quotedblbase.ss01 = -271; +underscore = -234; +}; +quotedblright = { +asciitilde = -71; +questiondown = -136; +questiondown.case = -86; +quotesinglbase = -148; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -271; +questiondown.case = -77; +questiondown.ss01 = -132; +}; +quoteleft = { +questiondown = -115; +questiondown.case = -48; +quotedblbase = -148; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -136; +}; +quoteright = { +icircumflex = 67; +questiondown = -136; +quotedblbase = -148; +}; +quoteright.ss01 = { +questiondown.ss01 = -132; +quotedblbase.ss01 = -136; +}; +quotesinglbase = { +T = -127; +V = -127; +Y = -148; +minus = -79; +plus = -72; +question = -121; +quotedblleft = -148; +quoteleft = -148; +}; +quotesinglbase.ss01 = { +T = -136; +V = -136; +Y = -136; +question.ss01 = -122; +}; +quotesingle = { +Hbar = 47; +g.ss06 = -37; +icircumflex = 82; +igrave = 27; +imacron = 74; +itilde = 74; +l.ss04 = 25; +questiondown = -99; +questiondown.case = -58; +underscore = -99; +}; +r = { +braceright = -53; +fourinferior = -66; +g.ss06 = -2; +parenright = -58; +}; +radical = { +A = -107; +}; +rcaron = { +sevensuperior = 33; +}; +registered = { +comma = -125; +comma.ss01 = -126; +parenright = -47; +parenright.case = -42; +period = -117; +period.ss01 = -126; +slash = -89; +}; +s = { +asterisk = -36; +braceright = -43; +l = 0; +}; +scaron = { +T = -32; +}; +semicolon = { +hyphen = -21; +}; +seven = { +minus = -50; +percent = 9; +plus = -37; +underscore = -133; +}; +seven.dnom = { +question.ss01 = -108; +}; +seven.numr = { +fraction = -53; +}; +seveninferior = { +parenright = -66; +}; +sevensuperior = { +A = -133; +comma = -148; +comma.ss01 = -126; +fraction = -51; +period = -144; +period.ss01 = -126; +slash = -135; +}; +six = { +bracketright = -12; +degree = -10; +}; +six.dnom = { +degree = -105; +question.ss01 = -106; +quotedbl = -84; +quotedblleft = -61; +quotedblleft.ss01 = -55; +quotedblright = -40; +}; +sixinferior = { +T = -124; +}; +sixsuperior = { +comma = -148; +comma.ss01 = -126; +period = -144; +period.ss01 = -126; +slash = -108; +}; +slash = { +fourinferior = -118; +g.ss06 = -63; +ibreve = 60; +l.ss04 = 29; +mu = -46; +quotedblbase = -143; +quotedblbase.ss01 = -142; +quotesinglbase = -143; +underscore = -162; +}; +sterling = { +two = 13; +}; +t_i.liga = { +idieresis = 78; +}; +tcaron = { +b = 54; +exclam = 64; +h = 54; +hyphen = -10; +i = 48; +j = 46; +k = 54; +parenright = 75; +quotedbl = 75; +quotedblleft = 8; +quotesingle = 75; +}; +tcedilla = { +parenright = 0; +}; +tenge = { +comma = -122; +comma.ss01 = -126; +period = -120; +period.ss01 = -126; +slash = -77; +}; +three = { +bracketright = -8; +}; +three.dnom = { +degree = -99; +question.ss01 = -104; +quotedbl = -76; +quotedblleft = -57; +quotedblright = -37; +}; +three.numr = { +fraction = -30; +}; +threeinferior = { +T = -125; +V = -89; +Y = -138; +}; +threesuperior = { +comma = -148; +comma.ss01 = -126; +fraction = -24; +parenright = -19; +period = -144; +period.ss01 = -126; +slash = -108; +}; +trademark = { +comma = -148; +comma.ss01 = -126; +hyphen = -52; +period = -144; +period.ss01 = -126; +slash = -120; +}; +two = { +percent = 9; +}; +two.dnom = { +degree = -103; +question.ss01 = -107; +quotedbl = -80; +quotedblleft = -60; +quotedblright = -39; +}; +twoinferior = { +T = -129; +V = -95; +Y = -144; +}; +twosuperior = { +comma = -148; +comma.ss01 = -126; +parenright = -23; +parenright.case = -21; +period = -144; +period.ss01 = -126; +slash = -88; +}; +uhorn = { +a = -24; +ohorn = -29; +ohornacute = -29; +ohorndotbelow = -29; +ohorndotbelow.ss01 = -29; +ohorngrave = -29; +ohornhookabove = -29; +ohorntilde = -29; +}; +uhornacute = { +a = -33; +c = -36; +}; +uhorndotbelow = { +a = -33; +c = -36; +comma = -46; +period = -42; +}; +uhorngrave = { +a = -33; +a.ss05 = -27; +}; +uhornhookabove = { +a = -33; +comma = -46; +comma.ss01 = -53; +period = -42; +period.ss01 = -54; +}; +uhorntilde = { +a = -33; +comma = -46; +period = -42; +}; +uhungarumlaut = { +parenright = -18; +}; +underscore = { +C = -79; +O = -84; +T = -126; +V = -153; +W = -93; +Y = -166; +asterisk = -155; +four = -184; +one = -88; +quotedbl = -234; +quotedblright = -234; +quotedblright.ss01 = -234; +quotesingle = -99; +seven = -74; +six = -60; +v = -99; +}; +uogonek = { +j = 14; +parenright = -2; +}; +v = { +braceright = -59; +n = 0; +}; +w = { +braceright = -59; +}; +x = { +four = -39; +}; +y = { +braceright = -59; +}; +ydotbelow = { +period = -65; +}; +zero = { +braceright = -29; +bracketright = -38; +bracketright.case = -31; +degree = -18; +percent = 0; +}; +zero.dnom = { +degree = -119; +question = -113; +question.ss01 = -107; +quotedbl = -108; +quotedblleft = -70; +quotedblleft.ss01 = -63; +quotedblright = -47; +quotedblright.ss01 = -57; +quoteleft = -70; +}; +zeroinferior = { +parenright = -51; +}; +zerosuperior = { +comma = -148; +comma.ss01 = -126; +fraction = -41; +period = -144; +period.ss01 = -126; +slash = -111; +}; +}; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 44; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 43; +"@MMK_R_KO_J" = 41; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -37; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -42; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 39; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -79; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 45; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -40; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -45; +"@MMK_R_KO_foursuperior" = -34; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 23; +"@MMK_R_KO_period" = 41; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -38; +"@MMK_R_KO_question.ss01" = -38; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -63; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -52; +"@MMK_R_KO_quoteright.ss01" = -54; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -51; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -44; +"@MMK_R_KO_slash" = 31; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -38; +"@MMK_R_KO_trademark" = -78; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 48; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 26; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 19; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -12; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -9; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -34; +"@MMK_R_KO_bracketright" = -15; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 4; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 21; +"@MMK_R_KO_imacron" = 14; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = -10; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -11; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 10; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -3; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 11; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -27; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = -9; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -24; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = 25; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 19; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_hyphen.case" = -32; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 20; +"@MMK_R_KO_imacron" = 14; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 21; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -7; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -20; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_X" = -9; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -15; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -32; +"@MMK_R_KO_comma.ss01" = -53; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -66; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 17; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_l.ss04" = 12; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -9; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = -37; +"@MMK_R_KO_period.ss01" = -55; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -38; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -33; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 13; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_X" = -9; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_bracketright" = -15; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -32; +"@MMK_R_KO_comma.ss01" = -53; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -66; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -9; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = -37; +"@MMK_R_KO_period.ss01" = -55; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_y" = 13; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 35; +"@MMK_R_KO_J" = 38; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = 38; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 22; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -66; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 13; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_sevensuperior" = 13; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 19; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 7; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_underscore" = 50; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 38; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -57; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -56; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -119; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -28; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_hyphen.case" = 37; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = -22; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 19; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = 19; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 13; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_underscore" = -76; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = -27; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -55; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -49; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 16; +"@MMK_R_KO_imacron" = 9; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -11; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -8; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -43; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -4; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -17; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -16; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -15; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -35; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 16; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_period.ss01" = -21; +"@MMK_R_KO_question" = 4; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -7; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -33; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 5; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 14; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -20; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 52; +"@MMK_R_KO_J" = 49; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 42; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 43; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_X" = 45; +"@MMK_R_KO_Y" = 38; +"@MMK_R_KO_Z" = 38; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -58; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = 13; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_hyphen.case" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 8; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 17; +"@MMK_R_KO_parenright" = 11; +"@MMK_R_KO_parenright.case" = 29; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 21; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 23; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 3; +"@MMK_R_KO_trademark" = 11; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_underscore" = 54; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = 21; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = 23; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 5; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_question" = 2; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 38; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 44; +"@MMK_R_KO_J" = 43; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 24; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_X" = 47; +"@MMK_R_KO_Y" = 27; +"@MMK_R_KO_Z" = 41; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -74; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 39; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 16; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -33; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_hyphen.case" = -48; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 16; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = 3; +"@MMK_R_KO_parenright" = 15; +"@MMK_R_KO_parenright.case" = 34; +"@MMK_R_KO_period" = 34; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 6; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 27; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 2; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 48; +"@MMK_R_KO_v" = -27; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = 24; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 29; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 32; +"@MMK_R_KO_I.ss02" = 36; +"@MMK_R_KO_J" = 38; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_U" = -23; +"@MMK_R_KO_V" = -52; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = 29; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -108; +"@MMK_R_KO_bracketright" = -14; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = 13; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = -73; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -78; +"@MMK_R_KO_foursuperior" = -74; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_hyphen.case" = -59; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -74; +"@MMK_R_KO_onesuperior" = -73; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -44; +"@MMK_R_KO_question.ss01" = -39; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -82; +"@MMK_R_KO_quotedblleft.ss01" = -85; +"@MMK_R_KO_quoteleft" = -65; +"@MMK_R_KO_quoteright" = -67; +"@MMK_R_KO_quoteright.ss01" = -79; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -71; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_sixsuperior" = -76; +"@MMK_R_KO_slash" = 29; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -79; +"@MMK_R_KO_trademark" = -86; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_underscore" = 60; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -31; +"@MMK_R_KO_x" = 22; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = 24; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 32; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 36; +"@MMK_R_KO_J" = 42; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_U" = -23; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -33; +"@MMK_R_KO_X" = 29; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -13; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 13; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = -41; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_fivesuperior" = -47; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -33; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -46; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 4; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -44; +"@MMK_R_KO_question.ss01" = -39; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -82; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -65; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_sixsuperior" = -49; +"@MMK_R_KO_slash" = 29; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 24; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = -3; +"@MMK_R_KO_Y" = -15; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -47; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -56; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 17; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -11; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -47; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -10; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -32; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = -24; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 9; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = -3; +"@MMK_R_KO_Y" = -15; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -47; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -56; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -11; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -47; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -10; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -32; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = -24; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 9; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 21; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 22; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_bracketright" = 12; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -47; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_ellipsis" = -56; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_parenright" = 20; +"@MMK_R_KO_parenright.case" = 30; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -47; +"@MMK_R_KO_question" = 3; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_X" = -8; +"@MMK_R_KO_Y" = 5; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -13; +"@MMK_R_KO_bracketright" = -4; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = 12; +"@MMK_R_KO_ellipsis" = -171; +"@MMK_R_KO_exclam" = 27; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = 4; +"@MMK_R_KO_foursuperior" = 22; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 16; +"@MMK_R_KO_hyphen" = -48; +"@MMK_R_KO_hyphen.case" = 10; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 33; +"@MMK_R_KO_imacron" = 24; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 8; +"@MMK_R_KO_onesuperior" = 4; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 35; +"@MMK_R_KO_question.ss01" = 7; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 10; +"@MMK_R_KO_quoteright" = 8; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = -38; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -123; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 28; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -27; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 27; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -39; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -10; +"@MMK_R_KO_parenright.case" = 10; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -17; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -17; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 31; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 14; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = -12; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -30; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 15; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = -8; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 14; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -25; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 8; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -35; +"@MMK_R_KO_bracketright" = -12; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 20; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 13; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = 13; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 18; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 4; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = 18; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -7; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -27; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 20; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 13; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 18; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 4; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = 18; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -7; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -38; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = 42; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 32; +"@MMK_R_KO_W" = 26; +"@MMK_R_KO_X" = 25; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -71; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -51; +"@MMK_R_KO_comma" = -51; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -83; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -37; +"@MMK_R_KO_g" = -58; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -56; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_hyphen.case" = -47; +"@MMK_R_KO_i" = -20; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -20; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = -64; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 22; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 8; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_sevensuperior" = 22; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -38; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 17; +"@MMK_R_KO_u" = -62; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_v" = -55; +"@MMK_R_KO_w" = -56; +"@MMK_R_KO_x" = -51; +"@MMK_R_KO_y" = -55; +"@MMK_R_KO_z" = -53; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 8; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 4; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -35; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -23; +"@MMK_R_KO_comma.ss01" = -48; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = -24; +"@MMK_R_KO_period.ss01" = -50; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -26; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 8; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 4; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -23; +"@MMK_R_KO_comma.ss01" = -48; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = -24; +"@MMK_R_KO_period.ss01" = -50; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_T" = 32; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 52; +"@MMK_R_KO_X" = 44; +"@MMK_R_KO_Y" = 39; +"@MMK_R_KO_Z" = 41; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_bracketright" = 51; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -23; +"@MMK_R_KO_comma.ss01" = -48; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_eightsuperior" = 11; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_fivesuperior" = 7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 5; +"@MMK_R_KO_onesuperior" = 25; +"@MMK_R_KO_parenright" = 57; +"@MMK_R_KO_parenright.case" = 56; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -48; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 3; +"@MMK_R_KO_quotedbl" = 22; +"@MMK_R_KO_quoteright" = 19; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = 41; +"@MMK_R_KO_sixsuperior" = 5; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 43; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 32; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 44; +"@MMK_R_KO_W" = 38; +"@MMK_R_KO_X" = 29; +"@MMK_R_KO_Y" = 44; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -31; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -62; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -99; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = -13; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 34; +"@MMK_R_KO_imacron" = 31; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 21; +"@MMK_R_KO_parenright" = 13; +"@MMK_R_KO_parenright.case" = 18; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 27; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 26; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_sevensuperior" = 24; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -38; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 7; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_underscore" = -60; +"@MMK_R_KO_v" = -5; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -19; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 39; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 26; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 38; +"@MMK_R_KO_W" = 33; +"@MMK_R_KO_X" = 30; +"@MMK_R_KO_Y" = 39; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -36; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -73; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 36; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 12; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_ninesuperior" = 7; +"@MMK_R_KO_onesuperior" = 21; +"@MMK_R_KO_parenright" = 12; +"@MMK_R_KO_parenright.case" = 21; +"@MMK_R_KO_period" = -40; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 28; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 18; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 7; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 3; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_underscore" = -35; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 38; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 44; +"@MMK_R_KO_J" = 44; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 25; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 30; +"@MMK_R_KO_X" = 47; +"@MMK_R_KO_Y" = 29; +"@MMK_R_KO_Z" = 40; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -65; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 38; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 16; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -43; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -52; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 17; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 3; +"@MMK_R_KO_parenright" = 14; +"@MMK_R_KO_parenright.case" = 33; +"@MMK_R_KO_period" = 33; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 5; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 5; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 47; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = 24; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = 35; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 44; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_X" = 29; +"@MMK_R_KO_Y" = 45; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -56; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -98; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = -54; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 28; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 12; +"@MMK_R_KO_n" = -40; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 19; +"@MMK_R_KO_parenright" = 6; +"@MMK_R_KO_parenright.case" = 14; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 23; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 24; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 26; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_sevensuperior" = 22; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -47; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 14; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_underscore" = -56; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -25; +"@MMK_R_KO_x" = -19; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 24; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 40; +"@MMK_R_KO_J" = 44; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 30; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 43; +"@MMK_R_KO_Y" = 36; +"@MMK_R_KO_Z" = 28; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 23; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_hyphen.case" = -47; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_icircumflex" = 10; +"@MMK_R_KO_imacron" = 24; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 8; +"@MMK_R_KO_parenright" = 18; +"@MMK_R_KO_parenright.case" = 35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 16; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 20; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 13; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 20; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_underscore" = 51; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -64; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -30; +"@MMK_R_KO_quotedbl" = -28; +"@MMK_R_KO_quotedblleft" = -41; +"@MMK_R_KO_quotedblleft.ss01" = -45; +"@MMK_R_KO_quoteleft" = -41; +"@MMK_R_KO_quoteright" = -31; +"@MMK_R_KO_quoteright.ss01" = -34; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -23; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -71; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -54; +"@MMK_R_KO_U" = -5; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -62; +"@MMK_R_KO_bracketright" = -29; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 20; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -32; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -39; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -43; +"@MMK_R_KO_parenright" = -9; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = -44; +"@MMK_R_KO_question.ss01" = -51; +"@MMK_R_KO_quotedbl" = -43; +"@MMK_R_KO_quotedblleft" = -89; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -65; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -55; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -37; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_trademark" = -82; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 39; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 29; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 20; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = -9; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = -36; +"@MMK_R_KO_question.ss01" = -29; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -44; +"@MMK_R_KO_quotedblleft.ss01" = -46; +"@MMK_R_KO_quoteleft" = -47; +"@MMK_R_KO_quoteright" = -41; +"@MMK_R_KO_quoteright.ss01" = -46; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -23; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -28; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 39; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_t" = -12; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -80; +"@MMK_R_KO_H" = -41; +"@MMK_R_KO_O" = -32; +"@MMK_R_KO_T" = -71; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_i" = -48; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_t" = -26; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -73; +"@MMK_R_KO_H" = -51; +"@MMK_R_KO_O" = -36; +"@MMK_R_KO_T" = -103; +"@MMK_R_KO_a" = -52; +"@MMK_R_KO_e" = -51; +"@MMK_R_KO_f" = -56; +"@MMK_R_KO_i" = -60; +"@MMK_R_KO_n" = -60; +"@MMK_R_KO_t" = -55; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 31; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = -41; +"@MMK_R_KO_a.ss05" = -30; +"@MMK_R_KO_asterisk" = 30; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_eight" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -65; +"@MMK_R_KO_g" = -39; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -129; +"@MMK_R_KO_hyphen.case" = -88; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = 13; +"@MMK_R_KO_one" = 10; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quotedblleft.ss01" = 17; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 18; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_seven" = 42; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 27; +"@MMK_R_KO_two" = 28; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -30; +"@MMK_R_KO_a.ss05" = -24; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -31; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -8; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 24; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_nine" = -17; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -52; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -23; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -9; +"@MMK_R_KO_u" = -36; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_y" = 17; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = -17; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -10; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen.case" = -30; +"@MMK_R_KO_nine" = -15; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_slash" = 56; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -59; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -49; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 10; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_icircumflex" = -4; +"@MMK_R_KO_imacron" = -4; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = -32; +"@MMK_R_KO_quotedblleft" = -43; +"@MMK_R_KO_quotedblleft.ss01" = -50; +"@MMK_R_KO_quoteleft" = -43; +"@MMK_R_KO_quoteright" = -42; +"@MMK_R_KO_quoteright.ss01" = -51; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -69; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -65; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_five" = -13; +"@MMK_R_KO_four" = -65; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_hyphen.case" = -65; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = -17; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 39; +"@MMK_R_KO_quotedbl" = -65; +"@MMK_R_KO_quotedblleft" = -65; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_seven" = -38; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_three" = -3; +"@MMK_R_KO_two" = 31; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -78; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_a" = -80; +"@MMK_R_KO_e" = -80; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_i" = -33; +"@MMK_R_KO_n" = -60; +"@MMK_R_KO_t" = -31; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -57; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -3; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -57; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = -6; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -32; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -36; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -53; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -87; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -65; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -58; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -78; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -34; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -3; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -29; +"@MMK_R_KO_colon" = -6; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = -37; +"@MMK_R_KO_question.ss01" = -29; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -46; +"@MMK_R_KO_quotedblleft.ss01" = -47; +"@MMK_R_KO_quoteleft" = -46; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -47; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = 11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 15; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 20; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_nine" = 7; +"@MMK_R_KO_one" = 10; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -34; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = 15; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_three" = 17; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -32; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -56; +"@MMK_R_KO_S" = -38; +"@MMK_R_KO_T" = -83; +"@MMK_R_KO_U" = -57; +"@MMK_R_KO_V" = -98; +"@MMK_R_KO_W" = -74; +"@MMK_R_KO_Y" = -98; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -52; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asterisk" = -129; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 19; +"@MMK_R_KO_e" = -52; +"@MMK_R_KO_egrave" = -52; +"@MMK_R_KO_eight" = -45; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_f" = -40; +"@MMK_R_KO_five" = -46; +"@MMK_R_KO_four" = -162; +"@MMK_R_KO_g" = -55; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -187; +"@MMK_R_KO_hyphen.case" = -187; +"@MMK_R_KO_i" = -38; +"@MMK_R_KO_j" = -38; +"@MMK_R_KO_n" = -38; +"@MMK_R_KO_nine" = -50; +"@MMK_R_KO_one" = -52; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 18; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft" = -146; +"@MMK_R_KO_quoteright" = -146; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_seven" = -73; +"@MMK_R_KO_six" = -54; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_three" = -36; +"@MMK_R_KO_two" = -10; +"@MMK_R_KO_u" = -49; +"@MMK_R_KO_v" = -71; +"@MMK_R_KO_w" = -67; +"@MMK_R_KO_y" = -68; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -29; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -31; +"@MMK_R_KO_T" = -82; +"@MMK_R_KO_U" = -51; +"@MMK_R_KO_V" = -96; +"@MMK_R_KO_W" = -72; +"@MMK_R_KO_Y" = -97; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -30; +"@MMK_R_KO_asterisk" = -129; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = -47; +"@MMK_R_KO_egrave" = -47; +"@MMK_R_KO_eight" = -39; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_five" = -40; +"@MMK_R_KO_four" = -161; +"@MMK_R_KO_g" = -50; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -30; +"@MMK_R_KO_hyphen" = -187; +"@MMK_R_KO_hyphen.case" = -187; +"@MMK_R_KO_i" = -36; +"@MMK_R_KO_j" = -36; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_nine" = -46; +"@MMK_R_KO_one" = -51; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft.ss01" = -111; +"@MMK_R_KO_quoteright.ss01" = -111; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = -72; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -43; +"@MMK_R_KO_three" = -30; +"@MMK_R_KO_two" = -5; +"@MMK_R_KO_u" = -46; +"@MMK_R_KO_v" = -69; +"@MMK_R_KO_w" = -65; +"@MMK_R_KO_y" = -66; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -51; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -62; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 43; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 22; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -18; +"@MMK_R_KO_one" = -20; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -146; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_seven" = -54; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -31; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 35; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 29; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 24; +"@MMK_R_KO_Y" = 30; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -37; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 6; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = 28; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 4; +"@MMK_R_KO_parenright" = 12; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 15; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -3; +"@MMK_R_KO_v" = 19; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = 20; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 35; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 29; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 24; +"@MMK_R_KO_Y" = 30; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -37; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 6; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = 28; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 4; +"@MMK_R_KO_parenright" = 12; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 15; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -3; +"@MMK_R_KO_v" = 19; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = 20; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -25; +"@MMK_R_KO_onesuperior" = -9; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_question" = -11; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -17; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -45; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_Y" = 7; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = 32; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = 13; +"@MMK_R_KO_guillemetright" = 3; +"@MMK_R_KO_hyphen" = 32; +"@MMK_R_KO_hyphen.case" = 19; +"@MMK_R_KO_i" = 16; +"@MMK_R_KO_j" = 8; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_seven" = 2; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_three" = 10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 31; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -6; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 16; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 14; +"@MMK_R_KO_four" = 37; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 36; +"@MMK_R_KO_hyphen.case" = -6; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -5; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -17; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 30; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 30; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_J" = 35; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -39; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_X" = 26; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = 20; +"@MMK_R_KO_colon" = 46; +"@MMK_R_KO_comma" = 59; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 32; +"@MMK_R_KO_period" = 46; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 10; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 20; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -10; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 46; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -42; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = 57; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -15; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -20; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -48; +"@MMK_R_KO_f" = 18; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = 28; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_hyphen.case" = -9; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = 7; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -34; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 20; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 23; +"@MMK_R_KO_three" = 17; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 28; +"@MMK_R_KO_w" = 24; +"@MMK_R_KO_y" = 26; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -17; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -60; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = -28; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asterisk" = -58; +"@MMK_R_KO_colon" = -36; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -92; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 12; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 12; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 20; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -22; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -36; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -92; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = -52; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -44; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -25; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = -15; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -129; +"@MMK_R_KO_colon" = -62; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = 45; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 22; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = -17; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft" = -132; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_seven" = -50; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 8; +"@MMK_R_KO_two" = -25; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -12; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_Y" = -41; +"@MMK_R_KO_Z" = -42; +"@MMK_R_KO_asterisk" = -88; +"@MMK_R_KO_colon" = -36; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_eight" = -7; +"@MMK_R_KO_five" = 10; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = 20; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen.case" = 24; +"@MMK_R_KO_nine" = 7; +"@MMK_R_KO_one" = -17; +"@MMK_R_KO_parenright.case" = -31; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -132; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_seven" = -64; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_three" = -46; +"@MMK_R_KO_two" = -69; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -40; +"@MMK_R_KO_quotedblleft.ss01" = -42; +"@MMK_R_KO_quoteleft" = -39; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -33; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -22; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_trademark" = -27; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 16; +"@MMK_R_KO_I.ss02" = 50; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = 52; +"@MMK_R_KO_U" = 23; +"@MMK_R_KO_V" = 55; +"@MMK_R_KO_W" = 51; +"@MMK_R_KO_X" = 42; +"@MMK_R_KO_Y" = 55; +"@MMK_R_KO_Z" = 37; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -47; +"@MMK_R_KO_bracketright" = 10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 19; +"@MMK_R_KO_parenright" = 35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = 19; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 24; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 11; +"@MMK_R_KO_quoteright" = 23; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 30; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 20; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = 21; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 32; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = 26; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 33; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 25; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -25; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 28; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -41; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -54; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 45; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = 20; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -8; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -11; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -27; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -3; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = 22; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 17; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -11; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 14; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 40; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 32; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 42; +"@MMK_R_KO_exclam" = 72; +"@MMK_R_KO_f" = 18; +"@MMK_R_KO_fivesuperior" = 36; +"@MMK_R_KO_foursuperior" = 31; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 26; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 46; +"@MMK_R_KO_onesuperior" = 63; +"@MMK_R_KO_parenright" = 60; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 84; +"@MMK_R_KO_question.ss01" = 54; +"@MMK_R_KO_quotedbl" = 82; +"@MMK_R_KO_quotedblleft" = 66; +"@MMK_R_KO_quotedblleft.ss01" = 46; +"@MMK_R_KO_quoteleft" = 66; +"@MMK_R_KO_sevensuperior" = 78; +"@MMK_R_KO_sixsuperior" = 33; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_threesuperior" = 54; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = -54; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -59; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -29; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -36; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_icircumflex" = 1; +"@MMK_R_KO_imacron" = 1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -40; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = -39; +"@MMK_R_KO_question.ss01" = -51; +"@MMK_R_KO_quotedbl" = -39; +"@MMK_R_KO_quotedblleft" = -78; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -65; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -57; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -34; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -25; +"@MMK_R_KO_trademark" = -79; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = -13; +"@MMK_R_KO_Y" = -56; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -29; +"@MMK_R_KO_ellipsis" = -52; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -48; +"@MMK_R_KO_question" = -46; +"@MMK_R_KO_question.ss01" = -52; +"@MMK_R_KO_quotedbl" = -43; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteleft" = -65; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -33; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -80; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -11; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -9; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -45; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -52; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -48; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -35; +"@MMK_R_KO_quotedblleft" = -46; +"@MMK_R_KO_quotedblleft.ss01" = -47; +"@MMK_R_KO_quoteleft" = -46; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -48; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -24; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -13; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 13; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_Y" = 5; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -45; +"@MMK_R_KO_a.ss05" = -26; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma" = 39; +"@MMK_R_KO_comma.ss01" = 6; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eight" = -13; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -26; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 30; +"@MMK_R_KO_n" = -42; +"@MMK_R_KO_nine" = -5; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 77; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -28; +"@MMK_R_KO_seven" = 23; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_slash" = 31; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -45; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -36; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_Y" = 14; +"@MMK_R_KO_Z" = 38; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 35; +"@MMK_R_KO_comma.ss01" = 4; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen.case" = -31; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright.case" = 74; +"@MMK_R_KO_period" = 19; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 26; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_slash" = 63; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 16; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -51; +"@MMK_R_KO_U" = -24; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -40; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = 55; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = -62; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_eight" = -12; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -62; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = -62; +"@MMK_R_KO_hyphen.case" = -62; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = -20; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = 19; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -62; +"@MMK_R_KO_quotedblleft" = -62; +"@MMK_R_KO_quoteright" = -62; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_seven" = -41; +"@MMK_R_KO_six" = -22; +"@MMK_R_KO_slash" = 43; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 33; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = 45; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -29; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -31; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = -50; +"@MMK_R_KO_V" = -61; +"@MMK_R_KO_W" = -61; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -30; +"@MMK_R_KO_asterisk" = -61; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -47; +"@MMK_R_KO_eight" = -35; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_five" = -36; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -50; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -30; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -36; +"@MMK_R_KO_j" = -36; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_nine" = -42; +"@MMK_R_KO_one" = -46; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = -61; +"@MMK_R_KO_six" = -47; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -43; +"@MMK_R_KO_three" = -29; +"@MMK_R_KO_two" = -5; +"@MMK_R_KO_u" = -46; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_y" = -61; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = -15; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_S" = -34; +"@MMK_R_KO_T" = -71; +"@MMK_R_KO_U" = -57; +"@MMK_R_KO_V" = -80; +"@MMK_R_KO_W" = -64; +"@MMK_R_KO_Y" = -84; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = -46; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_e" = -46; +"@MMK_R_KO_eight" = -45; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = -44; +"@MMK_R_KO_four" = -57; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetright" = -59; +"@MMK_R_KO_i" = -15; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_nine" = -49; +"@MMK_R_KO_one" = -36; +"@MMK_R_KO_parenright" = 20; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -112; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_seven" = -62; +"@MMK_R_KO_six" = -54; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_three" = -31; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_v" = -59; +"@MMK_R_KO_w" = -54; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -58; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -43; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_asterisk" = 11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -126; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -66; +"@MMK_R_KO_g" = -40; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -126; +"@MMK_R_KO_hyphen.case" = -71; +"@MMK_R_KO_i" = -15; +"@MMK_R_KO_j" = -19; +"@MMK_R_KO_n" = -28; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 2; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_seven" = 15; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -64; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -18; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -24; +"@MMK_R_KO_T" = -73; +"@MMK_R_KO_U" = -48; +"@MMK_R_KO_V" = -88; +"@MMK_R_KO_W" = -64; +"@MMK_R_KO_Y" = -87; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -36; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asterisk" = -65; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -35; +"@MMK_R_KO_eight" = -30; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_five" = -31; +"@MMK_R_KO_four" = -65; +"@MMK_R_KO_g" = -26; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_hyphen.case" = -65; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = -38; +"@MMK_R_KO_one" = -38; +"@MMK_R_KO_period" = 20; +"@MMK_R_KO_quotedblleft" = -146; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_seven" = -63; +"@MMK_R_KO_six" = -44; +"@MMK_R_KO_slash" = 25; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_three" = -22; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -32; +"@MMK_R_KO_v" = -54; +"@MMK_R_KO_w" = -49; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -29; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -46; +"@MMK_R_KO_S" = -31; +"@MMK_R_KO_T" = -67; +"@MMK_R_KO_U" = -47; +"@MMK_R_KO_V" = -92; +"@MMK_R_KO_W" = -61; +"@MMK_R_KO_Y" = -96; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_asterisk" = -61; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -39; +"@MMK_R_KO_egrave" = -44; +"@MMK_R_KO_eight" = -35; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -36; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -37; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -34; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -34; +"@MMK_R_KO_nine" = -42; +"@MMK_R_KO_one" = -46; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_quotedblleft.ss01" = -61; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = -61; +"@MMK_R_KO_six" = -45; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = -39; +"@MMK_R_KO_three" = -29; +"@MMK_R_KO_two" = -5; +"@MMK_R_KO_u" = -45; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -63; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 23; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -72; +"@MMK_R_KO_a.ss05" = -27; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = -40; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_e" = -72; +"@MMK_R_KO_egrave" = -33; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -146; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -84; +"@MMK_R_KO_g" = -69; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_hyphen" = -132; +"@MMK_R_KO_hyphen.case" = -132; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -23; +"@MMK_R_KO_n" = -54; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 8; +"@MMK_R_KO_parenright.case" = 11; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_s" = -70; +"@MMK_R_KO_seven" = 44; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_slash" = -75; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = 3; +"@MMK_R_KO_two" = 4; +"@MMK_R_KO_u" = -40; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -61; +"@MMK_R_KO_H" = -11; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = -22; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -44; +"@MMK_R_KO_asterisk" = 15; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -45; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_five" = -11; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -61; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -13; +"@MMK_R_KO_j" = -30; +"@MMK_R_KO_n" = -46; +"@MMK_R_KO_nine" = -10; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -57; +"@MMK_R_KO_seven" = 23; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_slash" = -61; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -42; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -76; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -20; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -92; +"@MMK_R_KO_a.ss05" = -37; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -62; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_e" = -115; +"@MMK_R_KO_egrave" = -44; +"@MMK_R_KO_eight" = -17; +"@MMK_R_KO_ellipsis" = -146; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -103; +"@MMK_R_KO_g" = -114; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -66; +"@MMK_R_KO_hyphen" = -132; +"@MMK_R_KO_hyphen.case" = -132; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_j" = -23; +"@MMK_R_KO_n" = -74; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 4; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -103; +"@MMK_R_KO_seven" = 18; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_slash" = -88; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -71; +"@MMK_R_KO_v" = -59; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_y" = -60; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -63; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 23; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -65; +"@MMK_R_KO_a.ss05" = -27; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = -40; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_egrave" = -33; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -65; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -65; +"@MMK_R_KO_g" = -65; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_hyphen.case" = -65; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -23; +"@MMK_R_KO_n" = -54; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 8; +"@MMK_R_KO_parenright.case" = 11; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_seven" = 44; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_slash" = -65; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = 3; +"@MMK_R_KO_two" = 4; +"@MMK_R_KO_u" = -40; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -65; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -20; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -65; +"@MMK_R_KO_a.ss05" = -37; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -62; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_egrave" = -48; +"@MMK_R_KO_eight" = -17; +"@MMK_R_KO_ellipsis" = -65; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -65; +"@MMK_R_KO_g" = -65; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -65; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_hyphen.case" = -65; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_j" = -23; +"@MMK_R_KO_n" = -65; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 4; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -65; +"@MMK_R_KO_seven" = 18; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_slash" = -65; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -65; +"@MMK_R_KO_v" = -59; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_y" = -41; +"@MMK_R_KO_z" = -43; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -61; +"@MMK_R_KO_H" = -19; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -13; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -39; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -45; +"@MMK_R_KO_eight" = -16; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = -16; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -61; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_j" = -22; +"@MMK_R_KO_n" = -60; +"@MMK_R_KO_nine" = -12; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -61; +"@MMK_R_KO_seven" = 3; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_slash" = -61; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -51; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -33; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = -27; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -58; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -36; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_asterisk" = 11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -61; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_egrave" = -33; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -40; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -15; +"@MMK_R_KO_j" = -19; +"@MMK_R_KO_n" = -28; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 2; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_seven" = 15; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -16; +"@MMK_R_KO_Y" = -10; +"@MMK_R_KO_Z" = -35; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -6; +"@MMK_R_KO_bracketright" = -13; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -77; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 17; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 21; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 23; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_period" = -41; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_sevensuperior" = -35; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -37; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -36; +"@MMK_R_KO_v" = 21; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 19; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -54; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asciicircum" = -45; +"@MMK_R_KO_bracketright" = -26; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = -28; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -78; +"@MMK_R_KO_quotedblleft.ss01" = -59; +"@MMK_R_KO_quoteleft" = -65; +"@MMK_R_KO_quoteright" = -61; +"@MMK_R_KO_quoteright.ss01" = -49; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -49; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -24; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -69; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -54; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -17; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = -23; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -39; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteleft" = -39; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -40; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 43; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 37; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 49; +"@MMK_R_KO_W" = 43; +"@MMK_R_KO_Y" = 46; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -52; +"@MMK_R_KO_a.ss05" = -45; +"@MMK_R_KO_asterisk" = 23; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -52; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eight" = -8; +"@MMK_R_KO_ellipsis" = -106; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = -58; +"@MMK_R_KO_g" = -50; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -51; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -39; +"@MMK_R_KO_nine" = -5; +"@MMK_R_KO_one" = 15; +"@MMK_R_KO_parenright" = 12; +"@MMK_R_KO_parenright.case" = 21; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 22; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 31; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -41; +"@MMK_R_KO_seven" = 51; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_slash" = -49; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = -28; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eight" = 3; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 21; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 30; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 31; +"@MMK_R_KO_W" = 30; +"@MMK_R_KO_Y" = 33; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asterisk" = 22; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -65; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -95; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -38; +"@MMK_R_KO_g" = -29; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_hyphen.case" = -20; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = 14; +"@MMK_R_KO_parenright" = 20; +"@MMK_R_KO_parenright.case" = 25; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 25; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -30; +"@MMK_R_KO_seven" = 32; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -8; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 23; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 28; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 22; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -15; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 13; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 25; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -11; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -13; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 7; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 43; +"@MMK_R_KO_v" = 16; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 20; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_f" = 11; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 3; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_nine" = 6; +"@MMK_R_KO_one" = 9; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 11; +"@MMK_R_KO_three" = 15; +"@MMK_R_KO_two" = 9; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 31; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = 46; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 9; +"@MMK_R_KO_W" = 10; +"@MMK_R_KO_Y" = 3; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 26; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -40; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = 27; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 13; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 11; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 25; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 11; +"@MMK_R_KO_two" = 24; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -23; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -24; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -53; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -70; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 12; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 27; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = -1; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_period" = -33; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -28; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -7; +"@MMK_R_KO_v" = 18; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = 16; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -21; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = -20; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = -23; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -26; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -65; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 23; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_period" = -27; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -48; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -26; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 7; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 23; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -52; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 29; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = 23; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_period" = 24; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -32; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -55; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 40; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 20; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 23; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = -22; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 15; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = 21; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -25; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -48; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 42; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = 18; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 17; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 21; +"@MMK_R_KO_X" = 32; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 20; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = 21; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 2; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 6; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 2; +"@MMK_R_KO_sixsuperior" = 5; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 11; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = 18; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -22; +"@MMK_R_KO_comma.ss01" = -47; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eight" = 9; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 14; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 22; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = -22; +"@MMK_R_KO_period.ss01" = -47; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = 0; +Tbar = -31; +asciitilde = -13; +asterisk = -47; +backslash = -32; +g.ss06 = 13; +minus = -39; +one = -12; +ordmasculine = -53; +plus = -32; +quotedbl = -57; +registered = -41; +seven = -27; +two = 24; +twosuperior = -26; +}; +Aacute = { +Tbar = -31; +}; +Abrevedotbelow.ss01 = { +T = -37; +}; +Aogonek = { +comma = 56; +parenright = 33; +}; +Atilde = { +ordfeminine = -53; +}; +B = { +Hbar = 14; +hbar = 16; +idieresis = 15; +itilde = 19; +}; +C = { +h = 12; +l = 12; +plus = -51; +three = 23; +}; +D = { +Lslash = 11; +Oslash = 18; +braceright = -16; +bracketright.case = -16; +}; +E = { +H = 0; +idieresis = 0; +}; +Eogonek = { +comma = 58; +}; +F = { +fourinferior = -65; +i = -8; +igrave = 49; +}; +G = { +Lslash = 10; +lslash = 4; +}; +Germandbls = { +S = 18; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -21; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 16; +itilde = 15; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 0; +D = 0; +E = 0; +H = 0; +Hbar = 44; +I = 0; +L = 0; +M = 0; +O = 7; +R = 0; +S = 17; +U = 6; +W = 25; +i = 0; +}; +I = { +Hbar = 0; +I = 0; +jcircumflex = 14; +}; +Icircumflex = { +Icircumflex = 2; +l.ss04 = 2; +}; +Imacron = { +Imacron = 0; +}; +Itilde = { +itilde = 16; +}; +J = { +Hbar = 0; +itilde = 17; +}; +Jacute = { +Imacron = 0; +}; +K = { +asciitilde = -51; +four = -14; +idieresis = 10; +igrave = 43; +itilde = 25; +less = -35; +logicalnot = -48; +minus = -80; +one = 5; +oslash = 0; +plus = -63; +}; +L = { +H = 0; +Tbar = -46; +asciitilde = -76; +asterisk = -67; +backslash = -53; +equal = -65; +four = -68; +less = -47; +logicalnot = -61; +minus = -91; +one = -18; +ordfeminine = -81; +ordmasculine = -82; +oslash = 0; +plus = -84; +quotedbl = -73; +quoteleft.ss01 = -61; +quoteright = -65; +quoteright.ss01 = -61; +registered = -81; +seven = -36; +twosuperior = -76; +}; +Lcaron = { +A = 32; +O = -14; +U = 0; +Uacute = 0; +V = 25; +a = -16; +hyphen = -59; +hyphen.case = -59; +u = -11; +v = -18; +}; +Lcommaaccent = { +twosuperior = -76; +}; +Lslash = { +twosuperior = -30; +}; +M = { +Hbar = 0; +idieresis = 5; +igrave = 16; +itilde = 15; +}; +N = { +Hbar = 0; +idieresis = 5; +igrave = 16; +itilde = 15; +}; +O = { +Dcroat = 9; +Lslash = 7; +braceright = -19; +bracketright.case = -19; +itilde = 14; +}; +Oslash = { +T = 16; +V = 16; +Y = 23; +parenright = 10; +parenright.case = 28; +}; +P = { +fourinferior = -81; +idieresis = 15; +itilde = 31; +two = 22; +}; +R = { +Hbar = 14; +jcircumflex = 25; +two = 12; +}; +S = { +Hbar = 19; +Lslash = 16; +dollar = 3; +four = 20; +idieresis = 14; +itilde = 25; +lslash = 11; +three = 23; +}; +T = { +Oslash = -20; +a.ss05 = -54; +aacute.ss05 = -51; +abreve = -21; +abreveacute = -21; +acircumflex = -36; +acircumflexacute = -36; +acircumflexdotbelow = -36; +adieresis = -39; +adotbelow.ss05 = -54; +ae = -54; +agrave = -19; +amacron = -32; +ampersand = -27; +aring = -31; +asciitilde = -60; +atilde = -36; +equal = -51; +four = -49; +g.ss06 = -48; +h = 0; +i.ss01 = 0; +iacute = -27; +idieresis = 0; +idotless = -64; +igrave = 52; +itilde = 14; +less = -33; +logicalnot = -46; +minus = -77; +ograve = -14; +plus = -73; +racute = -44; +scaron = 0; +seven = 31; +twoinferior = -61; +udieresis = -42; +udieresis.ss01 = -30; +ugrave = -19; +uhorngrave = -19; +umacron = -32; +ycircumflex = -19; +ygrave = 3; +yhookabove = -20; +zcaron = 15; +zeroinferior = -63; +}; +Tbar = { +A = -30; +Aacute = -30; +Tbar = 48; +a = -22; +comma = -51; +e = -21; +o = -21; +period = -51; +slash = -37; +}; +Tcaron = { +a.ss05 = -54; +}; +Tcedilla = { +a.ss05 = -54; +abreve = -20; +four = -49; +}; +Tcommaaccent = { +a.ss05 = -54; +abreve = -21; +four = -49; +}; +Thorn = { +A = -4; +AE = -4; +Aacute = -4; +J = -5; +O = 18; +Oacute = 18; +V = -5; +Y = -32; +Yacute = -32; +a = 7; +aacute = 7; +e = 8; +o = 8; +oacute = 8; +period = -62; +}; +U = { +Hbar = 6; +jcircumflex = 21; +}; +V = { +four = -33; +iacute = -7; +ibreve = 58; +idieresis = 35; +igrave = 55; +itilde = 48; +minus = -42; +plus = -34; +scaron = 0; +seven = 49; +twoinferior = -36; +}; +W = { +Hbar = 26; +backslash = 34; +idieresis = 33; +igrave = 51; +itilde = 50; +}; +X = { +asciitilde = -57; +four = -17; +less = -37; +logicalnot = -53; +minus = -85; +notequal = -66; +one = 9; +plus = -68; +}; +Y = { +a.ss05 = -47; +agrave = -13; +amacron = -28; +ampersand = -26; +asciitilde = -59; +at = -32; +four = -61; +g.ss06 = -47; +igrave = 55; +less = -28; +logicalnot = -39; +minus = -73; +ograve = -8; +plus = -53; +scaron = 0; +twoinferior = -71; +}; +Z = { +four = -69; +ibreve = 41; +igrave = 42; +itilde = 26; +minus = -80; +plus = -63; +}; +_B.currency = { +_baht.bar = -16; +}; +a = { +braceright = -39; +}; +a.ss05 = { +g.ss06 = 3; +}; +acircumflexacute.ss05 = { +y = -3; +}; +adieresis.ss05 = { +germandbls = -2; +}; +ampersand = { +V = -36; +W = -24; +Y = -59; +quotedbl = -93; +quotedblleft = -96; +}; +aogonek = { +j = 0; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 23; +}; +approxequal = { +parenright = -72; +parenright.case = -60; +}; +asciicircum = { +J = -56; +X = -65; +Y = -46; +bracketright = -80; +comma = -65; +comma.ss01 = -61; +four = -84; +hyphen = -132; +parenright = -80; +parenright.case = -77; +period = -62; +period.ss01 = -61; +slash = -95; +}; +asciitilde = { +I.ss02 = -73; +J = -68; +V = -66; +W = -53; +X = -104; +Y = -90; +Z = -102; +bracketright = -88; +bracketright.case = -89; +comma = -65; +comma.ss01 = -61; +eight = -69; +exclam = -57; +four = -52; +one = -76; +parenright = -101; +parenright.case = -91; +period = -62; +period.ss01 = -61; +question = -98; +quotedbl = -95; +quotedblright = -146; +seven = -85; +slash = -91; +three = -84; +two = -84; +}; +at = { +T = -39; +parenright = -43; +}; +b = { +asterisk = -41; +braceright = -36; +lslash = 0; +one = -23; +}; +backslash = { +T = -53; +V = -48; +Y = -58; +asterisk = -71; +backslash = -49; +quotedbl = -75; +quotedblleft = -90; +quotedblleft.ss01 = -87; +quotedblright = -75; +quotedblright.ss01 = -77; +quoteleft = -65; +quoteright = -65; +quotesingle = -61; +}; +baht = { +parenright = -34; +}; +braceleft = { +p = 0; +}; +bracketleft = { +asciicircum = -80; +asciitilde = -46; +bracketright = 88; +jcircumflex = 29; +p = 0; +pi = -17; +plus = -72; +x = -19; +}; +c = { +asterisk = -31; +braceright = -30; +}; +cent = { +parenright = -37; +}; +colon = { +T = -51; +Y = -16; +four = -55; +one = 0; +parenright = -20; +two = 0; +zero = 0; +}; +colon.ss01 = { +T = -61; +four = -61; +parenright = -31; +}; +comma = { +eightsuperior = -65; +fivesuperior = -65; +foursuperior = -65; +ninesuperior = -65; +onesuperior = -65; +quoteleft = -65; +quotesingle = -61; +sevensuperior = -65; +sixsuperior = -65; +threesuperior = -65; +twosuperior = -65; +}; +comma.ss01 = { +eightsuperior = -61; +fivesuperior = -61; +foursuperior = -61; +ninesuperior = -61; +onesuperior = -61; +sevensuperior = -61; +sixsuperior = -61; +threesuperior = -61; +twosuperior = -61; +}; +copyright = { +Y = -39; +parenright = -57; +}; +d = { +idieresis = 0; +igrave = 2; +itilde = 1; +}; +dcaron = { +C = 33; +H = 48; +bracketright = 32; +eightsuperior = 42; +exclam = 72; +exclam.ss01 = 71; +fivesuperior = 36; +foursuperior = 31; +h = 26; +i = 0; +j = 0; +k = 26; +l = 26; +l.ss03 = 22; +l.ss04 = 23; +ninesuperior = 46; +onesuperior = 63; +parenright = 60; +question = 84; +question.ss01 = 54; +quotedbl = 82; +quotedblleft = 66; +quotedblleft.ss01 = 46; +quoteleft = 66; +quoteleft.ss01 = 46; +quotesingle = 82; +sevensuperior = 78; +sixsuperior = 33; +t = 12; +t_i.liga = 13; +t_t.liga = 12; +threesuperior = 54; +twosuperior = 61; +zcaron = 3; +}; +dcroat = { +i = 0; +igrave = 2; +itilde = 1; +}; +degree = { +J = -39; +comma = -65; +comma.ss01 = -61; +emdash = -165; +endash = -165; +four = -93; +hyphen = -132; +parenright = -26; +parenright.case = -23; +period = -62; +period.ss01 = -61; +slash = -86; +}; +divide = { +parenright = -88; +}; +dollar = { +parenright = -28; +three = 11; +}; +e = { +asterisk = -38; +backslash = -29; +braceright = -35; +germandbls = 0; +one = -26; +seven = -34; +}; +ecircumflexacute = { +t = 0; +}; +eight = { +bracketright = -15; +degree = -20; +}; +eight.dnom = { +degree = -133; +question.ss01 = -75; +quotedbl = -124; +quotedblleft = -135; +quotedblright = -135; +}; +eightsuperior = { +comma = -65; +comma.ss01 = -61; +period = -62; +period.ss01 = -61; +slash = -54; +}; +ellipsis = { +Tbar = -83; +bracketright = -55; +eightsuperior = -142; +fivesuperior = -135; +foursuperior = -127; +ninesuperior = -140; +onesuperior = -80; +parenleft = -46; +parenleft.case = -61; +question = -78; +quoteleft = -65; +quoteright = -65; +quotesingle = -61; +sevensuperior = -109; +sixsuperior = -140; +threesuperior = -132; +twosuperior = -118; +}; +ellipsis.ss01 = { +Tbar = -82; +bracketright = -52; +eightsuperior = -142; +fivesuperior = -135; +foursuperior = -127; +ninesuperior = -140; +onesuperior = -80; +question.ss01 = -85; +quoteleft.ss01 = -61; +quoteright.ss01 = -61; +quotesingle = -61; +sevensuperior = -109; +sixsuperior = -140; +threesuperior = -132; +twosuperior = -118; +}; +emdash = { +foursuperior = -101; +question = -66; +}; +emdash.case = { +X = -54; +quotedblbase = -146; +quotedblbase.ss01 = -111; +}; +endash = { +X = -25; +endash = 0; +foursuperior = -101; +question = -58; +}; +endash.case = { +H = 0; +X = -54; +quotedblbase = -146; +quotedblbase.ss01 = -111; +}; +eng = { +bracketright = 0; +}; +eogonek = { +lslash = 0; +}; +equal = { +T = -51; +equal = 0; +parenright = -51; +parenright.case = -37; +}; +eth = { +a = 0; +e = 0; +g = 3; +hyphen = 15; +parenright = -25; +}; +euro = { +parenright = -26; +parenright.case = -10; +}; +exclamdown = { +T = -55; +V = -9; +Y = -33; +}; +f = { +igrave = 0; +n = 0; +o = 0; +}; +f_f.liga = { +igrave = 0; +}; +f_f_i.liga = { +idieresis = 0; +}; +fi = { +idieresis = 0; +}; +five = { +degree = -41; +ordmasculine = -31; +percent = -9; +}; +five.dnom = { +degree = -101; +question.ss01 = -78; +quotedblleft = -128; +}; +five.numr = { +fraction = 0; +}; +fiveinferior = { +T = -61; +}; +fivesuperior = { +comma = -65; +comma.ss01 = -61; +period = -62; +period.ss01 = -61; +slash = -48; +}; +fl = { +idieresis = 0; +itilde = 1; +periodcentered.loclCAT = 60; +}; +four = { +asciicircum = -50; +bracketright = 0; +bracketright.case = 0; +degree = -35; +ordfeminine = -20; +ordmasculine = -20; +percent = -7; +x = -2; +}; +four.dnom = { +degree = -116; +question.ss01 = -77; +quotedblleft = -121; +}; +fourinferior = { +T = -59; +V = -46; +}; +foursuperior = { +comma = -65; +comma.ss01 = -61; +period = -62; +period.ss01 = -61; +slash = -51; +}; +fraction = { +eight.dnom = -6; +four.dnom = -21; +fourinferior = -27; +seveninferior = 25; +two.dnom = 0; +zero.dnom = -10; +}; +g = { +bracketright = 0; +j = 0; +j.ss01 = 0; +parenright = 0; +slash = 11; +}; +g.ss06 = { +g.ss06 = 14; +}; +gcaron.ss06 = { +gcaron.ss06 = 14; +}; +gdotaccent = { +j = 0; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 14; +}; +germandbls = { +e = 4; +hyphen = 29; +parenright = -23; +}; +greater = { +T = -33; +parenright = -32; +}; +greaterequal = { +T = -61; +}; +guillemetleft = { +pi = 36; +}; +guillemetright = { +X = -43; +bracketright = -33; +}; +guilsinglright = { +X = -43; +}; +h = { +asterisk = -37; +}; +hyphen = { +Lslash = 53; +X = -24; +bracketright = -30; +foursuperior = -92; +pi = -4; +question = -62; +quotedblbase = -132; +quoteleft = -65; +quotesingle = -61; +x = -23; +}; +hyphen.case = { +Dcroat = 54; +X = -52; +bracketright.case = -30; +quotedblbase = -132; +quotedblbase.ss01 = -111; +quotesinglbase = -65; +}; +i = { +T = -19; +idieresis = 0; +jcircumflex = 0; +parenright = -28; +}; +i.ss01 = { +parenright = 0; +}; +iacute = { +rcaron = 0; +}; +icircumflex = { +b = 2; +h = 2; +i = 0; +icircumflex = 2; +j = 0; +k = 2; +l = 2; +l.ss03 = 0; +l.ss04 = 2; +question = 15; +quotedbl = 23; +quoteright = 26; +quotesingle = 24; +}; +idieresis = { +b = 0; +idieresis = 1; +k = 0; +l = 0; +l.ss03 = 0; +l.ss04 = 0; +}; +idotaccent = { +parenright = -28; +}; +idotaccent.ss01 = { +parenright = 0; +}; +imacron = { +b = 0; +imacron = 1; +j = 0; +k = 0; +kcommaaccent = 0; +l = 0; +l.ss04 = 0; +lcommaaccent = 0; +quotedbl = 11; +}; +infinity = { +parenright = -51; +parenright.case = -32; +}; +integral = { +a = -40; +}; +iogonek = { +j = 0; +}; +itilde = { +h = 0; +itilde = 1; +quotedbl = 15; +quotesingle = 15; +}; +j = { +j = 0; +}; +jacute = { +backslash = 35; +iogonek = 2; +}; +jcircumflex = { +i = 0; +jcircumflex = 2; +}; +k = { +oslash = 0; +}; +l = { +at = 0; +idieresis = 0; +igrave = 2; +itilde = 1; +jcircumflex = 2; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 56; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss04 = { +periodcentered.loclCAT = 60; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 71; +l = 26; +ncaron = 0; +scaron = 3; +twosuperior = 61; +}; +lcaron.ss03 = { +b = 21; +eightsuperior = 38; +exclam = 71; +exclam.ss01 = 70; +fivesuperior = 32; +k = 21; +ninesuperior = 42; +onesuperior = 59; +question = 80; +quotedbl = 78; +quotesingle = 78; +sevensuperior = 74; +sixsuperior = 30; +}; +lcaron.ss04 = { +exclam.ss01 = 71; +twosuperior = 61; +}; +liraTurkish = { +one = -24; +parenright = -46; +question = -52; +quotedbl = -67; +quotesingle = -61; +seven = -37; +}; +logicalnot = { +Y = -60; +parenright = -37; +seven = -61; +}; +m = { +asterisk = -37; +braceright = -38; +twosuperior = -25; +}; +minus = { +T = -77; +X = -85; +comma = -65; +one = -46; +parenright = -88; +parenright.case = -75; +period = -62; +seven = -97; +three = -80; +two = -103; +}; +mu = { +mu = 0; +parenright = -42; +quotesingle = -28; +}; +multiply = { +parenright = -79; +parenright.case = -68; +}; +n = { +asterisk = -37; +at = 0; +braceright = -39; +degree = -76; +g.ss06 = 4; +n = 0; +one = -25; +ordmasculine = -45; +}; +ncaron = { +Yacute = -14; +}; +nine = { +bracketright = -20; +degree = -26; +}; +nine.dnom = { +degree = -134; +question = -77; +question.ss01 = -74; +quotedbl = -125; +quotedblleft = -134; +quotedblleft.ss01 = -111; +quotedblright = -134; +quotedblright.ss01 = -111; +}; +ninesuperior = { +comma = -65; +comma.ss01 = -61; +fraction = -14; +period = -62; +period.ss01 = -61; +slash = -56; +}; +notequal = { +parenright = -66; +parenright.case = -55; +}; +numbersign = { +parenright = -26; +}; +o = { +asterisk = -42; +backslash = -32; +braceright = -36; +germandbls = -3; +lslash = 0; +n = 0; +one = -23; +}; +oacute = { +lslash = 0; +}; +ocircumflexacute = { +bracketright = 11; +parenright = 15; +}; +odieresis = { +germandbls = -3; +}; +ohorn = { +i = 0; +m = 0; +n = 0; +parenright = -10; +}; +ohornacute = { +c = 0; +i = 0; +m = 0; +n = 0; +p = 0; +t = 4; +t_i.liga = 4; +t_t.liga = 4; +}; +ohorndotbelow = { +c = 0; +i = 0; +n = 0; +p = 0; +t = 4; +t_i.liga = 4; +t_t.liga = 4; +u = 3; +}; +ohorngrave = { +i = 0; +n = 0; +parenright = -10; +}; +ohornhookabove = { +i = 0; +n = 0; +}; +ohorntilde = { +i = 0; +n = 0; +}; +ohungarumlaut = { +parenright = 0; +}; +one = { +comma.ss01 = -29; +degree = -28; +equal = 0; +four = 0; +icircumflex = 12; +nine = 0; +one = 0; +parenright = 0; +percent = 0; +period.ss01 = -29; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -78; +one.dnom = 0; +question.ss01 = -75; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -65; +comma.ss01 = -61; +period = -62; +period.ss01 = -61; +slash = -56; +}; +ordfeminine = { +comma = -65; +comma.ss01 = -61; +period = -62; +period.ss01 = -61; +}; +ordmasculine = { +comma = -65; +comma.ss01 = -61; +hyphen = -94; +parenright = -16; +period = -62; +period.ss01 = -61; +slash = -64; +}; +oslash = { +d = 0; +e = 2; +g = 4; +hyphen = 15; +parenright = -37; +y = 3; +}; +p = { +asterisk = -41; +backslash = -31; +braceright = -36; +lslash = 0; +one = -23; +}; +parenleft = { +Dcroat = -2; +H = 0; +Icircumflex = 13; +Oslash = 0; +ampersand = -30; +approxequal = -73; +asciicircum = -80; +asciitilde = -61; +at = -46; +cent = -44; +copyright = -57; +degree = -26; +divide = -87; +dollar = -30; +equal = -51; +euro = -46; +greaterequal = -18; +i = -28; +idotaccent = -28; +infinity = -51; +iogonek = 45; +jcircumflex = 44; +less = -32; +literSign = -39; +logicalnot = -42; +minus = -88; +mu = 0; +multiply = -80; +notequal = -67; +numbersign = -27; +oslash = -2; +p = 3; +parenleft = -26; +pi = -19; +plus = -84; +plusminus = -25; +published = -57; +question = -7; +quotedblbase = 23; +quoteleft = -5; +radical = -31; +scaron = 0; +section = -15; +sterling = -12; +x = -2; +}; +parenleft.case = { +Icircumflex = 29; +approxequal = -60; +asciicircum = -77; +asciitilde = -50; +dollar = -13; +equal = -37; +euro = -30; +minus = -75; +numbersign = -15; +parenleft.case = -9; +plus = -71; +question = 0; +quotedblbase = 18; +quoteleft = -2; +}; +parenright = { +bracketright = -15; +comma = 0; +comma.ss01 = -34; +hyphen = 26; +parenleft = 27; +parenright = -26; +period = -4; +period.ss01 = -44; +quotedbl = -14; +}; +parenright.case = { +comma = -21; +comma.ss01 = -47; +parenright.case = -9; +period = -21; +period.ss01 = -53; +}; +percent = { +asterisk = -79; +bracketright = -45; +comma.ss01 = -52; +eightsuperior = -61; +fivesuperior = -61; +foursuperior = -80; +ninesuperior = -59; +onesuperior = -57; +parenright = -51; +parenright.case = -21; +period = -18; +period.ss01 = -52; +question = -78; +question.ss01 = -71; +quotedbl = -81; +quotedblleft = -93; +quotedblright = -77; +quoteleft = -65; +quoteright = -65; +quotesingle = -61; +sevensuperior = -65; +sixsuperior = -65; +threesuperior = -57; +twosuperior = -41; +}; +period = { +bracketright = -36; +eightsuperior = -62; +fivesuperior = -62; +foursuperior = -62; +ninesuperior = -62; +onesuperior = -62; +ordfeminine = -62; +ordmasculine = -62; +parenleft.case = -21; +question = -58; +quoteleft = -62; +quotesingle = -61; +sevensuperior = -62; +sixsuperior = -62; +threesuperior = -62; +twosuperior = -62; +}; +period.ss01 = { +bracketright = -52; +eightsuperior = -61; +fivesuperior = -61; +foursuperior = -61; +ninesuperior = -61; +onesuperior = -61; +ordfeminine = -61; +ordmasculine = -61; +question.ss01 = -61; +sevensuperior = -61; +sixsuperior = -61; +threesuperior = -61; +twosuperior = -61; +}; +periodcentered.loclCAT = { +l = 60; +l.ss03 = 61; +}; +perthousand = { +asterisk = -129; +parenright = -54; +parenright.case = -22; +question = -84; +question.ss01 = -82; +quotedblleft = -146; +quotedblleft.ss01 = -111; +quotedblright = -146; +quotedblright.ss01 = -111; +quoteleft = -65; +quoteright = -65; +}; +pi = { +hyphen = -6; +parenright = -2; +period = 19; +pi = 29; +quotesingle = 0; +}; +plus = { +J = -37; +T = -73; +V = -34; +X = -68; +Y = -53; +braceright = -78; +bracketright = -72; +comma = -65; +comma.ss01 = -61; +one = -39; +parenright = -84; +parenright.case = -71; +period = -62; +period.ss01 = -61; +quotedbl = -78; +seven = -78; +slash = -41; +three = -63; +two = -82; +}; +published = { +parenright = -57; +}; +q = { +bracketright = 0; +j = 0; +parenright = 3; +}; +question = { +A = -24; +J = -6; +comma = -42; +hyphen = -36; +parenright = 0; +parenright.case = 0; +period = -44; +question = 31; +questiondown = -65; +slash = -33; +}; +question.ss01 = { +comma.ss01 = -61; +parenright = 0; +parenright.case = 0; +period.ss01 = -61; +questiondown.ss01 = -60; +}; +questiondown.case = { +T = -57; +V = -56; +Y = -62; +quotedbl = -82; +quotedblleft = -92; +quotedblleft.ss01 = -100; +quoteright = -65; +}; +questiondown.ss01 = { +C = -49; +Q = -49; +Q.ss09 = -49; +T = -75; +V = -83; +Y = -81; +four = -64; +quotedbl = -79; +quotedblleft.ss01 = -93; +quotesingle = -61; +}; +quotedbl = { +ellipsis.ss01 = -126; +exclamdown = -29; +g.ss06 = -40; +icircumflex = 23; +mu = -28; +questiondown = -74; +questiondown.case = -61; +questiondown.ss01 = -74; +underscore = -126; +}; +quotedblbase = { +copyright = -87; +divide = -146; +equal = -146; +euro = -74; +minus = -146; +p = -13; +plus = -146; +question = -72; +quotedblright = -146; +quoteleft = -65; +}; +quotedblbase.ss01 = { +divide = -111; +minus = -111; +plus = -111; +question.ss01 = -85; +quotedblright.ss01 = -111; +}; +quotedblleft = { +g.ss06 = -84; +mu = -54; +questiondown = -99; +questiondown.case = -47; +quotedblbase = -146; +underscore = -146; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -111; +questiondown.ss01 = -88; +quotedblbase.ss01 = -111; +underscore = -111; +}; +quotedblright = { +asciitilde = -146; +questiondown = -129; +questiondown.case = -65; +quotesinglbase = -65; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -111; +questiondown.case = -76; +questiondown.ss01 = -100; +}; +quoteleft = { +questiondown = -65; +questiondown.case = -47; +quotedblbase = -65; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -61; +}; +quoteright = { +icircumflex = 9; +questiondown = -65; +quotedblbase = -65; +}; +quoteright.ss01 = { +questiondown.ss01 = -61; +quotedblbase.ss01 = -61; +}; +quotesinglbase = { +T = -65; +V = -65; +Y = -65; +minus = -65; +plus = -65; +question = -65; +quotedblleft = -65; +quoteleft = -65; +}; +quotesinglbase.ss01 = { +T = -61; +V = -61; +Y = -61; +question.ss01 = -61; +}; +quotesingle = { +Hbar = 13; +g.ss06 = -40; +icircumflex = 24; +igrave = 24; +imacron = 11; +itilde = 13; +l.ss04 = 0; +questiondown = -61; +questiondown.case = -61; +underscore = -61; +}; +r = { +braceright = -13; +fourinferior = -54; +g.ss06 = -14; +parenright = -19; +}; +radical = { +A = -37; +}; +rcaron = { +sevensuperior = 13; +}; +registered = { +comma = -65; +comma.ss01 = -61; +parenright = -36; +parenright.case = -27; +period = -62; +period.ss01 = -61; +slash = -50; +}; +s = { +asterisk = -29; +braceright = -26; +l = 0; +}; +scaron = { +T = -7; +}; +semicolon = { +hyphen = -65; +}; +seven = { +minus = -66; +percent = 9; +plus = -49; +underscore = -64; +}; +seven.dnom = { +question.ss01 = -75; +}; +seven.numr = { +fraction = -20; +}; +seveninferior = { +parenright = -38; +}; +sevensuperior = { +A = -58; +comma = -65; +comma.ss01 = -61; +fraction = -26; +period = -62; +period.ss01 = -61; +slash = -67; +}; +six = { +bracketright = -18; +degree = -37; +}; +six.dnom = { +degree = -132; +question.ss01 = -77; +quotedbl = -122; +quotedblleft = -134; +quotedblleft.ss01 = -111; +quotedblright = -134; +}; +sixinferior = { +T = -61; +}; +sixsuperior = { +comma = -65; +comma.ss01 = -61; +period = -62; +period.ss01 = -61; +slash = -52; +}; +slash = { +fourinferior = -67; +g.ss06 = -32; +ibreve = 33; +l.ss04 = 0; +mu = -35; +quotedblbase = -95; +quotedblbase.ss01 = -95; +quotesinglbase = -65; +underscore = -71; +}; +sterling = { +two = 10; +}; +t_i.liga = { +idieresis = 0; +}; +tcaron = { +b = 0; +exclam = 52; +h = 0; +hyphen = -6; +i = 0; +j = 0; +k = 0; +parenright = 74; +quotedbl = 58; +quotedblleft = 42; +quotesingle = 58; +}; +tcedilla = { +parenright = 55; +}; +tenge = { +comma = -65; +comma.ss01 = -61; +period = -62; +period.ss01 = -61; +slash = -54; +}; +three = { +bracketright = -16; +}; +three.dnom = { +degree = -126; +question.ss01 = -75; +quotedbl = -124; +quotedblleft = -126; +quotedblright = -126; +}; +three.numr = { +fraction = -5; +}; +threeinferior = { +T = -61; +V = -45; +Y = -71; +}; +threesuperior = { +comma = -65; +comma.ss01 = -61; +fraction = -6; +parenright = 0; +period = -62; +period.ss01 = -61; +slash = -54; +}; +trademark = { +comma = -65; +comma.ss01 = -61; +hyphen = -132; +period = -62; +period.ss01 = -61; +slash = -82; +}; +two = { +percent = 13; +}; +two.dnom = { +degree = -112; +question.ss01 = -69; +quotedbl = -112; +quotedblleft = -112; +quotedblright = -112; +}; +twoinferior = { +T = -60; +V = -37; +Y = -72; +}; +twosuperior = { +comma = -65; +comma.ss01 = -61; +parenright = 5; +parenright.case = 7; +period = -62; +period.ss01 = -61; +slash = -41; +}; +uhorn = { +a = 0; +ohorn = 0; +ohornacute = 0; +ohorndotbelow = 0; +ohorndotbelow.ss01 = 0; +ohorngrave = 0; +ohornhookabove = 0; +ohorntilde = 0; +}; +uhornacute = { +a = 0; +c = 0; +}; +uhorndotbelow = { +a = 0; +c = 0; +comma = -2; +period = -2; +}; +uhorngrave = { +a = 0; +a.ss05 = 2; +}; +uhornhookabove = { +a = 0; +comma = -2; +comma.ss01 = -33; +period = -2; +period.ss01 = -37; +}; +uhorntilde = { +a = 0; +comma = -2; +period = -2; +}; +uhungarumlaut = { +parenright = 0; +}; +underscore = { +C = -24; +O = -24; +T = -42; +V = -59; +W = -36; +Y = -56; +asterisk = -129; +four = -114; +one = -16; +quotedbl = -126; +quotedblright = -146; +quotedblright.ss01 = -111; +quotesingle = -61; +seven = -33; +six = -23; +v = -33; +}; +uogonek = { +j = 0; +parenright = 0; +}; +v = { +braceright = -21; +n = 0; +}; +w = { +braceright = -23; +}; +x = { +four = -14; +}; +y = { +braceright = -19; +}; +ydotbelow = { +period = -20; +}; +zero = { +braceright = -19; +bracketright = -18; +bracketright.case = -19; +degree = -26; +percent = 5; +}; +zero.dnom = { +degree = -139; +question = -77; +question.ss01 = -74; +quotedbl = -126; +quotedblleft = -139; +quotedblleft.ss01 = -111; +quotedblright = -139; +quotedblright.ss01 = -111; +quoteleft = -65; +}; +zeroinferior = { +parenright = -37; +}; +zerosuperior = { +comma = -65; +comma.ss01 = -61; +fraction = -15; +period = -62; +period.ss01 = -61; +slash = -56; +}; +}; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = -54; +"@MMK_R_KO_W" = -43; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = -33; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_fivesuperior" = -37; +"@MMK_R_KO_foursuperior" = -40; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -7; +"@MMK_R_KO_hyphen.case" = -18; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -39; +"@MMK_R_KO_question.ss01" = -45; +"@MMK_R_KO_quotedbl" = -51; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -31; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = -40; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_threesuperior" = -39; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = -15; +"@MMK_R_KO_Y" = -26; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -13; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 30; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_parenright.case" = -40; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -16; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -27; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -36; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -23; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -34; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 28; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -48; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -17; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -29; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -26; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_X" = -31; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -40; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -23; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 23; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -56; +"@MMK_R_KO_period" = -22; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -37; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -59; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_X" = -31; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -40; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -23; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -56; +"@MMK_R_KO_period" = -22; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_y" = 0; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 58; +"@MMK_R_KO_imacron" = 45; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -10; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -7; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -13; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -89; +"@MMK_R_KO_comma.ss01" = -101; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -96; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_icircumflex" = 45; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = -15; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = -88; +"@MMK_R_KO_period.ss01" = -102; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -47; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = -82; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = -21; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = -21; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -23; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 42; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -49; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -17; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -26; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -41; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 5; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 6; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 31; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -10; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -10; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 37; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 19; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -1; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -12; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 60; +"@MMK_R_KO_imacron" = 45; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 3; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 51; +"@MMK_R_KO_imacron" = 40; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -3; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -27; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asciicircum" = -53; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -42; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -49; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -20; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -22; +"@MMK_R_KO_question.ss01" = -25; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -44; +"@MMK_R_KO_W" = -36; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -80; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -89; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 15; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = -79; +"@MMK_R_KO_ellipsis" = 2; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_fivesuperior" = -81; +"@MMK_R_KO_foursuperior" = -82; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_hyphen.case" = -66; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -79; +"@MMK_R_KO_onesuperior" = -85; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 16; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -64; +"@MMK_R_KO_question.ss01" = -74; +"@MMK_R_KO_quotedbl" = -77; +"@MMK_R_KO_quotedblleft" = -80; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteleft" = -80; +"@MMK_R_KO_quoteright" = -78; +"@MMK_R_KO_quoteright.ss01" = -73; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -84; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_sixsuperior" = -79; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_threesuperior" = -80; +"@MMK_R_KO_trademark" = -92; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -42; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -43; +"@MMK_R_KO_W" = -36; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -79; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 15; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -43; +"@MMK_R_KO_ellipsis" = 2; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_fivesuperior" = -46; +"@MMK_R_KO_foursuperior" = -46; +"@MMK_R_KO_guillemetleft" = -51; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -36; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -48; +"@MMK_R_KO_onesuperior" = -79; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 16; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -40; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -62; +"@MMK_R_KO_quotedblleft" = -47; +"@MMK_R_KO_quotedblleft.ss01" = -45; +"@MMK_R_KO_quoteleft" = -47; +"@MMK_R_KO_quoteright" = -38; +"@MMK_R_KO_quoteright.ss01" = -40; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -80; +"@MMK_R_KO_sixsuperior" = -45; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_threesuperior" = -45; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_X" = -27; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 31; +"@MMK_R_KO_imacron" = 20; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -56; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -29; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -48; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_X" = -27; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -27; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = -33; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -29; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -48; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 28; +"@MMK_R_KO_I.ss02" = 29; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 32; +"@MMK_R_KO_U" = 32; +"@MMK_R_KO_V" = 35; +"@MMK_R_KO_X" = 30; +"@MMK_R_KO_bracketright" = 30; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = 37; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 28; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_parenright" = 20; +"@MMK_R_KO_parenright.case" = 25; +"@MMK_R_KO_period" = -18; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 22; +"@MMK_R_KO_quoteright" = 23; +"@MMK_R_KO_quoteright.ss01" = 31; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 9; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = -27; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_comma.ss01" = -103; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -144; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 46; +"@MMK_R_KO_imacron" = 25; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -12; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -49; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_period.ss01" = -103; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = 3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -17; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -59; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -23; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -148; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -52; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_hyphen.case" = -9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -27; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -52; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 1; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 51; +"@MMK_R_KO_imacron" = 30; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -10; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -13; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -21; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = -15; +"@MMK_R_KO_Y" = -23; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -26; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -12; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -40; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -13; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -25; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -29; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = -15; +"@MMK_R_KO_Y" = -23; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = -17; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -12; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -40; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -13; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = -31; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_a.ss05" = -40; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -24; +"@MMK_R_KO_comma" = -52; +"@MMK_R_KO_comma.ss01" = -65; +"@MMK_R_KO_e" = -54; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = -45; +"@MMK_R_KO_guillemetleft" = -66; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -46; +"@MMK_R_KO_hyphen.case" = -46; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_icircumflex" = 64; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 26; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -65; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -41; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_underscore" = -45; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -21; +"@MMK_R_KO_x" = -19; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = -24; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_imacron" = 41; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 2; +"@MMK_R_KO_parenright" = -6; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -7; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -39; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 2; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 24; +"@MMK_R_KO_I.ss02" = 35; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_T" = 39; +"@MMK_R_KO_U" = 27; +"@MMK_R_KO_V" = 42; +"@MMK_R_KO_X" = 37; +"@MMK_R_KO_Y" = 43; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 39; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -11; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_eightsuperior" = 27; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 38; +"@MMK_R_KO_fivesuperior" = 31; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 26; +"@MMK_R_KO_onesuperior" = 12; +"@MMK_R_KO_parenright" = 41; +"@MMK_R_KO_parenright.case" = 41; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 27; +"@MMK_R_KO_quoteright" = 26; +"@MMK_R_KO_quoteright.ss01" = 26; +"@MMK_R_KO_sevensuperior" = 35; +"@MMK_R_KO_sixsuperior" = 22; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_threesuperior" = 22; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -54; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_asciicircum" = -18; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -51; +"@MMK_R_KO_comma.ss01" = -54; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = -24; +"@MMK_R_KO_hyphen.case" = -16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 46; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = -50; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -23; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -58; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = -52; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = -19; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -26; +"@MMK_R_KO_asciicircum" = -15; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -42; +"@MMK_R_KO_comma.ss01" = -46; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -48; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_hyphen.case" = -12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 50; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period" = -41; +"@MMK_R_KO_period.ss01" = -45; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -9; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -45; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -14; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asciicircum" = -45; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -36; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -38; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 29; +"@MMK_R_KO_imacron" = 40; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -8; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -21; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -25; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -63; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = -64; +"@MMK_R_KO_a.ss05" = -56; +"@MMK_R_KO_asciicircum" = -44; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -37; +"@MMK_R_KO_comma" = -84; +"@MMK_R_KO_comma.ss01" = -98; +"@MMK_R_KO_e" = -67; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -92; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -34; +"@MMK_R_KO_g" = -63; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_hyphen.case" = -45; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 43; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 19; +"@MMK_R_KO_n" = -44; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = -84; +"@MMK_R_KO_period.ss01" = -98; +"@MMK_R_KO_question" = -22; +"@MMK_R_KO_question.ss01" = -22; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -62; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -35; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = -87; +"@MMK_R_KO_t" = -24; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -35; +"@MMK_R_KO_underscore" = -78; +"@MMK_R_KO_v" = -34; +"@MMK_R_KO_w" = -35; +"@MMK_R_KO_x" = -38; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = -36; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -9; +"@MMK_R_KO_hyphen.case" = -33; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 60; +"@MMK_R_KO_imacron" = 46; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 31; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -4; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -22; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = -39; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -1; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -61; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -67; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -52; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -70; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -74; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -36; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = -47; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -79; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = -27; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -77; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -52; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -32; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = -11; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -44; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = -29; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -41; +"@MMK_R_KO_H" = -13; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_T" = -64; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_i" = -14; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_t" = -3; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -55; +"@MMK_R_KO_a.ss05" = -77; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_comma.ss01" = -103; +"@MMK_R_KO_e" = -75; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -6; +"@MMK_R_KO_four" = -77; +"@MMK_R_KO_g" = -54; +"@MMK_R_KO_guillemetleft" = -95; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -130; +"@MMK_R_KO_hyphen.case" = -62; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -36; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_period.ss01" = -103; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -56; +"@MMK_R_KO_seven" = 6; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -8; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -22; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = -58; +"@MMK_R_KO_a.ss05" = -57; +"@MMK_R_KO_asterisk" = -5; +"@MMK_R_KO_colon" = -38; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -66; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eight" = -20; +"@MMK_R_KO_ellipsis" = -72; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_five" = -15; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -89; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 32; +"@MMK_R_KO_n" = -71; +"@MMK_R_KO_nine" = -18; +"@MMK_R_KO_one" = -66; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -79; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -39; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = -72; +"@MMK_R_KO_seven" = -2; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_three" = -30; +"@MMK_R_KO_two" = -27; +"@MMK_R_KO_u" = -41; +"@MMK_R_KO_v" = -77; +"@MMK_R_KO_w" = -73; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -45; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 1; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_asterisk" = -11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_eight" = -13; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_five" = -13; +"@MMK_R_KO_four" = -69; +"@MMK_R_KO_guillemetleft" = -86; +"@MMK_R_KO_guillemetright" = -51; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_nine" = -18; +"@MMK_R_KO_one" = -68; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -45; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_seven" = -4; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_three" = -27; +"@MMK_R_KO_two" = -11; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = -20; +"@MMK_R_KO_Y" = -66; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -24; +"@MMK_R_KO_bracketright" = -72; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -43; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -30; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = -35; +"@MMK_R_KO_quotedblleft" = -21; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -67; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -48; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -105; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_eight" = -7; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -13; +"@MMK_R_KO_guillemetleft" = -81; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -38; +"@MMK_R_KO_hyphen.case" = -105; +"@MMK_R_KO_nine" = -14; +"@MMK_R_KO_one" = -84; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_quotedbl" = -105; +"@MMK_R_KO_quotedblleft" = -105; +"@MMK_R_KO_quoteright" = -105; +"@MMK_R_KO_seven" = -91; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -54; +"@MMK_R_KO_H" = -11; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_i" = -10; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_t" = -3; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -66; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -66; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -34; +"@MMK_R_KO_question.ss01" = -38; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -72; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -73; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = -13; +"@MMK_R_KO_Y" = -28; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 7; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = -45; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -31; +"@MMK_R_KO_question.ss01" = -38; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -39; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -24; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eight" = 13; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 2; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = -28; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_U" = -23; +"@MMK_R_KO_V" = -56; +"@MMK_R_KO_W" = -48; +"@MMK_R_KO_Y" = -92; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -130; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eight" = -16; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -24; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -93; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_hyphen.case" = -204; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_nine" = -22; +"@MMK_R_KO_one" = -89; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -194; +"@MMK_R_KO_quotedblleft" = -217; +"@MMK_R_KO_quoteright" = -217; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_seven" = -97; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_v" = -42; +"@MMK_R_KO_w" = -31; +"@MMK_R_KO_y" = -62; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = -19; +"@MMK_R_KO_V" = -53; +"@MMK_R_KO_W" = -45; +"@MMK_R_KO_Y" = -98; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -130; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_five" = -15; +"@MMK_R_KO_four" = -8; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -83; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -191; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -97; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -25; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -194; +"@MMK_R_KO_quotedblleft.ss01" = -218; +"@MMK_R_KO_quoteright.ss01" = -218; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_seven" = -102; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -5; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = -40; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_y" = -51; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -34; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eight" = 5; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = 8; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -79; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_period" = -33; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_quotedbl" = -92; +"@MMK_R_KO_quotedblleft" = -80; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteright" = -84; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = -93; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = -23; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -22; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 3; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = -28; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 10; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_period" = -28; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quotedblleft.ss01" = 4; +"@MMK_R_KO_quoteleft" = 5; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 13; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 7; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 6; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -29; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -22; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 3; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = -28; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 10; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_period" = -28; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quotedblleft.ss01" = 4; +"@MMK_R_KO_quoteleft" = 5; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 13; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 7; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 6; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -29; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -1; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 31; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -10; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -21; +"@MMK_R_KO_colon" = -6; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eight" = 6; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 4; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -26; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -29; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -19; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -16; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -36; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eight" = 5; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -33; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -29; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -33; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -12; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -15; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -15; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 27; +"@MMK_R_KO_j" = 23; +"@MMK_R_KO_l.ss04" = 21; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -7; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = -9; +"@MMK_R_KO_I.ss02" = -15; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = -29; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asterisk" = -10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_five" = -14; +"@MMK_R_KO_four" = -21; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -66; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = -28; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -12; +"@MMK_R_KO_nine" = -3; +"@MMK_R_KO_one" = -11; +"@MMK_R_KO_parenright" = -76; +"@MMK_R_KO_parenright.case" = -61; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteright" = -33; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_seven" = -12; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_three" = -9; +"@MMK_R_KO_two" = -6; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -26; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = -44; +"@MMK_R_KO_J" = -39; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -27; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_Y" = -81; +"@MMK_R_KO_Z" = -45; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asterisk" = -95; +"@MMK_R_KO_colon" = -28; +"@MMK_R_KO_comma" = -78; +"@MMK_R_KO_comma.ss01" = -84; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eight" = -15; +"@MMK_R_KO_ellipsis" = -92; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -3; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = -66; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_nine" = -12; +"@MMK_R_KO_one" = -44; +"@MMK_R_KO_parenright" = -85; +"@MMK_R_KO_parenright.case" = -78; +"@MMK_R_KO_period" = -77; +"@MMK_R_KO_period.ss01" = -83; +"@MMK_R_KO_quotedbl" = -70; +"@MMK_R_KO_quotedblleft" = -55; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_seven" = -48; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_three" = -30; +"@MMK_R_KO_two" = -53; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = -33; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -43; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_Y" = -63; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -130; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -33; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eight" = 5; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = 8; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -72; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_quotedbl" = -98; +"@MMK_R_KO_quotedblleft" = -76; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteright" = -84; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = -90; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = -23; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -32; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -43; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = -32; +"@MMK_R_KO_asterisk" = -62; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_comma.ss01" = -103; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen.case" = 3; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright.case" = -49; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_period.ss01" = -103; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_three" = -44; +"@MMK_R_KO_two" = -12; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = -24; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -1; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 7; +"@MMK_R_KO_imacron" = 27; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -46; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 32; +"@MMK_R_KO_I.ss02" = 44; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 48; +"@MMK_R_KO_U" = 36; +"@MMK_R_KO_V" = 51; +"@MMK_R_KO_W" = 51; +"@MMK_R_KO_X" = 46; +"@MMK_R_KO_Y" = 43; +"@MMK_R_KO_Z" = 34; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = 54; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -1; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = 17; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 37; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 22; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_icircumflex" = 47; +"@MMK_R_KO_imacron" = 69; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_l.ss04" = 52; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 16; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 17; +"@MMK_R_KO_quoteright.ss01" = 26; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 19; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asciicircum" = -18; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -24; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -63; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = -80; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -1; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 27; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -6; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -10; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -16; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -22; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 17; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -23; +"@MMK_R_KO_period" = 5; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -13; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 76; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = -1; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 83; +"@MMK_R_KO_eightsuperior" = 98; +"@MMK_R_KO_exclam" = 148; +"@MMK_R_KO_f" = 92; +"@MMK_R_KO_fivesuperior" = 109; +"@MMK_R_KO_foursuperior" = 81; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 166; +"@MMK_R_KO_j" = 146; +"@MMK_R_KO_l.ss04" = 169; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 114; +"@MMK_R_KO_onesuperior" = 79; +"@MMK_R_KO_parenright" = 85; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 107; +"@MMK_R_KO_question.ss01" = 94; +"@MMK_R_KO_quotedbl" = 110; +"@MMK_R_KO_quotedblleft" = 93; +"@MMK_R_KO_quotedblleft.ss01" = 102; +"@MMK_R_KO_quoteleft" = 93; +"@MMK_R_KO_sevensuperior" = 70; +"@MMK_R_KO_sixsuperior" = 114; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = 116; +"@MMK_R_KO_threesuperior" = 62; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_z" = 100; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_T" = -41; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -39; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -65; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -24; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -35; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -20; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -72; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -13; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -23; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = -9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -64; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_period" = -11; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -27; +"@MMK_R_KO_question.ss01" = -30; +"@MMK_R_KO_quotedbl" = -37; +"@MMK_R_KO_quotedblleft" = -21; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -70; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -66; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -39; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = -24; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -22; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = -8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 11; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_period" = -11; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = -27; +"@MMK_R_KO_question.ss01" = -32; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -24; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -48; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = -24; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -31; +"@MMK_R_KO_O" = -59; +"@MMK_R_KO_S" = -43; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = -5; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = -66; +"@MMK_R_KO_a.ss05" = -52; +"@MMK_R_KO_asterisk" = -35; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -70; +"@MMK_R_KO_egrave" = -42; +"@MMK_R_KO_eight" = -47; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_f" = -44; +"@MMK_R_KO_five" = -21; +"@MMK_R_KO_four" = -63; +"@MMK_R_KO_g" = -35; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -76; +"@MMK_R_KO_hyphen" = -55; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 35; +"@MMK_R_KO_n" = -62; +"@MMK_R_KO_nine" = -48; +"@MMK_R_KO_one" = -49; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_period" = -46; +"@MMK_R_KO_period.ss01" = -60; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -57; +"@MMK_R_KO_quotedblleft.ss01" = -46; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = -67; +"@MMK_R_KO_seven" = -16; +"@MMK_R_KO_six" = -60; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_three" = -48; +"@MMK_R_KO_two" = -38; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -66; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = -53; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -15; +"@MMK_R_KO_O" = -56; +"@MMK_R_KO_S" = -41; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_asterisk" = -35; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_eight" = -40; +"@MMK_R_KO_ellipsis" = -31; +"@MMK_R_KO_five" = -21; +"@MMK_R_KO_four" = -49; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -62; +"@MMK_R_KO_hyphen.case" = -49; +"@MMK_R_KO_nine" = -45; +"@MMK_R_KO_one" = -48; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -55; +"@MMK_R_KO_quotedblleft.ss01" = -44; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_seven" = -15; +"@MMK_R_KO_six" = -56; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_three" = -41; +"@MMK_R_KO_two" = -22; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -41; +"@MMK_R_KO_Y" = -84; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -98; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -6; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -77; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -31; +"@MMK_R_KO_hyphen.case" = -98; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -9; +"@MMK_R_KO_one" = -82; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -98; +"@MMK_R_KO_quotedblleft" = -98; +"@MMK_R_KO_quoteright" = -98; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -88; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_v" = -37; +"@MMK_R_KO_w" = -25; +"@MMK_R_KO_y" = -56; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = -19; +"@MMK_R_KO_V" = -53; +"@MMK_R_KO_W" = -45; +"@MMK_R_KO_Y" = -98; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -103; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_five" = -15; +"@MMK_R_KO_four" = -8; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -83; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -103; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -97; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -25; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -103; +"@MMK_R_KO_quotedblleft.ss01" = -103; +"@MMK_R_KO_quoteright.ss01" = -103; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_seven" = -102; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = -40; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_y" = -51; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -43; +"@MMK_R_KO_S" = -29; +"@MMK_R_KO_T" = -52; +"@MMK_R_KO_U" = -34; +"@MMK_R_KO_V" = -58; +"@MMK_R_KO_W" = -49; +"@MMK_R_KO_Y" = -88; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_eight" = -28; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_five" = -32; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetright" = -80; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = 25; +"@MMK_R_KO_nine" = -33; +"@MMK_R_KO_one" = -67; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_quotedbl" = -89; +"@MMK_R_KO_quotedblleft" = -69; +"@MMK_R_KO_quoteright" = -69; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = -70; +"@MMK_R_KO_six" = -43; +"@MMK_R_KO_t" = -33; +"@MMK_R_KO_three" = -33; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_v" = -46; +"@MMK_R_KO_w" = -34; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -52; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -36; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asterisk" = 7; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_comma.ss01" = -103; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -194; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -65; +"@MMK_R_KO_g" = -36; +"@MMK_R_KO_guillemetleft" = -69; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -98; +"@MMK_R_KO_hyphen.case" = -23; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = -5; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_period.ss01" = -103; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 7; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -33; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -95; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = -30; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = -21; +"@MMK_R_KO_V" = -58; +"@MMK_R_KO_W" = -49; +"@MMK_R_KO_Y" = -93; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asterisk" = -105; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_egrave" = -23; +"@MMK_R_KO_eight" = -15; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_five" = -19; +"@MMK_R_KO_four" = -32; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_hyphen.case" = -105; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -90; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_quotedblleft" = -217; +"@MMK_R_KO_quoteright" = -105; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_seven" = -96; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = -6; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_v" = -46; +"@MMK_R_KO_w" = -34; +"@MMK_R_KO_y" = -48; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = -19; +"@MMK_R_KO_V" = -53; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_Y" = -98; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -103; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = -15; +"@MMK_R_KO_four" = -8; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -78; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -103; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -97; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -103; +"@MMK_R_KO_quoteright.ss01" = -103; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_seven" = -102; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_slash" = 5; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = -40; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -25; +"@MMK_R_KO_asterisk" = -7; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -217; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -48; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -76; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -10; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -76; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = -16; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma.ss01" = -103; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -34; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -36; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -9; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period.ss01" = -103; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 7; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -70; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -54; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -54; +"@MMK_R_KO_a.ss05" = -71; +"@MMK_R_KO_asterisk" = 4; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_e" = -70; +"@MMK_R_KO_egrave" = -26; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -217; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -78; +"@MMK_R_KO_g" = -52; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -117; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -98; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -25; +"@MMK_R_KO_asterisk" = -7; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -105; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -48; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -76; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -10; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -76; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -54; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = -54; +"@MMK_R_KO_a.ss05" = -71; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_e" = -69; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -105; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -76; +"@MMK_R_KO_g" = -51; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -105; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -31; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -44; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asterisk" = 3; +"@MMK_R_KO_comma.ss01" = -103; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -26; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -59; +"@MMK_R_KO_g" = -27; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -71; +"@MMK_R_KO_hyphen.case" = -18; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period.ss01" = -103; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_slash" = -86; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -3; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asterisk" = 7; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -92; +"@MMK_R_KO_comma.ss01" = -92; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -92; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -65; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -69; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -92; +"@MMK_R_KO_hyphen.case" = -23; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = -5; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = -92; +"@MMK_R_KO_period.ss01" = -92; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 7; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -33; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -90; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -26; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -31; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -12; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -30; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = -21; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = -53; +"@MMK_R_KO_comma.ss01" = -64; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -65; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -62; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -53; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = 5; +"@MMK_R_KO_trademark" = -42; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -58; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = -13; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -18; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -68; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -33; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -17; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -17; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -74; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = -16; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 9; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -25; +"@MMK_R_KO_question.ss01" = -29; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -17; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = -17; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -23; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = -16; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -46; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -40; +"@MMK_R_KO_a.ss05" = -54; +"@MMK_R_KO_asterisk" = 4; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -78; +"@MMK_R_KO_comma.ss01" = -89; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -83; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -60; +"@MMK_R_KO_g" = -38; +"@MMK_R_KO_guillemetleft" = -66; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen" = -48; +"@MMK_R_KO_hyphen.case" = -26; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -22; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = -78; +"@MMK_R_KO_period.ss01" = -90; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_seven" = 6; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_slash" = -79; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -19; +"@MMK_R_KO_v" = -13; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_Y" = -26; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eight" = 9; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 4; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -5; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -7; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -46; +"@MMK_R_KO_H" = 19; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = -21; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 9; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -30; +"@MMK_R_KO_a.ss05" = -39; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -91; +"@MMK_R_KO_comma.ss01" = -92; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_ellipsis" = -94; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -49; +"@MMK_R_KO_g" = -36; +"@MMK_R_KO_guillemetleft" = -52; +"@MMK_R_KO_guillemetright" = -30; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_hyphen.case" = -27; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_nine" = -6; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period" = -89; +"@MMK_R_KO_period.ss01" = -91; +"@MMK_R_KO_quotedbl" = 16; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = -36; +"@MMK_R_KO_seven" = 11; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -100; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = -8; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -29; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -27; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 6; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eight" = 13; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 2; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_Y" = -22; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eight" = 5; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -2; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 6; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = 14; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 6; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = -15; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -3; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -44; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -48; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = -37; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = -71; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -54; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -42; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -48; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -23; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = -25; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -55; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = -68; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -41; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -46; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -23; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -57; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -69; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_sevensuperior" = -82; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -53; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -3; +"@MMK_R_KO_bracketright" = -38; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -56; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -71; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 31; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -9; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -31; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_five" = 3; +"@MMK_R_KO_four" = 2; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 8; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -56; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_seven" = -2; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -6; +Tbar = -32; +asciitilde = -31; +asterisk = -51; +backslash = -47; +g.ss06 = 0; +minus = -31; +one = -35; +ordmasculine = -48; +plus = -31; +quotedbl = -53; +registered = -37; +seven = -38; +two = 0; +twosuperior = -34; +}; +Aacute = { +Tbar = -32; +}; +Abrevedotbelow.ss01 = { +T = -44; +}; +Aogonek = { +comma = 14; +parenright = 2; +}; +Atilde = { +ordfeminine = -46; +}; +B = { +Hbar = 21; +hbar = 12; +idieresis = 38; +itilde = 46; +}; +C = { +h = 2; +l = 2; +plus = -22; +three = 2; +}; +D = { +Lslash = 8; +Oslash = 12; +braceright = -37; +bracketright.case = -38; +}; +E = { +H = 0; +idieresis = 66; +}; +Eogonek = { +comma = 13; +}; +F = { +fourinferior = -53; +i = 0; +igrave = 38; +}; +G = { +Lslash = 8; +lslash = 7; +}; +Germandbls = { +S = 0; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = 0; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 31; +itilde = 63; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 20; +D = 20; +E = 20; +H = 20; +Hbar = 53; +I = 20; +L = 20; +M = 20; +O = 18; +R = 20; +S = 27; +U = 23; +W = 23; +i = 20; +}; +I = { +Hbar = 21; +I = 0; +jcircumflex = 48; +}; +Icircumflex = { +Icircumflex = 72; +l.ss04 = 19; +}; +Imacron = { +Imacron = 74; +}; +Itilde = { +itilde = 63; +}; +J = { +Hbar = 23; +itilde = 66; +}; +Jacute = { +Imacron = 61; +}; +K = { +asciitilde = -53; +four = -23; +idieresis = 60; +igrave = 50; +itilde = 51; +less = -41; +logicalnot = -38; +minus = -53; +one = -26; +oslash = -21; +plus = -53; +}; +L = { +H = 0; +Tbar = -49; +asciitilde = -93; +asterisk = -81; +backslash = -64; +equal = -9; +four = 0; +less = -78; +logicalnot = -75; +minus = -87; +one = -74; +ordfeminine = -81; +ordmasculine = -81; +oslash = -7; +plus = -87; +quotedbl = -80; +quoteleft.ss01 = -80; +quoteright = -78; +quoteright.ss01 = -73; +registered = -84; +seven = -76; +twosuperior = -79; +}; +Lcaron = { +A = 6; +O = 0; +U = 55; +Uacute = 55; +V = 44; +a = -4; +hyphen = 0; +hyphen.case = -66; +u = -4; +v = -12; +}; +Lcommaaccent = { +twosuperior = -79; +}; +Lslash = { +twosuperior = -48; +}; +M = { +Hbar = 21; +idieresis = 56; +igrave = 31; +itilde = 63; +}; +N = { +Hbar = 21; +idieresis = 56; +igrave = 31; +itilde = 63; +}; +O = { +Dcroat = 12; +Lslash = 8; +braceright = -25; +bracketright.case = -25; +itilde = 29; +}; +Oslash = { +T = -7; +V = -3; +Y = -7; +parenright = 0; +parenright.case = 0; +}; +P = { +fourinferior = -72; +idieresis = 34; +itilde = 42; +two = 0; +}; +R = { +Hbar = 27; +jcircumflex = 51; +two = 9; +}; +S = { +Hbar = 26; +Lslash = 9; +dollar = 0; +four = 2; +idieresis = 40; +itilde = 49; +lslash = 7; +three = 5; +}; +T = { +Oslash = -7; +a.ss05 = -52; +aacute.ss05 = -52; +abreve = -34; +abreveacute = -34; +acircumflex = -26; +acircumflexacute = -29; +acircumflexdotbelow = -23; +adieresis = -17; +adotbelow.ss05 = -52; +ae = -52; +agrave = -30; +amacron = -33; +ampersand = -31; +aring = -47; +asciitilde = -67; +atilde = -17; +equal = -18; +four = -53; +g.ss06 = -45; +h = 0; +i.ss01 = -2; +iacute = -17; +idieresis = 72; +idotless = -25; +igrave = 47; +itilde = 79; +less = -58; +logicalnot = -47; +minus = -63; +ograve = -29; +plus = -63; +racute = -19; +scaron = -17; +seven = 7; +twoinferior = -58; +udieresis = -14; +udieresis.ss01 = -14; +ugrave = -14; +uhorngrave = -14; +umacron = -14; +ycircumflex = -17; +ygrave = -17; +yhookabove = -20; +zcaron = 0; +zeroinferior = -55; +}; +Tbar = { +A = -36; +Aacute = -36; +Tbar = 11; +a = -17; +comma = -52; +e = -18; +o = -18; +period = -52; +slash = -51; +}; +Tcaron = { +a.ss05 = -52; +}; +Tcedilla = { +a.ss05 = -52; +abreve = -34; +four = -53; +}; +Tcommaaccent = { +a.ss05 = -52; +abreve = -34; +four = -53; +}; +Thorn = { +A = -20; +AE = -20; +Aacute = -20; +J = -31; +O = 10; +Oacute = 10; +V = -18; +Y = -48; +Yacute = -48; +a = 0; +aacute = 0; +e = 0; +o = 0; +oacute = 0; +period = -52; +}; +U = { +Hbar = 24; +jcircumflex = 52; +}; +V = { +four = -30; +iacute = -13; +ibreve = 44; +idieresis = 67; +igrave = 50; +itilde = 69; +minus = -29; +plus = -29; +scaron = -10; +seven = 2; +twoinferior = -36; +}; +W = { +Hbar = 24; +backslash = 11; +idieresis = 68; +igrave = 50; +itilde = 71; +}; +X = { +asciitilde = -57; +four = -24; +less = -44; +logicalnot = -42; +minus = -57; +notequal = -26; +one = -24; +plus = -57; +}; +Y = { +a.ss05 = -69; +agrave = -35; +amacron = -36; +ampersand = -56; +asciitilde = -82; +at = -52; +four = -79; +g.ss06 = -64; +igrave = 43; +less = -56; +logicalnot = -51; +minus = -68; +ograve = -32; +plus = -68; +scaron = -19; +twoinferior = -82; +}; +Z = { +four = -4; +ibreve = 38; +igrave = 43; +itilde = 75; +minus = -54; +plus = -54; +}; +_B.currency = { +_baht.bar = -27; +}; +a = { +braceright = -49; +}; +a.ss05 = { +g.ss06 = 8; +}; +acircumflexacute.ss05 = { +y = -23; +}; +adieresis.ss05 = { +germandbls = -11; +}; +ampersand = { +V = -32; +W = -27; +Y = -68; +quotedbl = -54; +quotedblleft = -48; +}; +aogonek = { +j = 25; +parenright = -4; +}; +aogonek.ss05 = { +parenright = 2; +}; +approxequal = { +parenright = -70; +parenright.case = -66; +}; +asciicircum = { +J = -39; +X = -44; +Y = -43; +bracketright = -78; +comma = -105; +comma.ss01 = -103; +four = -58; +hyphen = -176; +parenright = -73; +parenright.case = -71; +period = -98; +period.ss01 = -103; +slash = -85; +}; +asciitilde = { +I.ss02 = -50; +J = -46; +V = -28; +W = -25; +X = -64; +Y = -63; +Z = -76; +bracketright = -86; +bracketright.case = -87; +comma = -105; +comma.ss01 = -103; +eight = -21; +exclam = -14; +four = -25; +one = -14; +parenright = -81; +parenright.case = -79; +period = -98; +period.ss01 = -103; +question = -66; +quotedbl = -41; +quotedblright = -2; +seven = -17; +slash = -72; +three = -71; +two = -21; +}; +at = { +T = -18; +parenright = -62; +}; +b = { +asterisk = -55; +braceright = -52; +lslash = 7; +one = -17; +}; +backslash = { +T = -48; +V = -58; +Y = -87; +asterisk = -94; +backslash = -100; +quotedbl = -95; +quotedblleft = -79; +quotedblleft.ss01 = -69; +quotedblright = -60; +quotedblright.ss01 = -61; +quoteleft = -79; +quoteright = -60; +quotesingle = -90; +}; +baht = { +parenright = -52; +}; +braceleft = { +p = -3; +}; +bracketleft = { +asciicircum = -77; +asciitilde = -86; +bracketright = 0; +jcircumflex = 38; +p = -8; +pi = -73; +plus = -80; +x = -74; +}; +c = { +asterisk = -65; +braceright = -58; +}; +cent = { +parenright = -60; +}; +colon = { +T = -24; +Y = -37; +four = -2; +one = 0; +parenright = -42; +two = 9; +zero = 9; +}; +colon.ss01 = { +T = -25; +four = -8; +parenright = -55; +}; +comma = { +eightsuperior = -105; +fivesuperior = -105; +foursuperior = -105; +ninesuperior = -105; +onesuperior = -105; +quoteleft = -105; +quotesingle = -92; +sevensuperior = -105; +sixsuperior = -105; +threesuperior = -105; +twosuperior = -105; +}; +comma.ss01 = { +eightsuperior = -103; +fivesuperior = -103; +foursuperior = -103; +ninesuperior = -103; +onesuperior = -103; +sevensuperior = -103; +sixsuperior = -103; +threesuperior = -103; +twosuperior = -103; +}; +copyright = { +Y = -57; +parenright = -77; +}; +d = { +idieresis = 57; +igrave = 17; +itilde = 50; +}; +dcaron = { +C = 105; +H = 167; +bracketright = 76; +eightsuperior = 98; +exclam = 148; +exclam.ss01 = 155; +fivesuperior = 109; +foursuperior = 81; +h = 166; +i = 140; +j = 146; +k = 166; +l = 166; +l.ss03 = 165; +l.ss04 = 169; +ninesuperior = 114; +onesuperior = 79; +parenright = 85; +question = 107; +question.ss01 = 94; +quotedbl = 110; +quotedblleft = 93; +quotedblleft.ss01 = 102; +quoteleft = 93; +quoteleft.ss01 = 102; +quotesingle = 110; +sevensuperior = 70; +sixsuperior = 114; +t = 116; +t_i.liga = 116; +t_t.liga = 116; +threesuperior = 62; +twosuperior = 63; +zcaron = 100; +}; +dcroat = { +i = 2; +igrave = 34; +itilde = 62; +}; +degree = { +J = -44; +comma = -105; +comma.ss01 = -103; +emdash = -84; +endash = -84; +four = -71; +hyphen = -83; +parenright = -56; +parenright.case = -54; +period = -98; +period.ss01 = -103; +slash = -93; +}; +divide = { +parenright = -77; +}; +dollar = { +parenright = -52; +three = 0; +}; +e = { +asterisk = -72; +backslash = -42; +braceright = -60; +germandbls = -7; +one = -21; +seven = -23; +}; +ecircumflexacute = { +t = 0; +}; +eight = { +bracketright = -21; +degree = -7; +}; +eight.dnom = { +degree = -113; +question.ss01 = -79; +quotedbl = -100; +quotedblleft = -95; +quotedblright = -65; +}; +eightsuperior = { +comma = -105; +comma.ss01 = -103; +period = -98; +period.ss01 = -103; +slash = -73; +}; +ellipsis = { +Tbar = -55; +bracketright = -63; +eightsuperior = -145; +fivesuperior = -148; +foursuperior = -159; +ninesuperior = -153; +onesuperior = -115; +parenleft = -14; +parenleft.case = -26; +question = -65; +quoteleft = -105; +quoteright = -105; +quotesingle = -92; +sevensuperior = -149; +sixsuperior = -153; +threesuperior = -147; +twosuperior = -143; +}; +ellipsis.ss01 = { +Tbar = -61; +bracketright = -74; +eightsuperior = -145; +fivesuperior = -148; +foursuperior = -159; +ninesuperior = -153; +onesuperior = -115; +question.ss01 = -85; +quoteleft.ss01 = -103; +quoteright.ss01 = -103; +quotesingle = -92; +sevensuperior = -149; +sixsuperior = -153; +threesuperior = -147; +twosuperior = -143; +}; +emdash = { +foursuperior = -96; +question = -77; +}; +emdash.case = { +X = -41; +quotedblbase = -204; +quotedblbase.ss01 = -191; +}; +endash = { +X = -22; +endash = 0; +foursuperior = -96; +question = -76; +}; +endash.case = { +H = 0; +X = -41; +quotedblbase = -204; +quotedblbase.ss01 = -191; +}; +eng = { +bracketright = -11; +}; +eogonek = { +lslash = 4; +}; +equal = { +T = -16; +equal = 0; +parenright = -65; +parenright.case = -59; +}; +eth = { +a = 9; +e = 7; +g = 8; +hyphen = 10; +parenright = -21; +}; +euro = { +parenright = -53; +parenright.case = -51; +}; +exclamdown = { +T = -23; +V = -15; +Y = -41; +}; +f = { +igrave = 39; +n = 0; +o = -4; +}; +f_f.liga = { +igrave = 39; +}; +f_f_i.liga = { +idieresis = 60; +}; +fi = { +idieresis = 60; +}; +five = { +degree = -28; +ordmasculine = -22; +percent = -16; +}; +five.dnom = { +degree = -86; +question.ss01 = -78; +quotedblleft = -62; +}; +five.numr = { +fraction = -12; +}; +fiveinferior = { +T = -50; +}; +fivesuperior = { +comma = -105; +comma.ss01 = -103; +period = -98; +period.ss01 = -103; +slash = -73; +}; +fl = { +idieresis = 57; +itilde = 50; +periodcentered.loclCAT = 13; +}; +four = { +asciicircum = -41; +bracketright = -36; +bracketright.case = -35; +degree = -45; +ordfeminine = -39; +ordmasculine = -40; +percent = -30; +x = -22; +}; +four.dnom = { +degree = -98; +question.ss01 = -77; +quotedblleft = -65; +}; +fourinferior = { +T = -52; +V = -44; +}; +foursuperior = { +comma = -105; +comma.ss01 = -103; +period = -98; +period.ss01 = -103; +slash = -72; +}; +fraction = { +eight.dnom = -10; +four.dnom = -45; +fourinferior = -50; +seveninferior = 0; +two.dnom = -9; +zero.dnom = -16; +}; +g = { +bracketright = -14; +j = 10; +j.ss01 = 10; +parenright = -32; +slash = 0; +}; +g.ss06 = { +g.ss06 = 4; +}; +gcaron.ss06 = { +gcaron.ss06 = 4; +}; +gdotaccent = { +j = 10; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 4; +}; +germandbls = { +e = 4; +hyphen = 8; +parenright = -59; +}; +greater = { +T = -53; +parenright = -73; +}; +greaterequal = { +T = -25; +}; +guillemetleft = { +pi = -9; +}; +guillemetright = { +X = -57; +bracketright = -85; +}; +guilsinglright = { +X = -57; +}; +h = { +asterisk = -49; +}; +hyphen = { +Lslash = 8; +X = -22; +bracketright = -59; +foursuperior = -96; +pi = -2; +question = -76; +quotedblbase = -56; +quoteleft = -76; +quotesingle = -92; +x = -29; +}; +hyphen.case = { +Dcroat = 10; +X = -39; +bracketright.case = -61; +quotedblbase = -176; +quotedblbase.ss01 = -176; +quotesinglbase = -105; +}; +i = { +T = -5; +idieresis = 60; +jcircumflex = 31; +parenright = -17; +}; +i.ss01 = { +parenright = -19; +}; +iacute = { +rcaron = 30; +}; +icircumflex = { +b = 39; +h = 39; +i = 31; +icircumflex = 84; +j = 31; +k = 39; +l = 39; +l.ss03 = 42; +l.ss04 = 75; +question = 38; +quotedbl = 22; +quoteright = 28; +quotesingle = 22; +}; +idieresis = { +b = 58; +idieresis = 82; +k = 58; +l = 58; +l.ss03 = 61; +l.ss04 = 77; +}; +idotaccent = { +parenright = -17; +}; +idotaccent.ss01 = { +parenright = -19; +}; +imacron = { +b = 27; +imacron = 81; +j = 31; +k = 27; +kcommaaccent = 27; +l = 27; +l.ss04 = 67; +lcommaaccent = 27; +quotedbl = 24; +}; +infinity = { +parenright = -72; +parenright.case = -67; +}; +integral = { +a = -50; +}; +iogonek = { +j = 25; +}; +itilde = { +h = 45; +itilde = 69; +quotedbl = 17; +quotesingle = 17; +}; +j = { +j = 16; +}; +jacute = { +backslash = 62; +iogonek = 15; +}; +jcircumflex = { +i = 31; +jcircumflex = 84; +}; +k = { +oslash = -21; +}; +l = { +at = 0; +idieresis = 57; +igrave = 17; +itilde = 50; +jcircumflex = 40; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -15; +}; +l.ss04 = { +periodcentered.loclCAT = 13; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 155; +l = 166; +ncaron = 103; +scaron = 94; +twosuperior = 63; +}; +lcaron.ss03 = { +b = 143; +eightsuperior = 80; +exclam = 127; +exclam.ss01 = 133; +fivesuperior = 91; +k = 143; +ninesuperior = 95; +onesuperior = 67; +question = 86; +quotedbl = 91; +quotesingle = 91; +sevensuperior = 57; +sixsuperior = 95; +}; +lcaron.ss04 = { +exclam.ss01 = 155; +twosuperior = 63; +}; +liraTurkish = { +one = -84; +parenright = -69; +question = -85; +quotedbl = -120; +quotesingle = -92; +seven = -104; +}; +logicalnot = { +Y = -53; +parenright = -62; +seven = -60; +}; +m = { +asterisk = -62; +braceright = -51; +twosuperior = -13; +}; +minus = { +T = -59; +X = -58; +comma = -105; +one = -53; +parenright = -77; +parenright.case = -73; +period = -98; +seven = -64; +three = -96; +two = -81; +}; +mu = { +mu = 0; +parenright = -61; +quotesingle = -20; +}; +multiply = { +parenright = -81; +parenright.case = -77; +}; +n = { +asterisk = -49; +at = 2; +braceright = -51; +degree = -34; +g.ss06 = 3; +n = 0; +one = -16; +ordmasculine = -23; +}; +ncaron = { +Yacute = -29; +}; +nine = { +bracketright = -31; +degree = -10; +}; +nine.dnom = { +degree = -118; +question = -76; +question.ss01 = -81; +quotedbl = -105; +quotedblleft = -102; +quotedblleft.ss01 = -47; +quotedblright = -66; +quotedblright.ss01 = -45; +}; +ninesuperior = { +comma = -105; +comma.ss01 = -103; +fraction = -19; +period = -98; +period.ss01 = -103; +slash = -76; +}; +notequal = { +parenright = -65; +parenright.case = -59; +}; +numbersign = { +parenright = -48; +}; +o = { +asterisk = -76; +backslash = -43; +braceright = -59; +germandbls = -9; +lslash = 7; +n = 0; +one = -23; +}; +oacute = { +lslash = 7; +}; +ocircumflexacute = { +bracketright = 57; +parenright = 63; +}; +odieresis = { +germandbls = -9; +}; +ohorn = { +i = 11; +m = 11; +n = 11; +parenright = -40; +}; +ohornacute = { +c = -2; +i = 11; +m = 11; +n = 11; +p = 11; +t = 17; +t_i.liga = 17; +t_t.liga = 17; +}; +ohorndotbelow = { +c = -2; +i = 11; +n = 11; +p = 11; +t = 17; +t_i.liga = 17; +t_t.liga = 17; +u = 14; +}; +ohorngrave = { +i = 11; +n = 11; +parenright = -32; +}; +ohornhookabove = { +i = 11; +n = 11; +}; +ohorntilde = { +i = 11; +n = 11; +}; +ohungarumlaut = { +parenright = 15; +}; +one = { +comma.ss01 = -4; +degree = -11; +equal = 0; +four = 0; +icircumflex = 47; +nine = 0; +one = 0; +parenright = 0; +percent = 0; +period.ss01 = -4; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -81; +one.dnom = 0; +question.ss01 = -82; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -105; +comma.ss01 = -103; +period = -98; +period.ss01 = -103; +slash = -66; +}; +ordfeminine = { +comma = -105; +comma.ss01 = -103; +period = -98; +period.ss01 = -103; +}; +ordmasculine = { +comma = -105; +comma.ss01 = -103; +hyphen = -55; +parenright = -47; +period = -98; +period.ss01 = -103; +slash = -85; +}; +oslash = { +d = 7; +e = 7; +g = 7; +hyphen = 10; +parenright = -64; +y = -19; +}; +p = { +asterisk = -56; +backslash = -39; +braceright = -52; +lslash = 7; +one = -18; +}; +parenleft = { +Dcroat = -14; +H = 0; +Icircumflex = 57; +Oslash = -27; +ampersand = -58; +approxequal = -75; +asciicircum = -74; +asciitilde = -85; +at = -65; +cent = -61; +copyright = -80; +degree = -54; +divide = -77; +dollar = -48; +equal = -65; +euro = -59; +greaterequal = -31; +i = -17; +idotaccent = -17; +infinity = -72; +iogonek = -2; +jcircumflex = 35; +less = -73; +literSign = -56; +logicalnot = -62; +minus = -77; +mu = -16; +multiply = -83; +notequal = -65; +numbersign = -48; +oslash = -63; +p = -7; +parenleft = -63; +pi = -65; +plus = -77; +plusminus = -59; +published = -80; +question = -43; +quotedblbase = 0; +quoteleft = -57; +radical = -63; +scaron = -30; +section = -56; +sterling = -37; +x = -49; +}; +parenleft.case = { +Icircumflex = 57; +approxequal = -67; +asciicircum = -72; +asciitilde = -79; +dollar = -46; +equal = -58; +euro = -56; +minus = -73; +numbersign = -46; +parenleft.case = -56; +plus = -73; +question = -42; +quotedblbase = -29; +quoteleft = -55; +}; +parenright = { +bracketright = -22; +comma = -9; +comma.ss01 = -10; +hyphen = 8; +parenleft = 8; +parenright = -63; +period = -9; +period.ss01 = -12; +quotedbl = -20; +}; +parenright.case = { +comma = -21; +comma.ss01 = -21; +parenright.case = -56; +period = -20; +period.ss01 = -21; +}; +percent = { +asterisk = -113; +bracketright = -71; +comma.ss01 = -3; +eightsuperior = -77; +fivesuperior = -81; +foursuperior = -113; +ninesuperior = -81; +onesuperior = -88; +parenright = -65; +parenright.case = -41; +period = 0; +period.ss01 = 0; +question = -71; +question.ss01 = -81; +quotedbl = -99; +quotedblleft = -110; +quotedblright = -91; +quoteleft = -103; +quoteright = -81; +quotesingle = -92; +sevensuperior = -91; +sixsuperior = -85; +threesuperior = -75; +twosuperior = -34; +}; +period = { +bracketright = -40; +eightsuperior = -98; +fivesuperior = -98; +foursuperior = -98; +ninesuperior = -98; +onesuperior = -98; +ordfeminine = -98; +ordmasculine = -98; +parenleft.case = -20; +question = -64; +quoteleft = -98; +quotesingle = -92; +sevensuperior = -98; +sixsuperior = -98; +threesuperior = -98; +twosuperior = -98; +}; +period.ss01 = { +bracketright = -74; +eightsuperior = -103; +fivesuperior = -103; +foursuperior = -103; +ninesuperior = -103; +onesuperior = -103; +ordfeminine = -103; +ordmasculine = -103; +question.ss01 = -85; +sevensuperior = -103; +sixsuperior = -103; +threesuperior = -103; +twosuperior = -103; +}; +periodcentered.loclCAT = { +l = 13; +l.ss03 = 16; +}; +perthousand = { +asterisk = -130; +parenright = -65; +parenright.case = -41; +question = -74; +question.ss01 = -81; +quotedblleft = -140; +quotedblleft.ss01 = -82; +quotedblright = -138; +quotedblright.ss01 = -92; +quoteleft = -105; +quoteright = -99; +}; +pi = { +hyphen = -5; +parenright = -56; +period = 0; +pi = 0; +quotesingle = -14; +}; +plus = { +J = -43; +T = -59; +V = -28; +X = -58; +Y = -68; +braceright = -71; +bracketright = -80; +comma = -105; +comma.ss01 = -103; +one = -48; +parenright = -77; +parenright.case = -73; +period = -98; +period.ss01 = -103; +quotedbl = -46; +seven = -57; +slash = -54; +three = -80; +two = -77; +}; +published = { +parenright = -77; +}; +q = { +bracketright = -7; +j = 20; +parenright = -7; +}; +question = { +A = -44; +J = -33; +comma = -71; +hyphen = -39; +parenright = -47; +parenright.case = -43; +period = -70; +question = 3; +questiondown = -80; +slash = -80; +}; +question.ss01 = { +comma.ss01 = -84; +parenright = -48; +parenright.case = -44; +period.ss01 = -85; +questiondown.ss01 = -80; +}; +questiondown.case = { +T = -53; +V = -42; +Y = -77; +quotedbl = -80; +quotedblleft = -92; +quotedblleft.ss01 = -79; +quoteright = -80; +}; +questiondown.ss01 = { +C = -51; +Q = -53; +Q.ss09 = -53; +T = -60; +V = -68; +Y = -100; +four = -89; +quotedbl = -100; +quotedblleft.ss01 = -85; +quotesingle = -92; +}; +quotedbl = { +ellipsis.ss01 = -194; +exclamdown = -23; +g.ss06 = -36; +icircumflex = 22; +mu = -20; +questiondown = -100; +questiondown.case = -82; +questiondown.ss01 = -100; +underscore = -194; +}; +quotedblbase = { +copyright = -76; +divide = -126; +equal = -100; +euro = -51; +minus = -217; +p = -3; +plus = -135; +question = -68; +quotedblright = -217; +quoteleft = -105; +}; +quotedblbase.ss01 = { +divide = -119; +minus = -218; +plus = -122; +question.ss01 = -85; +quotedblright.ss01 = -218; +}; +quotedblleft = { +g.ss06 = -18; +mu = -10; +questiondown = -84; +questiondown.case = -83; +quotedblbase = -217; +underscore = -201; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -218; +questiondown.ss01 = -84; +quotedblbase.ss01 = -218; +underscore = -201; +}; +quotedblright = { +asciitilde = -100; +questiondown = -106; +questiondown.case = -85; +quotesinglbase = -105; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -218; +questiondown.case = -76; +questiondown.ss01 = -90; +}; +quoteleft = { +questiondown = -84; +questiondown.case = -83; +quotedblbase = -105; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -103; +}; +quoteright = { +icircumflex = 15; +questiondown = -105; +quotedblbase = -105; +}; +quoteright.ss01 = { +questiondown.ss01 = -90; +quotedblbase.ss01 = -103; +}; +quotesinglbase = { +T = -56; +V = -58; +Y = -93; +minus = -105; +plus = -105; +question = -68; +quotedblleft = -105; +quoteleft = -105; +}; +quotesinglbase.ss01 = { +T = -61; +V = -53; +Y = -98; +question.ss01 = -85; +}; +quotesingle = { +Hbar = 30; +g.ss06 = -36; +icircumflex = 22; +igrave = 15; +imacron = 25; +itilde = 22; +l.ss04 = 23; +questiondown = -92; +questiondown.case = -82; +underscore = -92; +}; +r = { +braceright = -51; +fourinferior = -63; +g.ss06 = -4; +parenright = -67; +}; +radical = { +A = -58; +}; +rcaron = { +sevensuperior = 0; +}; +registered = { +comma = -105; +comma.ss01 = -103; +parenright = -66; +parenright.case = -65; +period = -98; +period.ss01 = -103; +slash = -68; +}; +s = { +asterisk = -58; +braceright = -52; +l = 0; +}; +scaron = { +T = -14; +}; +semicolon = { +hyphen = -35; +}; +seven = { +minus = -47; +percent = 7; +plus = -47; +underscore = -72; +}; +seven.dnom = { +question.ss01 = -91; +}; +seven.numr = { +fraction = -29; +}; +seveninferior = { +parenright = -74; +}; +sevensuperior = { +A = -61; +comma = -105; +comma.ss01 = -103; +fraction = -35; +period = -98; +period.ss01 = -103; +slash = -103; +}; +six = { +bracketright = -25; +degree = -11; +}; +six.dnom = { +degree = -114; +question.ss01 = -80; +quotedbl = -103; +quotedblleft = -96; +quotedblleft.ss01 = -42; +quotedblright = -66; +}; +sixinferior = { +T = -51; +}; +sixsuperior = { +comma = -105; +comma.ss01 = -103; +period = -98; +period.ss01 = -103; +slash = -73; +}; +slash = { +fourinferior = -83; +g.ss06 = -38; +ibreve = 56; +l.ss04 = 30; +mu = -26; +quotedblbase = -95; +quotedblbase.ss01 = -92; +quotesinglbase = -95; +underscore = -102; +}; +sterling = { +two = 4; +}; +t_i.liga = { +idieresis = 60; +}; +tcaron = { +b = 131; +exclam = 121; +h = 131; +hyphen = -16; +i = 121; +j = 121; +k = 131; +parenright = 72; +quotedbl = 83; +quotedblleft = 64; +quotesingle = 83; +}; +tcedilla = { +parenright = 16; +}; +tenge = { +comma = -58; +comma.ss01 = -66; +period = -58; +period.ss01 = -67; +slash = -59; +}; +three = { +bracketright = -22; +}; +three.dnom = { +degree = -113; +question.ss01 = -79; +quotedbl = -101; +quotedblleft = -95; +quotedblright = -64; +}; +three.numr = { +fraction = -12; +}; +threeinferior = { +T = -49; +V = -35; +Y = -84; +}; +threesuperior = { +comma = -105; +comma.ss01 = -103; +fraction = -12; +parenright = -31; +period = -98; +period.ss01 = -103; +slash = -73; +}; +trademark = { +comma = -105; +comma.ss01 = -103; +hyphen = -125; +period = -98; +period.ss01 = -103; +slash = -91; +}; +two = { +percent = 7; +}; +two.dnom = { +degree = -111; +question.ss01 = -80; +quotedbl = -97; +quotedblleft = -91; +quotedblright = -63; +}; +twoinferior = { +T = -54; +V = -35; +Y = -82; +}; +twosuperior = { +comma = -105; +comma.ss01 = -103; +parenright = -29; +parenright.case = -29; +period = -98; +period.ss01 = -103; +slash = -59; +}; +uhorn = { +a = -21; +ohorn = -27; +ohornacute = -27; +ohorndotbelow = -27; +ohorndotbelow.ss01 = -27; +ohorngrave = -27; +ohornhookabove = -27; +ohorntilde = -25; +}; +uhornacute = { +a = -21; +c = -27; +}; +uhorndotbelow = { +a = -21; +c = -27; +comma = -30; +period = -30; +}; +uhorngrave = { +a = -21; +a.ss05 = -27; +}; +uhornhookabove = { +a = -21; +comma = -30; +comma.ss01 = -37; +period = -30; +period.ss01 = -39; +}; +uhorntilde = { +a = -21; +comma = -30; +period = -30; +}; +uhungarumlaut = { +parenright = 3; +}; +underscore = { +C = -46; +O = -48; +T = -42; +V = -51; +W = -42; +Y = -78; +asterisk = -130; +four = -145; +one = -76; +quotedbl = -194; +quotedblright = -201; +quotedblright.ss01 = -201; +quotesingle = -92; +seven = -82; +six = -48; +v = -51; +}; +uogonek = { +j = 25; +parenright = -5; +}; +v = { +braceright = -58; +n = 0; +}; +w = { +braceright = -55; +}; +x = { +four = -27; +}; +y = { +braceright = -42; +}; +ydotbelow = { +period = -22; +}; +zero = { +braceright = -29; +bracketright = -33; +bracketright.case = -29; +degree = -12; +percent = 0; +}; +zero.dnom = { +degree = -118; +question = -75; +question.ss01 = -81; +quotedbl = -105; +quotedblleft = -102; +quotedblleft.ss01 = -47; +quotedblright = -67; +quotedblright.ss01 = -46; +quoteleft = -102; +}; +zeroinferior = { +parenright = -63; +}; +zerosuperior = { +comma = -105; +comma.ss01 = -103; +fraction = -19; +period = -98; +period.ss01 = -103; +slash = -76; +}; +}; +m019 = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 34; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 35; +"@MMK_R_KO_J" = 31; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -130; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -122; +"@MMK_R_KO_W" = -76; +"@MMK_R_KO_X" = 42; +"@MMK_R_KO_Y" = -113; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -143; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 33; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -80; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_fivesuperior" = -94; +"@MMK_R_KO_foursuperior" = -73; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 6; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_ninesuperior" = -97; +"@MMK_R_KO_onesuperior" = -109; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -98; +"@MMK_R_KO_question.ss01" = -99; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft" = -127; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteleft" = -104; +"@MMK_R_KO_quoteright" = -104; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -115; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -83; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = -74; +"@MMK_R_KO_trademark" = -153; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -42; +"@MMK_R_KO_w" = -25; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 14; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -13; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 26; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 18; +"@MMK_R_KO_a.ss05" = 21; +"@MMK_R_KO_asciicircum" = -56; +"@MMK_R_KO_bracketright" = -42; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -42; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 19; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = 9; +"@MMK_R_KO_hyphen" = 34; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_icircumflex" = 40; +"@MMK_R_KO_imacron" = 43; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_l.ss04" = 21; +"@MMK_R_KO_n" = 13; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -8; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -43; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_underscore" = -12; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -27; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = -29; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_X" = -32; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = -27; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -53; +"@MMK_R_KO_bracketright" = -80; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -37; +"@MMK_R_KO_comma.ss01" = -64; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = -86; +"@MMK_R_KO_exclam" = -25; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -28; +"@MMK_R_KO_guillemetleft" = -43; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_hyphen.case" = -36; +"@MMK_R_KO_i" = -14; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -43; +"@MMK_R_KO_parenright" = -72; +"@MMK_R_KO_parenright.case" = -54; +"@MMK_R_KO_period" = -39; +"@MMK_R_KO_period.ss01" = -70; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = -25; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = -31; +"@MMK_R_KO_sevensuperior" = -40; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = -29; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -35; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_underscore" = -45; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = -19; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 31; +"@MMK_R_KO_I.ss02" = -28; +"@MMK_R_KO_J" = -38; +"@MMK_R_KO_O" = 30; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = 49; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -23; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -21; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 27; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -48; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -34; +"@MMK_R_KO_comma.ss01" = -66; +"@MMK_R_KO_e" = 31; +"@MMK_R_KO_egrave" = 31; +"@MMK_R_KO_eightsuperior" = 22; +"@MMK_R_KO_ellipsis" = -94; +"@MMK_R_KO_exclam" = 24; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = 3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 26; +"@MMK_R_KO_guillemetleft" = 30; +"@MMK_R_KO_guillemetright" = 16; +"@MMK_R_KO_hyphen" = 37; +"@MMK_R_KO_hyphen.case" = 48; +"@MMK_R_KO_i" = 28; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 45; +"@MMK_R_KO_j" = 27; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = 27; +"@MMK_R_KO_ninesuperior" = 7; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period" = -34; +"@MMK_R_KO_period.ss01" = -76; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 23; +"@MMK_R_KO_sevensuperior" = -12; +"@MMK_R_KO_six" = 41; +"@MMK_R_KO_sixsuperior" = 22; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 31; +"@MMK_R_KO_underscore" = -43; +"@MMK_R_KO_v" = 31; +"@MMK_R_KO_w" = 39; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 28; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 29; +"@MMK_R_KO_I.ss02" = -31; +"@MMK_R_KO_J" = -38; +"@MMK_R_KO_O" = 28; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_U" = 47; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -25; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = -23; +"@MMK_R_KO_a" = 26; +"@MMK_R_KO_a.ss05" = 24; +"@MMK_R_KO_bracketright" = -48; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -34; +"@MMK_R_KO_comma.ss01" = -67; +"@MMK_R_KO_e" = 29; +"@MMK_R_KO_egrave" = 29; +"@MMK_R_KO_eightsuperior" = 20; +"@MMK_R_KO_ellipsis" = -94; +"@MMK_R_KO_exclam" = 22; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = 28; +"@MMK_R_KO_hyphen" = 37; +"@MMK_R_KO_hyphen.case" = 48; +"@MMK_R_KO_i" = 26; +"@MMK_R_KO_j" = 25; +"@MMK_R_KO_n" = 26; +"@MMK_R_KO_ninesuperior" = 5; +"@MMK_R_KO_onesuperior" = -9; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period" = -34; +"@MMK_R_KO_period.ss01" = -76; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_sevensuperior" = -13; +"@MMK_R_KO_sixsuperior" = 19; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 29; +"@MMK_R_KO_y" = 26; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 24; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 40; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = 40; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = 41; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = -66; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_egrave" = -36; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -44; +"@MMK_R_KO_g" = -25; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 5; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = -34; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -36; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -35; +"@MMK_R_KO_underscore" = 17; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -31; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -82; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 37; +"@MMK_R_KO_J" = -109; +"@MMK_R_KO_O" = -30; +"@MMK_R_KO_S" = -30; +"@MMK_R_KO_T" = 44; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 28; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asciicircum" = -68; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -77; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_egrave" = -47; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -283; +"@MMK_R_KO_exclam" = -7; +"@MMK_R_KO_f" = -57; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -45; +"@MMK_R_KO_g" = -49; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = -70; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -17; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = -53; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -31; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -31; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -41; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_sixsuperior" = -24; +"@MMK_R_KO_slash" = -113; +"@MMK_R_KO_t" = -56; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -49; +"@MMK_R_KO_underscore" = -223; +"@MMK_R_KO_v" = -45; +"@MMK_R_KO_w" = -42; +"@MMK_R_KO_x" = -75; +"@MMK_R_KO_y" = -49; +"@MMK_R_KO_z" = -84; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -35; +"@MMK_R_KO_J" = -41; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_X" = -38; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = -29; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -70; +"@MMK_R_KO_bracketright" = -80; +"@MMK_R_KO_colon" = -34; +"@MMK_R_KO_comma" = -45; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = -96; +"@MMK_R_KO_exclam" = -11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 18; +"@MMK_R_KO_imacron" = 18; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -57; +"@MMK_R_KO_period" = -45; +"@MMK_R_KO_period.ss01" = -80; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -28; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -38; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -34; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -32; +"@MMK_R_KO_trademark" = -78; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -55; +"@MMK_R_KO_v" = -5; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -30; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -43; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -75; +"@MMK_R_KO_bracketright" = -43; +"@MMK_R_KO_colon" = -17; +"@MMK_R_KO_comma" = 13; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -30; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_exclam" = -8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -40; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 13; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -39; +"@MMK_R_KO_quoteright" = -40; +"@MMK_R_KO_quoteright.ss01" = -38; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -40; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -38; +"@MMK_R_KO_trademark" = -81; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = -12; +"@MMK_R_KO_colon" = -13; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 47; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 1; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -26; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = 41; +"@MMK_R_KO_O" = -53; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 41; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 26; +"@MMK_R_KO_X" = 42; +"@MMK_R_KO_Y" = 39; +"@MMK_R_KO_Z" = 42; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -84; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -54; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -66; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 7; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -22; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -12; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_underscore" = 18; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -43; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -54; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 22; +"@MMK_R_KO_V" = 17; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 14; +"@MMK_R_KO_a.ss05" = 21; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = 14; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = 8; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 16; +"@MMK_R_KO_icircumflex" = 41; +"@MMK_R_KO_imacron" = 49; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 15; +"@MMK_R_KO_parenright.case" = 18; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -43; +"@MMK_R_KO_question" = 7; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_sixsuperior" = 16; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -13; +"@MMK_R_KO_v" = 16; +"@MMK_R_KO_w" = 19; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 38; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = 35; +"@MMK_R_KO_O" = -50; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 19; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 31; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_X" = 48; +"@MMK_R_KO_Y" = 44; +"@MMK_R_KO_Z" = 45; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -100; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 22; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_egrave" = -23; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -53; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_hyphen.case" = -87; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 37; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_l.ss04" = 38; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -22; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = -24; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_underscore" = 17; +"@MMK_R_KO_v" = -53; +"@MMK_R_KO_w" = -45; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 52; +"@MMK_R_KO_I.ss02" = 68; +"@MMK_R_KO_J" = 68; +"@MMK_R_KO_O" = -57; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = -132; +"@MMK_R_KO_U" = -41; +"@MMK_R_KO_V" = -120; +"@MMK_R_KO_W" = -83; +"@MMK_R_KO_X" = 55; +"@MMK_R_KO_Y" = -126; +"@MMK_R_KO_Z" = 68; +"@MMK_R_KO_a" = -42; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -288; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 32; +"@MMK_R_KO_comma" = 27; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eightsuperior" = -203; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_fivesuperior" = -200; +"@MMK_R_KO_foursuperior" = -194; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -86; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -175; +"@MMK_R_KO_hyphen.case" = -188; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -207; +"@MMK_R_KO_onesuperior" = -123; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 33; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -77; +"@MMK_R_KO_question.ss01" = -104; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft" = -168; +"@MMK_R_KO_quotedblleft.ss01" = -150; +"@MMK_R_KO_quoteleft" = -104; +"@MMK_R_KO_quoteright" = -168; +"@MMK_R_KO_quoteright.ss01" = -150; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = -173; +"@MMK_R_KO_six" = -38; +"@MMK_R_KO_sixsuperior" = -207; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -50; +"@MMK_R_KO_threesuperior" = -195; +"@MMK_R_KO_trademark" = -259; +"@MMK_R_KO_u" = -35; +"@MMK_R_KO_underscore" = 45; +"@MMK_R_KO_v" = -85; +"@MMK_R_KO_w" = -60; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = -91; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 90; +"@MMK_R_KO_H" = 38; +"@MMK_R_KO_I.ss02" = 106; +"@MMK_R_KO_J" = 106; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -104; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -91; +"@MMK_R_KO_W" = -56; +"@MMK_R_KO_X" = 93; +"@MMK_R_KO_Y" = -94; +"@MMK_R_KO_Z" = 106; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = 70; +"@MMK_R_KO_comma" = 65; +"@MMK_R_KO_comma.ss01" = 21; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -122; +"@MMK_R_KO_ellipsis" = 18; +"@MMK_R_KO_exclam" = 42; +"@MMK_R_KO_fivesuperior" = -127; +"@MMK_R_KO_foursuperior" = -125; +"@MMK_R_KO_guillemetleft" = -59; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -88; +"@MMK_R_KO_hyphen.case" = -73; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -129; +"@MMK_R_KO_onesuperior" = -123; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 71; +"@MMK_R_KO_period.ss01" = 21; +"@MMK_R_KO_question" = -50; +"@MMK_R_KO_question.ss01" = -78; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft" = -168; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteleft" = -104; +"@MMK_R_KO_quoteright" = -104; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -160; +"@MMK_R_KO_sixsuperior" = -132; +"@MMK_R_KO_slash" = 29; +"@MMK_R_KO_threesuperior" = -113; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_y" = -65; +"@MMK_R_KO_z" = 48; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -55; +"@MMK_R_KO_J" = -53; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = -59; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -52; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = -45; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -60; +"@MMK_R_KO_bracketright" = -69; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -56; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -111; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 17; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -77; +"@MMK_R_KO_parenright.case" = -74; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -38; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -77; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -61; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = -55; +"@MMK_R_KO_J" = -53; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = -59; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -52; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = -45; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -69; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -56; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -111; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -77; +"@MMK_R_KO_parenright.case" = -74; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -38; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -77; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -61; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_X" = -34; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -54; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_ellipsis" = -111; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -64; +"@MMK_R_KO_H" = 16; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -103; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 27; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 34; +"@MMK_R_KO_V" = 30; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = 9; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 39; +"@MMK_R_KO_ellipsis" = -283; +"@MMK_R_KO_exclam" = 20; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = 13; +"@MMK_R_KO_foursuperior" = 22; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 27; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 52; +"@MMK_R_KO_j" = 12; +"@MMK_R_KO_l.ss04" = 35; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 22; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 33; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quotedblleft.ss01" = 25; +"@MMK_R_KO_quoteleft" = 8; +"@MMK_R_KO_quoteright" = 11; +"@MMK_R_KO_quoteright.ss01" = 28; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 29; +"@MMK_R_KO_sixsuperior" = 46; +"@MMK_R_KO_slash" = -63; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_threesuperior" = 9; +"@MMK_R_KO_trademark" = -10; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -223; +"@MMK_R_KO_v" = 29; +"@MMK_R_KO_w" = 36; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 22; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 27; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = -65; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_X" = 30; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -69; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 8; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -43; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteleft" = -41; +"@MMK_R_KO_quoteright" = -45; +"@MMK_R_KO_quoteright.ss01" = -31; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -89; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 22; +"@MMK_R_KO_H" = 18; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 14; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 31; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = 17; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 27; +"@MMK_R_KO_asciicircum" = -34; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = 17; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = 7; +"@MMK_R_KO_foursuperior" = 8; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 10; +"@MMK_R_KO_hyphen" = 16; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 16; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 54; +"@MMK_R_KO_j" = 15; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_n" = 16; +"@MMK_R_KO_ninesuperior" = 5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = 25; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 16; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_sixsuperior" = 19; +"@MMK_R_KO_slash" = 21; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = 8; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 28; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 24; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -31; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asciicircum" = -72; +"@MMK_R_KO_bracketright" = -45; +"@MMK_R_KO_colon" = -27; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -41; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 28; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 12; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 33; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -31; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = -31; +"@MMK_R_KO_quoteright" = -34; +"@MMK_R_KO_quoteright.ss01" = -30; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_trademark" = -58; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -8; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -31; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_bracketright" = -45; +"@MMK_R_KO_colon" = -27; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -41; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 28; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 33; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -31; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = -31; +"@MMK_R_KO_quoteright" = -34; +"@MMK_R_KO_quoteright.ss01" = -30; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -131; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 40; +"@MMK_R_KO_J" = -107; +"@MMK_R_KO_O" = -58; +"@MMK_R_KO_S" = -25; +"@MMK_R_KO_T" = 47; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 31; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 40; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = -128; +"@MMK_R_KO_a.ss05" = -66; +"@MMK_R_KO_asciicircum" = -78; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -99; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -128; +"@MMK_R_KO_egrave" = -79; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -180; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = -53; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -69; +"@MMK_R_KO_g" = -129; +"@MMK_R_KO_guillemetleft" = -127; +"@MMK_R_KO_guillemetright" = -125; +"@MMK_R_KO_hyphen" = -139; +"@MMK_R_KO_hyphen.case" = -139; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -21; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = -120; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 1; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -140; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -39; +"@MMK_R_KO_sixsuperior" = -30; +"@MMK_R_KO_slash" = -129; +"@MMK_R_KO_t" = -74; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = -120; +"@MMK_R_KO_underscore" = -148; +"@MMK_R_KO_v" = -120; +"@MMK_R_KO_w" = -120; +"@MMK_R_KO_x" = -126; +"@MMK_R_KO_y" = -124; +"@MMK_R_KO_z" = -144; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -45; +"@MMK_R_KO_bracketright" = -38; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -35; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 15; +"@MMK_R_KO_ellipsis" = -85; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 10; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_i" = 18; +"@MMK_R_KO_imacron" = 47; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 14; +"@MMK_R_KO_period" = -38; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_sixsuperior" = 17; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -38; +"@MMK_R_KO_v" = 17; +"@MMK_R_KO_w" = 19; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -35; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 15; +"@MMK_R_KO_ellipsis" = -85; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 10; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_i" = 18; +"@MMK_R_KO_j" = 8; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 14; +"@MMK_R_KO_period" = -38; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = 17; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 17; +"@MMK_R_KO_w" = 19; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 15; +"@MMK_R_KO_I.ss02" = 45; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_T" = 17; +"@MMK_R_KO_U" = 29; +"@MMK_R_KO_V" = 48; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = 56; +"@MMK_R_KO_Z" = 37; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_bracketright" = 41; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -35; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_eightsuperior" = 30; +"@MMK_R_KO_ellipsis" = -85; +"@MMK_R_KO_exclam" = 31; +"@MMK_R_KO_fivesuperior" = 30; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 24; +"@MMK_R_KO_onesuperior" = 4; +"@MMK_R_KO_parenright" = 57; +"@MMK_R_KO_parenright.case" = 61; +"@MMK_R_KO_period" = -38; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 17; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 27; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_quoteright.ss01" = 32; +"@MMK_R_KO_sevensuperior" = 42; +"@MMK_R_KO_sixsuperior" = 25; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_threesuperior" = 39; +"@MMK_R_KO_u" = 4; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -117; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 35; +"@MMK_R_KO_J" = -110; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 30; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 27; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 47; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = -34; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -51; +"@MMK_R_KO_egrave" = -45; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -164; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 5; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = -49; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_hyphen.case" = -32; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 41; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 36; +"@MMK_R_KO_n" = -31; +"@MMK_R_KO_ninesuperior" = 9; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 28; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 20; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 27; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_sixsuperior" = 10; +"@MMK_R_KO_slash" = -101; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_underscore" = -132; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = -21; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = -45; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -76; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = -96; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 34; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asciicircum" = -67; +"@MMK_R_KO_bracketright" = -24; +"@MMK_R_KO_colon" = -31; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -36; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -132; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -37; +"@MMK_R_KO_guillemetleft" = -40; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -39; +"@MMK_R_KO_hyphen.case" = -22; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 23; +"@MMK_R_KO_imacron" = 37; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 31; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -94; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 7; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 28; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 6; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 32; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = 9; +"@MMK_R_KO_slash" = -65; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_underscore" = -90; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 41; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 37; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 51; +"@MMK_R_KO_Y" = 14; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -123; +"@MMK_R_KO_bracketright" = -14; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 27; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_fivesuperior" = -33; +"@MMK_R_KO_foursuperior" = -65; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -40; +"@MMK_R_KO_hyphen.case" = -84; +"@MMK_R_KO_i" = 13; +"@MMK_R_KO_icircumflex" = 17; +"@MMK_R_KO_imacron" = 35; +"@MMK_R_KO_j" = 13; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -22; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -34; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -28; +"@MMK_R_KO_quoteright" = -34; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = -5; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_sixsuperior" = -23; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_threesuperior" = -32; +"@MMK_R_KO_trademark" = -28; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_underscore" = 20; +"@MMK_R_KO_v" = -52; +"@MMK_R_KO_w" = -42; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -114; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = -106; +"@MMK_R_KO_O" = -53; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = 40; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 48; +"@MMK_R_KO_W" = 33; +"@MMK_R_KO_X" = 15; +"@MMK_R_KO_Y" = 61; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = -108; +"@MMK_R_KO_a.ss05" = -55; +"@MMK_R_KO_asciicircum" = -79; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -57; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -109; +"@MMK_R_KO_egrave" = -67; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -174; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_fivesuperior" = 5; +"@MMK_R_KO_foursuperior" = -28; +"@MMK_R_KO_g" = -108; +"@MMK_R_KO_guillemetleft" = -118; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -120; +"@MMK_R_KO_hyphen.case" = -70; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 38; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = -64; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 9; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 2; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 21; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = -97; +"@MMK_R_KO_sevensuperior" = 6; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = 10; +"@MMK_R_KO_slash" = -114; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -54; +"@MMK_R_KO_underscore" = -139; +"@MMK_R_KO_v" = -49; +"@MMK_R_KO_w" = -49; +"@MMK_R_KO_x" = -54; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = -48; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 45; +"@MMK_R_KO_J" = 45; +"@MMK_R_KO_O" = -46; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 22; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_X" = 48; +"@MMK_R_KO_Y" = 30; +"@MMK_R_KO_Z" = 45; +"@MMK_R_KO_a" = -43; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -95; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -39; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -145; +"@MMK_R_KO_hyphen.case" = -83; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 40; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = 7; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -35; +"@MMK_R_KO_underscore" = 22; +"@MMK_R_KO_v" = -49; +"@MMK_R_KO_w" = -50; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -51; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -17; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -120; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -68; +"@MMK_R_KO_bracketright" = -69; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = -5; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -52; +"@MMK_R_KO_quotedblleft" = -63; +"@MMK_R_KO_quotedblleft.ss01" = -55; +"@MMK_R_KO_quoteleft" = -63; +"@MMK_R_KO_quoteright" = -55; +"@MMK_R_KO_quoteright.ss01" = -57; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -41; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -25; +"@MMK_R_KO_trademark" = -96; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -133; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -46; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = -111; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -95; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -38; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -51; +"@MMK_R_KO_foursuperior" = -47; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -57; +"@MMK_R_KO_onesuperior" = -76; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_period" = 13; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = -44; +"@MMK_R_KO_question.ss01" = -77; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft" = -108; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteleft" = -104; +"@MMK_R_KO_quoteright" = -91; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -86; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = -46; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -40; +"@MMK_R_KO_trademark" = -124; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 17; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -72; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_X" = 11; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -51; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -40; +"@MMK_R_KO_foursuperior" = -42; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -38; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_period" = 13; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = -39; +"@MMK_R_KO_question.ss01" = -45; +"@MMK_R_KO_quotedbl" = -43; +"@MMK_R_KO_quotedblleft" = -93; +"@MMK_R_KO_quotedblleft.ss01" = -71; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -75; +"@MMK_R_KO_quoteright.ss01" = -71; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = -33; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -38; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 17; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -14; +"@MMK_R_KO_O" = -41; +"@MMK_R_KO_T" = -153; +"@MMK_R_KO_a" = -45; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_f" = -45; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_t" = -47; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -144; +"@MMK_R_KO_H" = -61; +"@MMK_R_KO_O" = -60; +"@MMK_R_KO_T" = -78; +"@MMK_R_KO_a" = -89; +"@MMK_R_KO_e" = -93; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_i" = -62; +"@MMK_R_KO_n" = -68; +"@MMK_R_KO_t" = -27; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -135; +"@MMK_R_KO_H" = -85; +"@MMK_R_KO_O" = -69; +"@MMK_R_KO_T" = -221; +"@MMK_R_KO_a" = -83; +"@MMK_R_KO_e" = -82; +"@MMK_R_KO_f" = -61; +"@MMK_R_KO_i" = -84; +"@MMK_R_KO_n" = -84; +"@MMK_R_KO_t" = -61; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -100; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -117; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 15; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -29; +"@MMK_R_KO_a" = -71; +"@MMK_R_KO_a.ss05" = -49; +"@MMK_R_KO_asterisk" = 31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -75; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -103; +"@MMK_R_KO_g" = -71; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -155; +"@MMK_R_KO_hyphen.case" = -46; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -19; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -51; +"@MMK_R_KO_seven" = 15; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -108; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -25; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -45; +"@MMK_R_KO_H" = -12; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -75; +"@MMK_R_KO_O" = -69; +"@MMK_R_KO_S" = -42; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -38; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -77; +"@MMK_R_KO_a.ss05" = -61; +"@MMK_R_KO_asterisk" = -53; +"@MMK_R_KO_colon" = -58; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = -78; +"@MMK_R_KO_egrave" = -78; +"@MMK_R_KO_eight" = -42; +"@MMK_R_KO_ellipsis" = -113; +"@MMK_R_KO_f" = -53; +"@MMK_R_KO_five" = -26; +"@MMK_R_KO_four" = -87; +"@MMK_R_KO_g" = -29; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -88; +"@MMK_R_KO_hyphen" = -76; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_n" = -57; +"@MMK_R_KO_nine" = -39; +"@MMK_R_KO_one" = -55; +"@MMK_R_KO_period" = -49; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -61; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteright" = -46; +"@MMK_R_KO_quoteright.ss01" = -31; +"@MMK_R_KO_s" = -73; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -55; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -48; +"@MMK_R_KO_three" = -46; +"@MMK_R_KO_two" = -38; +"@MMK_R_KO_u" = -81; +"@MMK_R_KO_v" = -73; +"@MMK_R_KO_w" = -74; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = -58; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = -33; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = -68; +"@MMK_R_KO_S" = -39; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = -54; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_eight" = -32; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -88; +"@MMK_R_KO_guillemetleft" = -89; +"@MMK_R_KO_guillemetright" = -49; +"@MMK_R_KO_hyphen.case" = -77; +"@MMK_R_KO_nine" = -34; +"@MMK_R_KO_one" = -55; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_quotedbl" = -35; +"@MMK_R_KO_quotedblleft" = -62; +"@MMK_R_KO_quotedblleft.ss01" = -41; +"@MMK_R_KO_quoteright" = -44; +"@MMK_R_KO_quoteright.ss01" = -32; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -56; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_three" = -40; +"@MMK_R_KO_two" = -22; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -26; +"@MMK_R_KO_J" = -24; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -155; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_W" = -40; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = -100; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = -85; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -52; +"@MMK_R_KO_exclam" = -15; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -34; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_icircumflex" = -5; +"@MMK_R_KO_imacron" = -5; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = -38; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = -9; +"@MMK_R_KO_period.ss01" = -43; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -62; +"@MMK_R_KO_quotedbl" = -69; +"@MMK_R_KO_quotedblleft" = -81; +"@MMK_R_KO_quotedblleft.ss01" = -66; +"@MMK_R_KO_quoteleft" = -77; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -71; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -27; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -97; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = -14; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -104; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -52; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -96; +"@MMK_R_KO_hyphen.case" = -104; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = -69; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 20; +"@MMK_R_KO_quotedbl" = -104; +"@MMK_R_KO_quotedblleft" = -104; +"@MMK_R_KO_quoteright" = -104; +"@MMK_R_KO_seven" = -68; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 51; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -134; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_a" = -101; +"@MMK_R_KO_e" = -106; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_i" = -29; +"@MMK_R_KO_n" = -69; +"@MMK_R_KO_t" = -28; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -19; +"@MMK_R_KO_J" = -31; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -153; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -53; +"@MMK_R_KO_W" = -40; +"@MMK_R_KO_X" = -25; +"@MMK_R_KO_Y" = -112; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -80; +"@MMK_R_KO_bracketright" = -88; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -49; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_icircumflex" = -6; +"@MMK_R_KO_imacron" = -6; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_l.ss04" = -7; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_ninesuperior" = -37; +"@MMK_R_KO_onesuperior" = -56; +"@MMK_R_KO_parenright" = -83; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -50; +"@MMK_R_KO_question" = -42; +"@MMK_R_KO_question.ss01" = -76; +"@MMK_R_KO_quotedbl" = -80; +"@MMK_R_KO_quotedblleft" = -105; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteleft" = -104; +"@MMK_R_KO_quoteright" = -86; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -66; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -28; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -113; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_underscore" = -25; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -27; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -31; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = -82; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -48; +"@MMK_R_KO_W" = -32; +"@MMK_R_KO_X" = -12; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_bracketright" = -78; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -47; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -36; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_icircumflex" = -6; +"@MMK_R_KO_imacron" = -6; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_l.ss04" = -6; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -49; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -50; +"@MMK_R_KO_question" = -38; +"@MMK_R_KO_question.ss01" = -68; +"@MMK_R_KO_quotedbl" = -65; +"@MMK_R_KO_quotedblleft" = -94; +"@MMK_R_KO_quotedblleft.ss01" = -70; +"@MMK_R_KO_quoteleft" = -91; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -75; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -58; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -28; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_underscore" = -25; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -27; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eight" = 27; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 10; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_j" = 8; +"@MMK_R_KO_n" = 8; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 13; +"@MMK_R_KO_two" = 10; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = -43; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -111; +"@MMK_R_KO_S" = -61; +"@MMK_R_KO_T" = -180; +"@MMK_R_KO_U" = -85; +"@MMK_R_KO_V" = -170; +"@MMK_R_KO_W" = -133; +"@MMK_R_KO_Y" = -173; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -72; +"@MMK_R_KO_a.ss05" = -35; +"@MMK_R_KO_asterisk" = -155; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_e" = -72; +"@MMK_R_KO_egrave" = -74; +"@MMK_R_KO_eight" = -58; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_f" = -74; +"@MMK_R_KO_five" = -57; +"@MMK_R_KO_four" = -140; +"@MMK_R_KO_g" = -63; +"@MMK_R_KO_guillemetleft" = -127; +"@MMK_R_KO_guillemetright" = -58; +"@MMK_R_KO_hyphen" = -106; +"@MMK_R_KO_hyphen.case" = -235; +"@MMK_R_KO_i" = -44; +"@MMK_R_KO_j" = -43; +"@MMK_R_KO_n" = -43; +"@MMK_R_KO_nine" = -62; +"@MMK_R_KO_one" = -115; +"@MMK_R_KO_parenright" = -90; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_quotedbl" = -162; +"@MMK_R_KO_quotedblleft" = -168; +"@MMK_R_KO_quoteright" = -168; +"@MMK_R_KO_s" = -45; +"@MMK_R_KO_seven" = -114; +"@MMK_R_KO_six" = -81; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -79; +"@MMK_R_KO_three" = -47; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = -68; +"@MMK_R_KO_v" = -122; +"@MMK_R_KO_w" = -92; +"@MMK_R_KO_y" = -133; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -32; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -101; +"@MMK_R_KO_S" = -55; +"@MMK_R_KO_T" = -176; +"@MMK_R_KO_U" = -78; +"@MMK_R_KO_V" = -164; +"@MMK_R_KO_W" = -127; +"@MMK_R_KO_Y" = -168; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -63; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_asterisk" = -155; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = -66; +"@MMK_R_KO_egrave" = -66; +"@MMK_R_KO_eight" = -52; +"@MMK_R_KO_f" = -65; +"@MMK_R_KO_five" = -51; +"@MMK_R_KO_four" = -140; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -121; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -91; +"@MMK_R_KO_hyphen.case" = -235; +"@MMK_R_KO_i" = -31; +"@MMK_R_KO_j" = -31; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = -56; +"@MMK_R_KO_one" = -110; +"@MMK_R_KO_parenright" = -83; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_quotedbl" = -162; +"@MMK_R_KO_quotedblleft.ss01" = -150; +"@MMK_R_KO_quoteright.ss01" = -150; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_seven" = -109; +"@MMK_R_KO_six" = -75; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -76; +"@MMK_R_KO_three" = -41; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_v" = -114; +"@MMK_R_KO_w" = -88; +"@MMK_R_KO_y" = -128; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -72; +"@MMK_R_KO_J" = -86; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -143; +"@MMK_R_KO_U" = 19; +"@MMK_R_KO_V" = -59; +"@MMK_R_KO_W" = -41; +"@MMK_R_KO_Y" = -123; +"@MMK_R_KO_Z" = -35; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -76; +"@MMK_R_KO_comma" = -86; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 21; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 35; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 13; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -67; +"@MMK_R_KO_parenright" = -86; +"@MMK_R_KO_period" = -83; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft" = -168; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteright" = -104; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -83; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = -29; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -14; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -52; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -45; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -63; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -85; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 6; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -38; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_n" = -1; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -46; +"@MMK_R_KO_period.ss01" = -79; +"@MMK_R_KO_question" = 10; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 2; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -7; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -43; +"@MMK_R_KO_v" = 24; +"@MMK_R_KO_w" = 22; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 24; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 27; +"@MMK_R_KO_J" = -45; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 34; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -49; +"@MMK_R_KO_comma.ss01" = -62; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -85; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -37; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -6; +"@MMK_R_KO_period" = -45; +"@MMK_R_KO_period.ss01" = -78; +"@MMK_R_KO_question" = 16; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -2; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_v" = 24; +"@MMK_R_KO_w" = 22; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 24; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -68; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -39; +"@MMK_R_KO_quoteleft" = -37; +"@MMK_R_KO_quoteright" = -39; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -6; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -45; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 26; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 29; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = 34; +"@MMK_R_KO_a.ss05" = 27; +"@MMK_R_KO_asterisk" = -18; +"@MMK_R_KO_colon" = -28; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -42; +"@MMK_R_KO_e" = 37; +"@MMK_R_KO_egrave" = 37; +"@MMK_R_KO_eight" = 40; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 18; +"@MMK_R_KO_four" = 24; +"@MMK_R_KO_g" = 32; +"@MMK_R_KO_guillemetleft" = 19; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 50; +"@MMK_R_KO_hyphen.case" = 23; +"@MMK_R_KO_i" = 29; +"@MMK_R_KO_j" = 29; +"@MMK_R_KO_n" = 25; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -45; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteright" = -31; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 23; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 16; +"@MMK_R_KO_two" = 13; +"@MMK_R_KO_u" = 22; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -38; +"@MMK_R_KO_J" = -42; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -52; +"@MMK_R_KO_W" = -56; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -53; +"@MMK_R_KO_colon" = -44; +"@MMK_R_KO_comma" = -29; +"@MMK_R_KO_comma.ss01" = -63; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 12; +"@MMK_R_KO_ellipsis" = -93; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 22; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 32; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -46; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -43; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -72; +"@MMK_R_KO_quotedbl" = -52; +"@MMK_R_KO_quotedblleft" = -71; +"@MMK_R_KO_quotedblleft.ss01" = -53; +"@MMK_R_KO_quoteright" = -68; +"@MMK_R_KO_quoteright.ss01" = -55; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -24; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 16; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = -63; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 39; +"@MMK_R_KO_comma" = 53; +"@MMK_R_KO_comma.ss01" = 19; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_icircumflex" = 10; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 11; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 19; +"@MMK_R_KO_period" = 48; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 22; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 27; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -53; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 37; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -40; +"@MMK_R_KO_J" = -42; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -126; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -47; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -17; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = -27; +"@MMK_R_KO_hyphen.case" = -6; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = -20; +"@MMK_R_KO_parenright" = -75; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -48; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -43; +"@MMK_R_KO_quoteright" = -36; +"@MMK_R_KO_quoteright.ss01" = -35; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_seven" = -5; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -56; +"@MMK_R_KO_J" = -59; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = -127; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -61; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_Y" = -118; +"@MMK_R_KO_Z" = -48; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = -16; +"@MMK_R_KO_asterisk" = -80; +"@MMK_R_KO_colon" = -48; +"@MMK_R_KO_comma" = -71; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -127; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_five" = -11; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -18; +"@MMK_R_KO_one" = -60; +"@MMK_R_KO_parenright" = -93; +"@MMK_R_KO_parenright.case" = -73; +"@MMK_R_KO_period" = -74; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft" = -113; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteright" = -99; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_seven" = -61; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_slash" = -37; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_three" = -32; +"@MMK_R_KO_two" = -37; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = -48; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -67; +"@MMK_R_KO_J" = -87; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -138; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = -56; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_Y" = -119; +"@MMK_R_KO_Z" = -32; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -155; +"@MMK_R_KO_colon" = -98; +"@MMK_R_KO_comma" = -101; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = 22; +"@MMK_R_KO_egrave" = 22; +"@MMK_R_KO_eight" = 27; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 36; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = 64; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -62; +"@MMK_R_KO_parenright" = -81; +"@MMK_R_KO_period" = -91; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = -162; +"@MMK_R_KO_quotedblleft" = -168; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteright" = -104; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -77; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_slash" = -38; +"@MMK_R_KO_t" = -26; +"@MMK_R_KO_three" = 9; +"@MMK_R_KO_two" = -16; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -55; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -33; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = -64; +"@MMK_R_KO_J" = -84; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = -135; +"@MMK_R_KO_U" = 23; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_Y" = -66; +"@MMK_R_KO_Z" = -69; +"@MMK_R_KO_asterisk" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 18; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen.case" = 67; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -60; +"@MMK_R_KO_parenright.case" = -68; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = -39; +"@MMK_R_KO_quotedblleft" = -79; +"@MMK_R_KO_quotedblleft.ss01" = -59; +"@MMK_R_KO_quoteright" = -49; +"@MMK_R_KO_quoteright.ss01" = -59; +"@MMK_R_KO_seven" = -60; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_slash" = -64; +"@MMK_R_KO_three" = -47; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -67; +"@MMK_R_KO_bracketright" = -42; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = -24; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = -5; +"@MMK_R_KO_question.ss01" = -33; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -52; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -57; +"@MMK_R_KO_quoteright" = -49; +"@MMK_R_KO_quoteright.ss01" = -38; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 22; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 36; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_X" = 39; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 43; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = 12; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 4; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 21; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 17; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 7; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = 13; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -120; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -45; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 21; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = -28; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 9; +"@MMK_R_KO_imacron" = 8; +"@MMK_R_KO_j" = 8; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 8; +"@MMK_R_KO_ninesuperior" = -41; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_period" = 16; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -31; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -33; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -66; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_trademark" = -84; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 33; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 19; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 23; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -23; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -31; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_X" = 22; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -88; +"@MMK_R_KO_bracketright" = -27; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 19; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_period" = 19; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -14; +"@MMK_R_KO_question.ss01" = -16; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -15; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -23; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 14; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = 23; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = 22; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 74; +"@MMK_R_KO_exclam" = 88; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = 84; +"@MMK_R_KO_foursuperior" = 58; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 31; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_ninesuperior" = 76; +"@MMK_R_KO_onesuperior" = 88; +"@MMK_R_KO_parenright" = 89; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 112; +"@MMK_R_KO_question.ss01" = 72; +"@MMK_R_KO_quotedbl" = 94; +"@MMK_R_KO_quotedblleft" = 75; +"@MMK_R_KO_quotedblleft.ss01" = 85; +"@MMK_R_KO_quoteleft" = 76; +"@MMK_R_KO_sevensuperior" = 106; +"@MMK_R_KO_sixsuperior" = 84; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = 77; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -33; +"@MMK_R_KO_H" = -9; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_T" = -171; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_f" = -20; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_n" = -11; +"@MMK_R_KO_t" = -20; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -15; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -140; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -56; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -108; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -87; +"@MMK_R_KO_bracketright" = -70; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -25; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -37; +"@MMK_R_KO_foursuperior" = -39; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -50; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -56; +"@MMK_R_KO_quotedbl" = -80; +"@MMK_R_KO_quotedblleft" = -105; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteleft" = -102; +"@MMK_R_KO_quoteright" = -87; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -35; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_trademark" = -118; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 3; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = -20; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -129; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -53; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = -19; +"@MMK_R_KO_Y" = -108; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -91; +"@MMK_R_KO_bracketright" = -80; +"@MMK_R_KO_colon" = -32; +"@MMK_R_KO_comma" = -35; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = -72; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = -43; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -47; +"@MMK_R_KO_parenright" = -82; +"@MMK_R_KO_period" = -35; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = -47; +"@MMK_R_KO_question.ss01" = -79; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft" = -111; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteleft" = -104; +"@MMK_R_KO_quoteright" = -97; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -67; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -34; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -120; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -30; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -22; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -83; +"@MMK_R_KO_V" = -42; +"@MMK_R_KO_W" = -31; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -78; +"@MMK_R_KO_colon" = -34; +"@MMK_R_KO_comma" = -35; +"@MMK_R_KO_comma.ss01" = -59; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 11; +"@MMK_R_KO_eightsuperior" = -30; +"@MMK_R_KO_ellipsis" = -74; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -42; +"@MMK_R_KO_foursuperior" = -44; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_i" = -1; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -48; +"@MMK_R_KO_onesuperior" = -45; +"@MMK_R_KO_parenright" = -82; +"@MMK_R_KO_period" = -35; +"@MMK_R_KO_period.ss01" = -67; +"@MMK_R_KO_question" = -48; +"@MMK_R_KO_question.ss01" = -58; +"@MMK_R_KO_quotedbl" = -77; +"@MMK_R_KO_quotedblleft" = -105; +"@MMK_R_KO_quotedblleft.ss01" = -76; +"@MMK_R_KO_quoteleft" = -101; +"@MMK_R_KO_quoteright" = -83; +"@MMK_R_KO_quoteright.ss01" = -77; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -35; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_trademark" = -111; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -35; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -30; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -52; +"@MMK_R_KO_O" = -78; +"@MMK_R_KO_S" = -40; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -83; +"@MMK_R_KO_a.ss05" = -52; +"@MMK_R_KO_asterisk" = -41; +"@MMK_R_KO_comma" = 15; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = -82; +"@MMK_R_KO_egrave" = -73; +"@MMK_R_KO_eight" = -43; +"@MMK_R_KO_ellipsis" = -90; +"@MMK_R_KO_f" = -47; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -93; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -93; +"@MMK_R_KO_guillemetright" = -75; +"@MMK_R_KO_hyphen" = -82; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = -39; +"@MMK_R_KO_one" = -37; +"@MMK_R_KO_parenright" = 10; +"@MMK_R_KO_period" = -47; +"@MMK_R_KO_period.ss01" = -81; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -54; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright" = -42; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = -71; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -57; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -47; +"@MMK_R_KO_three" = -37; +"@MMK_R_KO_two" = -27; +"@MMK_R_KO_u" = -74; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = -58; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -74; +"@MMK_R_KO_S" = -31; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = -39; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_eight" = -27; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_five" = -14; +"@MMK_R_KO_four" = -62; +"@MMK_R_KO_guillemetleft" = -69; +"@MMK_R_KO_guillemetright" = -37; +"@MMK_R_KO_hyphen.case" = -72; +"@MMK_R_KO_nine" = -30; +"@MMK_R_KO_one" = -33; +"@MMK_R_KO_parenright.case" = 13; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -54; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteright" = -41; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_seven" = 6; +"@MMK_R_KO_six" = -44; +"@MMK_R_KO_slash" = 5; +"@MMK_R_KO_three" = -23; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -99; +"@MMK_R_KO_U" = -38; +"@MMK_R_KO_V" = -99; +"@MMK_R_KO_W" = -95; +"@MMK_R_KO_Y" = -99; +"@MMK_R_KO_Z" = 54; +"@MMK_R_KO_a" = -31; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -99; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -55; +"@MMK_R_KO_g" = -22; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -91; +"@MMK_R_KO_hyphen.case" = -99; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -8; +"@MMK_R_KO_one" = -72; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -99; +"@MMK_R_KO_quotedblleft" = -99; +"@MMK_R_KO_quoteright" = -99; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -70; +"@MMK_R_KO_six" = -37; +"@MMK_R_KO_slash" = 20; +"@MMK_R_KO_t" = -41; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 44; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = -81; +"@MMK_R_KO_w" = -56; +"@MMK_R_KO_y" = -64; +"@MMK_R_KO_z" = 33; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -82; +"@MMK_R_KO_S" = -43; +"@MMK_R_KO_T" = -82; +"@MMK_R_KO_U" = -68; +"@MMK_R_KO_V" = -82; +"@MMK_R_KO_W" = -82; +"@MMK_R_KO_Y" = -82; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -63; +"@MMK_R_KO_a.ss05" = -27; +"@MMK_R_KO_asterisk" = -82; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_eight" = -41; +"@MMK_R_KO_f" = -65; +"@MMK_R_KO_five" = -40; +"@MMK_R_KO_four" = -80; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -82; +"@MMK_R_KO_guillemetright" = -47; +"@MMK_R_KO_hyphen" = -82; +"@MMK_R_KO_hyphen.case" = -80; +"@MMK_R_KO_i" = -31; +"@MMK_R_KO_j" = -31; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = -45; +"@MMK_R_KO_one" = -80; +"@MMK_R_KO_parenright" = -80; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_seven" = -80; +"@MMK_R_KO_six" = -63; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -76; +"@MMK_R_KO_three" = -32; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_v" = -82; +"@MMK_R_KO_w" = -82; +"@MMK_R_KO_y" = -82; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -20; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -97; +"@MMK_R_KO_S" = -42; +"@MMK_R_KO_T" = -158; +"@MMK_R_KO_U" = -60; +"@MMK_R_KO_V" = -148; +"@MMK_R_KO_W" = -123; +"@MMK_R_KO_Y" = -149; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -43; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_e" = -51; +"@MMK_R_KO_eight" = -33; +"@MMK_R_KO_f" = -40; +"@MMK_R_KO_five" = -39; +"@MMK_R_KO_four" = -120; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_i" = -9; +"@MMK_R_KO_j" = 32; +"@MMK_R_KO_nine" = -44; +"@MMK_R_KO_one" = -93; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft" = -142; +"@MMK_R_KO_quoteright" = -104; +"@MMK_R_KO_s" = -25; +"@MMK_R_KO_seven" = -91; +"@MMK_R_KO_six" = -55; +"@MMK_R_KO_t" = -53; +"@MMK_R_KO_three" = -29; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_v" = -97; +"@MMK_R_KO_w" = -67; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -121; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -119; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 26; +"@MMK_R_KO_Y" = 14; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = -84; +"@MMK_R_KO_a.ss05" = -55; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = -18; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -90; +"@MMK_R_KO_egrave" = -77; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -162; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -3; +"@MMK_R_KO_four" = -119; +"@MMK_R_KO_g" = -83; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = -162; +"@MMK_R_KO_hyphen.case" = -48; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_j" = -22; +"@MMK_R_KO_n" = -52; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -62; +"@MMK_R_KO_seven" = 20; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -125; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = -9; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -44; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = -35; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -40; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -86; +"@MMK_R_KO_S" = -51; +"@MMK_R_KO_T" = -168; +"@MMK_R_KO_U" = -64; +"@MMK_R_KO_V" = -159; +"@MMK_R_KO_W" = -104; +"@MMK_R_KO_Y" = -161; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -74; +"@MMK_R_KO_a.ss05" = -37; +"@MMK_R_KO_asterisk" = -104; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 17; +"@MMK_R_KO_e" = -74; +"@MMK_R_KO_egrave" = -74; +"@MMK_R_KO_eight" = -48; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_f" = -69; +"@MMK_R_KO_five" = -49; +"@MMK_R_KO_four" = -104; +"@MMK_R_KO_g" = -39; +"@MMK_R_KO_guillemetleft" = -104; +"@MMK_R_KO_guillemetright" = -56; +"@MMK_R_KO_hyphen" = -104; +"@MMK_R_KO_hyphen.case" = -104; +"@MMK_R_KO_i" = -42; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -42; +"@MMK_R_KO_nine" = -51; +"@MMK_R_KO_one" = -104; +"@MMK_R_KO_period" = 16; +"@MMK_R_KO_quotedblleft" = -168; +"@MMK_R_KO_quoteright" = -104; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = -104; +"@MMK_R_KO_six" = -63; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -81; +"@MMK_R_KO_three" = -39; +"@MMK_R_KO_two" = -9; +"@MMK_R_KO_u" = -70; +"@MMK_R_KO_v" = -104; +"@MMK_R_KO_w" = -90; +"@MMK_R_KO_y" = -61; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -24; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -78; +"@MMK_R_KO_S" = -42; +"@MMK_R_KO_T" = -150; +"@MMK_R_KO_U" = -59; +"@MMK_R_KO_V" = -150; +"@MMK_R_KO_W" = -80; +"@MMK_R_KO_Y" = -150; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -26; +"@MMK_R_KO_asterisk" = -80; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_egrave" = -59; +"@MMK_R_KO_eight" = -40; +"@MMK_R_KO_f" = -51; +"@MMK_R_KO_five" = -40; +"@MMK_R_KO_four" = -80; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -44; +"@MMK_R_KO_hyphen" = -80; +"@MMK_R_KO_hyphen.case" = -80; +"@MMK_R_KO_i" = -25; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = -45; +"@MMK_R_KO_one" = -80; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -80; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_seven" = -80; +"@MMK_R_KO_six" = -59; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -62; +"@MMK_R_KO_three" = -31; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_v" = -80; +"@MMK_R_KO_w" = -80; +"@MMK_R_KO_y" = -45; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -132; +"@MMK_R_KO_H" = -10; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -130; +"@MMK_R_KO_O" = -42; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -106; +"@MMK_R_KO_a.ss05" = -75; +"@MMK_R_KO_asterisk" = -10; +"@MMK_R_KO_colon" = -43; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_e" = -108; +"@MMK_R_KO_egrave" = -100; +"@MMK_R_KO_eight" = -20; +"@MMK_R_KO_ellipsis" = -168; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = -139; +"@MMK_R_KO_g" = -102; +"@MMK_R_KO_guillemetleft" = -120; +"@MMK_R_KO_guillemetright" = -56; +"@MMK_R_KO_hyphen" = -168; +"@MMK_R_KO_hyphen.case" = -83; +"@MMK_R_KO_i" = -10; +"@MMK_R_KO_j" = -36; +"@MMK_R_KO_n" = -67; +"@MMK_R_KO_nine" = -13; +"@MMK_R_KO_one" = -5; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_s" = -90; +"@MMK_R_KO_seven" = 37; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_slash" = -140; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_three" = -25; +"@MMK_R_KO_two" = -5; +"@MMK_R_KO_u" = -65; +"@MMK_R_KO_v" = -38; +"@MMK_R_KO_w" = -42; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -50; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -80; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -80; +"@MMK_R_KO_O" = -25; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 30; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -80; +"@MMK_R_KO_a.ss05" = -63; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -80; +"@MMK_R_KO_egrave" = -76; +"@MMK_R_KO_eight" = -11; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -80; +"@MMK_R_KO_g" = -80; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_hyphen" = -80; +"@MMK_R_KO_hyphen.case" = -80; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_n" = -57; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -71; +"@MMK_R_KO_seven" = 37; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_slash" = -80; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = -46; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = -49; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -137; +"@MMK_R_KO_H" = -9; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -130; +"@MMK_R_KO_O" = -44; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 13; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -21; +"@MMK_R_KO_a" = -120; +"@MMK_R_KO_a.ss05" = -79; +"@MMK_R_KO_asterisk" = -6; +"@MMK_R_KO_colon" = -55; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_e" = -131; +"@MMK_R_KO_egrave" = -106; +"@MMK_R_KO_eight" = -20; +"@MMK_R_KO_ellipsis" = -168; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = -150; +"@MMK_R_KO_g" = -125; +"@MMK_R_KO_guillemetleft" = -127; +"@MMK_R_KO_guillemetright" = -67; +"@MMK_R_KO_hyphen" = -168; +"@MMK_R_KO_hyphen.case" = -89; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_j" = -35; +"@MMK_R_KO_n" = -88; +"@MMK_R_KO_nine" = -9; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_s" = -104; +"@MMK_R_KO_seven" = 26; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_slash" = -151; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_three" = -13; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -81; +"@MMK_R_KO_v" = -51; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_y" = -51; +"@MMK_R_KO_z" = -52; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -104; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -104; +"@MMK_R_KO_O" = -35; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -104; +"@MMK_R_KO_a.ss05" = -62; +"@MMK_R_KO_asterisk" = -11; +"@MMK_R_KO_colon" = -50; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_e" = -104; +"@MMK_R_KO_egrave" = -99; +"@MMK_R_KO_eight" = -21; +"@MMK_R_KO_ellipsis" = -104; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = -104; +"@MMK_R_KO_g" = -103; +"@MMK_R_KO_guillemetleft" = -104; +"@MMK_R_KO_guillemetright" = -57; +"@MMK_R_KO_hyphen" = -104; +"@MMK_R_KO_hyphen.case" = -85; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -35; +"@MMK_R_KO_n" = -67; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = -5; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_s" = -80; +"@MMK_R_KO_seven" = 37; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_slash" = -104; +"@MMK_R_KO_t" = -24; +"@MMK_R_KO_three" = -24; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -65; +"@MMK_R_KO_v" = -38; +"@MMK_R_KO_w" = -43; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -51; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -104; +"@MMK_R_KO_H" = -10; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -104; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 9; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = -104; +"@MMK_R_KO_a.ss05" = -68; +"@MMK_R_KO_asterisk" = -8; +"@MMK_R_KO_colon" = -64; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_e" = -104; +"@MMK_R_KO_egrave" = -95; +"@MMK_R_KO_eight" = -22; +"@MMK_R_KO_ellipsis" = -104; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = -104; +"@MMK_R_KO_g" = -104; +"@MMK_R_KO_guillemetleft" = -104; +"@MMK_R_KO_guillemetright" = -70; +"@MMK_R_KO_hyphen" = -104; +"@MMK_R_KO_hyphen.case" = -86; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -32; +"@MMK_R_KO_n" = -91; +"@MMK_R_KO_nine" = -12; +"@MMK_R_KO_one" = -4; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = -33; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_s" = -104; +"@MMK_R_KO_seven" = 25; +"@MMK_R_KO_six" = -32; +"@MMK_R_KO_slash" = -104; +"@MMK_R_KO_t" = -40; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -86; +"@MMK_R_KO_v" = -54; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -54; +"@MMK_R_KO_z" = -70; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -80; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -80; +"@MMK_R_KO_O" = -27; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 31; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -80; +"@MMK_R_KO_a.ss05" = -58; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -80; +"@MMK_R_KO_egrave" = -74; +"@MMK_R_KO_eight" = -9; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -80; +"@MMK_R_KO_g" = -80; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -53; +"@MMK_R_KO_hyphen" = -80; +"@MMK_R_KO_hyphen.case" = -80; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -66; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -80; +"@MMK_R_KO_seven" = 29; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_slash" = -80; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 2; +"@MMK_R_KO_u" = -54; +"@MMK_R_KO_v" = -38; +"@MMK_R_KO_w" = -41; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -46; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -82; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -82; +"@MMK_R_KO_O" = -22; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 26; +"@MMK_R_KO_Y" = 14; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = -68; +"@MMK_R_KO_a.ss05" = -46; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = -18; +"@MMK_R_KO_comma" = -82; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -82; +"@MMK_R_KO_egrave" = -64; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -82; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -82; +"@MMK_R_KO_g" = -71; +"@MMK_R_KO_guillemetleft" = -82; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = -82; +"@MMK_R_KO_hyphen.case" = -48; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_n" = -49; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = -82; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -62; +"@MMK_R_KO_seven" = 20; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -82; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -4; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -50; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = -35; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -75; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -74; +"@MMK_R_KO_J" = -83; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -147; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = -60; +"@MMK_R_KO_Y" = -52; +"@MMK_R_KO_Z" = -83; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = -34; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -129; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = 6; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -77; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_period" = -94; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -28; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_sevensuperior" = -71; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -77; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -73; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -85; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -138; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -53; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = -96; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 21; +"@MMK_R_KO_asciicircum" = -68; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -41; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -46; +"@MMK_R_KO_onesuperior" = -68; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -60; +"@MMK_R_KO_quotedbl" = -65; +"@MMK_R_KO_quotedblleft" = -89; +"@MMK_R_KO_quotedblleft.ss01" = -77; +"@MMK_R_KO_quoteleft" = -90; +"@MMK_R_KO_quoteright" = -72; +"@MMK_R_KO_quoteright.ss01" = -72; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -79; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -32; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -99; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -137; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 21; +"@MMK_R_KO_bracketright" = -46; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -25; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = -24; +"@MMK_R_KO_question.ss01" = -51; +"@MMK_R_KO_quotedbl" = -59; +"@MMK_R_KO_quotedblleft" = -74; +"@MMK_R_KO_quotedblleft.ss01" = -52; +"@MMK_R_KO_quoteleft" = -67; +"@MMK_R_KO_quoteright" = -57; +"@MMK_R_KO_quoteright.ss01" = -58; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_sixsuperior" = -24; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -93; +"@MMK_R_KO_H" = 12; +"@MMK_R_KO_I.ss02" = 53; +"@MMK_R_KO_J" = -96; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 53; +"@MMK_R_KO_U" = 28; +"@MMK_R_KO_V" = 60; +"@MMK_R_KO_W" = 45; +"@MMK_R_KO_Y" = 64; +"@MMK_R_KO_Z" = 38; +"@MMK_R_KO_a" = -65; +"@MMK_R_KO_a.ss05" = -60; +"@MMK_R_KO_asterisk" = 26; +"@MMK_R_KO_colon" = -41; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -64; +"@MMK_R_KO_egrave" = -47; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_ellipsis" = -148; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = 3; +"@MMK_R_KO_four" = -106; +"@MMK_R_KO_g" = -66; +"@MMK_R_KO_guillemetleft" = -76; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -46; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -33; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = 23; +"@MMK_R_KO_parenright" = 12; +"@MMK_R_KO_parenright.case" = 12; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 40; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quotedblleft.ss01" = 46; +"@MMK_R_KO_quoteright" = 17; +"@MMK_R_KO_quoteright.ss01" = 37; +"@MMK_R_KO_s" = -61; +"@MMK_R_KO_seven" = 67; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_slash" = -85; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 2; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = -42; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 12; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -16; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 22; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 14; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = -9; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = -22; +"@MMK_R_KO_comma.ss01" = -51; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eight" = 21; +"@MMK_R_KO_ellipsis" = -68; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = 3; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 29; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 10; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -104; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -100; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 26; +"@MMK_R_KO_Y" = 16; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -56; +"@MMK_R_KO_a.ss05" = -47; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -45; +"@MMK_R_KO_comma" = -104; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -48; +"@MMK_R_KO_eight" = -9; +"@MMK_R_KO_ellipsis" = -173; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -37; +"@MMK_R_KO_hyphen" = -82; +"@MMK_R_KO_hyphen.case" = -60; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -49; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -3; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -99; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -53; +"@MMK_R_KO_seven" = 36; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_slash" = -103; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -40; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_y" = -13; +"@MMK_R_KO_z" = -42; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -85; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = -49; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -48; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -28; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_sevensuperior" = -47; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -76; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 17; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -22; +"@MMK_R_KO_U" = 22; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_Y" = -15; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eight" = 27; +"@MMK_R_KO_ellipsis" = -60; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 6; +"@MMK_R_KO_four" = 8; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 4; +"@MMK_R_KO_hyphen" = 26; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -43; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 15; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 26; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 33; +"@MMK_R_KO_J" = 32; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eight" = 3; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -48; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 22; +"@MMK_R_KO_one" = 15; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 12; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 22; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 22; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -44; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -71; +"@MMK_R_KO_J" = -76; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -123; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = -52; +"@MMK_R_KO_Y" = -49; +"@MMK_R_KO_Z" = -74; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -38; +"@MMK_R_KO_bracketright" = -70; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -94; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -128; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 27; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = 3; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_period" = -82; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -54; +"@MMK_R_KO_t" = 27; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -69; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -88; +"@MMK_R_KO_v" = 26; +"@MMK_R_KO_w" = 24; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -26; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = -43; +"@MMK_R_KO_J" = -49; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -120; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = -42; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = -39; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -58; +"@MMK_R_KO_comma.ss01" = -80; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -92; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 23; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_period" = -55; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -34; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 23; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = -56; +"@MMK_R_KO_v" = 28; +"@MMK_R_KO_w" = 35; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 22; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -126; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = -68; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -33; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -46; +"@MMK_R_KO_onesuperior" = -65; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -21; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteleft" = -49; +"@MMK_R_KO_quoteright" = -36; +"@MMK_R_KO_quoteright.ss01" = -32; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_sevensuperior" = -81; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -32; +"@MMK_R_KO_trademark" = -91; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = 19; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = -150; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -55; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -16; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -77; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -40; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_icircumflex" = -8; +"@MMK_R_KO_imacron" = -8; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = -8; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = -50; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -16; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_sevensuperior" = -66; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -78; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_underscore" = 19; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -16; +"@MMK_R_KO_bracketright" = -53; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -40; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -16; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -22; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = -26; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -41; +"@MMK_R_KO_comma.ss01" = -65; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eight" = 10; +"@MMK_R_KO_ellipsis" = -88; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 6; +"@MMK_R_KO_four" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_hyphen.case" = 19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 11; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_parenright.case" = -44; +"@MMK_R_KO_period" = -39; +"@MMK_R_KO_period.ss01" = -71; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 22; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -5; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 13; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = -3; +}; +A = { +Dcroat = -20; +Tbar = -117; +asciitilde = -54; +asterisk = -99; +backslash = -92; +g.ss06 = 23; +minus = -57; +one = -82; +ordmasculine = -99; +plus = -49; +quotedbl = -120; +registered = -78; +seven = -78; +two = 22; +twosuperior = -55; +}; +Aacute = { +Tbar = -117; +}; +Abrevedotbelow.ss01 = { +T = -130; +}; +Aogonek = { +comma = 59; +parenright = 0; +}; +Atilde = { +ordfeminine = -100; +}; +B = { +Hbar = 32; +hbar = 32; +idieresis = 33; +itilde = 43; +}; +C = { +h = -2; +l = -2; +plus = -48; +three = 0; +}; +D = { +Lslash = 11; +Oslash = 30; +braceright = -51; +bracketright.case = -47; +}; +E = { +H = 0; +idieresis = 0; +}; +Eogonek = { +comma = 60; +}; +F = { +fourinferior = -127; +i = -16; +igrave = 9; +}; +G = { +Lslash = 0; +lslash = 0; +}; +Germandbls = { +S = 13; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -11; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 21; +itilde = 38; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 42; +D = 42; +E = 42; +H = 42; +Hbar = 118; +I = 42; +L = 42; +M = 42; +O = 8; +R = 42; +S = 38; +U = 39; +W = 40; +i = 21; +}; +I = { +Hbar = 42; +I = 0; +jcircumflex = 25; +}; +Icircumflex = { +Icircumflex = 4; +l.ss04 = 19; +}; +Imacron = { +Imacron = 4; +}; +Itilde = { +itilde = 38; +}; +J = { +Hbar = 48; +itilde = 54; +}; +Jacute = { +Imacron = 6; +}; +K = { +asciitilde = -110; +four = -32; +idieresis = 46; +igrave = 47; +itilde = 45; +less = -90; +logicalnot = -155; +minus = -133; +one = 0; +oslash = 0; +plus = -108; +}; +L = { +H = 0; +Tbar = -132; +asciitilde = -227; +asterisk = -155; +backslash = -139; +equal = -190; +four = -151; +less = -191; +logicalnot = -259; +minus = -240; +one = -63; +ordfeminine = -223; +ordmasculine = -216; +oslash = 0; +plus = -154; +quotedbl = -162; +quoteleft.ss01 = -80; +quoteright = -104; +quoteright.ss01 = -80; +registered = -202; +seven = -61; +twosuperior = -183; +}; +Lcaron = { +A = 52; +O = -46; +U = -22; +Uacute = -22; +V = -70; +a = -40; +hyphen = -175; +hyphen.case = -169; +u = -35; +v = -81; +}; +Lcommaaccent = { +twosuperior = -183; +}; +Lslash = { +twosuperior = -109; +}; +M = { +Hbar = 42; +idieresis = 28; +igrave = 21; +itilde = 38; +}; +N = { +Hbar = 42; +idieresis = 28; +igrave = 21; +itilde = 38; +}; +O = { +Dcroat = 0; +Lslash = 0; +braceright = -70; +bracketright.case = -68; +itilde = 14; +}; +Oslash = { +T = -13; +V = 0; +Y = 0; +parenright = -2; +parenright.case = 0; +}; +P = { +fourinferior = -113; +idieresis = 47; +itilde = 51; +two = 22; +}; +R = { +Hbar = 55; +jcircumflex = 43; +two = 34; +}; +S = { +Hbar = 34; +Lslash = 9; +dollar = 0; +four = 12; +idieresis = 30; +itilde = 36; +lslash = 10; +three = 15; +}; +T = { +Oslash = -58; +a.ss05 = -141; +aacute.ss05 = -123; +abreve = -75; +abreveacute = -74; +acircumflex = -86; +acircumflexacute = -86; +acircumflexdotbelow = -86; +adieresis = -80; +adotbelow.ss05 = -141; +ae = -139; +agrave = -80; +amacron = -74; +ampersand = -77; +aring = -83; +asciitilde = -164; +atilde = -80; +equal = -137; +four = -154; +g.ss06 = -121; +h = -5; +i.ss01 = -7; +iacute = -56; +idieresis = 0; +idotless = -102; +igrave = 11; +itilde = 0; +less = -140; +logicalnot = -185; +minus = -166; +ograve = -78; +plus = -133; +racute = -74; +scaron = -47; +seven = 36; +twoinferior = -153; +udieresis = -77; +udieresis.ss01 = -66; +ugrave = -69; +uhorngrave = -68; +umacron = -66; +ycircumflex = -70; +ygrave = -60; +yhookabove = -66; +zcaron = -42; +zeroinferior = -151; +}; +Tbar = { +A = -118; +Aacute = -118; +Tbar = 47; +a = -69; +comma = -104; +e = -68; +o = -68; +period = -99; +slash = -125; +}; +Tcaron = { +a.ss05 = -141; +}; +Tcedilla = { +a.ss05 = -138; +abreve = -75; +four = -154; +}; +Tcommaaccent = { +a.ss05 = -140; +abreve = -75; +four = -154; +}; +Thorn = { +A = -12; +AE = -8; +Aacute = -12; +J = -84; +O = 41; +Oacute = 41; +V = -10; +Y = -49; +Yacute = -49; +a = 39; +aacute = 39; +e = 40; +o = 38; +oacute = 38; +period = -78; +}; +U = { +Hbar = 39; +jcircumflex = 39; +}; +V = { +four = -87; +iacute = -9; +ibreve = 67; +idieresis = 39; +igrave = 27; +itilde = 45; +minus = -54; +plus = -50; +scaron = -13; +seven = 50; +twoinferior = -71; +}; +W = { +Hbar = 42; +backslash = 40; +idieresis = 36; +igrave = 24; +itilde = 48; +}; +X = { +asciitilde = -103; +four = -28; +less = -84; +logicalnot = -150; +minus = -124; +notequal = -80; +one = -7; +plus = -101; +}; +Y = { +a.ss05 = -93; +agrave = -70; +amacron = -45; +ampersand = -63; +asciitilde = -124; +at = -62; +four = -136; +g.ss06 = -97; +igrave = 22; +less = -79; +logicalnot = -129; +minus = -99; +ograve = -68; +plus = -96; +scaron = -11; +twoinferior = -136; +}; +Z = { +four = -106; +ibreve = 75; +igrave = 23; +itilde = 27; +minus = -120; +plus = -109; +}; +_B.currency = { +_baht.bar = 0; +}; +a = { +braceright = -71; +}; +a.ss05 = { +g.ss06 = 23; +}; +acircumflexacute.ss05 = { +y = -21; +}; +adieresis.ss05 = { +germandbls = 0; +}; +ampersand = { +V = -108; +W = -91; +Y = -148; +quotedbl = -140; +quotedblleft = -158; +}; +aogonek = { +j = 0; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 0; +}; +approxequal = { +parenright = -129; +parenright.case = -120; +}; +asciicircum = { +J = -167; +X = -123; +Y = -79; +bracketright = -131; +comma = -104; +comma.ss01 = -80; +four = -136; +hyphen = -186; +parenright = -129; +parenright.case = -128; +period = -99; +period.ss01 = -82; +slash = -158; +}; +asciitilde = { +I.ss02 = -162; +J = -183; +V = -123; +W = -115; +X = -172; +Y = -154; +Z = -166; +bracketright = -168; +bracketright.case = -169; +comma = -104; +comma.ss01 = -80; +eight = -95; +exclam = -100; +four = -89; +one = -134; +parenright = -159; +parenright.case = -150; +period = -99; +period.ss01 = -82; +question = -100; +quotedbl = -112; +quotedblright = -116; +seven = -127; +slash = -147; +three = -114; +two = -96; +}; +at = { +T = -80; +parenright = -78; +}; +b = { +asterisk = -72; +braceright = -81; +lslash = 16; +one = -56; +}; +backslash = { +T = -144; +V = -121; +Y = -119; +asterisk = -115; +backslash = -100; +quotedbl = -132; +quotedblleft = -147; +quotedblleft.ss01 = -138; +quotedblright = -135; +quotedblright.ss01 = -135; +quoteleft = -104; +quoteright = -104; +quotesingle = -82; +}; +baht = { +parenright = -44; +}; +braceleft = { +p = -32; +}; +bracketleft = { +asciicircum = -132; +asciitilde = -114; +bracketright = 34; +jcircumflex = 15; +p = -29; +pi = -76; +plus = -92; +x = -68; +}; +c = { +asterisk = -54; +braceright = -89; +}; +cent = { +parenright = -76; +}; +colon = { +T = -99; +Y = -56; +four = -53; +one = -12; +parenright = -55; +two = 0; +zero = -12; +}; +colon.ss01 = { +T = -82; +four = -77; +parenright = -63; +}; +comma = { +eightsuperior = -104; +fivesuperior = -104; +foursuperior = -104; +ninesuperior = -104; +onesuperior = -104; +quoteleft = -104; +quotesingle = -82; +sevensuperior = -104; +sixsuperior = -104; +threesuperior = -104; +twosuperior = -104; +}; +comma.ss01 = { +eightsuperior = -80; +fivesuperior = -80; +foursuperior = -80; +ninesuperior = -80; +onesuperior = -80; +sevensuperior = -80; +sixsuperior = -80; +threesuperior = -80; +twosuperior = -80; +}; +copyright = { +Y = -38; +parenright = -74; +}; +d = { +idieresis = 0; +igrave = 0; +itilde = 0; +}; +dcaron = { +C = 28; +H = 96; +bracketright = 23; +eightsuperior = 74; +exclam = 82; +exclam.ss01 = 93; +fivesuperior = 72; +foursuperior = 39; +h = 32; +i = 11; +j = 10; +k = 31; +l = 32; +l.ss03 = 19; +l.ss04 = 31; +ninesuperior = 71; +onesuperior = 80; +parenright = 89; +question = 101; +question.ss01 = 54; +quotedbl = 76; +quotedblleft = 64; +quotedblleft.ss01 = 69; +quoteleft = 65; +quoteleft.ss01 = 69; +quotesingle = 84; +sevensuperior = 106; +sixsuperior = 77; +t = 2; +t_i.liga = 2; +t_t.liga = 2; +threesuperior = 67; +twosuperior = 73; +zcaron = 0; +}; +dcroat = { +i = 0; +igrave = 0; +itilde = 0; +}; +degree = { +J = -138; +comma = -104; +comma.ss01 = -80; +emdash = -163; +endash = -163; +four = -136; +hyphen = -180; +parenright = -70; +parenright.case = -69; +period = -99; +period.ss01 = -82; +slash = -147; +}; +divide = { +parenright = -106; +}; +dollar = { +parenright = -58; +three = 13; +}; +e = { +asterisk = -66; +backslash = -51; +braceright = -91; +germandbls = -16; +one = -56; +seven = -62; +}; +ecircumflexacute = { +t = 0; +}; +eight = { +bracketright = -43; +degree = -25; +}; +eight.dnom = { +degree = -150; +question.ss01 = -124; +quotedbl = -146; +quotedblleft = -168; +quotedblright = -164; +}; +eightsuperior = { +comma = -104; +comma.ss01 = -80; +period = -99; +period.ss01 = -82; +slash = -84; +}; +ellipsis = { +Tbar = -180; +bracketright = -113; +eightsuperior = -203; +fivesuperior = -200; +foursuperior = -194; +ninesuperior = -207; +onesuperior = -123; +parenleft = -61; +parenleft.case = -82; +question = -121; +quoteleft = -104; +quoteright = -104; +quotesingle = -82; +sevensuperior = -173; +sixsuperior = -207; +threesuperior = -195; +twosuperior = -183; +}; +ellipsis.ss01 = { +Tbar = -176; +bracketright = -118; +eightsuperior = -203; +fivesuperior = -200; +foursuperior = -194; +ninesuperior = -207; +onesuperior = -123; +question.ss01 = -142; +quoteleft.ss01 = -80; +quoteright.ss01 = -80; +quotesingle = -82; +sevensuperior = -173; +sixsuperior = -207; +threesuperior = -195; +twosuperior = -183; +}; +emdash = { +foursuperior = -81; +question = -101; +}; +emdash.case = { +X = -84; +quotedblbase = -168; +quotedblbase.ss01 = -150; +}; +endash = { +X = -43; +endash = 0; +foursuperior = -81; +question = -100; +}; +endash.case = { +H = 5; +X = -77; +quotedblbase = -168; +quotedblbase.ss01 = -150; +}; +eng = { +bracketright = -36; +}; +eogonek = { +lslash = 9; +}; +equal = { +T = -137; +equal = 0; +parenright = -81; +parenright.case = -69; +}; +eth = { +a = 20; +e = 23; +g = 18; +hyphen = 32; +parenright = -43; +}; +euro = { +parenright = -65; +parenright.case = -60; +}; +exclamdown = { +T = -122; +V = -47; +Y = -72; +}; +f = { +igrave = 0; +n = 0; +o = -14; +}; +f_f.liga = { +igrave = 0; +}; +f_f_i.liga = { +idieresis = 0; +}; +fi = { +idieresis = 0; +}; +five = { +degree = -52; +ordmasculine = -38; +percent = -7; +}; +five.dnom = { +degree = -126; +question.ss01 = -115; +quotedblleft = -160; +}; +five.numr = { +fraction = 0; +}; +fiveinferior = { +T = -151; +}; +fivesuperior = { +comma = -104; +comma.ss01 = -80; +period = -99; +period.ss01 = -82; +slash = -93; +}; +fl = { +idieresis = -1; +itilde = -1; +periodcentered.loclCAT = -12; +}; +four = { +asciicircum = -126; +bracketright = -64; +bracketright.case = -64; +degree = -81; +ordfeminine = -51; +ordmasculine = -49; +percent = -36; +x = -28; +}; +four.dnom = { +degree = -137; +question.ss01 = -116; +quotedblleft = -168; +}; +fourinferior = { +T = -144; +V = -102; +}; +foursuperior = { +comma = -104; +comma.ss01 = -80; +period = -99; +period.ss01 = -82; +slash = -84; +}; +fraction = { +eight.dnom = -11; +four.dnom = -45; +fourinferior = -54; +seveninferior = 28; +two.dnom = 0; +zero.dnom = -24; +}; +g = { +bracketright = -41; +j = 1; +j.ss01 = 1; +parenright = -15; +slash = 15; +}; +g.ss06 = { +g.ss06 = 35; +}; +gcaron.ss06 = { +gcaron.ss06 = 35; +}; +gdotaccent = { +j = 1; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 35; +}; +germandbls = { +e = 13; +hyphen = 32; +parenright = -41; +}; +greater = { +T = -141; +parenright = -92; +}; +greaterequal = { +T = -161; +}; +guillemetleft = { +pi = 0; +}; +guillemetright = { +X = -59; +bracketright = -92; +}; +guilsinglright = { +X = -55; +}; +h = { +asterisk = -64; +}; +hyphen = { +Lslash = 51; +X = -39; +bracketright = -75; +foursuperior = -137; +pi = -17; +question = -96; +quotedblbase = -168; +quoteleft = -104; +quotesingle = -82; +x = -53; +}; +hyphen.case = { +Dcroat = 60; +X = -81; +bracketright.case = -73; +quotedblbase = -168; +quotedblbase.ss01 = -150; +quotesinglbase = -104; +}; +i = { +T = -21; +idieresis = 0; +jcircumflex = 2; +parenright = -9; +}; +i.ss01 = { +parenright = -8; +}; +iacute = { +rcaron = -1; +}; +icircumflex = { +b = 4; +h = 4; +i = 4; +icircumflex = 34; +j = 3; +k = 2; +l = 4; +l.ss03 = 0; +l.ss04 = 3; +question = 54; +quotedbl = 16; +quoteright = 0; +quotesingle = 20; +}; +idieresis = { +b = 0; +idieresis = 0; +k = 0; +l = 0; +l.ss03 = 0; +l.ss04 = 0; +}; +idotaccent = { +parenright = -9; +}; +idotaccent.ss01 = { +parenright = -8; +}; +imacron = { +b = 0; +imacron = 35; +j = 0; +k = -1; +kcommaaccent = -1; +l = 0; +l.ss04 = -1; +lcommaaccent = 0; +quotedbl = 12; +}; +infinity = { +parenright = -89; +parenright.case = -77; +}; +integral = { +a = -52; +}; +iogonek = { +j = -1; +}; +itilde = { +h = 0; +itilde = 0; +quotedbl = 46; +quotesingle = 46; +}; +j = { +j = 0; +}; +jacute = { +backslash = 17; +iogonek = 5; +}; +jcircumflex = { +i = 4; +jcircumflex = 33; +}; +k = { +oslash = 0; +}; +l = { +at = 0; +idieresis = 0; +igrave = 0; +itilde = 0; +jcircumflex = 2; +l = 0; +n = 0; +periodcentered.loclCAT = -11; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = -33; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss04 = { +periodcentered.loclCAT = -11; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 93; +l = 32; +ncaron = 10; +scaron = 0; +twosuperior = 73; +}; +lcaron.ss03 = { +b = 12; +eightsuperior = 47; +exclam = 66; +exclam.ss01 = 80; +fivesuperior = 55; +k = 10; +ninesuperior = 49; +onesuperior = 61; +question = 83; +quotedbl = 63; +quotesingle = 69; +sevensuperior = 77; +sixsuperior = 55; +}; +lcaron.ss04 = { +exclam.ss01 = 100; +twosuperior = 83; +}; +liraTurkish = { +one = -65; +parenright = -102; +question = -89; +quotedbl = -111; +quotesingle = -82; +seven = -76; +}; +logicalnot = { +Y = -135; +parenright = -106; +seven = -122; +}; +m = { +asterisk = -63; +braceright = -70; +twosuperior = -28; +}; +minus = { +T = -166; +X = -123; +comma = -104; +one = -87; +parenright = -107; +parenright.case = -95; +period = -99; +seven = -91; +three = -82; +two = -50; +}; +mu = { +mu = -1; +parenright = -50; +quotesingle = -48; +}; +multiply = { +parenright = -105; +parenright.case = -94; +}; +n = { +asterisk = -67; +at = -2; +braceright = -70; +degree = -97; +g.ss06 = 3; +n = 0; +one = -50; +ordmasculine = -57; +}; +ncaron = { +Yacute = -41; +}; +nine = { +bracketright = -51; +degree = -24; +}; +nine.dnom = { +degree = -153; +question = -113; +question.ss01 = -128; +quotedbl = -150; +quotedblleft = -168; +quotedblleft.ss01 = -150; +quotedblright = -166; +quotedblright.ss01 = -150; +}; +ninesuperior = { +comma = -104; +comma.ss01 = -80; +fraction = 0; +period = -99; +period.ss01 = -82; +slash = -83; +}; +notequal = { +parenright = -102; +parenright.case = -87; +}; +numbersign = { +parenright = -61; +}; +o = { +asterisk = -76; +backslash = -53; +braceright = -82; +germandbls = -7; +lslash = 14; +n = 0; +one = -61; +}; +oacute = { +lslash = 16; +}; +ocircumflexacute = { +bracketright = -21; +parenright = 0; +}; +odieresis = { +germandbls = -3; +}; +ohorn = { +i = 9; +m = 8; +n = 8; +parenright = -39; +}; +ohornacute = { +c = 19; +i = 9; +m = 8; +n = 8; +p = 9; +t = 0; +t_i.liga = 0; +t_t.liga = 0; +}; +ohorndotbelow = { +c = 19; +i = 9; +n = 8; +p = 9; +t = 0; +t_i.liga = 0; +t_t.liga = 0; +u = 10; +}; +ohorngrave = { +i = 9; +n = 8; +parenright = -39; +}; +ohornhookabove = { +i = 9; +n = 8; +}; +ohorntilde = { +i = 9; +n = 8; +}; +ohungarumlaut = { +parenright = -48; +}; +one = { +comma.ss01 = -38; +degree = -29; +equal = 0; +four = -14; +icircumflex = 14; +nine = 3; +one = 0; +parenright = -6; +percent = 0; +period.ss01 = -36; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -118; +one.dnom = 0; +question.ss01 = -110; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -104; +comma.ss01 = -80; +period = -99; +period.ss01 = -82; +slash = -87; +}; +ordfeminine = { +comma = -104; +comma.ss01 = -80; +period = -99; +period.ss01 = -82; +}; +ordmasculine = { +comma = -104; +comma.ss01 = -80; +hyphen = -86; +parenright = -59; +period = -99; +period.ss01 = -82; +slash = -114; +}; +oslash = { +d = 8; +e = 11; +g = 7; +hyphen = 20; +parenright = -50; +y = 0; +}; +p = { +asterisk = -73; +backslash = -52; +braceright = -81; +lslash = 14; +one = -56; +}; +parenleft = { +Dcroat = -27; +H = 0; +Icircumflex = 19; +Oslash = -33; +ampersand = -66; +approxequal = -137; +asciicircum = -130; +asciitilde = -121; +at = -83; +cent = -85; +copyright = -75; +degree = -71; +divide = -107; +dollar = -50; +equal = -82; +euro = -95; +greaterequal = -82; +i = -10; +idotaccent = -10; +infinity = -89; +iogonek = 35; +jcircumflex = 29; +less = -92; +literSign = -63; +logicalnot = -139; +minus = -108; +mu = -2; +multiply = -106; +notequal = -103; +numbersign = -64; +oslash = -15; +p = 0; +parenleft = -52; +pi = -59; +plus = -105; +plusminus = -40; +published = -75; +question = -33; +quotedblbase = -11; +quoteleft = -53; +radical = -75; +scaron = -37; +section = -44; +sterling = -40; +x = -43; +}; +parenleft.case = { +Icircumflex = 38; +approxequal = -122; +asciicircum = -129; +asciitilde = -110; +dollar = -49; +equal = -70; +euro = -72; +minus = -96; +numbersign = -53; +parenleft.case = -41; +plus = -87; +question = -28; +quotedblbase = -34; +quoteleft = -50; +}; +parenright = { +bracketright = -48; +comma = -14; +comma.ss01 = -15; +hyphen = 19; +parenleft = 26; +parenright = -52; +period = -20; +period.ss01 = -47; +quotedbl = -18; +}; +parenright.case = { +comma = -30; +comma.ss01 = -53; +parenright.case = -41; +period = -40; +period.ss01 = -68; +}; +percent = { +asterisk = -87; +bracketright = -55; +comma.ss01 = -44; +eightsuperior = -52; +fivesuperior = -54; +foursuperior = -72; +ninesuperior = -63; +onesuperior = -55; +parenright = -53; +parenright.case = -27; +period = -14; +period.ss01 = -47; +question = -95; +question.ss01 = -93; +quotedbl = -82; +quotedblleft = -114; +quotedblright = -106; +quoteleft = -104; +quoteright = -89; +quotesingle = -79; +sevensuperior = -65; +sixsuperior = -55; +threesuperior = -58; +twosuperior = -41; +}; +period = { +bracketright = -49; +eightsuperior = -99; +fivesuperior = -99; +foursuperior = -99; +ninesuperior = -99; +onesuperior = -99; +ordfeminine = -99; +ordmasculine = -99; +parenleft.case = -40; +question = -99; +quoteleft = -99; +quotesingle = -82; +sevensuperior = -99; +sixsuperior = -99; +threesuperior = -99; +twosuperior = -99; +}; +period.ss01 = { +bracketright = -82; +eightsuperior = -82; +fivesuperior = -82; +foursuperior = -82; +ninesuperior = -82; +onesuperior = -82; +ordfeminine = -82; +ordmasculine = -82; +question.ss01 = -82; +sevensuperior = -82; +sixsuperior = -82; +threesuperior = -82; +twosuperior = -82; +}; +periodcentered.loclCAT = { +l = -11; +l.ss03 = -11; +}; +perthousand = { +asterisk = -141; +parenright = -72; +parenright.case = -34; +question = -110; +question.ss01 = -126; +quotedblleft = -168; +quotedblleft.ss01 = -150; +quotedblright = -168; +quotedblright.ss01 = -150; +quoteleft = -104; +quoteright = -104; +}; +pi = { +hyphen = -20; +parenright = -40; +period = 19; +pi = 24; +quotesingle = -28; +}; +plus = { +J = -111; +T = -133; +V = -51; +X = -101; +Y = -95; +braceright = -97; +bracketright = -91; +comma = -104; +comma.ss01 = -80; +one = -74; +parenright = -104; +parenright.case = -86; +period = -99; +period.ss01 = -82; +quotedbl = -66; +seven = -78; +slash = -63; +three = -51; +two = -31; +}; +published = { +parenright = -74; +}; +q = { +bracketright = -28; +j = -1; +parenright = 0; +}; +question = { +A = -76; +J = -80; +comma = -101; +hyphen = -66; +parenright = -31; +parenright.case = -30; +period = -96; +question = 32; +questiondown = -106; +slash = -79; +}; +question.ss01 = { +comma.ss01 = -80; +parenright = -31; +parenright.case = -28; +period.ss01 = -82; +questiondown.ss01 = -108; +}; +questiondown.case = { +T = -101; +V = -99; +Y = -95; +quotedbl = -126; +quotedblleft = -139; +quotedblleft.ss01 = -127; +quoteright = -104; +}; +questiondown.ss01 = { +C = -103; +Q = -102; +Q.ss09 = -102; +T = -177; +V = -159; +Y = -168; +four = -139; +quotedbl = -157; +quotedblleft.ss01 = -150; +quotesingle = -82; +}; +quotedbl = { +ellipsis.ss01 = -162; +exclamdown = -60; +g.ss06 = -70; +icircumflex = 14; +mu = -52; +questiondown = -139; +questiondown.case = -115; +questiondown.ss01 = -145; +underscore = -162; +}; +quotedblbase = { +copyright = -101; +divide = -168; +equal = -168; +euro = -141; +minus = -168; +p = -15; +plus = -168; +question = -120; +quotedblright = -168; +quoteleft = -104; +}; +quotedblbase.ss01 = { +divide = -150; +minus = -150; +plus = -150; +question.ss01 = -142; +quotedblright.ss01 = -150; +}; +quotedblleft = { +g.ss06 = -99; +mu = -67; +questiondown = -167; +questiondown.case = -125; +quotedblbase = -168; +underscore = -168; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -150; +questiondown.ss01 = -150; +quotedblbase.ss01 = -150; +underscore = -150; +}; +quotedblright = { +asciitilde = -141; +questiondown = -168; +questiondown.case = -123; +quotesinglbase = -104; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -150; +questiondown.case = -118; +questiondown.ss01 = -150; +}; +quoteleft = { +questiondown = -104; +questiondown.case = -104; +quotedblbase = -104; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -80; +}; +quoteright = { +icircumflex = 4; +questiondown = -104; +quotedblbase = -104; +}; +quoteright.ss01 = { +questiondown.ss01 = -80; +quotedblbase.ss01 = -80; +}; +quotesinglbase = { +T = -104; +V = -104; +Y = -104; +minus = -104; +plus = -104; +question = -104; +quotedblleft = -104; +quoteleft = -104; +}; +quotesinglbase.ss01 = { +T = -80; +V = -80; +Y = -80; +question.ss01 = -80; +}; +quotesingle = { +Hbar = 19; +g.ss06 = -70; +icircumflex = 18; +igrave = 9; +imacron = 13; +itilde = 41; +l.ss04 = 18; +questiondown = -82; +questiondown.case = -82; +underscore = -82; +}; +r = { +braceright = -84; +fourinferior = -94; +g.ss06 = -16; +parenright = -73; +}; +radical = { +A = -84; +}; +rcaron = { +sevensuperior = -5; +}; +registered = { +comma = -104; +comma.ss01 = -80; +parenright = -61; +parenright.case = -58; +period = -99; +period.ss01 = -82; +slash = -83; +}; +s = { +asterisk = -53; +braceright = -76; +l = 0; +}; +scaron = { +T = -46; +}; +semicolon = { +hyphen = -100; +}; +seven = { +minus = -66; +percent = 25; +plus = -55; +underscore = -106; +}; +seven.dnom = { +question.ss01 = -115; +}; +seven.numr = { +fraction = -24; +}; +seveninferior = { +parenright = -81; +}; +sevensuperior = { +A = -122; +comma = -104; +comma.ss01 = -80; +fraction = -34; +period = -99; +period.ss01 = -82; +slash = -125; +}; +six = { +bracketright = -37; +degree = -34; +}; +six.dnom = { +degree = -147; +question.ss01 = -120; +quotedbl = -143; +quotedblleft = -168; +quotedblleft.ss01 = -150; +quotedblright = -161; +}; +sixinferior = { +T = -155; +}; +sixsuperior = { +comma = -104; +comma.ss01 = -80; +period = -99; +period.ss01 = -82; +slash = -96; +}; +slash = { +fourinferior = -126; +g.ss06 = -55; +ibreve = 46; +l.ss04 = 14; +mu = -49; +quotedblbase = -168; +quotedblbase.ss01 = -150; +quotesinglbase = -104; +underscore = -169; +}; +sterling = { +two = 20; +}; +t_i.liga = { +idieresis = -1; +}; +tcaron = { +b = 0; +exclam = 21; +h = 0; +hyphen = -48; +i = 0; +j = 0; +k = 0; +parenright = 37; +quotedbl = 5; +quotedblleft = 0; +quotesingle = 12; +}; +tcedilla = { +parenright = 14; +}; +tenge = { +comma = -104; +comma.ss01 = -80; +period = -99; +period.ss01 = -82; +slash = -115; +}; +three = { +bracketright = -36; +}; +three.dnom = { +degree = -147; +question.ss01 = -120; +quotedbl = -143; +quotedblleft = -168; +quotedblright = -161; +}; +three.numr = { +fraction = 0; +}; +threeinferior = { +T = -151; +V = -84; +Y = -133; +}; +threesuperior = { +comma = -104; +comma.ss01 = -80; +fraction = 0; +parenright = -12; +period = -99; +period.ss01 = -82; +slash = -87; +}; +trademark = { +comma = -104; +comma.ss01 = -80; +hyphen = -94; +period = -99; +period.ss01 = -82; +slash = -129; +}; +two = { +percent = 32; +}; +two.dnom = { +degree = -141; +question.ss01 = -113; +quotedbl = -137; +quotedblleft = -168; +quotedblright = -157; +}; +twoinferior = { +T = -153; +V = -73; +Y = -134; +}; +twosuperior = { +comma = -104; +comma.ss01 = -80; +parenright = -22; +parenright.case = -19; +period = -99; +period.ss01 = -82; +slash = -77; +}; +uhorn = { +a = -26; +ohorn = -23; +ohornacute = -23; +ohorndotbelow = -23; +ohorndotbelow.ss01 = -23; +ohorngrave = -23; +ohornhookabove = -23; +ohorntilde = -23; +}; +uhornacute = { +a = -26; +c = -27; +}; +uhorndotbelow = { +a = -26; +c = -27; +comma = -32; +period = -30; +}; +uhorngrave = { +a = -26; +a.ss05 = -20; +}; +uhornhookabove = { +a = -26; +comma = -32; +comma.ss01 = -52; +period = -30; +period.ss01 = -62; +}; +uhorntilde = { +a = -26; +comma = -32; +period = -30; +}; +uhungarumlaut = { +parenright = -30; +}; +underscore = { +C = -60; +O = -59; +T = -148; +V = -138; +W = -90; +Y = -137; +asterisk = -155; +four = -101; +one = -70; +quotedbl = -162; +quotedblright = -168; +quotedblright.ss01 = -150; +quotesingle = -82; +seven = -68; +six = -35; +v = -82; +}; +uogonek = { +j = -1; +parenright = -2; +}; +v = { +braceright = -76; +n = 0; +}; +w = { +braceright = -75; +}; +x = { +four = -44; +}; +y = { +braceright = -74; +}; +ydotbelow = { +period = -60; +}; +zero = { +braceright = -57; +bracketright = -56; +bracketright.case = -54; +degree = -30; +percent = 11; +}; +zero.dnom = { +degree = -156; +question = -113; +question.ss01 = -129; +quotedbl = -152; +quotedblleft = -168; +quotedblleft.ss01 = -150; +quotedblright = -168; +quotedblright.ss01 = -150; +quoteleft = -104; +}; +zeroinferior = { +parenright = -65; +}; +zerosuperior = { +comma = -104; +comma.ss01 = -80; +fraction = 0; +period = -99; +period.ss01 = -82; +slash = -89; +}; +}; +m020 = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -35; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -84; +"@MMK_R_KO_U" = -22; +"@MMK_R_KO_V" = -96; +"@MMK_R_KO_W" = -66; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -109; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -84; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = -68; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = -8; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -74; +"@MMK_R_KO_foursuperior" = -67; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -9; +"@MMK_R_KO_hyphen.case" = -31; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 31; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -71; +"@MMK_R_KO_onesuperior" = -92; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -63; +"@MMK_R_KO_question.ss01" = -77; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft" = -77; +"@MMK_R_KO_quotedblleft.ss01" = -70; +"@MMK_R_KO_quoteleft" = -77; +"@MMK_R_KO_quoteright" = -57; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -96; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_sixsuperior" = -79; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = -40; +"@MMK_R_KO_threesuperior" = -77; +"@MMK_R_KO_trademark" = -114; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -54; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_x" = 7; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = -39; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -34; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -28; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 14; +"@MMK_R_KO_imacron" = 35; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -17; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -17; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -41; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = -30; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -14; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -16; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -57; +"@MMK_R_KO_Y" = -52; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = -7; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 18; +"@MMK_R_KO_imacron" = 24; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -24; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_parenright.case" = -52; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -45; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_underscore" = -48; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 19; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -68; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -6; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 11; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 19; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 22; +"@MMK_R_KO_guillemetleft" = 26; +"@MMK_R_KO_guillemetright" = 11; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 29; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 25; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = 14; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -47; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 4; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -25; +"@MMK_R_KO_six" = 23; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = 15; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -57; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -17; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = -69; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -46; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -42; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -54; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_guillemetleft" = 23; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_j" = 23; +"@MMK_R_KO_n" = 9; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_parenright.case" = -56; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -45; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_y" = 2; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = 8; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = 15; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 36; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 22; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 61; +"@MMK_R_KO_j" = 29; +"@MMK_R_KO_l.ss04" = 49; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 21; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -57; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = -73; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 22; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 10; +"@MMK_R_KO_W" = 15; +"@MMK_R_KO_X" = -12; +"@MMK_R_KO_Y" = 3; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -34; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = -58; +"@MMK_R_KO_comma.ss01" = -121; +"@MMK_R_KO_e" = -26; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -107; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_icircumflex" = 51; +"@MMK_R_KO_imacron" = 54; +"@MMK_R_KO_j" = 15; +"@MMK_R_KO_l.ss04" = 44; +"@MMK_R_KO_n" = -15; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -9; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -56; +"@MMK_R_KO_period.ss01" = -122; +"@MMK_R_KO_question" = 2; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 12; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 20; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -28; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_underscore" = -191; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -13; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -67; +"@MMK_R_KO_Y" = -55; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -23; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -13; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -49; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 13; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 11; +"@MMK_R_KO_imacron" = 18; +"@MMK_R_KO_j" = 13; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -53; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -56; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 15; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -16; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 16; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = 13; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 18; +"@MMK_R_KO_j" = 23; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_n" = 10; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_parenright.case" = -8; +"@MMK_R_KO_period" = 14; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -21; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_trademark" = -55; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_egrave" = -1; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 39; +"@MMK_R_KO_j" = 19; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -6; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -28; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 10; +"@MMK_R_KO_X" = 17; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 36; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 27; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -54; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 57; +"@MMK_R_KO_imacron" = 59; +"@MMK_R_KO_j" = 33; +"@MMK_R_KO_l.ss04" = 49; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 28; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -12; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 5; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = -14; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 44; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -16; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -24; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = -72; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 3; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -76; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -20; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -62; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -38; +"@MMK_R_KO_hyphen.case" = -73; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 57; +"@MMK_R_KO_j" = 31; +"@MMK_R_KO_l.ss04" = 49; +"@MMK_R_KO_n" = -10; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -25; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -49; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -49; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -59; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -39; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -7; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -55; +"@MMK_R_KO_w" = -45; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -37; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -107; +"@MMK_R_KO_U" = -26; +"@MMK_R_KO_V" = -93; +"@MMK_R_KO_W" = -59; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -130; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -206; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 45; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = -177; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_fivesuperior" = -179; +"@MMK_R_KO_foursuperior" = -187; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -71; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -177; +"@MMK_R_KO_onesuperior" = -149; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = 43; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -91; +"@MMK_R_KO_question.ss01" = -104; +"@MMK_R_KO_quotedbl" = -112; +"@MMK_R_KO_quotedblleft" = -192; +"@MMK_R_KO_quotedblleft.ss01" = -191; +"@MMK_R_KO_quoteleft" = -144; +"@MMK_R_KO_quoteright" = -185; +"@MMK_R_KO_quoteright.ss01" = -185; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -182; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_sixsuperior" = -179; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_threesuperior" = -186; +"@MMK_R_KO_trademark" = -206; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -55; +"@MMK_R_KO_w" = -39; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_H" = 15; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 27; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -95; +"@MMK_R_KO_U" = -13; +"@MMK_R_KO_V" = -82; +"@MMK_R_KO_W" = -48; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -121; +"@MMK_R_KO_Z" = 36; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 60; +"@MMK_R_KO_comma.ss01" = 7; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -111; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = -120; +"@MMK_R_KO_foursuperior" = -112; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -48; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -119; +"@MMK_R_KO_onesuperior" = -128; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = -6; +"@MMK_R_KO_period" = 58; +"@MMK_R_KO_period.ss01" = 5; +"@MMK_R_KO_question" = -75; +"@MMK_R_KO_question.ss01" = -89; +"@MMK_R_KO_quotedbl" = -112; +"@MMK_R_KO_quotedblleft" = -111; +"@MMK_R_KO_quotedblleft.ss01" = -118; +"@MMK_R_KO_quoteleft" = -111; +"@MMK_R_KO_quoteright" = -115; +"@MMK_R_KO_quoteright.ss01" = -113; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -134; +"@MMK_R_KO_sixsuperior" = -114; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_threesuperior" = -116; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -20; +"@MMK_R_KO_J" = -23; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = -79; +"@MMK_R_KO_Y" = -71; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -58; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -33; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -72; +"@MMK_R_KO_parenright.case" = -68; +"@MMK_R_KO_period" = -32; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = -69; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -20; +"@MMK_R_KO_J" = -23; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = -79; +"@MMK_R_KO_Y" = -71; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -58; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -33; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -72; +"@MMK_R_KO_parenright.case" = -68; +"@MMK_R_KO_period" = -32; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = -69; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_bracketright" = 18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -33; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 10; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_parenright" = 27; +"@MMK_R_KO_parenright.case" = 27; +"@MMK_R_KO_period" = -32; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -21; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_slash" = -43; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -52; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -71; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 27; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_X" = -44; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -7; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -95; +"@MMK_R_KO_comma.ss01" = -123; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 25; +"@MMK_R_KO_ellipsis" = -140; +"@MMK_R_KO_exclam" = 33; +"@MMK_R_KO_f" = 19; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 55; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_l.ss04" = 50; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 23; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -34; +"@MMK_R_KO_period" = -93; +"@MMK_R_KO_period.ss01" = -124; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quotedblleft" = 24; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 24; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 13; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = 19; +"@MMK_R_KO_slash" = -65; +"@MMK_R_KO_t" = 18; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -231; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 19; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_U" = -21; +"@MMK_R_KO_V" = -74; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_X" = -4; +"@MMK_R_KO_Y" = -93; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -39; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -42; +"@MMK_R_KO_foursuperior" = -39; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 35; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -61; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = -30; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -51; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -37; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -68; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -44; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -45; +"@MMK_R_KO_trademark" = -90; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -28; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -24; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 15; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 33; +"@MMK_R_KO_j" = 27; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = -9; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -35; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 14; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 27; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = -12; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -13; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 22; +"@MMK_R_KO_guillemetleft" = 20; +"@MMK_R_KO_guillemetright" = 20; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 39; +"@MMK_R_KO_j" = 25; +"@MMK_R_KO_l.ss04" = 37; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 18; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_trademark" = -42; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = -23; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 14; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 27; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = -12; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 22; +"@MMK_R_KO_guillemetleft" = 20; +"@MMK_R_KO_guillemetright" = 20; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 39; +"@MMK_R_KO_j" = 25; +"@MMK_R_KO_l.ss04" = 37; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 18; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -84; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = -71; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 26; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_X" = -9; +"@MMK_R_KO_Y" = 7; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -72; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -106; +"@MMK_R_KO_comma.ss01" = -123; +"@MMK_R_KO_e" = -82; +"@MMK_R_KO_egrave" = -37; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -140; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = -63; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -103; +"@MMK_R_KO_hyphen.case" = -65; +"@MMK_R_KO_i" = -14; +"@MMK_R_KO_icircumflex" = 55; +"@MMK_R_KO_imacron" = 57; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 43; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -107; +"@MMK_R_KO_period.ss01" = -124; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -66; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_underscore" = -102; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -13; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 10; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = -11; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -24; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 5; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = 19; +"@MMK_R_KO_l.ss04" = 37; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -45; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -21; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -54; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -13; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 10; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = -11; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 5; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 20; +"@MMK_R_KO_l.ss04" = 37; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -45; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -25; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = 28; +"@MMK_R_KO_U" = 28; +"@MMK_R_KO_V" = 33; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = 33; +"@MMK_R_KO_Z" = 34; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 46; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_eightsuperior" = 26; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_fivesuperior" = 25; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = 9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 25; +"@MMK_R_KO_onesuperior" = 8; +"@MMK_R_KO_parenright" = 50; +"@MMK_R_KO_parenright.case" = 60; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -45; +"@MMK_R_KO_question" = 7; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 33; +"@MMK_R_KO_quoteright" = 29; +"@MMK_R_KO_quoteright.ss01" = 19; +"@MMK_R_KO_sevensuperior" = 26; +"@MMK_R_KO_sixsuperior" = 18; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_threesuperior" = 13; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -96; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -76; +"@MMK_R_KO_O" = -39; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 4; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -53; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -30; +"@MMK_R_KO_comma" = -96; +"@MMK_R_KO_comma.ss01" = -117; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_egrave" = -50; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -129; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = -47; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -52; +"@MMK_R_KO_hyphen.case" = -33; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 28; +"@MMK_R_KO_imacron" = 58; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 48; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -96; +"@MMK_R_KO_period.ss01" = -118; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = 23; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -104; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_underscore" = -112; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_x" = -29; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -37; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -66; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = -61; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 17; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 17; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 4; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -27; +"@MMK_R_KO_asciicircum" = -20; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -55; +"@MMK_R_KO_comma.ss01" = -78; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -87; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 40; +"@MMK_R_KO_imacron" = 66; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_l.ss04" = 55; +"@MMK_R_KO_n" = -12; +"@MMK_R_KO_ninesuperior" = 3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -56; +"@MMK_R_KO_period.ss01" = -81; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = 35; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = -25; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -72; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_underscore" = -65; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -15; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -79; +"@MMK_R_KO_S" = -29; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = -13; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -24; +"@MMK_R_KO_asciicircum" = -85; +"@MMK_R_KO_bracketright" = -3; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_egrave" = -44; +"@MMK_R_KO_eightsuperior" = -36; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_fivesuperior" = -40; +"@MMK_R_KO_foursuperior" = -75; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -46; +"@MMK_R_KO_hyphen.case" = -84; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 41; +"@MMK_R_KO_j" = 15; +"@MMK_R_KO_l.ss04" = 36; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_ninesuperior" = -40; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = -31; +"@MMK_R_KO_question.ss01" = -51; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -62; +"@MMK_R_KO_quotedblleft.ss01" = -44; +"@MMK_R_KO_quoteleft" = -62; +"@MMK_R_KO_quoteright" = -35; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = -38; +"@MMK_R_KO_sevensuperior" = -17; +"@MMK_R_KO_six" = -68; +"@MMK_R_KO_sixsuperior" = -43; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -60; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_trademark" = -26; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -58; +"@MMK_R_KO_w" = -51; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -108; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -74; +"@MMK_R_KO_O" = -71; +"@MMK_R_KO_S" = -29; +"@MMK_R_KO_T" = 8; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = -3; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = -102; +"@MMK_R_KO_a.ss05" = -75; +"@MMK_R_KO_asciicircum" = -58; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -72; +"@MMK_R_KO_comma" = -139; +"@MMK_R_KO_comma.ss01" = -123; +"@MMK_R_KO_e" = -107; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -173; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -49; +"@MMK_R_KO_g" = -93; +"@MMK_R_KO_guillemetleft" = -104; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -105; +"@MMK_R_KO_hyphen.case" = -71; +"@MMK_R_KO_i" = -13; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 61; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = -72; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = -140; +"@MMK_R_KO_period.ss01" = -124; +"@MMK_R_KO_question" = -19; +"@MMK_R_KO_question.ss01" = -36; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = -92; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -64; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = -124; +"@MMK_R_KO_t" = -37; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -60; +"@MMK_R_KO_underscore" = -135; +"@MMK_R_KO_v" = -46; +"@MMK_R_KO_w" = -48; +"@MMK_R_KO_x" = -52; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = -58; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 33; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 9; +"@MMK_R_KO_W" = 22; +"@MMK_R_KO_X" = 20; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = 32; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 25; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -31; +"@MMK_R_KO_i" = 13; +"@MMK_R_KO_icircumflex" = 64; +"@MMK_R_KO_imacron" = 68; +"@MMK_R_KO_j" = 38; +"@MMK_R_KO_l.ss04" = 55; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 31; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 25; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 24; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_X" = -19; +"@MMK_R_KO_Y" = -73; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 6; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -22; +"@MMK_R_KO_quotedbl" = -35; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -1; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 21; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -67; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -102; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 31; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -30; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -37; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = 9; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -83; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_period" = 32; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -44; +"@MMK_R_KO_quotedbl" = -51; +"@MMK_R_KO_quotedblleft" = -40; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteleft" = -40; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 22; +"@MMK_R_KO_sevensuperior" = -78; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -41; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -31; +"@MMK_R_KO_trademark" = -85; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 26; +"@MMK_R_KO_comma" = 31; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 14; +"@MMK_R_KO_j" = 22; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_period" = 32; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -44; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteleft" = -40; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = 22; +"@MMK_R_KO_sevensuperior" = -51; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -31; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_T" = -103; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_t" = -21; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -82; +"@MMK_R_KO_H" = -27; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_a" = -39; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -29; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -42; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -73; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 13; +"@MMK_R_KO_W" = 21; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -45; +"@MMK_R_KO_asterisk" = 19; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -144; +"@MMK_R_KO_comma.ss01" = -123; +"@MMK_R_KO_e" = -54; +"@MMK_R_KO_eight" = -8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -72; +"@MMK_R_KO_g" = -44; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -82; +"@MMK_R_KO_hyphen.case" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = 7; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_period.ss01" = -124; +"@MMK_R_KO_quotedbl" = 25; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = -43; +"@MMK_R_KO_seven" = 28; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_slash" = -97; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = -8; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = -57; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -58; +"@MMK_R_KO_a.ss05" = -40; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -48; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -40; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 63; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -22; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = -48; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = -40; +"@MMK_R_KO_three" = -14; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -47; +"@MMK_R_KO_v" = -52; +"@MMK_R_KO_w" = -49; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -59; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 10; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_asterisk" = -7; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_ellipsis" = -22; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -44; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen.case" = -51; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -30; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -43; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_three" = -11; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -71; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -51; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_X" = -46; +"@MMK_R_KO_Y" = -94; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = -58; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -50; +"@MMK_R_KO_parenright" = -65; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = -21; +"@MMK_R_KO_question.ss01" = -44; +"@MMK_R_KO_quotedbl" = -43; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -41; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -24; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -68; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -31; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -27; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -144; +"@MMK_R_KO_comma" = 6; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_hyphen.case" = -57; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -86; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_quotedbl" = -144; +"@MMK_R_KO_quotedblleft" = -144; +"@MMK_R_KO_quoteright" = -144; +"@MMK_R_KO_seven" = -66; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 21; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -97; +"@MMK_R_KO_H" = -14; +"@MMK_R_KO_O" = -36; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_i" = -31; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_t" = -8; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -80; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -63; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_X" = -47; +"@MMK_R_KO_Y" = -106; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -61; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -68; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = -35; +"@MMK_R_KO_question.ss01" = -50; +"@MMK_R_KO_quotedbl" = -50; +"@MMK_R_KO_quotedblleft" = -41; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -41; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -60; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_trademark" = -80; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -33; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -32; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -63; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_X" = -33; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -48; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -25; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -33; +"@MMK_R_KO_foursuperior" = -28; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 11; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = -35; +"@MMK_R_KO_question.ss01" = -50; +"@MMK_R_KO_quotedbl" = -44; +"@MMK_R_KO_quotedblleft" = -40; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteleft" = -40; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -49; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -35; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -33; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -29; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asterisk" = -9; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eight" = 24; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_five" = 18; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 19; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_nine" = 11; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 24; +"@MMK_R_KO_two" = 17; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = -30; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = -57; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = -137; +"@MMK_R_KO_U" = -49; +"@MMK_R_KO_V" = -130; +"@MMK_R_KO_W" = -87; +"@MMK_R_KO_Y" = -172; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asterisk" = -145; +"@MMK_R_KO_colon" = -13; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -35; +"@MMK_R_KO_eight" = -23; +"@MMK_R_KO_ellipsis" = -22; +"@MMK_R_KO_f" = -53; +"@MMK_R_KO_five" = -29; +"@MMK_R_KO_four" = -18; +"@MMK_R_KO_g" = -30; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -26; +"@MMK_R_KO_hyphen.case" = -90; +"@MMK_R_KO_i" = -34; +"@MMK_R_KO_j" = -16; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_nine" = -33; +"@MMK_R_KO_one" = -120; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -47; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -226; +"@MMK_R_KO_quotedblleft" = -272; +"@MMK_R_KO_quoteright" = -279; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_seven" = -101; +"@MMK_R_KO_six" = -50; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = -61; +"@MMK_R_KO_three" = -26; +"@MMK_R_KO_two" = -12; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -86; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -72; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = -25; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -50; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -130; +"@MMK_R_KO_U" = -42; +"@MMK_R_KO_V" = -118; +"@MMK_R_KO_W" = -80; +"@MMK_R_KO_Y" = -167; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asterisk" = -145; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eight" = -15; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -8; +"@MMK_R_KO_g" = -21; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_hyphen.case" = -119; +"@MMK_R_KO_i" = -32; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = -23; +"@MMK_R_KO_one" = -116; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = -226; +"@MMK_R_KO_quotedblleft.ss01" = -246; +"@MMK_R_KO_quoteright.ss01" = -246; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_seven" = -95; +"@MMK_R_KO_six" = -44; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = -60; +"@MMK_R_KO_three" = -17; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_v" = -71; +"@MMK_R_KO_w" = -51; +"@MMK_R_KO_y" = -49; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -103; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -52; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_Y" = -104; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 23; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 24; +"@MMK_R_KO_egrave" = 25; +"@MMK_R_KO_eight" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 17; +"@MMK_R_KO_g" = 33; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -61; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = -31; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -67; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -14; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = 15; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 9; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = -35; +"@MMK_R_KO_comma.ss01" = -56; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = 3; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 7; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 30; +"@MMK_R_KO_j" = 18; +"@MMK_R_KO_l.ss04" = 40; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 10; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 6; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -57; +"@MMK_R_KO_question" = 9; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 36; +"@MMK_R_KO_quotedblleft" = 17; +"@MMK_R_KO_quotedblleft.ss01" = 6; +"@MMK_R_KO_quoteleft" = 17; +"@MMK_R_KO_quoteright" = 30; +"@MMK_R_KO_quoteright.ss01" = 15; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = -29; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = 16; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -33; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = -27; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = 25; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 7; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = -37; +"@MMK_R_KO_comma.ss01" = -57; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -65; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 3; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = 15; +"@MMK_R_KO_l.ss04" = 51; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 10; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -38; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 15; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 36; +"@MMK_R_KO_quotedblleft" = 18; +"@MMK_R_KO_quotedblleft.ss01" = 7; +"@MMK_R_KO_quoteleft" = 18; +"@MMK_R_KO_quoteright" = 30; +"@MMK_R_KO_quoteright.ss01" = 16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 10; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = 12; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -3; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = 11; +"@MMK_R_KO_hyphen" = 9; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 12; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_n" = 10; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -9; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -28; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = 9; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 20; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asterisk" = -7; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 20; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 16; +"@MMK_R_KO_four" = 18; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 16; +"@MMK_R_KO_guillemetright" = 3; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 20; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 12; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -31; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -45; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 22; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 13; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -33; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -52; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -42; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -34; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -16; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 18; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 29; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = 18; +"@MMK_R_KO_colon" = 30; +"@MMK_R_KO_comma" = 31; +"@MMK_R_KO_comma.ss01" = 5; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 25; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 8; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 27; +"@MMK_R_KO_j" = 68; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 16; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 13; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 38; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 34; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eight" = 12; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_f" = 18; +"@MMK_R_KO_five" = 3; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = 34; +"@MMK_R_KO_hyphen" = -7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_nine" = 14; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_three" = 7; +"@MMK_R_KO_two" = 14; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 22; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -34; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -63; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_Y" = -105; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asterisk" = -55; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -49; +"@MMK_R_KO_e" = 18; +"@MMK_R_KO_egrave" = 18; +"@MMK_R_KO_eight" = 9; +"@MMK_R_KO_ellipsis" = -56; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 21; +"@MMK_R_KO_g" = 29; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = 18; +"@MMK_R_KO_n" = 8; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -28; +"@MMK_R_KO_parenright" = -73; +"@MMK_R_KO_parenright.case" = -65; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -50; +"@MMK_R_KO_quotedbl" = -55; +"@MMK_R_KO_quotedblleft" = -45; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_seven" = -40; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -14; +"@MMK_R_KO_two" = -23; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -100; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -51; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_Y" = -105; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 23; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -82; +"@MMK_R_KO_colon" = -17; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 24; +"@MMK_R_KO_egrave" = 25; +"@MMK_R_KO_eight" = 12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 24; +"@MMK_R_KO_g" = 33; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 26; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 20; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -45; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = -38; +"@MMK_R_KO_quotedblleft" = -31; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -67; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -28; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -54; +"@MMK_R_KO_J" = -62; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_Z" = -26; +"@MMK_R_KO_asterisk" = -12; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -99; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 8; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen.case" = 27; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright.case" = -50; +"@MMK_R_KO_period" = -48; +"@MMK_R_KO_period.ss01" = -119; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = -13; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 7; +"@MMK_R_KO_imacron" = 16; +"@MMK_R_KO_j" = 18; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -39; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -22; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -32; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 5; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 14; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 46; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 30; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = 38; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = 5; +"@MMK_R_KO_ellipsis" = -27; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_icircumflex" = 18; +"@MMK_R_KO_imacron" = 37; +"@MMK_R_KO_j" = 35; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = 10; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 32; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = 2; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -2; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = 10; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 3; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asciicircum" = -17; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -40; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 20; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_trademark" = -54; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -1; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -24; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 17; +"@MMK_R_KO_imacron" = 15; +"@MMK_R_KO_j" = 18; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -8; +"@MMK_R_KO_parenright" = -4; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -6; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -26; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = 30; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 21; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = 3; +"@MMK_R_KO_colon" = 26; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 7; +"@MMK_R_KO_imacron" = 17; +"@MMK_R_KO_j" = 24; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_period" = 25; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 24; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -37; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 21; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_bracketright" = 136; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -24; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = 105; +"@MMK_R_KO_exclam" = 125; +"@MMK_R_KO_f" = 55; +"@MMK_R_KO_fivesuperior" = 106; +"@MMK_R_KO_foursuperior" = 62; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 128; +"@MMK_R_KO_j" = 104; +"@MMK_R_KO_l.ss04" = 156; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 103; +"@MMK_R_KO_onesuperior" = 127; +"@MMK_R_KO_parenright" = 120; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = 108; +"@MMK_R_KO_question.ss01" = 82; +"@MMK_R_KO_quotedbl" = 154; +"@MMK_R_KO_quotedblleft" = 75; +"@MMK_R_KO_quotedblleft.ss01" = 89; +"@MMK_R_KO_quoteleft" = 78; +"@MMK_R_KO_sevensuperior" = 138; +"@MMK_R_KO_sixsuperior" = 91; +"@MMK_R_KO_slash" = 16; +"@MMK_R_KO_t" = 20; +"@MMK_R_KO_threesuperior" = 108; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_z" = 63; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -45; +"@MMK_R_KO_H" = -32; +"@MMK_R_KO_O" = -36; +"@MMK_R_KO_T" = -136; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_i" = -35; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_t" = -30; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -68; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = -17; +"@MMK_R_KO_Y" = -101; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -38; +"@MMK_R_KO_foursuperior" = -30; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 13; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -83; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = -27; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -51; +"@MMK_R_KO_quotedblleft" = -39; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -39; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -79; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = -40; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -32; +"@MMK_R_KO_trademark" = -87; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -73; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_X" = -43; +"@MMK_R_KO_Y" = -102; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -61; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -34; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = 18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 13; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -75; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = -29; +"@MMK_R_KO_question.ss01" = -48; +"@MMK_R_KO_quotedbl" = -49; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -38; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -66; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -38; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -81; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -33; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -52; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = 20; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = 15; +"@MMK_R_KO_l.ss04" = 12; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = -34; +"@MMK_R_KO_question.ss01" = -48; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_trademark" = -81; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -39; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = -33; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -33; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -38; +"@MMK_R_KO_O" = -72; +"@MMK_R_KO_S" = -43; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -70; +"@MMK_R_KO_a.ss05" = -56; +"@MMK_R_KO_asterisk" = -20; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -70; +"@MMK_R_KO_egrave" = -57; +"@MMK_R_KO_eight" = -43; +"@MMK_R_KO_ellipsis" = -68; +"@MMK_R_KO_f" = -43; +"@MMK_R_KO_five" = -15; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -40; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_j" = 69; +"@MMK_R_KO_n" = -48; +"@MMK_R_KO_nine" = -49; +"@MMK_R_KO_one" = -45; +"@MMK_R_KO_parenright" = 24; +"@MMK_R_KO_period" = -41; +"@MMK_R_KO_period.ss01" = -56; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -55; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = -58; +"@MMK_R_KO_seven" = -4; +"@MMK_R_KO_six" = -67; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -45; +"@MMK_R_KO_three" = -45; +"@MMK_R_KO_two" = -26; +"@MMK_R_KO_u" = -61; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -41; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -38; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = -68; +"@MMK_R_KO_S" = -33; +"@MMK_R_KO_T" = -1; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_asterisk" = -21; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_eight" = -30; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_five" = -11; +"@MMK_R_KO_four" = -43; +"@MMK_R_KO_guillemetleft" = -66; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen.case" = -54; +"@MMK_R_KO_nine" = -41; +"@MMK_R_KO_one" = -38; +"@MMK_R_KO_parenright.case" = 22; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -56; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_seven" = -2; +"@MMK_R_KO_six" = -61; +"@MMK_R_KO_slash" = 20; +"@MMK_R_KO_three" = -35; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = -32; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -104; +"@MMK_R_KO_U" = -14; +"@MMK_R_KO_V" = -97; +"@MMK_R_KO_W" = -56; +"@MMK_R_KO_Y" = -139; +"@MMK_R_KO_Z" = 40; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asterisk" = -144; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -52; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -87; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -144; +"@MMK_R_KO_quotedblleft" = -144; +"@MMK_R_KO_quoteright" = -144; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_seven" = -69; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = -37; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 21; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_v" = -56; +"@MMK_R_KO_w" = -31; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = 23; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -50; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -124; +"@MMK_R_KO_U" = -42; +"@MMK_R_KO_V" = -118; +"@MMK_R_KO_W" = -80; +"@MMK_R_KO_Y" = -124; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asterisk" = -124; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = -7; +"@MMK_R_KO_g" = -21; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_hyphen.case" = -99; +"@MMK_R_KO_i" = -32; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = -22; +"@MMK_R_KO_one" = -108; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = -124; +"@MMK_R_KO_quotedblleft.ss01" = -123; +"@MMK_R_KO_quoteright.ss01" = -123; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_seven" = -93; +"@MMK_R_KO_six" = -44; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = -60; +"@MMK_R_KO_three" = -16; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_v" = -71; +"@MMK_R_KO_w" = -51; +"@MMK_R_KO_y" = -49; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -69; +"@MMK_R_KO_S" = -28; +"@MMK_R_KO_T" = -112; +"@MMK_R_KO_U" = -51; +"@MMK_R_KO_V" = -110; +"@MMK_R_KO_W" = -74; +"@MMK_R_KO_Y" = -147; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_eight" = -23; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = -27; +"@MMK_R_KO_four" = -89; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_j" = 54; +"@MMK_R_KO_nine" = -33; +"@MMK_R_KO_one" = -90; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_quotedbl" = -112; +"@MMK_R_KO_quotedblleft" = -107; +"@MMK_R_KO_quoteright" = -111; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_seven" = -73; +"@MMK_R_KO_six" = -52; +"@MMK_R_KO_t" = -50; +"@MMK_R_KO_three" = -28; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -28; +"@MMK_R_KO_v" = -76; +"@MMK_R_KO_w" = -47; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -82; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -73; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asterisk" = 26; +"@MMK_R_KO_colon" = -19; +"@MMK_R_KO_comma" = -144; +"@MMK_R_KO_comma.ss01" = -123; +"@MMK_R_KO_e" = -51; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -226; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -62; +"@MMK_R_KO_g" = -43; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -40; +"@MMK_R_KO_hyphen.case" = -21; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 11; +"@MMK_R_KO_n" = -31; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_period.ss01" = -124; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 22; +"@MMK_R_KO_quoteright" = 14; +"@MMK_R_KO_quoteright.ss01" = 23; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_seven" = 34; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_slash" = -96; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -3; +"@MMK_R_KO_two" = -4; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -26; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -21; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -57; +"@MMK_R_KO_S" = -23; +"@MMK_R_KO_T" = -122; +"@MMK_R_KO_U" = -49; +"@MMK_R_KO_V" = -115; +"@MMK_R_KO_W" = -76; +"@MMK_R_KO_Y" = -160; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asterisk" = -144; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = 12; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -35; +"@MMK_R_KO_eight" = -18; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_f" = -48; +"@MMK_R_KO_five" = -26; +"@MMK_R_KO_four" = -13; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -85; +"@MMK_R_KO_i" = -27; +"@MMK_R_KO_j" = 30; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_nine" = -28; +"@MMK_R_KO_one" = -105; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_quotedblleft" = -259; +"@MMK_R_KO_quoteright" = -144; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_seven" = -86; +"@MMK_R_KO_six" = -50; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = -59; +"@MMK_R_KO_three" = -22; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_v" = -75; +"@MMK_R_KO_w" = -52; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = -24; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -48; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = -123; +"@MMK_R_KO_U" = -39; +"@MMK_R_KO_V" = -116; +"@MMK_R_KO_W" = -78; +"@MMK_R_KO_Y" = -164; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -24; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asterisk" = -123; +"@MMK_R_KO_comma.ss01" = 3; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eight" = -13; +"@MMK_R_KO_f" = -48; +"@MMK_R_KO_five" = -17; +"@MMK_R_KO_four" = -5; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -46; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -8; +"@MMK_R_KO_hyphen.case" = -99; +"@MMK_R_KO_i" = -27; +"@MMK_R_KO_j" = 44; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_nine" = -20; +"@MMK_R_KO_one" = -106; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -123; +"@MMK_R_KO_quoteright.ss01" = -123; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_seven" = -92; +"@MMK_R_KO_six" = -41; +"@MMK_R_KO_slash" = 47; +"@MMK_R_KO_t" = -56; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -28; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -49; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -75; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -36; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asterisk" = 7; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -144; +"@MMK_R_KO_e" = -40; +"@MMK_R_KO_egrave" = -37; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_ellipsis" = -272; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -54; +"@MMK_R_KO_g" = -27; +"@MMK_R_KO_guillemetleft" = -42; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_seven" = 22; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -90; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = -10; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -73; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -78; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 25; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asterisk" = 8; +"@MMK_R_KO_comma.ss01" = -123; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = -15; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -44; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = -15; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = -7; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period.ss01" = -124; +"@MMK_R_KO_quotedbl" = 22; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_slash" = -83; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = -11; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -91; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 9; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = -59; +"@MMK_R_KO_a.ss05" = -54; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -144; +"@MMK_R_KO_e" = -66; +"@MMK_R_KO_egrave" = -54; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_ellipsis" = -279; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -77; +"@MMK_R_KO_g" = -51; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -66; +"@MMK_R_KO_hyphen.case" = -31; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -40; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = -25; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_quotedbl" = 16; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_s" = -53; +"@MMK_R_KO_seven" = 21; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_slash" = -107; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -11; +"@MMK_R_KO_two" = -12; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -75; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -36; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asterisk" = 7; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -144; +"@MMK_R_KO_e" = -40; +"@MMK_R_KO_egrave" = -37; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_ellipsis" = -144; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -54; +"@MMK_R_KO_g" = -27; +"@MMK_R_KO_guillemetleft" = -44; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_seven" = 22; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -90; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = -10; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -93; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -81; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -57; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -31; +"@MMK_R_KO_comma" = -144; +"@MMK_R_KO_e" = -70; +"@MMK_R_KO_egrave" = -53; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_ellipsis" = -144; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -3; +"@MMK_R_KO_four" = -79; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -58; +"@MMK_R_KO_hyphen.case" = -28; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -42; +"@MMK_R_KO_nine" = -6; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -144; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_s" = -55; +"@MMK_R_KO_seven" = 18; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_slash" = -109; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -11; +"@MMK_R_KO_two" = -11; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -34; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -83; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -80; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_a.ss05" = -39; +"@MMK_R_KO_asterisk" = 13; +"@MMK_R_KO_comma.ss01" = -123; +"@MMK_R_KO_e" = -53; +"@MMK_R_KO_egrave" = -44; +"@MMK_R_KO_eight" = -16; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -67; +"@MMK_R_KO_g" = -38; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -52; +"@MMK_R_KO_hyphen.case" = -14; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -31; +"@MMK_R_KO_nine" = -9; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period.ss01" = -124; +"@MMK_R_KO_quotedbl" = 24; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 5; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_seven" = 2; +"@MMK_R_KO_six" = -21; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -8; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -82; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -73; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -43; +"@MMK_R_KO_asterisk" = 26; +"@MMK_R_KO_colon" = -19; +"@MMK_R_KO_comma" = -112; +"@MMK_R_KO_comma.ss01" = -112; +"@MMK_R_KO_e" = -51; +"@MMK_R_KO_egrave" = -43; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -112; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -62; +"@MMK_R_KO_g" = -43; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -38; +"@MMK_R_KO_hyphen.case" = -20; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 11; +"@MMK_R_KO_n" = -31; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -112; +"@MMK_R_KO_period.ss01" = -112; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 22; +"@MMK_R_KO_quoteright" = 14; +"@MMK_R_KO_quoteright.ss01" = 23; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_seven" = 34; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_slash" = -96; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -31; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -26; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -64; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_X" = -63; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -4; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = -66; +"@MMK_R_KO_comma.ss01" = -92; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -97; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_l.ss04" = 12; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_period" = -66; +"@MMK_R_KO_period.ss01" = -94; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -36; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -61; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_threesuperior" = 7; +"@MMK_R_KO_trademark" = -55; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -62; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -65; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -52; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = -34; +"@MMK_R_KO_Y" = -92; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -51; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 11; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 18; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -72; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = -20; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -69; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -21; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -19; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -66; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_bracketright" = -45; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = 10; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -40; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_sixsuperior" = -30; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -75; +"@MMK_R_KO_H" = 22; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = -65; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = 28; +"@MMK_R_KO_U" = 28; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 37; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = -46; +"@MMK_R_KO_a.ss05" = -38; +"@MMK_R_KO_asterisk" = 28; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -79; +"@MMK_R_KO_comma.ss01" = -105; +"@MMK_R_KO_e" = -52; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eight" = 8; +"@MMK_R_KO_ellipsis" = -111; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = -64; +"@MMK_R_KO_g" = -32; +"@MMK_R_KO_guillemetleft" = -44; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -46; +"@MMK_R_KO_hyphen.case" = -20; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 17; +"@MMK_R_KO_n" = -15; +"@MMK_R_KO_nine" = 10; +"@MMK_R_KO_one" = 12; +"@MMK_R_KO_parenright" = 3; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -80; +"@MMK_R_KO_period.ss01" = -107; +"@MMK_R_KO_quotedbl" = 45; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quotedblleft.ss01" = 22; +"@MMK_R_KO_quoteright" = 16; +"@MMK_R_KO_quoteright.ss01" = 14; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_seven" = 55; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -11; +"@MMK_R_KO_H" = 12; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 18; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 3; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 15; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 12; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -94; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = -75; +"@MMK_R_KO_O" = -39; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -57; +"@MMK_R_KO_asterisk" = 17; +"@MMK_R_KO_colon" = -35; +"@MMK_R_KO_comma" = -100; +"@MMK_R_KO_comma.ss01" = -114; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -34; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = -127; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -57; +"@MMK_R_KO_hyphen.case" = -36; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = -15; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -104; +"@MMK_R_KO_period.ss01" = -124; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = 4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 26; +"@MMK_R_KO_s" = -55; +"@MMK_R_KO_seven" = 38; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_slash" = -109; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_three" = -5; +"@MMK_R_KO_two" = -4; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -27; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 19; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -24; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 15; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asterisk" = -8; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eight" = 19; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_five" = 15; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = 15; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_parenright.case" = -34; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 18; +"@MMK_R_KO_two" = 15; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 19; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -4; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -22; +"@MMK_R_KO_Z" = 29; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 13; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_five" = 14; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 22; +"@MMK_R_KO_hyphen" = -7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 20; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_three" = 13; +"@MMK_R_KO_two" = 29; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -59; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -60; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -56; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -51; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -59; +"@MMK_R_KO_comma.ss01" = -79; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -93; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_period" = -56; +"@MMK_R_KO_period.ss01" = -73; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = -23; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -67; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -53; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -81; +"@MMK_R_KO_v" = 18; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -26; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -53; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -48; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -51; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = 10; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -52; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -41; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = 17; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -55; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_v" = 16; +"@MMK_R_KO_w" = 22; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -52; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -46; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 15; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = -33; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_trademark" = -60; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -20; +"@MMK_R_KO_bracketright" = -13; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -8; +"@MMK_R_KO_guillemetright" = 22; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 13; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -41; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -62; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -4; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -8; +"@MMK_R_KO_guillemetright" = 22; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -28; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -27; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -20; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -24; +"@MMK_R_KO_comma.ss01" = -45; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 4; +"@MMK_R_KO_ellipsis" = -52; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_five" = 5; +"@MMK_R_KO_four" = 5; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 10; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -61; +"@MMK_R_KO_period" = -24; +"@MMK_R_KO_period.ss01" = -47; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -16; +Tbar = -79; +asciitilde = -70; +asterisk = -82; +backslash = -75; +g.ss06 = 4; +minus = -57; +one = -67; +ordmasculine = -86; +plus = -47; +quotedbl = -82; +registered = -72; +seven = -70; +two = 8; +twosuperior = -54; +}; +Aacute = { +Tbar = -79; +}; +Abrevedotbelow.ss01 = { +T = -84; +}; +Aogonek = { +comma = 38; +parenright = 11; +}; +Atilde = { +ordfeminine = -86; +}; +B = { +Hbar = 25; +hbar = 0; +idieresis = 23; +itilde = 31; +}; +C = { +h = 0; +l = 0; +plus = -18; +three = 19; +}; +D = { +Lslash = 19; +Oslash = 21; +braceright = -40; +bracketright.case = -38; +}; +E = { +H = 0; +idieresis = 61; +}; +Eogonek = { +comma = 33; +}; +F = { +fourinferior = -59; +i = 0; +igrave = 27; +}; +G = { +Lslash = 11; +lslash = 0; +}; +Germandbls = { +S = 20; +}; +H = { +H = 1; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -6; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 9; +itilde = 51; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 25; +D = 30; +E = 30; +H = 25; +Hbar = 89; +I = 25; +L = 25; +M = 25; +O = 13; +R = 25; +S = 39; +U = 36; +W = 48; +i = 26; +}; +I = { +Hbar = 25; +I = 0; +jcircumflex = 53; +}; +Icircumflex = { +Icircumflex = 57; +l.ss04 = 32; +}; +Imacron = { +Imacron = 115; +}; +Itilde = { +itilde = 50; +}; +J = { +Hbar = 31; +itilde = 56; +}; +Jacute = { +Imacron = 62; +}; +K = { +asciitilde = -111; +four = -27; +idieresis = 49; +igrave = 27; +itilde = 45; +less = -63; +logicalnot = -109; +minus = -97; +one = -37; +oslash = -6; +plus = -90; +}; +L = { +H = 0; +Tbar = -78; +asciitilde = -72; +asterisk = -145; +backslash = -82; +equal = -4; +four = 0; +less = -25; +logicalnot = -131; +minus = -90; +one = -90; +ordfeminine = -192; +ordmasculine = -190; +oslash = -7; +plus = -68; +quotedbl = -183; +quoteleft.ss01 = -123; +quoteright = -144; +quoteright.ss01 = -123; +registered = -110; +seven = -72; +twosuperior = -186; +}; +Lcaron = { +A = 10; +O = -28; +U = -11; +Uacute = -11; +V = -15; +a = -12; +hyphen = 0; +hyphen.case = -71; +u = -15; +v = -54; +}; +Lcommaaccent = { +twosuperior = -186; +}; +Lslash = { +twosuperior = -117; +}; +M = { +Hbar = 25; +idieresis = 39; +igrave = 8; +itilde = 50; +}; +N = { +Hbar = 26; +idieresis = 40; +igrave = 9; +itilde = 51; +}; +O = { +Dcroat = 0; +Lslash = 0; +braceright = -60; +bracketright.case = -59; +itilde = 0; +}; +Oslash = { +T = -11; +V = 0; +Y = -11; +parenright = 0; +parenright.case = 0; +}; +P = { +fourinferior = -82; +idieresis = 52; +itilde = 53; +two = 0; +}; +R = { +Hbar = 30; +jcircumflex = 60; +two = 16; +}; +S = { +Hbar = 40; +Lslash = 21; +dollar = 10; +four = 11; +idieresis = 34; +itilde = 37; +lslash = 10; +three = 29; +}; +T = { +Oslash = -23; +a.ss05 = -71; +aacute.ss05 = -64; +abreve = -51; +abreveacute = -51; +acircumflex = -48; +acircumflexacute = -48; +acircumflexdotbelow = -48; +adieresis = -43; +adotbelow.ss05 = -71; +ae = -72; +agrave = -59; +amacron = -40; +ampersand = -42; +aring = -65; +asciitilde = -105; +atilde = -41; +equal = 0; +four = -81; +g.ss06 = -63; +h = -2; +i.ss01 = -13; +iacute = -19; +idieresis = 56; +idotless = -24; +igrave = 10; +itilde = 66; +less = -30; +logicalnot = -147; +minus = -101; +ograve = -65; +plus = -95; +racute = -18; +scaron = -26; +seven = 19; +twoinferior = -118; +udieresis = -18; +udieresis.ss01 = -18; +ugrave = -18; +uhorngrave = -18; +umacron = -18; +ycircumflex = 0; +ygrave = 0; +yhookabove = 0; +zcaron = -10; +zeroinferior = -119; +}; +Tbar = { +A = -80; +Aacute = -80; +Tbar = 26; +a = -48; +comma = -75; +e = -48; +o = -48; +period = -74; +slash = -85; +}; +Tcaron = { +a.ss05 = -71; +}; +Tcedilla = { +a.ss05 = -71; +abreve = -51; +four = -81; +}; +Tcommaaccent = { +a.ss05 = -71; +abreve = -51; +four = -81; +}; +Thorn = { +A = -26; +AE = -27; +Aacute = -26; +J = -31; +O = 9; +Oacute = 9; +V = -34; +Y = -77; +Yacute = -77; +a = 3; +aacute = 3; +e = 6; +o = 7; +oacute = 7; +period = -34; +}; +U = { +Hbar = 35; +jcircumflex = 64; +}; +V = { +four = -68; +iacute = -23; +ibreve = 35; +idieresis = 50; +igrave = 20; +itilde = 52; +minus = -61; +plus = -56; +scaron = -14; +seven = 38; +twoinferior = -79; +}; +W = { +Hbar = 50; +backslash = 45; +idieresis = 62; +igrave = 43; +itilde = 66; +}; +X = { +asciitilde = -121; +four = -41; +less = -72; +logicalnot = -122; +minus = -108; +notequal = -75; +one = -44; +plus = -99; +}; +Y = { +a.ss05 = -95; +agrave = -71; +amacron = -48; +ampersand = -73; +asciitilde = -140; +at = -82; +four = -116; +g.ss06 = -92; +igrave = 21; +less = -70; +logicalnot = -115; +minus = -105; +ograve = -65; +plus = -98; +scaron = -21; +twoinferior = -135; +}; +Z = { +four = 0; +ibreve = 51; +igrave = 31; +itilde = 69; +minus = -60; +plus = -55; +}; +_B.currency = { +_baht.bar = -5; +}; +a = { +braceright = -27; +}; +a.ss05 = { +g.ss06 = 25; +}; +acircumflexacute.ss05 = { +y = -12; +}; +adieresis.ss05 = { +germandbls = 0; +}; +ampersand = { +V = -79; +W = -55; +Y = -123; +quotedbl = -58; +quotedblleft = -52; +}; +aogonek = { +j = 36; +parenright = -9; +}; +aogonek.ss05 = { +parenright = 13; +}; +approxequal = { +parenright = -49; +parenright.case = -50; +}; +asciicircum = { +J = -95; +X = -81; +Y = -55; +bracketright = -60; +comma = -144; +comma.ss01 = -123; +four = -60; +hyphen = -79; +parenright = -70; +parenright.case = -70; +period = -144; +period.ss01 = -124; +slash = -97; +}; +asciitilde = { +I.ss02 = -42; +J = -69; +V = -31; +W = -15; +X = -96; +Y = -67; +Z = -43; +bracketright = -55; +bracketright.case = -56; +comma = -83; +comma.ss01 = -108; +eight = -5; +exclam = 0; +four = 0; +one = 0; +parenright = -62; +parenright.case = -58; +period = -81; +period.ss01 = -106; +question = 0; +quotedbl = -12; +quotedblright = 0; +seven = 0; +slash = -55; +three = 0; +two = 0; +}; +at = { +T = -27; +parenright = -66; +}; +b = { +asterisk = -51; +braceright = -70; +lslash = 0; +one = -26; +}; +backslash = { +T = -92; +V = -103; +Y = -122; +asterisk = -96; +backslash = -88; +quotedbl = -93; +quotedblleft = -89; +quotedblleft.ss01 = -80; +quotedblright = -67; +quotedblright.ss01 = -74; +quoteleft = -89; +quoteright = -67; +quotesingle = -93; +}; +baht = { +parenright = -44; +}; +braceleft = { +p = -9; +}; +bracketleft = { +asciicircum = -61; +asciitilde = -99; +bracketright = 26; +jcircumflex = 67; +p = -2; +pi = -38; +plus = -74; +x = -8; +}; +c = { +asterisk = -46; +braceright = -68; +}; +cent = { +parenright = -71; +}; +colon = { +T = -20; +Y = -70; +four = 0; +one = 0; +parenright = -46; +two = 15; +zero = 0; +}; +colon.ss01 = { +T = -9; +four = -6; +parenright = -46; +}; +comma = { +eightsuperior = -144; +fivesuperior = -144; +foursuperior = -144; +ninesuperior = -144; +onesuperior = -144; +quoteleft = -144; +quotesingle = -112; +sevensuperior = -144; +sixsuperior = -144; +threesuperior = -144; +twosuperior = -134; +}; +comma.ss01 = { +eightsuperior = -123; +fivesuperior = -123; +foursuperior = -123; +ninesuperior = -123; +onesuperior = -123; +sevensuperior = -123; +sixsuperior = -123; +threesuperior = -123; +twosuperior = -123; +}; +copyright = { +Y = -75; +parenright = -69; +}; +d = { +idieresis = 11; +igrave = 0; +itilde = 14; +}; +dcaron = { +C = 31; +H = 124; +bracketright = 125; +eightsuperior = 81; +exclam = 97; +exclam.ss01 = 108; +fivesuperior = 91; +foursuperior = 38; +h = 126; +i = 73; +j = 107; +k = 126; +l = 126; +l.ss03 = 112; +l.ss04 = 144; +ninesuperior = 80; +onesuperior = 102; +parenright = 119; +question = 70; +question.ss01 = 58; +quotedbl = 115; +quotedblleft = 47; +quotedblleft.ss01 = 65; +quoteleft = 49; +quoteleft.ss01 = 65; +quotesingle = 115; +sevensuperior = 125; +sixsuperior = 69; +t = 13; +t_i.liga = 19; +t_t.liga = 12; +threesuperior = 84; +twosuperior = 82; +zcaron = 21; +}; +dcroat = { +i = 0; +igrave = 4; +itilde = 27; +}; +degree = { +J = -97; +comma = -144; +comma.ss01 = -123; +emdash = -68; +endash = -68; +four = -84; +hyphen = -64; +parenright = -54; +parenright.case = -55; +period = -144; +period.ss01 = -124; +slash = -106; +}; +divide = { +parenright = -69; +}; +dollar = { +parenright = -56; +three = 0; +}; +e = { +asterisk = -53; +backslash = -43; +braceright = -70; +germandbls = -1; +one = -28; +seven = -33; +}; +ecircumflexacute = { +t = 0; +}; +eight = { +bracketright = -6; +degree = -24; +}; +eight.dnom = { +degree = -116; +question.ss01 = -109; +quotedbl = -79; +quotedblleft = -68; +quotedblright = -40; +}; +eightsuperior = { +comma = -144; +comma.ss01 = -123; +period = -144; +period.ss01 = -124; +slash = -77; +}; +ellipsis = { +Tbar = -114; +bracketright = -50; +eightsuperior = -192; +fivesuperior = -195; +foursuperior = -201; +ninesuperior = -201; +onesuperior = -149; +parenleft = -33; +parenleft.case = -46; +question = -113; +quoteleft = -144; +quoteright = -144; +quotesingle = -112; +sevensuperior = -182; +sixsuperior = -201; +threesuperior = -188; +twosuperior = -186; +}; +ellipsis.ss01 = { +Tbar = -101; +bracketright = -26; +eightsuperior = -192; +fivesuperior = -195; +foursuperior = -201; +ninesuperior = -201; +onesuperior = -149; +question.ss01 = -119; +quoteleft.ss01 = -123; +quoteright.ss01 = -123; +quotesingle = -112; +sevensuperior = -182; +sixsuperior = -201; +threesuperior = -188; +twosuperior = -186; +}; +emdash = { +foursuperior = -32; +question = -91; +}; +emdash.case = { +X = -90; +quotedblbase = -63; +quotedblbase.ss01 = -114; +}; +endash = { +X = -56; +endash = 0; +foursuperior = -31; +question = -91; +}; +endash.case = { +H = 6; +X = -81; +quotedblbase = -64; +quotedblbase.ss01 = -114; +}; +eng = { +bracketright = -2; +}; +eogonek = { +lslash = 2; +}; +equal = { +T = 0; +equal = 0; +parenright = -58; +parenright.case = -53; +}; +eth = { +a = 16; +e = 15; +g = 26; +hyphen = 32; +parenright = -9; +}; +euro = { +parenright = -64; +parenright.case = -55; +}; +exclamdown = { +T = -32; +V = -41; +Y = -80; +}; +f = { +igrave = 17; +n = 0; +o = 0; +}; +f_f.liga = { +igrave = 12; +}; +f_f_i.liga = { +idieresis = 22; +}; +fi = { +idieresis = 23; +}; +five = { +degree = -27; +ordmasculine = -13; +percent = 0; +}; +five.dnom = { +degree = -91; +question.ss01 = -112; +quotedblleft = -47; +}; +five.numr = { +fraction = -20; +}; +fiveinferior = { +T = -117; +}; +fivesuperior = { +comma = -144; +comma.ss01 = -123; +period = -144; +period.ss01 = -124; +slash = -82; +}; +fl = { +idieresis = 23; +itilde = 25; +periodcentered.loclCAT = 11; +}; +four = { +asciicircum = -67; +bracketright = -38; +bracketright.case = -30; +degree = -68; +ordfeminine = -54; +ordmasculine = -55; +percent = -32; +x = -26; +}; +four.dnom = { +degree = -107; +question.ss01 = -108; +quotedblleft = -58; +}; +fourinferior = { +T = -111; +V = -83; +}; +foursuperior = { +comma = -143; +comma.ss01 = -123; +period = -139; +period.ss01 = -124; +slash = -76; +}; +fraction = { +eight.dnom = -15; +four.dnom = -42; +fourinferior = -39; +seveninferior = 23; +two.dnom = -16; +zero.dnom = -22; +}; +g = { +bracketright = -11; +j = 29; +j.ss01 = 29; +parenright = -29; +slash = 21; +}; +g.ss06 = { +g.ss06 = 33; +}; +gcaron.ss06 = { +gcaron.ss06 = 33; +}; +gdotaccent = { +j = 29; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 33; +}; +germandbls = { +e = 13; +hyphen = 18; +parenright = -47; +}; +greater = { +T = -28; +parenright = -50; +}; +greaterequal = { +T = -21; +}; +guillemetleft = { +pi = 18; +}; +guillemetright = { +X = -75; +bracketright = -61; +}; +guilsinglright = { +X = -74; +}; +h = { +asterisk = -49; +}; +hyphen = { +Lslash = 28; +X = -47; +bracketright = -49; +foursuperior = -19; +pi = 0; +question = -91; +quotedblbase = -23; +quoteleft = -26; +quotesingle = -37; +x = -48; +}; +hyphen.case = { +Dcroat = 25; +X = -82; +bracketright.case = -47; +quotedblbase = -81; +quotedblbase.ss01 = -115; +quotesinglbase = -82; +}; +i = { +T = -14; +idieresis = 19; +jcircumflex = 22; +parenright = -8; +}; +i.ss01 = { +parenright = -20; +}; +iacute = { +rcaron = 11; +}; +icircumflex = { +b = 8; +h = 8; +i = 8; +icircumflex = 40; +j = 22; +k = 8; +l = 8; +l.ss03 = 14; +l.ss04 = 47; +question = 37; +quotedbl = 36; +quoteright = 24; +quotesingle = 36; +}; +idieresis = { +b = 15; +idieresis = 37; +k = 14; +l = 14; +l.ss03 = 20; +l.ss04 = 49; +}; +idotaccent = { +parenright = -8; +}; +idotaccent.ss01 = { +parenright = -20; +}; +imacron = { +b = 16; +imacron = 67; +j = 32; +k = 16; +kcommaaccent = 16; +l = 16; +l.ss04 = 50; +lcommaaccent = 16; +quotedbl = 38; +}; +infinity = { +parenright = -67; +parenright.case = -60; +}; +integral = { +a = -60; +}; +iogonek = { +j = 41; +}; +itilde = { +h = 15; +itilde = 36; +quotedbl = 45; +quotesingle = 45; +}; +j = { +j = 35; +}; +jacute = { +backslash = 47; +iogonek = 16; +}; +jcircumflex = { +i = 13; +jcircumflex = 96; +}; +k = { +oslash = 0; +}; +l = { +at = 0; +idieresis = 13; +igrave = 2; +itilde = 16; +jcircumflex = 24; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -4; +}; +l.ss03 = { +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -13; +}; +l.ss04 = { +periodcentered.loclCAT = 11; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 110; +l = 128; +ncaron = 15; +scaron = 18; +twosuperior = 84; +}; +lcaron.ss03 = { +b = 110; +eightsuperior = 89; +exclam = 109; +exclam.ss01 = 120; +fivesuperior = 90; +k = 109; +ninesuperior = 87; +onesuperior = 110; +question = 91; +quotedbl = 137; +quotesingle = 137; +sevensuperior = 121; +sixsuperior = 76; +}; +lcaron.ss04 = { +exclam.ss01 = 136; +twosuperior = 104; +}; +liraTurkish = { +one = -93; +parenright = -77; +question = -98; +quotedbl = -56; +quotesingle = -56; +seven = -102; +}; +logicalnot = { +Y = -130; +parenright = -98; +seven = -50; +}; +m = { +asterisk = -49; +braceright = -24; +twosuperior = -23; +}; +minus = { +T = -101; +X = -108; +comma = -69; +one = -13; +parenright = -82; +parenright.case = -77; +period = -66; +seven = -23; +three = -28; +two = -30; +}; +mu = { +mu = 13; +parenright = -44; +quotesingle = -31; +}; +multiply = { +parenright = -77; +parenright.case = -75; +}; +n = { +asterisk = -49; +at = 0; +braceright = -24; +degree = -57; +g.ss06 = 6; +n = 0; +one = -25; +ordmasculine = -48; +}; +ncaron = { +Yacute = -48; +}; +nine = { +bracketright = -39; +degree = -29; +}; +nine.dnom = { +degree = -125; +question = -100; +question.ss01 = -111; +quotedbl = -85; +quotedblleft = -80; +quotedblleft.ss01 = -55; +quotedblright = -48; +quotedblright.ss01 = -54; +}; +ninesuperior = { +comma = -144; +comma.ss01 = -123; +fraction = -21; +period = -144; +period.ss01 = -124; +slash = -87; +}; +notequal = { +parenright = -77; +parenright.case = -74; +}; +numbersign = { +parenright = -46; +}; +o = { +asterisk = -54; +backslash = -42; +braceright = -72; +germandbls = -2; +lslash = 0; +n = 0; +one = -29; +}; +oacute = { +lslash = 0; +}; +ocircumflexacute = { +bracketright = 31; +parenright = 37; +}; +odieresis = { +germandbls = -2; +}; +ohorn = { +i = 17; +m = 16; +n = 16; +parenright = -18; +}; +ohornacute = { +c = 12; +i = 17; +m = 16; +n = 16; +p = 12; +t = 27; +t_i.liga = 27; +t_t.liga = 27; +}; +ohorndotbelow = { +c = 12; +i = 17; +n = 16; +p = 12; +t = 27; +t_i.liga = 27; +t_t.liga = 27; +u = 18; +}; +ohorngrave = { +i = 17; +n = 16; +parenright = -18; +}; +ohornhookabove = { +i = 17; +n = 16; +}; +ohorntilde = { +i = 17; +n = 16; +}; +ohungarumlaut = { +parenright = 26; +}; +one = { +comma.ss01 = -31; +degree = -30; +equal = 0; +four = 0; +icircumflex = 22; +nine = 6; +one = 0; +parenright = -6; +percent = 0; +period.ss01 = -34; +seven = 0; +three = 0; +two = 2; +zero = 0; +}; +one.dnom = { +degree = -95; +one.dnom = 0; +question.ss01 = -118; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -136; +comma.ss01 = -123; +period = -133; +period.ss01 = -124; +slash = -77; +}; +ordfeminine = { +comma = -144; +comma.ss01 = -123; +period = -144; +period.ss01 = -124; +}; +ordmasculine = { +comma = -144; +comma.ss01 = -123; +hyphen = -50; +parenright = -41; +period = -144; +period.ss01 = -124; +slash = -92; +}; +oslash = { +d = 2; +e = 6; +g = 15; +hyphen = 24; +parenright = -28; +y = 0; +}; +p = { +asterisk = -51; +backslash = -41; +braceright = -70; +lslash = 0; +one = -26; +}; +parenleft = { +Dcroat = -36; +H = 0; +Icircumflex = 52; +Oslash = -27; +ampersand = -63; +approxequal = -69; +asciicircum = -73; +asciitilde = -107; +at = -66; +cent = -71; +copyright = -70; +degree = -56; +divide = -71; +dollar = -57; +equal = -60; +euro = -72; +greaterequal = -32; +i = -7; +idotaccent = -7; +infinity = -68; +iogonek = 18; +jcircumflex = 71; +less = -51; +literSign = -61; +logicalnot = -97; +minus = -83; +mu = -7; +multiply = -78; +notequal = -78; +numbersign = -46; +oslash = -17; +p = -9; +parenleft = -51; +pi = -46; +plus = -81; +plusminus = -28; +published = -70; +question = -28; +quotedblbase = 0; +quoteleft = -55; +radical = -53; +scaron = -22; +section = -48; +sterling = -41; +x = -37; +}; +parenleft.case = { +Icircumflex = 59; +approxequal = -56; +asciicircum = -72; +asciitilde = -103; +dollar = -48; +equal = -55; +euro = -65; +minus = -79; +numbersign = -45; +parenleft.case = -41; +plus = -75; +question = -29; +quotedblbase = -32; +quoteleft = -56; +}; +parenright = { +bracketright = -24; +comma = 2; +comma.ss01 = -19; +hyphen = 23; +parenleft = 27; +parenright = -51; +period = 1; +period.ss01 = -26; +quotedbl = -10; +}; +parenright.case = { +comma = -13; +comma.ss01 = -37; +parenright.case = -41; +period = -14; +period.ss01 = -38; +}; +percent = { +asterisk = -89; +bracketright = -52; +comma.ss01 = -22; +eightsuperior = -66; +fivesuperior = -77; +foursuperior = -87; +ninesuperior = -73; +onesuperior = -76; +parenright = -70; +parenright.case = -45; +period = 0; +period.ss01 = -25; +question = -93; +question.ss01 = -106; +quotedbl = -76; +quotedblleft = -85; +quotedblright = -53; +quoteleft = -85; +quoteright = -53; +quotesingle = -76; +sevensuperior = -73; +sixsuperior = -83; +threesuperior = -69; +twosuperior = -45; +}; +period = { +bracketright = -13; +eightsuperior = -144; +fivesuperior = -144; +foursuperior = -144; +ninesuperior = -144; +onesuperior = -144; +ordfeminine = -144; +ordmasculine = -144; +parenleft.case = -14; +question = -88; +quoteleft = -144; +quotesingle = -112; +sevensuperior = -144; +sixsuperior = -144; +threesuperior = -144; +twosuperior = -130; +}; +period.ss01 = { +bracketright = -26; +eightsuperior = -124; +fivesuperior = -124; +foursuperior = -124; +ninesuperior = -124; +onesuperior = -124; +ordfeminine = -124; +ordmasculine = -124; +question.ss01 = -119; +sevensuperior = -124; +sixsuperior = -124; +threesuperior = -124; +twosuperior = -124; +}; +periodcentered.loclCAT = { +l = 0; +l.ss03 = 14; +}; +perthousand = { +asterisk = -144; +parenright = -73; +parenright.case = -57; +question = -107; +question.ss01 = -119; +quotedblleft = -86; +quotedblleft.ss01 = -62; +quotedblright = -53; +quotedblright.ss01 = -60; +quoteleft = -86; +quoteright = -53; +}; +pi = { +hyphen = 0; +parenright = -36; +period = 4; +pi = 17; +quotesingle = -16; +}; +plus = { +J = -78; +T = -95; +V = -54; +X = -98; +Y = -97; +braceright = -81; +bracketright = -73; +comma = -69; +comma.ss01 = -110; +one = 0; +parenright = -80; +parenright.case = -74; +period = -66; +period.ss01 = -110; +quotedbl = -32; +seven = -14; +slash = -62; +three = -21; +two = -9; +}; +published = { +parenright = -69; +}; +q = { +bracketright = -2; +j = 30; +parenright = -9; +}; +question = { +A = -71; +J = -70; +comma = -75; +hyphen = -27; +parenright = -35; +parenright.case = -34; +period = -76; +question = 15; +questiondown = -77; +slash = -78; +}; +question.ss01 = { +comma.ss01 = -111; +parenright = -37; +parenright.case = -36; +period.ss01 = -113; +questiondown.ss01 = -88; +}; +questiondown.case = { +T = -87; +V = -74; +Y = -98; +quotedbl = -93; +quotedblleft = -108; +quotedblleft.ss01 = -105; +quoteright = -100; +}; +questiondown.ss01 = { +C = -89; +Q = -89; +Q.ss09 = -89; +T = -114; +V = -124; +Y = -162; +four = -104; +quotedbl = -127; +quotedblleft.ss01 = -119; +quotesingle = -112; +}; +quotedbl = { +ellipsis.ss01 = -226; +exclamdown = -45; +g.ss06 = -43; +icircumflex = 39; +mu = -31; +questiondown = -113; +questiondown.case = -74; +questiondown.ss01 = -117; +underscore = -226; +}; +quotedblbase = { +copyright = -60; +divide = -98; +equal = -37; +euro = -67; +minus = -107; +p = -9; +plus = -107; +question = -106; +quotedblright = -279; +quoteleft = -144; +}; +quotedblbase.ss01 = { +divide = -99; +minus = -99; +plus = -99; +question.ss01 = -114; +quotedblright.ss01 = -246; +}; +quotedblleft = { +g.ss06 = -28; +mu = -24; +questiondown = -100; +questiondown.case = -65; +quotedblbase = -259; +underscore = -231; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -246; +questiondown.ss01 = -112; +quotedblbase.ss01 = -246; +underscore = -231; +}; +quotedblright = { +asciitilde = -97; +questiondown = -119; +questiondown.case = -82; +quotesinglbase = -144; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -246; +questiondown.case = -81; +questiondown.ss01 = -115; +}; +quoteleft = { +questiondown = -100; +questiondown.case = -65; +quotedblbase = -144; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -123; +}; +quoteright = { +icircumflex = 31; +questiondown = -115; +quotedblbase = -144; +}; +quoteright.ss01 = { +questiondown.ss01 = -116; +quotedblbase.ss01 = -123; +}; +quotesinglbase = { +T = -121; +V = -113; +Y = -144; +minus = -106; +plus = -93; +question = -104; +quotedblleft = -144; +quoteleft = -144; +}; +quotesinglbase.ss01 = { +T = -122; +V = -115; +Y = -123; +question.ss01 = -112; +}; +quotesingle = { +Hbar = 43; +g.ss06 = -43; +icircumflex = 39; +igrave = 10; +imacron = 46; +itilde = 51; +l.ss04 = 43; +questiondown = -106; +questiondown.case = -74; +underscore = -112; +}; +r = { +braceright = -59; +fourinferior = -74; +g.ss06 = 0; +parenright = -53; +}; +radical = { +A = -94; +}; +rcaron = { +sevensuperior = 0; +}; +registered = { +comma = -106; +comma.ss01 = -123; +parenright = -60; +parenright.case = -60; +period = -104; +period.ss01 = -124; +slash = -79; +}; +s = { +asterisk = -44; +braceright = -53; +l = 0; +}; +scaron = { +T = -26; +}; +semicolon = { +hyphen = -5; +}; +seven = { +minus = -45; +percent = 24; +plus = -39; +underscore = -79; +}; +seven.dnom = { +question.ss01 = -112; +}; +seven.numr = { +fraction = -34; +}; +seveninferior = { +parenright = -63; +}; +sevensuperior = { +A = -100; +comma = -144; +comma.ss01 = -123; +fraction = -34; +period = -144; +period.ss01 = -124; +slash = -111; +}; +six = { +bracketright = -16; +degree = -22; +}; +six.dnom = { +degree = -117; +question.ss01 = -111; +quotedbl = -79; +quotedblleft = -68; +quotedblleft.ss01 = -49; +quotedblright = -40; +}; +sixinferior = { +T = -116; +}; +sixsuperior = { +comma = -144; +comma.ss01 = -123; +period = -144; +period.ss01 = -124; +slash = -82; +}; +slash = { +fourinferior = -102; +g.ss06 = -57; +ibreve = 33; +l.ss04 = 43; +mu = -32; +quotedblbase = -119; +quotedblbase.ss01 = -114; +quotesinglbase = -119; +underscore = -122; +}; +sterling = { +two = 16; +}; +t_i.liga = { +idieresis = 22; +}; +tcaron = { +b = 67; +exclam = 66; +h = 67; +hyphen = 0; +i = 52; +j = 76; +k = 67; +parenright = 66; +quotedbl = 81; +quotedblleft = 43; +quotesingle = 81; +}; +tcedilla = { +parenright = 5; +}; +tenge = { +comma = -106; +comma.ss01 = -123; +period = -107; +period.ss01 = -124; +slash = -76; +}; +three = { +bracketright = -7; +}; +three.dnom = { +degree = -116; +question.ss01 = -109; +quotedbl = -79; +quotedblleft = -68; +quotedblright = -40; +}; +three.numr = { +fraction = -13; +}; +threeinferior = { +T = -116; +V = -79; +Y = -134; +}; +threesuperior = { +comma = -144; +comma.ss01 = -123; +fraction = -4; +parenright = -25; +period = -144; +period.ss01 = -124; +slash = -78; +}; +trademark = { +comma = -144; +comma.ss01 = -123; +hyphen = -47; +period = -144; +period.ss01 = -124; +slash = -106; +}; +two = { +percent = 7; +}; +two.dnom = { +degree = -116; +question.ss01 = -113; +quotedbl = -79; +quotedblleft = -68; +quotedblright = -40; +}; +twoinferior = { +T = -116; +V = -77; +Y = -133; +}; +twosuperior = { +comma = -134; +comma.ss01 = -123; +parenright = -25; +parenright.case = -25; +period = -131; +period.ss01 = -124; +slash = -69; +}; +uhorn = { +a = -29; +ohorn = -29; +ohornacute = -29; +ohorndotbelow = -29; +ohorndotbelow.ss01 = -29; +ohorngrave = -29; +ohornhookabove = -29; +ohorntilde = -28; +}; +uhornacute = { +a = -29; +c = -29; +}; +uhorndotbelow = { +a = -29; +c = -29; +comma = -30; +period = -31; +}; +uhorngrave = { +a = -29; +a.ss05 = -23; +}; +uhornhookabove = { +a = -29; +comma = -30; +comma.ss01 = -54; +period = -31; +period.ss01 = -56; +}; +uhorntilde = { +a = -29; +comma = -30; +period = -31; +}; +uhungarumlaut = { +parenright = 14; +}; +underscore = { +C = -68; +O = -68; +T = -98; +V = -112; +W = -64; +Y = -133; +asterisk = -145; +four = -115; +one = -81; +quotedbl = -226; +quotedblright = -231; +quotedblright.ss01 = -231; +quotesingle = -112; +seven = -60; +six = -51; +v = -71; +}; +uogonek = { +j = 34; +parenright = -6; +}; +v = { +braceright = -55; +n = 0; +}; +w = { +braceright = -54; +}; +x = { +four = -32; +}; +y = { +braceright = -54; +}; +ydotbelow = { +period = -39; +}; +zero = { +braceright = -45; +bracketright = -43; +bracketright.case = -42; +degree = -31; +percent = 0; +}; +zero.dnom = { +degree = -125; +question = -99; +question.ss01 = -111; +quotedbl = -85; +quotedblleft = -80; +quotedblleft.ss01 = -55; +quotedblright = -49; +quotedblright.ss01 = -54; +quoteleft = -80; +}; +zeroinferior = { +parenright = -56; +}; +zerosuperior = { +comma = -144; +comma.ss01 = -123; +fraction = -18; +period = -144; +period.ss01 = -124; +slash = -86; +}; +}; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 34; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 26; +"@MMK_R_KO_O" = -41; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -142; +"@MMK_R_KO_U" = -36; +"@MMK_R_KO_V" = -158; +"@MMK_R_KO_W" = -86; +"@MMK_R_KO_X" = 31; +"@MMK_R_KO_Y" = -156; +"@MMK_R_KO_Z" = 36; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -151; +"@MMK_R_KO_bracketright" = -81; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eightsuperior" = -88; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_fivesuperior" = -94; +"@MMK_R_KO_foursuperior" = -96; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -37; +"@MMK_R_KO_hyphen.case" = -67; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -91; +"@MMK_R_KO_onesuperior" = -111; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -86; +"@MMK_R_KO_question.ss01" = -101; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -137; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -134; +"@MMK_R_KO_six" = -26; +"@MMK_R_KO_sixsuperior" = -98; +"@MMK_R_KO_slash" = 30; +"@MMK_R_KO_t" = -45; +"@MMK_R_KO_threesuperior" = -87; +"@MMK_R_KO_trademark" = -182; +"@MMK_R_KO_u" = -19; +"@MMK_R_KO_underscore" = 16; +"@MMK_R_KO_v" = -89; +"@MMK_R_KO_w" = -66; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = -70; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -21; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -27; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -12; +"@MMK_R_KO_Y" = -22; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -38; +"@MMK_R_KO_bracketright" = -41; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -48; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 26; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 47; +"@MMK_R_KO_imacron" = 94; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = -33; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 9; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -17; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -43; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -20; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -32; +"@MMK_R_KO_J" = -45; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 28; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -33; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = -23; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -22; +"@MMK_R_KO_bracketright" = -71; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -51; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -70; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = -38; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 56; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -69; +"@MMK_R_KO_period" = -39; +"@MMK_R_KO_period.ss01" = -59; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = 10; +"@MMK_R_KO_slash" = -28; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -53; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -41; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = -51; +"@MMK_R_KO_J" = -57; +"@MMK_R_KO_O" = 32; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -58; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = -43; +"@MMK_R_KO_a" = 24; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -63; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 24; +"@MMK_R_KO_egrave" = 24; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -84; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 35; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 38; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -81; +"@MMK_R_KO_parenright.case" = -76; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 26; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 7; +"@MMK_R_KO_trademark" = -61; +"@MMK_R_KO_u" = 15; +"@MMK_R_KO_underscore" = -65; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -41; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -51; +"@MMK_R_KO_J" = -57; +"@MMK_R_KO_O" = 32; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -58; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = -43; +"@MMK_R_KO_a" = 24; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_bracketright" = -63; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 24; +"@MMK_R_KO_egrave" = 24; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -84; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 35; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -81; +"@MMK_R_KO_parenright.case" = -76; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_threesuperior" = 7; +"@MMK_R_KO_u" = 15; +"@MMK_R_KO_y" = 14; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 25; +"@MMK_R_KO_X" = 18; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = -30; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -36; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -53; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -40; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -49; +"@MMK_R_KO_hyphen.case" = -8; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 11; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 38; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_parenright.case" = -10; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -32; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -21; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -41; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -88; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = -144; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = 16; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asciicircum" = -60; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = -58; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -230; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -56; +"@MMK_R_KO_g" = -25; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = -59; +"@MMK_R_KO_hyphen" = -45; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = 38; +"@MMK_R_KO_n" = -38; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -31; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -28; +"@MMK_R_KO_sevensuperior" = 3; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = -51; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = -31; +"@MMK_R_KO_underscore" = -224; +"@MMK_R_KO_v" = -44; +"@MMK_R_KO_w" = -36; +"@MMK_R_KO_x" = -74; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = -107; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -45; +"@MMK_R_KO_J" = -52; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -51; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -37; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = -46; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = -35; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -39; +"@MMK_R_KO_bracketright" = -65; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -42; +"@MMK_R_KO_comma.ss01" = -56; +"@MMK_R_KO_e" = 19; +"@MMK_R_KO_egrave" = 19; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -79; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 21; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 33; +"@MMK_R_KO_hyphen.case" = 19; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 42; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -72; +"@MMK_R_KO_parenright.case" = -67; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 23; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -62; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_underscore" = -55; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -52; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -37; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 21; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 47; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -24; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -39; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -45; +"@MMK_R_KO_bracketright" = -3; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -31; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 90; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = -9; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 1; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -15; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 45; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 34; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 34; +"@MMK_R_KO_a" = -31; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asciicircum" = -85; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -38; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -81; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -36; +"@MMK_R_KO_hyphen" = -99; +"@MMK_R_KO_hyphen.case" = -99; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 20; +"@MMK_R_KO_imacron" = 11; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 38; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -17; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = 29; +"@MMK_R_KO_t" = -41; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -10; +"@MMK_R_KO_u" = -31; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -89; +"@MMK_R_KO_w" = -77; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -88; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -20; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -22; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -57; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 49; +"@MMK_R_KO_imacron" = 97; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 4; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -22; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = 7; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -29; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 33; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 21; +"@MMK_R_KO_X" = 25; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -90; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_egrave" = -37; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -76; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -80; +"@MMK_R_KO_hyphen.case" = -111; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 59; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -3; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -14; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = -21; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = -45; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_underscore" = 13; +"@MMK_R_KO_v" = -80; +"@MMK_R_KO_w" = -66; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -73; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = -70; +"@MMK_R_KO_S" = -32; +"@MMK_R_KO_T" = -138; +"@MMK_R_KO_U" = -54; +"@MMK_R_KO_V" = -181; +"@MMK_R_KO_W" = -89; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = -146; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -16; +"@MMK_R_KO_asciicircum" = -288; +"@MMK_R_KO_bracketright" = -90; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -53; +"@MMK_R_KO_egrave" = -51; +"@MMK_R_KO_eightsuperior" = -220; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -46; +"@MMK_R_KO_fivesuperior" = -220; +"@MMK_R_KO_foursuperior" = -220; +"@MMK_R_KO_g" = -22; +"@MMK_R_KO_guillemetleft" = -90; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -189; +"@MMK_R_KO_hyphen.case" = -189; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_icircumflex" = -12; +"@MMK_R_KO_imacron" = -12; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_l.ss04" = -12; +"@MMK_R_KO_n" = -12; +"@MMK_R_KO_ninesuperior" = -223; +"@MMK_R_KO_onesuperior" = -111; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -85; +"@MMK_R_KO_question.ss01" = -100; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -137; +"@MMK_R_KO_quotedblleft.ss01" = -128; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -137; +"@MMK_R_KO_quoteright.ss01" = -128; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_sevensuperior" = -185; +"@MMK_R_KO_six" = -44; +"@MMK_R_KO_sixsuperior" = -223; +"@MMK_R_KO_slash" = 16; +"@MMK_R_KO_t" = -63; +"@MMK_R_KO_threesuperior" = -214; +"@MMK_R_KO_trademark" = -280; +"@MMK_R_KO_u" = -47; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -104; +"@MMK_R_KO_w" = -77; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = -99; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = -57; +"@MMK_R_KO_S" = -32; +"@MMK_R_KO_T" = -138; +"@MMK_R_KO_U" = -48; +"@MMK_R_KO_V" = -180; +"@MMK_R_KO_W" = -89; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = -146; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -16; +"@MMK_R_KO_bracketright" = -90; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -53; +"@MMK_R_KO_egrave" = -52; +"@MMK_R_KO_eightsuperior" = -122; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = -133; +"@MMK_R_KO_foursuperior" = -113; +"@MMK_R_KO_guillemetleft" = -90; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -166; +"@MMK_R_KO_hyphen.case" = -138; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_ninesuperior" = -135; +"@MMK_R_KO_onesuperior" = -111; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -85; +"@MMK_R_KO_question.ss01" = -100; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -137; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -23; +"@MMK_R_KO_sevensuperior" = -185; +"@MMK_R_KO_sixsuperior" = -135; +"@MMK_R_KO_slash" = 16; +"@MMK_R_KO_threesuperior" = -116; +"@MMK_R_KO_u" = -44; +"@MMK_R_KO_y" = -96; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -41; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -51; +"@MMK_R_KO_J" = -57; +"@MMK_R_KO_O" = 33; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -57; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = -43; +"@MMK_R_KO_a" = 25; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 25; +"@MMK_R_KO_egrave" = 25; +"@MMK_R_KO_eightsuperior" = 5; +"@MMK_R_KO_ellipsis" = -84; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 12; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 25; +"@MMK_R_KO_hyphen.case" = 36; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 39; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -80; +"@MMK_R_KO_parenright.case" = -75; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = -61; +"@MMK_R_KO_u" = 16; +"@MMK_R_KO_underscore" = -64; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -41; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -51; +"@MMK_R_KO_J" = -57; +"@MMK_R_KO_O" = 33; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -57; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = -51; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = -43; +"@MMK_R_KO_a" = 24; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 25; +"@MMK_R_KO_egrave" = 25; +"@MMK_R_KO_eightsuperior" = 5; +"@MMK_R_KO_ellipsis" = -84; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 12; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 25; +"@MMK_R_KO_hyphen.case" = 36; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -80; +"@MMK_R_KO_parenright.case" = -75; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -35; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = -61; +"@MMK_R_KO_u" = 16; +"@MMK_R_KO_underscore" = -64; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -40; +"@MMK_R_KO_O" = 33; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_X" = -48; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -61; +"@MMK_R_KO_e" = 25; +"@MMK_R_KO_ellipsis" = -84; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 25; +"@MMK_R_KO_hyphen.case" = 36; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_slash" = -35; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -79; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -20; +"@MMK_R_KO_J" = -154; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = -29; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = -31; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -63; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = 20; +"@MMK_R_KO_ellipsis" = -230; +"@MMK_R_KO_exclam" = 26; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = 9; +"@MMK_R_KO_foursuperior" = 21; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = -46; +"@MMK_R_KO_hyphen.case" = 13; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 89; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 10; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -54; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 30; +"@MMK_R_KO_question.ss01" = 3; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 8; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_sixsuperior" = 23; +"@MMK_R_KO_slash" = -90; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 20; +"@MMK_R_KO_trademark" = -32; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -224; +"@MMK_R_KO_v" = 27; +"@MMK_R_KO_w" = 38; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 23; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 31; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 17; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -73; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -55; +"@MMK_R_KO_W" = -43; +"@MMK_R_KO_X" = 27; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -50; +"@MMK_R_KO_bracketright" = -60; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 9; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -34; +"@MMK_R_KO_quotedblleft" = -47; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteleft" = -47; +"@MMK_R_KO_quoteright" = -34; +"@MMK_R_KO_quoteright.ss01" = -30; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -52; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 33; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -75; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = -9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 98; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = 18; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -11; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 8; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 29; +"@MMK_R_KO_T" = -36; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = -10; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 20; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_asciicircum" = -47; +"@MMK_R_KO_bracketright" = -52; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 21; +"@MMK_R_KO_egrave" = 21; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 20; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_hyphen.case" = -10; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 69; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = -9; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 17; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_trademark" = -59; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -19; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 29; +"@MMK_R_KO_T" = -36; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = -10; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 20; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_bracketright" = -48; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 21; +"@MMK_R_KO_egrave" = 21; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 20; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_hyphen.case" = -10; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 69; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = -9; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 17; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -142; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = -137; +"@MMK_R_KO_O" = -57; +"@MMK_R_KO_S" = -27; +"@MMK_R_KO_T" = 17; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 16; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -155; +"@MMK_R_KO_a.ss05" = -67; +"@MMK_R_KO_asciicircum" = -81; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = -71; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -154; +"@MMK_R_KO_egrave" = -90; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -182; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -60; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -83; +"@MMK_R_KO_g" = -153; +"@MMK_R_KO_guillemetleft" = -110; +"@MMK_R_KO_guillemetright" = -110; +"@MMK_R_KO_hyphen" = -138; +"@MMK_R_KO_hyphen.case" = -138; +"@MMK_R_KO_i" = -26; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -26; +"@MMK_R_KO_l.ss04" = 37; +"@MMK_R_KO_n" = -142; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -31; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -17; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -156; +"@MMK_R_KO_sevensuperior" = 6; +"@MMK_R_KO_six" = -46; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = -134; +"@MMK_R_KO_t" = -68; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -7; +"@MMK_R_KO_u" = -132; +"@MMK_R_KO_underscore" = -157; +"@MMK_R_KO_v" = -152; +"@MMK_R_KO_w" = -146; +"@MMK_R_KO_x" = -155; +"@MMK_R_KO_y" = -145; +"@MMK_R_KO_z" = -156; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -46; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -38; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -76; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_imacron" = 102; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 31; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = 4; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -40; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = 3; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -50; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -46; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -76; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 31; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = 4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = -40; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = 3; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 28; +"@MMK_R_KO_I.ss02" = 55; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_T" = 60; +"@MMK_R_KO_U" = 39; +"@MMK_R_KO_V" = 67; +"@MMK_R_KO_X" = 46; +"@MMK_R_KO_Y" = 67; +"@MMK_R_KO_Z" = 50; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_bracketright" = 106; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_eightsuperior" = 41; +"@MMK_R_KO_ellipsis" = -76; +"@MMK_R_KO_exclam" = 56; +"@MMK_R_KO_fivesuperior" = 45; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = 42; +"@MMK_R_KO_onesuperior" = 43; +"@MMK_R_KO_parenright" = 106; +"@MMK_R_KO_parenright.case" = 106; +"@MMK_R_KO_period" = -40; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_question" = 24; +"@MMK_R_KO_question.ss01" = 2; +"@MMK_R_KO_quotedbl" = 59; +"@MMK_R_KO_quoteright" = 45; +"@MMK_R_KO_quoteright.ss01" = 37; +"@MMK_R_KO_sevensuperior" = 83; +"@MMK_R_KO_sixsuperior" = 32; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_threesuperior" = 41; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -158; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 29; +"@MMK_R_KO_J" = -152; +"@MMK_R_KO_O" = -41; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 34; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = 33; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -77; +"@MMK_R_KO_a.ss05" = -69; +"@MMK_R_KO_asciicircum" = -73; +"@MMK_R_KO_bracketright" = -7; +"@MMK_R_KO_colon" = -38; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -79; +"@MMK_R_KO_egrave" = -77; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -209; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = -36; +"@MMK_R_KO_g" = -75; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -96; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 40; +"@MMK_R_KO_imacron" = 96; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 45; +"@MMK_R_KO_n" = -58; +"@MMK_R_KO_ninesuperior" = 7; +"@MMK_R_KO_onesuperior" = 11; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 16; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 12; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 7; +"@MMK_R_KO_quoteright.ss01" = 7; +"@MMK_R_KO_s" = -71; +"@MMK_R_KO_sevensuperior" = 22; +"@MMK_R_KO_six" = -37; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -174; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -45; +"@MMK_R_KO_underscore" = -191; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_x" = -38; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = -53; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -93; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 34; +"@MMK_R_KO_J" = -92; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = 39; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 36; +"@MMK_R_KO_W" = 40; +"@MMK_R_KO_X" = 11; +"@MMK_R_KO_Y" = 32; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -46; +"@MMK_R_KO_asciicircum" = -56; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -52; +"@MMK_R_KO_egrave" = -51; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -117; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = -47; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = -58; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 114; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 45; +"@MMK_R_KO_n" = -28; +"@MMK_R_KO_ninesuperior" = 8; +"@MMK_R_KO_onesuperior" = 12; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 10; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_quoteright.ss01" = 18; +"@MMK_R_KO_s" = -40; +"@MMK_R_KO_sevensuperior" = 21; +"@MMK_R_KO_six" = -22; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -97; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = 2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_underscore" = -115; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -19; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = -25; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 29; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_X" = 26; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = 30; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -98; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -74; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -80; +"@MMK_R_KO_hyphen.case" = -107; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 62; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -19; +"@MMK_R_KO_question.ss01" = -27; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = -43; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_underscore" = 13; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -63; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -68; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -157; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = -145; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = 16; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 33; +"@MMK_R_KO_W" = 33; +"@MMK_R_KO_X" = 11; +"@MMK_R_KO_Y" = 32; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -108; +"@MMK_R_KO_a.ss05" = -79; +"@MMK_R_KO_asciicircum" = -84; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = -59; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -114; +"@MMK_R_KO_egrave" = -82; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -199; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -43; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -56; +"@MMK_R_KO_g" = -103; +"@MMK_R_KO_guillemetleft" = -110; +"@MMK_R_KO_guillemetright" = -69; +"@MMK_R_KO_hyphen" = -144; +"@MMK_R_KO_hyphen.case" = -101; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 85; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 37; +"@MMK_R_KO_n" = -77; +"@MMK_R_KO_ninesuperior" = 2; +"@MMK_R_KO_onesuperior" = 4; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -89; +"@MMK_R_KO_sevensuperior" = 19; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = -150; +"@MMK_R_KO_t" = -44; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -69; +"@MMK_R_KO_underscore" = -170; +"@MMK_R_KO_v" = -49; +"@MMK_R_KO_w" = -53; +"@MMK_R_KO_x" = -58; +"@MMK_R_KO_y" = -49; +"@MMK_R_KO_z" = -63; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = -45; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 27; +"@MMK_R_KO_X" = 30; +"@MMK_R_KO_Y" = 21; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -46; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -83; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -49; +"@MMK_R_KO_egrave" = -36; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -64; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = -161; +"@MMK_R_KO_hyphen.case" = -111; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 42; +"@MMK_R_KO_imacron" = 81; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -9; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_sevensuperior" = 6; +"@MMK_R_KO_six" = -32; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 17; +"@MMK_R_KO_t" = -44; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = -54; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -144; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -58; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -77; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -53; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -27; +"@MMK_R_KO_quotedbl" = -31; +"@MMK_R_KO_quotedblleft" = -58; +"@MMK_R_KO_quotedblleft.ss01" = -44; +"@MMK_R_KO_quoteleft" = -58; +"@MMK_R_KO_quoteright" = -48; +"@MMK_R_KO_quoteright.ss01" = -36; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -69; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -78; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 1; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 23; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -146; +"@MMK_R_KO_U" = -22; +"@MMK_R_KO_V" = -85; +"@MMK_R_KO_W" = -67; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -123; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -79; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = -37; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_fivesuperior" = -43; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -74; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -59; +"@MMK_R_KO_question.ss01" = -74; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -95; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -78; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_sixsuperior" = -42; +"@MMK_R_KO_slash" = 30; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_trademark" = -94; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 19; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 23; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -96; +"@MMK_R_KO_U" = -22; +"@MMK_R_KO_V" = -64; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -82; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -70; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -37; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -41; +"@MMK_R_KO_foursuperior" = -40; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -62; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -53; +"@MMK_R_KO_question.ss01" = -71; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -78; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -68; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = -42; +"@MMK_R_KO_slash" = 35; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 19; +"@MMK_R_KO_v" = -34; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 23; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_T" = -143; +"@MMK_R_KO_a" = -18; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = -47; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -151; +"@MMK_R_KO_H" = -44; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_T" = -81; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_e" = -64; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_i" = -43; +"@MMK_R_KO_n" = -52; +"@MMK_R_KO_t" = -7; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -173; +"@MMK_R_KO_H" = -91; +"@MMK_R_KO_O" = -81; +"@MMK_R_KO_T" = -225; +"@MMK_R_KO_a" = -90; +"@MMK_R_KO_e" = -90; +"@MMK_R_KO_f" = -86; +"@MMK_R_KO_i" = -84; +"@MMK_R_KO_n" = -100; +"@MMK_R_KO_t" = -89; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -112; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -146; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -19; +"@MMK_R_KO_a" = -51; +"@MMK_R_KO_a.ss05" = -48; +"@MMK_R_KO_asterisk" = 27; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_eight" = 12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -105; +"@MMK_R_KO_g" = -49; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -146; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = 18; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_parenright.case" = -47; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -43; +"@MMK_R_KO_seven" = 31; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -131; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 18; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -84; +"@MMK_R_KO_O" = -63; +"@MMK_R_KO_S" = -51; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = -20; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -82; +"@MMK_R_KO_a.ss05" = -83; +"@MMK_R_KO_asterisk" = -66; +"@MMK_R_KO_colon" = -71; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = -82; +"@MMK_R_KO_egrave" = -82; +"@MMK_R_KO_eight" = -40; +"@MMK_R_KO_ellipsis" = -101; +"@MMK_R_KO_f" = -65; +"@MMK_R_KO_five" = -35; +"@MMK_R_KO_four" = -84; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -88; +"@MMK_R_KO_guillemetright" = -88; +"@MMK_R_KO_hyphen" = -90; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 63; +"@MMK_R_KO_n" = -74; +"@MMK_R_KO_nine" = -44; +"@MMK_R_KO_one" = -84; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = -32; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -29; +"@MMK_R_KO_s" = -85; +"@MMK_R_KO_seven" = -13; +"@MMK_R_KO_six" = -57; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = -69; +"@MMK_R_KO_three" = -65; +"@MMK_R_KO_two" = -55; +"@MMK_R_KO_u" = -98; +"@MMK_R_KO_v" = -85; +"@MMK_R_KO_w" = -80; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = -81; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = -60; +"@MMK_R_KO_S" = -53; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = -66; +"@MMK_R_KO_colon" = -13; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_eight" = -32; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_five" = -11; +"@MMK_R_KO_four" = -85; +"@MMK_R_KO_guillemetleft" = -88; +"@MMK_R_KO_guillemetright" = -84; +"@MMK_R_KO_hyphen.case" = -91; +"@MMK_R_KO_nine" = -43; +"@MMK_R_KO_one" = -77; +"@MMK_R_KO_period" = -12; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -49; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -29; +"@MMK_R_KO_seven" = -14; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_slash" = 34; +"@MMK_R_KO_three" = -65; +"@MMK_R_KO_two" = -14; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -36; +"@MMK_R_KO_J" = -41; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -158; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -74; +"@MMK_R_KO_W" = -43; +"@MMK_R_KO_X" = -27; +"@MMK_R_KO_Y" = -94; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asciicircum" = -54; +"@MMK_R_KO_bracketright" = -90; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -22; +"@MMK_R_KO_comma.ss01" = -37; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -52; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -47; +"@MMK_R_KO_parenright" = -84; +"@MMK_R_KO_period" = -26; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -74; +"@MMK_R_KO_quotedbl" = -60; +"@MMK_R_KO_quotedblleft" = -87; +"@MMK_R_KO_quotedblleft.ss01" = -58; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -64; +"@MMK_R_KO_s" = 22; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = -16; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -79; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -29; +"@MMK_R_KO_v" = -5; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -21; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -73; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_eight" = -11; +"@MMK_R_KO_five" = -26; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_hyphen.case" = -73; +"@MMK_R_KO_nine" = -22; +"@MMK_R_KO_one" = -73; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_quotedbl" = -73; +"@MMK_R_KO_quotedblleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_seven" = -73; +"@MMK_R_KO_six" = -32; +"@MMK_R_KO_three" = -25; +"@MMK_R_KO_two" = 3; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -153; +"@MMK_R_KO_H" = -20; +"@MMK_R_KO_O" = -30; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_a" = -72; +"@MMK_R_KO_e" = -75; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_i" = -25; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_t" = -15; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -38; +"@MMK_R_KO_J" = -43; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -159; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -80; +"@MMK_R_KO_W" = -48; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = -102; +"@MMK_R_KO_Z" = -19; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -60; +"@MMK_R_KO_bracketright" = -89; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -53; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -50; +"@MMK_R_KO_parenright" = -87; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -43; +"@MMK_R_KO_question" = -50; +"@MMK_R_KO_question.ss01" = -80; +"@MMK_R_KO_quotedbl" = -66; +"@MMK_R_KO_quotedblleft" = -95; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -59; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -83; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -31; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -23; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -28; +"@MMK_R_KO_J" = -41; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -99; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -75; +"@MMK_R_KO_W" = -46; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = -86; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_bracketright" = -86; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -53; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = -46; +"@MMK_R_KO_parenright" = -80; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_question" = -49; +"@MMK_R_KO_question.ss01" = -64; +"@MMK_R_KO_quotedbl" = -56; +"@MMK_R_KO_quotedblleft" = -84; +"@MMK_R_KO_quotedblleft.ss01" = -64; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -63; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -58; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -31; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -23; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -22; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asterisk" = 13; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 15; +"@MMK_R_KO_egrave" = 15; +"@MMK_R_KO_eight" = 27; +"@MMK_R_KO_ellipsis" = -48; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 15; +"@MMK_R_KO_four" = 26; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 25; +"@MMK_R_KO_hyphen.case" = -5; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 16; +"@MMK_R_KO_one" = 8; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = -34; +"@MMK_R_KO_period" = -9; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 24; +"@MMK_R_KO_two" = 16; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = -31; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -84; +"@MMK_R_KO_S" = -54; +"@MMK_R_KO_T" = -183; +"@MMK_R_KO_U" = -76; +"@MMK_R_KO_V" = -209; +"@MMK_R_KO_W" = -112; +"@MMK_R_KO_Y" = -198; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -30; +"@MMK_R_KO_asterisk" = -146; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_egrave" = -66; +"@MMK_R_KO_eight" = -48; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_f" = -62; +"@MMK_R_KO_five" = -59; +"@MMK_R_KO_four" = -221; +"@MMK_R_KO_g" = -41; +"@MMK_R_KO_guillemetleft" = -91; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen" = -230; +"@MMK_R_KO_hyphen.case" = -230; +"@MMK_R_KO_i" = -30; +"@MMK_R_KO_j" = -28; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = -54; +"@MMK_R_KO_one" = -91; +"@MMK_R_KO_parenright" = -78; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -148; +"@MMK_R_KO_quotedblleft" = -137; +"@MMK_R_KO_quoteright" = -137; +"@MMK_R_KO_s" = -39; +"@MMK_R_KO_seven" = -104; +"@MMK_R_KO_six" = -66; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -72; +"@MMK_R_KO_three" = -52; +"@MMK_R_KO_two" = -5; +"@MMK_R_KO_u" = -62; +"@MMK_R_KO_v" = -114; +"@MMK_R_KO_w" = -88; +"@MMK_R_KO_y" = -111; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -79; +"@MMK_R_KO_S" = -47; +"@MMK_R_KO_T" = -186; +"@MMK_R_KO_U" = -68; +"@MMK_R_KO_V" = -203; +"@MMK_R_KO_W" = -109; +"@MMK_R_KO_Y" = -200; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -56; +"@MMK_R_KO_a.ss05" = -25; +"@MMK_R_KO_asterisk" = -146; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_egrave" = -52; +"@MMK_R_KO_eight" = -42; +"@MMK_R_KO_f" = -62; +"@MMK_R_KO_five" = -51; +"@MMK_R_KO_four" = -197; +"@MMK_R_KO_g" = -41; +"@MMK_R_KO_guillemetleft" = -86; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -210; +"@MMK_R_KO_hyphen.case" = -227; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_j" = -20; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = -47; +"@MMK_R_KO_one" = -92; +"@MMK_R_KO_parenright" = -75; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_quotedbl" = -148; +"@MMK_R_KO_quotedblleft.ss01" = -128; +"@MMK_R_KO_quoteright.ss01" = -128; +"@MMK_R_KO_s" = -32; +"@MMK_R_KO_seven" = -101; +"@MMK_R_KO_six" = -59; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -70; +"@MMK_R_KO_three" = -44; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -56; +"@MMK_R_KO_v" = -110; +"@MMK_R_KO_w" = -84; +"@MMK_R_KO_y" = -107; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -99; +"@MMK_R_KO_J" = -146; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -139; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -96; +"@MMK_R_KO_W" = -56; +"@MMK_R_KO_Y" = -143; +"@MMK_R_KO_Z" = -72; +"@MMK_R_KO_a" = 31; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -71; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 32; +"@MMK_R_KO_egrave" = 32; +"@MMK_R_KO_eight" = 24; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 32; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = -78; +"@MMK_R_KO_parenright" = -95; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -137; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_seven" = -110; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_slash" = -47; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -48; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = -36; +"@MMK_R_KO_w" = -19; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = -80; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -49; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_J" = -61; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 34; +"@MMK_R_KO_U" = 29; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 45; +"@MMK_R_KO_X" = 18; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -8; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -55; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -73; +"@MMK_R_KO_exclam" = 25; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 11; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -56; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 12; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 21; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -49; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -54; +"@MMK_R_KO_v" = 20; +"@MMK_R_KO_w" = 20; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 19; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -49; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_J" = -61; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 34; +"@MMK_R_KO_U" = 29; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 45; +"@MMK_R_KO_X" = 18; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -8; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -55; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -73; +"@MMK_R_KO_exclam" = 25; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 11; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -56; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 12; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = 21; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -49; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -54; +"@MMK_R_KO_v" = 20; +"@MMK_R_KO_w" = 20; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 19; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -47; +"@MMK_R_KO_bracketright" = -41; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -28; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = 25; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 27; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asterisk" = -20; +"@MMK_R_KO_colon" = -26; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = 28; +"@MMK_R_KO_egrave" = 28; +"@MMK_R_KO_eight" = 22; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_five" = 15; +"@MMK_R_KO_four" = 39; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 13; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 38; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -22; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 25; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_three" = 25; +"@MMK_R_KO_two" = -5; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -57; +"@MMK_R_KO_J" = -64; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -64; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -58; +"@MMK_R_KO_W" = -51; +"@MMK_R_KO_Y" = -60; +"@MMK_R_KO_Z" = -39; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -65; +"@MMK_R_KO_colon" = -62; +"@MMK_R_KO_comma" = -69; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eight" = 31; +"@MMK_R_KO_ellipsis" = -85; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_five" = 7; +"@MMK_R_KO_four" = 23; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -43; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -56; +"@MMK_R_KO_parenright" = -76; +"@MMK_R_KO_parenright.case" = -66; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -77; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -69; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -59; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = -35; +"@MMK_R_KO_three" = 8; +"@MMK_R_KO_two" = -16; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_y" = -51; +"@MMK_R_KO_z" = -48; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 29; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -80; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 10; +"@MMK_R_KO_X" = 25; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 46; +"@MMK_R_KO_comma" = 46; +"@MMK_R_KO_comma.ss01" = 22; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 28; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -3; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 29; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 71; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -61; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_underscore" = 58; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 23; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 25; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -35; +"@MMK_R_KO_J" = -36; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -48; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_Y" = -69; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -24; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = 8; +"@MMK_R_KO_hyphen" = -27; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 14; +"@MMK_R_KO_one" = -38; +"@MMK_R_KO_parenright" = -80; +"@MMK_R_KO_parenright.case" = -65; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -14; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 3; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -72; +"@MMK_R_KO_J" = -89; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -85; +"@MMK_R_KO_W" = -51; +"@MMK_R_KO_Y" = -110; +"@MMK_R_KO_Z" = -61; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asterisk" = -61; +"@MMK_R_KO_colon" = -41; +"@MMK_R_KO_comma" = -69; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -91; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = 8; +"@MMK_R_KO_guillemetright" = -38; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -15; +"@MMK_R_KO_one" = -67; +"@MMK_R_KO_parenright" = -104; +"@MMK_R_KO_parenright.case" = -86; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -92; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -68; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_slash" = -56; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = -46; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -48; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -99; +"@MMK_R_KO_J" = -146; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -139; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -96; +"@MMK_R_KO_W" = -56; +"@MMK_R_KO_Y" = -143; +"@MMK_R_KO_Z" = -70; +"@MMK_R_KO_a" = 31; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asterisk" = -146; +"@MMK_R_KO_colon" = -71; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 32; +"@MMK_R_KO_egrave" = 32; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_five" = 5; +"@MMK_R_KO_four" = 20; +"@MMK_R_KO_g" = 33; +"@MMK_R_KO_guillemetleft" = 30; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -11; +"@MMK_R_KO_one" = -78; +"@MMK_R_KO_parenright" = -95; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = -148; +"@MMK_R_KO_quotedblleft" = -137; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -110; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_slash" = -46; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -48; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = -36; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = -80; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -99; +"@MMK_R_KO_J" = -149; +"@MMK_R_KO_O" = 36; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = -139; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_Y" = -100; +"@MMK_R_KO_Z" = -108; +"@MMK_R_KO_asterisk" = -62; +"@MMK_R_KO_colon" = -37; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_five" = 7; +"@MMK_R_KO_four" = -23; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_nine" = 6; +"@MMK_R_KO_one" = -78; +"@MMK_R_KO_parenright.case" = -88; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = -65; +"@MMK_R_KO_quotedblleft" = -137; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_seven" = -105; +"@MMK_R_KO_six" = 28; +"@MMK_R_KO_slash" = -78; +"@MMK_R_KO_three" = -60; +"@MMK_R_KO_two" = -68; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 18; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -46; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -27; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -52; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -52; +"@MMK_R_KO_quoteright" = -44; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -58; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 1; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 28; +"@MMK_R_KO_I.ss02" = 43; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 43; +"@MMK_R_KO_U" = 38; +"@MMK_R_KO_V" = 50; +"@MMK_R_KO_W" = 55; +"@MMK_R_KO_X" = 36; +"@MMK_R_KO_Y" = 45; +"@MMK_R_KO_Z" = 36; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_bracketright" = 14; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 22; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 51; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 17; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 19; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 19; +"@MMK_R_KO_l.ss04" = 19; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 25; +"@MMK_R_KO_onesuperior" = 33; +"@MMK_R_KO_parenright" = 17; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 20; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 16; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 23; +"@MMK_R_KO_quoteright.ss01" = 20; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 42; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 15; +"@MMK_R_KO_slash" = 27; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 22; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -156; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -47; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -31; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asciicircum" = -24; +"@MMK_R_KO_bracketright" = -85; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -49; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -77; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -50; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -45; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -45; +"@MMK_R_KO_quoteright" = -31; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_sevensuperior" = -78; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 29; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -79; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 18; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 19; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 19; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -9; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 1; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -31; +"@MMK_R_KO_X" = 11; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -86; +"@MMK_R_KO_bracketright" = -52; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eightsuperior" = -45; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -56; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -44; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -44; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -52; +"@MMK_R_KO_onesuperior" = -49; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -36; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -52; +"@MMK_R_KO_quotedblleft" = -57; +"@MMK_R_KO_quotedblleft.ss01" = -55; +"@MMK_R_KO_quoteleft" = -57; +"@MMK_R_KO_quoteright" = -49; +"@MMK_R_KO_quoteright.ss01" = -51; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = -46; +"@MMK_R_KO_slash" = 36; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_threesuperior" = -49; +"@MMK_R_KO_trademark" = -72; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = 8; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -36; +"@MMK_R_KO_x" = 13; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 22; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = 95; +"@MMK_R_KO_exclam" = 117; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = 107; +"@MMK_R_KO_foursuperior" = 35; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 64; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_l.ss04" = 66; +"@MMK_R_KO_n" = 18; +"@MMK_R_KO_ninesuperior" = 115; +"@MMK_R_KO_onesuperior" = 113; +"@MMK_R_KO_parenright" = 93; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 115; +"@MMK_R_KO_question.ss01" = 94; +"@MMK_R_KO_quotedbl" = 123; +"@MMK_R_KO_quotedblleft" = 95; +"@MMK_R_KO_quotedblleft.ss01" = 119; +"@MMK_R_KO_quoteleft" = 95; +"@MMK_R_KO_sevensuperior" = 118; +"@MMK_R_KO_sixsuperior" = 95; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 87; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -70; +"@MMK_R_KO_H" = -63; +"@MMK_R_KO_O" = -46; +"@MMK_R_KO_T" = -223; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_e" = -47; +"@MMK_R_KO_f" = -82; +"@MMK_R_KO_i" = -63; +"@MMK_R_KO_n" = -63; +"@MMK_R_KO_t" = -85; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -159; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -78; +"@MMK_R_KO_W" = -52; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -107; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -67; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 12; +"@MMK_R_KO_icircumflex" = -1; +"@MMK_R_KO_imacron" = -1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -58; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -49; +"@MMK_R_KO_question.ss01" = -65; +"@MMK_R_KO_quotedbl" = -60; +"@MMK_R_KO_quotedblleft" = -90; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -66; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = -34; +"@MMK_R_KO_slash" = 12; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -85; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 12; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -32; +"@MMK_R_KO_J" = -52; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -156; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -77; +"@MMK_R_KO_W" = -48; +"@MMK_R_KO_X" = -35; +"@MMK_R_KO_Y" = -108; +"@MMK_R_KO_Z" = -21; +"@MMK_R_KO_a" = 24; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = -27; +"@MMK_R_KO_comma" = -28; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 23; +"@MMK_R_KO_egrave" = 23; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -34; +"@MMK_R_KO_g" = 22; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 32; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -51; +"@MMK_R_KO_parenright" = -91; +"@MMK_R_KO_period" = -32; +"@MMK_R_KO_period.ss01" = -49; +"@MMK_R_KO_question" = -53; +"@MMK_R_KO_question.ss01" = -69; +"@MMK_R_KO_quotedbl" = -60; +"@MMK_R_KO_quotedblleft" = -93; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 22; +"@MMK_R_KO_sixsuperior" = -31; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -86; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = -34; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -28; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -38; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -102; +"@MMK_R_KO_V" = -73; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_Y" = -85; +"@MMK_R_KO_a" = 23; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = -30; +"@MMK_R_KO_comma" = -27; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 23; +"@MMK_R_KO_egrave" = 23; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = -13; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -32; +"@MMK_R_KO_g" = 22; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 32; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -51; +"@MMK_R_KO_parenright" = -91; +"@MMK_R_KO_period" = -27; +"@MMK_R_KO_period.ss01" = -48; +"@MMK_R_KO_question" = -58; +"@MMK_R_KO_question.ss01" = -71; +"@MMK_R_KO_quotedbl" = -63; +"@MMK_R_KO_quotedblleft" = -82; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -58; +"@MMK_R_KO_six" = 23; +"@MMK_R_KO_sixsuperior" = -32; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -84; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -37; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = -34; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = -28; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -56; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -62; +"@MMK_R_KO_O" = -81; +"@MMK_R_KO_S" = -37; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = -89; +"@MMK_R_KO_a.ss05" = -61; +"@MMK_R_KO_asterisk" = -48; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -90; +"@MMK_R_KO_egrave" = -89; +"@MMK_R_KO_eight" = -35; +"@MMK_R_KO_ellipsis" = -77; +"@MMK_R_KO_f" = -59; +"@MMK_R_KO_five" = -15; +"@MMK_R_KO_four" = -89; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -104; +"@MMK_R_KO_guillemetright" = -81; +"@MMK_R_KO_hyphen" = -95; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 70; +"@MMK_R_KO_n" = -40; +"@MMK_R_KO_nine" = -39; +"@MMK_R_KO_one" = -62; +"@MMK_R_KO_parenright" = 24; +"@MMK_R_KO_period" = -55; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -47; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = -79; +"@MMK_R_KO_seven" = -6; +"@MMK_R_KO_six" = -58; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -65; +"@MMK_R_KO_three" = -63; +"@MMK_R_KO_two" = -43; +"@MMK_R_KO_u" = -81; +"@MMK_R_KO_v" = -79; +"@MMK_R_KO_w" = -68; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -56; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = -75; +"@MMK_R_KO_S" = -37; +"@MMK_R_KO_T" = -1; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_asterisk" = -48; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_eight" = -34; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_five" = -15; +"@MMK_R_KO_four" = -75; +"@MMK_R_KO_guillemetleft" = -86; +"@MMK_R_KO_guillemetright" = -65; +"@MMK_R_KO_hyphen.case" = -88; +"@MMK_R_KO_nine" = -37; +"@MMK_R_KO_one" = -56; +"@MMK_R_KO_parenright.case" = 22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_quotedbl" = -32; +"@MMK_R_KO_quotedblleft" = -47; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_seven" = -5; +"@MMK_R_KO_six" = -44; +"@MMK_R_KO_slash" = 51; +"@MMK_R_KO_three" = -56; +"@MMK_R_KO_two" = -8; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = -71; +"@MMK_R_KO_U" = -40; +"@MMK_R_KO_V" = -71; +"@MMK_R_KO_W" = -71; +"@MMK_R_KO_Y" = -71; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -71; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_eight" = -9; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -28; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -71; +"@MMK_R_KO_hyphen.case" = -71; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_nine" = -22; +"@MMK_R_KO_one" = -71; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -71; +"@MMK_R_KO_quotedblleft" = -71; +"@MMK_R_KO_quoteright" = -71; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_seven" = -71; +"@MMK_R_KO_six" = -43; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = -50; +"@MMK_R_KO_three" = -26; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -28; +"@MMK_R_KO_v" = -71; +"@MMK_R_KO_w" = -71; +"@MMK_R_KO_y" = -71; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -20; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -68; +"@MMK_R_KO_S" = -37; +"@MMK_R_KO_T" = -68; +"@MMK_R_KO_U" = -63; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -68; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -25; +"@MMK_R_KO_asterisk" = -68; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_eight" = -25; +"@MMK_R_KO_f" = -52; +"@MMK_R_KO_five" = -34; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -40; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = -30; +"@MMK_R_KO_one" = -68; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_quotedbl" = -68; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -30; +"@MMK_R_KO_seven" = -68; +"@MMK_R_KO_six" = -52; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -66; +"@MMK_R_KO_three" = -37; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -47; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -68; +"@MMK_R_KO_y" = -68; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -76; +"@MMK_R_KO_S" = -45; +"@MMK_R_KO_T" = -148; +"@MMK_R_KO_U" = -70; +"@MMK_R_KO_V" = -144; +"@MMK_R_KO_W" = -99; +"@MMK_R_KO_Y" = -164; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -53; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_e" = -56; +"@MMK_R_KO_eight" = -39; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -51; +"@MMK_R_KO_four" = -94; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = 81; +"@MMK_R_KO_nine" = -44; +"@MMK_R_KO_one" = -82; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -115; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_s" = -33; +"@MMK_R_KO_seven" = -87; +"@MMK_R_KO_six" = -59; +"@MMK_R_KO_t" = -63; +"@MMK_R_KO_three" = -47; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -49; +"@MMK_R_KO_v" = -81; +"@MMK_R_KO_w" = -74; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -137; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -148; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = -66; +"@MMK_R_KO_a.ss05" = -45; +"@MMK_R_KO_asterisk" = 10; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -73; +"@MMK_R_KO_egrave" = -63; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -148; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -113; +"@MMK_R_KO_g" = -62; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = -148; +"@MMK_R_KO_hyphen.case" = -73; +"@MMK_R_KO_i" = -10; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -31; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -53; +"@MMK_R_KO_seven" = 2; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_slash" = -142; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -27; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -21; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -73; +"@MMK_R_KO_S" = -46; +"@MMK_R_KO_T" = -137; +"@MMK_R_KO_U" = -66; +"@MMK_R_KO_V" = -137; +"@MMK_R_KO_W" = -73; +"@MMK_R_KO_Y" = -137; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_asterisk" = -73; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_e" = -58; +"@MMK_R_KO_egrave" = -55; +"@MMK_R_KO_eight" = -37; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_f" = -52; +"@MMK_R_KO_five" = -50; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -44; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_hyphen.case" = -73; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = -43; +"@MMK_R_KO_one" = -73; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedblleft" = -137; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_seven" = -73; +"@MMK_R_KO_six" = -57; +"@MMK_R_KO_slash" = 34; +"@MMK_R_KO_t" = -68; +"@MMK_R_KO_three" = -46; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -51; +"@MMK_R_KO_v" = -73; +"@MMK_R_KO_w" = -73; +"@MMK_R_KO_y" = -60; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -16; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -59; +"@MMK_R_KO_S" = -29; +"@MMK_R_KO_T" = -128; +"@MMK_R_KO_U" = -49; +"@MMK_R_KO_V" = -128; +"@MMK_R_KO_W" = -68; +"@MMK_R_KO_Y" = -128; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -44; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asterisk" = -68; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_egrave" = -38; +"@MMK_R_KO_eight" = -25; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_five" = -34; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -14; +"@MMK_R_KO_j" = 27; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_nine" = -30; +"@MMK_R_KO_one" = -68; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_seven" = -68; +"@MMK_R_KO_six" = -41; +"@MMK_R_KO_slash" = 50; +"@MMK_R_KO_t" = -63; +"@MMK_R_KO_three" = -37; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -68; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -137; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -137; +"@MMK_R_KO_O" = -28; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 13; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_Y" = 5; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -94; +"@MMK_R_KO_a.ss05" = -71; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_e" = -97; +"@MMK_R_KO_egrave" = -78; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -137; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_five" = -3; +"@MMK_R_KO_four" = -137; +"@MMK_R_KO_g" = -93; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -137; +"@MMK_R_KO_hyphen.case" = -137; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -19; +"@MMK_R_KO_n" = -60; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -84; +"@MMK_R_KO_seven" = 31; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_slash" = -137; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -52; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -35; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -44; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -68; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 9; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = -68; +"@MMK_R_KO_a.ss05" = -54; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -68; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -8; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -68; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_n" = -45; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = -5; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -60; +"@MMK_R_KO_seven" = 18; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 4; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -29; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -137; +"@MMK_R_KO_H" = -10; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -137; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = -106; +"@MMK_R_KO_a.ss05" = -80; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -49; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_e" = -108; +"@MMK_R_KO_egrave" = -91; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_ellipsis" = -137; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_five" = -15; +"@MMK_R_KO_four" = -137; +"@MMK_R_KO_g" = -104; +"@MMK_R_KO_guillemetleft" = -104; +"@MMK_R_KO_guillemetright" = -74; +"@MMK_R_KO_hyphen" = -137; +"@MMK_R_KO_hyphen.case" = -137; +"@MMK_R_KO_i" = -13; +"@MMK_R_KO_j" = -20; +"@MMK_R_KO_n" = -83; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = -12; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -98; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = -41; +"@MMK_R_KO_slash" = -137; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_three" = -21; +"@MMK_R_KO_two" = -10; +"@MMK_R_KO_u" = -73; +"@MMK_R_KO_v" = -60; +"@MMK_R_KO_w" = -62; +"@MMK_R_KO_y" = -60; +"@MMK_R_KO_z" = -60; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -73; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -73; +"@MMK_R_KO_O" = -28; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 25; +"@MMK_R_KO_Y" = 5; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -73; +"@MMK_R_KO_a.ss05" = -71; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -24; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_e" = -73; +"@MMK_R_KO_egrave" = -73; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -73; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = -3; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -73; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_hyphen.case" = -73; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -19; +"@MMK_R_KO_n" = -59; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -9; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -73; +"@MMK_R_KO_seven" = 31; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_slash" = -73; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = -4; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -52; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -35; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -44; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -73; +"@MMK_R_KO_H" = -9; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -73; +"@MMK_R_KO_O" = -46; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = -73; +"@MMK_R_KO_a.ss05" = -73; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -45; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_e" = -73; +"@MMK_R_KO_egrave" = -73; +"@MMK_R_KO_eight" = -16; +"@MMK_R_KO_ellipsis" = -73; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -15; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -73; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -70; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_hyphen.case" = -73; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_j" = -17; +"@MMK_R_KO_n" = -73; +"@MMK_R_KO_nine" = -15; +"@MMK_R_KO_one" = -6; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -73; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = -40; +"@MMK_R_KO_slash" = -73; +"@MMK_R_KO_t" = -41; +"@MMK_R_KO_three" = -20; +"@MMK_R_KO_two" = -8; +"@MMK_R_KO_u" = -71; +"@MMK_R_KO_v" = -59; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_y" = -56; +"@MMK_R_KO_z" = -72; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = -11; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -68; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_Y" = 2; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = -68; +"@MMK_R_KO_a.ss05" = -61; +"@MMK_R_KO_asterisk" = 9; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -68; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -68; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -40; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -68; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_y" = -13; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -67; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -67; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -60; +"@MMK_R_KO_a.ss05" = -45; +"@MMK_R_KO_asterisk" = 10; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -67; +"@MMK_R_KO_comma.ss01" = -67; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_egrave" = -62; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -67; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -67; +"@MMK_R_KO_g" = -57; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = -67; +"@MMK_R_KO_hyphen.case" = -64; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_parenright.case" = -29; +"@MMK_R_KO_period" = -67; +"@MMK_R_KO_period.ss01" = -67; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -51; +"@MMK_R_KO_seven" = 2; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_slash" = -67; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -26; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -87; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -91; +"@MMK_R_KO_J" = -95; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -152; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = -67; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = -92; +"@MMK_R_KO_a" = -30; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = -90; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -109; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = -27; +"@MMK_R_KO_guillemetleft" = -44; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -93; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = -69; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -80; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -109; +"@MMK_R_KO_v" = 20; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 19; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -154; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -74; +"@MMK_R_KO_W" = -43; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -92; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = -85; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -76; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = -35; +"@MMK_R_KO_question.ss01" = -67; +"@MMK_R_KO_quotedbl" = -52; +"@MMK_R_KO_quotedblleft" = -86; +"@MMK_R_KO_quotedblleft.ss01" = -66; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -73; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 17; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -77; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -5; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = 1; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -153; +"@MMK_R_KO_V" = -46; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_bracketright" = -70; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -45; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_question" = -33; +"@MMK_R_KO_question.ss01" = -55; +"@MMK_R_KO_quotedbl" = -43; +"@MMK_R_KO_quotedblleft" = -70; +"@MMK_R_KO_quotedblleft.ss01" = -49; +"@MMK_R_KO_quoteleft" = -70; +"@MMK_R_KO_quoteright" = -60; +"@MMK_R_KO_quoteright.ss01" = -52; +"@MMK_R_KO_s" = 17; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 1; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -159; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_J" = -144; +"@MMK_R_KO_O" = -44; +"@MMK_R_KO_S" = -13; +"@MMK_R_KO_T" = 21; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 41; +"@MMK_R_KO_W" = 43; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = -92; +"@MMK_R_KO_a.ss05" = -85; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -51; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -93; +"@MMK_R_KO_egrave" = -80; +"@MMK_R_KO_eight" = -12; +"@MMK_R_KO_ellipsis" = -204; +"@MMK_R_KO_f" = -36; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -112; +"@MMK_R_KO_g" = -89; +"@MMK_R_KO_guillemetleft" = -96; +"@MMK_R_KO_guillemetright" = -61; +"@MMK_R_KO_hyphen" = -109; +"@MMK_R_KO_hyphen.case" = -88; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -70; +"@MMK_R_KO_nine" = -12; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 2; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 14; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -83; +"@MMK_R_KO_seven" = 42; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_slash" = -161; +"@MMK_R_KO_t" = -37; +"@MMK_R_KO_three" = -17; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = -63; +"@MMK_R_KO_v" = -40; +"@MMK_R_KO_w" = -43; +"@MMK_R_KO_y" = -41; +"@MMK_R_KO_z" = -64; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -16; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 20; +"@MMK_R_KO_S" = 24; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = -23; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 25; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -20; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 25; +"@MMK_R_KO_egrave" = 25; +"@MMK_R_KO_eight" = 26; +"@MMK_R_KO_ellipsis" = -56; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 14; +"@MMK_R_KO_four" = 37; +"@MMK_R_KO_g" = 24; +"@MMK_R_KO_guillemetleft" = 10; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 36; +"@MMK_R_KO_hyphen.case" = 13; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -37; +"@MMK_R_KO_period" = -22; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_seven" = 11; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 25; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -153; +"@MMK_R_KO_H" = 12; +"@MMK_R_KO_I.ss02" = 39; +"@MMK_R_KO_J" = -145; +"@MMK_R_KO_O" = -28; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = 27; +"@MMK_R_KO_U" = 24; +"@MMK_R_KO_V" = 43; +"@MMK_R_KO_W" = 45; +"@MMK_R_KO_Y" = 42; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -60; +"@MMK_R_KO_a.ss05" = -59; +"@MMK_R_KO_asterisk" = 17; +"@MMK_R_KO_colon" = -32; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -57; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = -194; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = 6; +"@MMK_R_KO_four" = -83; +"@MMK_R_KO_g" = -64; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -92; +"@MMK_R_KO_hyphen.case" = -62; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -49; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = 2; +"@MMK_R_KO_parenright" = 3; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_quotedbl" = 28; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 24; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_quoteright.ss01" = 21; +"@MMK_R_KO_s" = -58; +"@MMK_R_KO_seven" = 54; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_slash" = -168; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = -33; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -75; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = 2; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -18; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -75; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -37; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -34; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_sevensuperior" = -62; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 29; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -66; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -24; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asterisk" = 12; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eight" = 27; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 15; +"@MMK_R_KO_four" = 27; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 26; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 15; +"@MMK_R_KO_one" = 7; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = -11; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 24; +"@MMK_R_KO_two" = 14; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = 5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -24; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asterisk" = 19; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -62; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -72; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = 17; +"@MMK_R_KO_one" = 3; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = 18; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 23; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 3; +"@MMK_R_KO_two" = 27; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -88; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -92; +"@MMK_R_KO_J" = -101; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -146; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = -68; +"@MMK_R_KO_Y" = -49; +"@MMK_R_KO_Z" = -89; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -12; +"@MMK_R_KO_bracketright" = -84; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = -73; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_egrave" = -23; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -113; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 24; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 6; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -79; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = 3; +"@MMK_R_KO_slash" = -91; +"@MMK_R_KO_t" = 21; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -58; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -101; +"@MMK_R_KO_v" = 24; +"@MMK_R_KO_w" = 29; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -66; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -76; +"@MMK_R_KO_J" = -76; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -146; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -62; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = -69; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -80; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = -70; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = 13; +"@MMK_R_KO_ellipsis" = -88; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 23; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_period" = -71; +"@MMK_R_KO_period.ss01" = -68; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -38; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -62; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = 14; +"@MMK_R_KO_slash" = -53; +"@MMK_R_KO_t" = 22; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -81; +"@MMK_R_KO_v" = 28; +"@MMK_R_KO_w" = 32; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = 29; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -156; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 2; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = -31; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -22; +"@MMK_R_KO_bracketright" = -85; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_egrave" = -33; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -74; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -44; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -44; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = -72; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 25; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -72; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 16; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 19; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -158; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -44; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -24; +"@MMK_R_KO_bracketright" = -83; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -42; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -83; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -49; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -44; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -44; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = -10; +"@MMK_R_KO_sevensuperior" = -67; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 16; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -66; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_bracketright" = -75; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -42; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -83; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = -44; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteleft" = -38; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = -10; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 16; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -26; +"@MMK_R_KO_J" = -46; +"@MMK_R_KO_O" = 30; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -36; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = -35; +"@MMK_R_KO_a" = 22; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -42; +"@MMK_R_KO_comma.ss01" = -53; +"@MMK_R_KO_e" = 23; +"@MMK_R_KO_egrave" = 23; +"@MMK_R_KO_eight" = 12; +"@MMK_R_KO_ellipsis" = -78; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = 18; +"@MMK_R_KO_g" = 26; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 33; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 23; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_parenright.case" = -44; +"@MMK_R_KO_period" = -43; +"@MMK_R_KO_period.ss01" = -66; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_v" = 22; +"@MMK_R_KO_w" = 20; +"@MMK_R_KO_y" = 22; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -41; +Tbar = -107; +asciitilde = -45; +asterisk = -112; +backslash = -142; +g.ss06 = 22; +minus = -70; +one = -66; +ordmasculine = -121; +plus = -63; +quotedbl = -137; +registered = -90; +seven = -75; +two = 32; +twosuperior = -74; +}; +Aacute = { +Tbar = -107; +}; +Abrevedotbelow.ss01 = { +T = -143; +}; +Aogonek = { +comma = 34; +parenright = 0; +}; +Atilde = { +ordfeminine = -122; +}; +B = { +Hbar = 46; +hbar = 35; +idieresis = 46; +itilde = 69; +}; +C = { +h = 3; +l = 3; +plus = -4; +three = 29; +}; +D = { +Lslash = 28; +Oslash = 32; +braceright = -62; +bracketright.case = -61; +}; +E = { +H = 0; +idieresis = 26; +}; +Eogonek = { +comma = 20; +}; +F = { +fourinferior = -112; +i = -8; +igrave = 40; +}; +G = { +Lslash = 35; +lslash = 30; +}; +Germandbls = { +S = 30; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -11; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 27; +itilde = 74; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 36; +D = 36; +E = 36; +H = 36; +Hbar = 96; +I = 36; +L = 36; +M = 36; +O = 18; +R = 36; +S = 46; +U = 48; +W = 44; +i = 19; +}; +I = { +Hbar = 35; +I = 0; +jcircumflex = 43; +}; +Icircumflex = { +Icircumflex = 45; +l.ss04 = 21; +}; +Imacron = { +Imacron = 40; +}; +Itilde = { +itilde = 74; +}; +J = { +Hbar = 42; +itilde = 81; +}; +Jacute = { +Imacron = 14; +}; +K = { +asciitilde = -89; +four = -52; +idieresis = 47; +igrave = 38; +itilde = 48; +less = -90; +logicalnot = -186; +minus = -116; +one = -18; +oslash = 0; +plus = -106; +}; +L = { +H = 0; +Tbar = -138; +asciitilde = -214; +asterisk = -146; +backslash = -153; +equal = -163; +four = -196; +less = -171; +logicalnot = -288; +minus = -267; +one = -71; +ordfeminine = -233; +ordmasculine = -227; +oslash = -21; +plus = -150; +quotedbl = -148; +quoteleft.ss01 = -68; +quoteright = -73; +quoteright.ss01 = -68; +registered = -249; +seven = -81; +twosuperior = -197; +}; +Lcaron = { +A = 18; +O = -57; +U = -40; +Uacute = -40; +V = -68; +a = -51; +hyphen = -189; +hyphen.case = -187; +u = -46; +v = -100; +}; +Lcommaaccent = { +twosuperior = -197; +}; +Lslash = { +twosuperior = -135; +}; +M = { +Hbar = 35; +idieresis = 55; +igrave = 27; +itilde = 74; +}; +N = { +Hbar = 35; +idieresis = 55; +igrave = 27; +itilde = 74; +}; +O = { +Dcroat = 32; +Lslash = 29; +braceright = -61; +bracketright.case = -60; +itilde = 27; +}; +Oslash = { +T = -20; +V = -6; +Y = -14; +parenright = 0; +parenright.case = 0; +}; +P = { +fourinferior = -112; +idieresis = 44; +itilde = 71; +two = 27; +}; +R = { +Hbar = 55; +jcircumflex = 56; +two = 23; +}; +S = { +Hbar = 33; +Lslash = 19; +dollar = 19; +four = 30; +idieresis = 37; +itilde = 56; +lslash = 3; +three = 30; +}; +T = { +Oslash = -57; +a.ss05 = -155; +aacute.ss05 = -139; +abreve = -77; +abreveacute = -80; +acircumflex = -100; +acircumflexacute = -100; +acircumflexdotbelow = -100; +adieresis = -87; +adotbelow.ss05 = -155; +ae = -155; +agrave = -94; +amacron = -79; +ampersand = -63; +aring = -90; +asciitilde = -153; +atilde = -87; +equal = -97; +four = -139; +g.ss06 = -140; +h = -2; +i.ss01 = -2; +iacute = -43; +idieresis = 0; +idotless = -84; +igrave = 41; +itilde = 0; +less = -144; +logicalnot = -212; +minus = -161; +ograve = -95; +plus = -133; +racute = -81; +scaron = -58; +seven = 16; +twoinferior = -162; +udieresis = -82; +udieresis.ss01 = -83; +ugrave = -89; +uhorngrave = -89; +umacron = -74; +ycircumflex = -86; +ygrave = -77; +yhookabove = -97; +zcaron = -57; +zeroinferior = -159; +}; +Tbar = { +A = -106; +Aacute = -106; +Tbar = 19; +a = -51; +comma = -73; +e = -53; +o = -53; +period = -71; +slash = -123; +}; +Tcaron = { +a.ss05 = -155; +}; +Tcedilla = { +a.ss05 = -154; +abreve = -77; +four = -139; +}; +Tcommaaccent = { +a.ss05 = -155; +abreve = -77; +four = -139; +}; +Thorn = { +A = -50; +AE = -50; +Aacute = -50; +J = -114; +O = 37; +Oacute = 37; +V = -50; +Y = -64; +Yacute = -64; +a = 19; +aacute = 19; +e = 19; +o = 18; +oacute = 18; +period = -71; +}; +U = { +Hbar = 47; +jcircumflex = 53; +}; +V = { +four = -99; +iacute = -34; +ibreve = 91; +idieresis = 63; +igrave = 48; +itilde = 73; +minus = -73; +plus = -68; +scaron = -46; +seven = 42; +twoinferior = -89; +}; +W = { +Hbar = 42; +backslash = 61; +idieresis = 75; +igrave = 53; +itilde = 84; +}; +X = { +asciitilde = -86; +four = -52; +less = -89; +logicalnot = -183; +minus = -116; +notequal = -112; +one = -19; +plus = -106; +}; +Y = { +a.ss05 = -91; +agrave = -83; +amacron = -56; +ampersand = -58; +asciitilde = -101; +at = -64; +four = -149; +g.ss06 = -95; +igrave = 43; +less = -80; +logicalnot = -157; +minus = -106; +ograve = -85; +plus = -100; +scaron = -51; +twoinferior = -143; +}; +Z = { +four = -152; +ibreve = 76; +igrave = 42; +itilde = 59; +minus = -120; +plus = -107; +}; +_B.currency = { +_baht.bar = -19; +}; +a = { +braceright = -71; +}; +a.ss05 = { +g.ss06 = 35; +}; +acircumflexacute.ss05 = { +y = -31; +}; +adieresis.ss05 = { +germandbls = -22; +}; +ampersand = { +V = -104; +W = -70; +Y = -147; +quotedbl = -104; +quotedblleft = -137; +}; +aogonek = { +j = 16; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 0; +}; +approxequal = { +parenright = -124; +parenright.case = -122; +}; +asciicircum = { +J = -211; +X = -97; +Y = -84; +bracketright = -114; +comma = -73; +comma.ss01 = -68; +four = -112; +hyphen = -147; +parenright = -115; +parenright.case = -115; +period = -71; +period.ss01 = -68; +slash = -164; +}; +asciitilde = { +I.ss02 = -206; +J = -212; +V = -155; +W = -126; +X = -194; +Y = -183; +Z = -203; +bracketright = -166; +bracketright.case = -167; +comma = -73; +comma.ss01 = -68; +eight = -106; +exclam = -90; +four = -108; +one = -125; +parenright = -158; +parenright.case = -149; +period = -71; +period.ss01 = -68; +question = -111; +quotedbl = -116; +quotedblright = -136; +seven = -108; +slash = -184; +three = -109; +two = -100; +}; +at = { +T = -65; +parenright = -85; +}; +b = { +asterisk = -51; +braceright = -77; +lslash = 23; +one = -67; +}; +backslash = { +T = -143; +V = -174; +Y = -149; +asterisk = -132; +backslash = -154; +quotedbl = -142; +quotedblleft = -137; +quotedblleft.ss01 = -128; +quotedblright = -137; +quotedblright.ss01 = -128; +quoteleft = -73; +quoteright = -73; +quotesingle = -67; +}; +baht = { +parenright = -37; +}; +braceleft = { +p = -11; +}; +bracketleft = { +asciicircum = -114; +asciitilde = -92; +bracketright = 6; +jcircumflex = 64; +p = -10; +pi = -77; +plus = -98; +x = -84; +}; +c = { +asterisk = -50; +braceright = -86; +}; +cent = { +parenright = -80; +}; +colon = { +T = -71; +Y = -59; +four = -71; +one = 0; +parenright = -57; +two = 12; +zero = 0; +}; +colon.ss01 = { +T = -68; +four = -68; +parenright = -68; +}; +comma = { +eightsuperior = -73; +fivesuperior = -73; +foursuperior = -73; +ninesuperior = -73; +onesuperior = -73; +quoteleft = -73; +quotesingle = -67; +sevensuperior = -73; +sixsuperior = -73; +threesuperior = -73; +twosuperior = -73; +}; +comma.ss01 = { +eightsuperior = -68; +fivesuperior = -68; +foursuperior = -68; +ninesuperior = -68; +onesuperior = -68; +sevensuperior = -68; +sixsuperior = -68; +threesuperior = -68; +twosuperior = -68; +}; +copyright = { +Y = -59; +parenright = -89; +}; +d = { +idieresis = 19; +igrave = 19; +itilde = 18; +}; +dcaron = { +C = 54; +H = 109; +bracketright = 22; +eightsuperior = 95; +exclam = 117; +exclam.ss01 = 116; +fivesuperior = 107; +foursuperior = 35; +h = 64; +i = 21; +j = 21; +k = 64; +l = 64; +l.ss03 = 57; +l.ss04 = 66; +ninesuperior = 115; +onesuperior = 113; +parenright = 93; +question = 115; +question.ss01 = 94; +quotedbl = 123; +quotedblleft = 95; +quotedblleft.ss01 = 119; +quoteleft = 95; +quoteleft.ss01 = 119; +quotesingle = 123; +sevensuperior = 118; +sixsuperior = 95; +t = 7; +t_i.liga = 7; +t_t.liga = 7; +threesuperior = 87; +twosuperior = 94; +zcaron = 14; +}; +dcroat = { +i = 18; +igrave = 19; +itilde = 19; +}; +degree = { +J = -189; +comma = -73; +comma.ss01 = -68; +emdash = -192; +endash = -176; +four = -135; +hyphen = -176; +parenright = -62; +parenright.case = -62; +period = -71; +period.ss01 = -68; +slash = -154; +}; +divide = { +parenright = -114; +}; +dollar = { +parenright = -59; +three = 17; +}; +e = { +asterisk = -57; +backslash = -59; +braceright = -86; +germandbls = -20; +one = -70; +seven = -60; +}; +ecircumflexacute = { +t = -17; +}; +eight = { +bracketright = -40; +degree = -7; +}; +eight.dnom = { +degree = -104; +question.ss01 = -104; +quotedbl = -109; +quotedblleft = -137; +quotedblright = -137; +}; +eightsuperior = { +comma = -73; +comma.ss01 = -68; +period = -71; +period.ss01 = -68; +slash = -96; +}; +ellipsis = { +Tbar = -183; +bracketright = -101; +eightsuperior = -220; +fivesuperior = -220; +foursuperior = -220; +ninesuperior = -223; +onesuperior = -111; +parenleft = -49; +parenleft.case = -69; +question = -98; +quoteleft = -73; +quoteright = -73; +quotesingle = -67; +sevensuperior = -185; +sixsuperior = -223; +threesuperior = -214; +twosuperior = -197; +}; +ellipsis.ss01 = { +Tbar = -186; +bracketright = -93; +eightsuperior = -220; +fivesuperior = -220; +foursuperior = -220; +ninesuperior = -223; +onesuperior = -111; +question.ss01 = -114; +quoteleft.ss01 = -68; +quoteright.ss01 = -68; +quotesingle = -67; +sevensuperior = -185; +sixsuperior = -223; +threesuperior = -214; +twosuperior = -197; +}; +emdash = { +foursuperior = -175; +question = -108; +}; +emdash.case = { +X = -106; +quotedblbase = -137; +quotedblbase.ss01 = -128; +}; +endash = { +X = -79; +endash = 0; +foursuperior = -173; +question = -108; +}; +endash.case = { +H = 0; +X = -106; +quotedblbase = -137; +quotedblbase.ss01 = -128; +}; +eng = { +bracketright = -19; +}; +eogonek = { +lslash = 12; +}; +equal = { +T = -98; +equal = 0; +parenright = -89; +parenright.case = -81; +}; +eth = { +a = 24; +e = 23; +g = 23; +hyphen = 32; +parenright = -45; +}; +euro = { +parenright = -69; +parenright.case = -68; +}; +exclamdown = { +T = -90; +V = -49; +Y = -67; +}; +f = { +igrave = 0; +n = 0; +o = -32; +}; +f_f.liga = { +igrave = 0; +}; +f_f_i.liga = { +idieresis = 19; +}; +fi = { +idieresis = 19; +}; +five = { +degree = -48; +ordmasculine = -39; +percent = -18; +}; +five.dnom = { +degree = -109; +question.ss01 = -98; +quotedblleft = -137; +}; +five.numr = { +fraction = 0; +}; +fiveinferior = { +T = -160; +}; +fivesuperior = { +comma = -73; +comma.ss01 = -68; +period = -71; +period.ss01 = -68; +slash = -99; +}; +fl = { +idieresis = 19; +itilde = 18; +periodcentered.loclCAT = 49; +}; +four = { +asciicircum = -115; +bracketright = -75; +bracketright.case = -74; +degree = -83; +ordfeminine = -73; +ordmasculine = -73; +percent = -53; +x = -58; +}; +four.dnom = { +degree = -107; +question.ss01 = -103; +quotedblleft = -137; +}; +fourinferior = { +T = -151; +V = -111; +}; +foursuperior = { +comma = -73; +comma.ss01 = -68; +period = -71; +period.ss01 = -68; +slash = -96; +}; +fraction = { +eight.dnom = 0; +four.dnom = -50; +fourinferior = -50; +seveninferior = 44; +two.dnom = 2; +zero.dnom = -16; +}; +g = { +bracketright = -43; +j = 17; +j.ss01 = 17; +parenright = -28; +slash = 15; +}; +g.ss06 = { +g.ss06 = 41; +}; +gcaron.ss06 = { +gcaron.ss06 = 41; +}; +gdotaccent = { +j = 17; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 41; +}; +germandbls = { +e = 20; +hyphen = 35; +parenright = -43; +}; +greater = { +T = -145; +parenright = -93; +}; +greaterequal = { +T = -198; +}; +guillemetleft = { +pi = 0; +}; +guillemetright = { +X = -67; +bracketright = -88; +}; +guilsinglright = { +X = -67; +}; +h = { +asterisk = -49; +}; +hyphen = { +Lslash = 17; +X = -79; +bracketright = -90; +foursuperior = -173; +pi = -25; +question = -108; +quotedblbase = -137; +quoteleft = -73; +quotesingle = -67; +x = -75; +}; +hyphen.case = { +Dcroat = 22; +X = -106; +bracketright.case = -91; +quotedblbase = -137; +quotedblbase.ss01 = -128; +quotesinglbase = -73; +}; +i = { +T = -25; +idieresis = 19; +jcircumflex = 19; +parenright = -28; +}; +i.ss01 = { +parenright = -12; +}; +iacute = { +rcaron = 19; +}; +icircumflex = { +b = 19; +h = 19; +i = 19; +icircumflex = 54; +j = 19; +k = 19; +l = 19; +l.ss03 = 18; +l.ss04 = 19; +question = 82; +quotedbl = 48; +quoteright = 53; +quotesingle = 55; +}; +idieresis = { +b = 19; +idieresis = 19; +k = 19; +l = 19; +l.ss03 = 15; +l.ss04 = 19; +}; +idotaccent = { +parenright = -28; +}; +idotaccent.ss01 = { +parenright = -12; +}; +imacron = { +b = 19; +imacron = 57; +j = 19; +k = 19; +kcommaaccent = 19; +l = 19; +l.ss04 = 19; +lcommaaccent = 19; +quotedbl = 85; +}; +infinity = { +parenright = -99; +parenright.case = -88; +}; +integral = { +a = -75; +}; +iogonek = { +j = 16; +}; +itilde = { +h = 19; +itilde = 20; +quotedbl = 79; +quotesingle = 81; +}; +j = { +j = 19; +}; +jacute = { +backslash = 101; +iogonek = 21; +}; +jcircumflex = { +i = 19; +jcircumflex = 64; +}; +k = { +oslash = -13; +}; +l = { +at = 0; +idieresis = 19; +igrave = 19; +itilde = 18; +jcircumflex = 19; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -32; +}; +l.ss04 = { +periodcentered.loclCAT = 49; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 116; +l = 64; +ncaron = 18; +scaron = 0; +twosuperior = 94; +}; +lcaron.ss03 = { +b = 2; +eightsuperior = 35; +exclam = 55; +exclam.ss01 = 54; +fivesuperior = 41; +k = 2; +ninesuperior = 49; +onesuperior = 51; +question = 49; +quotedbl = 57; +quotesingle = 57; +sevensuperior = 56; +sixsuperior = 29; +}; +lcaron.ss04 = { +exclam.ss01 = 116; +twosuperior = 94; +}; +liraTurkish = { +one = -61; +parenright = -91; +question = -71; +quotedbl = -78; +quotesingle = -67; +seven = -68; +}; +logicalnot = { +Y = -186; +parenright = -158; +seven = -156; +}; +m = { +asterisk = -55; +braceright = -68; +twosuperior = -10; +}; +minus = { +T = -161; +X = -114; +comma = -73; +one = -81; +parenright = -114; +parenright.case = -104; +period = -71; +seven = -76; +three = -8; +two = -19; +}; +mu = { +mu = 0; +parenright = -40; +quotesingle = -31; +}; +multiply = { +parenright = -100; +parenright.case = -96; +}; +n = { +asterisk = -57; +at = 7; +braceright = -68; +degree = -71; +g.ss06 = 7; +n = 0; +one = -61; +ordmasculine = -46; +}; +ncaron = { +Yacute = -62; +}; +nine = { +bracketright = -55; +degree = -16; +}; +nine.dnom = { +degree = -108; +question = -84; +question.ss01 = -107; +quotedbl = -112; +quotedblleft = -137; +quotedblleft.ss01 = -128; +quotedblright = -137; +quotedblright.ss01 = -128; +}; +ninesuperior = { +comma = -73; +comma.ss01 = -68; +fraction = -13; +period = -71; +period.ss01 = -68; +slash = -115; +}; +notequal = { +parenright = -154; +parenright.case = -145; +}; +numbersign = { +parenright = -77; +}; +o = { +asterisk = -63; +backslash = -61; +braceright = -76; +germandbls = -18; +lslash = 23; +n = 0; +one = -70; +}; +oacute = { +lslash = 23; +}; +ocircumflexacute = { +bracketright = -16; +parenright = -9; +}; +odieresis = { +germandbls = -18; +}; +ohorn = { +i = 3; +m = 2; +n = 2; +parenright = -37; +}; +ohornacute = { +c = 23; +i = 3; +m = 2; +n = 2; +p = 3; +t = -2; +t_i.liga = -2; +t_t.liga = -2; +}; +ohorndotbelow = { +c = 23; +i = 3; +n = 2; +p = 3; +t = -2; +t_i.liga = -2; +t_t.liga = -2; +u = 10; +}; +ohorngrave = { +i = 3; +n = 2; +parenright = -37; +}; +ohornhookabove = { +i = 3; +n = 2; +}; +ohorntilde = { +i = 3; +n = 2; +}; +ohungarumlaut = { +parenright = -54; +}; +one = { +comma.ss01 = -19; +degree = -21; +equal = 0; +four = 0; +icircumflex = 35; +nine = 0; +one = 0; +parenright = 0; +percent = 0; +period.ss01 = -21; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -95; +one.dnom = 0; +question.ss01 = -107; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -73; +comma.ss01 = -68; +period = -71; +period.ss01 = -68; +slash = -86; +}; +ordfeminine = { +comma = -73; +comma.ss01 = -68; +period = -71; +period.ss01 = -68; +}; +ordmasculine = { +comma = -73; +comma.ss01 = -68; +hyphen = -110; +parenright = -59; +period = -71; +period.ss01 = -68; +slash = -128; +}; +oslash = { +d = 23; +e = 23; +g = 22; +hyphen = 32; +parenright = -56; +y = 0; +}; +p = { +asterisk = -58; +backslash = -60; +braceright = -77; +lslash = 23; +one = -66; +}; +parenleft = { +Dcroat = -56; +H = 0; +Icircumflex = 31; +Oslash = -35; +ampersand = -72; +approxequal = -148; +asciicircum = -115; +asciitilde = -106; +at = -98; +cent = -90; +copyright = -104; +degree = -63; +divide = -114; +dollar = -50; +equal = -89; +euro = -84; +greaterequal = -85; +i = -28; +idotaccent = -28; +infinity = -99; +iogonek = 80; +jcircumflex = 71; +less = -93; +literSign = -67; +logicalnot = -153; +minus = -114; +mu = -12; +multiply = -100; +notequal = -153; +numbersign = -81; +oslash = -40; +p = -3; +parenleft = -53; +pi = -60; +plus = -108; +plusminus = -36; +published = -104; +question = -41; +quotedblbase = -11; +quoteleft = -47; +radical = -92; +scaron = -56; +section = -35; +sterling = -52; +x = -53; +}; +parenleft.case = { +Icircumflex = 46; +approxequal = -120; +asciicircum = -116; +asciitilde = -89; +dollar = -51; +equal = -81; +euro = -77; +minus = -105; +numbersign = -71; +parenleft.case = -42; +plus = -98; +question = -41; +quotedblbase = -18; +quoteleft = -47; +}; +parenright = { +bracketright = -43; +comma = -21; +comma.ss01 = -35; +hyphen = 22; +parenleft = 18; +parenright = -53; +period = -21; +period.ss01 = -36; +quotedbl = -25; +}; +parenright.case = { +comma = -42; +comma.ss01 = -49; +parenright.case = -42; +period = -42; +period.ss01 = -57; +}; +percent = { +asterisk = -91; +bracketright = -82; +comma.ss01 = -39; +eightsuperior = -59; +fivesuperior = -66; +foursuperior = -89; +ninesuperior = -63; +onesuperior = -75; +parenright = -86; +parenright.case = -55; +period = -26; +period.ss01 = -40; +question = -94; +question.ss01 = -112; +quotedbl = -95; +quotedblleft = -109; +quotedblright = -100; +quoteleft = -73; +quoteright = -73; +quotesingle = -67; +sevensuperior = -78; +sixsuperior = -69; +threesuperior = -58; +twosuperior = -37; +}; +period = { +bracketright = -71; +eightsuperior = -71; +fivesuperior = -71; +foursuperior = -71; +ninesuperior = -71; +onesuperior = -71; +ordfeminine = -71; +ordmasculine = -71; +parenleft.case = -42; +question = -71; +quoteleft = -71; +quotesingle = -67; +sevensuperior = -71; +sixsuperior = -71; +threesuperior = -71; +twosuperior = -71; +}; +period.ss01 = { +bracketright = -68; +eightsuperior = -68; +fivesuperior = -68; +foursuperior = -68; +ninesuperior = -68; +onesuperior = -68; +ordfeminine = -68; +ordmasculine = -68; +question.ss01 = -68; +sevensuperior = -68; +sixsuperior = -68; +threesuperior = -68; +twosuperior = -68; +}; +periodcentered.loclCAT = { +l = 49; +l.ss03 = 51; +}; +perthousand = { +asterisk = -111; +parenright = -91; +parenright.case = -60; +question = -101; +question.ss01 = -128; +quotedblleft = -137; +quotedblleft.ss01 = -128; +quotedblright = -137; +quotedblright.ss01 = -128; +quoteleft = -73; +quoteright = -73; +}; +pi = { +hyphen = -29; +parenright = -50; +period = 0; +pi = 16; +quotesingle = -3; +}; +plus = { +J = -134; +T = -133; +V = -67; +X = -104; +Y = -99; +braceright = -93; +bracketright = -97; +comma = -73; +comma.ss01 = -68; +one = -67; +parenright = -107; +parenright.case = -98; +period = -71; +period.ss01 = -68; +quotedbl = -59; +seven = -50; +slash = -76; +three = -8; +two = -19; +}; +published = { +parenright = -89; +}; +q = { +bracketright = -10; +j = 18; +parenright = -3; +}; +question = { +A = -94; +J = -102; +comma = -73; +hyphen = -69; +parenright = -48; +parenright.case = -45; +period = -71; +question = 27; +questiondown = -108; +slash = -89; +}; +question.ss01 = { +comma.ss01 = -68; +parenright = -48; +parenright.case = -45; +period.ss01 = -68; +questiondown.ss01 = -115; +}; +questiondown.case = { +T = -97; +V = -99; +Y = -100; +quotedbl = -111; +quotedblleft = -123; +quotedblleft.ss01 = -108; +quoteright = -73; +}; +questiondown.ss01 = { +C = -92; +Q = -92; +Q.ss09 = -92; +T = -181; +V = -169; +Y = -183; +four = -115; +quotedbl = -127; +quotedblleft.ss01 = -124; +quotesingle = -67; +}; +quotedbl = { +ellipsis.ss01 = -148; +exclamdown = -36; +g.ss06 = -54; +icircumflex = 47; +mu = -36; +questiondown = -135; +questiondown.case = -100; +questiondown.ss01 = -139; +underscore = -148; +}; +quotedblbase = { +copyright = -90; +divide = -137; +equal = -113; +euro = -131; +minus = -137; +p = -10; +plus = -137; +question = -98; +quotedblright = -137; +quoteleft = -73; +}; +quotedblbase.ss01 = { +divide = -128; +minus = -128; +plus = -128; +question.ss01 = -114; +quotedblright.ss01 = -128; +}; +quotedblleft = { +g.ss06 = -87; +mu = -60; +questiondown = -137; +questiondown.case = -105; +quotedblbase = -137; +underscore = -137; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -128; +questiondown.ss01 = -128; +quotedblbase.ss01 = -128; +underscore = -128; +}; +quotedblright = { +asciitilde = -103; +questiondown = -137; +questiondown.case = -119; +quotesinglbase = -73; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -128; +questiondown.case = -117; +questiondown.ss01 = -128; +}; +quoteleft = { +questiondown = -73; +questiondown.case = -73; +quotedblbase = -73; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -68; +}; +quoteright = { +icircumflex = 39; +questiondown = -73; +quotedblbase = -73; +}; +quoteright.ss01 = { +questiondown.ss01 = -68; +quotedblbase.ss01 = -68; +}; +quotesinglbase = { +T = -73; +V = -73; +Y = -73; +minus = -73; +plus = -73; +question = -73; +quotedblleft = -73; +quoteleft = -73; +}; +quotesinglbase.ss01 = { +T = -68; +V = -68; +Y = -68; +question.ss01 = -68; +}; +quotesingle = { +Hbar = 37; +g.ss06 = -53; +icircumflex = 53; +igrave = 24; +imacron = 85; +itilde = 76; +l.ss04 = 19; +questiondown = -67; +questiondown.case = -67; +underscore = -67; +}; +r = { +braceright = -86; +fourinferior = -92; +g.ss06 = -19; +parenright = -84; +}; +radical = { +A = -127; +}; +rcaron = { +sevensuperior = -4; +}; +registered = { +comma = -73; +comma.ss01 = -68; +parenright = -70; +parenright.case = -68; +period = -71; +period.ss01 = -68; +slash = -98; +}; +s = { +asterisk = -45; +braceright = -83; +l = 0; +}; +scaron = { +T = -58; +}; +semicolon = { +hyphen = -73; +}; +seven = { +minus = -94; +percent = 0; +plus = -84; +underscore = -178; +}; +seven.dnom = { +question.ss01 = -121; +}; +seven.numr = { +fraction = -50; +}; +seveninferior = { +parenright = -87; +}; +sevensuperior = { +A = -172; +comma = -73; +comma.ss01 = -68; +fraction = -50; +period = -71; +period.ss01 = -68; +slash = -183; +}; +six = { +bracketright = -49; +degree = -16; +}; +six.dnom = { +degree = -104; +question.ss01 = -103; +quotedbl = -109; +quotedblleft = -137; +quotedblleft.ss01 = -128; +quotedblright = -137; +}; +sixinferior = { +T = -162; +}; +sixsuperior = { +comma = -73; +comma.ss01 = -68; +period = -71; +period.ss01 = -68; +slash = -101; +}; +slash = { +fourinferior = -139; +g.ss06 = -63; +ibreve = 105; +l.ss04 = 54; +mu = -49; +quotedblbase = -137; +quotedblbase.ss01 = -128; +quotesinglbase = -73; +underscore = -170; +}; +sterling = { +two = 22; +}; +t_i.liga = { +idieresis = 19; +}; +tcaron = { +b = 0; +exclam = 28; +h = 0; +hyphen = -65; +i = 0; +j = 0; +k = 0; +parenright = 33; +quotedbl = 19; +quotedblleft = 0; +quotesingle = 19; +}; +tcedilla = { +parenright = 21; +}; +tenge = { +comma = -73; +comma.ss01 = -68; +period = -71; +period.ss01 = -68; +slash = -117; +}; +three = { +bracketright = -40; +}; +three.dnom = { +degree = -104; +question.ss01 = -104; +quotedbl = -109; +quotedblleft = -137; +quotedblright = -137; +}; +three.numr = { +fraction = 0; +}; +threeinferior = { +T = -163; +V = -93; +Y = -143; +}; +threesuperior = { +comma = -73; +comma.ss01 = -68; +fraction = 0; +parenright = -35; +period = -71; +period.ss01 = -68; +slash = -97; +}; +trademark = { +comma = -73; +comma.ss01 = -68; +hyphen = -110; +period = -71; +period.ss01 = -68; +slash = -139; +}; +two = { +percent = 10; +}; +two.dnom = { +degree = -102; +question.ss01 = -103; +quotedbl = -107; +quotedblleft = -137; +quotedblright = -137; +}; +twoinferior = { +T = -162; +V = -90; +Y = -143; +}; +twosuperior = { +comma = -73; +comma.ss01 = -68; +parenright = -28; +parenright.case = -28; +period = -71; +period.ss01 = -68; +slash = -82; +}; +uhorn = { +a = -17; +ohorn = -17; +ohornacute = -17; +ohorndotbelow = -17; +ohorndotbelow.ss01 = -17; +ohorngrave = -17; +ohornhookabove = -17; +ohorntilde = -17; +}; +uhornacute = { +a = -17; +c = -17; +}; +uhorndotbelow = { +a = -17; +c = -17; +comma = -23; +period = -24; +}; +uhorngrave = { +a = -17; +a.ss05 = -21; +}; +uhornhookabove = { +a = -17; +comma = -23; +comma.ss01 = -39; +period = -24; +period.ss01 = -40; +}; +uhorntilde = { +a = -17; +comma = -23; +period = -24; +}; +uhungarumlaut = { +parenright = -35; +}; +underscore = { +C = -64; +O = -64; +T = -158; +V = -190; +W = -111; +Y = -169; +asterisk = -146; +four = -164; +one = -79; +quotedbl = -148; +quotedblright = -137; +quotedblright.ss01 = -128; +quotesingle = -67; +seven = -93; +six = -40; +v = -113; +}; +uogonek = { +j = 16; +parenright = 0; +}; +v = { +braceright = -81; +n = 0; +}; +w = { +braceright = -76; +}; +x = { +four = -63; +}; +y = { +braceright = -81; +}; +ydotbelow = { +period = -71; +}; +zero = { +braceright = -54; +bracketright = -58; +bracketright.case = -49; +degree = -26; +percent = 9; +}; +zero.dnom = { +degree = -113; +question = -86; +question.ss01 = -109; +quotedbl = -116; +quotedblleft = -137; +quotedblleft.ss01 = -128; +quotedblright = -137; +quotedblright.ss01 = -128; +quoteleft = -73; +}; +zeroinferior = { +parenright = -78; +}; +zerosuperior = { +comma = -73; +comma.ss01 = -68; +fraction = -22; +period = -71; +period.ss01 = -68; +slash = -112; +}; +}; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 36; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 31; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = -105; +"@MMK_R_KO_U" = -36; +"@MMK_R_KO_V" = -112; +"@MMK_R_KO_W" = -71; +"@MMK_R_KO_X" = 37; +"@MMK_R_KO_Y" = -135; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -108; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = 4; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = -88; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_fivesuperior" = -95; +"@MMK_R_KO_foursuperior" = -87; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -42; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -24; +"@MMK_R_KO_hyphen.case" = -49; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 67; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -95; +"@MMK_R_KO_onesuperior" = -120; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = 3; +"@MMK_R_KO_question" = -89; +"@MMK_R_KO_question.ss01" = -97; +"@MMK_R_KO_quotedbl" = -109; +"@MMK_R_KO_quotedblleft" = -99; +"@MMK_R_KO_quotedblleft.ss01" = -88; +"@MMK_R_KO_quoteleft" = -96; +"@MMK_R_KO_quoteright" = -78; +"@MMK_R_KO_quoteright.ss01" = -87; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_sevensuperior" = -116; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_sixsuperior" = -98; +"@MMK_R_KO_slash" = 21; +"@MMK_R_KO_t" = -47; +"@MMK_R_KO_threesuperior" = -89; +"@MMK_R_KO_trademark" = -141; +"@MMK_R_KO_u" = -19; +"@MMK_R_KO_underscore" = 45; +"@MMK_R_KO_v" = -96; +"@MMK_R_KO_w" = -52; +"@MMK_R_KO_x" = 39; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -22; +"@MMK_R_KO_Y" = -29; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 22; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 80; +"@MMK_R_KO_imacron" = 51; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 20; +"@MMK_R_KO_sevensuperior" = -9; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -22; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -24; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -23; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = -38; +"@MMK_R_KO_Y" = -43; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -31; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 4; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 69; +"@MMK_R_KO_imacron" = 32; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = 10; +"@MMK_R_KO_question.ss01" = 10; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 16; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -49; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -33; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 29; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -12; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -49; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -37; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 23; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 3; +"@MMK_R_KO_g" = 20; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 42; +"@MMK_R_KO_imacron" = 14; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -25; +"@MMK_R_KO_six" = 28; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = 23; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -43; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -62; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -33; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 29; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -12; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -49; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -37; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 3; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -25; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_y" = 2; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 25; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_X" = 19; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -8; +"@MMK_R_KO_bracketright" = 12; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_hyphen.case" = -16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 95; +"@MMK_R_KO_imacron" = 71; +"@MMK_R_KO_j" = 43; +"@MMK_R_KO_l.ss04" = 32; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 25; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 25; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 21; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -59; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = -75; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 30; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 24; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = -106; +"@MMK_R_KO_comma.ss01" = -127; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -120; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_icircumflex" = 111; +"@MMK_R_KO_imacron" = 84; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 40; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_ninesuperior" = 14; +"@MMK_R_KO_onesuperior" = 11; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_period.ss01" = -132; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = 7; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = 6; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 6; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_sevensuperior" = 7; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 11; +"@MMK_R_KO_slash" = -72; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 7; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -206; +"@MMK_R_KO_v" = 13; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 13; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 26; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -44; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -29; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 17; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 55; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 12; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period" = -28; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 28; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -29; +"@MMK_R_KO_t" = 16; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -40; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -59; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -60; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 17; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 35; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -24; +"@MMK_R_KO_parenright" = -28; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 17; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 13; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 81; +"@MMK_R_KO_imacron" = 51; +"@MMK_R_KO_j" = 26; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_sevensuperior" = -4; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 15; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 17; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 15; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = 16; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_hyphen.case" = -82; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 99; +"@MMK_R_KO_imacron" = 74; +"@MMK_R_KO_j" = 44; +"@MMK_R_KO_l.ss04" = 39; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 26; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_underscore" = 22; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 3; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -23; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -21; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 89; +"@MMK_R_KO_imacron" = 62; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -33; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 38; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 27; +"@MMK_R_KO_O" = -53; +"@MMK_R_KO_S" = -33; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_X" = 39; +"@MMK_R_KO_Y" = 16; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -84; +"@MMK_R_KO_bracketright" = 18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 3; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_egrave" = -40; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -78; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -60; +"@MMK_R_KO_hyphen.case" = -112; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 77; +"@MMK_R_KO_j" = 64; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 2; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -50; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -54; +"@MMK_R_KO_quotedblleft.ss01" = -44; +"@MMK_R_KO_quoteleft" = -54; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = -23; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = -47; +"@MMK_R_KO_sixsuperior" = -35; +"@MMK_R_KO_slash" = 23; +"@MMK_R_KO_t" = -56; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_underscore" = 42; +"@MMK_R_KO_v" = -86; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_x" = 41; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 33; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = 29; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -112; +"@MMK_R_KO_U" = -16; +"@MMK_R_KO_V" = -114; +"@MMK_R_KO_W" = -58; +"@MMK_R_KO_X" = 26; +"@MMK_R_KO_Y" = -150; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -209; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 32; +"@MMK_R_KO_comma" = 40; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -200; +"@MMK_R_KO_ellipsis" = 9; +"@MMK_R_KO_exclam" = 22; +"@MMK_R_KO_f" = -30; +"@MMK_R_KO_fivesuperior" = -200; +"@MMK_R_KO_foursuperior" = -194; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = 11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -104; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 56; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -200; +"@MMK_R_KO_onesuperior" = -157; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 42; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -89; +"@MMK_R_KO_question.ss01" = -103; +"@MMK_R_KO_quotedbl" = -109; +"@MMK_R_KO_quotedblleft" = -202; +"@MMK_R_KO_quotedblleft.ss01" = -210; +"@MMK_R_KO_quoteleft" = -133; +"@MMK_R_KO_quoteright" = -196; +"@MMK_R_KO_quoteright.ss01" = -204; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -195; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_sixsuperior" = -200; +"@MMK_R_KO_slash" = 42; +"@MMK_R_KO_t" = -37; +"@MMK_R_KO_threesuperior" = -196; +"@MMK_R_KO_trademark" = -207; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 38; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -37; +"@MMK_R_KO_x" = 28; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 33; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = 29; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -101; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -110; +"@MMK_R_KO_W" = -58; +"@MMK_R_KO_X" = 26; +"@MMK_R_KO_Y" = -148; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 32; +"@MMK_R_KO_comma" = 40; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -115; +"@MMK_R_KO_ellipsis" = 9; +"@MMK_R_KO_exclam" = 22; +"@MMK_R_KO_fivesuperior" = -120; +"@MMK_R_KO_foursuperior" = -110; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = 11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -104; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -119; +"@MMK_R_KO_onesuperior" = -120; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 42; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -88; +"@MMK_R_KO_question.ss01" = -103; +"@MMK_R_KO_quotedbl" = -109; +"@MMK_R_KO_quotedblleft" = -117; +"@MMK_R_KO_quotedblleft.ss01" = -122; +"@MMK_R_KO_quoteleft" = -117; +"@MMK_R_KO_quoteright" = -116; +"@MMK_R_KO_quoteright.ss01" = -118; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_sevensuperior" = -126; +"@MMK_R_KO_sixsuperior" = -115; +"@MMK_R_KO_slash" = 42; +"@MMK_R_KO_threesuperior" = -118; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -15; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 30; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -50; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = 18; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = -32; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 24; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 4; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = 22; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_underscore" = -63; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -15; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 30; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -50; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = 18; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -5; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = -32; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 24; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 4; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = 23; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_underscore" = -63; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 29; +"@MMK_R_KO_I.ss02" = 43; +"@MMK_R_KO_O" = 30; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 53; +"@MMK_R_KO_U" = 42; +"@MMK_R_KO_V" = 64; +"@MMK_R_KO_X" = 46; +"@MMK_R_KO_bracketright" = 77; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = -32; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 34; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 32; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_parenright" = 69; +"@MMK_R_KO_parenright.case" = 70; +"@MMK_R_KO_period" = -31; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = 10; +"@MMK_R_KO_question.ss01" = 3; +"@MMK_R_KO_quotedbl" = 39; +"@MMK_R_KO_quoteright" = 42; +"@MMK_R_KO_quoteright.ss01" = 42; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = 29; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -70; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -93; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -44; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 30; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 13; +"@MMK_R_KO_ellipsis" = -166; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_fivesuperior" = 7; +"@MMK_R_KO_foursuperior" = 18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 93; +"@MMK_R_KO_imacron" = 58; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 9; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -131; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_question" = 13; +"@MMK_R_KO_question.ss01" = 13; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 6; +"@MMK_R_KO_quoteleft" = 14; +"@MMK_R_KO_quoteright" = 11; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 23; +"@MMK_R_KO_sixsuperior" = 15; +"@MMK_R_KO_slash" = -72; +"@MMK_R_KO_t" = 20; +"@MMK_R_KO_threesuperior" = 9; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -244; +"@MMK_R_KO_v" = 24; +"@MMK_R_KO_w" = 31; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 21; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 32; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_J" = 28; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -38; +"@MMK_R_KO_U" = -18; +"@MMK_R_KO_V" = -51; +"@MMK_R_KO_W" = -37; +"@MMK_R_KO_X" = 29; +"@MMK_R_KO_Y" = -87; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 23; +"@MMK_R_KO_asciicircum" = -23; +"@MMK_R_KO_bracketright" = 6; +"@MMK_R_KO_colon" = 31; +"@MMK_R_KO_comma" = 41; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = 10; +"@MMK_R_KO_exclam" = 23; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -8; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 9; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = 59; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 43; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -22; +"@MMK_R_KO_question.ss01" = -27; +"@MMK_R_KO_quotedbl" = -44; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -28; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 19; +"@MMK_R_KO_sevensuperior" = -56; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -30; +"@MMK_R_KO_slash" = 43; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_trademark" = -75; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 39; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = 29; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 6; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 21; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = 9; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 96; +"@MMK_R_KO_imacron" = 56; +"@MMK_R_KO_j" = 42; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -4; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = 3; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = 21; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -15; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 10; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -28; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 21; +"@MMK_R_KO_egrave" = 21; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 63; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -19; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -35; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -28; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 21; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 63; +"@MMK_R_KO_imacron" = 29; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -18; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -103; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = -99; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 35; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 32; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = 28; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -64; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 29; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -115; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = -78; +"@MMK_R_KO_egrave" = -55; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -135; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = -117; +"@MMK_R_KO_hyphen.case" = -114; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 116; +"@MMK_R_KO_imacron" = 89; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 40; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_ninesuperior" = 8; +"@MMK_R_KO_onesuperior" = 14; +"@MMK_R_KO_parenright" = 1; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -116; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 12; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 8; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -59; +"@MMK_R_KO_sevensuperior" = 8; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = -98; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_threesuperior" = 4; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = -103; +"@MMK_R_KO_v" = 18; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = 18; +"@MMK_R_KO_z" = -8; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = 2; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 8; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_imacron" = 64; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 4; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -2; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -53; +"@MMK_R_KO_v" = 13; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -14; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = 2; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 9; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 13; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -35; +"@MMK_R_KO_H" = 40; +"@MMK_R_KO_I.ss02" = 54; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_T" = 72; +"@MMK_R_KO_U" = 54; +"@MMK_R_KO_V" = 83; +"@MMK_R_KO_X" = 65; +"@MMK_R_KO_Y" = 85; +"@MMK_R_KO_Z" = 49; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 90; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_eightsuperior" = 45; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_exclam" = 48; +"@MMK_R_KO_fivesuperior" = 42; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 46; +"@MMK_R_KO_onesuperior" = 59; +"@MMK_R_KO_parenright" = 89; +"@MMK_R_KO_parenright.case" = 90; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = 16; +"@MMK_R_KO_question.ss01" = 6; +"@MMK_R_KO_quotedbl" = 55; +"@MMK_R_KO_quoteright" = 48; +"@MMK_R_KO_quoteright.ss01" = 48; +"@MMK_R_KO_sevensuperior" = 67; +"@MMK_R_KO_sixsuperior" = 31; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_threesuperior" = 50; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -110; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = -96; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = 32; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 34; +"@MMK_R_KO_X" = 19; +"@MMK_R_KO_Y" = 39; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -68; +"@MMK_R_KO_a.ss05" = -57; +"@MMK_R_KO_asciicircum" = -22; +"@MMK_R_KO_bracketright" = 36; +"@MMK_R_KO_colon" = -33; +"@MMK_R_KO_comma" = -123; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = -69; +"@MMK_R_KO_egrave" = -52; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -144; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = -61; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -75; +"@MMK_R_KO_hyphen.case" = -49; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 77; +"@MMK_R_KO_imacron" = 100; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 47; +"@MMK_R_KO_n" = -45; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 10; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -122; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = 16; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = -61; +"@MMK_R_KO_sevensuperior" = 18; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -133; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 9; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_underscore" = -132; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_x" = -25; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -61; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = -55; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = 28; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 34; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 18; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -34; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 32; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = -63; +"@MMK_R_KO_comma.ss01" = -82; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -83; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -33; +"@MMK_R_KO_hyphen.case" = -17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 92; +"@MMK_R_KO_imacron" = 96; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 52; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_ninesuperior" = 5; +"@MMK_R_KO_onesuperior" = 11; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -62; +"@MMK_R_KO_period.ss01" = -85; +"@MMK_R_KO_question" = 3; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 19; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 10; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = -32; +"@MMK_R_KO_sevensuperior" = 14; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -65; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 5; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_underscore" = -64; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 37; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = 26; +"@MMK_R_KO_O" = -48; +"@MMK_R_KO_S" = -30; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = -5; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_X" = 38; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -71; +"@MMK_R_KO_bracketright" = 30; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_e" = -40; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -32; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -69; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -60; +"@MMK_R_KO_hyphen.case" = -108; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 35; +"@MMK_R_KO_imacron" = 84; +"@MMK_R_KO_j" = 66; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 7; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -31; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteleft" = -48; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = -23; +"@MMK_R_KO_sevensuperior" = 3; +"@MMK_R_KO_six" = -41; +"@MMK_R_KO_sixsuperior" = -28; +"@MMK_R_KO_slash" = 22; +"@MMK_R_KO_t" = -52; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -36; +"@MMK_R_KO_underscore" = 41; +"@MMK_R_KO_v" = -60; +"@MMK_R_KO_w" = -57; +"@MMK_R_KO_x" = 40; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -134; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = -104; +"@MMK_R_KO_O" = -59; +"@MMK_R_KO_S" = -38; +"@MMK_R_KO_T" = 28; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 39; +"@MMK_R_KO_W" = 35; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = 41; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -112; +"@MMK_R_KO_a.ss05" = -60; +"@MMK_R_KO_asciicircum" = -57; +"@MMK_R_KO_bracketright" = 38; +"@MMK_R_KO_colon" = -61; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = -116; +"@MMK_R_KO_egrave" = -51; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -184; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -43; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -49; +"@MMK_R_KO_g" = -106; +"@MMK_R_KO_guillemetleft" = -118; +"@MMK_R_KO_guillemetright" = -49; +"@MMK_R_KO_hyphen" = -138; +"@MMK_R_KO_hyphen.case" = -94; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 102; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 45; +"@MMK_R_KO_n" = -74; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 5; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -131; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = -104; +"@MMK_R_KO_sevensuperior" = 20; +"@MMK_R_KO_six" = -56; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = -144; +"@MMK_R_KO_t" = -44; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 10; +"@MMK_R_KO_u" = -64; +"@MMK_R_KO_underscore" = -149; +"@MMK_R_KO_v" = -43; +"@MMK_R_KO_w" = -44; +"@MMK_R_KO_x" = -47; +"@MMK_R_KO_y" = -43; +"@MMK_R_KO_z" = -66; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 15; +"@MMK_R_KO_X" = 20; +"@MMK_R_KO_Y" = 5; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 11; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = 27; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = 4; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_hyphen.case" = -53; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 92; +"@MMK_R_KO_imacron" = 68; +"@MMK_R_KO_j" = 46; +"@MMK_R_KO_l.ss04" = 32; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 29; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 29; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 25; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -45; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = -6; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -29; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -86; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 24; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -78; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -87; +"@MMK_R_KO_W" = -54; +"@MMK_R_KO_X" = 25; +"@MMK_R_KO_Y" = -123; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asciicircum" = -44; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 15; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -36; +"@MMK_R_KO_ellipsis" = 8; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -44; +"@MMK_R_KO_foursuperior" = -32; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 31; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -94; +"@MMK_R_KO_parenright" = -30; +"@MMK_R_KO_period" = 16; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -47; +"@MMK_R_KO_question.ss01" = -52; +"@MMK_R_KO_quotedbl" = -59; +"@MMK_R_KO_quotedblleft" = -45; +"@MMK_R_KO_quotedblleft.ss01" = -38; +"@MMK_R_KO_quoteleft" = -45; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -34; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_sevensuperior" = -76; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = -49; +"@MMK_R_KO_slash" = 19; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -35; +"@MMK_R_KO_trademark" = -103; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 37; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = 18; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 26; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -29; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_X" = 27; +"@MMK_R_KO_Y" = -63; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_bracketright" = 6; +"@MMK_R_KO_colon" = 25; +"@MMK_R_KO_comma" = 15; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -33; +"@MMK_R_KO_ellipsis" = 8; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -42; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 39; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -73; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_period" = 16; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -45; +"@MMK_R_KO_question.ss01" = -52; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -45; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -31; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_sevensuperior" = -68; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = -42; +"@MMK_R_KO_slash" = 19; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -35; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 37; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = 18; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = -114; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_t" = -2; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -106; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -66; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = -37; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -100; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -105; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 19; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -44; +"@MMK_R_KO_a.ss05" = -40; +"@MMK_R_KO_asterisk" = 34; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = -47; +"@MMK_R_KO_eight" = 8; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -66; +"@MMK_R_KO_g" = -38; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -80; +"@MMK_R_KO_hyphen.case" = -15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -12; +"@MMK_R_KO_nine" = 17; +"@MMK_R_KO_one" = 18; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -131; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 16; +"@MMK_R_KO_quotedblleft.ss01" = 4; +"@MMK_R_KO_quoteright" = 10; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_seven" = 23; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -112; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_three" = 5; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 15; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 29; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 36; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_Y" = 38; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 17; +"@MMK_R_KO_comma.ss01" = 8; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -39; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -50; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 79; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 7; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -31; +"@MMK_R_KO_seven" = 19; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_slash" = 46; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_v" = -54; +"@MMK_R_KO_w" = -46; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 33; +"@MMK_R_KO_H" = 13; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = 26; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 26; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 34; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = 5; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen.case" = -66; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_period" = 15; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 16; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_slash" = 39; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 23; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -67; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -65; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = -38; +"@MMK_R_KO_Y" = -109; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -42; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 11; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -56; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = -35; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = -43; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -24; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -73; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -40; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = -36; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -133; +"@MMK_R_KO_comma" = 19; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_five" = -19; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = -52; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = -119; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -95; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_quotedbl" = -133; +"@MMK_R_KO_quotedblleft" = -133; +"@MMK_R_KO_quoteright" = -133; +"@MMK_R_KO_seven" = -76; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_three" = -8; +"@MMK_R_KO_two" = 26; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -114; +"@MMK_R_KO_H" = -12; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_a" = -54; +"@MMK_R_KO_e" = -56; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -13; +"@MMK_R_KO_n" = -28; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -79; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -72; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = -37; +"@MMK_R_KO_Y" = -116; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -38; +"@MMK_R_KO_bracketright" = -40; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -32; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -66; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = -45; +"@MMK_R_KO_question.ss01" = -51; +"@MMK_R_KO_quotedbl" = -51; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -55; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -39; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -89; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -41; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = -34; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -72; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = -34; +"@MMK_R_KO_Y" = -78; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = -65; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_period" = -8; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = -44; +"@MMK_R_KO_question.ss01" = -51; +"@MMK_R_KO_quotedbl" = -49; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -51; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -35; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -41; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = -34; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asterisk" = 8; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 15; +"@MMK_R_KO_eight" = 26; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_five" = 13; +"@MMK_R_KO_four" = 20; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 16; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -23; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_three" = 21; +"@MMK_R_KO_two" = 9; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -13; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = -44; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = -131; +"@MMK_R_KO_U" = -42; +"@MMK_R_KO_V" = -144; +"@MMK_R_KO_W" = -88; +"@MMK_R_KO_Y" = -182; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -160; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eight" = -8; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -50; +"@MMK_R_KO_five" = -21; +"@MMK_R_KO_four" = -4; +"@MMK_R_KO_g" = -26; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -31; +"@MMK_R_KO_hyphen.case" = -139; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_nine" = -24; +"@MMK_R_KO_one" = -111; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -235; +"@MMK_R_KO_quotedblleft" = -272; +"@MMK_R_KO_quoteright" = -272; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -95; +"@MMK_R_KO_six" = -37; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -54; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = 3; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_v" = -96; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_y" = -48; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -39; +"@MMK_R_KO_S" = -13; +"@MMK_R_KO_T" = -140; +"@MMK_R_KO_U" = -40; +"@MMK_R_KO_V" = -145; +"@MMK_R_KO_W" = -92; +"@MMK_R_KO_Y" = -193; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asterisk" = -160; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eight" = -11; +"@MMK_R_KO_f" = -58; +"@MMK_R_KO_five" = -21; +"@MMK_R_KO_four" = -3; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -51; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_hyphen.case" = -158; +"@MMK_R_KO_i" = -27; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = -22; +"@MMK_R_KO_one" = -123; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedbl" = -235; +"@MMK_R_KO_quotedblleft.ss01" = -271; +"@MMK_R_KO_quoteright.ss01" = -271; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_seven" = -100; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -59; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_v" = -95; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_y" = -45; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -119; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -75; +"@MMK_R_KO_W" = -37; +"@MMK_R_KO_Y" = -137; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 22; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_colon" = -26; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 22; +"@MMK_R_KO_egrave" = 22; +"@MMK_R_KO_eight" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 25; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 18; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -75; +"@MMK_R_KO_parenright" = -80; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedbl" = -55; +"@MMK_R_KO_quotedblleft" = -49; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -84; +"@MMK_R_KO_six" = 15; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = -21; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = -41; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = 14; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = -42; +"@MMK_R_KO_O" = 29; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = 31; +"@MMK_R_KO_U" = 28; +"@MMK_R_KO_V" = 41; +"@MMK_R_KO_W" = 48; +"@MMK_R_KO_X" = 22; +"@MMK_R_KO_Y" = 40; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 32; +"@MMK_R_KO_colon" = 29; +"@MMK_R_KO_comma" = -51; +"@MMK_R_KO_comma.ss01" = -73; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 23; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = 22; +"@MMK_R_KO_f" = 24; +"@MMK_R_KO_fivesuperior" = 15; +"@MMK_R_KO_foursuperior" = 21; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = 13; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 57; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 52; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = 26; +"@MMK_R_KO_onesuperior" = 18; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -50; +"@MMK_R_KO_period.ss01" = -74; +"@MMK_R_KO_question" = 31; +"@MMK_R_KO_question.ss01" = 12; +"@MMK_R_KO_quotedbl" = 23; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quotedblleft.ss01" = 17; +"@MMK_R_KO_quoteleft" = 15; +"@MMK_R_KO_quoteright" = 29; +"@MMK_R_KO_quoteright.ss01" = 25; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 16; +"@MMK_R_KO_six" = 26; +"@MMK_R_KO_sixsuperior" = 25; +"@MMK_R_KO_slash" = -44; +"@MMK_R_KO_t" = 24; +"@MMK_R_KO_threesuperior" = 22; +"@MMK_R_KO_trademark" = 3; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -46; +"@MMK_R_KO_v" = 32; +"@MMK_R_KO_w" = 28; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = 14; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = -42; +"@MMK_R_KO_O" = 29; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = 31; +"@MMK_R_KO_U" = 28; +"@MMK_R_KO_V" = 41; +"@MMK_R_KO_W" = 48; +"@MMK_R_KO_X" = 22; +"@MMK_R_KO_Y" = 40; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = 32; +"@MMK_R_KO_colon" = 29; +"@MMK_R_KO_comma" = -51; +"@MMK_R_KO_comma.ss01" = -73; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 23; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = 22; +"@MMK_R_KO_f" = 24; +"@MMK_R_KO_fivesuperior" = 15; +"@MMK_R_KO_foursuperior" = 21; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = 13; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 57; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 52; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = 26; +"@MMK_R_KO_onesuperior" = 18; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -50; +"@MMK_R_KO_period.ss01" = -74; +"@MMK_R_KO_question" = 31; +"@MMK_R_KO_question.ss01" = 12; +"@MMK_R_KO_quotedbl" = 23; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quotedblleft.ss01" = 17; +"@MMK_R_KO_quoteleft" = 15; +"@MMK_R_KO_quoteright" = 29; +"@MMK_R_KO_quoteright.ss01" = 25; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 16; +"@MMK_R_KO_six" = 26; +"@MMK_R_KO_sixsuperior" = 25; +"@MMK_R_KO_slash" = -44; +"@MMK_R_KO_t" = 24; +"@MMK_R_KO_threesuperior" = 22; +"@MMK_R_KO_trademark" = 3; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -46; +"@MMK_R_KO_v" = 32; +"@MMK_R_KO_w" = 28; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 12; +"@MMK_R_KO_imacron" = 15; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = -9; +"@MMK_R_KO_colon" = -3; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 18; +"@MMK_R_KO_egrave" = 18; +"@MMK_R_KO_eight" = 21; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 24; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = -3; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -12; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -17; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = 17; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 14; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asterisk" = -47; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 15; +"@MMK_R_KO_egrave" = 19; +"@MMK_R_KO_eight" = 28; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_five" = 6; +"@MMK_R_KO_four" = 28; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 12; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = -42; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_quotedbl" = -53; +"@MMK_R_KO_quotedblleft" = -55; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteright" = -49; +"@MMK_R_KO_quoteright.ss01" = -50; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_seven" = -42; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_three" = 14; +"@MMK_R_KO_two" = 3; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 35; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_J" = 27; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 35; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -8; +"@MMK_R_KO_bracketright" = 37; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 31; +"@MMK_R_KO_comma.ss01" = 9; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = 9; +"@MMK_R_KO_exclam" = 20; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = 4; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 17; +"@MMK_R_KO_j" = 74; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 3; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 51; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 47; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 28; +"@MMK_R_KO_y" = 3; +"@MMK_R_KO_z" = 22; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -49; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eight" = 2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -2; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = 19; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 11; +"@MMK_R_KO_one" = 11; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 3; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_three" = 7; +"@MMK_R_KO_two" = 13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -40; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -34; +"@MMK_R_KO_J" = -26; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -74; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_Y" = -117; +"@MMK_R_KO_Z" = -21; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -54; +"@MMK_R_KO_colon" = -17; +"@MMK_R_KO_comma" = -49; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 18; +"@MMK_R_KO_egrave" = 18; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 26; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 12; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -7; +"@MMK_R_KO_one" = -26; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_parenright.case" = -56; +"@MMK_R_KO_period" = -47; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_quotedbl" = -60; +"@MMK_R_KO_quotedblleft" = -44; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteright" = -25; +"@MMK_R_KO_quoteright.ss01" = -29; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -34; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_slash" = -47; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_three" = -9; +"@MMK_R_KO_two" = -30; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -23; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -113; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -75; +"@MMK_R_KO_W" = -37; +"@MMK_R_KO_Y" = -137; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 23; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -80; +"@MMK_R_KO_colon" = -25; +"@MMK_R_KO_comma" = -26; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 23; +"@MMK_R_KO_egrave" = 24; +"@MMK_R_KO_eight" = 11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 28; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 18; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -75; +"@MMK_R_KO_parenright" = -80; +"@MMK_R_KO_period" = -24; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_quotedbl" = -55; +"@MMK_R_KO_quotedblleft" = -49; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -84; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_slash" = -35; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 8; +"@MMK_R_KO_two" = -20; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -37; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -48; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -79; +"@MMK_R_KO_J" = -97; +"@MMK_R_KO_O" = 28; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_Y" = -93; +"@MMK_R_KO_Z" = -49; +"@MMK_R_KO_asterisk" = -15; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -117; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen.case" = 16; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright.case" = -68; +"@MMK_R_KO_period" = -117; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_quotedbl" = -28; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_three" = -20; +"@MMK_R_KO_two" = -5; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -22; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 18; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 52; +"@MMK_R_KO_U" = 32; +"@MMK_R_KO_V" = 63; +"@MMK_R_KO_W" = 67; +"@MMK_R_KO_X" = 45; +"@MMK_R_KO_Y" = 65; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 57; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 15; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 7; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 15; +"@MMK_R_KO_j" = 26; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 40; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = 16; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 11; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 36; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 11; +"@MMK_R_KO_trademark" = 13; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 39; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 28; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = 40; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = -36; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asciicircum" = -4; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_egrave" = -41; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = 7; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 25; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -44; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = 21; +"@MMK_R_KO_question.ss01" = 7; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -25; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_trademark" = -56; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 42; +"@MMK_R_KO_v" = 22; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 29; +"@MMK_R_KO_y" = 23; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -21; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 30; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = 29; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 24; +"@MMK_R_KO_asciicircum" = -44; +"@MMK_R_KO_bracketright" = 8; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 37; +"@MMK_R_KO_comma.ss01" = -1; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = -28; +"@MMK_R_KO_ellipsis" = 10; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -33; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -19; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 8; +"@MMK_R_KO_j" = 41; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_period" = 39; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -22; +"@MMK_R_KO_question.ss01" = -31; +"@MMK_R_KO_quotedbl" = -31; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -33; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -29; +"@MMK_R_KO_s" = 28; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -28; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_threesuperior" = -35; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 39; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = 20; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 212; +"@MMK_R_KO_colon" = 77; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = 165; +"@MMK_R_KO_exclam" = 181; +"@MMK_R_KO_f" = 90; +"@MMK_R_KO_fivesuperior" = 167; +"@MMK_R_KO_foursuperior" = 105; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 172; +"@MMK_R_KO_j" = 121; +"@MMK_R_KO_l.ss04" = 176; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 164; +"@MMK_R_KO_onesuperior" = 189; +"@MMK_R_KO_parenright" = 172; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = 143; +"@MMK_R_KO_question.ss01" = 134; +"@MMK_R_KO_quotedbl" = 191; +"@MMK_R_KO_quotedblleft" = 128; +"@MMK_R_KO_quotedblleft.ss01" = 137; +"@MMK_R_KO_quoteleft" = 128; +"@MMK_R_KO_sevensuperior" = 200; +"@MMK_R_KO_sixsuperior" = 159; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 85; +"@MMK_R_KO_threesuperior" = 159; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_z" = 97; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = -84; +"@MMK_R_KO_O" = -54; +"@MMK_R_KO_T" = -150; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_e" = -59; +"@MMK_R_KO_f" = -58; +"@MMK_R_KO_i" = -81; +"@MMK_R_KO_n" = -81; +"@MMK_R_KO_t" = -58; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -59; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -71; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -109; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -32; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -78; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -36; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -51; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -59; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -37; +"@MMK_R_KO_slash" = 12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -90; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 12; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -64; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = -37; +"@MMK_R_KO_Y" = -111; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -34; +"@MMK_R_KO_bracketright" = -38; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = -8; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = 20; +"@MMK_R_KO_guillemetleft" = 16; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -65; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = -40; +"@MMK_R_KO_question.ss01" = -44; +"@MMK_R_KO_quotedbl" = -49; +"@MMK_R_KO_quotedblleft" = -31; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -31; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_sixsuperior" = -34; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -84; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -38; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -40; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -42; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -35; +"@MMK_R_KO_Y" = -75; +"@MMK_R_KO_a" = 20; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_bracketright" = -29; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 21; +"@MMK_R_KO_egrave" = 21; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -22; +"@MMK_R_KO_exclam" = -8; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 20; +"@MMK_R_KO_guillemetleft" = 18; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 25; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -47; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = -40; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -47; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -50; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_sixsuperior" = -33; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -85; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -40; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = -39; +"@MMK_R_KO_S" = -31; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -60; +"@MMK_R_KO_a.ss05" = -45; +"@MMK_R_KO_asterisk" = -18; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_comma.ss01" = 5; +"@MMK_R_KO_e" = -61; +"@MMK_R_KO_egrave" = -56; +"@MMK_R_KO_eight" = -23; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_f" = -43; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -46; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -53; +"@MMK_R_KO_hyphen" = -80; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 69; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = -28; +"@MMK_R_KO_one" = -21; +"@MMK_R_KO_parenright" = 43; +"@MMK_R_KO_period" = -47; +"@MMK_R_KO_period.ss01" = -50; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -54; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -37; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_three" = -29; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -55; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -48; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -34; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = -18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -20; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_nine" = -13; +"@MMK_R_KO_one" = -15; +"@MMK_R_KO_parenright.case" = 43; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -26; +"@MMK_R_KO_slash" = 44; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 25; +"@MMK_R_KO_J" = 43; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = -111; +"@MMK_R_KO_U" = -30; +"@MMK_R_KO_V" = -122; +"@MMK_R_KO_W" = -67; +"@MMK_R_KO_Y" = -131; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -131; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = -14; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = 4; +"@MMK_R_KO_hyphen" = -24; +"@MMK_R_KO_hyphen.case" = -117; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 11; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = -93; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -131; +"@MMK_R_KO_quotedblleft" = -131; +"@MMK_R_KO_quoteright" = -131; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -75; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_three" = -4; +"@MMK_R_KO_two" = 28; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_v" = -80; +"@MMK_R_KO_w" = -47; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = 27; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -39; +"@MMK_R_KO_S" = -13; +"@MMK_R_KO_T" = -136; +"@MMK_R_KO_U" = -40; +"@MMK_R_KO_V" = -136; +"@MMK_R_KO_W" = -89; +"@MMK_R_KO_Y" = -136; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asterisk" = -136; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_f" = -58; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -2; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -51; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_hyphen.case" = -136; +"@MMK_R_KO_i" = -27; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -118; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedbl" = -136; +"@MMK_R_KO_quotedblleft.ss01" = -136; +"@MMK_R_KO_quoteright.ss01" = -136; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_seven" = -99; +"@MMK_R_KO_six" = -35; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -59; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_v" = -95; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_y" = -45; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 23; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = -60; +"@MMK_R_KO_S" = -31; +"@MMK_R_KO_T" = -109; +"@MMK_R_KO_U" = -53; +"@MMK_R_KO_V" = -133; +"@MMK_R_KO_W" = -85; +"@MMK_R_KO_Y" = -162; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -39; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_e" = -44; +"@MMK_R_KO_eight" = -23; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_five" = -35; +"@MMK_R_KO_four" = -95; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = 59; +"@MMK_R_KO_nine" = -35; +"@MMK_R_KO_one" = -88; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_quotedbl" = -109; +"@MMK_R_KO_quotedblleft" = -110; +"@MMK_R_KO_quoteright" = -110; +"@MMK_R_KO_s" = -25; +"@MMK_R_KO_seven" = -76; +"@MMK_R_KO_six" = -46; +"@MMK_R_KO_t" = -53; +"@MMK_R_KO_three" = -27; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = -36; +"@MMK_R_KO_v" = -93; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -111; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -112; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 17; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -44; +"@MMK_R_KO_asterisk" = 14; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -47; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -235; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_g" = -46; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -55; +"@MMK_R_KO_hyphen.case" = -28; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 4; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -131; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = -43; +"@MMK_R_KO_seven" = 19; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_slash" = -119; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = -15; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = -131; +"@MMK_R_KO_U" = -44; +"@MMK_R_KO_V" = -144; +"@MMK_R_KO_W" = -90; +"@MMK_R_KO_Y" = -182; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asterisk" = -133; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 17; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = -13; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -52; +"@MMK_R_KO_five" = -25; +"@MMK_R_KO_four" = -10; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -36; +"@MMK_R_KO_hyphen.case" = -133; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_j" = 34; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = -28; +"@MMK_R_KO_one" = -111; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_quotedblleft" = -272; +"@MMK_R_KO_quoteright" = -133; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = -94; +"@MMK_R_KO_six" = -38; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = -57; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = 2; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_v" = -102; +"@MMK_R_KO_w" = -62; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = -37; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -134; +"@MMK_R_KO_U" = -38; +"@MMK_R_KO_V" = -140; +"@MMK_R_KO_W" = -86; +"@MMK_R_KO_Y" = -193; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -18; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asterisk" = -136; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_f" = -55; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -2; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -49; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_hyphen.case" = -136; +"@MMK_R_KO_i" = -24; +"@MMK_R_KO_j" = 39; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -118; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -136; +"@MMK_R_KO_quoteright.ss01" = -136; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_seven" = -99; +"@MMK_R_KO_six" = -31; +"@MMK_R_KO_slash" = 37; +"@MMK_R_KO_t" = -59; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_v" = -92; +"@MMK_R_KO_w" = -56; +"@MMK_R_KO_y" = -36; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -94; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -107; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 25; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asterisk" = 12; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_ellipsis" = -272; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -51; +"@MMK_R_KO_g" = -22; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = 4; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -131; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -20; +"@MMK_R_KO_seven" = 21; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -104; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -89; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -116; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 10; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_Y" = 10; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asterisk" = 7; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -40; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -6; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -98; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -123; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -113; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -58; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_e" = -66; +"@MMK_R_KO_egrave" = -53; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_ellipsis" = -272; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -94; +"@MMK_R_KO_g" = -58; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -81; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = -9; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 3; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -131; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -56; +"@MMK_R_KO_seven" = 12; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_slash" = -132; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -93; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -107; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 25; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asterisk" = 12; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_ellipsis" = -133; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -51; +"@MMK_R_KO_g" = -22; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = 4; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -131; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -20; +"@MMK_R_KO_seven" = 21; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -102; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -121; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -113; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -58; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_e" = -67; +"@MMK_R_KO_egrave" = -51; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_ellipsis" = -133; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -91; +"@MMK_R_KO_g" = -58; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -81; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 3; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -131; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -56; +"@MMK_R_KO_seven" = 12; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_slash" = -132; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = -24; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -110; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -122; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 10; +"@MMK_R_KO_Y" = 3; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -42; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = -52; +"@MMK_R_KO_egrave" = -50; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -11; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -43; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -63; +"@MMK_R_KO_hyphen.case" = -22; +"@MMK_R_KO_i" = -10; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -40; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_slash" = -120; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -3; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -109; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -109; +"@MMK_R_KO_O" = -14; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 17; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_a.ss05" = -44; +"@MMK_R_KO_asterisk" = 14; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_comma.ss01" = -109; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -49; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -109; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_g" = -42; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -55; +"@MMK_R_KO_hyphen.case" = -28; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 4; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -109; +"@MMK_R_KO_period.ss01" = -109; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = -43; +"@MMK_R_KO_seven" = 19; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_slash" = -109; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -6; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -58; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -91; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -68; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = 26; +"@MMK_R_KO_comma" = -95; +"@MMK_R_KO_comma.ss01" = -118; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 17; +"@MMK_R_KO_ellipsis" = -109; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 22; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 13; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 3; +"@MMK_R_KO_period" = -93; +"@MMK_R_KO_period.ss01" = -119; +"@MMK_R_KO_question" = 13; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = 3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 3; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = 10; +"@MMK_R_KO_slash" = -66; +"@MMK_R_KO_t" = 21; +"@MMK_R_KO_threesuperior" = 17; +"@MMK_R_KO_trademark" = -58; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_underscore" = -86; +"@MMK_R_KO_v" = 35; +"@MMK_R_KO_w" = 32; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 22; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -64; +"@MMK_R_KO_W" = -37; +"@MMK_R_KO_X" = -21; +"@MMK_R_KO_Y" = -107; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asciicircum" = -30; +"@MMK_R_KO_bracketright" = -27; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -75; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -35; +"@MMK_R_KO_question.ss01" = -39; +"@MMK_R_KO_quotedbl" = -46; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 16; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -30; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -79; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -22; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_bracketright" = -26; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -51; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -32; +"@MMK_R_KO_question.ss01" = -38; +"@MMK_R_KO_quotedbl" = -44; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 16; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_sixsuperior" = -30; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -104; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = -97; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 29; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 32; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_Y" = 29; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -59; +"@MMK_R_KO_a.ss05" = -56; +"@MMK_R_KO_asterisk" = 25; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -121; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = -64; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eight" = 3; +"@MMK_R_KO_ellipsis" = -141; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -62; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -77; +"@MMK_R_KO_hyphen.case" = -46; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = 16; +"@MMK_R_KO_parenright" = 2; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -119; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_quotedbl" = 17; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 4; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = -50; +"@MMK_R_KO_seven" = 34; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -112; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 19; +"@MMK_R_KO_egrave" = 19; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_five" = 13; +"@MMK_R_KO_four" = 25; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 8; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -30; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 22; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_three" = 22; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -125; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 27; +"@MMK_R_KO_J" = -93; +"@MMK_R_KO_O" = -28; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = 45; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 26; +"@MMK_R_KO_Y" = 28; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = -60; +"@MMK_R_KO_a.ss05" = -48; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = -42; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_comma.ss01" = -136; +"@MMK_R_KO_e" = -71; +"@MMK_R_KO_egrave" = -55; +"@MMK_R_KO_eight" = -13; +"@MMK_R_KO_ellipsis" = -149; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_g" = -63; +"@MMK_R_KO_guillemetleft" = -77; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen" = -84; +"@MMK_R_KO_hyphen.case" = -57; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_n" = -47; +"@MMK_R_KO_nine" = -10; +"@MMK_R_KO_one" = -5; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -131; +"@MMK_R_KO_period.ss01" = -136; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 13; +"@MMK_R_KO_s" = -64; +"@MMK_R_KO_seven" = 35; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_slash" = -153; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_three" = -16; +"@MMK_R_KO_two" = -15; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -41; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = -60; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 13; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 15; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -9; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -39; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -71; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 15; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -29; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asterisk" = 9; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eight" = 24; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 20; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 4; +"@MMK_R_KO_hyphen" = 12; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 15; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = -6; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_three" = 20; +"@MMK_R_KO_two" = 9; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 14; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asterisk" = 13; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 10; +"@MMK_R_KO_hyphen" = -9; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 41; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 19; +"@MMK_R_KO_one" = 8; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 27; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 25; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_y" = 9; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -95; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -74; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = -62; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -96; +"@MMK_R_KO_comma.ss01" = -103; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -110; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 28; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 8; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = -33; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = -80; +"@MMK_R_KO_period.ss01" = -95; +"@MMK_R_KO_question" = 26; +"@MMK_R_KO_question.ss01" = 11; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 3; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 3; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = -101; +"@MMK_R_KO_t" = 28; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -52; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_underscore" = -108; +"@MMK_R_KO_v" = 32; +"@MMK_R_KO_w" = 29; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = 30; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -52; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = 16; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = -59; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asciicircum" = 0; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -59; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -60; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 28; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = -48; +"@MMK_R_KO_period.ss01" = -60; +"@MMK_R_KO_question" = 21; +"@MMK_R_KO_question.ss01" = 7; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_sevensuperior" = -41; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = -48; +"@MMK_R_KO_t" = 28; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -53; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = -56; +"@MMK_R_KO_v" = 28; +"@MMK_R_KO_w" = 25; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 29; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 39; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 28; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = 40; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -39; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -44; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_trademark" = -60; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 43; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = 27; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -37; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 22; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 8; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -43; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_period" = 24; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -47; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -73; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 24; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -9; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 22; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = 8; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 26; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_period" = 24; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 30; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_Y" = -50; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = 19; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -37; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eight" = 13; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_f" = 24; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 19; +"@MMK_R_KO_g" = 20; +"@MMK_R_KO_guillemetleft" = 18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = 29; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 22; +"@MMK_R_KO_one" = 11; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 10; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = 28; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = 22; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 4; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_y" = 9; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -11; +Tbar = -82; +asciitilde = -53; +asterisk = -102; +backslash = -105; +g.ss06 = 24; +minus = -61; +one = -76; +ordmasculine = -104; +plus = -52; +quotedbl = -112; +registered = -83; +seven = -67; +two = 22; +twosuperior = -62; +}; +Aacute = { +Tbar = -82; +}; +Abrevedotbelow.ss01 = { +T = -105; +}; +Aogonek = { +comma = 45; +parenright = 42; +}; +Atilde = { +ordfeminine = -104; +}; +B = { +Hbar = 35; +hbar = 22; +idieresis = 72; +itilde = 50; +}; +C = { +h = 0; +l = 0; +plus = 0; +three = 24; +}; +D = { +Lslash = 28; +Oslash = 29; +braceright = -5; +bracketright.case = 0; +}; +E = { +H = 0; +idieresis = 88; +}; +Eogonek = { +comma = 29; +}; +F = { +fourinferior = -58; +i = 0; +igrave = 46; +}; +G = { +Lslash = 25; +lslash = 17; +}; +Germandbls = { +S = 24; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -4; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 17; +itilde = 54; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 23; +D = 23; +E = 23; +H = 23; +Hbar = 82; +I = 23; +L = 23; +M = 23; +O = 24; +R = 23; +S = 37; +U = 36; +W = 50; +i = 27; +}; +I = { +Hbar = 23; +I = 0; +jcircumflex = 81; +}; +Icircumflex = { +Icircumflex = 104; +l.ss04 = 15; +}; +Imacron = { +Imacron = 70; +}; +Itilde = { +itilde = 54; +}; +J = { +Hbar = 30; +itilde = 62; +}; +Jacute = { +Imacron = 38; +}; +K = { +asciitilde = -107; +four = -41; +idieresis = 75; +igrave = 39; +itilde = 33; +less = -63; +logicalnot = -167; +minus = -115; +one = -54; +oslash = -3; +plus = -107; +}; +L = { +H = 0; +Tbar = -57; +asciitilde = -41; +asterisk = -160; +backslash = -101; +equal = 0; +four = 13; +less = -14; +logicalnot = -122; +minus = -51; +one = -95; +ordfeminine = -201; +ordmasculine = -199; +oslash = 9; +plus = -44; +quotedbl = -204; +quoteleft.ss01 = -136; +quoteright = -133; +quoteright.ss01 = -136; +registered = -103; +seven = -76; +twosuperior = -198; +}; +Lcaron = { +A = 33; +O = -12; +U = -11; +Uacute = -11; +V = -23; +a = 0; +hyphen = 0; +hyphen.case = -104; +u = 0; +v = -61; +}; +Lcommaaccent = { +twosuperior = -198; +}; +Lslash = { +twosuperior = -116; +}; +M = { +Hbar = 23; +idieresis = 73; +igrave = 17; +itilde = 54; +}; +N = { +Hbar = 23; +idieresis = 73; +igrave = 17; +itilde = 54; +}; +O = { +Dcroat = 26; +Lslash = 29; +braceright = -6; +bracketright.case = -2; +itilde = 10; +}; +Oslash = { +T = -7; +V = 0; +Y = 0; +parenright = 3; +parenright.case = 8; +}; +P = { +fourinferior = -90; +idieresis = 63; +itilde = 44; +two = 9; +}; +R = { +Hbar = 43; +jcircumflex = 96; +two = 19; +}; +S = { +Hbar = 32; +Lslash = 30; +dollar = 14; +four = 28; +idieresis = 49; +itilde = 24; +lslash = 21; +three = 25; +}; +T = { +Oslash = -13; +a.ss05 = -65; +aacute.ss05 = -62; +abreve = -64; +abreveacute = -64; +acircumflex = -49; +acircumflexacute = -60; +acircumflexdotbelow = -49; +adieresis = -46; +adotbelow.ss05 = -65; +ae = -65; +agrave = -64; +amacron = -53; +ampersand = -35; +aring = -64; +asciitilde = -81; +atilde = -60; +equal = 0; +four = -93; +g.ss06 = -55; +h = 0; +i.ss01 = 0; +iacute = -9; +idieresis = 108; +idotless = -13; +igrave = 51; +itilde = 89; +less = -21; +logicalnot = -152; +minus = -63; +ograve = -73; +plus = -57; +racute = -11; +scaron = -25; +seven = 25; +twoinferior = -128; +udieresis = -5; +udieresis.ss01 = -6; +ugrave = -6; +uhorngrave = -6; +umacron = -6; +ycircumflex = 18; +ygrave = 18; +yhookabove = 18; +zcaron = -4; +zeroinferior = -126; +}; +Tbar = { +A = -86; +Aacute = -86; +Tbar = 35; +a = -41; +comma = -103; +e = -40; +o = -40; +period = -105; +slash = -90; +}; +Tcaron = { +a.ss05 = -65; +}; +Tcedilla = { +a.ss05 = -65; +abreve = -64; +four = -93; +}; +Tcommaaccent = { +a.ss05 = -65; +abreve = -64; +four = -93; +}; +Thorn = { +A = -37; +AE = -37; +Aacute = -37; +J = -20; +O = 34; +Oacute = 34; +V = -43; +Y = -78; +Yacute = -78; +a = 18; +aacute = 18; +e = 19; +o = 19; +oacute = 19; +period = -45; +}; +U = { +Hbar = 36; +jcircumflex = 95; +}; +V = { +four = -73; +iacute = -35; +ibreve = 74; +idieresis = 102; +igrave = 62; +itilde = 67; +minus = -63; +plus = -54; +scaron = -15; +seven = 33; +twoinferior = -97; +}; +W = { +Hbar = 51; +backslash = 53; +idieresis = 103; +igrave = 58; +itilde = 76; +}; +X = { +asciitilde = -106; +four = -40; +less = -62; +logicalnot = -165; +minus = -114; +notequal = -87; +one = -41; +plus = -103; +}; +Y = { +a.ss05 = -109; +agrave = -84; +amacron = -56; +ampersand = -72; +asciitilde = -119; +at = -84; +four = -129; +g.ss06 = -103; +igrave = 64; +less = -58; +logicalnot = -158; +minus = -108; +ograve = -76; +plus = -99; +scaron = -16; +twoinferior = -151; +}; +Z = { +four = 0; +ibreve = 55; +igrave = 29; +itilde = 68; +minus = -42; +plus = -36; +}; +_B.currency = { +_baht.bar = -28; +}; +a = { +braceright = -6; +}; +a.ss05 = { +g.ss06 = 19; +}; +acircumflexacute.ss05 = { +y = -19; +}; +adieresis.ss05 = { +germandbls = -13; +}; +ampersand = { +V = -79; +W = -46; +Y = -126; +quotedbl = -52; +quotedblleft = -44; +}; +aogonek = { +j = 24; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 31; +}; +approxequal = { +parenright = -78; +parenright.case = -69; +}; +asciicircum = { +J = -123; +X = -72; +Y = -56; +bracketright = -63; +comma = -133; +comma.ss01 = -136; +four = -59; +hyphen = -67; +parenright = -84; +parenright.case = -83; +period = -131; +period.ss01 = -136; +slash = -124; +}; +asciitilde = { +I.ss02 = -44; +J = -78; +V = -50; +W = -7; +X = -115; +Y = -78; +Z = -39; +bracketright = -82; +bracketright.case = -83; +comma = -115; +comma.ss01 = -123; +eight = 0; +exclam = -8; +four = 0; +one = 0; +parenright = -97; +parenright.case = -86; +period = -113; +period.ss01 = -124; +question = -27; +quotedbl = -32; +quotedblright = 0; +seven = 0; +slash = -93; +three = -11; +two = -23; +}; +at = { +T = -18; +parenright = -57; +}; +b = { +asterisk = -44; +braceright = -47; +lslash = 14; +one = -12; +}; +backslash = { +T = -102; +V = -133; +Y = -144; +asterisk = -112; +backslash = -125; +quotedbl = -119; +quotedblleft = -104; +quotedblleft.ss01 = -96; +quotedblright = -92; +quotedblright.ss01 = -98; +quoteleft = -104; +quoteright = -87; +quotesingle = -109; +}; +baht = { +parenright = -41; +}; +braceleft = { +p = 0; +}; +bracketleft = { +asciicircum = -65; +asciitilde = -84; +bracketright = 49; +jcircumflex = 98; +p = 2; +pi = -23; +plus = -73; +x = 0; +}; +c = { +asterisk = -39; +braceright = -52; +}; +cent = { +parenright = -65; +}; +colon = { +T = -5; +Y = -61; +four = 0; +one = 6; +parenright = -36; +two = 26; +zero = 19; +}; +colon.ss01 = { +T = -5; +four = 0; +parenright = -46; +}; +comma = { +eightsuperior = -133; +fivesuperior = -133; +foursuperior = -133; +ninesuperior = -133; +onesuperior = -133; +quoteleft = -133; +quotesingle = -109; +sevensuperior = -133; +sixsuperior = -133; +threesuperior = -133; +twosuperior = -133; +}; +comma.ss01 = { +eightsuperior = -136; +fivesuperior = -136; +foursuperior = -136; +ninesuperior = -136; +onesuperior = -136; +sevensuperior = -136; +sixsuperior = -136; +threesuperior = -136; +twosuperior = -136; +}; +copyright = { +Y = -80; +parenright = -81; +}; +d = { +idieresis = 36; +igrave = 0; +itilde = 12; +}; +dcaron = { +C = 100; +H = 177; +bracketright = 212; +eightsuperior = 165; +exclam = 181; +exclam.ss01 = 183; +fivesuperior = 167; +foursuperior = 105; +h = 172; +i = 117; +j = 121; +k = 172; +l = 172; +l.ss03 = 161; +l.ss04 = 176; +ninesuperior = 164; +onesuperior = 189; +parenright = 172; +question = 143; +question.ss01 = 134; +quotedbl = 191; +quotedblleft = 128; +quotedblleft.ss01 = 137; +quoteleft = 128; +quoteleft.ss01 = 137; +quotesingle = 191; +sevensuperior = 200; +sixsuperior = 159; +t = 85; +t_i.liga = 85; +t_t.liga = 85; +threesuperior = 159; +twosuperior = 161; +zcaron = 97; +}; +dcroat = { +i = 0; +igrave = 3; +itilde = 38; +}; +degree = { +J = -120; +comma = -133; +comma.ss01 = -136; +emdash = -73; +endash = -73; +four = -81; +hyphen = -73; +parenright = -31; +parenright.case = -30; +period = -131; +period.ss01 = -136; +slash = -124; +}; +divide = { +parenright = -95; +}; +dollar = { +parenright = -53; +three = 14; +}; +e = { +asterisk = -49; +backslash = -54; +braceright = -52; +germandbls = 0; +one = -17; +seven = -24; +}; +ecircumflexacute = { +t = 0; +}; +eight = { +bracketright = 0; +degree = -5; +}; +eight.dnom = { +degree = -124; +question.ss01 = -115; +quotedbl = -105; +quotedblleft = -85; +quotedblright = -55; +}; +eightsuperior = { +comma = -133; +comma.ss01 = -136; +period = -131; +period.ss01 = -136; +slash = -95; +}; +ellipsis = { +Tbar = -119; +bracketright = -14; +eightsuperior = -224; +fivesuperior = -224; +foursuperior = -221; +ninesuperior = -230; +onesuperior = -157; +parenleft = -19; +parenleft.case = -36; +question = -107; +quoteleft = -133; +quoteright = -133; +quotesingle = -109; +sevensuperior = -195; +sixsuperior = -230; +threesuperior = -219; +twosuperior = -207; +}; +ellipsis.ss01 = { +Tbar = -106; +bracketright = -2; +eightsuperior = -224; +fivesuperior = -224; +foursuperior = -221; +ninesuperior = -230; +onesuperior = -157; +question.ss01 = -131; +quoteleft.ss01 = -136; +quoteright.ss01 = -136; +quotesingle = -109; +sevensuperior = -195; +sixsuperior = -230; +threesuperior = -219; +twosuperior = -207; +}; +emdash = { +foursuperior = -49; +question = -112; +}; +emdash.case = { +X = -113; +quotedblbase = -139; +quotedblbase.ss01 = -148; +}; +endash = { +X = -62; +endash = 0; +foursuperior = -49; +question = -107; +}; +endash.case = { +H = 0; +X = -113; +quotedblbase = -139; +quotedblbase.ss01 = -148; +}; +eng = { +bracketright = 0; +}; +eogonek = { +lslash = 11; +}; +equal = { +T = 0; +equal = 0; +parenright = -78; +parenright.case = -65; +}; +eth = { +a = 20; +e = 22; +g = 21; +hyphen = 23; +parenright = -8; +}; +euro = { +parenright = -50; +parenright.case = -44; +}; +exclamdown = { +T = -12; +V = -35; +Y = -68; +}; +f = { +igrave = 10; +n = 0; +o = 8; +}; +f_f.liga = { +igrave = 10; +}; +f_f_i.liga = { +idieresis = 30; +}; +fi = { +idieresis = 30; +}; +five = { +degree = -20; +ordmasculine = -12; +percent = -11; +}; +five.dnom = { +degree = -96; +question.ss01 = -118; +quotedblleft = -55; +}; +five.numr = { +fraction = -19; +}; +fiveinferior = { +T = -125; +}; +fivesuperior = { +comma = -133; +comma.ss01 = -136; +period = -131; +period.ss01 = -136; +slash = -98; +}; +fl = { +idieresis = 36; +itilde = 12; +periodcentered.loclCAT = 32; +}; +four = { +asciicircum = -60; +bracketright = -6; +bracketright.case = 0; +degree = -61; +ordfeminine = -52; +ordmasculine = -52; +percent = -42; +x = -32; +}; +four.dnom = { +degree = -109; +question.ss01 = -116; +quotedblleft = -70; +}; +fourinferior = { +T = -120; +V = -98; +}; +foursuperior = { +comma = -133; +comma.ss01 = -136; +period = -131; +period.ss01 = -136; +slash = -91; +}; +fraction = { +eight.dnom = -13; +four.dnom = -60; +fourinferior = -57; +seveninferior = 39; +two.dnom = -18; +zero.dnom = -28; +}; +g = { +bracketright = -2; +j = 14; +j.ss01 = 14; +parenright = -33; +slash = 0; +}; +g.ss06 = { +g.ss06 = 32; +}; +gcaron.ss06 = { +gcaron.ss06 = 32; +}; +gdotaccent = { +j = 14; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 32; +}; +germandbls = { +e = 20; +hyphen = 24; +parenright = -44; +}; +greater = { +T = -26; +parenright = -68; +}; +greaterequal = { +T = -38; +}; +guillemetleft = { +pi = 16; +}; +guillemetright = { +X = -74; +bracketright = -58; +}; +guilsinglright = { +X = -75; +}; +h = { +asterisk = -42; +}; +hyphen = { +Lslash = 27; +X = -61; +bracketright = -64; +foursuperior = -49; +pi = 0; +question = -106; +quotedblbase = -32; +quoteleft = -49; +quotesingle = -55; +x = -64; +}; +hyphen.case = { +Dcroat = 23; +X = -113; +bracketright.case = -66; +quotedblbase = -139; +quotedblbase.ss01 = -148; +quotesinglbase = -133; +}; +i = { +T = 7; +idieresis = 30; +jcircumflex = 34; +parenright = -5; +}; +i.ss01 = { +parenright = 0; +}; +iacute = { +rcaron = 2; +}; +icircumflex = { +b = 14; +h = 14; +i = 12; +icircumflex = 106; +j = 34; +k = 14; +l = 14; +l.ss03 = 14; +l.ss04 = 66; +question = 97; +quotedbl = 84; +quoteright = 79; +quotesingle = 84; +}; +idieresis = { +b = 36; +idieresis = 122; +k = 36; +l = 36; +l.ss03 = 36; +l.ss04 = 84; +}; +idotaccent = { +parenright = -5; +}; +idotaccent.ss01 = { +parenright = 0; +}; +imacron = { +b = 13; +imacron = 63; +j = 43; +k = 13; +kcommaaccent = 13; +l = 13; +l.ss04 = 16; +lcommaaccent = 13; +quotedbl = 63; +}; +infinity = { +parenright = -62; +parenright.case = -50; +}; +integral = { +a = -58; +}; +iogonek = { +j = 42; +}; +itilde = { +h = 9; +itilde = 42; +quotedbl = 54; +quotesingle = 54; +}; +j = { +j = 26; +}; +jacute = { +backslash = 75; +iogonek = 2; +}; +jcircumflex = { +i = 12; +jcircumflex = 136; +}; +k = { +oslash = -11; +}; +l = { +at = 0; +idieresis = 36; +igrave = 0; +itilde = 12; +jcircumflex = 34; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -9; +}; +l.ss03 = { +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -34; +}; +l.ss04 = { +periodcentered.loclCAT = 32; +periodcentered.loclCAT.ss01 = -9; +}; +lcaron = { +exclam.ss01 = 183; +l = 172; +ncaron = 67; +scaron = 38; +twosuperior = 161; +}; +lcaron.ss03 = { +b = 136; +eightsuperior = 129; +exclam = 145; +exclam.ss01 = 147; +fivesuperior = 131; +k = 136; +ninesuperior = 128; +onesuperior = 153; +question = 107; +quotedbl = 155; +quotesingle = 155; +sevensuperior = 164; +sixsuperior = 123; +}; +lcaron.ss04 = { +exclam.ss01 = 183; +twosuperior = 161; +}; +liraTurkish = { +one = -88; +parenright = -74; +question = -114; +quotedbl = -59; +quotesingle = -59; +seven = -95; +}; +logicalnot = { +Y = -167; +parenright = -126; +seven = -64; +}; +m = { +asterisk = -43; +braceright = 0; +twosuperior = -9; +}; +minus = { +T = -63; +X = -116; +comma = -78; +one = 0; +parenright = -108; +parenright.case = -98; +period = -76; +seven = -17; +three = -11; +two = -24; +}; +mu = { +mu = 0; +parenright = -51; +quotesingle = -29; +}; +multiply = { +parenright = -89; +parenright.case = -81; +}; +n = { +asterisk = -42; +at = 4; +braceright = 0; +degree = -53; +g.ss06 = 6; +n = 0; +one = -13; +ordmasculine = -43; +}; +ncaron = { +Yacute = -43; +}; +nine = { +bracketright = 0; +degree = -11; +}; +nine.dnom = { +degree = -135; +question = -108; +question.ss01 = -117; +quotedbl = -112; +quotedblleft = -100; +quotedblleft.ss01 = -58; +quotedblright = -60; +quotedblright.ss01 = -60; +}; +ninesuperior = { +comma = -133; +comma.ss01 = -136; +fraction = -28; +period = -131; +period.ss01 = -136; +slash = -109; +}; +notequal = { +parenright = -97; +parenright.case = -89; +}; +numbersign = { +parenright = -44; +}; +o = { +asterisk = -47; +backslash = -52; +braceright = -50; +germandbls = 6; +lslash = 16; +n = 0; +one = -15; +}; +oacute = { +lslash = 16; +}; +ocircumflexacute = { +bracketright = 47; +parenright = 61; +}; +odieresis = { +germandbls = 6; +}; +ohorn = { +i = 21; +m = 18; +n = 21; +parenright = -9; +}; +ohornacute = { +c = 15; +i = 21; +m = 18; +n = 21; +p = 21; +t = 43; +t_i.liga = 43; +t_t.liga = 43; +}; +ohorndotbelow = { +c = 15; +i = 21; +n = 21; +p = 21; +t = 43; +t_i.liga = 43; +t_t.liga = 43; +u = 29; +}; +ohorngrave = { +i = 21; +n = 21; +parenright = -9; +}; +ohornhookabove = { +i = 21; +n = 21; +}; +ohorntilde = { +i = 21; +n = 21; +}; +ohungarumlaut = { +parenright = 0; +}; +one = { +comma.ss01 = -23; +degree = -12; +equal = 0; +four = 0; +icircumflex = 79; +nine = 0; +one = 0; +parenright = 0; +percent = 0; +period.ss01 = -23; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -98; +one.dnom = 0; +question.ss01 = -128; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -133; +comma.ss01 = -136; +period = -131; +period.ss01 = -136; +slash = -93; +}; +ordfeminine = { +comma = -133; +comma.ss01 = -136; +period = -131; +period.ss01 = -136; +}; +ordmasculine = { +comma = -133; +comma.ss01 = -136; +hyphen = -58; +parenright = -27; +period = -131; +period.ss01 = -136; +slash = -113; +}; +oslash = { +d = 20; +e = 21; +g = 20; +hyphen = 23; +parenright = -40; +y = -4; +}; +p = { +asterisk = -44; +backslash = -51; +braceright = -47; +lslash = 14; +one = -13; +}; +parenleft = { +Dcroat = -4; +H = 0; +Icircumflex = 93; +Oslash = -5; +ampersand = -52; +approxequal = -87; +asciicircum = -85; +asciitilde = -103; +at = -68; +cent = -64; +copyright = -81; +degree = -31; +divide = -96; +dollar = -50; +equal = -79; +euro = -64; +greaterequal = -68; +i = -5; +idotaccent = -5; +infinity = -62; +iogonek = 31; +jcircumflex = 69; +less = -68; +literSign = -58; +logicalnot = -128; +minus = -108; +mu = 0; +multiply = -89; +notequal = -104; +numbersign = -44; +oslash = -19; +p = 0; +parenleft = -47; +pi = -47; +plus = -95; +plusminus = -70; +published = -81; +question = -31; +quotedblbase = 25; +quoteleft = -37; +radical = -51; +scaron = -10; +section = -39; +sterling = -39; +x = -23; +}; +parenleft.case = { +Icircumflex = 93; +approxequal = -69; +asciicircum = -84; +asciitilde = -88; +dollar = -35; +equal = -66; +euro = -51; +minus = -99; +numbersign = -29; +parenleft.case = -31; +plus = -78; +question = -30; +quotedblbase = 0; +quoteleft = -37; +}; +parenright = { +bracketright = -8; +comma = -5; +comma.ss01 = -18; +hyphen = 19; +parenleft = 21; +parenright = -47; +period = -3; +period.ss01 = -20; +quotedbl = -17; +}; +parenright.case = { +comma = -23; +comma.ss01 = -31; +parenright.case = -31; +period = -22; +period.ss01 = -35; +}; +percent = { +asterisk = -110; +bracketright = -30; +comma.ss01 = -15; +eightsuperior = -79; +fivesuperior = -89; +foursuperior = -106; +ninesuperior = -91; +onesuperior = -87; +parenright = -60; +parenright.case = -31; +period = -2; +period.ss01 = -16; +question = -107; +question.ss01 = -115; +quotedbl = -92; +quotedblleft = -110; +quotedblright = -87; +quoteleft = -105; +quoteright = -75; +quotesingle = -89; +sevensuperior = -84; +sixsuperior = -94; +threesuperior = -78; +twosuperior = -45; +}; +period = { +bracketright = -14; +eightsuperior = -131; +fivesuperior = -131; +foursuperior = -131; +ninesuperior = -131; +onesuperior = -131; +ordfeminine = -131; +ordmasculine = -131; +parenleft.case = -22; +question = -96; +quoteleft = -131; +quotesingle = -109; +sevensuperior = -131; +sixsuperior = -131; +threesuperior = -131; +twosuperior = -131; +}; +period.ss01 = { +bracketright = -2; +eightsuperior = -136; +fivesuperior = -136; +foursuperior = -136; +ninesuperior = -136; +onesuperior = -136; +ordfeminine = -136; +ordmasculine = -136; +question.ss01 = -131; +sevensuperior = -136; +sixsuperior = -136; +threesuperior = -136; +twosuperior = -136; +}; +periodcentered.loclCAT = { +l = 32; +l.ss03 = 38; +}; +perthousand = { +asterisk = -154; +parenright = -64; +parenright.case = -31; +question = -111; +question.ss01 = -121; +quotedblleft = -116; +quotedblleft.ss01 = -82; +quotedblright = -87; +quotedblright.ss01 = -87; +quoteleft = -116; +quoteright = -87; +}; +pi = { +hyphen = -7; +parenright = -43; +period = 16; +pi = 8; +quotesingle = -20; +}; +plus = { +J = -50; +T = -57; +V = -54; +X = -106; +Y = -97; +braceright = -86; +bracketright = -73; +comma = -68; +comma.ss01 = -82; +one = 0; +parenright = -95; +parenright.case = -78; +period = -67; +period.ss01 = -83; +quotedbl = -24; +seven = -6; +slash = -68; +three = 0; +two = -16; +}; +published = { +parenright = -81; +}; +q = { +bracketright = 2; +j = 32; +parenright = 0; +}; +question = { +A = -91; +J = -89; +comma = -94; +hyphen = -39; +parenright = -30; +parenright.case = -28; +period = -92; +question = 12; +questiondown = -95; +slash = -92; +}; +question.ss01 = { +comma.ss01 = -127; +parenright = -30; +parenright.case = -28; +period.ss01 = -127; +questiondown.ss01 = -102; +}; +questiondown.case = { +T = -94; +V = -97; +Y = -105; +quotedbl = -114; +quotedblleft = -120; +quotedblleft.ss01 = -119; +quoteright = -111; +}; +questiondown.ss01 = { +C = -75; +Q = -75; +Q.ss09 = -75; +T = -115; +V = -143; +Y = -168; +four = -105; +quotedbl = -134; +quotedblleft.ss01 = -131; +quotesingle = -109; +}; +quotedbl = { +ellipsis.ss01 = -235; +exclamdown = -27; +g.ss06 = -43; +icircumflex = 84; +mu = -29; +questiondown = -132; +questiondown.case = -88; +questiondown.ss01 = -131; +underscore = -235; +}; +quotedblbase = { +copyright = -62; +divide = -99; +equal = -21; +euro = -92; +minus = -114; +p = -8; +plus = -96; +question = -108; +quotedblright = -272; +quoteleft = -133; +}; +quotedblbase.ss01 = { +divide = -78; +minus = -83; +plus = -77; +question.ss01 = -129; +quotedblright.ss01 = -271; +}; +quotedblleft = { +g.ss06 = -20; +mu = -17; +questiondown = -110; +questiondown.case = -71; +quotedblbase = -272; +underscore = -244; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -271; +questiondown.ss01 = -127; +quotedblbase.ss01 = -271; +underscore = -244; +}; +quotedblright = { +asciitilde = -74; +questiondown = -134; +questiondown.case = -105; +quotesinglbase = -133; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -271; +questiondown.case = -97; +questiondown.ss01 = -130; +}; +quoteleft = { +questiondown = -110; +questiondown.case = -71; +quotedblbase = -133; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -136; +}; +quoteright = { +icircumflex = 85; +questiondown = -133; +quotedblbase = -133; +}; +quoteright.ss01 = { +questiondown.ss01 = -130; +quotedblbase.ss01 = -136; +}; +quotesinglbase = { +T = -131; +V = -133; +Y = -133; +minus = -114; +plus = -96; +question = -107; +quotedblleft = -133; +quoteleft = -133; +}; +quotesinglbase.ss01 = { +T = -136; +V = -136; +Y = -136; +question.ss01 = -129; +}; +quotesingle = { +Hbar = 42; +g.ss06 = -43; +icircumflex = 84; +igrave = 16; +imacron = 64; +itilde = 64; +l.ss04 = 26; +questiondown = -109; +questiondown.case = -88; +underscore = -109; +}; +r = { +braceright = -39; +fourinferior = -82; +g.ss06 = -3; +parenright = -49; +}; +radical = { +A = -104; +}; +rcaron = { +sevensuperior = 30; +}; +registered = { +comma = -133; +comma.ss01 = -136; +parenright = -46; +parenright.case = -44; +period = -131; +period.ss01 = -136; +slash = -90; +}; +s = { +asterisk = -38; +braceright = -29; +l = 0; +}; +scaron = { +T = -24; +}; +semicolon = { +hyphen = -29; +}; +seven = { +minus = -49; +percent = 18; +plus = -33; +underscore = -120; +}; +seven.dnom = { +question.ss01 = -114; +}; +seven.numr = { +fraction = -50; +}; +seveninferior = { +parenright = -60; +}; +sevensuperior = { +A = -133; +comma = -133; +comma.ss01 = -136; +fraction = -48; +period = -131; +period.ss01 = -136; +slash = -146; +}; +six = { +bracketright = 0; +degree = -9; +}; +six.dnom = { +degree = -130; +question.ss01 = -117; +quotedbl = -109; +quotedblleft = -94; +quotedblleft.ss01 = -55; +quotedblright = -58; +}; +sixinferior = { +T = -123; +}; +sixsuperior = { +comma = -133; +comma.ss01 = -136; +period = -131; +period.ss01 = -136; +slash = -98; +}; +slash = { +fourinferior = -125; +g.ss06 = -64; +ibreve = 63; +l.ss04 = 33; +mu = -47; +quotedblbase = -149; +quotedblbase.ss01 = -144; +quotesinglbase = -133; +underscore = -147; +}; +sterling = { +two = 14; +}; +t_i.liga = { +idieresis = 30; +}; +tcaron = { +b = 43; +exclam = 71; +h = 43; +hyphen = -11; +i = 38; +j = 40; +k = 43; +parenright = 76; +quotedbl = 66; +quotedblleft = 16; +quotesingle = 66; +}; +tcedilla = { +parenright = 0; +}; +tenge = { +comma = -129; +comma.ss01 = -136; +period = -127; +period.ss01 = -136; +slash = -84; +}; +three = { +bracketright = 0; +}; +three.dnom = { +degree = -124; +question.ss01 = -115; +quotedbl = -105; +quotedblleft = -84; +quotedblright = -55; +}; +three.numr = { +fraction = -15; +}; +threeinferior = { +T = -124; +V = -93; +Y = -148; +}; +threesuperior = { +comma = -133; +comma.ss01 = -136; +fraction = -8; +parenright = -5; +period = -131; +period.ss01 = -136; +slash = -96; +}; +trademark = { +comma = -133; +comma.ss01 = -136; +hyphen = -55; +period = -131; +period.ss01 = -136; +slash = -123; +}; +two = { +percent = 6; +}; +two.dnom = { +degree = -128; +question.ss01 = -119; +quotedbl = -107; +quotedblleft = -90; +quotedblright = -57; +}; +twoinferior = { +T = -129; +V = -96; +Y = -151; +}; +twosuperior = { +comma = -133; +comma.ss01 = -136; +parenright = -9; +parenright.case = -3; +period = -131; +period.ss01 = -136; +slash = -82; +}; +uhorn = { +a = -19; +ohorn = -23; +ohornacute = -23; +ohorndotbelow = -23; +ohorndotbelow.ss01 = -23; +ohorngrave = -23; +ohornhookabove = -23; +ohorntilde = -23; +}; +uhornacute = { +a = -19; +c = -22; +}; +uhorndotbelow = { +a = -19; +c = -22; +comma = -29; +period = -27; +}; +uhorngrave = { +a = -19; +a.ss05 = -20; +}; +uhornhookabove = { +a = -19; +comma = -29; +comma.ss01 = -54; +period = -27; +period.ss01 = -54; +}; +uhorntilde = { +a = -19; +comma = -29; +period = -27; +}; +uhungarumlaut = { +parenright = -6; +}; +underscore = { +C = -63; +O = -63; +T = -100; +V = -132; +W = -69; +Y = -147; +asterisk = -160; +four = -116; +one = -82; +quotedbl = -235; +quotedblright = -244; +quotedblright.ss01 = -244; +quotesingle = -109; +seven = -64; +six = -48; +v = -90; +}; +uogonek = { +j = 24; +parenright = 0; +}; +v = { +braceright = -54; +n = 0; +}; +w = { +braceright = -48; +}; +x = { +four = -35; +}; +y = { +braceright = -55; +}; +ydotbelow = { +period = -55; +}; +zero = { +braceright = -5; +bracketright = -5; +bracketright.case = 0; +degree = -14; +percent = 0; +}; +zero.dnom = { +degree = -144; +question = -108; +question.ss01 = -118; +quotedbl = -121; +quotedblleft = -108; +quotedblleft.ss01 = -66; +quotedblright = -68; +quotedblright.ss01 = -73; +quoteleft = -108; +}; +zeroinferior = { +parenright = -53; +}; +zerosuperior = { +comma = -133; +comma.ss01 = -136; +fraction = -27; +period = -131; +period.ss01 = -136; +slash = -108; +}; +}; +"23BA42C1-D468-4A44-9BE5-E18AE60B7926" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 42; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = 42; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -42; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -48; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = 43; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -75; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 40; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -44; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -48; +"@MMK_R_KO_foursuperior" = -37; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = -15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -48; +"@MMK_R_KO_onesuperior" = -51; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 20; +"@MMK_R_KO_period" = 40; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -39; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = -59; +"@MMK_R_KO_quotedblleft" = -71; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -45; +"@MMK_R_KO_quoteright.ss01" = -58; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = -49; +"@MMK_R_KO_slash" = 30; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -42; +"@MMK_R_KO_trademark" = -79; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 47; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = 39; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 28; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -30; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 16; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 21; +"@MMK_R_KO_imacron" = 16; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -24; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_exclam" = 23; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 8; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_hyphen.case" = -31; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -12; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 8; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -11; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 2; +"@MMK_R_KO_X" = -11; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -70; +"@MMK_R_KO_exclam" = 24; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 30; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 16; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -11; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -55; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -16; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -38; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = 2; +"@MMK_R_KO_X" = -11; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -50; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -70; +"@MMK_R_KO_exclam" = 24; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 30; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -11; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -55; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_sevensuperior" = -16; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_y" = 10; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 33; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 26; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 13; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_X" = 23; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -62; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -32; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = -27; +"@MMK_R_KO_hyphen.case" = 16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 5; +"@MMK_R_KO_parenright.case" = 15; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = -22; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_sevensuperior" = 9; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_underscore" = 49; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 27; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 33; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 22; +"@MMK_R_KO_X" = 15; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asciicircum" = -58; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -50; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -114; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -30; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = -58; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = -22; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 6; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 5; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = 13; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_underscore" = -71; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = -28; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -51; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 16; +"@MMK_R_KO_imacron" = 9; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -17; +"@MMK_R_KO_parenright" = -28; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -12; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -37; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -5; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -27; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 12; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 14; +"@MMK_R_KO_imacron" = 7; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = 5; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 12; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 1; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 1; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -39; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 14; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 1; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 46; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 51; +"@MMK_R_KO_J" = 57; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 30; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 41; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_X" = 49; +"@MMK_R_KO_Y" = 37; +"@MMK_R_KO_Z" = 42; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -50; +"@MMK_R_KO_bracketright" = 15; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_hyphen.case" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 23; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 2; +"@MMK_R_KO_onesuperior" = 28; +"@MMK_R_KO_parenright" = 7; +"@MMK_R_KO_parenright.case" = 28; +"@MMK_R_KO_period" = 13; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 17; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 27; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = 9; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = 54; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_x" = 34; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = 34; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 1; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 1; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -38; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -19; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 1; +"@MMK_R_KO_hyphen.case" = 1; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 14; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 7; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -34; +"@MMK_R_KO_question" = 1; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 44; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 46; +"@MMK_R_KO_J" = 48; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 34; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_X" = 45; +"@MMK_R_KO_Y" = 41; +"@MMK_R_KO_Z" = 42; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 31; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -27; +"@MMK_R_KO_hyphen.case" = -53; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 33; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = 9; +"@MMK_R_KO_parenright" = 2; +"@MMK_R_KO_parenright.case" = 30; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 4; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 20; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 33; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_underscore" = 46; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -24; +"@MMK_R_KO_x" = 34; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 33; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 23; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 38; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -13; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = -30; +"@MMK_R_KO_V" = -54; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = 20; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 26; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -97; +"@MMK_R_KO_bracketright" = -26; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = -72; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -76; +"@MMK_R_KO_foursuperior" = -71; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -86; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -57; +"@MMK_R_KO_hyphen.case" = -57; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -72; +"@MMK_R_KO_onesuperior" = -67; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -42; +"@MMK_R_KO_question.ss01" = -42; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -79; +"@MMK_R_KO_quotedblleft.ss01" = -85; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -69; +"@MMK_R_KO_quoteright.ss01" = -79; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -67; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_sixsuperior" = -74; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = -75; +"@MMK_R_KO_trademark" = -82; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_underscore" = 60; +"@MMK_R_KO_v" = -29; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 38; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = -24; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_X" = 22; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 26; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_guillemetleft" = -46; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -49; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 14; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -42; +"@MMK_R_KO_question.ss01" = -38; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -79; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_sixsuperior" = -33; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -27; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -54; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 20; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 13; +"@MMK_R_KO_imacron" = 11; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -44; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -15; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -38; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = -14; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -27; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -7; +"@MMK_R_KO_Y" = -19; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -54; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 20; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -44; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -15; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -38; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = -14; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = 24; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 15; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_bracketright" = 19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_ellipsis" = -54; +"@MMK_R_KO_exclam" = 16; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = 20; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_parenright" = 24; +"@MMK_R_KO_parenright.case" = 34; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -44; +"@MMK_R_KO_question" = 2; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 10; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -28; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 9; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_X" = -13; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -22; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -167; +"@MMK_R_KO_exclam" = 27; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = 5; +"@MMK_R_KO_foursuperior" = 25; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -36; +"@MMK_R_KO_hyphen.case" = 20; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 40; +"@MMK_R_KO_imacron" = 26; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -10; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 22; +"@MMK_R_KO_question.ss01" = 6; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = -36; +"@MMK_R_KO_t" = 18; +"@MMK_R_KO_threesuperior" = 5; +"@MMK_R_KO_trademark" = -16; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -122; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 26; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 28; +"@MMK_R_KO_J" = 33; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_U" = -5; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = -26; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = 1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -23; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -9; +"@MMK_R_KO_parenright.case" = 10; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -10; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -25; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -51; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 34; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -27; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 20; +"@MMK_R_KO_imacron" = 16; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = -21; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -6; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 5; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -16; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -26; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = -27; +"@MMK_R_KO_i" = 13; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -11; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -16; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -26; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = -27; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -15; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -11; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -40; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 31; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 37; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 32; +"@MMK_R_KO_W" = 27; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = -56; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -57; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -47; +"@MMK_R_KO_comma" = -48; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -56; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -81; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -30; +"@MMK_R_KO_g" = -54; +"@MMK_R_KO_guillemetleft" = -80; +"@MMK_R_KO_guillemetright" = -78; +"@MMK_R_KO_hyphen" = -44; +"@MMK_R_KO_hyphen.case" = -44; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = -63; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 16; +"@MMK_R_KO_period" = -50; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_sevensuperior" = 17; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -37; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_underscore" = -41; +"@MMK_R_KO_v" = -49; +"@MMK_R_KO_w" = -50; +"@MMK_R_KO_x" = -49; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = -48; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 2; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 1; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -35; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_imacron" = 18; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -11; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 2; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 44; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_T" = 30; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 47; +"@MMK_R_KO_X" = 39; +"@MMK_R_KO_Y" = 50; +"@MMK_R_KO_Z" = 37; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 58; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -38; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_fivesuperior" = 14; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 10; +"@MMK_R_KO_onesuperior" = 37; +"@MMK_R_KO_parenright" = 72; +"@MMK_R_KO_parenright.case" = 74; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 7; +"@MMK_R_KO_quotedbl" = 23; +"@MMK_R_KO_quoteright" = 29; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = 52; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_threesuperior" = 20; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 46; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 24; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 42; +"@MMK_R_KO_W" = 38; +"@MMK_R_KO_X" = 34; +"@MMK_R_KO_Y" = 47; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -59; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -26; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -93; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -51; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 40; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 21; +"@MMK_R_KO_n" = -23; +"@MMK_R_KO_ninesuperior" = 3; +"@MMK_R_KO_onesuperior" = 29; +"@MMK_R_KO_parenright" = 7; +"@MMK_R_KO_parenright.case" = 20; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 32; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quotedblleft" = 8; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 8; +"@MMK_R_KO_quoteright" = 26; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -20; +"@MMK_R_KO_sevensuperior" = 27; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 5; +"@MMK_R_KO_slash" = -35; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = 7; +"@MMK_R_KO_trademark" = 15; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_underscore" = -54; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 24; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 33; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = 40; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -37; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = 7; +"@MMK_R_KO_ellipsis" = -72; +"@MMK_R_KO_exclam" = 22; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_ninesuperior" = 7; +"@MMK_R_KO_onesuperior" = 23; +"@MMK_R_KO_parenright" = 2; +"@MMK_R_KO_parenright.case" = 19; +"@MMK_R_KO_period" = -39; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 31; +"@MMK_R_KO_question.ss01" = 6; +"@MMK_R_KO_quotedbl" = 12; +"@MMK_R_KO_quotedblleft" = 5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 5; +"@MMK_R_KO_quoteright" = 23; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = 24; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = 6; +"@MMK_R_KO_trademark" = 18; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 46; +"@MMK_R_KO_J" = 47; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 33; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_X" = 45; +"@MMK_R_KO_Y" = 38; +"@MMK_R_KO_Z" = 41; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 31; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_hyphen.case" = -53; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 20; +"@MMK_R_KO_imacron" = 35; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 12; +"@MMK_R_KO_parenright" = 2; +"@MMK_R_KO_parenright.case" = 30; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 9; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = 18; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 36; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_underscore" = 46; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_x" = 34; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = 21; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 39; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 26; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 46; +"@MMK_R_KO_W" = 40; +"@MMK_R_KO_X" = 38; +"@MMK_R_KO_Y" = 53; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -62; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -93; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = -46; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -57; +"@MMK_R_KO_hyphen.case" = -34; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 33; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = 26; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_ninesuperior" = 4; +"@MMK_R_KO_onesuperior" = 28; +"@MMK_R_KO_parenright" = 13; +"@MMK_R_KO_parenright.case" = 23; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 25; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 24; +"@MMK_R_KO_quotedblleft" = 6; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 6; +"@MMK_R_KO_quoteright" = 32; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_sevensuperior" = 32; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -45; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = 6; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_underscore" = -53; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -21; +"@MMK_R_KO_x" = -18; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 40; +"@MMK_R_KO_J" = 45; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 21; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 38; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_X" = 44; +"@MMK_R_KO_Y" = 40; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 24; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -84; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -67; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 20; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 21; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 20; +"@MMK_R_KO_parenright" = 9; +"@MMK_R_KO_parenright.case" = 33; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 21; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 20; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = 20; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_underscore" = 51; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -24; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -62; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 1; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -47; +"@MMK_R_KO_bracketright" = -38; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -37; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -1; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_period" = 1; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = -25; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = -35; +"@MMK_R_KO_quotedblleft" = -51; +"@MMK_R_KO_quotedblleft.ss01" = -46; +"@MMK_R_KO_quoteleft" = -51; +"@MMK_R_KO_quoteright" = -44; +"@MMK_R_KO_quoteright.ss01" = -49; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = -1; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -69; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 31; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -6; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = -37; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -57; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -58; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -34; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -41; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -45; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = -51; +"@MMK_R_KO_question.ss01" = -56; +"@MMK_R_KO_quotedbl" = -48; +"@MMK_R_KO_quotedblleft" = -101; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -40; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_trademark" = -83; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 37; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 24; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 31; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -38; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_X" = 24; +"@MMK_R_KO_Y" = -10; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = -23; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -29; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -34; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -21; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = -35; +"@MMK_R_KO_question.ss01" = -29; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -43; +"@MMK_R_KO_quotedblleft.ss01" = -47; +"@MMK_R_KO_quoteleft" = -49; +"@MMK_R_KO_quoteright" = -42; +"@MMK_R_KO_quoteright.ss01" = -45; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -30; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 37; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = -9; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_T" = -59; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_e" = -26; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_i" = -13; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_t" = -17; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -67; +"@MMK_R_KO_H" = -39; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_T" = -67; +"@MMK_R_KO_a" = -45; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_i" = -41; +"@MMK_R_KO_n" = -40; +"@MMK_R_KO_t" = -23; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -61; +"@MMK_R_KO_H" = -45; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_T" = -93; +"@MMK_R_KO_a" = -43; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_f" = -52; +"@MMK_R_KO_i" = -50; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_t" = -51; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asterisk" = 38; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_eight" = 18; +"@MMK_R_KO_f" = 33; +"@MMK_R_KO_five" = 10; +"@MMK_R_KO_four" = -30; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -131; +"@MMK_R_KO_hyphen.case" = -51; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 25; +"@MMK_R_KO_one" = 35; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 19; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 18; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 29; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 43; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_slash" = -51; +"@MMK_R_KO_t" = 35; +"@MMK_R_KO_three" = 23; +"@MMK_R_KO_two" = 24; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asterisk" = -4; +"@MMK_R_KO_colon" = -30; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -25; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_ellipsis" = -60; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -12; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -59; +"@MMK_R_KO_guillemetright" = -58; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 25; +"@MMK_R_KO_n" = -33; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_period" = -39; +"@MMK_R_KO_period.ss01" = -48; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_y" = 16; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -22; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_asterisk" = -6; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = -7; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -13; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -60; +"@MMK_R_KO_hyphen.case" = -31; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = -4; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -21; +"@MMK_R_KO_slash" = 49; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -49; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -19; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = -22; +"@MMK_R_KO_question.ss01" = -29; +"@MMK_R_KO_quotedbl" = -35; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -43; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -56; +"@MMK_R_KO_quoteright.ss01" = -55; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -69; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -64; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_eight" = -21; +"@MMK_R_KO_five" = -25; +"@MMK_R_KO_four" = -64; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -61; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_hyphen.case" = -64; +"@MMK_R_KO_nine" = -25; +"@MMK_R_KO_one" = -19; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 34; +"@MMK_R_KO_quotedbl" = -64; +"@MMK_R_KO_quotedblleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_seven" = -39; +"@MMK_R_KO_six" = -32; +"@MMK_R_KO_three" = -14; +"@MMK_R_KO_two" = 20; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -69; +"@MMK_R_KO_H" = -24; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_T" = -31; +"@MMK_R_KO_a" = -64; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_i" = -32; +"@MMK_R_KO_n" = -48; +"@MMK_R_KO_t" = -21; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -56; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -37; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_icircumflex" = -3; +"@MMK_R_KO_imacron" = -3; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = -53; +"@MMK_R_KO_question.ss01" = -65; +"@MMK_R_KO_quotedbl" = -47; +"@MMK_R_KO_quotedblleft" = -102; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -50; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -81; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -24; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -23; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -3; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_ninesuperior" = -29; +"@MMK_R_KO_onesuperior" = -22; +"@MMK_R_KO_parenright" = -23; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = -28; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -46; +"@MMK_R_KO_quotedblleft.ss01" = -43; +"@MMK_R_KO_quoteleft" = -46; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -50; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -35; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 18; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 19; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_hyphen.case" = -10; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_nine" = 10; +"@MMK_R_KO_one" = 3; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 11; +"@MMK_R_KO_three" = 13; +"@MMK_R_KO_two" = 9; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_y" = 3; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -36; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -67; +"@MMK_R_KO_S" = -52; +"@MMK_R_KO_T" = -81; +"@MMK_R_KO_U" = -67; +"@MMK_R_KO_V" = -99; +"@MMK_R_KO_W" = -77; +"@MMK_R_KO_Y" = -96; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_a.ss05" = -42; +"@MMK_R_KO_asterisk" = -138; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_e" = -59; +"@MMK_R_KO_egrave" = -59; +"@MMK_R_KO_eight" = -56; +"@MMK_R_KO_ellipsis" = -27; +"@MMK_R_KO_f" = -40; +"@MMK_R_KO_five" = -59; +"@MMK_R_KO_four" = -148; +"@MMK_R_KO_g" = -57; +"@MMK_R_KO_guillemetleft" = -129; +"@MMK_R_KO_guillemetright" = -79; +"@MMK_R_KO_hyphen" = -185; +"@MMK_R_KO_hyphen.case" = -185; +"@MMK_R_KO_i" = -38; +"@MMK_R_KO_j" = -37; +"@MMK_R_KO_n" = -38; +"@MMK_R_KO_nine" = -58; +"@MMK_R_KO_one" = -51; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft" = -118; +"@MMK_R_KO_quoteright" = -118; +"@MMK_R_KO_s" = -44; +"@MMK_R_KO_seven" = -70; +"@MMK_R_KO_six" = -65; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_three" = -49; +"@MMK_R_KO_two" = -8; +"@MMK_R_KO_u" = -54; +"@MMK_R_KO_v" = -72; +"@MMK_R_KO_w" = -68; +"@MMK_R_KO_y" = -67; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -31; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_S" = -38; +"@MMK_R_KO_T" = -81; +"@MMK_R_KO_U" = -55; +"@MMK_R_KO_V" = -96; +"@MMK_R_KO_W" = -75; +"@MMK_R_KO_Y" = -95; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asterisk" = -138; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -50; +"@MMK_R_KO_eight" = -41; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -46; +"@MMK_R_KO_four" = -148; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -129; +"@MMK_R_KO_guillemetright" = -67; +"@MMK_R_KO_hyphen" = -185; +"@MMK_R_KO_hyphen.case" = -185; +"@MMK_R_KO_i" = -36; +"@MMK_R_KO_j" = -35; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_nine" = -46; +"@MMK_R_KO_one" = -48; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft.ss01" = -113; +"@MMK_R_KO_quoteright.ss01" = -113; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_seven" = -70; +"@MMK_R_KO_six" = -53; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -43; +"@MMK_R_KO_three" = -35; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -47; +"@MMK_R_KO_v" = -69; +"@MMK_R_KO_w" = -65; +"@MMK_R_KO_y" = -65; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -17; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -61; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 44; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -18; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -118; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -49; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -19; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 35; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 12; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -27; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 14; +"@MMK_R_KO_parenright" = 6; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 16; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -3; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 35; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -27; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 14; +"@MMK_R_KO_parenright" = 5; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 16; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -3; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -1; +"@MMK_R_KO_egrave" = -1; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -1; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_question" = -9; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -2; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 20; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 5; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 9; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asterisk" = -13; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 9; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 27; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 29; +"@MMK_R_KO_hyphen.case" = 10; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_j" = 13; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -41; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_three" = 13; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -6; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 30; +"@MMK_R_KO_T" = -15; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -18; +"@MMK_R_KO_comma.ss01" = -42; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eight" = 23; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 12; +"@MMK_R_KO_four" = 32; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 26; +"@MMK_R_KO_hyphen.case" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -10; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -47; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -29; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_seven" = -9; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 32; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 46; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 44; +"@MMK_R_KO_J" = 52; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = 39; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = 38; +"@MMK_R_KO_colon" = 63; +"@MMK_R_KO_comma" = 80; +"@MMK_R_KO_comma.ss01" = 20; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -10; +"@MMK_R_KO_parenright" = 49; +"@MMK_R_KO_period" = 48; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 59; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -48; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 67; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 24; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 23; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -18; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = -79; +"@MMK_R_KO_U" = -26; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asterisk" = -43; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -30; +"@MMK_R_KO_comma.ss01" = -49; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_five" = -19; +"@MMK_R_KO_four" = -22; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_hyphen.case" = -37; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_j" = -22; +"@MMK_R_KO_n" = -22; +"@MMK_R_KO_nine" = -8; +"@MMK_R_KO_one" = -44; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = -29; +"@MMK_R_KO_period.ss01" = -49; +"@MMK_R_KO_quotedbl" = -44; +"@MMK_R_KO_quotedblleft" = -88; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -54; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_seven" = -7; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = -21; +"@MMK_R_KO_I.ss02" = -46; +"@MMK_R_KO_J" = -38; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -13; +"@MMK_R_KO_T" = -80; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_Y" = -88; +"@MMK_R_KO_Z" = -47; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asterisk" = -90; +"@MMK_R_KO_colon" = -61; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -108; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_five" = -18; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = -71; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = -10; +"@MMK_R_KO_i" = -25; +"@MMK_R_KO_j" = -25; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_nine" = -33; +"@MMK_R_KO_one" = -48; +"@MMK_R_KO_parenright" = -75; +"@MMK_R_KO_parenright.case" = -56; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -118; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = -31; +"@MMK_R_KO_seven" = -81; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = -28; +"@MMK_R_KO_t" = -26; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -54; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_Y" = -63; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asterisk" = -131; +"@MMK_R_KO_colon" = -61; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 50; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -36; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -16; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft" = -118; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -48; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 17; +"@MMK_R_KO_two" = -14; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = -35; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = -36; +"@MMK_R_KO_asterisk" = -97; +"@MMK_R_KO_colon" = -47; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_eight" = 3; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 11; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -41; +"@MMK_R_KO_hyphen.case" = 17; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = -16; +"@MMK_R_KO_parenright.case" = -29; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -118; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_seven" = -61; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_three" = -27; +"@MMK_R_KO_two" = -62; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = -1; +"@MMK_R_KO_egrave" = -1; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -37; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -1; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -23; +"@MMK_R_KO_period" = 1; +"@MMK_R_KO_period.ss01" = -34; +"@MMK_R_KO_question" = -23; +"@MMK_R_KO_question.ss01" = -25; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -44; +"@MMK_R_KO_quoteleft" = -41; +"@MMK_R_KO_quoteright" = -27; +"@MMK_R_KO_quoteright.ss01" = -36; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -23; +"@MMK_R_KO_slash" = 1; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -28; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -2; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 52; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = 26; +"@MMK_R_KO_U" = 25; +"@MMK_R_KO_V" = 63; +"@MMK_R_KO_W" = 61; +"@MMK_R_KO_X" = 53; +"@MMK_R_KO_Y" = 56; +"@MMK_R_KO_Z" = 47; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -38; +"@MMK_R_KO_bracketright" = 14; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 6; +"@MMK_R_KO_onesuperior" = 33; +"@MMK_R_KO_parenright" = 31; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_question" = 20; +"@MMK_R_KO_question.ss01" = 10; +"@MMK_R_KO_quotedbl" = 33; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 3; +"@MMK_R_KO_quoteleft" = 14; +"@MMK_R_KO_quoteright" = 42; +"@MMK_R_KO_quoteright.ss01" = 10; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 36; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 14; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 34; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 33; +"@MMK_R_KO_J" = 41; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = 37; +"@MMK_R_KO_Y" = -23; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = -14; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 15; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -39; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -28; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_period" = 14; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = -25; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -39; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -54; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 45; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 22; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -1; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -37; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -12; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -25; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 28; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 35; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 1; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 27; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -45; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -6; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -23; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -4; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 41; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = 32; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = 47; +"@MMK_R_KO_exclam" = 79; +"@MMK_R_KO_f" = 17; +"@MMK_R_KO_fivesuperior" = 42; +"@MMK_R_KO_foursuperior" = 27; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = 27; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 51; +"@MMK_R_KO_onesuperior" = 72; +"@MMK_R_KO_parenright" = 68; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 87; +"@MMK_R_KO_question.ss01" = 61; +"@MMK_R_KO_quotedbl" = 82; +"@MMK_R_KO_quotedblleft" = 72; +"@MMK_R_KO_quotedblleft.ss01" = 52; +"@MMK_R_KO_quoteleft" = 72; +"@MMK_R_KO_sevensuperior" = 80; +"@MMK_R_KO_sixsuperior" = 41; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 18; +"@MMK_R_KO_threesuperior" = 56; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_z" = 26; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = -60; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -32; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -39; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = -48; +"@MMK_R_KO_question.ss01" = -50; +"@MMK_R_KO_quotedbl" = -45; +"@MMK_R_KO_quotedblleft" = -86; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -38; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_trademark" = -81; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 3; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -9; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -58; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -32; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -38; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_icircumflex" = -1; +"@MMK_R_KO_imacron" = -1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_ninesuperior" = -41; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -44; +"@MMK_R_KO_question" = -54; +"@MMK_R_KO_question.ss01" = -57; +"@MMK_R_KO_quotedbl" = -48; +"@MMK_R_KO_quotedblleft" = -102; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -38; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_trademark" = -82; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -4; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -38; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -24; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -44; +"@MMK_R_KO_question" = -33; +"@MMK_R_KO_question.ss01" = -29; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -45; +"@MMK_R_KO_quotedblleft.ss01" = -48; +"@MMK_R_KO_quoteleft" = -45; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -46; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -30; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -38; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -7; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -41; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = 16; +"@MMK_R_KO_e" = -47; +"@MMK_R_KO_egrave" = -26; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_ellipsis" = -46; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -32; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -76; +"@MMK_R_KO_guillemetright" = -62; +"@MMK_R_KO_hyphen" = -49; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 34; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_nine" = -8; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 70; +"@MMK_R_KO_period" = -29; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_seven" = 17; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_slash" = 26; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -36; +"@MMK_R_KO_w" = -39; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 19; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 27; +"@MMK_R_KO_J" = 25; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_asterisk" = 7; +"@MMK_R_KO_colon" = 30; +"@MMK_R_KO_comma" = 32; +"@MMK_R_KO_comma.ss01" = 10; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -3; +"@MMK_R_KO_guillemetleft" = -57; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen.case" = -30; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 9; +"@MMK_R_KO_parenright.case" = 70; +"@MMK_R_KO_period" = 19; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 25; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_slash" = 75; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 10; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 19; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 14; +"@MMK_R_KO_O" = -35; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = -57; +"@MMK_R_KO_U" = -35; +"@MMK_R_KO_V" = -61; +"@MMK_R_KO_W" = -48; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asterisk" = -61; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_eight" = -23; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_five" = -26; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -59; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = -24; +"@MMK_R_KO_one" = -25; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = 17; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -61; +"@MMK_R_KO_quoteright" = -61; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_seven" = -46; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_slash" = 40; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = 2; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_v" = -44; +"@MMK_R_KO_w" = -40; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -31; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -53; +"@MMK_R_KO_S" = -38; +"@MMK_R_KO_T" = -61; +"@MMK_R_KO_U" = -55; +"@MMK_R_KO_V" = -61; +"@MMK_R_KO_W" = -61; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asterisk" = -61; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -51; +"@MMK_R_KO_eight" = -37; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -44; +"@MMK_R_KO_four" = -60; +"@MMK_R_KO_g" = -53; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -61; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -60; +"@MMK_R_KO_i" = -36; +"@MMK_R_KO_j" = -35; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_nine" = -42; +"@MMK_R_KO_one" = -46; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_seven" = -60; +"@MMK_R_KO_six" = -50; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -43; +"@MMK_R_KO_three" = -33; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -47; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_y" = -61; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -17; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -60; +"@MMK_R_KO_S" = -48; +"@MMK_R_KO_T" = -75; +"@MMK_R_KO_U" = -64; +"@MMK_R_KO_V" = -84; +"@MMK_R_KO_W" = -69; +"@MMK_R_KO_Y" = -86; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -55; +"@MMK_R_KO_a.ss05" = -37; +"@MMK_R_KO_e" = -58; +"@MMK_R_KO_eight" = -48; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_five" = -59; +"@MMK_R_KO_four" = -47; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetright" = -73; +"@MMK_R_KO_i" = -25; +"@MMK_R_KO_j" = 8; +"@MMK_R_KO_nine" = -55; +"@MMK_R_KO_one" = -38; +"@MMK_R_KO_parenright" = 24; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -118; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_seven" = -63; +"@MMK_R_KO_six" = -60; +"@MMK_R_KO_t" = -36; +"@MMK_R_KO_three" = -44; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -48; +"@MMK_R_KO_v" = -61; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -62; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_Y" = 20; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -36; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asterisk" = 22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -126; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -126; +"@MMK_R_KO_hyphen.case" = -66; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 10; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = 12; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_seven" = 17; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -66; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -15; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -56; +"@MMK_R_KO_S" = -32; +"@MMK_R_KO_T" = -78; +"@MMK_R_KO_U" = -58; +"@MMK_R_KO_V" = -89; +"@MMK_R_KO_W" = -60; +"@MMK_R_KO_Y" = -91; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -42; +"@MMK_R_KO_a.ss05" = -25; +"@MMK_R_KO_asterisk" = -64; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 19; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_egrave" = -43; +"@MMK_R_KO_eight" = -37; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_five" = -44; +"@MMK_R_KO_four" = -64; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -64; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_hyphen.case" = -64; +"@MMK_R_KO_i" = -23; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_nine" = -43; +"@MMK_R_KO_one" = -37; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_quotedblleft" = -118; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_seven" = -64; +"@MMK_R_KO_six" = -55; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = -30; +"@MMK_R_KO_three" = -27; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -55; +"@MMK_R_KO_w" = -51; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -49; +"@MMK_R_KO_S" = -36; +"@MMK_R_KO_T" = -64; +"@MMK_R_KO_U" = -50; +"@MMK_R_KO_V" = -95; +"@MMK_R_KO_W" = -60; +"@MMK_R_KO_Y" = -94; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asterisk" = -60; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_egrave" = -49; +"@MMK_R_KO_eight" = -37; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -44; +"@MMK_R_KO_four" = -60; +"@MMK_R_KO_g" = -38; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -60; +"@MMK_R_KO_hyphen" = -60; +"@MMK_R_KO_hyphen.case" = -60; +"@MMK_R_KO_i" = -35; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = -42; +"@MMK_R_KO_one" = -46; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_seven" = -60; +"@MMK_R_KO_six" = -48; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_three" = -33; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -46; +"@MMK_R_KO_v" = -60; +"@MMK_R_KO_w" = -60; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -66; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_Y" = 44; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_colon" = -40; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_e" = -58; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -118; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -74; +"@MMK_R_KO_g" = -55; +"@MMK_R_KO_guillemetleft" = -106; +"@MMK_R_KO_guillemetright" = -62; +"@MMK_R_KO_hyphen" = -118; +"@MMK_R_KO_hyphen.case" = -118; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -16; +"@MMK_R_KO_n" = -70; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 16; +"@MMK_R_KO_parenright" = 7; +"@MMK_R_KO_parenright.case" = 20; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_s" = -70; +"@MMK_R_KO_seven" = 45; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -74; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_v" = -58; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -60; +"@MMK_R_KO_H" = -11; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -24; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 6; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -60; +"@MMK_R_KO_a.ss05" = -42; +"@MMK_R_KO_asterisk" = 15; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -43; +"@MMK_R_KO_eight" = -7; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_five" = -9; +"@MMK_R_KO_four" = -60; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -47; +"@MMK_R_KO_hyphen" = -60; +"@MMK_R_KO_hyphen.case" = -60; +"@MMK_R_KO_i" = -15; +"@MMK_R_KO_j" = -30; +"@MMK_R_KO_n" = -54; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -45; +"@MMK_R_KO_seven" = 6; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_v" = -13; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -76; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 15; +"@MMK_R_KO_Y" = 16; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -84; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_asterisk" = 17; +"@MMK_R_KO_colon" = -61; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_e" = -106; +"@MMK_R_KO_egrave" = -42; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -118; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -90; +"@MMK_R_KO_g" = -103; +"@MMK_R_KO_guillemetleft" = -118; +"@MMK_R_KO_guillemetright" = -85; +"@MMK_R_KO_hyphen" = -118; +"@MMK_R_KO_hyphen.case" = -118; +"@MMK_R_KO_i" = -14; +"@MMK_R_KO_j" = -17; +"@MMK_R_KO_n" = -75; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 16; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 12; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -92; +"@MMK_R_KO_seven" = 21; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_slash" = -82; +"@MMK_R_KO_t" = -16; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_v" = -75; +"@MMK_R_KO_w" = -76; +"@MMK_R_KO_y" = -76; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -59; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_Y" = 44; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_colon" = -40; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_e" = -64; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -64; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -64; +"@MMK_R_KO_g" = -55; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -62; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_hyphen.case" = -64; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -16; +"@MMK_R_KO_n" = -64; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 16; +"@MMK_R_KO_parenright" = 7; +"@MMK_R_KO_parenright.case" = 20; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_seven" = 45; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -64; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_v" = -58; +"@MMK_R_KO_w" = -59; +"@MMK_R_KO_y" = -58; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -64; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 15; +"@MMK_R_KO_Y" = 17; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -64; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_colon" = -61; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_e" = -64; +"@MMK_R_KO_egrave" = -42; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -64; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -64; +"@MMK_R_KO_g" = -64; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -64; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_hyphen.case" = -64; +"@MMK_R_KO_i" = -15; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_n" = -64; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 15; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 12; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -64; +"@MMK_R_KO_seven" = 21; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_slash" = -64; +"@MMK_R_KO_t" = -16; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_v" = -64; +"@MMK_R_KO_w" = -64; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -41; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -60; +"@MMK_R_KO_H" = -19; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 2; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = -60; +"@MMK_R_KO_a.ss05" = -30; +"@MMK_R_KO_asterisk" = 20; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eight" = -7; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_five" = -16; +"@MMK_R_KO_four" = -60; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -60; +"@MMK_R_KO_guillemetright" = -51; +"@MMK_R_KO_hyphen" = -60; +"@MMK_R_KO_hyphen.case" = -60; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_j" = -21; +"@MMK_R_KO_n" = -60; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -60; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -44; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -34; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -30; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -54; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_Y" = 20; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -30; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asterisk" = 22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -61; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 10; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = 12; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_seven" = 17; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -61; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -19; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = -35; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = -16; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -14; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -75; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 25; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -53; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = -53; +"@MMK_R_KO_quoteright" = -51; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -32; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -28; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = 7; +"@MMK_R_KO_trademark" = -36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 7; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -52; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = -27; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -24; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = -39; +"@MMK_R_KO_question.ss01" = -59; +"@MMK_R_KO_quotedbl" = -37; +"@MMK_R_KO_quotedblleft" = -93; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -60; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -72; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 7; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -52; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 21; +"@MMK_R_KO_comma.ss01" = -24; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = -10; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = -23; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -40; +"@MMK_R_KO_quotedblleft.ss01" = -38; +"@MMK_R_KO_quoteleft" = -40; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -37; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = 7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -49; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 36; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 31; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 48; +"@MMK_R_KO_W" = 42; +"@MMK_R_KO_Y" = 50; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_asterisk" = 39; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -47; +"@MMK_R_KO_egrave" = -23; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -104; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = -47; +"@MMK_R_KO_g" = -45; +"@MMK_R_KO_guillemetleft" = -75; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_hyphen.case" = -33; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -36; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = 34; +"@MMK_R_KO_parenright" = 10; +"@MMK_R_KO_parenright.case" = 23; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 22; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 30; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -38; +"@MMK_R_KO_seven" = 53; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_slash" = -51; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 11; +"@MMK_R_KO_two" = 12; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -21; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_five" = 2; +"@MMK_R_KO_four" = 23; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_n" = 1; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 2; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 11; +"@MMK_R_KO_three" = 13; +"@MMK_R_KO_two" = 9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 34; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_Y" = 38; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asterisk" = 30; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -64; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eight" = 3; +"@MMK_R_KO_ellipsis" = -100; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = -27; +"@MMK_R_KO_g" = -25; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -24; +"@MMK_R_KO_hyphen.case" = -8; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = 11; +"@MMK_R_KO_one" = 23; +"@MMK_R_KO_parenright" = 24; +"@MMK_R_KO_parenright.case" = 39; +"@MMK_R_KO_period" = -61; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = 19; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 23; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_seven" = 36; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -41; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 32; +"@MMK_R_KO_J" = 36; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 29; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -8; +"@MMK_R_KO_parenright" = -3; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -21; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 5; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 42; +"@MMK_R_KO_v" = 16; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 18; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = 2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 18; +"@MMK_R_KO_ellipsis" = -40; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_five" = 7; +"@MMK_R_KO_four" = 18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_hyphen.case" = -8; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = 2; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_three" = 11; +"@MMK_R_KO_two" = 9; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 31; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = 45; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asterisk" = 19; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -31; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -42; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -3; +"@MMK_R_KO_nine" = 8; +"@MMK_R_KO_one" = 21; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 14; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = 26; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_three" = 10; +"@MMK_R_KO_two" = 16; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -9; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -25; +"@MMK_R_KO_Y" = -26; +"@MMK_R_KO_Z" = -21; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -11; +"@MMK_R_KO_bracketright" = -13; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -45; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -67; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -19; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -1; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_period" = -35; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -68; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -18; +"@MMK_R_KO_v" = 17; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -51; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -21; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = -18; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -17; +"@MMK_R_KO_bracketright" = -27; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -27; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = 8; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = -14; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -69; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -25; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 13; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 27; +"@MMK_R_KO_J" = 35; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 24; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 20; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = 4; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -69; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -52; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 39; +"@MMK_R_KO_v" = 16; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_x" = 20; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 31; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 27; +"@MMK_R_KO_J" = 34; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 17; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -11; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 16; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -21; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -68; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -64; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 38; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 31; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 46; +"@MMK_R_KO_J" = 41; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 39; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_X" = 42; +"@MMK_R_KO_Y" = 32; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -9; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 24; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = 3; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 6; +"@MMK_R_KO_onesuperior" = 16; +"@MMK_R_KO_parenright" = 9; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 19; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 16; +"@MMK_R_KO_sixsuperior" = 10; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -27; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -18; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eight" = 11; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_five" = 10; +"@MMK_R_KO_four" = 16; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_hyphen.case" = 19; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -30; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = -22; +"@MMK_R_KO_period.ss01" = -45; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = 0; +Tbar = -31; +asciitilde = -17; +asterisk = -52; +backslash = -32; +g.ss06 = 19; +minus = -37; +one = -11; +ordmasculine = -56; +plus = -24; +quotedbl = -66; +registered = -46; +seven = -25; +two = 27; +twosuperior = -29; +}; +Aacute = { +Tbar = -31; +}; +Abrevedotbelow.ss01 = { +T = -42; +}; +Aogonek = { +comma = 52; +parenright = 33; +}; +Atilde = { +ordfeminine = -56; +}; +B = { +Hbar = 11; +hbar = 15; +idieresis = 15; +itilde = 20; +}; +C = { +h = 11; +l = 11; +plus = -52; +three = 20; +}; +D = { +Lslash = 9; +Oslash = 16; +braceright = -23; +bracketright.case = -21; +}; +E = { +H = 0; +idieresis = 0; +}; +Eogonek = { +comma = 50; +}; +F = { +fourinferior = -57; +i = 0; +igrave = 22; +}; +G = { +Lslash = 2; +lslash = 3; +}; +Germandbls = { +S = 20; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -23; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 16; +itilde = 24; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 0; +D = 2; +E = 2; +H = 0; +Hbar = 54; +I = 2; +L = 2; +M = 2; +O = 9; +R = 2; +S = 24; +U = 8; +W = 25; +i = 0; +}; +I = { +Hbar = 0; +I = 1; +jcircumflex = 15; +}; +Icircumflex = { +Icircumflex = 3; +l.ss04 = 4; +}; +Imacron = { +Imacron = 2; +}; +Itilde = { +itilde = 24; +}; +J = { +Hbar = 0; +itilde = 25; +}; +Jacute = { +Imacron = 0; +}; +K = { +asciitilde = -48; +four = -18; +idieresis = 29; +igrave = 55; +itilde = 38; +less = -35; +logicalnot = -54; +minus = -70; +one = 10; +oslash = 5; +plus = -64; +}; +L = { +H = 0; +Tbar = -48; +asciitilde = -62; +asterisk = -63; +backslash = -48; +equal = -62; +four = -61; +less = -40; +logicalnot = -61; +minus = -76; +one = -16; +ordfeminine = -79; +ordmasculine = -79; +oslash = 0; +plus = -75; +quotedbl = -76; +quoteleft.ss01 = -60; +quoteright = -64; +quoteright.ss01 = -60; +registered = -78; +seven = -31; +twosuperior = -73; +}; +Lcaron = { +A = 32; +O = -7; +U = 0; +Uacute = 0; +V = 38; +a = -17; +hyphen = -57; +hyphen.case = -57; +u = -14; +v = -3; +}; +Lcommaaccent = { +twosuperior = -73; +}; +Lslash = { +twosuperior = -22; +}; +M = { +Hbar = 0; +idieresis = 10; +igrave = 16; +itilde = 24; +}; +N = { +Hbar = 0; +idieresis = 10; +igrave = 16; +itilde = 24; +}; +O = { +Dcroat = 0; +Lslash = 0; +braceright = -26; +bracketright.case = -21; +itilde = 13; +}; +Oslash = { +T = 12; +V = 6; +Y = 10; +parenright = 9; +parenright.case = 28; +}; +P = { +fourinferior = -68; +idieresis = 20; +itilde = 38; +two = 16; +}; +R = { +Hbar = 11; +jcircumflex = 19; +two = 6; +}; +S = { +Hbar = 15; +Lslash = 7; +dollar = 0; +four = 19; +idieresis = 13; +itilde = 25; +lslash = 9; +three = 21; +}; +T = { +Oslash = -15; +a.ss05 = -52; +aacute.ss05 = -46; +abreve = -12; +abreveacute = -17; +acircumflex = -28; +acircumflexacute = -28; +acircumflexdotbelow = -28; +adieresis = -26; +adotbelow.ss05 = -52; +ae = -52; +agrave = -12; +amacron = -20; +ampersand = -22; +aring = -25; +asciitilde = -47; +atilde = -21; +equal = -48; +four = -47; +g.ss06 = -50; +h = 0; +i.ss01 = 0; +iacute = -28; +idieresis = 0; +idotless = -63; +igrave = 26; +itilde = 0; +less = -28; +logicalnot = -47; +minus = -64; +ograve = -8; +plus = -63; +racute = -43; +scaron = 5; +seven = 28; +twoinferior = -56; +udieresis = -28; +udieresis.ss01 = -26; +ugrave = -15; +uhorngrave = -15; +umacron = -23; +ycircumflex = -12; +ygrave = 8; +yhookabove = 0; +zcaron = 5; +zeroinferior = -59; +}; +Tbar = { +A = -27; +Aacute = -27; +Tbar = 37; +a = -16; +comma = -48; +e = -15; +o = -16; +period = -50; +slash = -35; +}; +Tcaron = { +a.ss05 = -52; +}; +Tcedilla = { +a.ss05 = -52; +abreve = -12; +four = -47; +}; +Tcommaaccent = { +a.ss05 = -52; +abreve = -12; +four = -47; +}; +Thorn = { +A = 0; +AE = 0; +Aacute = 0; +J = -5; +O = 17; +Oacute = 17; +V = -11; +Y = -37; +Yacute = -37; +a = 10; +aacute = 10; +e = 11; +o = 11; +oacute = 11; +period = -61; +}; +U = { +Hbar = 5; +jcircumflex = 19; +}; +V = { +four = -26; +iacute = -9; +ibreve = 68; +idieresis = 50; +igrave = 64; +itilde = 62; +minus = -32; +plus = -18; +scaron = 6; +seven = 46; +twoinferior = -32; +}; +W = { +Hbar = 25; +backslash = 39; +idieresis = 46; +igrave = 60; +itilde = 60; +}; +X = { +asciitilde = -52; +four = -22; +less = -36; +logicalnot = -59; +minus = -72; +notequal = -66; +one = 13; +plus = -65; +}; +Y = { +a.ss05 = -41; +agrave = -11; +amacron = -18; +ampersand = -20; +asciitilde = -43; +at = -23; +four = -50; +g.ss06 = -41; +igrave = 56; +less = -22; +logicalnot = -43; +minus = -57; +ograve = -8; +plus = -51; +scaron = 8; +twoinferior = -64; +}; +Z = { +four = -61; +ibreve = 47; +igrave = 44; +itilde = 36; +minus = -63; +plus = -58; +}; +_B.currency = { +_baht.bar = -9; +}; +a = { +braceright = -39; +}; +a.ss05 = { +g.ss06 = 5; +}; +acircumflexacute.ss05 = { +y = -6; +}; +adieresis.ss05 = { +germandbls = -6; +}; +ampersand = { +V = -49; +W = -37; +Y = -68; +quotedbl = -97; +quotedblleft = -103; +}; +aogonek = { +j = -2; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 19; +}; +approxequal = { +parenright = -78; +parenright.case = -60; +}; +asciicircum = { +J = -49; +X = -68; +Y = -51; +bracketright = -80; +comma = -64; +comma.ss01 = -60; +four = -63; +hyphen = -131; +parenright = -88; +parenright.case = -75; +period = -61; +period.ss01 = -61; +slash = -90; +}; +asciitilde = { +I.ss02 = -62; +J = -55; +V = -63; +W = -51; +X = -96; +Y = -88; +Z = -88; +bracketright = -87; +bracketright.case = -88; +comma = -64; +comma.ss01 = -60; +eight = -47; +exclam = -56; +four = -40; +one = -63; +parenright = -105; +parenright.case = -87; +period = -61; +period.ss01 = -61; +question = -111; +quotedbl = -110; +quotedblright = -118; +seven = -87; +slash = -88; +three = -70; +two = -95; +}; +at = { +T = -43; +parenright = -39; +}; +b = { +asterisk = -46; +braceright = -25; +lslash = 0; +one = -20; +}; +backslash = { +T = -49; +V = -48; +Y = -58; +asterisk = -65; +backslash = -47; +quotedbl = -71; +quotedblleft = -81; +quotedblleft.ss01 = -82; +quotedblright = -71; +quotedblright.ss01 = -75; +quoteleft = -64; +quoteright = -64; +quotesingle = -61; +}; +baht = { +parenright = -32; +}; +braceleft = { +p = 0; +}; +bracketleft = { +asciicircum = -79; +asciitilde = -36; +bracketright = 79; +jcircumflex = 31; +p = 0; +pi = -16; +plus = -64; +x = -27; +}; +c = { +asterisk = -33; +braceright = -29; +}; +cent = { +parenright = -33; +}; +colon = { +T = -50; +Y = -21; +four = -35; +one = -10; +parenright = -17; +two = 0; +zero = 0; +}; +colon.ss01 = { +T = -61; +four = -54; +parenright = -27; +}; +comma = { +eightsuperior = -64; +fivesuperior = -64; +foursuperior = -64; +ninesuperior = -64; +onesuperior = -64; +quoteleft = -64; +quotesingle = -61; +sevensuperior = -64; +sixsuperior = -64; +threesuperior = -64; +twosuperior = -64; +}; +comma.ss01 = { +eightsuperior = -60; +fivesuperior = -60; +foursuperior = -60; +ninesuperior = -60; +onesuperior = -60; +sevensuperior = -60; +sixsuperior = -60; +threesuperior = -60; +twosuperior = -60; +}; +copyright = { +Y = -70; +parenright = -54; +}; +d = { +idieresis = 0; +igrave = 0; +itilde = 0; +}; +dcaron = { +C = 40; +H = 54; +bracketright = 33; +eightsuperior = 48; +exclam = 80; +exclam.ss01 = 79; +fivesuperior = 43; +foursuperior = 28; +h = 28; +i = 0; +j = 0; +k = 28; +l = 28; +l.ss03 = 26; +l.ss04 = 30; +ninesuperior = 52; +onesuperior = 73; +parenright = 69; +question = 88; +question.ss01 = 62; +quotedbl = 83; +quotedblleft = 73; +quotedblleft.ss01 = 53; +quoteleft = 73; +quoteleft.ss01 = 53; +quotesingle = 83; +sevensuperior = 81; +sixsuperior = 42; +t = 19; +t_i.liga = 19; +t_t.liga = 19; +threesuperior = 57; +twosuperior = 63; +zcaron = 27; +}; +dcroat = { +i = 0; +igrave = 0; +itilde = 0; +}; +degree = { +J = -36; +comma = -64; +comma.ss01 = -60; +emdash = -203; +endash = -185; +four = -71; +hyphen = -131; +parenright = -47; +parenright.case = -26; +period = -61; +period.ss01 = -61; +slash = -78; +}; +divide = { +parenright = -86; +}; +dollar = { +parenright = -26; +three = 5; +}; +e = { +asterisk = -44; +backslash = -30; +braceright = -38; +germandbls = -2; +one = -24; +seven = -40; +}; +ecircumflexacute = { +t = -2; +}; +eight = { +bracketright = -23; +degree = -19; +}; +eight.dnom = { +degree = -135; +question.ss01 = -74; +quotedbl = -126; +quotedblleft = -118; +quotedblright = -118; +}; +eightsuperior = { +comma = -64; +comma.ss01 = -60; +period = -61; +period.ss01 = -61; +slash = -51; +}; +ellipsis = { +Tbar = -81; +bracketright = -58; +eightsuperior = -142; +fivesuperior = -134; +foursuperior = -127; +ninesuperior = -139; +onesuperior = -80; +parenleft = -52; +parenleft.case = -76; +question = -86; +quoteleft = -64; +quoteright = -64; +quotesingle = -61; +sevensuperior = -108; +sixsuperior = -139; +threesuperior = -131; +twosuperior = -118; +}; +ellipsis.ss01 = { +Tbar = -81; +bracketright = -54; +eightsuperior = -142; +fivesuperior = -134; +foursuperior = -127; +ninesuperior = -139; +onesuperior = -80; +question.ss01 = -85; +quoteleft.ss01 = -60; +quoteright.ss01 = -60; +quotesingle = -61; +sevensuperior = -108; +sixsuperior = -139; +threesuperior = -131; +twosuperior = -118; +}; +emdash = { +foursuperior = -120; +question = -65; +}; +emdash.case = { +X = -47; +quotedblbase = -118; +quotedblbase.ss01 = -113; +}; +endash = { +X = -23; +endash = 0; +foursuperior = -120; +question = -55; +}; +endash.case = { +H = 0; +X = -47; +quotedblbase = -118; +quotedblbase.ss01 = -113; +}; +eng = { +bracketright = 0; +}; +eogonek = { +lslash = 0; +}; +equal = { +T = -48; +equal = 0; +parenright = -54; +parenright.case = -31; +}; +eth = { +a = -6; +e = -6; +g = -5; +hyphen = 7; +parenright = -27; +}; +euro = { +parenright = -26; +parenright.case = -2; +}; +exclamdown = { +T = -50; +V = -15; +Y = -34; +}; +f = { +igrave = 0; +n = 0; +o = 0; +}; +f_f.liga = { +igrave = 0; +}; +f_f_i.liga = { +idieresis = 0; +}; +fi = { +idieresis = 0; +}; +five = { +degree = -38; +ordmasculine = -32; +percent = -16; +}; +five.dnom = { +degree = -127; +question.ss01 = -76; +quotedblleft = -118; +}; +five.numr = { +fraction = 0; +}; +fiveinferior = { +T = -60; +}; +fivesuperior = { +comma = -64; +comma.ss01 = -60; +period = -61; +period.ss01 = -61; +slash = -46; +}; +fl = { +idieresis = 0; +itilde = 0; +periodcentered.loclCAT = 58; +}; +four = { +asciicircum = -53; +bracketright = -11; +bracketright.case = -2; +degree = -40; +ordfeminine = -29; +ordmasculine = -29; +percent = -17; +x = -2; +}; +four.dnom = { +degree = -120; +question.ss01 = -75; +quotedblleft = -118; +}; +fourinferior = { +T = -58; +V = -50; +}; +foursuperior = { +comma = -64; +comma.ss01 = -60; +period = -61; +period.ss01 = -61; +slash = -52; +}; +fraction = { +eight.dnom = -2; +four.dnom = -19; +fourinferior = -25; +seveninferior = 30; +two.dnom = 4; +zero.dnom = 0; +}; +g = { +bracketright = 0; +j = 0; +j.ss01 = 0; +parenright = 0; +slash = 15; +}; +g.ss06 = { +g.ss06 = 23; +}; +gcaron.ss06 = { +gcaron.ss06 = 23; +}; +gdotaccent = { +j = 0; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 23; +}; +germandbls = { +e = 0; +hyphen = 21; +parenright = -23; +}; +greater = { +T = -28; +parenright = -33; +}; +greaterequal = { +T = -60; +}; +guillemetleft = { +pi = -2; +}; +guillemetright = { +X = -56; +bracketright = -60; +}; +guilsinglright = { +X = -57; +}; +h = { +asterisk = -41; +}; +hyphen = { +Lslash = 18; +X = -18; +bracketright = -29; +foursuperior = -98; +pi = -2; +question = -63; +quotedblbase = -118; +quoteleft = -64; +quotesingle = -61; +x = -14; +}; +hyphen.case = { +Dcroat = 35; +X = -46; +bracketright.case = -30; +quotedblbase = -118; +quotedblbase.ss01 = -113; +quotesinglbase = -64; +}; +i = { +T = -24; +idieresis = 0; +jcircumflex = 0; +parenright = -22; +}; +i.ss01 = { +parenright = -8; +}; +iacute = { +rcaron = 0; +}; +icircumflex = { +b = 0; +h = 0; +i = 0; +icircumflex = 0; +j = 0; +k = 0; +l = 0; +l.ss03 = 0; +l.ss04 = 0; +question = 27; +quotedbl = 22; +quoteright = 51; +quotesingle = 23; +}; +idieresis = { +b = 0; +idieresis = 0; +k = 0; +l = 0; +l.ss03 = 0; +l.ss04 = 0; +}; +idotaccent = { +parenright = -22; +}; +idotaccent.ss01 = { +parenright = -8; +}; +imacron = { +b = 0; +imacron = 0; +j = 0; +k = 0; +kcommaaccent = 0; +l = 0; +l.ss04 = 0; +lcommaaccent = 0; +quotedbl = 0; +}; +infinity = { +parenright = -64; +parenright.case = -34; +}; +integral = { +a = -40; +}; +iogonek = { +j = 0; +}; +itilde = { +h = 0; +itilde = 0; +quotedbl = 29; +quotesingle = 29; +}; +j = { +j = 0; +}; +jacute = { +backslash = 47; +iogonek = 0; +}; +jcircumflex = { +i = 0; +jcircumflex = 0; +}; +k = { +oslash = 0; +}; +l = { +at = 0; +idieresis = 0; +igrave = 0; +itilde = 0; +jcircumflex = 2; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 52; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss04 = { +periodcentered.loclCAT = 58; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 78; +l = 27; +ncaron = 0; +scaron = 4; +twosuperior = 62; +}; +lcaron.ss03 = { +b = 23; +eightsuperior = 43; +exclam = 75; +exclam.ss01 = 74; +fivesuperior = 38; +k = 23; +ninesuperior = 47; +onesuperior = 68; +question = 83; +quotedbl = 78; +quotesingle = 78; +sevensuperior = 76; +sixsuperior = 37; +}; +lcaron.ss04 = { +exclam.ss01 = 78; +twosuperior = 62; +}; +liraTurkish = { +one = -21; +parenright = -39; +question = -44; +quotedbl = -62; +quotesingle = -61; +seven = -36; +}; +logicalnot = { +Y = -65; +parenright = -51; +seven = -56; +}; +m = { +asterisk = -42; +braceright = -40; +twosuperior = -24; +}; +minus = { +T = -65; +X = -68; +comma = -64; +one = -36; +parenright = -86; +parenright.case = -65; +period = -61; +seven = -80; +three = -67; +two = -85; +}; +mu = { +mu = -13; +parenright = -28; +quotesingle = -43; +}; +multiply = { +parenright = -83; +parenright.case = -65; +}; +n = { +asterisk = -41; +at = -4; +braceright = -40; +degree = -91; +g.ss06 = 2; +n = 0; +one = -22; +ordmasculine = -49; +}; +ncaron = { +Yacute = -11; +}; +nine = { +bracketright = -26; +degree = -26; +}; +nine.dnom = { +degree = -133; +question = -74; +question.ss01 = -72; +quotedbl = -126; +quotedblleft = -118; +quotedblleft.ss01 = -113; +quotedblright = -118; +quotedblright.ss01 = -113; +}; +ninesuperior = { +comma = -64; +comma.ss01 = -60; +fraction = -4; +period = -61; +period.ss01 = -61; +slash = -54; +}; +notequal = { +parenright = -73; +parenright.case = -51; +}; +numbersign = { +parenright = -30; +}; +o = { +asterisk = -47; +backslash = -29; +braceright = -37; +germandbls = 0; +lslash = 0; +n = 0; +one = -20; +}; +oacute = { +lslash = 0; +}; +ocircumflexacute = { +bracketright = 18; +parenright = 16; +}; +odieresis = { +germandbls = 0; +}; +ohorn = { +i = 0; +m = 0; +n = 0; +parenright = -20; +}; +ohornacute = { +c = 0; +i = 0; +m = 0; +n = 0; +p = 0; +t = 5; +t_i.liga = 5; +t_t.liga = 5; +}; +ohorndotbelow = { +c = 0; +i = 0; +n = 0; +p = 0; +t = 5; +t_i.liga = 5; +t_t.liga = 5; +u = 3; +}; +ohorngrave = { +i = 0; +n = 0; +parenright = -20; +}; +ohornhookabove = { +i = 0; +n = 0; +}; +ohorntilde = { +i = 0; +n = 0; +}; +ohungarumlaut = { +parenright = 0; +}; +one = { +comma.ss01 = -27; +degree = -24; +equal = 0; +four = 0; +icircumflex = 12; +nine = 0; +one = 0; +parenright = -3; +percent = 0; +period.ss01 = -30; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -78; +one.dnom = 0; +question.ss01 = -73; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -64; +comma.ss01 = -60; +period = -61; +period.ss01 = -61; +slash = -56; +}; +ordfeminine = { +comma = -64; +comma.ss01 = -60; +period = -61; +period.ss01 = -61; +}; +ordmasculine = { +comma = -64; +comma.ss01 = -60; +hyphen = -81; +parenright = -26; +period = -61; +period.ss01 = -61; +slash = -63; +}; +oslash = { +d = 3; +e = 2; +g = 3; +hyphen = 15; +parenright = -27; +y = 3; +}; +p = { +asterisk = -45; +backslash = -29; +braceright = -25; +lslash = 0; +one = -20; +}; +parenleft = { +Dcroat = -2; +H = 0; +Icircumflex = 21; +Oslash = -17; +ampersand = -22; +approxequal = -77; +asciicircum = -80; +asciitilde = -63; +at = -37; +cent = -32; +copyright = -34; +degree = -17; +divide = -83; +dollar = -18; +equal = -53; +euro = -32; +greaterequal = -26; +i = -17; +idotaccent = -17; +infinity = -58; +iogonek = 42; +jcircumflex = 49; +less = -32; +literSign = -25; +logicalnot = -45; +minus = -84; +mu = -10; +multiply = -83; +notequal = -72; +numbersign = -24; +oslash = -15; +p = 0; +parenleft = -21; +pi = -24; +plus = -76; +plusminus = -32; +published = -34; +question = -5; +quotedblbase = 18; +quoteleft = 0; +radical = -31; +scaron = 0; +section = -13; +sterling = -17; +x = -11; +}; +parenleft.case = { +Icircumflex = 31; +approxequal = -59; +asciicircum = -75; +asciitilde = -37; +dollar = -2; +equal = -31; +euro = -21; +minus = -65; +numbersign = -12; +parenleft.case = -12; +plus = -57; +question = 0; +quotedblbase = 26; +quoteleft = 0; +}; +parenright = { +bracketright = -20; +comma = 0; +comma.ss01 = -32; +hyphen = 24; +parenleft = 21; +parenright = -21; +period = -5; +period.ss01 = -43; +quotedbl = -20; +}; +parenright.case = { +comma = -21; +comma.ss01 = -47; +parenright.case = -12; +period = -27; +period.ss01 = -53; +}; +percent = { +asterisk = -64; +bracketright = -36; +comma.ss01 = -50; +eightsuperior = -68; +fivesuperior = -70; +foursuperior = -81; +ninesuperior = -67; +onesuperior = -60; +parenright = -42; +parenright.case = -15; +period = -21; +period.ss01 = -50; +question = -69; +question.ss01 = -66; +quotedbl = -78; +quotedblleft = -85; +quotedblright = -76; +quoteleft = -64; +quoteright = -64; +quotesingle = -61; +sevensuperior = -64; +sixsuperior = -70; +threesuperior = -63; +twosuperior = -48; +}; +period = { +bracketright = -38; +eightsuperior = -61; +fivesuperior = -61; +foursuperior = -61; +ninesuperior = -61; +onesuperior = -61; +ordfeminine = -61; +ordmasculine = -61; +parenleft.case = -42; +question = -61; +quoteleft = -61; +quotesingle = -61; +sevensuperior = -61; +sixsuperior = -61; +threesuperior = -61; +twosuperior = -61; +}; +period.ss01 = { +bracketright = -54; +eightsuperior = -61; +fivesuperior = -61; +foursuperior = -61; +ninesuperior = -61; +onesuperior = -61; +ordfeminine = -61; +ordmasculine = -61; +question.ss01 = -61; +sevensuperior = -61; +sixsuperior = -61; +threesuperior = -61; +twosuperior = -61; +}; +periodcentered.loclCAT = { +l = 57; +l.ss03 = 58; +}; +perthousand = { +asterisk = -138; +parenright = -61; +parenright.case = -24; +question = -82; +question.ss01 = -83; +quotedblleft = -118; +quotedblleft.ss01 = -113; +quotedblright = -118; +quotedblright.ss01 = -113; +quoteleft = -64; +quoteright = -64; +}; +pi = { +hyphen = -4; +parenright = -11; +period = 0; +pi = 21; +quotesingle = -12; +}; +plus = { +J = -23; +T = -64; +V = -27; +X = -63; +Y = -61; +braceright = -70; +bracketright = -65; +comma = -64; +comma.ss01 = -60; +one = -33; +parenright = -79; +parenright.case = -58; +period = -61; +period.ss01 = -61; +quotedbl = -79; +seven = -66; +slash = -39; +three = -46; +two = -67; +}; +published = { +parenright = -54; +}; +q = { +bracketright = 0; +j = 0; +parenright = 0; +}; +question = { +A = -20; +J = -6; +comma = -40; +hyphen = -26; +parenright = -10; +parenright.case = 0; +period = -46; +question = 23; +questiondown = -54; +slash = -32; +}; +question.ss01 = { +comma.ss01 = -60; +parenright = -11; +parenright.case = 0; +period.ss01 = -61; +questiondown.ss01 = -46; +}; +questiondown.case = { +T = -61; +V = -62; +Y = -66; +quotedbl = -86; +quotedblleft = -96; +quotedblleft.ss01 = -103; +quoteright = -64; +}; +questiondown.ss01 = { +C = -61; +Q = -61; +Q.ss09 = -61; +T = -76; +V = -79; +Y = -89; +four = -57; +quotedbl = -91; +quotedblleft.ss01 = -103; +quotesingle = -61; +}; +quotedbl = { +ellipsis.ss01 = -126; +exclamdown = -29; +g.ss06 = -33; +icircumflex = 27; +mu = -28; +questiondown = -70; +questiondown.case = -58; +questiondown.ss01 = -71; +underscore = -126; +}; +quotedblbase = { +copyright = -118; +divide = -118; +equal = -118; +euro = -83; +minus = -118; +p = -13; +plus = -118; +question = -73; +quotedblright = -118; +quoteleft = -64; +}; +quotedblbase.ss01 = { +divide = -113; +minus = -113; +plus = -113; +question.ss01 = -84; +quotedblright.ss01 = -113; +}; +quotedblleft = { +g.ss06 = -76; +mu = -70; +questiondown = -92; +questiondown.case = -40; +quotedblbase = -118; +underscore = -118; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -113; +questiondown.ss01 = -89; +quotedblbase.ss01 = -113; +underscore = -113; +}; +quotedblright = { +asciitilde = -118; +questiondown = -114; +questiondown.case = -59; +quotesinglbase = -64; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -113; +questiondown.case = -72; +questiondown.ss01 = -93; +}; +quoteleft = { +questiondown = -64; +questiondown.case = -40; +quotedblbase = -64; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -60; +}; +quoteright = { +icircumflex = 17; +questiondown = -64; +quotedblbase = -64; +}; +quoteright.ss01 = { +questiondown.ss01 = -60; +quotedblbase.ss01 = -60; +}; +quotesinglbase = { +T = -64; +V = -64; +Y = -64; +minus = -64; +plus = -64; +question = -64; +quotedblleft = -64; +quoteleft = -64; +}; +quotesinglbase.ss01 = { +T = -60; +V = -60; +Y = -60; +question.ss01 = -60; +}; +quotesingle = { +Hbar = 11; +g.ss06 = -33; +icircumflex = 28; +igrave = 30; +imacron = 11; +itilde = 35; +l.ss04 = 0; +questiondown = -61; +questiondown.case = -57; +underscore = -61; +}; +r = { +braceright = -15; +fourinferior = -49; +g.ss06 = -10; +parenright = -24; +}; +radical = { +A = -32; +}; +rcaron = { +sevensuperior = 27; +}; +registered = { +comma = -64; +comma.ss01 = -60; +parenright = -52; +parenright.case = -27; +period = -61; +period.ss01 = -61; +slash = -47; +}; +s = { +asterisk = -34; +braceright = -28; +l = 0; +}; +scaron = { +T = -2; +}; +semicolon = { +hyphen = -64; +}; +seven = { +minus = -54; +percent = 12; +plus = -48; +underscore = -62; +}; +seven.dnom = { +question.ss01 = -72; +}; +seven.numr = { +fraction = -16; +}; +seveninferior = { +parenright = -46; +}; +sevensuperior = { +A = -56; +comma = -64; +comma.ss01 = -60; +fraction = -22; +period = -61; +period.ss01 = -61; +slash = -65; +}; +six = { +bracketright = -22; +degree = -27; +}; +six.dnom = { +degree = -133; +question.ss01 = -76; +quotedbl = -126; +quotedblleft = -118; +quotedblleft.ss01 = -113; +quotedblright = -118; +}; +sixinferior = { +T = -59; +}; +sixsuperior = { +comma = -64; +comma.ss01 = -60; +period = -61; +period.ss01 = -61; +slash = -50; +}; +slash = { +fourinferior = -60; +g.ss06 = -29; +ibreve = 45; +l.ss04 = 2; +mu = -31; +quotedblbase = -85; +quotedblbase.ss01 = -96; +quotesinglbase = -64; +underscore = -66; +}; +sterling = { +two = 4; +}; +t_i.liga = { +idieresis = 0; +}; +tcaron = { +b = 4; +exclam = 60; +h = 4; +hyphen = -4; +i = 0; +j = 0; +k = 4; +parenright = 92; +quotedbl = 64; +quotedblleft = 49; +quotesingle = 64; +}; +tcedilla = { +parenright = 64; +}; +tenge = { +comma = -64; +comma.ss01 = -60; +period = -61; +period.ss01 = -61; +slash = -57; +}; +three = { +bracketright = -23; +}; +three.dnom = { +degree = -125; +question.ss01 = -73; +quotedbl = -125; +quotedblleft = -118; +quotedblright = -118; +}; +three.numr = { +fraction = -2; +}; +threeinferior = { +T = -59; +V = -48; +Y = -73; +}; +threesuperior = { +comma = -64; +comma.ss01 = -60; +fraction = 0; +parenright = -11; +period = -61; +period.ss01 = -61; +slash = -52; +}; +trademark = { +comma = -64; +comma.ss01 = -60; +hyphen = -131; +period = -61; +period.ss01 = -61; +slash = -80; +}; +two = { +percent = 14; +}; +two.dnom = { +degree = -112; +question.ss01 = -68; +quotedbl = -112; +quotedblleft = -112; +quotedblright = -112; +}; +twoinferior = { +T = -58; +V = -41; +Y = -75; +}; +twosuperior = { +comma = -64; +comma.ss01 = -60; +parenright = 0; +parenright.case = 0; +period = -61; +period.ss01 = -61; +slash = -39; +}; +uhorn = { +a = 0; +ohorn = 0; +ohornacute = 0; +ohorndotbelow = 0; +ohorndotbelow.ss01 = 0; +ohorngrave = 0; +ohornhookabove = 0; +ohorntilde = 0; +}; +uhornacute = { +a = 0; +c = 0; +}; +uhorndotbelow = { +a = 0; +c = 0; +comma = 0; +period = -1; +}; +uhorngrave = { +a = 0; +a.ss05 = 5; +}; +uhornhookabove = { +a = 0; +comma = 0; +comma.ss01 = -30; +period = -1; +period.ss01 = -36; +}; +uhorntilde = { +a = 0; +comma = 0; +period = -1; +}; +uhungarumlaut = { +parenright = -2; +}; +underscore = { +C = -35; +O = -35; +T = -45; +V = -65; +W = -41; +Y = -61; +asterisk = -138; +four = -109; +one = -14; +quotedbl = -126; +quotedblright = -118; +quotedblright.ss01 = -113; +quotesingle = -61; +seven = -35; +six = -32; +v = -38; +}; +uogonek = { +j = 0; +parenright = 3; +}; +v = { +braceright = -26; +n = 0; +}; +w = { +braceright = -27; +}; +x = { +four = -11; +}; +y = { +braceright = -17; +}; +ydotbelow = { +period = -30; +}; +zero = { +braceright = -27; +bracketright = -25; +bracketright.case = -22; +degree = -29; +percent = 0; +}; +zero.dnom = { +degree = -138; +question = -73; +question.ss01 = -72; +quotedbl = -126; +quotedblleft = -118; +quotedblleft.ss01 = -113; +quotedblright = -118; +quotedblright.ss01 = -113; +quoteleft = -64; +}; +zeroinferior = { +parenright = -40; +}; +zerosuperior = { +comma = -64; +comma.ss01 = -60; +fraction = -5; +period = -61; +period.ss01 = -61; +slash = -54; +}; +}; +"2D4E69BA-A319-45D0-84B7-5297BCF4B7A0" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -69; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -70; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -60; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = -45; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = -50; +"@MMK_R_KO_foursuperior" = -46; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -46; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -20; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -54; +"@MMK_R_KO_onesuperior" = -69; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = -33; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -45; +"@MMK_R_KO_question.ss01" = -52; +"@MMK_R_KO_quotedbl" = -62; +"@MMK_R_KO_quotedblleft" = -52; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteleft" = -52; +"@MMK_R_KO_quoteright" = -33; +"@MMK_R_KO_quoteright.ss01" = -33; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_sevensuperior" = -74; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_sixsuperior" = -51; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_threesuperior" = -45; +"@MMK_R_KO_trademark" = -80; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -36; +"@MMK_R_KO_w" = -26; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = -12; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -18; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 25; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -64; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -21; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -35; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -3; +"@MMK_R_KO_bracketright" = -41; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 28; +"@MMK_R_KO_imacron" = 25; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 15; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -18; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -68; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -21; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -35; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -27; +"@MMK_R_KO_Y" = -43; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -11; +"@MMK_R_KO_bracketright" = -56; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 12; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_parenright.case" = -80; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -10; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -28; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -43; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = -56; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -27; +"@MMK_R_KO_Y" = -43; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -56; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -16; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -29; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_parenright.case" = -80; +"@MMK_R_KO_period" = -17; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -10; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -28; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_y" = -4; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 1; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -6; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_hyphen.case" = -3; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 45; +"@MMK_R_KO_imacron" = 41; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 31; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -5; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -27; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = -8; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = -89; +"@MMK_R_KO_comma.ss01" = -100; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -99; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_icircumflex" = 45; +"@MMK_R_KO_imacron" = 41; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 31; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -25; +"@MMK_R_KO_period" = -90; +"@MMK_R_KO_period.ss01" = -101; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -51; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_underscore" = -88; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 32; +"@MMK_R_KO_imacron" = 20; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -20; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -72; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -23; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -33; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -33; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -13; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = -26; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -41; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -4; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 47; +"@MMK_R_KO_imacron" = 35; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 21; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -6; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -11; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -36; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -69; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -8; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 41; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 2; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -12; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 50; +"@MMK_R_KO_imacron" = 42; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -3; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -25; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -40; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = -44; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -37; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 42; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -4; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -21; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -25; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -29; +"@MMK_R_KO_w" = -24; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = -12; +"@MMK_R_KO_V" = -54; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -78; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -96; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 12; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = -84; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -85; +"@MMK_R_KO_foursuperior" = -85; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -88; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -76; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -84; +"@MMK_R_KO_onesuperior" = -88; +"@MMK_R_KO_parenright" = -44; +"@MMK_R_KO_parenright.case" = -36; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -63; +"@MMK_R_KO_question.ss01" = -73; +"@MMK_R_KO_quotedbl" = -81; +"@MMK_R_KO_quotedblleft" = -85; +"@MMK_R_KO_quotedblleft.ss01" = -82; +"@MMK_R_KO_quoteleft" = -85; +"@MMK_R_KO_quoteright" = -77; +"@MMK_R_KO_quoteright.ss01" = -80; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -91; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_sixsuperior" = -83; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_threesuperior" = -85; +"@MMK_R_KO_trademark" = -92; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -25; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -33; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -77; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 12; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -43; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_fivesuperior" = -51; +"@MMK_R_KO_foursuperior" = -44; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -11; +"@MMK_R_KO_hyphen.case" = -36; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -58; +"@MMK_R_KO_onesuperior" = -84; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -36; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -43; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -68; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -43; +"@MMK_R_KO_quoteleft" = -48; +"@MMK_R_KO_quoteright" = -35; +"@MMK_R_KO_quoteright.ss01" = -38; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -86; +"@MMK_R_KO_sixsuperior" = -51; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_threesuperior" = -46; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = -25; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -9; +"@MMK_R_KO_bracketright" = -43; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 23; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -76; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = -39; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = -25; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_bracketright" = -34; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_parenright.case" = -47; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = -39; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 23; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 21; +"@MMK_R_KO_U" = 28; +"@MMK_R_KO_V" = 25; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_bracketright" = 15; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 29; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 29; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_parenright" = 10; +"@MMK_R_KO_parenright.case" = 6; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 24; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_quoteright.ss01" = 25; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = 5; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -27; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -31; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -40; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = -20; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -3; +"@MMK_R_KO_bracketright" = -53; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_comma.ss01" = -101; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -144; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 21; +"@MMK_R_KO_imacron" = 17; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 10; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_parenright.case" = -71; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_period.ss01" = -102; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -22; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -53; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -33; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -154; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -29; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -35; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_hyphen.case" = -12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 6; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -52; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -37; +"@MMK_R_KO_period" = 5; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -25; +"@MMK_R_KO_question.ss01" = -32; +"@MMK_R_KO_quotedbl" = -37; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -24; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -67; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -10; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -3; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 44; +"@MMK_R_KO_imacron" = 28; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 19; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = 1; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -17; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -25; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -10; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -23; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = -9; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 42; +"@MMK_R_KO_imacron" = 30; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_parenright.case" = -58; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -19; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -22; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -10; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_hyphen.case" = -9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 42; +"@MMK_R_KO_imacron" = 30; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -54; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -19; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -22; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -41; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -30; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = -4; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -41; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -25; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -62; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = -40; +"@MMK_R_KO_guillemetleft" = -77; +"@MMK_R_KO_guillemetright" = -44; +"@MMK_R_KO_hyphen" = -44; +"@MMK_R_KO_hyphen.case" = -44; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_icircumflex" = 64; +"@MMK_R_KO_imacron" = 40; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -40; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -42; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -19; +"@MMK_R_KO_underscore" = -46; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -11; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_imacron" = 39; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -31; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -6; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 20; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_T" = 31; +"@MMK_R_KO_U" = 24; +"@MMK_R_KO_V" = 35; +"@MMK_R_KO_X" = 17; +"@MMK_R_KO_Y" = 34; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = 27; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_eightsuperior" = 30; +"@MMK_R_KO_ellipsis" = -17; +"@MMK_R_KO_exclam" = 32; +"@MMK_R_KO_fivesuperior" = 23; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 21; +"@MMK_R_KO_onesuperior" = 7; +"@MMK_R_KO_parenright" = 29; +"@MMK_R_KO_parenright.case" = 31; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 4; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 32; +"@MMK_R_KO_quoteright" = 24; +"@MMK_R_KO_quoteright.ss01" = 24; +"@MMK_R_KO_sevensuperior" = 31; +"@MMK_R_KO_sixsuperior" = 24; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_threesuperior" = 22; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -56; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -51; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = -26; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -52; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 46; +"@MMK_R_KO_imacron" = 43; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 26; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -59; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -61; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = -57; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_x" = -18; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -27; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = -38; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -40; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 50; +"@MMK_R_KO_imacron" = 43; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 35; +"@MMK_R_KO_n" = -11; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = -38; +"@MMK_R_KO_period.ss01" = -44; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -46; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asciicircum" = -47; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = -6; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -14; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -31; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -78; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = -38; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 43; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -2; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -62; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -8; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -61; +"@MMK_R_KO_a.ss05" = -30; +"@MMK_R_KO_asciicircum" = -50; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = -34; +"@MMK_R_KO_comma" = -94; +"@MMK_R_KO_comma.ss01" = -101; +"@MMK_R_KO_e" = -64; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -103; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -94; +"@MMK_R_KO_guillemetright" = -49; +"@MMK_R_KO_hyphen" = -66; +"@MMK_R_KO_hyphen.case" = -44; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 37; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_l.ss04" = 20; +"@MMK_R_KO_n" = -43; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -94; +"@MMK_R_KO_period.ss01" = -102; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -52; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -92; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -2; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_underscore" = -93; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -33; +"@MMK_R_KO_x" = -35; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -37; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 3; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -30; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 43; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -18; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 2; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -15; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -58; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -5; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -9; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -51; +"@MMK_R_KO_u" = 1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -33; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -81; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -58; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = -36; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -39; +"@MMK_R_KO_foursuperior" = -36; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -81; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -64; +"@MMK_R_KO_question.ss01" = -67; +"@MMK_R_KO_quotedbl" = -71; +"@MMK_R_KO_quotedblleft" = -57; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -57; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -88; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -48; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_threesuperior" = -35; +"@MMK_R_KO_trademark" = -89; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -46; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -56; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -35; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -38; +"@MMK_R_KO_foursuperior" = -36; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = -39; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -75; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -59; +"@MMK_R_KO_question.ss01" = -62; +"@MMK_R_KO_quotedbl" = -62; +"@MMK_R_KO_quotedblleft" = -53; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -52; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -80; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -48; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_threesuperior" = -35; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = -14; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -50; +"@MMK_R_KO_H" = -13; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_T" = -39; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_t" = -2; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = -9; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -9; +"@MMK_R_KO_n" = -9; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = -36; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_comma.ss01" = -101; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_g" = -25; +"@MMK_R_KO_guillemetleft" = -81; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -147; +"@MMK_R_KO_hyphen.case" = -49; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -4; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -65; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_period.ss01" = -102; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -85; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -17; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -5; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -69; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_asterisk" = -4; +"@MMK_R_KO_colon" = -57; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -67; +"@MMK_R_KO_egrave" = -36; +"@MMK_R_KO_eight" = -17; +"@MMK_R_KO_ellipsis" = -76; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_five" = -16; +"@MMK_R_KO_four" = -72; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -91; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 33; +"@MMK_R_KO_n" = -67; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = -69; +"@MMK_R_KO_period" = -66; +"@MMK_R_KO_period.ss01" = -78; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = -66; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -23; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_three" = -25; +"@MMK_R_KO_two" = -19; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -77; +"@MMK_R_KO_w" = -74; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = -41; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -22; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = -9; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_eight" = -12; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_guillemetleft" = -99; +"@MMK_R_KO_guillemetright" = -70; +"@MMK_R_KO_hyphen.case" = -75; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = -67; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_seven" = -2; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_three" = -19; +"@MMK_R_KO_two" = -3; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -17; +"@MMK_R_KO_Y" = -67; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = -64; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -19; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -43; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -42; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -29; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -43; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -109; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_eight" = -17; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -29; +"@MMK_R_KO_guillemetleft" = -109; +"@MMK_R_KO_guillemetright" = -37; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -109; +"@MMK_R_KO_nine" = -26; +"@MMK_R_KO_one" = -83; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_quotedbl" = -109; +"@MMK_R_KO_quotedblleft" = -109; +"@MMK_R_KO_quoteright" = -109; +"@MMK_R_KO_seven" = -94; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_three" = -17; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -54; +"@MMK_R_KO_H" = -11; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -9; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = -16; +"@MMK_R_KO_Y" = -71; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -67; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -48; +"@MMK_R_KO_question.ss01" = -54; +"@MMK_R_KO_quotedbl" = -50; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -74; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -32; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -77; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -32; +"@MMK_R_KO_v" = -13; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_X" = -12; +"@MMK_R_KO_Y" = -24; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -42; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -42; +"@MMK_R_KO_question.ss01" = -35; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -27; +"@MMK_R_KO_v" = -13; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asterisk" = -12; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 9; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 6; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -61; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -2; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 3; +"@MMK_R_KO_two" = 2; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -9; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_S" = -25; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = -32; +"@MMK_R_KO_V" = -70; +"@MMK_R_KO_W" = -45; +"@MMK_R_KO_Y" = -93; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asterisk" = -147; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = -24; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_five" = -29; +"@MMK_R_KO_four" = -38; +"@MMK_R_KO_g" = -28; +"@MMK_R_KO_guillemetleft" = -150; +"@MMK_R_KO_guillemetright" = -62; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_hyphen.case" = -226; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_nine" = -36; +"@MMK_R_KO_one" = -92; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_parenright.case" = -55; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -196; +"@MMK_R_KO_quotedblleft" = -229; +"@MMK_R_KO_quoteright" = -229; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_seven" = -103; +"@MMK_R_KO_six" = -39; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = -31; +"@MMK_R_KO_three" = -25; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -44; +"@MMK_R_KO_w" = -32; +"@MMK_R_KO_y" = -57; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -27; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -58; +"@MMK_R_KO_U" = -22; +"@MMK_R_KO_V" = -66; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_Y" = -95; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asterisk" = -147; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -17; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_five" = -13; +"@MMK_R_KO_four" = -5; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -134; +"@MMK_R_KO_guillemetright" = -65; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_hyphen.case" = -223; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = -20; +"@MMK_R_KO_one" = -95; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -196; +"@MMK_R_KO_quotedblleft.ss01" = -211; +"@MMK_R_KO_quoteright.ss01" = -211; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = -104; +"@MMK_R_KO_six" = -28; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_three" = -11; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -32; +"@MMK_R_KO_y" = -48; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = -23; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 8; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_five" = 5; +"@MMK_R_KO_four" = 10; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_n" = 1; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -81; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_quotedbl" = -92; +"@MMK_R_KO_quotedblleft" = -176; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteright" = -109; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -100; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -21; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = -28; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 53; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_period" = -28; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 5; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -24; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = -19; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = -27; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -32; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 53; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_period" = -27; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 5; +"@MMK_R_KO_quoteleft" = 2; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -24; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -10; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -15; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 31; +"@MMK_R_KO_imacron" = 31; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_period" = -1; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -9; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 1; +"@MMK_R_KO_underscore" = -1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_Y" = -22; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = -21; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 8; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_five" = 6; +"@MMK_R_KO_four" = 3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = -25; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -19; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -9; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -29; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -36; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 9; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -30; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -55; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteright" = -25; +"@MMK_R_KO_quoteright.ss01" = -28; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -30; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -6; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = -39; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -3; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 40; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -24; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -21; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -23; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -22; +"@MMK_R_KO_quoteright" = -25; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = -19; +"@MMK_R_KO_sixsuperior" = -23; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_trademark" = -38; +"@MMK_R_KO_u" = -19; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = -19; +"@MMK_R_KO_H" = -16; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = -23; +"@MMK_R_KO_V" = -46; +"@MMK_R_KO_W" = -49; +"@MMK_R_KO_Y" = -73; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asterisk" = -44; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eight" = -20; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_five" = -22; +"@MMK_R_KO_four" = -29; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -95; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -39; +"@MMK_R_KO_hyphen.case" = -44; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -32; +"@MMK_R_KO_parenright" = -81; +"@MMK_R_KO_parenright.case" = -84; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_quotedbl" = -47; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteright" = -65; +"@MMK_R_KO_quoteright.ss01" = -50; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_seven" = -34; +"@MMK_R_KO_six" = -32; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = -21; +"@MMK_R_KO_three" = -21; +"@MMK_R_KO_two" = -14; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -38; +"@MMK_R_KO_H" = -16; +"@MMK_R_KO_I.ss02" = -63; +"@MMK_R_KO_J" = -58; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -35; +"@MMK_R_KO_T" = -74; +"@MMK_R_KO_U" = -14; +"@MMK_R_KO_V" = -59; +"@MMK_R_KO_W" = -40; +"@MMK_R_KO_Y" = -96; +"@MMK_R_KO_Z" = -60; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asterisk" = -119; +"@MMK_R_KO_colon" = -56; +"@MMK_R_KO_comma" = -76; +"@MMK_R_KO_comma.ss01" = -78; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eight" = -16; +"@MMK_R_KO_ellipsis" = -132; +"@MMK_R_KO_f" = -41; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -11; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = -95; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -6; +"@MMK_R_KO_i" = -17; +"@MMK_R_KO_j" = -17; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_nine" = -34; +"@MMK_R_KO_one" = -79; +"@MMK_R_KO_parenright" = -92; +"@MMK_R_KO_parenright.case" = -107; +"@MMK_R_KO_period" = -92; +"@MMK_R_KO_period.ss01" = -95; +"@MMK_R_KO_quotedbl" = -91; +"@MMK_R_KO_quotedblleft" = -85; +"@MMK_R_KO_quotedblleft.ss01" = -51; +"@MMK_R_KO_quoteright" = -50; +"@MMK_R_KO_quoteright.ss01" = -42; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_seven" = -84; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_slash" = -62; +"@MMK_R_KO_t" = -33; +"@MMK_R_KO_three" = -36; +"@MMK_R_KO_two" = -77; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -25; +"@MMK_R_KO_y" = -45; +"@MMK_R_KO_z" = -61; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = -147; +"@MMK_R_KO_colon" = -39; +"@MMK_R_KO_comma" = -38; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 8; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_five" = 5; +"@MMK_R_KO_four" = 10; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_n" = 1; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -81; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_period" = -39; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_quotedbl" = -161; +"@MMK_R_KO_quotedblleft" = -145; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteright" = -109; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -100; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -20; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -32; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = -29; +"@MMK_R_KO_asterisk" = -66; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_comma.ss01" = -101; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen.case" = 3; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright.case" = -81; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_period.ss01" = -102; +"@MMK_R_KO_quotedbl" = -28; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -41; +"@MMK_R_KO_three" = -37; +"@MMK_R_KO_two" = -34; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -10; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -15; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 4; +"@MMK_R_KO_imacron" = 27; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -44; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -5; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -7; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 1; +"@MMK_R_KO_underscore" = -1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 29; +"@MMK_R_KO_I.ss02" = 42; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 46; +"@MMK_R_KO_U" = 34; +"@MMK_R_KO_V" = 49; +"@MMK_R_KO_W" = 48; +"@MMK_R_KO_X" = 31; +"@MMK_R_KO_Y" = 49; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -15; +"@MMK_R_KO_bracketright" = 47; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = 23; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 33; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 32; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -1; +"@MMK_R_KO_i" = 22; +"@MMK_R_KO_icircumflex" = 46; +"@MMK_R_KO_imacron" = 62; +"@MMK_R_KO_j" = 26; +"@MMK_R_KO_l.ss04" = 50; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 18; +"@MMK_R_KO_onesuperior" = 11; +"@MMK_R_KO_parenright" = 30; +"@MMK_R_KO_period" = -1; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -5; +"@MMK_R_KO_quotedbl" = 42; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 27; +"@MMK_R_KO_quoteright.ss01" = 25; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 48; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = 16; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 19; +"@MMK_R_KO_trademark" = 5; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -9; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -18; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = -60; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_sevensuperior" = -79; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -54; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 27; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -4; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -21; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -15; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -21; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_period" = 6; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -26; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -21; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 175; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 82; +"@MMK_R_KO_eightsuperior" = 149; +"@MMK_R_KO_exclam" = 168; +"@MMK_R_KO_f" = 94; +"@MMK_R_KO_fivesuperior" = 142; +"@MMK_R_KO_foursuperior" = 84; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 168; +"@MMK_R_KO_j" = 151; +"@MMK_R_KO_l.ss04" = 172; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 153; +"@MMK_R_KO_onesuperior" = 166; +"@MMK_R_KO_parenright" = 146; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 127; +"@MMK_R_KO_question.ss01" = 72; +"@MMK_R_KO_quotedbl" = 185; +"@MMK_R_KO_quotedblleft" = 104; +"@MMK_R_KO_quotedblleft.ss01" = 72; +"@MMK_R_KO_quoteleft" = 112; +"@MMK_R_KO_sevensuperior" = 128; +"@MMK_R_KO_sixsuperior" = 143; +"@MMK_R_KO_slash" = 23; +"@MMK_R_KO_t" = 117; +"@MMK_R_KO_threesuperior" = 132; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_z" = 84; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -14; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -41; +"@MMK_R_KO_hyphen" = 4; +"@MMK_R_KO_icircumflex" = 1; +"@MMK_R_KO_imacron" = 1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -63; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -34; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -36; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -73; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -23; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -68; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -32; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -35; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -44; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -65; +"@MMK_R_KO_parenright" = -72; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = -38; +"@MMK_R_KO_question.ss01" = -43; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -73; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -72; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -23; +"@MMK_R_KO_v" = -13; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = -21; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_Y" = -29; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -24; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = -49; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -65; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = -32; +"@MMK_R_KO_question.ss01" = -31; +"@MMK_R_KO_quotedbl" = -34; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -25; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = -22; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -33; +"@MMK_R_KO_v" = -13; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -19; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_S" = -41; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_Y" = -22; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = -67; +"@MMK_R_KO_a.ss05" = -53; +"@MMK_R_KO_asterisk" = -37; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -73; +"@MMK_R_KO_egrave" = -40; +"@MMK_R_KO_eight" = -45; +"@MMK_R_KO_ellipsis" = -60; +"@MMK_R_KO_f" = -47; +"@MMK_R_KO_five" = -21; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -45; +"@MMK_R_KO_guillemetleft" = -93; +"@MMK_R_KO_guillemetright" = -80; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 31; +"@MMK_R_KO_n" = -63; +"@MMK_R_KO_nine" = -46; +"@MMK_R_KO_one" = -50; +"@MMK_R_KO_parenright" = 3; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -60; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -59; +"@MMK_R_KO_quotedblleft.ss01" = -47; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = -67; +"@MMK_R_KO_seven" = -15; +"@MMK_R_KO_six" = -55; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = -50; +"@MMK_R_KO_three" = -46; +"@MMK_R_KO_two" = -39; +"@MMK_R_KO_u" = -54; +"@MMK_R_KO_v" = -69; +"@MMK_R_KO_w" = -69; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -53; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = -16; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -22; +"@MMK_R_KO_O" = -75; +"@MMK_R_KO_S" = -58; +"@MMK_R_KO_T" = -30; +"@MMK_R_KO_U" = -23; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -31; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_Z" = -19; +"@MMK_R_KO_asterisk" = -65; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -29; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_eight" = -57; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_five" = -37; +"@MMK_R_KO_four" = -70; +"@MMK_R_KO_guillemetleft" = -105; +"@MMK_R_KO_guillemetright" = -85; +"@MMK_R_KO_hyphen.case" = -82; +"@MMK_R_KO_nine" = -69; +"@MMK_R_KO_one" = -74; +"@MMK_R_KO_parenright.case" = -10; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -81; +"@MMK_R_KO_quotedblleft.ss01" = -73; +"@MMK_R_KO_quoteright" = -53; +"@MMK_R_KO_quoteright.ss01" = -43; +"@MMK_R_KO_seven" = -35; +"@MMK_R_KO_six" = -76; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_three" = -58; +"@MMK_R_KO_two" = -30; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -27; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = -21; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -41; +"@MMK_R_KO_Y" = -82; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asterisk" = -105; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_five" = -17; +"@MMK_R_KO_four" = -24; +"@MMK_R_KO_g" = -21; +"@MMK_R_KO_guillemetleft" = -105; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_hyphen.case" = -105; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -23; +"@MMK_R_KO_one" = -81; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -105; +"@MMK_R_KO_quotedblleft" = -105; +"@MMK_R_KO_quoteright" = -105; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = -93; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_three" = -14; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_v" = -40; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_y" = -49; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -27; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -58; +"@MMK_R_KO_U" = -22; +"@MMK_R_KO_V" = -66; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_Y" = -95; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asterisk" = -102; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_eight" = -9; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -3; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -95; +"@MMK_R_KO_guillemetright" = -44; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_hyphen.case" = -101; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -94; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -102; +"@MMK_R_KO_quotedblleft.ss01" = -101; +"@MMK_R_KO_quoteright.ss01" = -101; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = -101; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -32; +"@MMK_R_KO_y" = -48; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -62; +"@MMK_R_KO_S" = -46; +"@MMK_R_KO_T" = -54; +"@MMK_R_KO_U" = -51; +"@MMK_R_KO_V" = -80; +"@MMK_R_KO_W" = -50; +"@MMK_R_KO_Y" = -94; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -36; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_e" = -52; +"@MMK_R_KO_eight" = -48; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = -48; +"@MMK_R_KO_four" = -82; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetright" = -101; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = 27; +"@MMK_R_KO_nine" = -56; +"@MMK_R_KO_one" = -74; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_quotedbl" = -92; +"@MMK_R_KO_quotedblleft" = -83; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_s" = -40; +"@MMK_R_KO_seven" = -77; +"@MMK_R_KO_six" = -61; +"@MMK_R_KO_t" = -44; +"@MMK_R_KO_three" = -48; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_v" = -51; +"@MMK_R_KO_w" = -38; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -52; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_comma.ss01" = -101; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = -196; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -67; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -154; +"@MMK_R_KO_hyphen.case" = -26; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_period.ss01" = -102; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_slash" = -93; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = -4; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -40; +"@MMK_R_KO_S" = -24; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = -32; +"@MMK_R_KO_V" = -76; +"@MMK_R_KO_W" = -48; +"@MMK_R_KO_Y" = -89; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asterisk" = -109; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eight" = -24; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_five" = -26; +"@MMK_R_KO_four" = -37; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = -109; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -72; +"@MMK_R_KO_hyphen.case" = -109; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_nine" = -32; +"@MMK_R_KO_one" = -89; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedblleft" = -229; +"@MMK_R_KO_quoteright" = -109; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_seven" = -98; +"@MMK_R_KO_six" = -40; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -32; +"@MMK_R_KO_three" = -24; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -36; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -25; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_U" = -21; +"@MMK_R_KO_V" = -65; +"@MMK_R_KO_W" = -43; +"@MMK_R_KO_Y" = -95; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asterisk" = -101; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eight" = -9; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -3; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -94; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_hyphen.case" = -101; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_j" = 24; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -94; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -101; +"@MMK_R_KO_quoteright.ss01" = -101; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_seven" = -101; +"@MMK_R_KO_six" = -26; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -31; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -25; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asterisk" = -12; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eight" = -7; +"@MMK_R_KO_ellipsis" = -229; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -42; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -84; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -74; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -14; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -34; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma.ss01" = -101; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -33; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period.ss01" = -102; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -5; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -5; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -56; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = -43; +"@MMK_R_KO_a.ss05" = -49; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -10; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_egrave" = -26; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -229; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -80; +"@MMK_R_KO_g" = -41; +"@MMK_R_KO_guillemetleft" = -88; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -150; +"@MMK_R_KO_hyphen.case" = -46; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -96; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_three" = -3; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -8; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = -26; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_Y" = 6; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asterisk" = -12; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eight" = -7; +"@MMK_R_KO_ellipsis" = -109; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -43; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -100; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -74; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -14; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -57; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = -10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = -7; +"@MMK_R_KO_a" = -44; +"@MMK_R_KO_a.ss05" = -51; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -11; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_e" = -56; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_ellipsis" = -109; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -42; +"@MMK_R_KO_guillemetleft" = -89; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -109; +"@MMK_R_KO_hyphen.case" = -47; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period" = -105; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_slash" = -97; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_three" = -4; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -44; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -33; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_comma.ss01" = -101; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -50; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = -79; +"@MMK_R_KO_hyphen.case" = -12; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -14; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period.ss01" = -102; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -85; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -51; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -92; +"@MMK_R_KO_comma.ss01" = -92; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -23; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = -92; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -67; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -92; +"@MMK_R_KO_hyphen.case" = -24; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = -92; +"@MMK_R_KO_period.ss01" = -92; +"@MMK_R_KO_quotedbl" = 9; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_slash" = -89; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = -4; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -27; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -18; +"@MMK_R_KO_J" = -30; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = -37; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = -24; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -2; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = -51; +"@MMK_R_KO_comma.ss01" = -59; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 18; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_period" = -51; +"@MMK_R_KO_period.ss01" = -60; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -62; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = 12; +"@MMK_R_KO_trademark" = -41; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -48; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = -66; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = -72; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -73; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -43; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -42; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -80; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -27; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -71; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -28; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -39; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -42; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -32; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -45; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 7; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -13; +"@MMK_R_KO_comma" = -75; +"@MMK_R_KO_comma.ss01" = -88; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -87; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -55; +"@MMK_R_KO_g" = -35; +"@MMK_R_KO_guillemetleft" = -78; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = -47; +"@MMK_R_KO_hyphen.case" = -25; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = -76; +"@MMK_R_KO_period.ss01" = -90; +"@MMK_R_KO_quotedbl" = 3; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -31; +"@MMK_R_KO_seven" = 3; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_slash" = -76; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_three" = -5; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = -13; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eight" = 12; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 3; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -8; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_parenright.case" = -69; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -8; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -22; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_Y" = 2; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -30; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -19; +"@MMK_R_KO_comma" = -88; +"@MMK_R_KO_comma.ss01" = -89; +"@MMK_R_KO_e" = -39; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_ellipsis" = -91; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -47; +"@MMK_R_KO_g" = -32; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -44; +"@MMK_R_KO_hyphen.case" = -28; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = -26; +"@MMK_R_KO_nine" = -3; +"@MMK_R_KO_one" = -3; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = -14; +"@MMK_R_KO_period" = -89; +"@MMK_R_KO_period.ss01" = -89; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 8; +"@MMK_R_KO_s" = -30; +"@MMK_R_KO_seven" = 9; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_slash" = -98; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = -9; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -6; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 9; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -35; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -4; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asterisk" = -11; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eight" = 12; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -64; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 2; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -7; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -5; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -20; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = -33; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 7; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -33; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = -33; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = -22; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asciicircum" = -8; +"@MMK_R_KO_bracketright" = -57; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = -40; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -45; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = -55; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_sevensuperior" = -73; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -48; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -49; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -28; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -12; +"@MMK_R_KO_J" = -21; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -13; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = -31; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asciicircum" = -6; +"@MMK_R_KO_bracketright" = -70; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -29; +"@MMK_R_KO_comma.ss01" = -34; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_period" = -29; +"@MMK_R_KO_period.ss01" = -34; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -71; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -37; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -33; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -6; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -57; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -26; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -59; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = -77; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -37; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -71; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -4; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 5; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asterisk" = -16; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = -13; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eight" = 6; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_five" = 10; +"@MMK_R_KO_four" = 2; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = 8; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = -4; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_parenright.case" = -76; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -20; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -3; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_slash" = -27; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -12; +Tbar = -35; +asciitilde = -39; +asterisk = -69; +backslash = -58; +g.ss06 = 0; +minus = -32; +one = -40; +ordmasculine = -56; +plus = -32; +quotedbl = -62; +registered = -47; +seven = -43; +two = 0; +twosuperior = -39; +}; +Aacute = { +Tbar = -35; +}; +Abrevedotbelow.ss01 = { +T = -44; +}; +Aogonek = { +comma = 21; +parenright = 4; +}; +Atilde = { +ordfeminine = -54; +}; +B = { +Hbar = 20; +hbar = 8; +idieresis = 39; +itilde = 36; +}; +C = { +h = 4; +l = 4; +plus = -14; +three = 4; +}; +D = { +Lslash = 11; +Oslash = 11; +braceright = -49; +bracketright.case = -32; +}; +E = { +H = 0; +idieresis = 60; +}; +Eogonek = { +comma = 16; +}; +F = { +fourinferior = -56; +i = 0; +igrave = 35; +}; +G = { +Lslash = 10; +lslash = 6; +}; +Germandbls = { +S = 0; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = 0; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 22; +itilde = 63; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 19; +D = 20; +E = 19; +H = 19; +Hbar = 52; +I = 19; +L = 19; +M = 20; +O = 23; +R = 19; +S = 29; +U = 24; +W = 25; +i = 21; +}; +I = { +Hbar = 19; +I = 0; +jcircumflex = 48; +}; +Icircumflex = { +Icircumflex = 63; +l.ss04 = 21; +}; +Imacron = { +Imacron = 71; +}; +Itilde = { +itilde = 63; +}; +J = { +Hbar = 22; +itilde = 66; +}; +Jacute = { +Imacron = 56; +}; +K = { +asciitilde = -58; +four = -23; +idieresis = 71; +igrave = 38; +itilde = 53; +less = -42; +logicalnot = -38; +minus = -49; +one = -23; +oslash = -24; +plus = -49; +}; +L = { +H = 0; +Tbar = -45; +asciitilde = -97; +asterisk = -84; +backslash = -64; +equal = -6; +four = 0; +less = -86; +logicalnot = -79; +minus = -87; +one = -74; +ordfeminine = -85; +ordmasculine = -84; +oslash = -10; +plus = -87; +quotedbl = -81; +quoteleft.ss01 = -82; +quoteright = -77; +quoteright.ss01 = -80; +registered = -88; +seven = -77; +twosuperior = -84; +}; +Lcaron = { +A = 12; +O = 17; +U = 60; +Uacute = 60; +V = 43; +a = -4; +hyphen = -11; +hyphen.case = -76; +u = 0; +v = -15; +}; +Lcommaaccent = { +twosuperior = -84; +}; +Lslash = { +twosuperior = -52; +}; +M = { +Hbar = 19; +idieresis = 62; +igrave = 22; +itilde = 63; +}; +N = { +Hbar = 19; +idieresis = 62; +igrave = 22; +itilde = 63; +}; +O = { +Dcroat = 8; +Lslash = 10; +braceright = -43; +bracketright.case = -22; +itilde = 23; +}; +Oslash = { +T = -11; +V = -13; +Y = -17; +parenright = -17; +parenright.case = -24; +}; +P = { +fourinferior = -71; +idieresis = 30; +itilde = 23; +two = 0; +}; +R = { +Hbar = 30; +jcircumflex = 45; +two = 11; +}; +S = { +Hbar = 25; +Lslash = 8; +dollar = 3; +four = 0; +idieresis = 41; +itilde = 41; +lslash = 5; +three = 6; +}; +T = { +Oslash = -3; +a.ss05 = -46; +aacute.ss05 = -46; +abreve = -34; +abreveacute = -34; +acircumflex = -27; +acircumflexacute = -30; +acircumflexdotbelow = -25; +adieresis = -17; +adotbelow.ss05 = -46; +ae = -47; +agrave = -35; +amacron = -33; +ampersand = -24; +aring = -37; +asciitilde = -70; +atilde = -17; +equal = -6; +four = -50; +g.ss06 = -41; +h = 0; +i.ss01 = 0; +iacute = -13; +idieresis = 79; +idotless = -20; +igrave = 35; +itilde = 80; +less = -56; +logicalnot = -48; +minus = -60; +ograve = -32; +plus = -60; +racute = -16; +scaron = -12; +seven = 0; +twoinferior = -61; +udieresis = -9; +udieresis.ss01 = -9; +ugrave = -13; +uhorngrave = -13; +umacron = -13; +ycircumflex = -17; +ygrave = -19; +yhookabove = -20; +zcaron = -11; +zeroinferior = -54; +}; +Tbar = { +A = -33; +Aacute = -33; +Tbar = 5; +a = -17; +comma = -50; +e = -15; +o = -15; +period = -51; +slash = -49; +}; +Tcaron = { +a.ss05 = -46; +}; +Tcedilla = { +a.ss05 = -46; +abreve = -34; +four = -50; +}; +Tcommaaccent = { +a.ss05 = -46; +abreve = -34; +four = -50; +}; +Thorn = { +A = -18; +AE = -18; +Aacute = -18; +J = -28; +O = 10; +Oacute = 10; +V = -24; +Y = -50; +Yacute = -50; +a = 0; +aacute = 0; +e = 0; +o = 0; +oacute = 0; +period = -44; +}; +U = { +Hbar = 23; +jcircumflex = 52; +}; +V = { +four = -29; +iacute = -13; +ibreve = 43; +idieresis = 76; +igrave = 38; +itilde = 69; +minus = -28; +plus = -28; +scaron = -4; +seven = 4; +twoinferior = -37; +}; +W = { +Hbar = 25; +backslash = 8; +idieresis = 77; +igrave = 38; +itilde = 71; +}; +X = { +asciitilde = -68; +four = -28; +less = -45; +logicalnot = -43; +minus = -53; +notequal = -27; +one = -19; +plus = -52; +}; +Y = { +a.ss05 = -64; +agrave = -41; +amacron = -40; +ampersand = -43; +asciitilde = -89; +at = -48; +four = -80; +g.ss06 = -57; +igrave = 35; +less = -54; +logicalnot = -53; +minus = -65; +ograve = -36; +plus = -64; +scaron = -12; +twoinferior = -88; +}; +Z = { +four = -4; +ibreve = 37; +igrave = 31; +itilde = 63; +minus = -49; +plus = -49; +}; +_B.currency = { +_baht.bar = -27; +}; +a = { +braceright = -45; +}; +a.ss05 = { +g.ss06 = 2; +}; +acircumflexacute.ss05 = { +y = -34; +}; +adieresis.ss05 = { +germandbls = -22; +}; +ampersand = { +V = -46; +W = -33; +Y = -86; +quotedbl = -65; +quotedblleft = -69; +}; +aogonek = { +j = 22; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 4; +}; +approxequal = { +parenright = -71; +parenright.case = -82; +}; +asciicircum = { +J = -44; +X = -60; +Y = -51; +bracketright = -82; +comma = -109; +comma.ss01 = -101; +four = -58; +hyphen = -174; +parenright = -76; +parenright.case = -88; +period = -105; +period.ss01 = -102; +slash = -87; +}; +asciitilde = { +I.ss02 = -47; +J = -42; +V = -31; +W = -21; +X = -64; +Y = -64; +Z = -67; +bracketright = -80; +bracketright.case = -86; +comma = -109; +comma.ss01 = -101; +eight = -24; +exclam = -16; +four = -18; +one = -5; +parenright = -78; +parenright.case = -91; +period = -105; +period.ss01 = -102; +question = -98; +quotedbl = -43; +quotedblright = 0; +seven = -8; +slash = -64; +three = -65; +two = -51; +}; +at = { +T = -31; +parenright = -71; +}; +b = { +asterisk = -65; +braceright = -47; +lslash = 6; +one = -19; +}; +backslash = { +T = -50; +V = -72; +Y = -87; +asterisk = -97; +backslash = -102; +quotedbl = -96; +quotedblleft = -84; +quotedblleft.ss01 = -72; +quotedblright = -55; +quotedblright.ss01 = -62; +quoteleft = -84; +quoteright = -55; +quotesingle = -91; +}; +baht = { +parenright = -57; +}; +braceleft = { +p = -2; +}; +bracketleft = { +asciicircum = -77; +asciitilde = -88; +bracketright = 7; +jcircumflex = 44; +p = -6; +pi = -70; +plus = -79; +x = -70; +}; +c = { +asterisk = -76; +braceright = -58; +}; +cent = { +parenright = -65; +}; +colon = { +T = -33; +Y = -41; +four = -16; +one = 0; +parenright = -45; +two = 7; +zero = 15; +}; +colon.ss01 = { +T = -25; +four = -2; +parenright = -54; +}; +comma = { +eightsuperior = -109; +fivesuperior = -109; +foursuperior = -109; +ninesuperior = -109; +onesuperior = -109; +quoteleft = -109; +quotesingle = -92; +sevensuperior = -109; +sixsuperior = -109; +threesuperior = -109; +twosuperior = -109; +}; +comma.ss01 = { +eightsuperior = -101; +fivesuperior = -101; +foursuperior = -101; +ninesuperior = -101; +onesuperior = -101; +sevensuperior = -101; +sixsuperior = -101; +threesuperior = -101; +twosuperior = -101; +}; +copyright = { +Y = -87; +parenright = -84; +}; +d = { +idieresis = 60; +igrave = 13; +itilde = 49; +}; +dcaron = { +C = 96; +H = 165; +bracketright = 172; +eightsuperior = 146; +exclam = 165; +exclam.ss01 = 169; +fivesuperior = 139; +foursuperior = 81; +h = 165; +i = 134; +j = 148; +k = 165; +l = 165; +l.ss03 = 161; +l.ss04 = 171; +ninesuperior = 150; +onesuperior = 163; +parenright = 143; +question = 124; +question.ss01 = 71; +quotedbl = 147; +quotedblleft = 101; +quotedblleft.ss01 = 71; +quoteleft = 109; +quoteleft.ss01 = 71; +quotesingle = 182; +sevensuperior = 126; +sixsuperior = 140; +t = 114; +t_i.liga = 114; +t_t.liga = 114; +threesuperior = 130; +twosuperior = 136; +zcaron = 83; +}; +dcroat = { +i = 0; +igrave = 26; +itilde = 60; +}; +degree = { +J = -44; +comma = -109; +comma.ss01 = -101; +emdash = -166; +endash = -166; +four = -67; +hyphen = -142; +parenright = -68; +parenright.case = -77; +period = -105; +period.ss01 = -102; +slash = -91; +}; +divide = { +parenright = -76; +}; +dollar = { +parenright = -56; +three = 0; +}; +e = { +asterisk = -80; +backslash = -45; +braceright = -57; +germandbls = -11; +one = -30; +seven = -38; +}; +ecircumflexacute = { +t = -2; +}; +eight = { +bracketright = -35; +degree = -15; +}; +eight.dnom = { +degree = -129; +question.ss01 = -81; +quotedbl = -102; +quotedblleft = -104; +quotedblright = -59; +}; +eightsuperior = { +comma = -109; +comma.ss01 = -101; +period = -105; +period.ss01 = -102; +slash = -68; +}; +ellipsis = { +Tbar = -53; +bracketright = -52; +eightsuperior = -144; +fivesuperior = -147; +foursuperior = -157; +ninesuperior = -152; +onesuperior = -114; +parenleft = -25; +parenleft.case = -48; +question = -77; +quoteleft = -109; +quoteright = -109; +quotesingle = -92; +sevensuperior = -149; +sixsuperior = -152; +threesuperior = -147; +twosuperior = -143; +}; +ellipsis.ss01 = { +Tbar = -58; +bracketright = -73; +eightsuperior = -144; +fivesuperior = -147; +foursuperior = -157; +ninesuperior = -152; +onesuperior = -114; +question.ss01 = -87; +quoteleft.ss01 = -101; +quoteright.ss01 = -101; +quotesingle = -92; +sevensuperior = -149; +sixsuperior = -152; +threesuperior = -147; +twosuperior = -143; +}; +emdash = { +foursuperior = -127; +question = -81; +}; +emdash.case = { +X = -39; +quotedblbase = -229; +quotedblbase.ss01 = -211; +}; +endash = { +X = -20; +endash = 0; +foursuperior = -127; +question = -81; +}; +endash.case = { +H = 1; +X = -39; +quotedblbase = -226; +quotedblbase.ss01 = -211; +}; +eng = { +bracketright = -8; +}; +eogonek = { +lslash = 4; +}; +equal = { +T = -14; +equal = 0; +parenright = -65; +parenright.case = -75; +}; +eth = { +a = 7; +e = 8; +g = 8; +hyphen = 9; +parenright = -28; +}; +euro = { +parenright = -58; +parenright.case = -72; +}; +exclamdown = { +T = -34; +V = -20; +Y = -44; +}; +f = { +igrave = 33; +n = 0; +o = 0; +}; +f_f.liga = { +igrave = 33; +}; +f_f_i.liga = { +idieresis = 61; +}; +fi = { +idieresis = 61; +}; +five = { +degree = -29; +ordmasculine = -23; +percent = -15; +}; +five.dnom = { +degree = -109; +question.ss01 = -81; +quotedblleft = -82; +}; +five.numr = { +fraction = -6; +}; +fiveinferior = { +T = -53; +}; +fivesuperior = { +comma = -109; +comma.ss01 = -101; +period = -105; +period.ss01 = -102; +slash = -72; +}; +fl = { +idieresis = 61; +itilde = 49; +periodcentered.loclCAT = 17; +}; +four = { +asciicircum = -45; +bracketright = -35; +bracketright.case = -33; +degree = -43; +ordfeminine = -39; +ordmasculine = -39; +percent = -27; +x = -20; +}; +four.dnom = { +degree = -115; +question.ss01 = -80; +quotedblleft = -82; +}; +fourinferior = { +T = -52; +V = -57; +}; +foursuperior = { +comma = -109; +comma.ss01 = -101; +period = -105; +period.ss01 = -102; +slash = -74; +}; +fraction = { +eight.dnom = -3; +four.dnom = -38; +fourinferior = -43; +seveninferior = 3; +two.dnom = -3; +zero.dnom = -7; +}; +g = { +bracketright = -12; +j = 14; +j.ss01 = 14; +parenright = -26; +slash = 0; +}; +g.ss06 = { +g.ss06 = 0; +}; +gcaron.ss06 = { +gcaron.ss06 = 0; +}; +gdotaccent = { +j = 14; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 0; +}; +germandbls = { +e = 0; +hyphen = 2; +parenright = -55; +}; +greater = { +T = -54; +parenright = -73; +}; +greaterequal = { +T = -30; +}; +guillemetleft = { +pi = -22; +}; +guillemetright = { +X = -72; +bracketright = -92; +}; +guilsinglright = { +X = -72; +}; +h = { +asterisk = -60; +}; +hyphen = { +Lslash = 14; +X = -20; +bracketright = -64; +foursuperior = -127; +pi = -7; +question = -81; +quotedblbase = -43; +quoteleft = -109; +quotesingle = -92; +x = -26; +}; +hyphen.case = { +Dcroat = 10; +X = -39; +bracketright.case = -75; +quotedblbase = -174; +quotedblbase.ss01 = -174; +quotesinglbase = -109; +}; +i = { +T = -2; +idieresis = 61; +jcircumflex = 38; +parenright = -24; +}; +i.ss01 = { +parenright = -21; +}; +iacute = { +rcaron = 25; +}; +icircumflex = { +b = 37; +h = 37; +i = 17; +icircumflex = 75; +j = 18; +k = 37; +l = 37; +l.ss03 = 41; +l.ss04 = 73; +question = 47; +quotedbl = 35; +quoteright = 39; +quotesingle = 53; +}; +idieresis = { +b = 46; +idieresis = 79; +k = 46; +l = 46; +l.ss03 = 50; +l.ss04 = 77; +}; +idotaccent = { +parenright = -24; +}; +idotaccent.ss01 = { +parenright = -21; +}; +imacron = { +b = 26; +imacron = 79; +j = 32; +k = 26; +kcommaaccent = 26; +l = 26; +l.ss04 = 69; +lcommaaccent = 26; +quotedbl = 36; +}; +infinity = { +parenright = -76; +parenright.case = -90; +}; +integral = { +a = -44; +}; +iogonek = { +j = 22; +}; +itilde = { +h = 44; +itilde = 64; +quotedbl = 57; +quotesingle = 73; +}; +j = { +j = 15; +}; +jacute = { +backslash = 51; +iogonek = 22; +}; +jcircumflex = { +i = 17; +jcircumflex = 78; +}; +k = { +oslash = -22; +}; +l = { +at = 0; +idieresis = 61; +igrave = 13; +itilde = 49; +jcircumflex = 45; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -16; +}; +l.ss04 = { +periodcentered.loclCAT = 17; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 172; +l = 168; +ncaron = 92; +scaron = 83; +twosuperior = 139; +}; +lcaron.ss03 = { +b = 143; +eightsuperior = 124; +exclam = 143; +exclam.ss01 = 147; +fivesuperior = 117; +k = 143; +ninesuperior = 128; +onesuperior = 141; +question = 102; +quotedbl = 129; +quotesingle = 160; +sevensuperior = 103; +sixsuperior = 118; +}; +lcaron.ss04 = { +exclam.ss01 = 172; +twosuperior = 139; +}; +liraTurkish = { +one = -92; +parenright = -78; +question = -90; +quotedbl = -122; +quotesingle = -92; +seven = -111; +}; +logicalnot = { +Y = -57; +parenright = -68; +seven = -59; +}; +m = { +asterisk = -59; +braceright = -44; +twosuperior = -10; +}; +minus = { +T = -58; +X = -55; +comma = -109; +one = -14; +parenright = -77; +parenright.case = -93; +period = -105; +seven = -19; +three = -88; +two = -79; +}; +mu = { +mu = -11; +parenright = -50; +quotesingle = -32; +}; +multiply = { +parenright = -76; +parenright.case = -88; +}; +n = { +asterisk = -59; +at = 2; +braceright = -45; +degree = -54; +g.ss06 = 2; +n = 0; +one = -17; +ordmasculine = -28; +}; +ncaron = { +Yacute = -22; +}; +nine = { +bracketright = -44; +degree = -19; +}; +nine.dnom = { +degree = -137; +question = -77; +question.ss01 = -83; +quotedbl = -106; +quotedblleft = -108; +quotedblleft.ss01 = -51; +quotedblright = -69; +quotedblright.ss01 = -44; +}; +ninesuperior = { +comma = -109; +comma.ss01 = -101; +fraction = -13; +period = -105; +period.ss01 = -102; +slash = -77; +}; +notequal = { +parenright = -70; +parenright.case = -82; +}; +numbersign = { +parenright = -54; +}; +o = { +asterisk = -82; +backslash = -46; +braceright = -56; +germandbls = -12; +lslash = 7; +n = 0; +one = -26; +}; +oacute = { +lslash = 7; +}; +ocircumflexacute = { +bracketright = 36; +parenright = 43; +}; +odieresis = { +germandbls = -12; +}; +ohorn = { +i = 14; +m = 14; +n = 14; +parenright = -39; +}; +ohornacute = { +c = 9; +i = 14; +m = 14; +n = 14; +p = 14; +t = 21; +t_i.liga = 21; +t_t.liga = 21; +}; +ohorndotbelow = { +c = 9; +i = 14; +n = 14; +p = 14; +t = 21; +t_i.liga = 21; +t_t.liga = 21; +u = 18; +}; +ohorngrave = { +i = 14; +n = 14; +parenright = -29; +}; +ohornhookabove = { +i = 14; +n = 14; +}; +ohorntilde = { +i = 14; +n = 14; +}; +ohungarumlaut = { +parenright = 47; +}; +one = { +comma.ss01 = -5; +degree = -11; +equal = 0; +four = 0; +icircumflex = 45; +nine = 0; +one = 0; +parenright = -8; +percent = 0; +period.ss01 = -7; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -105; +one.dnom = 0; +question.ss01 = -85; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -109; +comma.ss01 = -101; +period = -105; +period.ss01 = -102; +slash = -65; +}; +ordfeminine = { +comma = -109; +comma.ss01 = -101; +period = -105; +period.ss01 = -102; +}; +ordmasculine = { +comma = -109; +comma.ss01 = -101; +hyphen = -60; +parenright = -51; +period = -105; +period.ss01 = -102; +slash = -85; +}; +oslash = { +d = 6; +e = 5; +g = 4; +hyphen = 8; +parenright = -65; +y = -21; +}; +p = { +asterisk = -66; +backslash = -42; +braceright = -47; +lslash = 6; +one = -19; +}; +parenleft = { +Dcroat = -20; +H = 0; +Icircumflex = 33; +Oslash = -54; +ampersand = -63; +approxequal = -73; +asciicircum = -77; +asciitilde = -89; +at = -70; +cent = -65; +copyright = -73; +degree = -51; +divide = -76; +dollar = -47; +equal = -64; +euro = -63; +greaterequal = -27; +i = -20; +idotaccent = -20; +infinity = -72; +iogonek = -3; +jcircumflex = 36; +less = -72; +literSign = -59; +logicalnot = -67; +minus = -75; +mu = -29; +multiply = -80; +notequal = -70; +numbersign = -52; +oslash = -66; +p = -2; +parenleft = -57; +pi = -66; +plus = -75; +plusminus = -51; +published = -73; +question = -40; +quotedblbase = 0; +quoteleft = -59; +radical = -64; +scaron = -22; +section = -45; +sterling = -40; +x = -48; +}; +parenleft.case = { +Icircumflex = 13; +approxequal = -81; +asciicircum = -94; +asciitilde = -98; +dollar = -67; +equal = -74; +euro = -81; +minus = -92; +numbersign = -66; +parenleft.case = -73; +plus = -92; +question = -67; +quotedblbase = -39; +quoteleft = -80; +}; +parenright = { +bracketright = -16; +comma = -5; +comma.ss01 = -8; +hyphen = 4; +parenleft = 0; +parenright = -57; +period = -6; +period.ss01 = -12; +quotedbl = -30; +}; +parenright.case = { +comma = -12; +comma.ss01 = -17; +parenright.case = -73; +period = -12; +period.ss01 = -17; +}; +percent = { +asterisk = -108; +bracketright = -62; +comma.ss01 = -3; +eightsuperior = -84; +fivesuperior = -87; +foursuperior = -116; +ninesuperior = -86; +onesuperior = -90; +parenright = -66; +parenright.case = -69; +period = 0; +period.ss01 = -2; +question = -76; +question.ss01 = -81; +quotedbl = -95; +quotedblleft = -122; +quotedblright = -87; +quoteleft = -109; +quoteright = -88; +quotesingle = -92; +sevensuperior = -94; +sixsuperior = -93; +threesuperior = -83; +twosuperior = -44; +}; +period = { +bracketright = -40; +eightsuperior = -105; +fivesuperior = -105; +foursuperior = -105; +ninesuperior = -105; +onesuperior = -105; +ordfeminine = -105; +ordmasculine = -105; +parenleft.case = -44; +question = -73; +quoteleft = -105; +quotesingle = -92; +sevensuperior = -105; +sixsuperior = -105; +threesuperior = -105; +twosuperior = -105; +}; +period.ss01 = { +bracketright = -73; +eightsuperior = -102; +fivesuperior = -102; +foursuperior = -102; +ninesuperior = -102; +onesuperior = -102; +ordfeminine = -102; +ordmasculine = -102; +question.ss01 = -87; +sevensuperior = -102; +sixsuperior = -102; +threesuperior = -102; +twosuperior = -102; +}; +periodcentered.loclCAT = { +l = 17; +l.ss03 = 20; +}; +perthousand = { +asterisk = -147; +parenright = -66; +parenright.case = -72; +question = -76; +question.ss01 = -83; +quotedblleft = -122; +quotedblleft.ss01 = -114; +quotedblright = -99; +quotedblright.ss01 = -103; +quoteleft = -109; +quoteright = -102; +}; +pi = { +hyphen = -2; +parenright = -54; +period = 0; +pi = 3; +quotesingle = -15; +}; +plus = { +J = -43; +T = -58; +V = -33; +X = -55; +Y = -66; +braceright = -71; +bracketright = -81; +comma = -107; +comma.ss01 = -101; +one = -14; +parenright = -77; +parenright.case = -93; +period = -105; +period.ss01 = -102; +quotedbl = -42; +seven = -19; +slash = -53; +three = -78; +two = -72; +}; +published = { +parenright = -84; +}; +q = { +bracketright = -4; +j = 19; +parenright = -5; +}; +question = { +A = -39; +J = -32; +comma = -69; +hyphen = -34; +parenright = -49; +parenright.case = -62; +period = -68; +question = 0; +questiondown = -65; +slash = -68; +}; +question.ss01 = { +comma.ss01 = -87; +parenright = -51; +parenright.case = -61; +period.ss01 = -88; +questiondown.ss01 = -76; +}; +questiondown.case = { +T = -51; +V = -53; +Y = -83; +quotedbl = -81; +quotedblleft = -90; +quotedblleft.ss01 = -82; +quoteright = -80; +}; +questiondown.ss01 = { +C = -61; +Q = -64; +Q.ss09 = -64; +T = -69; +V = -83; +Y = -101; +four = -87; +quotedbl = -103; +quotedblleft.ss01 = -86; +quotesingle = -92; +}; +quotedbl = { +ellipsis.ss01 = -196; +exclamdown = -18; +g.ss06 = -27; +icircumflex = 39; +mu = -20; +questiondown = -90; +questiondown.case = -75; +questiondown.ss01 = -98; +underscore = -196; +}; +quotedblbase = { +copyright = -118; +divide = -138; +equal = -76; +euro = -71; +minus = -229; +p = -3; +plus = -136; +question = -77; +quotedblright = -229; +quoteleft = -109; +}; +quotedblbase.ss01 = { +divide = -122; +minus = -211; +plus = -116; +question.ss01 = -86; +quotedblright.ss01 = -211; +}; +quotedblleft = { +g.ss06 = -2; +mu = -8; +questiondown = -80; +questiondown.case = -69; +quotedblbase = -229; +underscore = -199; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -211; +questiondown.ss01 = -87; +quotedblbase.ss01 = -211; +underscore = -199; +}; +quotedblright = { +asciitilde = -148; +questiondown = -96; +questiondown.case = -80; +quotesinglbase = -109; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -211; +questiondown.case = -72; +questiondown.ss01 = -92; +}; +quoteleft = { +questiondown = -80; +questiondown.case = -70; +quotedblbase = -109; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -101; +}; +quoteright = { +icircumflex = 61; +questiondown = -96; +quotedblbase = -109; +}; +quoteright.ss01 = { +questiondown.ss01 = -92; +quotedblbase.ss01 = -101; +}; +quotesinglbase = { +T = -56; +V = -76; +Y = -89; +minus = -109; +plus = -109; +question = -77; +quotedblleft = -109; +quoteleft = -109; +}; +quotesinglbase.ss01 = { +T = -57; +V = -65; +Y = -95; +question.ss01 = -86; +}; +quotesingle = { +Hbar = 28; +g.ss06 = -27; +icircumflex = 59; +igrave = 33; +imacron = 42; +itilde = 80; +l.ss04 = 26; +questiondown = -90; +questiondown.case = -73; +underscore = -92; +}; +r = { +braceright = -52; +fourinferior = -60; +g.ss06 = 0; +parenright = -68; +}; +radical = { +A = -54; +}; +rcaron = { +sevensuperior = 29; +}; +registered = { +comma = -109; +comma.ss01 = -101; +parenright = -71; +parenright.case = -83; +period = -105; +period.ss01 = -102; +slash = -65; +}; +s = { +asterisk = -76; +braceright = -52; +l = 0; +}; +scaron = { +T = -17; +}; +semicolon = { +hyphen = -44; +}; +seven = { +minus = -44; +percent = 10; +plus = -44; +underscore = -71; +}; +seven.dnom = { +question.ss01 = -88; +}; +seven.numr = { +fraction = -26; +}; +seveninferior = { +parenright = -76; +}; +sevensuperior = { +A = -67; +comma = -109; +comma.ss01 = -101; +fraction = -32; +period = -105; +period.ss01 = -102; +slash = -99; +}; +six = { +bracketright = -35; +degree = -18; +}; +six.dnom = { +degree = -133; +question.ss01 = -82; +quotedbl = -102; +quotedblleft = -104; +quotedblleft.ss01 = -44; +quotedblright = -62; +}; +sixinferior = { +T = -53; +}; +sixsuperior = { +comma = -109; +comma.ss01 = -101; +period = -105; +period.ss01 = -102; +slash = -72; +}; +slash = { +fourinferior = -85; +g.ss06 = -31; +ibreve = 54; +l.ss04 = 31; +mu = -26; +quotedblbase = -90; +quotedblbase.ss01 = -89; +quotesinglbase = -90; +underscore = -103; +}; +sterling = { +two = 6; +}; +t_i.liga = { +idieresis = 61; +}; +tcaron = { +b = 133; +exclam = 133; +h = 133; +hyphen = -16; +i = 115; +j = 116; +k = 133; +parenright = 111; +quotedbl = 124; +quotedblleft = 69; +quotesingle = 150; +}; +tcedilla = { +parenright = 13; +}; +tenge = { +comma = -58; +comma.ss01 = -67; +period = -58; +period.ss01 = -69; +slash = -57; +}; +three = { +bracketright = -32; +}; +three.dnom = { +degree = -133; +question.ss01 = -82; +quotedbl = -102; +quotedblleft = -104; +quotedblright = -59; +}; +three.numr = { +fraction = -6; +}; +threeinferior = { +T = -52; +V = -49; +Y = -87; +}; +threesuperior = { +comma = -109; +comma.ss01 = -101; +fraction = -4; +parenright = -37; +period = -105; +period.ss01 = -102; +slash = -70; +}; +trademark = { +comma = -109; +comma.ss01 = -101; +hyphen = -164; +period = -105; +period.ss01 = -102; +slash = -89; +}; +two = { +percent = 6; +}; +two.dnom = { +degree = -129; +question.ss01 = -83; +quotedbl = -100; +quotedblleft = -102; +quotedblright = -57; +}; +twoinferior = { +T = -53; +V = -48; +Y = -88; +}; +twosuperior = { +comma = -109; +comma.ss01 = -101; +parenright = -35; +parenright.case = -40; +period = -105; +period.ss01 = -102; +slash = -61; +}; +uhorn = { +a = -19; +ohorn = -26; +ohornacute = -26; +ohorndotbelow = -26; +ohorndotbelow.ss01 = -26; +ohorngrave = -26; +ohornhookabove = -26; +ohorntilde = -24; +}; +uhornacute = { +a = -19; +c = -25; +}; +uhorndotbelow = { +a = -19; +c = -25; +comma = -29; +period = -29; +}; +uhorngrave = { +a = -19; +a.ss05 = -22; +}; +uhornhookabove = { +a = -19; +comma = -29; +comma.ss01 = -36; +period = -29; +period.ss01 = -37; +}; +uhorntilde = { +a = -19; +comma = -29; +period = -29; +}; +uhungarumlaut = { +parenright = 37; +}; +underscore = { +C = -65; +O = -68; +T = -47; +V = -70; +W = -46; +Y = -83; +asterisk = -147; +four = -151; +one = -82; +quotedbl = -196; +quotedblright = -199; +quotedblright.ss01 = -199; +quotesingle = -92; +seven = -95; +six = -69; +v = -48; +}; +uogonek = { +j = 23; +parenright = 0; +}; +v = { +braceright = -60; +n = 0; +}; +w = { +braceright = -56; +}; +x = { +four = -25; +}; +y = { +braceright = -43; +}; +ydotbelow = { +period = -26; +}; +zero = { +braceright = -46; +bracketright = -46; +bracketright.case = -23; +degree = -21; +percent = -2; +}; +zero.dnom = { +degree = -138; +question = -77; +question.ss01 = -83; +quotedbl = -105; +quotedblleft = -108; +quotedblleft.ss01 = -51; +quotedblright = -68; +quotedblright.ss01 = -44; +quoteleft = -109; +}; +zeroinferior = { +parenright = -63; +}; +zerosuperior = { +comma = -109; +comma.ss01 = -101; +fraction = -13; +period = -105; +period.ss01 = -102; +slash = -77; +}; +}; +"095FE76F-1953-440B-9108-AA0678D151F9" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 41; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 46; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = -39; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -111; +"@MMK_R_KO_U" = -33; +"@MMK_R_KO_V" = -124; +"@MMK_R_KO_W" = -63; +"@MMK_R_KO_X" = 40; +"@MMK_R_KO_Y" = -123; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -144; +"@MMK_R_KO_bracketright" = -36; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = -85; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_fivesuperior" = -90; +"@MMK_R_KO_foursuperior" = -77; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -46; +"@MMK_R_KO_hyphen.case" = -66; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -87; +"@MMK_R_KO_onesuperior" = -94; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 19; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -73; +"@MMK_R_KO_question.ss01" = -90; +"@MMK_R_KO_quotedbl" = -83; +"@MMK_R_KO_quotedblleft" = -100; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -87; +"@MMK_R_KO_quoteright" = -87; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -97; +"@MMK_R_KO_six" = -39; +"@MMK_R_KO_sixsuperior" = -101; +"@MMK_R_KO_slash" = 38; +"@MMK_R_KO_t" = -36; +"@MMK_R_KO_threesuperior" = -80; +"@MMK_R_KO_trademark" = -145; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_underscore" = 40; +"@MMK_R_KO_v" = -64; +"@MMK_R_KO_w" = -45; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = -40; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asciicircum" = -59; +"@MMK_R_KO_bracketright" = -64; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_hyphen.case" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 51; +"@MMK_R_KO_imacron" = 51; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -59; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 28; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asciicircum" = -43; +"@MMK_R_KO_bracketright" = -69; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -37; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 22; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 13; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -32; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -71; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -9; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 18; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -52; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -20; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -65; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -20; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = -20; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 20; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 14; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = 16; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 26; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -87; +"@MMK_R_KO_parenright.case" = -52; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_s" = 16; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -60; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -20; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -65; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -20; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = -20; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 20; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 14; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = 16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -87; +"@MMK_R_KO_parenright.case" = -52; +"@MMK_R_KO_period" = -21; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_y" = 0; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 29; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 26; +"@MMK_R_KO_X" = 38; +"@MMK_R_KO_Y" = 13; +"@MMK_R_KO_Z" = 43; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = -4; +"@MMK_R_KO_asciicircum" = -65; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 21; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -28; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_hyphen.case" = -20; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 20; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 21; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -3; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -29; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -55; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = -101; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = -14; +"@MMK_R_KO_colon" = -58; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -273; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -25; +"@MMK_R_KO_hyphen.case" = -11; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -3; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -25; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -70; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -20; +"@MMK_R_KO_underscore" = -220; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -25; +"@MMK_R_KO_x" = -57; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = -63; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -57; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = -17; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = -75; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -7; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = 16; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 29; +"@MMK_R_KO_imacron" = 33; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -84; +"@MMK_R_KO_parenright.case" = -40; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -41; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -65; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 20; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -56; +"@MMK_R_KO_bracketright" = -45; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -8; +"@MMK_R_KO_hyphen.case" = -10; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 42; +"@MMK_R_KO_imacron" = 52; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -16; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -21; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -17; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 16; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -58; +"@MMK_R_KO_bracketright" = -14; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 34; +"@MMK_R_KO_imacron" = 56; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 19; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = 2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -33; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 45; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 51; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 47; +"@MMK_R_KO_W" = 46; +"@MMK_R_KO_X" = 43; +"@MMK_R_KO_Y" = 45; +"@MMK_R_KO_Z" = 46; +"@MMK_R_KO_a" = -42; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asciicircum" = -74; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_egrave" = -29; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -48; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -88; +"@MMK_R_KO_hyphen.case" = -89; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 23; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = 23; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 46; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -67; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = -44; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -54; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_hyphen.case" = -21; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 64; +"@MMK_R_KO_j" = 9; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 14; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = -4; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -30; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 36; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 53; +"@MMK_R_KO_J" = 44; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 21; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_X" = 39; +"@MMK_R_KO_Y" = 28; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = -43; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = -79; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 20; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -42; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -46; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -57; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -76; +"@MMK_R_KO_hyphen.case" = -103; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 38; +"@MMK_R_KO_imacron" = 61; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_l.ss04" = 48; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 14; +"@MMK_R_KO_period" = 20; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 51; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -10; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_underscore" = 28; +"@MMK_R_KO_v" = -50; +"@MMK_R_KO_w" = -44; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 14; +"@MMK_R_KO_O" = -68; +"@MMK_R_KO_S" = -35; +"@MMK_R_KO_T" = -113; +"@MMK_R_KO_U" = -54; +"@MMK_R_KO_V" = -124; +"@MMK_R_KO_W" = -65; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -120; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = -260; +"@MMK_R_KO_bracketright" = -60; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 30; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -50; +"@MMK_R_KO_eightsuperior" = -205; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -43; +"@MMK_R_KO_fivesuperior" = -198; +"@MMK_R_KO_foursuperior" = -195; +"@MMK_R_KO_g" = -17; +"@MMK_R_KO_guillemetleft" = -69; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = -188; +"@MMK_R_KO_hyphen.case" = -189; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_icircumflex" = -9; +"@MMK_R_KO_imacron" = -9; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = -9; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_ninesuperior" = -208; +"@MMK_R_KO_onesuperior" = -120; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 30; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -77; +"@MMK_R_KO_question.ss01" = -108; +"@MMK_R_KO_quotedbl" = -83; +"@MMK_R_KO_quotedblleft" = -151; +"@MMK_R_KO_quotedblleft.ss01" = -141; +"@MMK_R_KO_quoteleft" = -87; +"@MMK_R_KO_quoteright" = -151; +"@MMK_R_KO_quoteright.ss01" = -141; +"@MMK_R_KO_s" = -23; +"@MMK_R_KO_sevensuperior" = -173; +"@MMK_R_KO_six" = -62; +"@MMK_R_KO_sixsuperior" = -208; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_t" = -52; +"@MMK_R_KO_threesuperior" = -193; +"@MMK_R_KO_trademark" = -229; +"@MMK_R_KO_u" = -41; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -83; +"@MMK_R_KO_w" = -64; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = -52; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 14; +"@MMK_R_KO_O" = -58; +"@MMK_R_KO_S" = -35; +"@MMK_R_KO_T" = -113; +"@MMK_R_KO_U" = -47; +"@MMK_R_KO_V" = -124; +"@MMK_R_KO_W" = -65; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -120; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = -42; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_bracketright" = -56; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 30; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -43; +"@MMK_R_KO_egrave" = -43; +"@MMK_R_KO_eightsuperior" = -104; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = -112; +"@MMK_R_KO_foursuperior" = -95; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -99; +"@MMK_R_KO_hyphen.case" = -89; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_ninesuperior" = -110; +"@MMK_R_KO_onesuperior" = -120; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 30; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -77; +"@MMK_R_KO_question.ss01" = -104; +"@MMK_R_KO_quotedbl" = -83; +"@MMK_R_KO_quotedblleft" = -142; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -87; +"@MMK_R_KO_quoteright" = -87; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = -163; +"@MMK_R_KO_sixsuperior" = -131; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_threesuperior" = -99; +"@MMK_R_KO_u" = -32; +"@MMK_R_KO_y" = -49; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -19; +"@MMK_R_KO_J" = -24; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -63; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -19; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = -18; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_asciicircum" = -56; +"@MMK_R_KO_bracketright" = -77; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -56; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 25; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -88; +"@MMK_R_KO_parenright.case" = -50; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -35; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -62; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -19; +"@MMK_R_KO_J" = -24; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -63; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = -18; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 19; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -56; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -88; +"@MMK_R_KO_parenright.case" = -50; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -35; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -62; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_bracketright" = -21; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_ellipsis" = -56; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_parenright.case" = -8; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -16; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -47; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -31; +"@MMK_R_KO_J" = -106; +"@MMK_R_KO_O" = 29; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -29; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -11; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -46; +"@MMK_R_KO_Y" = -26; +"@MMK_R_KO_Z" = -38; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -49; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 13; +"@MMK_R_KO_ellipsis" = -266; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = 4; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 16; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 56; +"@MMK_R_KO_imacron" = 59; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 7; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -50; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 15; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -12; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -55; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = 4; +"@MMK_R_KO_trademark" = -36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -221; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = 21; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -81; +"@MMK_R_KO_U" = -17; +"@MMK_R_KO_V" = -59; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = 36; +"@MMK_R_KO_Y" = -83; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -79; +"@MMK_R_KO_bracketright" = -42; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 33; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = -28; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 13; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -52; +"@MMK_R_KO_parenright" = -28; +"@MMK_R_KO_parenright.case" = 7; +"@MMK_R_KO_period" = 29; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -25; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = -37; +"@MMK_R_KO_quotedblleft" = -46; +"@MMK_R_KO_quotedblleft.ss01" = -50; +"@MMK_R_KO_quoteleft" = -46; +"@MMK_R_KO_quoteright" = -35; +"@MMK_R_KO_quoteright.ss01" = -42; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -56; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_sixsuperior" = -40; +"@MMK_R_KO_slash" = 51; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_trademark" = -94; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -14; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = -27; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -34; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -22; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 17; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -21; +"@MMK_R_KO_i" = 15; +"@MMK_R_KO_icircumflex" = 44; +"@MMK_R_KO_imacron" = 52; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = 15; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -17; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = 5; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = 16; +"@MMK_R_KO_threesuperior" = -3; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = 9; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 19; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -52; +"@MMK_R_KO_bracketright" = -65; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_hyphen.case" = -27; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 54; +"@MMK_R_KO_imacron" = 53; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -56; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -35; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_hyphen.case" = -27; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 54; +"@MMK_R_KO_imacron" = 53; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -33; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -103; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = -96; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 53; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = 10; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -115; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_asciicircum" = -72; +"@MMK_R_KO_bracketright" = -13; +"@MMK_R_KO_colon" = -72; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -121; +"@MMK_R_KO_egrave" = -55; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -149; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -30; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -45; +"@MMK_R_KO_g" = -114; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -78; +"@MMK_R_KO_hyphen" = -115; +"@MMK_R_KO_hyphen.case" = -115; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = -117; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -108; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = -87; +"@MMK_R_KO_t" = -35; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -2; +"@MMK_R_KO_u" = -114; +"@MMK_R_KO_underscore" = -94; +"@MMK_R_KO_v" = -115; +"@MMK_R_KO_w" = -116; +"@MMK_R_KO_x" = -112; +"@MMK_R_KO_y" = -105; +"@MMK_R_KO_z" = -108; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = -23; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_imacron" = 67; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = 3; +"@MMK_R_KO_trademark" = -27; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = -23; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 6; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_j" = 10; +"@MMK_R_KO_l.ss04" = 29; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = 3; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 16; +"@MMK_R_KO_I.ss02" = 60; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_T" = 64; +"@MMK_R_KO_U" = 28; +"@MMK_R_KO_V" = 56; +"@MMK_R_KO_X" = 15; +"@MMK_R_KO_Y" = 54; +"@MMK_R_KO_Z" = 45; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_bracketright" = 53; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_eightsuperior" = 30; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = 46; +"@MMK_R_KO_fivesuperior" = 32; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_hyphen.case" = 9; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = 35; +"@MMK_R_KO_onesuperior" = 32; +"@MMK_R_KO_parenright" = 70; +"@MMK_R_KO_parenright.case" = 70; +"@MMK_R_KO_period" = -19; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = 24; +"@MMK_R_KO_question.ss01" = 6; +"@MMK_R_KO_quotedbl" = 43; +"@MMK_R_KO_quoteright" = 52; +"@MMK_R_KO_quoteright.ss01" = 24; +"@MMK_R_KO_sevensuperior" = 58; +"@MMK_R_KO_sixsuperior" = 22; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_threesuperior" = 41; +"@MMK_R_KO_u" = 2; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -106; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 44; +"@MMK_R_KO_J" = -95; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 19; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 43; +"@MMK_R_KO_W" = 41; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 41; +"@MMK_R_KO_Z" = 29; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asciicircum" = -57; +"@MMK_R_KO_bracketright" = -14; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -49; +"@MMK_R_KO_egrave" = -35; +"@MMK_R_KO_eightsuperior" = 5; +"@MMK_R_KO_ellipsis" = -154; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = -43; +"@MMK_R_KO_guillemetleft" = -46; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = -73; +"@MMK_R_KO_hyphen.case" = -57; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 49; +"@MMK_R_KO_imacron" = 64; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_n" = -40; +"@MMK_R_KO_ninesuperior" = 11; +"@MMK_R_KO_onesuperior" = 16; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 32; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 24; +"@MMK_R_KO_quotedblleft" = 21; +"@MMK_R_KO_quotedblleft.ss01" = 10; +"@MMK_R_KO_quoteleft" = 21; +"@MMK_R_KO_quoteright" = 28; +"@MMK_R_KO_quoteright.ss01" = 13; +"@MMK_R_KO_s" = -37; +"@MMK_R_KO_sevensuperior" = 5; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = 7; +"@MMK_R_KO_slash" = -110; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -25; +"@MMK_R_KO_underscore" = -99; +"@MMK_R_KO_v" = -5; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = -24; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -53; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 44; +"@MMK_R_KO_J" = -52; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 50; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 40; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 39; +"@MMK_R_KO_Z" = 30; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asciicircum" = -50; +"@MMK_R_KO_bracketright" = -16; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -54; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -90; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -21; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -52; +"@MMK_R_KO_hyphen.case" = -37; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 57; +"@MMK_R_KO_imacron" = 92; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 32; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_ninesuperior" = 16; +"@MMK_R_KO_onesuperior" = 14; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -56; +"@MMK_R_KO_period.ss01" = -80; +"@MMK_R_KO_question" = 33; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = 20; +"@MMK_R_KO_quotedblleft.ss01" = 10; +"@MMK_R_KO_quoteleft" = 20; +"@MMK_R_KO_quoteright" = 35; +"@MMK_R_KO_quoteright.ss01" = 15; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = -41; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 16; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_underscore" = -44; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -8; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 38; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 47; +"@MMK_R_KO_O" = -40; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 37; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 43; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asciicircum" = -97; +"@MMK_R_KO_bracketright" = -10; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -39; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eightsuperior" = -24; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -55; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -74; +"@MMK_R_KO_hyphen.case" = -96; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 55; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = 6; +"@MMK_R_KO_period" = 22; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = -17; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_sixsuperior" = -26; +"@MMK_R_KO_slash" = 44; +"@MMK_R_KO_t" = -31; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = -31; +"@MMK_R_KO_underscore" = 31; +"@MMK_R_KO_v" = -47; +"@MMK_R_KO_w" = -44; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -107; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 37; +"@MMK_R_KO_J" = -93; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 42; +"@MMK_R_KO_W" = 41; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 41; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -78; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_asciicircum" = -66; +"@MMK_R_KO_bracketright" = -11; +"@MMK_R_KO_colon" = -25; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -81; +"@MMK_R_KO_egrave" = -49; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -165; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = -78; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = -104; +"@MMK_R_KO_hyphen.case" = -79; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 58; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 31; +"@MMK_R_KO_n" = -58; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 8; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 18; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 14; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -62; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -16; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -105; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -44; +"@MMK_R_KO_underscore" = -110; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -32; +"@MMK_R_KO_x" = -40; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = -36; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 45; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 52; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 1; +"@MMK_R_KO_V" = 33; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_X" = 43; +"@MMK_R_KO_Y" = 33; +"@MMK_R_KO_Z" = 44; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asciicircum" = -68; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_fivesuperior" = -4; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -53; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -114; +"@MMK_R_KO_hyphen.case" = -86; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 43; +"@MMK_R_KO_imacron" = 75; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 44; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = 5; +"@MMK_R_KO_period" = 24; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 13; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quotedblleft" = 8; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 8; +"@MMK_R_KO_quoteright" = 14; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = 47; +"@MMK_R_KO_t" = -16; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -9; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -31; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -122; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -31; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -76; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asciicircum" = -73; +"@MMK_R_KO_bracketright" = -63; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -49; +"@MMK_R_KO_exclam" = -9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -28; +"@MMK_R_KO_foursuperior" = -33; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_icircumflex" = 1; +"@MMK_R_KO_imacron" = 1; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -45; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -46; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -53; +"@MMK_R_KO_quotedbl" = -33; +"@MMK_R_KO_quotedblleft" = -46; +"@MMK_R_KO_quotedblleft.ss01" = -59; +"@MMK_R_KO_quoteleft" = -46; +"@MMK_R_KO_quoteright" = -40; +"@MMK_R_KO_quoteright.ss01" = -51; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 1; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_trademark" = -90; +"@MMK_R_KO_u" = 1; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = -11; +"@MMK_R_KO_T" = -118; +"@MMK_R_KO_U" = -19; +"@MMK_R_KO_V" = -83; +"@MMK_R_KO_W" = -47; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = -114; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -98; +"@MMK_R_KO_bracketright" = -59; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 30; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = -46; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_fivesuperior" = -51; +"@MMK_R_KO_foursuperior" = -59; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -54; +"@MMK_R_KO_onesuperior" = -69; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_period" = 30; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = -56; +"@MMK_R_KO_question.ss01" = -74; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -95; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -87; +"@MMK_R_KO_quoteright" = -83; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -83; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = -61; +"@MMK_R_KO_slash" = 31; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_threesuperior" = -44; +"@MMK_R_KO_trademark" = -113; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_underscore" = 35; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = -9; +"@MMK_R_KO_T" = -88; +"@MMK_R_KO_U" = -17; +"@MMK_R_KO_V" = -60; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -57; +"@MMK_R_KO_colon" = 30; +"@MMK_R_KO_comma" = 30; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = -43; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_fivesuperior" = -50; +"@MMK_R_KO_foursuperior" = -52; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -49; +"@MMK_R_KO_onesuperior" = -49; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_period" = 30; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = -53; +"@MMK_R_KO_question.ss01" = -59; +"@MMK_R_KO_quotedbl" = -49; +"@MMK_R_KO_quotedblleft" = -56; +"@MMK_R_KO_quotedblleft.ss01" = -78; +"@MMK_R_KO_quoteleft" = -73; +"@MMK_R_KO_quoteright" = -61; +"@MMK_R_KO_quoteright.ss01" = -77; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -54; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = -57; +"@MMK_R_KO_slash" = 31; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_threesuperior" = -42; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_underscore" = 35; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_T" = -104; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = -36; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -121; +"@MMK_R_KO_H" = -58; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_T" = -86; +"@MMK_R_KO_a" = -67; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_f" = -46; +"@MMK_R_KO_i" = -57; +"@MMK_R_KO_n" = -64; +"@MMK_R_KO_t" = -46; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -113; +"@MMK_R_KO_H" = -77; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_T" = -200; +"@MMK_R_KO_a" = -58; +"@MMK_R_KO_e" = -58; +"@MMK_R_KO_f" = -79; +"@MMK_R_KO_i" = -87; +"@MMK_R_KO_n" = -88; +"@MMK_R_KO_t" = -79; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -57; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -80; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 31; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 34; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 75; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_eight" = 21; +"@MMK_R_KO_f" = 22; +"@MMK_R_KO_five" = 20; +"@MMK_R_KO_four" = -52; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = -154; +"@MMK_R_KO_hyphen.case" = -57; +"@MMK_R_KO_i" = 16; +"@MMK_R_KO_j" = 16; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_nine" = 46; +"@MMK_R_KO_one" = 26; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 37; +"@MMK_R_KO_quotedblleft" = 46; +"@MMK_R_KO_quotedblleft.ss01" = 40; +"@MMK_R_KO_quoteright" = 49; +"@MMK_R_KO_quoteright.ss01" = 36; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 54; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_slash" = -73; +"@MMK_R_KO_t" = 18; +"@MMK_R_KO_three" = 43; +"@MMK_R_KO_two" = 52; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_y" = 9; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -53; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -58; +"@MMK_R_KO_O" = -41; +"@MMK_R_KO_S" = -30; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -26; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -76; +"@MMK_R_KO_a.ss05" = -51; +"@MMK_R_KO_asterisk" = -15; +"@MMK_R_KO_colon" = -55; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = -76; +"@MMK_R_KO_egrave" = -67; +"@MMK_R_KO_eight" = -33; +"@MMK_R_KO_ellipsis" = -91; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -29; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -76; +"@MMK_R_KO_guillemetright" = -76; +"@MMK_R_KO_hyphen" = -93; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 13; +"@MMK_R_KO_n" = -68; +"@MMK_R_KO_nine" = -32; +"@MMK_R_KO_one" = -44; +"@MMK_R_KO_period" = -41; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -17; +"@MMK_R_KO_quotedblleft.ss01" = -44; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -31; +"@MMK_R_KO_s" = -72; +"@MMK_R_KO_seven" = -4; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = -46; +"@MMK_R_KO_three" = -30; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = -77; +"@MMK_R_KO_v" = -76; +"@MMK_R_KO_w" = -70; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = -45; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = -12; +"@MMK_R_KO_O" = -42; +"@MMK_R_KO_S" = -14; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = -26; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_asterisk" = -18; +"@MMK_R_KO_colon" = -21; +"@MMK_R_KO_comma" = 15; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_ellipsis" = -46; +"@MMK_R_KO_five" = -8; +"@MMK_R_KO_four" = -71; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_hyphen.case" = -94; +"@MMK_R_KO_nine" = -16; +"@MMK_R_KO_one" = -44; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -43; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -45; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -32; +"@MMK_R_KO_seven" = -8; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_slash" = 5; +"@MMK_R_KO_three" = -11; +"@MMK_R_KO_two" = -5; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -118; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -61; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -101; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 22; +"@MMK_R_KO_asciicircum" = -85; +"@MMK_R_KO_bracketright" = -66; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = -34; +"@MMK_R_KO_foursuperior" = -41; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -38; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -51; +"@MMK_R_KO_quotedbl" = -51; +"@MMK_R_KO_quotedblleft" = -64; +"@MMK_R_KO_quotedblleft.ss01" = -72; +"@MMK_R_KO_quoteleft" = -64; +"@MMK_R_KO_quoteright" = -63; +"@MMK_R_KO_quoteright.ss01" = -76; +"@MMK_R_KO_s" = 18; +"@MMK_R_KO_sevensuperior" = -56; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -39; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -93; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -87; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_eight" = -24; +"@MMK_R_KO_five" = -29; +"@MMK_R_KO_four" = -58; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -87; +"@MMK_R_KO_hyphen.case" = -87; +"@MMK_R_KO_nine" = -30; +"@MMK_R_KO_one" = -60; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_quotedbl" = -87; +"@MMK_R_KO_quotedblleft" = -87; +"@MMK_R_KO_quoteright" = -87; +"@MMK_R_KO_seven" = -75; +"@MMK_R_KO_six" = -59; +"@MMK_R_KO_three" = -21; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -112; +"@MMK_R_KO_H" = -30; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_T" = -48; +"@MMK_R_KO_a" = -55; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_i" = -31; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_t" = -24; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -124; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -71; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -110; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -93; +"@MMK_R_KO_bracketright" = -72; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -35; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_exclam" = -5; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -44; +"@MMK_R_KO_foursuperior" = -54; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -20; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -56; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_question" = -58; +"@MMK_R_KO_question.ss01" = -72; +"@MMK_R_KO_quotedbl" = -56; +"@MMK_R_KO_quotedblleft" = -91; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -84; +"@MMK_R_KO_quoteright" = -80; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -75; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -51; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -35; +"@MMK_R_KO_trademark" = -102; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -84; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -64; +"@MMK_R_KO_W" = -33; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_bracketright" = -71; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 3; +"@MMK_R_KO_eightsuperior" = -32; +"@MMK_R_KO_ellipsis" = -47; +"@MMK_R_KO_exclam" = -4; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -39; +"@MMK_R_KO_foursuperior" = -49; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -20; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -37; +"@MMK_R_KO_onesuperior" = -43; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_question" = -47; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -47; +"@MMK_R_KO_quotedblleft" = -62; +"@MMK_R_KO_quotedblleft.ss01" = -70; +"@MMK_R_KO_quoteleft" = -62; +"@MMK_R_KO_quoteright" = -58; +"@MMK_R_KO_quoteright.ss01" = -73; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -62; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -48; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -34; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asterisk" = 8; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 16; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_five" = 10; +"@MMK_R_KO_four" = 20; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 15; +"@MMK_R_KO_one" = 2; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_seven" = 3; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_three" = 23; +"@MMK_R_KO_two" = 18; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -36; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -95; +"@MMK_R_KO_S" = -65; +"@MMK_R_KO_T" = -154; +"@MMK_R_KO_U" = -83; +"@MMK_R_KO_V" = -165; +"@MMK_R_KO_W" = -97; +"@MMK_R_KO_Y" = -164; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -79; +"@MMK_R_KO_a.ss05" = -61; +"@MMK_R_KO_asterisk" = -154; +"@MMK_R_KO_colon" = -17; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -79; +"@MMK_R_KO_egrave" = -79; +"@MMK_R_KO_eight" = -57; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_f" = -69; +"@MMK_R_KO_five" = -65; +"@MMK_R_KO_four" = -127; +"@MMK_R_KO_g" = -52; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_hyphen" = -122; +"@MMK_R_KO_hyphen.case" = -255; +"@MMK_R_KO_i" = -52; +"@MMK_R_KO_j" = -49; +"@MMK_R_KO_n" = -52; +"@MMK_R_KO_nine" = -67; +"@MMK_R_KO_one" = -89; +"@MMK_R_KO_parenright" = -80; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -163; +"@MMK_R_KO_quotedblleft" = -151; +"@MMK_R_KO_quoteright" = -151; +"@MMK_R_KO_s" = -62; +"@MMK_R_KO_seven" = -104; +"@MMK_R_KO_six" = -89; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = -81; +"@MMK_R_KO_three" = -53; +"@MMK_R_KO_two" = -26; +"@MMK_R_KO_u" = -74; +"@MMK_R_KO_v" = -107; +"@MMK_R_KO_w" = -88; +"@MMK_R_KO_y" = -92; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -34; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -89; +"@MMK_R_KO_S" = -53; +"@MMK_R_KO_T" = -153; +"@MMK_R_KO_U" = -75; +"@MMK_R_KO_V" = -161; +"@MMK_R_KO_W" = -95; +"@MMK_R_KO_Y" = -163; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -74; +"@MMK_R_KO_a.ss05" = -55; +"@MMK_R_KO_asterisk" = -154; +"@MMK_R_KO_comma.ss01" = -32; +"@MMK_R_KO_e" = -74; +"@MMK_R_KO_egrave" = -74; +"@MMK_R_KO_eight" = -46; +"@MMK_R_KO_f" = -67; +"@MMK_R_KO_five" = -54; +"@MMK_R_KO_four" = -113; +"@MMK_R_KO_g" = -48; +"@MMK_R_KO_guillemetleft" = -84; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -100; +"@MMK_R_KO_hyphen.case" = -255; +"@MMK_R_KO_i" = -50; +"@MMK_R_KO_j" = -43; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = -55; +"@MMK_R_KO_one" = -87; +"@MMK_R_KO_parenright" = -81; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_quotedbl" = -163; +"@MMK_R_KO_quotedblleft.ss01" = -141; +"@MMK_R_KO_quoteright.ss01" = -141; +"@MMK_R_KO_s" = -55; +"@MMK_R_KO_seven" = -105; +"@MMK_R_KO_six" = -84; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = -78; +"@MMK_R_KO_three" = -42; +"@MMK_R_KO_two" = -23; +"@MMK_R_KO_u" = -69; +"@MMK_R_KO_v" = -102; +"@MMK_R_KO_w" = -85; +"@MMK_R_KO_y" = -91; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -51; +"@MMK_R_KO_J" = -72; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -103; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -71; +"@MMK_R_KO_W" = -33; +"@MMK_R_KO_Y" = -99; +"@MMK_R_KO_Z" = -29; +"@MMK_R_KO_a" = 22; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -82; +"@MMK_R_KO_comma" = -82; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = 26; +"@MMK_R_KO_egrave" = 18; +"@MMK_R_KO_eight" = 33; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 30; +"@MMK_R_KO_g" = 22; +"@MMK_R_KO_guillemetleft" = 14; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_n" = 1; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -57; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = -82; +"@MMK_R_KO_period.ss01" = -75; +"@MMK_R_KO_quotedbl" = -83; +"@MMK_R_KO_quotedblleft" = -151; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright" = -87; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -78; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -29; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -31; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = 22; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = 36; +"@MMK_R_KO_W" = 35; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = 28; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -35; +"@MMK_R_KO_bracketright" = -6; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = -32; +"@MMK_R_KO_comma.ss01" = -62; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -77; +"@MMK_R_KO_exclam" = 24; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = 36; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 19; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -34; +"@MMK_R_KO_period.ss01" = -73; +"@MMK_R_KO_question" = 43; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 39; +"@MMK_R_KO_quotedblleft" = 22; +"@MMK_R_KO_quotedblleft.ss01" = 5; +"@MMK_R_KO_quoteleft" = 22; +"@MMK_R_KO_quoteright" = 44; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = -23; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 17; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -36; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 15; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -31; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = -31; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = 22; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = 36; +"@MMK_R_KO_W" = 35; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = 28; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -35; +"@MMK_R_KO_bracketright" = -6; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -62; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -77; +"@MMK_R_KO_exclam" = 24; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = 36; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 19; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -34; +"@MMK_R_KO_period.ss01" = -72; +"@MMK_R_KO_question" = 43; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 39; +"@MMK_R_KO_quotedblleft" = 22; +"@MMK_R_KO_quotedblleft.ss01" = 5; +"@MMK_R_KO_quoteleft" = 22; +"@MMK_R_KO_quoteright" = 44; +"@MMK_R_KO_quoteright.ss01" = 9; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = -23; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 17; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -36; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 15; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -57; +"@MMK_R_KO_bracketright" = -34; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_icircumflex" = 1; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -10; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -15; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -47; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eight" = 21; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 28; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -25; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = -15; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = -8; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -21; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_seven" = -2; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -24; +"@MMK_R_KO_three" = 24; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -27; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -43; +"@MMK_R_KO_J" = -49; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 39; +"@MMK_R_KO_T" = -49; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -43; +"@MMK_R_KO_W" = -30; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = -10; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = -34; +"@MMK_R_KO_colon" = -25; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -53; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 35; +"@MMK_R_KO_ellipsis" = -76; +"@MMK_R_KO_f" = -20; +"@MMK_R_KO_five" = 6; +"@MMK_R_KO_four" = 22; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -25; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -5; +"@MMK_R_KO_one" = -36; +"@MMK_R_KO_parenright" = -65; +"@MMK_R_KO_parenright.case" = -42; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = -52; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -62; +"@MMK_R_KO_quoteright" = -44; +"@MMK_R_KO_quoteright.ss01" = -59; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -44; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_three" = 18; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 30; +"@MMK_R_KO_H" = 19; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -50; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 10; +"@MMK_R_KO_X" = 27; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 37; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -54; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 59; +"@MMK_R_KO_comma" = 69; +"@MMK_R_KO_comma.ss01" = 41; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 7; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -6; +"@MMK_R_KO_parenright" = 11; +"@MMK_R_KO_period" = 25; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = 39; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 27; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = 13; +"@MMK_R_KO_quoteright" = 11; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 66; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -53; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = 65; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_x" = 23; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 32; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -80; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_Y" = -49; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = 16; +"@MMK_R_KO_hyphen" = -48; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -14; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_quotedbl" = -20; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = 11; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 13; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 26; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -34; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -56; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_Y" = -106; +"@MMK_R_KO_Z" = -23; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asterisk" = -55; +"@MMK_R_KO_colon" = -36; +"@MMK_R_KO_comma" = -36; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eight" = 9; +"@MMK_R_KO_ellipsis" = -64; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 20; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = 17; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -10; +"@MMK_R_KO_hyphen.case" = -22; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = -7; +"@MMK_R_KO_one" = -50; +"@MMK_R_KO_parenright" = -98; +"@MMK_R_KO_parenright.case" = -71; +"@MMK_R_KO_period" = -39; +"@MMK_R_KO_period.ss01" = -57; +"@MMK_R_KO_quotedbl" = -54; +"@MMK_R_KO_quotedblleft" = -83; +"@MMK_R_KO_quotedblleft.ss01" = -71; +"@MMK_R_KO_quoteright" = -75; +"@MMK_R_KO_quoteright.ss01" = -69; +"@MMK_R_KO_s" = -5; +"@MMK_R_KO_seven" = -50; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = -25; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -30; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = -25; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = -24; +"@MMK_R_KO_I.ss02" = -88; +"@MMK_R_KO_J" = -102; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -115; +"@MMK_R_KO_U" = -16; +"@MMK_R_KO_V" = -81; +"@MMK_R_KO_W" = -55; +"@MMK_R_KO_Y" = -125; +"@MMK_R_KO_Z" = -54; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asterisk" = -154; +"@MMK_R_KO_colon" = -85; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -48; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = 23; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -43; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = -31; +"@MMK_R_KO_j" = -31; +"@MMK_R_KO_n" = -31; +"@MMK_R_KO_nine" = -12; +"@MMK_R_KO_one" = -72; +"@MMK_R_KO_parenright" = -101; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = -163; +"@MMK_R_KO_quotedblleft" = -151; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright" = -87; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -96; +"@MMK_R_KO_six" = -17; +"@MMK_R_KO_slash" = -42; +"@MMK_R_KO_t" = -50; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -51; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = -46; +"@MMK_R_KO_w" = -39; +"@MMK_R_KO_y" = -49; +"@MMK_R_KO_z" = -58; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -56; +"@MMK_R_KO_H" = -24; +"@MMK_R_KO_I.ss02" = -88; +"@MMK_R_KO_J" = -102; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -12; +"@MMK_R_KO_T" = -115; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -64; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_Y" = -93; +"@MMK_R_KO_Z" = -82; +"@MMK_R_KO_asterisk" = -72; +"@MMK_R_KO_colon" = -24; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_eight" = -16; +"@MMK_R_KO_five" = -13; +"@MMK_R_KO_four" = -12; +"@MMK_R_KO_guillemetleft" = 20; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen.case" = -14; +"@MMK_R_KO_nine" = -3; +"@MMK_R_KO_one" = -72; +"@MMK_R_KO_parenright.case" = -92; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = -76; +"@MMK_R_KO_quotedblleft" = -142; +"@MMK_R_KO_quotedblleft.ss01" = -58; +"@MMK_R_KO_quoteright" = -79; +"@MMK_R_KO_quoteright.ss01" = -53; +"@MMK_R_KO_seven" = -81; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_three" = -59; +"@MMK_R_KO_two" = -31; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -60; +"@MMK_R_KO_bracketright" = -41; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -14; +"@MMK_R_KO_ellipsis" = -49; +"@MMK_R_KO_exclam" = -9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 1; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -46; +"@MMK_R_KO_question" = -9; +"@MMK_R_KO_question.ss01" = -33; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -30; +"@MMK_R_KO_quoteright" = -20; +"@MMK_R_KO_quoteright.ss01" = -30; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = 1; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -44; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 28; +"@MMK_R_KO_I.ss02" = 27; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 34; +"@MMK_R_KO_T" = 25; +"@MMK_R_KO_U" = 35; +"@MMK_R_KO_V" = 39; +"@MMK_R_KO_W" = 38; +"@MMK_R_KO_X" = 30; +"@MMK_R_KO_Y" = 26; +"@MMK_R_KO_Z" = 47; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -54; +"@MMK_R_KO_bracketright" = 14; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 23; +"@MMK_R_KO_ellipsis" = -49; +"@MMK_R_KO_exclam" = 29; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 16; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_icircumflex" = 1; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 19; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 26; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = 32; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 36; +"@MMK_R_KO_quotedblleft" = 25; +"@MMK_R_KO_quotedblleft.ss01" = 6; +"@MMK_R_KO_quoteleft" = 30; +"@MMK_R_KO_quoteright" = 27; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = 18; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = 13; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 28; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -99; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -56; +"@MMK_R_KO_bracketright" = -46; +"@MMK_R_KO_colon" = 40; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = -17; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 19; +"@MMK_R_KO_fivesuperior" = -26; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = 13; +"@MMK_R_KO_hyphen" = -52; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 3; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -52; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_period" = 20; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -32; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -33; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -29; +"@MMK_R_KO_slash" = 27; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_trademark" = -80; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 35; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_x" = 39; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 44; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -58; +"@MMK_R_KO_bracketright" = -16; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -47; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -10; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -41; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -21; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = -18; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -81; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 33; +"@MMK_R_KO_comma" = 34; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = -11; +"@MMK_R_KO_egrave" = -11; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 14; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = -30; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -43; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_period" = 31; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = -16; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = -14; +"@MMK_R_KO_sixsuperior" = -24; +"@MMK_R_KO_slash" = 32; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_threesuperior" = -18; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 31; +"@MMK_R_KO_v" = -15; +"@MMK_R_KO_w" = -13; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = 23; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_bracketright" = 31; +"@MMK_R_KO_colon" = 62; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eightsuperior" = 85; +"@MMK_R_KO_exclam" = 98; +"@MMK_R_KO_f" = 19; +"@MMK_R_KO_fivesuperior" = 79; +"@MMK_R_KO_foursuperior" = 57; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = -32; +"@MMK_R_KO_i" = 33; +"@MMK_R_KO_j" = 25; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = 23; +"@MMK_R_KO_ninesuperior" = 94; +"@MMK_R_KO_onesuperior" = 72; +"@MMK_R_KO_parenright" = 69; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = 129; +"@MMK_R_KO_question.ss01" = 75; +"@MMK_R_KO_quotedbl" = 124; +"@MMK_R_KO_quotedblleft" = 121; +"@MMK_R_KO_quotedblleft.ss01" = 90; +"@MMK_R_KO_quoteleft" = 121; +"@MMK_R_KO_sevensuperior" = 83; +"@MMK_R_KO_sixsuperior" = 83; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = 18; +"@MMK_R_KO_threesuperior" = 91; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_z" = 35; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = -26; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_T" = -147; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_f" = -38; +"@MMK_R_KO_i" = -20; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_t" = -39; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -135; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -73; +"@MMK_R_KO_W" = -41; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -107; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -93; +"@MMK_R_KO_bracketright" = -65; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = -37; +"@MMK_R_KO_ellipsis" = -41; +"@MMK_R_KO_exclam" = -7; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_fivesuperior" = -46; +"@MMK_R_KO_foursuperior" = -53; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -27; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -47; +"@MMK_R_KO_onesuperior" = -58; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_question" = -56; +"@MMK_R_KO_question.ss01" = -67; +"@MMK_R_KO_quotedbl" = -54; +"@MMK_R_KO_quotedblleft" = -80; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -79; +"@MMK_R_KO_quoteright" = -78; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -77; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = -51; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_trademark" = -103; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 13; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -7; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -126; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -74; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -115; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -97; +"@MMK_R_KO_bracketright" = -75; +"@MMK_R_KO_colon" = -4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -39; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = -40; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = -10; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_fivesuperior" = -47; +"@MMK_R_KO_foursuperior" = -58; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -46; +"@MMK_R_KO_onesuperior" = -62; +"@MMK_R_KO_parenright" = -77; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -50; +"@MMK_R_KO_question" = -65; +"@MMK_R_KO_question.ss01" = -78; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -96; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteleft" = -87; +"@MMK_R_KO_quoteright" = -85; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -78; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -56; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_threesuperior" = -40; +"@MMK_R_KO_trademark" = -108; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -7; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = -8; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -85; +"@MMK_R_KO_V" = -63; +"@MMK_R_KO_W" = -32; +"@MMK_R_KO_Y" = -69; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_bracketright" = -73; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = -36; +"@MMK_R_KO_ellipsis" = -58; +"@MMK_R_KO_exclam" = -10; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_fivesuperior" = -43; +"@MMK_R_KO_foursuperior" = -50; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -59; +"@MMK_R_KO_parenright" = -77; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -53; +"@MMK_R_KO_question" = -52; +"@MMK_R_KO_question.ss01" = -66; +"@MMK_R_KO_quotedbl" = -45; +"@MMK_R_KO_quotedblleft" = -62; +"@MMK_R_KO_quotedblleft.ss01" = -76; +"@MMK_R_KO_quoteleft" = -62; +"@MMK_R_KO_quoteright" = -58; +"@MMK_R_KO_quoteright.ss01" = -75; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -50; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -45; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = -31; +"@MMK_R_KO_trademark" = -100; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -11; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = -8; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -40; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -45; +"@MMK_R_KO_O" = -56; +"@MMK_R_KO_S" = -24; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = -11; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -89; +"@MMK_R_KO_a.ss05" = -63; +"@MMK_R_KO_asterisk" = -5; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = -88; +"@MMK_R_KO_egrave" = -67; +"@MMK_R_KO_eight" = -30; +"@MMK_R_KO_ellipsis" = -81; +"@MMK_R_KO_f" = -42; +"@MMK_R_KO_five" = -10; +"@MMK_R_KO_four" = -86; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -97; +"@MMK_R_KO_guillemetright" = -62; +"@MMK_R_KO_hyphen" = -96; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 38; +"@MMK_R_KO_n" = -55; +"@MMK_R_KO_nine" = -25; +"@MMK_R_KO_one" = -36; +"@MMK_R_KO_parenright" = 11; +"@MMK_R_KO_period" = -41; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -28; +"@MMK_R_KO_s" = -74; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -43; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -44; +"@MMK_R_KO_three" = -20; +"@MMK_R_KO_two" = -18; +"@MMK_R_KO_u" = -79; +"@MMK_R_KO_v" = -72; +"@MMK_R_KO_w" = -67; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -48; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_Y" = 5; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 35; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_eight" = -26; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = -63; +"@MMK_R_KO_guillemetleft" = -76; +"@MMK_R_KO_guillemetright" = -41; +"@MMK_R_KO_hyphen.case" = -93; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -21; +"@MMK_R_KO_parenright.case" = 14; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -37; +"@MMK_R_KO_slash" = 25; +"@MMK_R_KO_three" = -19; +"@MMK_R_KO_two" = -4; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 28; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = 31; +"@MMK_R_KO_O" = -66; +"@MMK_R_KO_S" = -29; +"@MMK_R_KO_T" = -85; +"@MMK_R_KO_U" = -48; +"@MMK_R_KO_V" = -85; +"@MMK_R_KO_W" = -71; +"@MMK_R_KO_Y" = -85; +"@MMK_R_KO_Z" = 26; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asterisk" = -85; +"@MMK_R_KO_colon" = 6; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_eight" = -25; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_five" = -29; +"@MMK_R_KO_four" = -56; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -85; +"@MMK_R_KO_hyphen.case" = -85; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -31; +"@MMK_R_KO_one" = -59; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -85; +"@MMK_R_KO_quotedblleft" = -85; +"@MMK_R_KO_quoteright" = -85; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_seven" = -75; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_slash" = 39; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_three" = -18; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -28; +"@MMK_R_KO_v" = -77; +"@MMK_R_KO_w" = -51; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 25; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -34; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -80; +"@MMK_R_KO_S" = -53; +"@MMK_R_KO_T" = -82; +"@MMK_R_KO_U" = -63; +"@MMK_R_KO_V" = -82; +"@MMK_R_KO_W" = -82; +"@MMK_R_KO_Y" = -82; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -74; +"@MMK_R_KO_a.ss05" = -55; +"@MMK_R_KO_asterisk" = -82; +"@MMK_R_KO_comma.ss01" = 7; +"@MMK_R_KO_e" = -74; +"@MMK_R_KO_eight" = -36; +"@MMK_R_KO_f" = -67; +"@MMK_R_KO_five" = -43; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -48; +"@MMK_R_KO_guillemetleft" = -76; +"@MMK_R_KO_guillemetright" = -34; +"@MMK_R_KO_hyphen" = -82; +"@MMK_R_KO_hyphen.case" = -81; +"@MMK_R_KO_i" = -50; +"@MMK_R_KO_j" = -43; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = -48; +"@MMK_R_KO_one" = -78; +"@MMK_R_KO_parenright" = -81; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_quotedbl" = -82; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -55; +"@MMK_R_KO_seven" = -81; +"@MMK_R_KO_six" = -60; +"@MMK_R_KO_slash" = -12; +"@MMK_R_KO_t" = -78; +"@MMK_R_KO_three" = -41; +"@MMK_R_KO_two" = -21; +"@MMK_R_KO_u" = -69; +"@MMK_R_KO_v" = -82; +"@MMK_R_KO_w" = -79; +"@MMK_R_KO_y" = -82; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -84; +"@MMK_R_KO_S" = -53; +"@MMK_R_KO_T" = -126; +"@MMK_R_KO_U" = -70; +"@MMK_R_KO_V" = -132; +"@MMK_R_KO_W" = -75; +"@MMK_R_KO_Y" = -129; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -65; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_e" = -66; +"@MMK_R_KO_eight" = -48; +"@MMK_R_KO_f" = -34; +"@MMK_R_KO_five" = -55; +"@MMK_R_KO_four" = -82; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetright" = -49; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_j" = 61; +"@MMK_R_KO_nine" = -54; +"@MMK_R_KO_one" = -67; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_quotedbl" = -83; +"@MMK_R_KO_quotedblleft" = -134; +"@MMK_R_KO_quoteright" = -87; +"@MMK_R_KO_s" = -44; +"@MMK_R_KO_seven" = -81; +"@MMK_R_KO_six" = -75; +"@MMK_R_KO_t" = -55; +"@MMK_R_KO_three" = -43; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -55; +"@MMK_R_KO_v" = -86; +"@MMK_R_KO_w" = -62; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -69; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -103; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 20; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_Y" = 14; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asterisk" = 42; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -163; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -64; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -163; +"@MMK_R_KO_hyphen.case" = -57; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -22; +"@MMK_R_KO_nine" = 7; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -4; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quotedblleft.ss01" = 8; +"@MMK_R_KO_quoteright" = 24; +"@MMK_R_KO_quoteright.ss01" = 18; +"@MMK_R_KO_s" = -19; +"@MMK_R_KO_seven" = 28; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -95; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_three" = 12; +"@MMK_R_KO_two" = 18; +"@MMK_R_KO_u" = -12; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -72; +"@MMK_R_KO_S" = -44; +"@MMK_R_KO_T" = -117; +"@MMK_R_KO_U" = -58; +"@MMK_R_KO_V" = -134; +"@MMK_R_KO_W" = -75; +"@MMK_R_KO_Y" = -135; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -28; +"@MMK_R_KO_asterisk" = -87; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 29; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_egrave" = -48; +"@MMK_R_KO_eight" = -37; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_f" = -44; +"@MMK_R_KO_five" = -43; +"@MMK_R_KO_four" = -86; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -28; +"@MMK_R_KO_hyphen" = -87; +"@MMK_R_KO_hyphen.case" = -87; +"@MMK_R_KO_i" = -23; +"@MMK_R_KO_j" = 14; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_nine" = -44; +"@MMK_R_KO_one" = -67; +"@MMK_R_KO_period" = 4; +"@MMK_R_KO_quotedblleft" = -151; +"@MMK_R_KO_quoteright" = -87; +"@MMK_R_KO_s" = -30; +"@MMK_R_KO_seven" = -77; +"@MMK_R_KO_six" = -64; +"@MMK_R_KO_slash" = 58; +"@MMK_R_KO_t" = -53; +"@MMK_R_KO_three" = -33; +"@MMK_R_KO_two" = -19; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_v" = -87; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -30; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -76; +"@MMK_R_KO_S" = -42; +"@MMK_R_KO_T" = -118; +"@MMK_R_KO_U" = -63; +"@MMK_R_KO_V" = -141; +"@MMK_R_KO_W" = -81; +"@MMK_R_KO_Y" = -141; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -69; +"@MMK_R_KO_a.ss05" = -47; +"@MMK_R_KO_asterisk" = -81; +"@MMK_R_KO_comma.ss01" = 7; +"@MMK_R_KO_e" = -62; +"@MMK_R_KO_egrave" = -69; +"@MMK_R_KO_eight" = -36; +"@MMK_R_KO_f" = -61; +"@MMK_R_KO_five" = -43; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -29; +"@MMK_R_KO_guillemetleft" = -75; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_hyphen" = -81; +"@MMK_R_KO_hyphen.case" = -81; +"@MMK_R_KO_i" = -43; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = -48; +"@MMK_R_KO_one" = -78; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_quotedblleft.ss01" = -81; +"@MMK_R_KO_quoteright.ss01" = -81; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = -81; +"@MMK_R_KO_six" = -68; +"@MMK_R_KO_slash" = 25; +"@MMK_R_KO_t" = -74; +"@MMK_R_KO_three" = -41; +"@MMK_R_KO_two" = -21; +"@MMK_R_KO_u" = -63; +"@MMK_R_KO_v" = -81; +"@MMK_R_KO_w" = -78; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -95; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_Y" = 18; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -51; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asterisk" = 52; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_e" = -54; +"@MMK_R_KO_egrave" = -35; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -151; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -79; +"@MMK_R_KO_g" = -52; +"@MMK_R_KO_guillemetleft" = -57; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -151; +"@MMK_R_KO_hyphen.case" = -129; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -34; +"@MMK_R_KO_nine" = 16; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = 21; +"@MMK_R_KO_quoteright" = 37; +"@MMK_R_KO_s" = -39; +"@MMK_R_KO_seven" = 41; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -103; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 19; +"@MMK_R_KO_two" = 25; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -81; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -67; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asterisk" = 49; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -70; +"@MMK_R_KO_egrave" = -50; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -68; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -81; +"@MMK_R_KO_hyphen.case" = -81; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -8; +"@MMK_R_KO_n" = -45; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft.ss01" = 6; +"@MMK_R_KO_quoteright.ss01" = 10; +"@MMK_R_KO_s" = -47; +"@MMK_R_KO_seven" = 24; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -45; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -21; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -30; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -99; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -99; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 27; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asterisk" = 47; +"@MMK_R_KO_colon" = -32; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_e" = -72; +"@MMK_R_KO_egrave" = -47; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -151; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -99; +"@MMK_R_KO_g" = -71; +"@MMK_R_KO_guillemetleft" = -69; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = -151; +"@MMK_R_KO_hyphen.case" = -151; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -49; +"@MMK_R_KO_nine" = 6; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quotedblleft" = 21; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_s" = -55; +"@MMK_R_KO_seven" = 30; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -123; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 12; +"@MMK_R_KO_two" = 17; +"@MMK_R_KO_u" = -42; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -87; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_Y" = 18; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = -51; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asterisk" = 52; +"@MMK_R_KO_colon" = -12; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_e" = -54; +"@MMK_R_KO_egrave" = -35; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -87; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -79; +"@MMK_R_KO_g" = -52; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -87; +"@MMK_R_KO_hyphen.case" = -87; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = 16; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_quotedbl" = 26; +"@MMK_R_KO_quotedblleft" = 21; +"@MMK_R_KO_quoteright" = 37; +"@MMK_R_KO_s" = -23; +"@MMK_R_KO_seven" = 41; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -87; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 19; +"@MMK_R_KO_two" = 25; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_v" = -7; +"@MMK_R_KO_w" = -10; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -87; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -87; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 27; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asterisk" = 47; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_egrave" = -44; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -87; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -87; +"@MMK_R_KO_g" = -63; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -87; +"@MMK_R_KO_hyphen.case" = -75; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -48; +"@MMK_R_KO_nine" = 6; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quotedblleft" = 21; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_s" = -54; +"@MMK_R_KO_seven" = 30; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_slash" = -87; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_three" = 12; +"@MMK_R_KO_two" = 17; +"@MMK_R_KO_u" = -42; +"@MMK_R_KO_v" = -28; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -28; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -81; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 13; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -74; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asterisk" = 43; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -76; +"@MMK_R_KO_egrave" = -50; +"@MMK_R_KO_eight" = -2; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -72; +"@MMK_R_KO_guillemetleft" = -52; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -81; +"@MMK_R_KO_hyphen.case" = -81; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_j" = -14; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -30; +"@MMK_R_KO_parenright.case" = -29; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 6; +"@MMK_R_KO_s" = -57; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = -15; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -29; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -69; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -83; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 20; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_Y" = 16; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asterisk" = 42; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -83; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -83; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -64; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -83; +"@MMK_R_KO_hyphen.case" = -57; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -22; +"@MMK_R_KO_nine" = 7; +"@MMK_R_KO_one" = 5; +"@MMK_R_KO_parenright" = -4; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -83; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quotedblleft.ss01" = 8; +"@MMK_R_KO_quoteright" = 24; +"@MMK_R_KO_quoteright.ss01" = 18; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_seven" = 28; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -83; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_three" = 12; +"@MMK_R_KO_two" = 18; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -65; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -74; +"@MMK_R_KO_J" = -87; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -106; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -71; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = -86; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -81; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -80; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -8; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -120; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -105; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_period" = -84; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -22; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -69; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -85; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -124; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -64; +"@MMK_R_KO_W" = -36; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -101; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 22; +"@MMK_R_KO_asciicircum" = -85; +"@MMK_R_KO_bracketright" = -54; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 18; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_fivesuperior" = -44; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -47; +"@MMK_R_KO_onesuperior" = -58; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = -46; +"@MMK_R_KO_question.ss01" = -61; +"@MMK_R_KO_quotedbl" = -50; +"@MMK_R_KO_quotedblleft" = -82; +"@MMK_R_KO_quotedblleft.ss01" = -79; +"@MMK_R_KO_quoteleft" = -72; +"@MMK_R_KO_quoteright" = -72; +"@MMK_R_KO_quoteright.ss01" = -77; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -74; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -46; +"@MMK_R_KO_slash" = 17; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_trademark" = -95; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 15; +"@MMK_R_KO_v" = -11; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -124; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 22; +"@MMK_R_KO_bracketright" = -50; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 19; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -30; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -38; +"@MMK_R_KO_foursuperior" = -40; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = -41; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = -40; +"@MMK_R_KO_question.ss01" = -47; +"@MMK_R_KO_quotedbl" = -38; +"@MMK_R_KO_quotedblleft" = -51; +"@MMK_R_KO_quotedblleft.ss01" = -60; +"@MMK_R_KO_quoteleft" = -51; +"@MMK_R_KO_quoteright" = -46; +"@MMK_R_KO_quoteright.ss01" = -62; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -57; +"@MMK_R_KO_sixsuperior" = -42; +"@MMK_R_KO_slash" = 17; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -30; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -101; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 51; +"@MMK_R_KO_J" = -95; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 17; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = 46; +"@MMK_R_KO_W" = 48; +"@MMK_R_KO_Y" = 48; +"@MMK_R_KO_Z" = 34; +"@MMK_R_KO_a" = -63; +"@MMK_R_KO_a.ss05" = -51; +"@MMK_R_KO_asterisk" = 45; +"@MMK_R_KO_colon" = -16; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -66; +"@MMK_R_KO_egrave" = -43; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -152; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_five" = 7; +"@MMK_R_KO_four" = -74; +"@MMK_R_KO_g" = -64; +"@MMK_R_KO_guillemetleft" = -55; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -85; +"@MMK_R_KO_hyphen.case" = -66; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -49; +"@MMK_R_KO_nine" = 13; +"@MMK_R_KO_one" = 28; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 30; +"@MMK_R_KO_quotedblleft" = 24; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 30; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -50; +"@MMK_R_KO_seven" = 51; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_slash" = -98; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = 20; +"@MMK_R_KO_two" = 25; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -27; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 21; +"@MMK_R_KO_ellipsis" = -26; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 12; +"@MMK_R_KO_four" = 27; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -29; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 10; +"@MMK_R_KO_one" = 8; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -3; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 27; +"@MMK_R_KO_two" = 17; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -95; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 35; +"@MMK_R_KO_J" = -83; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 26; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = 39; +"@MMK_R_KO_W" = 44; +"@MMK_R_KO_Y" = 36; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asterisk" = 55; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -87; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = -40; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -155; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = -55; +"@MMK_R_KO_g" = -36; +"@MMK_R_KO_guillemetleft" = -43; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -74; +"@MMK_R_KO_hyphen.case" = -53; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -38; +"@MMK_R_KO_nine" = 13; +"@MMK_R_KO_one" = 22; +"@MMK_R_KO_parenright" = -6; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = -85; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_quotedbl" = 40; +"@MMK_R_KO_quotedblleft" = 38; +"@MMK_R_KO_quotedblleft.ss01" = 25; +"@MMK_R_KO_quoteright" = 44; +"@MMK_R_KO_quoteright.ss01" = 30; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_seven" = 49; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -103; +"@MMK_R_KO_t" = -4; +"@MMK_R_KO_three" = 8; +"@MMK_R_KO_two" = 13; +"@MMK_R_KO_u" = -20; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -59; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 2; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -49; +"@MMK_R_KO_bracketright" = -55; +"@MMK_R_KO_colon" = 43; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 29; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -18; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_period" = 21; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -9; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 22; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -25; +"@MMK_R_KO_trademark" = -63; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 26; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 38; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_Y" = -26; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asterisk" = 11; +"@MMK_R_KO_colon" = 13; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 16; +"@MMK_R_KO_ellipsis" = -27; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 7; +"@MMK_R_KO_hyphen" = -13; +"@MMK_R_KO_hyphen.case" = -10; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 17; +"@MMK_R_KO_one" = 5; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_three" = 22; +"@MMK_R_KO_two" = 19; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 28; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -33; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = 33; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = 12; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 19; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_f" = 17; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -37; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = 11; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = -18; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = 5; +"@MMK_R_KO_parenright" = -22; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 18; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 40; +"@MMK_R_KO_t" = 16; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 14; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -51; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -68; +"@MMK_R_KO_J" = -70; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -114; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -58; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = -68; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = 31; +"@MMK_R_KO_comma" = -56; +"@MMK_R_KO_comma.ss01" = -81; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -100; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -5; +"@MMK_R_KO_guillemetright" = 26; +"@MMK_R_KO_hyphen" = -40; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_period" = -56; +"@MMK_R_KO_period.ss01" = -82; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -26; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -48; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -62; +"@MMK_R_KO_u" = 12; +"@MMK_R_KO_underscore" = -56; +"@MMK_R_KO_v" = 25; +"@MMK_R_KO_w" = 23; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -33; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -44; +"@MMK_R_KO_J" = -40; +"@MMK_R_KO_O" = 20; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -113; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -45; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = -41; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -50; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -65; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -80; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = 24; +"@MMK_R_KO_hyphen" = -33; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -56; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -66; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = -12; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -26; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -42; +"@MMK_R_KO_six" = 15; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -60; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -41; +"@MMK_R_KO_v" = 24; +"@MMK_R_KO_w" = 29; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 22; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -113; +"@MMK_R_KO_U" = -10; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -55; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -63; +"@MMK_R_KO_bracketright" = -50; +"@MMK_R_KO_colon" = 30; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = -28; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -19; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = 10; +"@MMK_R_KO_hyphen" = -51; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -56; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_period" = 22; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -41; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -33; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -63; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -35; +"@MMK_R_KO_slash" = 19; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -38; +"@MMK_R_KO_trademark" = -86; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 33; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 34; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 39; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -113; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -54; +"@MMK_R_KO_bracketright" = -57; +"@MMK_R_KO_colon" = 38; +"@MMK_R_KO_comma" = 21; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -3; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 25; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -43; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_period" = 21; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -31; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -29; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -53; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -23; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -75; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 23; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -32; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -11; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_bracketright" = -46; +"@MMK_R_KO_colon" = 38; +"@MMK_R_KO_comma" = 21; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 25; +"@MMK_R_KO_hyphen" = -64; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_period" = 21; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 23; +"@MMK_R_KO_y" = 7; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -10; +"@MMK_R_KO_comma.ss01" = -33; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eight" = 11; +"@MMK_R_KO_ellipsis" = -49; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = 28; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 9; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = -4; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = -8; +"@MMK_R_KO_parenright" = -86; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = -10; +"@MMK_R_KO_period.ss01" = -37; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_seven" = -11; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 12; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -30; +Tbar = -83; +asciitilde = -58; +asterisk = -76; +backslash = -106; +g.ss06 = 13; +minus = -59; +one = -49; +ordmasculine = -108; +plus = -52; +quotedbl = -93; +registered = -99; +seven = -67; +two = 5; +twosuperior = -69; +}; +Aacute = { +Tbar = -83; +}; +Abrevedotbelow.ss01 = { +T = -112; +}; +Aogonek = { +comma = 55; +parenright = 0; +}; +Atilde = { +ordfeminine = -108; +}; +B = { +Hbar = 37; +hbar = 33; +idieresis = 28; +itilde = 52; +}; +C = { +h = 11; +l = 11; +plus = -6; +three = 34; +}; +D = { +Lslash = 40; +Oslash = 17; +braceright = -79; +bracketright.case = -46; +}; +E = { +H = 0; +idieresis = 35; +}; +Eogonek = { +comma = 56; +}; +F = { +fourinferior = -80; +i = -9; +igrave = 25; +}; +G = { +Lslash = 37; +lslash = 26; +}; +Germandbls = { +S = 27; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -4; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 22; +itilde = 47; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 42; +D = 42; +E = 42; +H = 42; +Hbar = 109; +I = 42; +L = 42; +M = 42; +O = 54; +R = 42; +S = 70; +U = 56; +W = 64; +i = 33; +}; +I = { +Hbar = 44; +I = 0; +jcircumflex = 43; +}; +Icircumflex = { +Icircumflex = 2; +l.ss04 = 33; +}; +Imacron = { +Imacron = 3; +}; +Itilde = { +itilde = 47; +}; +J = { +Hbar = 50; +itilde = 53; +}; +Jacute = { +Imacron = 0; +}; +K = { +asciitilde = -106; +four = -40; +idieresis = 60; +igrave = 41; +itilde = 62; +less = -89; +logicalnot = -129; +minus = -103; +one = 0; +oslash = 0; +plus = -99; +}; +L = { +H = 0; +Tbar = -113; +asciitilde = -223; +asterisk = -154; +backslash = -123; +equal = -129; +four = -105; +less = -181; +logicalnot = -221; +minus = -215; +one = -61; +ordfeminine = -217; +ordmasculine = -214; +oslash = 0; +plus = -143; +quotedbl = -163; +quoteleft.ss01 = -81; +quoteright = -87; +quoteright.ss01 = -81; +registered = -221; +seven = -72; +twosuperior = -186; +}; +Lcaron = { +A = 25; +O = -55; +U = -42; +Uacute = -42; +V = -36; +a = -42; +hyphen = -185; +hyphen.case = -131; +u = -31; +v = -68; +}; +Lcommaaccent = { +twosuperior = -186; +}; +Lslash = { +twosuperior = -106; +}; +M = { +Hbar = 44; +idieresis = 35; +igrave = 22; +itilde = 47; +}; +N = { +Hbar = 44; +idieresis = 35; +igrave = 22; +itilde = 47; +}; +O = { +Dcroat = 33; +Lslash = 38; +braceright = -79; +bracketright.case = -43; +itilde = 27; +}; +Oslash = { +T = 0; +V = 0; +Y = 0; +parenright = 0; +parenright.case = 16; +}; +P = { +fourinferior = -72; +idieresis = 26; +itilde = 60; +two = 26; +}; +R = { +Hbar = 52; +jcircumflex = 54; +two = 21; +}; +S = { +Hbar = 42; +Lslash = 8; +dollar = 15; +four = 28; +idieresis = 31; +itilde = 54; +lslash = 0; +three = 29; +}; +T = { +Oslash = -26; +a.ss05 = -108; +aacute.ss05 = -82; +abreve = -55; +abreveacute = -57; +acircumflex = -69; +acircumflexacute = -69; +acircumflexdotbelow = -69; +adieresis = -67; +adotbelow.ss05 = -104; +ae = -108; +agrave = -80; +amacron = -64; +ampersand = -18; +aring = -77; +asciitilde = -138; +atilde = -66; +equal = -105; +four = -111; +g.ss06 = -102; +h = 0; +i.ss01 = 0; +iacute = -22; +idieresis = 41; +idotless = -103; +igrave = 20; +itilde = 37; +less = -109; +logicalnot = -139; +minus = -113; +ograve = -64; +plus = -107; +racute = -56; +scaron = -5; +seven = 26; +twoinferior = -121; +udieresis = -58; +udieresis.ss01 = -54; +ugrave = -67; +uhorngrave = -67; +umacron = -51; +ycircumflex = -43; +ygrave = -48; +yhookabove = -56; +zcaron = -35; +zeroinferior = -130; +}; +Tbar = { +A = -70; +Aacute = -70; +Tbar = 16; +a = -25; +comma = -87; +e = -25; +o = -25; +period = -85; +slash = -67; +}; +Tcaron = { +a.ss05 = -107; +}; +Tcedilla = { +a.ss05 = -104; +abreve = -55; +four = -111; +}; +Tcommaaccent = { +a.ss05 = -107; +abreve = -55; +four = -111; +}; +Thorn = { +A = -24; +AE = -24; +Aacute = -24; +J = -67; +O = 25; +Oacute = 25; +V = -39; +Y = -70; +Yacute = -70; +a = 17; +aacute = 17; +e = 18; +o = 19; +oacute = 19; +period = -56; +}; +U = { +Hbar = 55; +jcircumflex = 40; +}; +V = { +four = -55; +iacute = -14; +ibreve = 77; +idieresis = 59; +igrave = 35; +itilde = 65; +minus = -46; +plus = -38; +scaron = -2; +seven = 44; +twoinferior = -54; +}; +W = { +Hbar = 75; +backslash = 61; +idieresis = 74; +igrave = 36; +itilde = 89; +}; +X = { +asciitilde = -103; +four = -37; +less = -79; +logicalnot = -118; +minus = -97; +notequal = -74; +one = -6; +plus = -93; +}; +Y = { +a.ss05 = -64; +agrave = -66; +amacron = -46; +ampersand = -20; +asciitilde = -91; +at = -26; +four = -114; +g.ss06 = -65; +igrave = 26; +less = -65; +logicalnot = -88; +minus = -76; +ograve = -50; +plus = -72; +scaron = 0; +twoinferior = -100; +}; +Z = { +four = -77; +ibreve = 84; +igrave = 47; +itilde = 67; +minus = -83; +plus = -81; +}; +_B.currency = { +_baht.bar = 0; +}; +a = { +braceright = -65; +}; +a.ss05 = { +g.ss06 = 26; +}; +acircumflexacute.ss05 = { +y = -30; +}; +adieresis.ss05 = { +germandbls = -19; +}; +ampersand = { +V = -80; +W = -48; +Y = -115; +quotedbl = -100; +quotedblleft = -147; +}; +aogonek = { +j = 2; +parenright = -13; +}; +aogonek.ss05 = { +parenright = 0; +}; +approxequal = { +parenright = -130; +parenright.case = -117; +}; +asciicircum = { +J = -163; +X = -113; +Y = -82; +bracketright = -128; +comma = -87; +comma.ss01 = -81; +four = -90; +hyphen = -189; +parenright = -134; +parenright.case = -132; +period = -85; +period.ss01 = -82; +slash = -136; +}; +asciitilde = { +I.ss02 = -165; +J = -188; +V = -116; +W = -93; +X = -155; +Y = -160; +Z = -152; +bracketright = -170; +bracketright.case = -171; +comma = -87; +comma.ss01 = -81; +eight = -74; +exclam = -88; +four = -69; +one = -119; +parenright = -162; +parenright.case = -154; +period = -85; +period.ss01 = -82; +question = -115; +quotedbl = -106; +quotedblright = -147; +seven = -106; +slash = -132; +three = -92; +two = -96; +}; +at = { +T = -71; +parenright = -81; +}; +b = { +asterisk = -56; +braceright = -75; +lslash = 14; +one = -61; +}; +backslash = { +T = -108; +V = -128; +Y = -122; +asterisk = -94; +backslash = -113; +quotedbl = -111; +quotedblleft = -122; +quotedblleft.ss01 = -130; +quotedblright = -110; +quotedblright.ss01 = -118; +quoteleft = -87; +quoteright = -87; +quotesingle = -83; +}; +baht = { +parenright = -60; +}; +braceleft = { +p = -28; +}; +bracketleft = { +asciicircum = -104; +asciitilde = -102; +bracketright = 0; +jcircumflex = 26; +p = -28; +pi = -65; +plus = -86; +x = -50; +}; +c = { +asterisk = -44; +braceright = -66; +}; +cent = { +parenright = -82; +}; +colon = { +T = -85; +Y = -45; +four = -41; +one = -17; +parenright = -39; +two = 12; +zero = 0; +}; +colon.ss01 = { +T = -82; +four = -55; +parenright = -63; +}; +comma = { +eightsuperior = -87; +fivesuperior = -87; +foursuperior = -87; +ninesuperior = -87; +onesuperior = -87; +quoteleft = -87; +quotesingle = -83; +sevensuperior = -87; +sixsuperior = -87; +threesuperior = -87; +twosuperior = -87; +}; +comma.ss01 = { +eightsuperior = -81; +fivesuperior = -81; +foursuperior = -81; +ninesuperior = -81; +onesuperior = -81; +sevensuperior = -81; +sixsuperior = -81; +threesuperior = -81; +twosuperior = -81; +}; +copyright = { +Y = -70; +parenright = -81; +}; +d = { +idieresis = 1; +igrave = 0; +itilde = 1; +}; +dcaron = { +C = 47; +H = 72; +bracketright = 26; +eightsuperior = 65; +exclam = 83; +exclam.ss01 = 83; +fivesuperior = 60; +foursuperior = 41; +h = 12; +i = 9; +j = 10; +k = 12; +l = 12; +l.ss03 = 15; +l.ss04 = 13; +ninesuperior = 73; +onesuperior = 57; +parenright = 52; +question = 107; +question.ss01 = 59; +quotedbl = 102; +quotedblleft = 99; +quotedblleft.ss01 = 68; +quoteleft = 99; +quoteleft.ss01 = 68; +quotesingle = 102; +sevensuperior = 62; +sixsuperior = 66; +t = 11; +t_i.liga = 11; +t_t.liga = 11; +threesuperior = 69; +twosuperior = 73; +zcaron = 20; +}; +dcroat = { +i = 1; +igrave = 1; +itilde = 5; +}; +degree = { +J = -137; +comma = -87; +comma.ss01 = -81; +emdash = -103; +endash = -103; +four = -94; +hyphen = -159; +parenright = -72; +parenright.case = -71; +period = -85; +period.ss01 = -82; +slash = -123; +}; +divide = { +parenright = -96; +}; +dollar = { +parenright = -68; +three = 22; +}; +e = { +asterisk = -50; +backslash = -52; +braceright = -72; +germandbls = -16; +one = -59; +seven = -61; +}; +ecircumflexacute = { +t = -16; +}; +eight = { +bracketright = -55; +degree = -33; +}; +eight.dnom = { +degree = -170; +question.ss01 = -111; +quotedbl = -97; +quotedblleft = -151; +quotedblright = -151; +}; +eightsuperior = { +comma = -87; +comma.ss01 = -81; +period = -85; +period.ss01 = -82; +slash = -76; +}; +ellipsis = { +Tbar = -154; +bracketright = -91; +eightsuperior = -205; +fivesuperior = -198; +foursuperior = -195; +ninesuperior = -208; +onesuperior = -120; +parenleft = -69; +parenleft.case = -83; +question = -109; +quoteleft = -87; +quoteright = -87; +quotesingle = -83; +sevensuperior = -173; +sixsuperior = -208; +threesuperior = -193; +twosuperior = -186; +}; +ellipsis.ss01 = { +Tbar = -153; +bracketright = -93; +eightsuperior = -205; +fivesuperior = -198; +foursuperior = -195; +ninesuperior = -208; +onesuperior = -120; +question.ss01 = -134; +quoteleft.ss01 = -81; +quoteright.ss01 = -81; +quotesingle = -83; +sevensuperior = -173; +sixsuperior = -208; +threesuperior = -193; +twosuperior = -186; +}; +emdash = { +foursuperior = -80; +question = -90; +}; +emdash.case = { +X = -65; +quotedblbase = -151; +quotedblbase.ss01 = -141; +}; +endash = { +X = -33; +endash = 0; +foursuperior = -80; +question = -91; +}; +endash.case = { +H = 0; +X = -67; +quotedblbase = -151; +quotedblbase.ss01 = -141; +}; +eng = { +bracketright = -28; +}; +eogonek = { +lslash = 17; +}; +equal = { +T = -109; +equal = -9; +parenright = -85; +parenright.case = -61; +}; +eth = { +a = 8; +e = 7; +g = 5; +hyphen = -20; +parenright = -64; +}; +euro = { +parenright = -79; +parenright.case = -41; +}; +exclamdown = { +T = -93; +V = -36; +Y = -57; +}; +f = { +igrave = 0; +n = 0; +o = -4; +}; +f_f.liga = { +igrave = 0; +}; +f_f_i.liga = { +idieresis = 1; +}; +fi = { +idieresis = 1; +}; +five = { +degree = -45; +ordmasculine = -31; +percent = -7; +}; +five.dnom = { +degree = -129; +question.ss01 = -101; +quotedblleft = -143; +}; +five.numr = { +fraction = 0; +}; +fiveinferior = { +T = -126; +}; +fivesuperior = { +comma = -87; +comma.ss01 = -81; +period = -85; +period.ss01 = -82; +slash = -73; +}; +fl = { +idieresis = 0; +itilde = 0; +periodcentered.loclCAT = 11; +}; +four = { +asciicircum = -108; +bracketright = -58; +bracketright.case = -55; +degree = -83; +ordfeminine = -62; +ordmasculine = -59; +percent = -41; +x = -25; +}; +four.dnom = { +degree = -150; +question.ss01 = -108; +quotedblleft = -151; +}; +fourinferior = { +T = -121; +V = -93; +}; +foursuperior = { +comma = -87; +comma.ss01 = -81; +period = -85; +period.ss01 = -82; +slash = -76; +}; +fraction = { +eight.dnom = 0; +four.dnom = -31; +fourinferior = -37; +seveninferior = 45; +two.dnom = 7; +zero.dnom = -4; +}; +g = { +bracketright = -32; +j = 5; +j.ss01 = 5; +parenright = -30; +slash = 16; +}; +g.ss06 = { +g.ss06 = 32; +}; +gcaron.ss06 = { +gcaron.ss06 = 32; +}; +gdotaccent = { +j = 5; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 32; +}; +germandbls = { +e = 4; +hyphen = -20; +parenright = -60; +}; +greater = { +T = -110; +parenright = -93; +}; +greaterequal = { +T = -132; +}; +guillemetleft = { +pi = 15; +}; +guillemetright = { +X = -29; +bracketright = -77; +}; +guilsinglright = { +X = -27; +}; +h = { +asterisk = -48; +}; +hyphen = { +Lslash = 15; +X = -58; +bracketright = -92; +foursuperior = -118; +pi = -44; +question = -105; +quotedblbase = -151; +quoteleft = -87; +quotesingle = -83; +x = -61; +}; +hyphen.case = { +Dcroat = 18; +X = -85; +bracketright.case = -93; +quotedblbase = -151; +quotedblbase.ss01 = -141; +quotesinglbase = -87; +}; +i = { +T = -28; +idieresis = 1; +jcircumflex = 1; +parenright = -35; +}; +i.ss01 = { +parenright = -10; +}; +iacute = { +rcaron = 1; +}; +icircumflex = { +b = 2; +h = 2; +i = 2; +icircumflex = 7; +j = 2; +k = 2; +l = 2; +l.ss03 = 0; +l.ss04 = 2; +question = 69; +quotedbl = 52; +quoteright = 43; +quotesingle = 52; +}; +idieresis = { +b = 1; +idieresis = 2; +k = 1; +l = 1; +l.ss03 = 0; +l.ss04 = 2; +}; +idotaccent = { +parenright = -35; +}; +idotaccent.ss01 = { +parenright = -10; +}; +imacron = { +b = 2; +imacron = 4; +j = 2; +k = 2; +kcommaaccent = 2; +l = 2; +l.ss04 = 2; +lcommaaccent = 2; +quotedbl = 58; +}; +infinity = { +parenright = -95; +parenright.case = -73; +}; +integral = { +a = -53; +}; +iogonek = { +j = 2; +}; +itilde = { +h = 2; +itilde = 6; +quotedbl = 61; +quotesingle = 66; +}; +j = { +j = 4; +}; +jacute = { +backslash = 54; +iogonek = 5; +}; +jcircumflex = { +i = 2; +jcircumflex = 7; +}; +k = { +oslash = 0; +}; +l = { +at = 0; +idieresis = 0; +igrave = 0; +itilde = 0; +jcircumflex = 3; +l = 0; +n = 0; +periodcentered.loclCAT = 11; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 20; +periodcentered.loclCAT.ss01 = -4; +}; +l.ss04 = { +periodcentered.loclCAT = 11; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 98; +l = 34; +ncaron = 25; +scaron = 18; +twosuperior = 95; +}; +lcaron.ss03 = { +b = 17; +eightsuperior = 70; +exclam = 83; +exclam.ss01 = 83; +fivesuperior = 64; +k = 17; +ninesuperior = 79; +onesuperior = 57; +question = 114; +quotedbl = 109; +quotesingle = 109; +sevensuperior = 68; +sixsuperior = 68; +}; +lcaron.ss04 = { +exclam.ss01 = 98; +twosuperior = 95; +}; +liraTurkish = { +one = -41; +parenright = -87; +question = -60; +quotedbl = -69; +quotesingle = -69; +seven = -57; +}; +logicalnot = { +Y = -128; +parenright = -109; +seven = -84; +}; +m = { +asterisk = -47; +braceright = -65; +twosuperior = -37; +}; +minus = { +T = -114; +X = -80; +comma = -87; +one = -69; +parenright = -96; +parenright.case = -86; +period = -85; +seven = -70; +three = -46; +two = -54; +}; +mu = { +mu = -13; +parenright = -62; +quotesingle = -42; +}; +multiply = { +parenright = -102; +parenright.case = -86; +}; +n = { +asterisk = -48; +at = 0; +braceright = -65; +degree = -104; +g.ss06 = 10; +n = 0; +one = -62; +ordmasculine = -62; +}; +ncaron = { +Yacute = -49; +}; +nine = { +bracketright = -79; +degree = -48; +}; +nine.dnom = { +degree = -184; +question = -111; +question.ss01 = -117; +quotedbl = -112; +quotedblleft = -151; +quotedblleft.ss01 = -141; +quotedblright = -151; +quotedblright.ss01 = -141; +}; +ninesuperior = { +comma = -87; +comma.ss01 = -81; +fraction = -6; +period = -85; +period.ss01 = -82; +slash = -80; +}; +notequal = { +parenright = -94; +parenright.case = -84; +}; +numbersign = { +parenright = -60; +}; +o = { +asterisk = -57; +backslash = -50; +braceright = -77; +germandbls = -19; +lslash = 16; +n = 0; +one = -63; +}; +oacute = { +lslash = 16; +}; +ocircumflexacute = { +bracketright = -15; +parenright = -11; +}; +odieresis = { +germandbls = -18; +}; +ohorn = { +i = 0; +m = 0; +n = 0; +parenright = -54; +}; +ohornacute = { +c = 7; +i = 0; +m = 0; +n = 0; +p = 0; +t = 0; +t_i.liga = 0; +t_t.liga = 0; +}; +ohorndotbelow = { +c = 7; +i = 0; +n = 0; +p = 0; +t = 0; +t_i.liga = 0; +t_t.liga = 0; +u = 4; +}; +ohorngrave = { +i = 0; +n = 0; +parenright = -54; +}; +ohornhookabove = { +i = 0; +n = 0; +}; +ohorntilde = { +i = 0; +n = 0; +}; +ohungarumlaut = { +parenright = -51; +}; +one = { +comma.ss01 = -22; +degree = -32; +equal = 0; +four = 0; +icircumflex = 29; +nine = 2; +one = 0; +parenright = -12; +percent = 0; +period.ss01 = -28; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -115; +one.dnom = 0; +question.ss01 = -106; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -87; +comma.ss01 = -81; +period = -85; +period.ss01 = -82; +slash = -83; +}; +ordfeminine = { +comma = -87; +comma.ss01 = -81; +period = -85; +period.ss01 = -82; +}; +ordmasculine = { +comma = -87; +comma.ss01 = -81; +hyphen = -81; +parenright = -54; +period = -85; +period.ss01 = -82; +slash = -93; +}; +oslash = { +d = 9; +e = 7; +g = 7; +hyphen = -19; +parenright = -46; +y = 2; +}; +p = { +asterisk = -56; +backslash = -51; +braceright = -75; +lslash = 14; +one = -63; +}; +parenleft = { +Dcroat = -34; +H = 0; +Icircumflex = 27; +Oslash = -31; +ampersand = -46; +approxequal = -132; +asciicircum = -118; +asciitilde = -116; +at = -68; +cent = -80; +copyright = -55; +degree = -55; +divide = -96; +dollar = -35; +equal = -75; +euro = -76; +greaterequal = -53; +i = -20; +idotaccent = -20; +infinity = -87; +iogonek = 32; +jcircumflex = 61; +less = -92; +literSign = -61; +logicalnot = -103; +minus = -96; +mu = -25; +multiply = -97; +notequal = -95; +numbersign = -57; +oslash = -21; +p = -9; +parenleft = -48; +pi = -51; +plus = -96; +plusminus = -46; +published = -55; +question = -23; +quotedblbase = 0; +quoteleft = -20; +radical = -75; +scaron = -25; +section = -36; +sterling = -33; +x = -40; +}; +parenleft.case = { +Icircumflex = 47; +approxequal = -117; +asciicircum = -117; +asciitilde = -102; +dollar = -34; +equal = -61; +euro = -67; +minus = -86; +numbersign = -48; +parenleft.case = -41; +plus = -86; +question = -22; +quotedblbase = 0; +quoteleft = -14; +}; +parenright = { +bracketright = -38; +comma = 0; +comma.ss01 = -26; +hyphen = -21; +parenleft = 17; +parenright = -49; +period = 0; +period.ss01 = -46; +quotedbl = -22; +}; +parenright.case = { +comma = -16; +comma.ss01 = -51; +parenright.case = -42; +period = -17; +period.ss01 = -59; +}; +percent = { +asterisk = -30; +bracketright = -34; +comma.ss01 = -35; +eightsuperior = -42; +fivesuperior = -46; +foursuperior = -83; +ninesuperior = -37; +onesuperior = -40; +parenright = -41; +parenright.case = -19; +period = 0; +period.ss01 = -44; +question = -42; +question.ss01 = -50; +quotedbl = -43; +quotedblleft = -45; +quotedblright = -43; +quoteleft = -45; +quoteright = -37; +quotesingle = -43; +sevensuperior = -46; +sixsuperior = -45; +threesuperior = -46; +twosuperior = -38; +}; +period = { +bracketright = -12; +eightsuperior = -85; +fivesuperior = -85; +foursuperior = -85; +ninesuperior = -85; +onesuperior = -85; +ordfeminine = -85; +ordmasculine = -85; +parenleft.case = -42; +question = -85; +quoteleft = -85; +quotesingle = -83; +sevensuperior = -85; +sixsuperior = -85; +threesuperior = -85; +twosuperior = -85; +}; +period.ss01 = { +bracketright = -82; +eightsuperior = -82; +fivesuperior = -82; +foursuperior = -82; +ninesuperior = -82; +onesuperior = -82; +ordfeminine = -82; +ordmasculine = -82; +question.ss01 = -82; +sevensuperior = -82; +sixsuperior = -82; +threesuperior = -82; +twosuperior = -82; +}; +periodcentered.loclCAT = { +l = 12; +l.ss03 = 15; +}; +perthousand = { +asterisk = -134; +parenright = -74; +parenright.case = -43; +question = -109; +question.ss01 = -122; +quotedblleft = -151; +quotedblleft.ss01 = -141; +quotedblright = -151; +quotedblright.ss01 = -141; +quoteleft = -87; +quoteright = -87; +}; +pi = { +hyphen = -48; +parenright = -41; +period = 21; +pi = 11; +quotesingle = -12; +}; +plus = { +J = -100; +T = -114; +V = -52; +X = -78; +Y = -89; +braceright = -93; +bracketright = -86; +comma = -87; +comma.ss01 = -81; +one = -64; +parenright = -96; +parenright.case = -86; +period = -85; +period.ss01 = -82; +quotedbl = -62; +seven = -62; +slash = -44; +three = -37; +two = -51; +}; +published = { +parenright = -81; +}; +q = { +bracketright = -29; +j = 5; +parenright = -21; +}; +question = { +A = -64; +J = -72; +comma = -73; +hyphen = -58; +parenright = -52; +parenright.case = -51; +period = -81; +question = 17; +questiondown = -86; +slash = -52; +}; +question.ss01 = { +comma.ss01 = -81; +parenright = -52; +parenright.case = -51; +period.ss01 = -82; +questiondown.ss01 = -88; +}; +questiondown.case = { +T = -90; +V = -87; +Y = -88; +quotedbl = -108; +quotedblleft = -108; +quotedblleft.ss01 = -111; +quoteright = -87; +}; +questiondown.ss01 = { +C = -101; +Q = -101; +Q.ss09 = -101; +T = -148; +V = -148; +Y = -157; +four = -105; +quotedbl = -119; +quotedblleft.ss01 = -141; +quotesingle = -83; +}; +quotedbl = { +ellipsis.ss01 = -163; +exclamdown = -24; +g.ss06 = -27; +icircumflex = 61; +mu = -22; +questiondown = -102; +questiondown.case = -63; +questiondown.ss01 = -104; +underscore = -163; +}; +quotedblbase = { +copyright = -114; +divide = -151; +equal = -151; +euro = -126; +minus = -151; +p = -5; +plus = -151; +question = -98; +quotedblright = -151; +quoteleft = -87; +}; +quotedblbase.ss01 = { +divide = -141; +minus = -141; +plus = -141; +question.ss01 = -133; +quotedblright.ss01 = -141; +}; +quotedblleft = { +g.ss06 = -43; +mu = -34; +questiondown = -96; +questiondown.case = -80; +quotedblbase = -151; +underscore = -151; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -141; +questiondown.ss01 = -118; +quotedblbase.ss01 = -141; +underscore = -141; +}; +quotedblright = { +asciitilde = -104; +questiondown = -116; +questiondown.case = -97; +quotesinglbase = -87; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -141; +questiondown.case = -93; +questiondown.ss01 = -125; +}; +quoteleft = { +questiondown = -87; +questiondown.case = -80; +quotedblbase = -87; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -81; +}; +quoteright = { +icircumflex = 60; +questiondown = -87; +quotedblbase = -87; +}; +quoteright.ss01 = { +questiondown.ss01 = -81; +quotedblbase.ss01 = -81; +}; +quotesinglbase = { +T = -87; +V = -87; +Y = -87; +minus = -87; +plus = -87; +question = -87; +quotedblleft = -87; +quoteleft = -87; +}; +quotesinglbase.ss01 = { +T = -81; +V = -81; +Y = -81; +question.ss01 = -81; +}; +quotesingle = { +Hbar = 47; +g.ss06 = -21; +icircumflex = 61; +igrave = 27; +imacron = 68; +itilde = 70; +l.ss04 = 12; +questiondown = -83; +questiondown.case = -63; +underscore = -83; +}; +r = { +braceright = -81; +fourinferior = -85; +g.ss06 = 0; +parenright = -76; +}; +radical = { +A = -83; +}; +rcaron = { +sevensuperior = 0; +}; +registered = { +comma = -87; +comma.ss01 = -81; +parenright = -86; +parenright.case = -84; +period = -85; +period.ss01 = -82; +slash = -74; +}; +s = { +asterisk = -43; +braceright = -54; +l = 0; +}; +scaron = { +T = -61; +}; +semicolon = { +hyphen = -87; +}; +seven = { +minus = -64; +percent = 18; +plus = -56; +underscore = -100; +}; +seven.dnom = { +question.ss01 = -103; +}; +seven.numr = { +fraction = -28; +}; +seveninferior = { +parenright = -75; +}; +sevensuperior = { +A = -111; +comma = -87; +comma.ss01 = -81; +fraction = -37; +period = -85; +period.ss01 = -82; +slash = -118; +}; +six = { +bracketright = -50; +degree = -35; +}; +six.dnom = { +degree = -167; +question.ss01 = -110; +quotedbl = -95; +quotedblleft = -151; +quotedblleft.ss01 = -141; +quotedblright = -151; +}; +sixinferior = { +T = -128; +}; +sixsuperior = { +comma = -87; +comma.ss01 = -81; +period = -85; +period.ss01 = -82; +slash = -74; +}; +slash = { +fourinferior = -100; +g.ss06 = -35; +ibreve = 77; +l.ss04 = 19; +mu = -41; +quotedblbase = -120; +quotedblbase.ss01 = -141; +quotesinglbase = -87; +underscore = -103; +}; +sterling = { +two = 20; +}; +t_i.liga = { +idieresis = 1; +}; +tcaron = { +b = 0; +exclam = 34; +h = 0; +hyphen = -68; +i = 0; +j = 0; +k = 0; +parenright = 41; +quotedbl = 46; +quotedblleft = 35; +quotesingle = 46; +}; +tcedilla = { +parenright = 3; +}; +tenge = { +comma = -87; +comma.ss01 = -81; +period = -85; +period.ss01 = -82; +slash = -76; +}; +three = { +bracketright = -47; +}; +three.dnom = { +degree = -167; +question.ss01 = -112; +quotedbl = -96; +quotedblleft = -151; +quotedblright = -151; +}; +three.numr = { +fraction = 0; +}; +threeinferior = { +T = -129; +V = -89; +Y = -136; +}; +threesuperior = { +comma = -87; +comma.ss01 = -81; +fraction = 0; +parenright = -41; +period = -85; +period.ss01 = -82; +slash = -77; +}; +trademark = { +comma = -87; +comma.ss01 = -81; +hyphen = -93; +period = -85; +period.ss01 = -82; +slash = -122; +}; +two = { +percent = 10; +}; +two.dnom = { +degree = -164; +question.ss01 = -108; +quotedbl = -94; +quotedblleft = -151; +quotedblright = -151; +}; +twoinferior = { +T = -127; +V = -85; +Y = -132; +}; +twosuperior = { +comma = -87; +comma.ss01 = -81; +parenright = -38; +parenright.case = -35; +period = -85; +period.ss01 = -82; +slash = -68; +}; +uhorn = { +a = -15; +ohorn = -14; +ohornacute = -14; +ohorndotbelow = -14; +ohorndotbelow.ss01 = -14; +ohorngrave = -14; +ohornhookabove = -14; +ohorntilde = -13; +}; +uhornacute = { +a = -15; +c = -15; +}; +uhorndotbelow = { +a = -15; +c = -15; +comma = -16; +period = -23; +}; +uhorngrave = { +a = -15; +a.ss05 = 0; +}; +uhornhookabove = { +a = -15; +comma = -16; +comma.ss01 = -50; +period = -19; +period.ss01 = -55; +}; +uhorntilde = { +a = -15; +comma = -16; +period = -23; +}; +uhungarumlaut = { +parenright = -42; +}; +underscore = { +C = -56; +O = -56; +T = -104; +V = -116; +W = -58; +Y = -114; +asterisk = -154; +four = -68; +one = -46; +quotedbl = -163; +quotedblright = -151; +quotedblright.ss01 = -141; +quotesingle = -83; +seven = -60; +six = -50; +v = -82; +}; +uogonek = { +j = 2; +parenright = -13; +}; +v = { +braceright = -70; +n = 0; +}; +w = { +braceright = -62; +}; +x = { +four = -47; +}; +y = { +braceright = -64; +}; +ydotbelow = { +period = -48; +}; +zero = { +braceright = -73; +bracketright = -73; +bracketright.case = -35; +degree = -44; +percent = -4; +}; +zero.dnom = { +degree = -178; +question = -112; +question.ss01 = -116; +quotedbl = -102; +quotedblleft = -151; +quotedblleft.ss01 = -141; +quotedblright = -151; +quotedblright.ss01 = -141; +quoteleft = -87; +}; +zeroinferior = { +parenright = -63; +}; +zerosuperior = { +comma = -87; +comma.ss01 = -81; +fraction = -7; +period = -85; +period.ss01 = -82; +slash = -81; +}; +}; +"63AAE8D6-1DFF-4DD4-BD9A-49272FE52904" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = -82; +"@MMK_R_KO_U" = -31; +"@MMK_R_KO_V" = -106; +"@MMK_R_KO_W" = -53; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -110; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -101; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 16; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_egrave" = -23; +"@MMK_R_KO_eightsuperior" = -75; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -79; +"@MMK_R_KO_foursuperior" = -70; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -20; +"@MMK_R_KO_hyphen.case" = -39; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 12; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -80; +"@MMK_R_KO_onesuperior" = -94; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = 14; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -63; +"@MMK_R_KO_question.ss01" = -80; +"@MMK_R_KO_quotedbl" = -87; +"@MMK_R_KO_quotedblleft" = -80; +"@MMK_R_KO_quotedblleft.ss01" = -70; +"@MMK_R_KO_quoteleft" = -80; +"@MMK_R_KO_quoteright" = -61; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = -96; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = -83; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = -47; +"@MMK_R_KO_threesuperior" = -81; +"@MMK_R_KO_trademark" = -119; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -65; +"@MMK_R_KO_w" = -38; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_X" = -9; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = 26; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -36; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = -9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 25; +"@MMK_R_KO_T" = -19; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = -23; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -10; +"@MMK_R_KO_bracketright" = -43; +"@MMK_R_KO_colon" = 26; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 12; +"@MMK_R_KO_imacron" = 7; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 14; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_parenright.case" = -44; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -26; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -40; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -24; +"@MMK_R_KO_bracketright" = -53; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 13; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 19; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 10; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 9; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -53; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_six" = 22; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -59; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_underscore" = -50; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -25; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -40; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_bracketright" = -53; +"@MMK_R_KO_colon" = 9; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -26; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_guillemetleft" = 13; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 19; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -53; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_y" = 0; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -6; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 50; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 43; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -17; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = 25; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -12; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -46; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = -61; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 23; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 21; +"@MMK_R_KO_X" = -20; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -75; +"@MMK_R_KO_comma.ss01" = -116; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -123; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 46; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_l.ss04" = 50; +"@MMK_R_KO_n" = -7; +"@MMK_R_KO_ninesuperior" = 14; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = -76; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_question" = 14; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 6; +"@MMK_R_KO_quotedblleft.ss01" = 3; +"@MMK_R_KO_quoteleft" = 6; +"@MMK_R_KO_quoteright" = 20; +"@MMK_R_KO_quoteright.ss01" = 4; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = 7; +"@MMK_R_KO_slash" = -61; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -188; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -32; +"@MMK_R_KO_Y" = -63; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 14; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = -50; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = 14; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -22; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 6; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 10; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_parenright.case" = -50; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = -28; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 18; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = -16; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -58; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -17; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -27; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -20; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asciicircum" = -28; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 17; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -36; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = -5; +"@MMK_R_KO_question.ss01" = -21; +"@MMK_R_KO_quotedbl" = -31; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -40; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = 17; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -21; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 1; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -1; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 1; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 29; +"@MMK_R_KO_imacron" = 26; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = -4; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -12; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -22; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = 6; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -60; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 49; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 44; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = 25; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -11; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_X" = -17; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -25; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -22; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 35; +"@MMK_R_KO_imacron" = 33; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = -8; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = 3; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -17; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -18; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -24; +"@MMK_R_KO_v" = 3; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = 5; +"@MMK_R_KO_O" = -41; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = 3; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -45; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asciicircum" = -83; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eightsuperior" = -13; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -53; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -92; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -53; +"@MMK_R_KO_hyphen.case" = -92; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 43; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = -11; +"@MMK_R_KO_onesuperior" = -6; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_question.ss01" = -30; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -35; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -35; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = -32; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -33; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -41; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -10; +"@MMK_R_KO_u" = -34; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -56; +"@MMK_R_KO_w" = -47; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = -33; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = -97; +"@MMK_R_KO_U" = -23; +"@MMK_R_KO_V" = -93; +"@MMK_R_KO_W" = -49; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -124; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -198; +"@MMK_R_KO_bracketright" = -6; +"@MMK_R_KO_colon" = 33; +"@MMK_R_KO_comma" = 39; +"@MMK_R_KO_comma.ss01" = 4; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = -168; +"@MMK_R_KO_ellipsis" = 7; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_fivesuperior" = -173; +"@MMK_R_KO_foursuperior" = -171; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -75; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -168; +"@MMK_R_KO_onesuperior" = -155; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = -23; +"@MMK_R_KO_period" = 39; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -86; +"@MMK_R_KO_question.ss01" = -90; +"@MMK_R_KO_quotedbl" = -114; +"@MMK_R_KO_quotedblleft" = -171; +"@MMK_R_KO_quotedblleft.ss01" = -172; +"@MMK_R_KO_quoteleft" = -123; +"@MMK_R_KO_quoteright" = -163; +"@MMK_R_KO_quoteright.ss01" = -169; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -177; +"@MMK_R_KO_six" = -30; +"@MMK_R_KO_sixsuperior" = -169; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_threesuperior" = -172; +"@MMK_R_KO_trademark" = -189; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -56; +"@MMK_R_KO_w" = -31; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 18; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -3; +"@MMK_R_KO_T" = -83; +"@MMK_R_KO_U" = -22; +"@MMK_R_KO_V" = -92; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -124; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = -11; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = -6; +"@MMK_R_KO_colon" = 33; +"@MMK_R_KO_comma" = 39; +"@MMK_R_KO_comma.ss01" = 4; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eightsuperior" = -93; +"@MMK_R_KO_ellipsis" = 7; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_fivesuperior" = -101; +"@MMK_R_KO_foursuperior" = -99; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -56; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -104; +"@MMK_R_KO_onesuperior" = -117; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = 39; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -76; +"@MMK_R_KO_question.ss01" = -85; +"@MMK_R_KO_quotedbl" = -112; +"@MMK_R_KO_quotedblleft" = -100; +"@MMK_R_KO_quotedblleft.ss01" = -90; +"@MMK_R_KO_quoteleft" = -100; +"@MMK_R_KO_quoteright" = -89; +"@MMK_R_KO_quoteright.ss01" = -99; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -124; +"@MMK_R_KO_sixsuperior" = -101; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_threesuperior" = -103; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -30; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -37; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = -53; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 11; +"@MMK_R_KO_fivesuperior" = -17; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 15; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 9; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -39; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -51; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = -9; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -62; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_underscore" = -40; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -30; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -37; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_bracketright" = -53; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 11; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 16; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -39; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -51; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = -9; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -45; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -62; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_underscore" = -40; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_X" = -32; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -4; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 18; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 8; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -42; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -9; +"@MMK_R_KO_J" = -67; +"@MMK_R_KO_O" = 28; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = -17; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_X" = -73; +"@MMK_R_KO_Y" = -37; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = -106; +"@MMK_R_KO_comma.ss01" = -118; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 11; +"@MMK_R_KO_ellipsis" = -132; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = 3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 1; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 6; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -45; +"@MMK_R_KO_period" = -107; +"@MMK_R_KO_period.ss01" = -123; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -4; +"@MMK_R_KO_quotedblleft" = 12; +"@MMK_R_KO_quotedblleft.ss01" = 5; +"@MMK_R_KO_quoteleft" = 12; +"@MMK_R_KO_quoteright" = 10; +"@MMK_R_KO_quoteright.ss01" = 17; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -15; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -54; +"@MMK_R_KO_t" = 15; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -32; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -226; +"@MMK_R_KO_v" = 17; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 22; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = -22; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -68; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -82; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = -111; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -75; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 30; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -54; +"@MMK_R_KO_ellipsis" = 4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -19; +"@MMK_R_KO_fivesuperior" = -60; +"@MMK_R_KO_foursuperior" = -44; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -24; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -58; +"@MMK_R_KO_onesuperior" = -86; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = 32; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -43; +"@MMK_R_KO_question.ss01" = -61; +"@MMK_R_KO_quotedbl" = -74; +"@MMK_R_KO_quotedblleft" = -58; +"@MMK_R_KO_quotedblleft.ss01" = -47; +"@MMK_R_KO_quoteleft" = -58; +"@MMK_R_KO_quoteright" = -34; +"@MMK_R_KO_quoteright.ss01" = -40; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = -88; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = -65; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_threesuperior" = -52; +"@MMK_R_KO_trademark" = -100; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -43; +"@MMK_R_KO_w" = -22; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 16; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -35; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -11; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 24; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -7; +"@MMK_R_KO_guillemetright" = 6; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 20; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_parenright.case" = -9; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = 7; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 7; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -19; +"@MMK_R_KO_six" = 15; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = 8; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = 18; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -15; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -24; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 15; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 19; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_trademark" = -40; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = -15; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -15; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 19; +"@MMK_R_KO_imacron" = 15; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 19; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -12; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -25; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -71; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = -67; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 26; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_X" = -19; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asciicircum" = -23; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -97; +"@MMK_R_KO_comma.ss01" = -118; +"@MMK_R_KO_e" = -51; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -118; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = -43; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -91; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_i" = -10; +"@MMK_R_KO_icircumflex" = 62; +"@MMK_R_KO_imacron" = 49; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 44; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_ninesuperior" = 3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_period.ss01" = -118; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = -40; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -87; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -16; +"@MMK_R_KO_underscore" = -104; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_X" = -17; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_imacron" = 36; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -15; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -41; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -3; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_X" = -17; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 8; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 10; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 17; +"@MMK_R_KO_I.ss02" = 39; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_T" = 37; +"@MMK_R_KO_U" = 30; +"@MMK_R_KO_V" = 41; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 42; +"@MMK_R_KO_Z" = 31; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = 40; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -28; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_eightsuperior" = 40; +"@MMK_R_KO_ellipsis" = -28; +"@MMK_R_KO_exclam" = 44; +"@MMK_R_KO_fivesuperior" = 34; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 45; +"@MMK_R_KO_onesuperior" = 26; +"@MMK_R_KO_parenright" = 35; +"@MMK_R_KO_parenright.case" = 47; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -29; +"@MMK_R_KO_question" = 19; +"@MMK_R_KO_question.ss01" = 3; +"@MMK_R_KO_quotedbl" = 38; +"@MMK_R_KO_quoteright" = 53; +"@MMK_R_KO_quoteright.ss01" = 42; +"@MMK_R_KO_sevensuperior" = 39; +"@MMK_R_KO_sixsuperior" = 30; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_threesuperior" = 47; +"@MMK_R_KO_u" = 0; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -85; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -68; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 23; +"@MMK_R_KO_X" = -13; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -40; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asciicircum" = -40; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -98; +"@MMK_R_KO_comma.ss01" = -104; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eightsuperior" = 9; +"@MMK_R_KO_ellipsis" = -114; +"@MMK_R_KO_exclam" = 15; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -38; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = -52; +"@MMK_R_KO_hyphen.case" = -32; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 36; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 42; +"@MMK_R_KO_n" = -33; +"@MMK_R_KO_ninesuperior" = 9; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -96; +"@MMK_R_KO_period.ss01" = -106; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = 10; +"@MMK_R_KO_quoteright.ss01" = 16; +"@MMK_R_KO_s" = -40; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -11; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -102; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -19; +"@MMK_R_KO_underscore" = -116; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_x" = -27; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -30; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -46; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = -37; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 16; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 23; +"@MMK_R_KO_W" = 32; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -17; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -29; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -49; +"@MMK_R_KO_comma.ss01" = -60; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -6; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -9; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 46; +"@MMK_R_KO_imacron" = 52; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 53; +"@MMK_R_KO_n" = -12; +"@MMK_R_KO_ninesuperior" = 13; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 10; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 19; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_quoteright.ss01" = 12; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -50; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = -60; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = -14; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = -36; +"@MMK_R_KO_S" = -15; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 7; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = 9; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = -44; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_asciicircum" = -72; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -53; +"@MMK_R_KO_egrave" = -36; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -48; +"@MMK_R_KO_g" = -25; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -57; +"@MMK_R_KO_hyphen.case" = -86; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 34; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 49; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -24; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -30; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -28; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -29; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -7; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -39; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -97; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -74; +"@MMK_R_KO_O" = -27; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_X" = -13; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -79; +"@MMK_R_KO_a.ss05" = -34; +"@MMK_R_KO_asciicircum" = -59; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = -41; +"@MMK_R_KO_comma" = -123; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -81; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -158; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -34; +"@MMK_R_KO_g" = -76; +"@MMK_R_KO_guillemetleft" = -93; +"@MMK_R_KO_guillemetright" = -37; +"@MMK_R_KO_hyphen" = -96; +"@MMK_R_KO_hyphen.case" = -63; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_icircumflex" = 14; +"@MMK_R_KO_imacron" = 53; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = 41; +"@MMK_R_KO_n" = -53; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = -121; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_question" = -5; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = -23; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -75; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -22; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -117; +"@MMK_R_KO_t" = -29; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_underscore" = -139; +"@MMK_R_KO_v" = -33; +"@MMK_R_KO_w" = -33; +"@MMK_R_KO_x" = -40; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = -44; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 18; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 3; +"@MMK_R_KO_W" = 15; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 28; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -24; +"@MMK_R_KO_guillemetright" = 9; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -36; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 47; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 42; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -19; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = 28; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -14; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_X" = -10; +"@MMK_R_KO_Y" = -68; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -27; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -39; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -32; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -47; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -84; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -75; +"@MMK_R_KO_W" = -41; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -116; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asciicircum" = -68; +"@MMK_R_KO_bracketright" = -9; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 22; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -41; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -48; +"@MMK_R_KO_foursuperior" = -36; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -48; +"@MMK_R_KO_onesuperior" = -88; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_period" = 20; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -51; +"@MMK_R_KO_question.ss01" = -69; +"@MMK_R_KO_quotedbl" = -64; +"@MMK_R_KO_quotedblleft" = -51; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteleft" = -51; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -31; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -79; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = -62; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -42; +"@MMK_R_KO_trademark" = -101; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_X" = 4; +"@MMK_R_KO_Y" = -75; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_bracketright" = -6; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 22; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -41; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -48; +"@MMK_R_KO_foursuperior" = -36; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -17; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -47; +"@MMK_R_KO_onesuperior" = -77; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_period" = 20; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = -46; +"@MMK_R_KO_question.ss01" = -62; +"@MMK_R_KO_quotedbl" = -61; +"@MMK_R_KO_quotedblleft" = -49; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -31; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -73; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = -56; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -41; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_x" = 3; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_T" = -109; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_t" = -28; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -86; +"@MMK_R_KO_H" = -28; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_i" = -32; +"@MMK_R_KO_n" = -32; +"@MMK_R_KO_t" = -4; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -61; +"@MMK_R_KO_H" = -19; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = -77; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -78; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -77; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = 4; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -123; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -30; +"@MMK_R_KO_guillemetleft" = -53; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -89; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_nine" = 17; +"@MMK_R_KO_one" = 3; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = -34; +"@MMK_R_KO_period" = -121; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = 13; +"@MMK_R_KO_quotedblleft" = 16; +"@MMK_R_KO_quotedblleft.ss01" = 8; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = -28; +"@MMK_R_KO_seven" = 25; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 3; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = 10; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = -11; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -17; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -56; +"@MMK_R_KO_a.ss05" = -24; +"@MMK_R_KO_asterisk" = -4; +"@MMK_R_KO_colon" = -23; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -39; +"@MMK_R_KO_f" = -35; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -56; +"@MMK_R_KO_g" = -18; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = -61; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 52; +"@MMK_R_KO_n" = -37; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = -27; +"@MMK_R_KO_period" = -30; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = -57; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = -43; +"@MMK_R_KO_three" = -12; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -48; +"@MMK_R_KO_v" = -64; +"@MMK_R_KO_w" = -53; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = -25; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -28; +"@MMK_R_KO_S" = -5; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_asterisk" = -9; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_five" = -3; +"@MMK_R_KO_four" = -47; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_nine" = -4; +"@MMK_R_KO_one" = -32; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = -5; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_slash" = 7; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -84; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -31; +"@MMK_R_KO_X" = -25; +"@MMK_R_KO_Y" = -105; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -56; +"@MMK_R_KO_bracketright" = -49; +"@MMK_R_KO_colon" = 26; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -36; +"@MMK_R_KO_foursuperior" = -28; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -36; +"@MMK_R_KO_onesuperior" = -45; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = -41; +"@MMK_R_KO_question.ss01" = -59; +"@MMK_R_KO_quotedbl" = -48; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteleft" = -38; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 16; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -44; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -31; +"@MMK_R_KO_trademark" = -84; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -16; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -9; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -123; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_eight" = -16; +"@MMK_R_KO_five" = -26; +"@MMK_R_KO_four" = -5; +"@MMK_R_KO_guillemetleft" = -44; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = -36; +"@MMK_R_KO_hyphen.case" = -112; +"@MMK_R_KO_nine" = -30; +"@MMK_R_KO_one" = -94; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -9; +"@MMK_R_KO_quotedbl" = -123; +"@MMK_R_KO_quotedblleft" = -123; +"@MMK_R_KO_quoteright" = -123; +"@MMK_R_KO_seven" = -82; +"@MMK_R_KO_six" = -54; +"@MMK_R_KO_three" = -20; +"@MMK_R_KO_two" = 5; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -83; +"@MMK_R_KO_H" = -19; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_f" = -4; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_n" = -31; +"@MMK_R_KO_t" = -5; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -88; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = -115; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -68; +"@MMK_R_KO_bracketright" = -50; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -35; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_fivesuperior" = -45; +"@MMK_R_KO_foursuperior" = -34; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -77; +"@MMK_R_KO_parenright" = -66; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -53; +"@MMK_R_KO_question.ss01" = -73; +"@MMK_R_KO_quotedbl" = -60; +"@MMK_R_KO_quotedblleft" = -50; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -50; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -63; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -53; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -40; +"@MMK_R_KO_trademark" = -96; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -18; +"@MMK_R_KO_v" = -29; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -47; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -68; +"@MMK_R_KO_W" = -34; +"@MMK_R_KO_X" = -19; +"@MMK_R_KO_Y" = -69; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -38; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_fivesuperior" = -45; +"@MMK_R_KO_foursuperior" = -34; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 3; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -66; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -48; +"@MMK_R_KO_question.ss01" = -64; +"@MMK_R_KO_quotedbl" = -56; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteleft" = -48; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -58; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -52; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_threesuperior" = -38; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -18; +"@MMK_R_KO_v" = -29; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = -22; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 5; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asterisk" = -16; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 17; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = 10; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = -6; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 7; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = -13; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 16; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 16; +"@MMK_R_KO_two" = 12; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -18; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = -64; +"@MMK_R_KO_S" = -30; +"@MMK_R_KO_T" = -120; +"@MMK_R_KO_U" = -44; +"@MMK_R_KO_V" = -130; +"@MMK_R_KO_W" = -71; +"@MMK_R_KO_Y" = -158; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asterisk" = -151; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -38; +"@MMK_R_KO_eight" = -27; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -40; +"@MMK_R_KO_five" = -33; +"@MMK_R_KO_four" = -20; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -49; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -39; +"@MMK_R_KO_hyphen.case" = -136; +"@MMK_R_KO_i" = -18; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_nine" = -35; +"@MMK_R_KO_one" = -109; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -235; +"@MMK_R_KO_quotedblleft" = -247; +"@MMK_R_KO_quoteright" = -247; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_seven" = -93; +"@MMK_R_KO_six" = -55; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = -58; +"@MMK_R_KO_three" = -29; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_v" = -86; +"@MMK_R_KO_w" = -51; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -25; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = -119; +"@MMK_R_KO_U" = -36; +"@MMK_R_KO_V" = -117; +"@MMK_R_KO_W" = -68; +"@MMK_R_KO_Y" = -163; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asterisk" = -151; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_f" = -46; +"@MMK_R_KO_five" = -25; +"@MMK_R_KO_four" = -9; +"@MMK_R_KO_g" = -32; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_hyphen.case" = -130; +"@MMK_R_KO_i" = -25; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_nine" = -27; +"@MMK_R_KO_one" = -102; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = -235; +"@MMK_R_KO_quotedblleft.ss01" = -246; +"@MMK_R_KO_quoteright.ss01" = -246; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_seven" = -98; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = -57; +"@MMK_R_KO_three" = -21; +"@MMK_R_KO_two" = -9; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_v" = -79; +"@MMK_R_KO_w" = -47; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -89; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -63; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_Y" = -109; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eight" = 16; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 23; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -2; +"@MMK_R_KO_one" = -67; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = -60; +"@MMK_R_KO_quotedblleft" = -57; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = -73; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -15; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -4; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = 23; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = 36; +"@MMK_R_KO_W" = 41; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 17; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 36; +"@MMK_R_KO_comma" = -43; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 1; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 20; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = 27; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = 14; +"@MMK_R_KO_foursuperior" = 17; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 24; +"@MMK_R_KO_onesuperior" = 8; +"@MMK_R_KO_parenright" = -9; +"@MMK_R_KO_period" = -45; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 26; +"@MMK_R_KO_question.ss01" = 3; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = 17; +"@MMK_R_KO_quotedblleft.ss01" = 22; +"@MMK_R_KO_quoteleft" = 17; +"@MMK_R_KO_quoteright" = 38; +"@MMK_R_KO_quoteright.ss01" = 32; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 9; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_sixsuperior" = 21; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = 16; +"@MMK_R_KO_threesuperior" = 23; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -43; +"@MMK_R_KO_v" = 19; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -32; +"@MMK_R_KO_H" = 8; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = 23; +"@MMK_R_KO_U" = 21; +"@MMK_R_KO_V" = 36; +"@MMK_R_KO_W" = 41; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = 17; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 36; +"@MMK_R_KO_comma" = -43; +"@MMK_R_KO_comma.ss01" = -58; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 20; +"@MMK_R_KO_ellipsis" = -55; +"@MMK_R_KO_exclam" = 28; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = 14; +"@MMK_R_KO_foursuperior" = 17; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 39; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 24; +"@MMK_R_KO_onesuperior" = 8; +"@MMK_R_KO_parenright" = -9; +"@MMK_R_KO_period" = -45; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = 26; +"@MMK_R_KO_question.ss01" = 3; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = 17; +"@MMK_R_KO_quotedblleft.ss01" = 22; +"@MMK_R_KO_quoteleft" = 17; +"@MMK_R_KO_quoteright" = 38; +"@MMK_R_KO_quoteright.ss01" = 32; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 9; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_sixsuperior" = 21; +"@MMK_R_KO_slash" = -31; +"@MMK_R_KO_t" = 16; +"@MMK_R_KO_threesuperior" = 23; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -43; +"@MMK_R_KO_v" = 19; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -34; +"@MMK_R_KO_bracketright" = -6; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -1; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -1; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 7; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -9; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_period" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -8; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -12; +"@MMK_R_KO_trademark" = -25; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_underscore" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = -10; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asterisk" = -17; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 4; +"@MMK_R_KO_egrave" = 4; +"@MMK_R_KO_eight" = 20; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 10; +"@MMK_R_KO_four" = 17; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = -14; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -22; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_seven" = -7; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_three" = 15; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -42; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -47; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eight" = 22; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_f" = -16; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 16; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -18; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -41; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_parenright.case" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_quotedbl" = -48; +"@MMK_R_KO_quotedblleft" = -52; +"@MMK_R_KO_quotedblleft.ss01" = -39; +"@MMK_R_KO_quoteright" = -40; +"@MMK_R_KO_quoteright.ss01" = -36; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -38; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = -12; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_X" = 17; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = 4; +"@MMK_R_KO_colon" = 25; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_comma.ss01" = 20; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -25; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = 7; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 3; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 47; +"@MMK_R_KO_l.ss04" = 6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -17; +"@MMK_R_KO_parenright" = -3; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = -22; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = 32; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -31; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 15; +"@MMK_R_KO_v" = -10; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = -4; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -37; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = -25; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eight" = -8; +"@MMK_R_KO_ellipsis" = -15; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -17; +"@MMK_R_KO_four" = -16; +"@MMK_R_KO_g" = -21; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -28; +"@MMK_R_KO_hyphen.case" = -30; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -9; +"@MMK_R_KO_parenright" = -39; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = -30; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = -16; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -17; +"@MMK_R_KO_H" = -10; +"@MMK_R_KO_I.ss02" = -32; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -80; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -70; +"@MMK_R_KO_W" = -33; +"@MMK_R_KO_Y" = -120; +"@MMK_R_KO_Z" = -11; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -76; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -37; +"@MMK_R_KO_comma.ss01" = -40; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 12; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 13; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -37; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -12; +"@MMK_R_KO_nine" = -19; +"@MMK_R_KO_one" = -41; +"@MMK_R_KO_parenright" = -86; +"@MMK_R_KO_parenright.case" = -69; +"@MMK_R_KO_period" = -37; +"@MMK_R_KO_period.ss01" = -42; +"@MMK_R_KO_quotedbl" = -72; +"@MMK_R_KO_quotedblleft" = -61; +"@MMK_R_KO_quotedblleft.ss01" = -38; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -34; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_seven" = -47; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = -26; +"@MMK_R_KO_three" = -4; +"@MMK_R_KO_two" = -33; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = -31; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -88; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_Y" = -108; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 18; +"@MMK_R_KO_a.ss05" = 3; +"@MMK_R_KO_asterisk" = -111; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 19; +"@MMK_R_KO_egrave" = 19; +"@MMK_R_KO_eight" = 17; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 24; +"@MMK_R_KO_g" = 19; +"@MMK_R_KO_guillemetleft" = 13; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_n" = 1; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -49; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = -59; +"@MMK_R_KO_quotedblleft" = -56; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -53; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -27; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -60; +"@MMK_R_KO_J" = -69; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = -63; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -13; +"@MMK_R_KO_Y" = -79; +"@MMK_R_KO_Z" = -29; +"@MMK_R_KO_asterisk" = -32; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -88; +"@MMK_R_KO_comma.ss01" = -96; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 3; +"@MMK_R_KO_four" = 11; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen.case" = 5; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright.case" = -59; +"@MMK_R_KO_period" = -88; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -46; +"@MMK_R_KO_three" = -17; +"@MMK_R_KO_two" = -20; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -34; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = -1; +"@MMK_R_KO_egrave" = -1; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -17; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = -1; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -25; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -16; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -13; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -37; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -27; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_underscore" = -2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 7; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 24; +"@MMK_R_KO_U" = 19; +"@MMK_R_KO_V" = 29; +"@MMK_R_KO_W" = 26; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = 31; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = 31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 15; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 22; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 7; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 8; +"@MMK_R_KO_imacron" = 27; +"@MMK_R_KO_j" = 13; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 16; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 6; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 13; +"@MMK_R_KO_quoteright.ss01" = 19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 15; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 12; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 6; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_X" = 15; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asciicircum" = -18; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = -25; +"@MMK_R_KO_egrave" = -25; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -9; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = -56; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -25; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = 3; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -31; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = -13; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_threesuperior" = -23; +"@MMK_R_KO_trademark" = -48; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -7; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -33; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -15; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -7; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -15; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -27; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -10; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -8; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = -16; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asciicircum" = -44; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 38; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 4; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_onesuperior" = -19; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_period" = 18; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -7; +"@MMK_R_KO_question.ss01" = -23; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -20; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -24; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -34; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 11; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 171; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 42; +"@MMK_R_KO_eightsuperior" = 153; +"@MMK_R_KO_exclam" = 156; +"@MMK_R_KO_f" = 61; +"@MMK_R_KO_fivesuperior" = 148; +"@MMK_R_KO_foursuperior" = 90; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 138; +"@MMK_R_KO_j" = 129; +"@MMK_R_KO_l.ss04" = 181; +"@MMK_R_KO_n" = 7; +"@MMK_R_KO_ninesuperior" = 157; +"@MMK_R_KO_onesuperior" = 168; +"@MMK_R_KO_parenright" = 140; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = 128; +"@MMK_R_KO_question.ss01" = 128; +"@MMK_R_KO_quotedbl" = 172; +"@MMK_R_KO_quotedblleft" = 117; +"@MMK_R_KO_quotedblleft.ss01" = 136; +"@MMK_R_KO_quoteleft" = 117; +"@MMK_R_KO_sevensuperior" = 177; +"@MMK_R_KO_sixsuperior" = 152; +"@MMK_R_KO_slash" = 6; +"@MMK_R_KO_t" = 68; +"@MMK_R_KO_threesuperior" = 159; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_z" = 83; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = -31; +"@MMK_R_KO_O" = -22; +"@MMK_R_KO_T" = -123; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_i" = -27; +"@MMK_R_KO_n" = -28; +"@MMK_R_KO_t" = -27; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -69; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -60; +"@MMK_R_KO_W" = -33; +"@MMK_R_KO_X" = -6; +"@MMK_R_KO_Y" = -97; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -49; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -30; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -25; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -75; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = -35; +"@MMK_R_KO_question.ss01" = -40; +"@MMK_R_KO_quotedbl" = -47; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -43; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -31; +"@MMK_R_KO_trademark" = -83; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -19; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -79; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -65; +"@MMK_R_KO_W" = -33; +"@MMK_R_KO_X" = -24; +"@MMK_R_KO_Y" = -108; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -59; +"@MMK_R_KO_bracketright" = -49; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -35; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -39; +"@MMK_R_KO_foursuperior" = -30; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 4; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 17; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -74; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = -43; +"@MMK_R_KO_question.ss01" = -56; +"@MMK_R_KO_quotedbl" = -53; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -42; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -52; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_trademark" = -90; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -20; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_x" = -24; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -40; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_Y" = -63; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_bracketright" = -44; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = -35; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -42; +"@MMK_R_KO_foursuperior" = -33; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 6; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -41; +"@MMK_R_KO_onesuperior" = -46; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = -39; +"@MMK_R_KO_question.ss01" = -53; +"@MMK_R_KO_quotedbl" = -54; +"@MMK_R_KO_quotedblleft" = -45; +"@MMK_R_KO_quotedblleft.ss01" = -31; +"@MMK_R_KO_quoteleft" = -45; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -46; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -37; +"@MMK_R_KO_trademark" = -90; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -22; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -12; +"@MMK_R_KO_x" = -24; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -38; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -39; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_S" = -42; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -74; +"@MMK_R_KO_a.ss05" = -56; +"@MMK_R_KO_asterisk" = -34; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -75; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eight" = -39; +"@MMK_R_KO_ellipsis" = -68; +"@MMK_R_KO_f" = -47; +"@MMK_R_KO_five" = -13; +"@MMK_R_KO_four" = -69; +"@MMK_R_KO_g" = -58; +"@MMK_R_KO_guillemetleft" = -86; +"@MMK_R_KO_guillemetright" = -48; +"@MMK_R_KO_hyphen" = -70; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 34; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_nine" = -38; +"@MMK_R_KO_one" = -41; +"@MMK_R_KO_parenright" = 13; +"@MMK_R_KO_period" = -56; +"@MMK_R_KO_period.ss01" = -61; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -49; +"@MMK_R_KO_quotedblleft.ss01" = -40; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -22; +"@MMK_R_KO_s" = -69; +"@MMK_R_KO_seven" = -6; +"@MMK_R_KO_six" = -52; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -51; +"@MMK_R_KO_three" = -38; +"@MMK_R_KO_two" = -38; +"@MMK_R_KO_u" = -63; +"@MMK_R_KO_v" = -54; +"@MMK_R_KO_w" = -57; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -51; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = -4; +"@MMK_R_KO_H" = -13; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -9; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -42; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = -8; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_W" = -5; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_asterisk" = -39; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_eight" = -39; +"@MMK_R_KO_ellipsis" = -34; +"@MMK_R_KO_five" = -22; +"@MMK_R_KO_four" = -42; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = -45; +"@MMK_R_KO_hyphen.case" = -61; +"@MMK_R_KO_nine" = -40; +"@MMK_R_KO_one" = -46; +"@MMK_R_KO_parenright.case" = 3; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -52; +"@MMK_R_KO_quotedblleft.ss01" = -44; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -30; +"@MMK_R_KO_seven" = -17; +"@MMK_R_KO_six" = -51; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_three" = -38; +"@MMK_R_KO_two" = -9; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = 33; +"@MMK_R_KO_O" = -58; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -104; +"@MMK_R_KO_U" = -38; +"@MMK_R_KO_V" = -108; +"@MMK_R_KO_W" = -59; +"@MMK_R_KO_Y" = -121; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -121; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_eight" = -12; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_five" = -21; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -40; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -34; +"@MMK_R_KO_hyphen.case" = -108; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -25; +"@MMK_R_KO_one" = -93; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -121; +"@MMK_R_KO_quotedblleft" = -121; +"@MMK_R_KO_quoteright" = -121; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -83; +"@MMK_R_KO_six" = -40; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = -49; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -72; +"@MMK_R_KO_w" = -42; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -25; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = -119; +"@MMK_R_KO_U" = -36; +"@MMK_R_KO_V" = -117; +"@MMK_R_KO_W" = -68; +"@MMK_R_KO_Y" = -126; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asterisk" = -126; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_eight" = -18; +"@MMK_R_KO_f" = -46; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = -6; +"@MMK_R_KO_g" = -32; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -21; +"@MMK_R_KO_hyphen.case" = -110; +"@MMK_R_KO_i" = -25; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_nine" = -26; +"@MMK_R_KO_one" = -101; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = -126; +"@MMK_R_KO_quotedblleft.ss01" = -126; +"@MMK_R_KO_quoteright.ss01" = -126; +"@MMK_R_KO_s" = -11; +"@MMK_R_KO_seven" = -90; +"@MMK_R_KO_six" = -35; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = -57; +"@MMK_R_KO_three" = -18; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_v" = -79; +"@MMK_R_KO_w" = -47; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -71; +"@MMK_R_KO_S" = -44; +"@MMK_R_KO_T" = -107; +"@MMK_R_KO_U" = -60; +"@MMK_R_KO_V" = -121; +"@MMK_R_KO_W" = -67; +"@MMK_R_KO_Y" = -145; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -43; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_eight" = -38; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = -47; +"@MMK_R_KO_four" = -81; +"@MMK_R_KO_g" = -15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_j" = 44; +"@MMK_R_KO_nine" = -53; +"@MMK_R_KO_one" = -91; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_quotedbl" = -114; +"@MMK_R_KO_quotedblleft" = -106; +"@MMK_R_KO_quoteright" = -90; +"@MMK_R_KO_s" = -28; +"@MMK_R_KO_seven" = -80; +"@MMK_R_KO_six" = -68; +"@MMK_R_KO_t" = -62; +"@MMK_R_KO_three" = -42; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -35; +"@MMK_R_KO_v" = -83; +"@MMK_R_KO_w" = -48; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -80; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -78; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -25; +"@MMK_R_KO_asterisk" = 18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -123; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = -235; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -48; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -42; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -45; +"@MMK_R_KO_hyphen.case" = -22; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = -121; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -33; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_slash" = -91; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 2; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = -24; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -18; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -69; +"@MMK_R_KO_S" = -33; +"@MMK_R_KO_T" = -121; +"@MMK_R_KO_U" = -49; +"@MMK_R_KO_V" = -127; +"@MMK_R_KO_W" = -74; +"@MMK_R_KO_Y" = -158; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asterisk" = -123; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_egrave" = -41; +"@MMK_R_KO_eight" = -30; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_f" = -40; +"@MMK_R_KO_five" = -36; +"@MMK_R_KO_four" = -25; +"@MMK_R_KO_g" = -27; +"@MMK_R_KO_guillemetleft" = -53; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -39; +"@MMK_R_KO_hyphen.case" = -119; +"@MMK_R_KO_i" = -19; +"@MMK_R_KO_j" = 38; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = -39; +"@MMK_R_KO_one" = -111; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_quotedblleft" = -247; +"@MMK_R_KO_quoteright" = -123; +"@MMK_R_KO_s" = -20; +"@MMK_R_KO_seven" = -92; +"@MMK_R_KO_six" = -61; +"@MMK_R_KO_slash" = 25; +"@MMK_R_KO_t" = -62; +"@MMK_R_KO_three" = -32; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -32; +"@MMK_R_KO_v" = -81; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -23; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -44; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = -113; +"@MMK_R_KO_U" = -34; +"@MMK_R_KO_V" = -114; +"@MMK_R_KO_W" = -66; +"@MMK_R_KO_Y" = -158; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -27; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asterisk" = -126; +"@MMK_R_KO_comma.ss01" = 2; +"@MMK_R_KO_e" = -29; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eight" = -18; +"@MMK_R_KO_f" = -46; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = -6; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -110; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_j" = 39; +"@MMK_R_KO_n" = -21; +"@MMK_R_KO_nine" = -26; +"@MMK_R_KO_one" = -101; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -126; +"@MMK_R_KO_quoteright.ss01" = -126; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = -90; +"@MMK_R_KO_six" = -40; +"@MMK_R_KO_slash" = 36; +"@MMK_R_KO_t" = -57; +"@MMK_R_KO_three" = -18; +"@MMK_R_KO_two" = -7; +"@MMK_R_KO_u" = -26; +"@MMK_R_KO_v" = -75; +"@MMK_R_KO_w" = -46; +"@MMK_R_KO_y" = -25; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -63; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -74; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 20; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -123; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_ellipsis" = -247; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -35; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_nine" = 11; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -6; +"@MMK_R_KO_period" = -121; +"@MMK_R_KO_quotedbl" = 12; +"@MMK_R_KO_quotedblleft" = 4; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = 32; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_slash" = -83; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -60; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -75; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 25; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asterisk" = 16; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -29; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -24; +"@MMK_R_KO_parenright.case" = -16; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteright.ss01" = 16; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_seven" = 13; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -15; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 1; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_Y" = -10; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -40; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asterisk" = 19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -123; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_egrave" = -37; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -247; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -38; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -65; +"@MMK_R_KO_hyphen.case" = -29; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_j" = -16; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = 11; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_parenright.case" = -33; +"@MMK_R_KO_period" = -121; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_s" = -36; +"@MMK_R_KO_seven" = 12; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_slash" = -99; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -20; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -63; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -72; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 20; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_Y" = 23; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -14; +"@MMK_R_KO_a.ss05" = -12; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -123; +"@MMK_R_KO_e" = -14; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_ellipsis" = -123; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -35; +"@MMK_R_KO_g" = -10; +"@MMK_R_KO_guillemetleft" = -29; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_nine" = 11; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -6; +"@MMK_R_KO_period" = -121; +"@MMK_R_KO_quotedbl" = 12; +"@MMK_R_KO_quotedblleft" = 4; +"@MMK_R_KO_quoteright" = 21; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = 32; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -7; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -82; +"@MMK_R_KO_H" = -6; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 1; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 4; +"@MMK_R_KO_Y" = -9; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -41; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asterisk" = 19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -123; +"@MMK_R_KO_e" = -41; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -123; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -74; +"@MMK_R_KO_g" = -37; +"@MMK_R_KO_guillemetleft" = -61; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -69; +"@MMK_R_KO_hyphen.case" = -30; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = 10; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_parenright.case" = -31; +"@MMK_R_KO_period" = -121; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_s" = -36; +"@MMK_R_KO_seven" = 11; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -100; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_v" = -4; +"@MMK_R_KO_w" = -7; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -73; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -82; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = 3; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 11; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -30; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asterisk" = 9; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -24; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -49; +"@MMK_R_KO_g" = -28; +"@MMK_R_KO_guillemetleft" = -40; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -42; +"@MMK_R_KO_hyphen.case" = -13; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -27; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period.ss01" = -126; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_seven" = 10; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -89; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -77; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -78; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 12; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asterisk" = 18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -114; +"@MMK_R_KO_comma.ss01" = -114; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -114; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -48; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -42; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -45; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -29; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = -114; +"@MMK_R_KO_period.ss01" = -114; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -33; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_slash" = -91; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 2; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_v" = -6; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -41; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -11; +"@MMK_R_KO_J" = -67; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -77; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = -21; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -10; +"@MMK_R_KO_bracketright" = -59; +"@MMK_R_KO_colon" = 32; +"@MMK_R_KO_comma" = -78; +"@MMK_R_KO_comma.ss01" = -82; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 8; +"@MMK_R_KO_ellipsis" = -90; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 22; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -8; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_period" = -77; +"@MMK_R_KO_period.ss01" = -83; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 8; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -28; +"@MMK_R_KO_six" = 14; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -49; +"@MMK_R_KO_t" = 21; +"@MMK_R_KO_threesuperior" = 9; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -79; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 11; +"@MMK_R_KO_x" = -7; +"@MMK_R_KO_y" = 12; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -71; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -58; +"@MMK_R_KO_W" = -30; +"@MMK_R_KO_X" = -16; +"@MMK_R_KO_Y" = -99; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = -41; +"@MMK_R_KO_colon" = 30; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -29; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -32; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -32; +"@MMK_R_KO_onesuperior" = -73; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = -33; +"@MMK_R_KO_question.ss01" = -41; +"@MMK_R_KO_quotedbl" = -42; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -33; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -39; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -78; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -4; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -70; +"@MMK_R_KO_V" = -15; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_bracketright" = -39; +"@MMK_R_KO_colon" = 30; +"@MMK_R_KO_comma" = 17; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -31; +"@MMK_R_KO_foursuperior" = -23; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -31; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -53; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_question" = -28; +"@MMK_R_KO_question.ss01" = -39; +"@MMK_R_KO_quotedbl" = -40; +"@MMK_R_KO_quotedblleft" = -32; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteleft" = -31; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_sixsuperior" = -39; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_x" = -10; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -73; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = -65; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = 20; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 20; +"@MMK_R_KO_W" = 34; +"@MMK_R_KO_Y" = 11; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -38; +"@MMK_R_KO_asterisk" = 22; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -96; +"@MMK_R_KO_comma.ss01" = -103; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eight" = 11; +"@MMK_R_KO_ellipsis" = -113; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -49; +"@MMK_R_KO_g" = -32; +"@MMK_R_KO_guillemetleft" = -52; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -54; +"@MMK_R_KO_hyphen.case" = -24; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = 24; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = -96; +"@MMK_R_KO_period.ss01" = -104; +"@MMK_R_KO_quotedbl" = 12; +"@MMK_R_KO_quotedblleft" = 13; +"@MMK_R_KO_quotedblleft.ss01" = 5; +"@MMK_R_KO_quoteright" = 22; +"@MMK_R_KO_quoteright.ss01" = 6; +"@MMK_R_KO_s" = -33; +"@MMK_R_KO_seven" = 24; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -91; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 15; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = -12; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = 17; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asterisk" = -8; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eight" = 22; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 16; +"@MMK_R_KO_g" = 4; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 16; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 8; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_parenright.case" = -40; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 22; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -91; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = -66; +"@MMK_R_KO_O" = -13; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_Y" = 5; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -39; +"@MMK_R_KO_a.ss05" = -24; +"@MMK_R_KO_asterisk" = 14; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_comma.ss01" = -109; +"@MMK_R_KO_e" = -46; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -120; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -54; +"@MMK_R_KO_g" = -41; +"@MMK_R_KO_guillemetleft" = -58; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -62; +"@MMK_R_KO_hyphen.case" = -41; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -12; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -111; +"@MMK_R_KO_period.ss01" = -112; +"@MMK_R_KO_quotedbl" = 17; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = 7; +"@MMK_R_KO_quoteright.ss01" = 17; +"@MMK_R_KO_s" = -42; +"@MMK_R_KO_seven" = 29; +"@MMK_R_KO_six" = -13; +"@MMK_R_KO_slash" = -115; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = -5; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_v" = -20; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_y" = -7; +"@MMK_R_KO_z" = -30; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -15; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -51; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_comma.ss01" = -14; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -13; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_period" = 5; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -3; +"@MMK_R_KO_quotedblleft.ss01" = -8; +"@MMK_R_KO_quoteleft" = -3; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -35; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 6; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -60; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -12; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -12; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asterisk" = -12; +"@MMK_R_KO_colon" = 25; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 19; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 14; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 10; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_quotedbl" = -17; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 19; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 13; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asterisk" = -12; +"@MMK_R_KO_colon" = 27; +"@MMK_R_KO_comma" = 25; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -9; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = 31; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -18; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = 5; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 14; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -52; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = -49; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = -21; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -66; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = -3; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -13; +"@MMK_R_KO_bracketright" = -53; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = -57; +"@MMK_R_KO_comma.ss01" = -66; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -70; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -17; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_period" = -53; +"@MMK_R_KO_period.ss01" = -62; +"@MMK_R_KO_question" = 2; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -36; +"@MMK_R_KO_six" = 15; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -63; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_threesuperior" = -11; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -78; +"@MMK_R_KO_v" = 17; +"@MMK_R_KO_w" = 16; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 16; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 14; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -44; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = -53; +"@MMK_R_KO_colon" = 24; +"@MMK_R_KO_comma" = -35; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -44; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -27; +"@MMK_R_KO_parenright" = -57; +"@MMK_R_KO_period" = -37; +"@MMK_R_KO_period.ss01" = -45; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -36; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -34; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = -47; +"@MMK_R_KO_v" = 15; +"@MMK_R_KO_w" = 25; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 15; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = -9; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = 18; +"@MMK_R_KO_Y" = -47; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = -8; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = -13; +"@MMK_R_KO_guillemetleft" = -47; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -58; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -27; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -8; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -9; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -9; +"@MMK_R_KO_quoteright" = -33; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = -3; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -61; +"@MMK_R_KO_u" = -4; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -57; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -25; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = 25; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -15; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -40; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -41; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -67; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -13; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = 25; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -18; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -19; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -14; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_sixsuperior" = -17; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 15; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -13; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -27; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -35; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_Y" = -63; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 14; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asterisk" = -20; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 14; +"@MMK_R_KO_egrave" = 14; +"@MMK_R_KO_eight" = 15; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_f" = 9; +"@MMK_R_KO_five" = 11; +"@MMK_R_KO_four" = 23; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = 11; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -51; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_seven" = -4; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_three" = 7; +"@MMK_R_KO_two" = -4; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -19; +Tbar = -67; +asciitilde = -71; +asterisk = -89; +backslash = -83; +g.ss06 = 14; +minus = -54; +one = -61; +ordmasculine = -85; +plus = -48; +quotedbl = -87; +registered = -78; +seven = -67; +two = 4; +twosuperior = -56; +}; +Aacute = { +Tbar = -67; +}; +Abrevedotbelow.ss01 = { +T = -83; +}; +Aogonek = { +comma = 37; +parenright = 19; +}; +Atilde = { +ordfeminine = -84; +}; +B = { +Hbar = 35; +hbar = 20; +idieresis = 23; +itilde = 31; +}; +C = { +h = 0; +l = 0; +plus = 0; +three = 25; +}; +D = { +Lslash = 25; +Oslash = 25; +braceright = -54; +bracketright.case = -35; +}; +E = { +H = 0; +idieresis = 65; +}; +Eogonek = { +comma = 36; +}; +F = { +fourinferior = -48; +i = 0; +igrave = 28; +}; +G = { +Lslash = 27; +lslash = 14; +}; +Germandbls = { +S = 18; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = 0; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 7; +itilde = 47; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 30; +D = 30; +E = 30; +H = 30; +Hbar = 98; +I = 30; +L = 30; +M = 30; +O = 44; +R = 30; +S = 52; +U = 43; +W = 50; +i = 24; +}; +I = { +Hbar = 30; +I = 0; +jcircumflex = 40; +}; +Icircumflex = { +Icircumflex = 48; +l.ss04 = 28; +}; +Imacron = { +Imacron = 49; +}; +Itilde = { +itilde = 52; +}; +J = { +Hbar = 36; +itilde = 52; +}; +Jacute = { +Imacron = 22; +}; +K = { +asciitilde = -120; +four = -36; +idieresis = 55; +igrave = 28; +itilde = 50; +less = -59; +logicalnot = -121; +minus = -106; +one = -33; +oslash = 0; +plus = -90; +}; +L = { +H = 0; +Tbar = -71; +asciitilde = -75; +asterisk = -151; +backslash = -83; +equal = 0; +four = 0; +less = -20; +logicalnot = -128; +minus = -76; +one = -80; +ordfeminine = -174; +ordmasculine = -171; +oslash = 0; +plus = -69; +quotedbl = -175; +quoteleft.ss01 = -126; +quoteright = -123; +quoteright.ss01 = -126; +registered = -128; +seven = -77; +twosuperior = -166; +}; +Lcaron = { +A = 14; +O = -24; +U = -5; +Uacute = -5; +V = -5; +a = -11; +hyphen = 0; +hyphen.case = -67; +u = -8; +v = -40; +}; +Lcommaaccent = { +twosuperior = -166; +}; +Lslash = { +twosuperior = -94; +}; +M = { +Hbar = 30; +idieresis = 44; +igrave = 7; +itilde = 47; +}; +N = { +Hbar = 30; +idieresis = 43; +igrave = 6; +itilde = 47; +}; +O = { +Dcroat = 20; +Lslash = 26; +braceright = -60; +bracketright.case = -25; +itilde = 6; +}; +Oslash = { +T = 0; +V = 0; +Y = 0; +parenright = 0; +parenright.case = 8; +}; +P = { +fourinferior = -66; +idieresis = 22; +itilde = 33; +two = 0; +}; +R = { +Hbar = 41; +jcircumflex = 35; +two = 17; +}; +S = { +Hbar = 35; +Lslash = 23; +dollar = 2; +four = 16; +idieresis = 19; +itilde = 23; +lslash = 13; +three = 23; +}; +T = { +Oslash = 0; +a.ss05 = -46; +aacute.ss05 = -43; +abreve = -35; +abreveacute = -35; +acircumflex = -35; +acircumflexacute = -35; +acircumflexdotbelow = -35; +adieresis = -35; +adotbelow.ss05 = -46; +ae = -47; +agrave = -43; +amacron = -35; +ampersand = -23; +aring = -45; +asciitilde = -91; +atilde = -35; +equal = 0; +four = -70; +g.ss06 = -42; +h = 0; +i.ss01 = -12; +iacute = -16; +idieresis = 65; +idotless = -21; +igrave = 24; +itilde = 76; +less = -10; +logicalnot = -140; +minus = -72; +ograve = -39; +plus = -71; +racute = -20; +scaron = -17; +seven = 18; +twoinferior = -110; +udieresis = -8; +udieresis.ss01 = -15; +ugrave = -16; +uhorngrave = -16; +umacron = -16; +ycircumflex = 0; +ygrave = 0; +yhookabove = 0; +zcaron = -9; +zeroinferior = -111; +}; +Tbar = { +A = -59; +Aacute = -59; +Tbar = 28; +a = -32; +comma = -73; +e = -32; +o = -33; +period = -76; +slash = -68; +}; +Tcaron = { +a.ss05 = -46; +}; +Tcedilla = { +a.ss05 = -46; +abreve = -35; +four = -70; +}; +Tcommaaccent = { +a.ss05 = -46; +abreve = -35; +four = -70; +}; +Thorn = { +A = -19; +AE = -19; +Aacute = -19; +J = -24; +O = 21; +Oacute = 21; +V = -38; +Y = -78; +Yacute = -78; +a = 16; +aacute = 16; +e = 18; +o = 17; +oacute = 17; +period = -30; +}; +U = { +Hbar = 40; +jcircumflex = 40; +}; +V = { +four = -49; +iacute = -23; +ibreve = 51; +idieresis = 63; +igrave = 30; +itilde = 63; +minus = -49; +plus = -42; +scaron = 0; +seven = 32; +twoinferior = -72; +}; +W = { +Hbar = 54; +backslash = 46; +idieresis = 64; +igrave = 27; +itilde = 70; +}; +X = { +asciitilde = -126; +four = -39; +less = -53; +logicalnot = -129; +minus = -103; +notequal = -68; +one = -27; +plus = -84; +}; +Y = { +a.ss05 = -77; +agrave = -66; +amacron = -52; +ampersand = -37; +asciitilde = -121; +at = -49; +four = -100; +g.ss06 = -73; +igrave = 32; +less = -50; +logicalnot = -101; +minus = -80; +ograve = -46; +plus = -77; +scaron = -11; +twoinferior = -117; +}; +Z = { +four = 0; +ibreve = 44; +igrave = 26; +itilde = 65; +minus = -53; +plus = -48; +}; +_B.currency = { +_baht.bar = 0; +}; +a = { +braceright = -28; +}; +a.ss05 = { +g.ss06 = 14; +}; +acircumflexacute.ss05 = { +y = -18; +}; +adieresis.ss05 = { +germandbls = -9; +}; +ampersand = { +V = -83; +W = -47; +Y = -126; +quotedbl = -78; +quotedblleft = -69; +}; +aogonek = { +j = 13; +parenright = -7; +}; +aogonek.ss05 = { +parenright = 6; +}; +approxequal = { +parenright = -70; +parenright.case = -58; +}; +asciicircum = { +J = -105; +X = -106; +Y = -69; +bracketright = -76; +comma = -123; +comma.ss01 = -126; +four = -56; +hyphen = -85; +parenright = -88; +parenright.case = -77; +period = -121; +period.ss01 = -126; +slash = -108; +}; +asciitilde = { +I.ss02 = -71; +J = -89; +V = -64; +W = -39; +X = -126; +Y = -100; +Z = -76; +bracketright = -85; +bracketright.case = -85; +comma = -106; +comma.ss01 = -102; +eight = -27; +exclam = -28; +four = -12; +one = -5; +parenright = -94; +parenright.case = -85; +period = -107; +period.ss01 = -102; +question = -31; +quotedbl = -46; +quotedblright = 0; +seven = -14; +slash = -81; +three = -33; +two = -27; +}; +at = { +T = -40; +parenright = -77; +}; +b = { +asterisk = -63; +braceright = -50; +lslash = 13; +one = -30; +}; +backslash = { +T = -91; +V = -111; +Y = -120; +asterisk = -95; +backslash = -99; +quotedbl = -96; +quotedblleft = -85; +quotedblleft.ss01 = -79; +quotedblright = -66; +quotedblright.ss01 = -73; +quoteleft = -85; +quoteright = -67; +quotesingle = -96; +}; +baht = { +parenright = -64; +}; +braceleft = { +p = -2; +}; +bracketleft = { +asciicircum = -65; +asciitilde = -94; +bracketright = 18; +jcircumflex = 61; +p = 0; +pi = -50; +plus = -67; +x = -16; +}; +c = { +asterisk = -63; +braceright = -51; +}; +cent = { +parenright = -79; +}; +colon = { +T = -10; +Y = -58; +four = 0; +one = 0; +parenright = -39; +two = 21; +zero = 21; +}; +colon.ss01 = { +T = -18; +four = -9; +parenright = -50; +}; +comma = { +eightsuperior = -123; +fivesuperior = -123; +foursuperior = -123; +ninesuperior = -123; +onesuperior = -123; +quoteleft = -123; +quotesingle = -114; +sevensuperior = -123; +sixsuperior = -123; +threesuperior = -123; +twosuperior = -123; +}; +comma.ss01 = { +eightsuperior = -126; +fivesuperior = -126; +foursuperior = -126; +ninesuperior = -126; +onesuperior = -126; +sevensuperior = -126; +sixsuperior = -126; +threesuperior = -126; +twosuperior = -126; +}; +copyright = { +Y = -96; +parenright = -82; +}; +d = { +idieresis = 17; +igrave = 0; +itilde = 13; +}; +dcaron = { +C = 95; +H = 154; +bracketright = 172; +eightsuperior = 154; +exclam = 157; +exclam.ss01 = 156; +fivesuperior = 149; +foursuperior = 91; +h = 140; +i = 130; +j = 130; +k = 139; +l = 140; +l.ss03 = 145; +l.ss04 = 182; +ninesuperior = 158; +onesuperior = 169; +parenright = 141; +question = 129; +question.ss01 = 129; +quotedbl = 173; +quotedblleft = 118; +quotedblleft.ss01 = 137; +quoteleft = 118; +quoteleft.ss01 = 137; +quotesingle = 173; +sevensuperior = 178; +sixsuperior = 153; +t = 69; +t_i.liga = 69; +t_t.liga = 69; +threesuperior = 160; +twosuperior = 154; +zcaron = 84; +}; +dcroat = { +i = 0; +igrave = 6; +itilde = 34; +}; +degree = { +J = -88; +comma = -123; +comma.ss01 = -126; +emdash = -54; +endash = -54; +four = -60; +hyphen = -51; +parenright = -70; +parenright.case = -59; +period = -121; +period.ss01 = -126; +slash = -95; +}; +divide = { +parenright = -71; +}; +dollar = { +parenright = -73; +three = 6; +}; +e = { +asterisk = -75; +backslash = -49; +braceright = -51; +germandbls = -8; +one = -34; +seven = -39; +}; +ecircumflexacute = { +t = -9; +}; +eight = { +bracketright = -34; +degree = -31; +}; +eight.dnom = { +degree = -157; +question.ss01 = -100; +quotedbl = -112; +quotedblleft = -108; +quotedblright = -70; +}; +eightsuperior = { +comma = -123; +comma.ss01 = -126; +period = -121; +period.ss01 = -126; +slash = -73; +}; +ellipsis = { +Tbar = -109; +bracketright = -28; +eightsuperior = -203; +fivesuperior = -202; +foursuperior = -210; +ninesuperior = -208; +onesuperior = -155; +parenleft = -32; +parenleft.case = -46; +question = -100; +quoteleft = -123; +quoteright = -123; +quotesingle = -114; +sevensuperior = -192; +sixsuperior = -208; +threesuperior = -196; +twosuperior = -193; +}; +ellipsis.ss01 = { +Tbar = -98; +bracketright = -23; +eightsuperior = -203; +fivesuperior = -202; +foursuperior = -210; +ninesuperior = -208; +onesuperior = -155; +question.ss01 = -110; +quoteleft.ss01 = -126; +quoteright.ss01 = -126; +quotesingle = -114; +sevensuperior = -192; +sixsuperior = -208; +threesuperior = -196; +twosuperior = -193; +}; +emdash = { +foursuperior = -41; +question = -99; +}; +emdash.case = { +X = -92; +quotedblbase = -125; +quotedblbase.ss01 = -120; +}; +endash = { +X = -51; +endash = 0; +foursuperior = -41; +question = -99; +}; +endash.case = { +H = -2; +X = -92; +quotedblbase = -125; +quotedblbase.ss01 = -120; +}; +eng = { +bracketright = -6; +}; +eogonek = { +lslash = 12; +}; +equal = { +T = 0; +equal = 0; +parenright = -60; +parenright.case = -48; +}; +eth = { +a = 8; +e = 8; +g = 7; +hyphen = 17; +parenright = -50; +}; +euro = { +parenright = -74; +parenright.case = -57; +}; +exclamdown = { +T = -24; +V = -38; +Y = -74; +}; +f = { +igrave = 8; +n = -2; +o = 0; +}; +f_f.liga = { +igrave = 8; +}; +f_f_i.liga = { +idieresis = 13; +}; +fi = { +idieresis = 13; +}; +five = { +degree = -32; +ordmasculine = -22; +percent = -15; +}; +five.dnom = { +degree = -111; +question.ss01 = -101; +quotedblleft = -68; +}; +five.numr = { +fraction = -10; +}; +fiveinferior = { +T = -108; +}; +fivesuperior = { +comma = -123; +comma.ss01 = -126; +period = -121; +period.ss01 = -126; +slash = -77; +}; +fl = { +idieresis = 16; +itilde = 12; +periodcentered.loclCAT = 30; +}; +four = { +asciicircum = -79; +bracketright = -48; +bracketright.case = -34; +degree = -65; +ordfeminine = -50; +ordmasculine = -52; +percent = -41; +x = -28; +}; +four.dnom = { +degree = -126; +question.ss01 = -106; +quotedblleft = -80; +}; +fourinferior = { +T = -106; +V = -87; +}; +foursuperior = { +comma = -123; +comma.ss01 = -126; +period = -121; +period.ss01 = -126; +slash = -77; +}; +fraction = { +eight.dnom = -2; +four.dnom = -38; +fourinferior = -40; +seveninferior = 31; +two.dnom = -7; +zero.dnom = -4; +}; +g = { +bracketright = -14; +j = 12; +j.ss01 = 12; +parenright = -35; +slash = 4; +}; +g.ss06 = { +g.ss06 = 17; +}; +gcaron.ss06 = { +gcaron.ss06 = 17; +}; +gdotaccent = { +j = 12; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 17; +}; +germandbls = { +e = 2; +hyphen = 7; +parenright = -57; +}; +greater = { +T = -32; +parenright = -56; +}; +greaterequal = { +T = -32; +}; +guillemetleft = { +pi = 0; +}; +guillemetright = { +X = -72; +bracketright = -72; +}; +guilsinglright = { +X = -43; +}; +h = { +asterisk = -49; +}; +hyphen = { +Lslash = 26; +X = -40; +bracketright = -60; +foursuperior = -41; +pi = 0; +question = -99; +quotedblbase = -19; +quoteleft = -52; +quotesingle = -59; +x = -44; +}; +hyphen.case = { +Dcroat = 24; +X = -79; +bracketright.case = -60; +quotedblbase = -125; +quotedblbase.ss01 = -120; +quotesinglbase = -100; +}; +i = { +T = 0; +idieresis = 13; +jcircumflex = 12; +parenright = -37; +}; +i.ss01 = { +parenright = -29; +}; +iacute = { +rcaron = 0; +}; +icircumflex = { +b = 0; +h = 0; +i = 0; +icircumflex = 61; +j = 12; +k = 0; +l = 0; +l.ss03 = 4; +l.ss04 = 60; +question = 50; +quotedbl = 45; +quoteright = 35; +quotesingle = 45; +}; +idieresis = { +b = 24; +idieresis = 59; +k = 23; +l = 24; +l.ss03 = 29; +l.ss04 = 69; +}; +idotaccent = { +parenright = -37; +}; +idotaccent.ss01 = { +parenright = -29; +}; +imacron = { +b = 7; +imacron = 61; +j = 12; +k = 6; +kcommaaccent = 6; +l = 7; +l.ss04 = 56; +lcommaaccent = 7; +quotedbl = 35; +}; +infinity = { +parenright = -78; +parenright.case = -61; +}; +integral = { +a = -44; +}; +iogonek = { +j = 12; +}; +itilde = { +h = 11; +itilde = 41; +quotedbl = 57; +quotesingle = 57; +}; +j = { +j = 12; +}; +jacute = { +backslash = 46; +iogonek = 0; +}; +jcircumflex = { +i = 0; +jcircumflex = 63; +}; +k = { +oslash = 0; +}; +l = { +at = 0; +idieresis = 17; +igrave = 0; +itilde = 12; +jcircumflex = 13; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 2; +}; +l.ss03 = { +periodcentered.loclCAT = 13; +periodcentered.loclCAT.ss01 = -6; +}; +l.ss04 = { +periodcentered.loclCAT = 30; +periodcentered.loclCAT.ss01 = 2; +}; +lcaron = { +exclam.ss01 = 155; +l = 139; +ncaron = 42; +scaron = 71; +twosuperior = 153; +}; +lcaron.ss03 = { +b = 124; +eightsuperior = 138; +exclam = 152; +exclam.ss01 = 154; +fivesuperior = 133; +k = 123; +ninesuperior = 142; +onesuperior = 153; +question = 113; +quotedbl = 157; +quotesingle = 157; +sevensuperior = 162; +sixsuperior = 137; +}; +lcaron.ss04 = { +exclam.ss01 = 155; +twosuperior = 153; +}; +liraTurkish = { +one = -81; +parenright = -84; +question = -95; +quotedbl = -77; +quotesingle = -77; +seven = -88; +}; +logicalnot = { +Y = -131; +parenright = -94; +seven = -46; +}; +m = { +asterisk = -49; +braceright = -25; +twosuperior = -17; +}; +minus = { +T = -80; +X = -92; +comma = -88; +one = 0; +parenright = -84; +parenright.case = -76; +period = -88; +seven = -8; +three = -9; +two = -26; +}; +mu = { +mu = -13; +parenright = -55; +quotesingle = -39; +}; +multiply = { +parenright = -70; +parenright.case = -62; +}; +n = { +asterisk = -49; +at = -2; +braceright = -25; +degree = -67; +g.ss06 = 3; +n = 0; +one = -25; +ordmasculine = -45; +}; +ncaron = { +Yacute = -36; +}; +nine = { +bracketright = -51; +degree = -38; +}; +nine.dnom = { +degree = -167; +question = -90; +question.ss01 = -102; +quotedbl = -123; +quotedblleft = -119; +quotedblleft.ss01 = -75; +quotedblright = -80; +quotedblright.ss01 = -70; +}; +ninesuperior = { +comma = -123; +comma.ss01 = -126; +fraction = -2; +period = -121; +period.ss01 = -126; +slash = -81; +}; +notequal = { +parenright = -83; +parenright.case = -71; +}; +numbersign = { +parenright = -53; +}; +o = { +asterisk = -72; +backslash = -46; +braceright = -54; +germandbls = -5; +lslash = 14; +n = 0; +one = -33; +}; +oacute = { +lslash = 14; +}; +ocircumflexacute = { +bracketright = 24; +parenright = 29; +}; +odieresis = { +germandbls = -5; +}; +ohorn = { +i = 12; +m = 11; +n = 12; +parenright = -35; +}; +ohornacute = { +c = 15; +i = 12; +m = 11; +n = 12; +p = 12; +t = 23; +t_i.liga = 23; +t_t.liga = 23; +}; +ohorndotbelow = { +c = 15; +i = 12; +n = 12; +p = 12; +t = 23; +t_i.liga = 23; +t_t.liga = 23; +u = 20; +}; +ohorngrave = { +i = 12; +n = 12; +parenright = -33; +}; +ohornhookabove = { +i = 12; +n = 12; +}; +ohorntilde = { +i = 12; +n = 12; +}; +ohungarumlaut = { +parenright = -2; +}; +one = { +comma.ss01 = -21; +degree = -21; +equal = 0; +four = 0; +icircumflex = 23; +nine = 0; +one = 0; +parenright = -22; +percent = 0; +period.ss01 = -27; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -111; +one.dnom = 0; +question.ss01 = -103; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -123; +comma.ss01 = -126; +period = -121; +period.ss01 = -126; +slash = -76; +}; +ordfeminine = { +comma = -123; +comma.ss01 = -126; +period = -121; +period.ss01 = -126; +}; +ordmasculine = { +comma = -123; +comma.ss01 = -126; +hyphen = -34; +parenright = -57; +period = -121; +period.ss01 = -126; +slash = -85; +}; +oslash = { +d = 10; +e = 10; +g = 9; +hyphen = 18; +parenright = -38; +y = 0; +}; +p = { +asterisk = -63; +backslash = -44; +braceright = -50; +lslash = 13; +one = -31; +}; +parenleft = { +Dcroat = -34; +H = 0; +Icircumflex = 52; +Oslash = -40; +ampersand = -57; +approxequal = -81; +asciicircum = -85; +asciitilde = -106; +at = -71; +cent = -75; +copyright = -68; +degree = -51; +divide = -69; +dollar = -52; +equal = -52; +euro = -72; +greaterequal = -41; +i = -15; +idotaccent = -15; +infinity = -70; +iogonek = 6; +jcircumflex = 52; +less = -52; +literSign = -69; +logicalnot = -99; +minus = -83; +mu = -36; +multiply = -71; +notequal = -81; +numbersign = -51; +oslash = -25; +p = -4; +parenleft = -57; +pi = -54; +plus = -79; +plusminus = -34; +published = -68; +question = -42; +quotedblbase = 3; +quoteleft = -49; +radical = -67; +scaron = -19; +section = -45; +sterling = -49; +x = -39; +}; +parenleft.case = { +Icircumflex = 30; +approxequal = -59; +asciicircum = -88; +asciitilde = -95; +dollar = -56; +equal = -48; +euro = -63; +minus = -77; +numbersign = -43; +parenleft.case = -46; +plus = -67; +question = -37; +quotedblbase = -24; +quoteleft = -52; +}; +parenright = { +bracketright = -27; +comma = 0; +comma.ss01 = -13; +hyphen = 15; +parenleft = 12; +parenright = -57; +period = 0; +period.ss01 = -20; +quotedbl = -29; +}; +parenright.case = { +comma = 0; +comma.ss01 = -19; +parenright.case = -46; +period = -5; +period.ss01 = -24; +}; +percent = { +asterisk = -92; +bracketright = -48; +comma.ss01 = -20; +eightsuperior = -87; +fivesuperior = -90; +foursuperior = -104; +ninesuperior = -86; +onesuperior = -80; +parenright = -73; +parenright.case = -50; +period = 0; +period.ss01 = -23; +question = -78; +question.ss01 = -94; +quotedbl = -84; +quotedblleft = -100; +quotedblright = -77; +quoteleft = -100; +quoteright = -74; +quotesingle = -84; +sevensuperior = -80; +sixsuperior = -89; +threesuperior = -85; +twosuperior = -48; +}; +period = { +bracketright = -9; +eightsuperior = -121; +fivesuperior = -121; +foursuperior = -121; +ninesuperior = -121; +onesuperior = -121; +ordfeminine = -121; +ordmasculine = -121; +parenleft.case = -38; +question = -97; +quoteleft = -121; +quotesingle = -114; +sevensuperior = -121; +sixsuperior = -121; +threesuperior = -121; +twosuperior = -121; +}; +period.ss01 = { +bracketright = -23; +eightsuperior = -126; +fivesuperior = -126; +foursuperior = -126; +ninesuperior = -126; +onesuperior = -126; +ordfeminine = -126; +ordmasculine = -126; +question.ss01 = -110; +sevensuperior = -126; +sixsuperior = -126; +threesuperior = -126; +twosuperior = -126; +}; +periodcentered.loclCAT = { +l = 30; +l.ss03 = 36; +}; +perthousand = { +asterisk = -151; +parenright = -75; +parenright.case = -57; +question = -96; +question.ss01 = -117; +quotedblleft = -122; +quotedblleft.ss01 = -79; +quotedblright = -83; +quotedblright.ss01 = -73; +quoteleft = -122; +quoteright = -84; +}; +pi = { +hyphen = 0; +parenright = -50; +period = 0; +pi = 11; +quotesingle = -20; +}; +plus = { +J = -70; +T = -73; +V = -54; +X = -85; +Y = -94; +braceright = -74; +bracketright = -67; +comma = -78; +comma.ss01 = -82; +one = 0; +parenright = -82; +parenright.case = -66; +period = -79; +period.ss01 = -85; +quotedbl = -36; +seven = -6; +slash = -56; +three = -7; +two = -23; +}; +published = { +parenright = -82; +}; +q = { +bracketright = 0; +j = 14; +parenright = -6; +}; +question = { +A = -56; +J = -73; +comma = -88; +hyphen = -16; +parenright = -55; +parenright.case = -45; +period = -88; +question = 0; +questiondown = -83; +slash = -71; +}; +question.ss01 = { +comma.ss01 = -93; +parenright = -55; +parenright.case = -45; +period.ss01 = -94; +questiondown.ss01 = -85; +}; +questiondown.case = { +T = -88; +V = -88; +Y = -111; +quotedbl = -99; +quotedblleft = -98; +quotedblleft.ss01 = -99; +quoteright = -94; +}; +questiondown.ss01 = { +C = -90; +Q = -90; +Q.ss09 = -90; +T = -119; +V = -133; +Y = -159; +four = -94; +quotedbl = -136; +quotedblleft.ss01 = -110; +quotesingle = -114; +}; +quotedbl = { +ellipsis.ss01 = -235; +exclamdown = -31; +g.ss06 = -32; +icircumflex = 48; +mu = -29; +questiondown = -109; +questiondown.case = -72; +questiondown.ss01 = -102; +underscore = -235; +}; +quotedblbase = { +copyright = -105; +divide = -115; +equal = -40; +euro = -106; +minus = -132; +p = -10; +plus = -124; +question = -103; +quotedblright = -247; +quoteleft = -123; +}; +quotedblbase.ss01 = { +divide = -78; +minus = -90; +plus = -84; +question.ss01 = -110; +quotedblright.ss01 = -246; +}; +quotedblleft = { +g.ss06 = -8; +mu = -19; +questiondown = -102; +questiondown.case = -50; +quotedblbase = -247; +underscore = -237; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -246; +questiondown.ss01 = -92; +quotedblbase.ss01 = -246; +underscore = -237; +}; +quotedblright = { +asciitilde = -85; +questiondown = -115; +questiondown.case = -84; +quotesinglbase = -123; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -246; +questiondown.case = -67; +questiondown.ss01 = -106; +}; +quoteleft = { +questiondown = -100; +questiondown.case = -50; +quotedblbase = -123; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -126; +}; +quoteright = { +icircumflex = 53; +questiondown = -115; +quotedblbase = -123; +}; +quoteright.ss01 = { +questiondown.ss01 = -110; +quotedblbase.ss01 = -126; +}; +quotesinglbase = { +T = -121; +V = -123; +Y = -123; +minus = -123; +plus = -123; +question = -103; +quotedblleft = -123; +quoteleft = -123; +}; +quotesinglbase.ss01 = { +T = -116; +V = -114; +Y = -126; +question.ss01 = -110; +}; +quotesingle = { +Hbar = 47; +g.ss06 = -32; +icircumflex = 48; +igrave = 11; +imacron = 38; +itilde = 64; +l.ss04 = 33; +questiondown = -109; +questiondown.case = -72; +underscore = -114; +}; +r = { +braceright = -61; +fourinferior = -65; +g.ss06 = 0; +parenright = -65; +}; +radical = { +A = -84; +}; +rcaron = { +sevensuperior = 0; +}; +registered = { +comma = -99; +comma.ss01 = -104; +parenright = -77; +parenright.case = -65; +period = -100; +period.ss01 = -106; +slash = -66; +}; +s = { +asterisk = -49; +braceright = -41; +l = 0; +}; +scaron = { +T = -28; +}; +semicolon = { +hyphen = -5; +}; +seven = { +minus = -40; +percent = 10; +plus = -37; +underscore = -112; +}; +seven.dnom = { +question.ss01 = -100; +}; +seven.numr = { +fraction = -34; +}; +seveninferior = { +parenright = -75; +}; +sevensuperior = { +A = -92; +comma = -123; +comma.ss01 = -126; +fraction = -33; +period = -121; +period.ss01 = -126; +slash = -117; +}; +six = { +bracketright = -33; +degree = -26; +}; +six.dnom = { +degree = -157; +question.ss01 = -100; +quotedbl = -112; +quotedblleft = -107; +quotedblleft.ss01 = -66; +quotedblright = -70; +}; +sixinferior = { +T = -107; +}; +sixsuperior = { +comma = -123; +comma.ss01 = -126; +period = -121; +period.ss01 = -126; +slash = -76; +}; +slash = { +fourinferior = -94; +g.ss06 = -42; +ibreve = 44; +l.ss04 = 46; +mu = -36; +quotedblbase = -117; +quotedblbase.ss01 = -109; +quotesinglbase = -117; +underscore = -131; +}; +sterling = { +two = 10; +}; +t_i.liga = { +idieresis = 13; +}; +tcaron = { +b = 53; +exclam = 93; +h = 53; +hyphen = 0; +i = 47; +j = 55; +k = 52; +parenright = 66; +quotedbl = 90; +quotedblleft = 57; +quotesingle = 90; +}; +tcedilla = { +parenright = 0; +}; +tenge = { +comma = -101; +comma.ss01 = -119; +period = -101; +period.ss01 = -119; +slash = -65; +}; +three = { +bracketright = -31; +}; +three.dnom = { +degree = -152; +question.ss01 = -100; +quotedbl = -106; +quotedblleft = -102; +quotedblright = -66; +}; +three.numr = { +fraction = -2; +}; +threeinferior = { +T = -105; +V = -84; +Y = -138; +}; +threesuperior = { +comma = -123; +comma.ss01 = -126; +fraction = 0; +parenright = -40; +period = -121; +period.ss01 = -126; +slash = -74; +}; +trademark = { +comma = -123; +comma.ss01 = -126; +hyphen = -46; +period = -121; +period.ss01 = -126; +slash = -99; +}; +two = { +percent = 0; +}; +two.dnom = { +degree = -156; +question.ss01 = -103; +quotedbl = -110; +quotedblleft = -106; +quotedblright = -69; +}; +twoinferior = { +T = -109; +V = -85; +Y = -142; +}; +twosuperior = { +comma = -123; +comma.ss01 = -126; +parenright = -42; +parenright.case = -33; +period = -121; +period.ss01 = -126; +slash = -63; +}; +uhorn = { +a = -7; +ohorn = -11; +ohornacute = -11; +ohorndotbelow = -11; +ohorndotbelow.ss01 = -11; +ohorngrave = -11; +ohornhookabove = -11; +ohorntilde = -10; +}; +uhornacute = { +a = -7; +c = -11; +}; +uhorndotbelow = { +a = -7; +c = -11; +comma = -23; +period = -26; +}; +uhorngrave = { +a = -7; +a.ss05 = -3; +}; +uhornhookabove = { +a = -7; +comma = -25; +comma.ss01 = -40; +period = -26; +period.ss01 = -42; +}; +uhorntilde = { +a = -7; +comma = -25; +period = -26; +}; +uhungarumlaut = { +parenright = -5; +}; +underscore = { +C = -102; +O = -101; +T = -103; +V = -130; +W = -66; +Y = -141; +asterisk = -151; +four = -126; +one = -93; +quotedbl = -235; +quotedblright = -237; +quotedblright.ss01 = -237; +quotesingle = -114; +seven = -75; +six = -87; +v = -90; +}; +uogonek = { +j = 13; +parenright = -7; +}; +v = { +braceright = -62; +n = 0; +}; +w = { +braceright = -55; +}; +x = { +four = -39; +}; +y = { +braceright = -60; +}; +ydotbelow = { +period = -47; +}; +zero = { +braceright = -44; +bracketright = -44; +bracketright.case = -19; +degree = -33; +percent = -2; +}; +zero.dnom = { +degree = -162; +question = -90; +question.ss01 = -104; +quotedbl = -117; +quotedblleft = -112; +quotedblleft.ss01 = -71; +quotedblright = -74; +quotedblright.ss01 = -66; +quoteleft = -112; +}; +zeroinferior = { +parenright = -59; +}; +zerosuperior = { +comma = -123; +comma.ss01 = -126; +fraction = -4; +period = -121; +period.ss01 = -126; +slash = -81; +}; +}; +"C17B1F32-8075-45B4-AA59-7DAFF0D7E404" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 35; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 37; +"@MMK_R_KO_J" = 31; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_S" = -24; +"@MMK_R_KO_T" = -139; +"@MMK_R_KO_U" = -47; +"@MMK_R_KO_V" = -170; +"@MMK_R_KO_W" = -114; +"@MMK_R_KO_X" = 34; +"@MMK_R_KO_Y" = -149; +"@MMK_R_KO_Z" = 35; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -5; +"@MMK_R_KO_asciicircum" = -169; +"@MMK_R_KO_bracketright" = -81; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eightsuperior" = -106; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_fivesuperior" = -116; +"@MMK_R_KO_foursuperior" = -98; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -35; +"@MMK_R_KO_hyphen.case" = -65; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -114; +"@MMK_R_KO_onesuperior" = -110; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 7; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -81; +"@MMK_R_KO_question.ss01" = -104; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -138; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_sevensuperior" = -140; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_sixsuperior" = -125; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = -50; +"@MMK_R_KO_threesuperior" = -105; +"@MMK_R_KO_trademark" = -189; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_underscore" = 17; +"@MMK_R_KO_v" = -104; +"@MMK_R_KO_w" = -67; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = -72; +"@MMK_R_KO_z" = 20; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = -30; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = -2; +"@MMK_R_KO_Y" = -31; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asciicircum" = -37; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -16; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 11; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_hyphen.case" = -5; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 62; +"@MMK_R_KO_imacron" = 83; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = -16; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 20; +"@MMK_R_KO_sevensuperior" = -20; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = -5; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = -6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -21; +"@MMK_R_KO_J" = -18; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 30; +"@MMK_R_KO_T" = -60; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_X" = -20; +"@MMK_R_KO_Y" = -52; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = -87; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -41; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -52; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 8; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 40; +"@MMK_R_KO_imacron" = 37; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -47; +"@MMK_R_KO_parenright" = -87; +"@MMK_R_KO_parenright.case" = -62; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -46; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -14; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -67; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -31; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -26; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -40; +"@MMK_R_KO_J" = -40; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -77; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -53; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = -33; +"@MMK_R_KO_Y" = -63; +"@MMK_R_KO_Z" = -27; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = -81; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -28; +"@MMK_R_KO_comma.ss01" = -47; +"@MMK_R_KO_e" = 28; +"@MMK_R_KO_egrave" = 28; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -71; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 26; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 33; +"@MMK_R_KO_hyphen.case" = 32; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 48; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -97; +"@MMK_R_KO_parenright.case" = -57; +"@MMK_R_KO_period" = -28; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -47; +"@MMK_R_KO_six" = 26; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = 18; +"@MMK_R_KO_underscore" = -41; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -26; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -40; +"@MMK_R_KO_J" = -40; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = -77; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -53; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = -33; +"@MMK_R_KO_Y" = -63; +"@MMK_R_KO_Z" = -27; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_bracketright" = -81; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -28; +"@MMK_R_KO_comma.ss01" = -47; +"@MMK_R_KO_e" = 28; +"@MMK_R_KO_egrave" = 28; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -71; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_guillemetleft" = 26; +"@MMK_R_KO_hyphen" = 33; +"@MMK_R_KO_hyphen.case" = 32; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -97; +"@MMK_R_KO_parenright.case" = -57; +"@MMK_R_KO_period" = -28; +"@MMK_R_KO_period.ss01" = -58; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = -13; +"@MMK_R_KO_quotedblleft" = -33; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -29; +"@MMK_R_KO_quoteright" = -18; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_sevensuperior" = -47; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 18; +"@MMK_R_KO_y" = 0; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 8; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 30; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 26; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = 21; +"@MMK_R_KO_Z" = 26; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -29; +"@MMK_R_KO_asciicircum" = -74; +"@MMK_R_KO_bracketright" = -15; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -30; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -36; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -58; +"@MMK_R_KO_g" = -16; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_hyphen.case" = -5; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 35; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_ninesuperior" = -2; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -20; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 7; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -48; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -52; +"@MMK_R_KO_w" = -44; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = -54; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -77; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = -126; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = 7; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 30; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 13; +"@MMK_R_KO_Y" = 26; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asciicircum" = -71; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = -72; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -233; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -44; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = -62; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -38; +"@MMK_R_KO_hyphen" = -26; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_icircumflex" = 7; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = -38; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 3; +"@MMK_R_KO_parenright" = -21; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = 5; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 12; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -31; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -7; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = -99; +"@MMK_R_KO_t" = -50; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -6; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_underscore" = -222; +"@MMK_R_KO_v" = -48; +"@MMK_R_KO_w" = -39; +"@MMK_R_KO_x" = -74; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = -100; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -30; +"@MMK_R_KO_J" = -24; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -71; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_W" = -37; +"@MMK_R_KO_X" = -26; +"@MMK_R_KO_Y" = -59; +"@MMK_R_KO_Z" = -16; +"@MMK_R_KO_a" = 22; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -48; +"@MMK_R_KO_bracketright" = -78; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -19; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = 23; +"@MMK_R_KO_egrave" = 24; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 23; +"@MMK_R_KO_guillemetleft" = 29; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 38; +"@MMK_R_KO_hyphen.case" = 24; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 34; +"@MMK_R_KO_imacron" = 57; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -20; +"@MMK_R_KO_onesuperior" = -41; +"@MMK_R_KO_parenright" = -99; +"@MMK_R_KO_parenright.case" = -48; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -47; +"@MMK_R_KO_question" = -11; +"@MMK_R_KO_question.ss01" = -25; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteleft" = -28; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -52; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = 15; +"@MMK_R_KO_underscore" = -30; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 26; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -68; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -50; +"@MMK_R_KO_W" = -38; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -58; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = 15; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -53; +"@MMK_R_KO_bracketright" = -61; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 16; +"@MMK_R_KO_eightsuperior" = -18; +"@MMK_R_KO_ellipsis" = -12; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = -20; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = 12; +"@MMK_R_KO_guillemetright" = 2; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 35; +"@MMK_R_KO_imacron" = 50; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -49; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_parenright.case" = -8; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -11; +"@MMK_R_KO_question.ss01" = -25; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = -14; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -52; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = -20; +"@MMK_R_KO_slash" = 13; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -75; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = 2; +"@MMK_R_KO_v" = -2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -1; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -45; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 48; +"@MMK_R_KO_imacron" = 81; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 25; +"@MMK_R_KO_ninesuperior" = -4; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -20; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 39; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 45; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -32; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = 39; +"@MMK_R_KO_W" = 41; +"@MMK_R_KO_X" = 30; +"@MMK_R_KO_Y" = 24; +"@MMK_R_KO_Z" = 29; +"@MMK_R_KO_a" = -49; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = -73; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -52; +"@MMK_R_KO_egrave" = -52; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -3; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = -62; +"@MMK_R_KO_g" = -6; +"@MMK_R_KO_guillemetleft" = -66; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = -94; +"@MMK_R_KO_hyphen.case" = -96; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 38; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -3; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -19; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 8; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -26; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -7; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -101; +"@MMK_R_KO_w" = -76; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = -89; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -14; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -13; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 4; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 5; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -31; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 6; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 54; +"@MMK_R_KO_imacron" = 86; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 31; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 7; +"@MMK_R_KO_parenright.case" = -9; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -6; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -18; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -15; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -21; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 33; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 36; +"@MMK_R_KO_J" = 29; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 25; +"@MMK_R_KO_W" = 25; +"@MMK_R_KO_X" = 28; +"@MMK_R_KO_Y" = 25; +"@MMK_R_KO_Z" = 30; +"@MMK_R_KO_a" = -46; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -75; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_egrave" = -48; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -30; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -68; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -8; +"@MMK_R_KO_hyphen" = -75; +"@MMK_R_KO_hyphen.case" = -105; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 35; +"@MMK_R_KO_imacron" = 68; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -4; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 5; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = -20; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = -40; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_underscore" = 16; +"@MMK_R_KO_v" = -67; +"@MMK_R_KO_w" = -64; +"@MMK_R_KO_x" = 7; +"@MMK_R_KO_y" = -60; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -81; +"@MMK_R_KO_S" = -43; +"@MMK_R_KO_T" = -135; +"@MMK_R_KO_U" = -64; +"@MMK_R_KO_V" = -185; +"@MMK_R_KO_W" = -118; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = -142; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = -65; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_asciicircum" = -284; +"@MMK_R_KO_bracketright" = -83; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -67; +"@MMK_R_KO_eightsuperior" = -220; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -53; +"@MMK_R_KO_fivesuperior" = -218; +"@MMK_R_KO_foursuperior" = -207; +"@MMK_R_KO_g" = -21; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -188; +"@MMK_R_KO_hyphen.case" = -188; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_icircumflex" = -12; +"@MMK_R_KO_imacron" = -12; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_l.ss04" = -12; +"@MMK_R_KO_n" = -12; +"@MMK_R_KO_ninesuperior" = -226; +"@MMK_R_KO_onesuperior" = -110; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -86; +"@MMK_R_KO_question.ss01" = -109; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -138; +"@MMK_R_KO_quotedblleft.ss01" = -128; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -138; +"@MMK_R_KO_quoteright.ss01" = -128; +"@MMK_R_KO_s" = -36; +"@MMK_R_KO_sevensuperior" = -185; +"@MMK_R_KO_six" = -69; +"@MMK_R_KO_sixsuperior" = -226; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = -66; +"@MMK_R_KO_threesuperior" = -212; +"@MMK_R_KO_trademark" = -281; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -110; +"@MMK_R_KO_w" = -77; +"@MMK_R_KO_x" = 11; +"@MMK_R_KO_y" = -96; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -78; +"@MMK_R_KO_S" = -40; +"@MMK_R_KO_T" = -135; +"@MMK_R_KO_U" = -60; +"@MMK_R_KO_V" = -186; +"@MMK_R_KO_W" = -118; +"@MMK_R_KO_X" = 10; +"@MMK_R_KO_Y" = -142; +"@MMK_R_KO_Z" = 13; +"@MMK_R_KO_a" = -65; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_bracketright" = -81; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -68; +"@MMK_R_KO_eightsuperior" = -125; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = -130; +"@MMK_R_KO_foursuperior" = -112; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -127; +"@MMK_R_KO_hyphen.case" = -114; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_ninesuperior" = -131; +"@MMK_R_KO_onesuperior" = -110; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -86; +"@MMK_R_KO_question.ss01" = -106; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -138; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_sevensuperior" = -185; +"@MMK_R_KO_sixsuperior" = -137; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_threesuperior" = -122; +"@MMK_R_KO_u" = -58; +"@MMK_R_KO_y" = -94; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -37; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -79; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -55; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_X" = -30; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = -23; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_asciicircum" = -50; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = -8; +"@MMK_R_KO_comma" = -26; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 28; +"@MMK_R_KO_egrave" = 28; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -67; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 26; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 33; +"@MMK_R_KO_hyphen.case" = 31; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 21; +"@MMK_R_KO_imacron" = 44; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -97; +"@MMK_R_KO_parenright.case" = -53; +"@MMK_R_KO_period" = -26; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_question.ss01" = -30; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -32; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = 25; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = 18; +"@MMK_R_KO_underscore" = -37; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -7; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -37; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -79; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -55; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_X" = -30; +"@MMK_R_KO_Y" = -65; +"@MMK_R_KO_Z" = -23; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -26; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 28; +"@MMK_R_KO_egrave" = 28; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -67; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = -3; +"@MMK_R_KO_g" = 27; +"@MMK_R_KO_guillemetleft" = 26; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 33; +"@MMK_R_KO_hyphen.case" = 31; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -96; +"@MMK_R_KO_parenright.case" = -53; +"@MMK_R_KO_period" = -26; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_question.ss01" = -30; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -32; +"@MMK_R_KO_quoteright" = -21; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_sevensuperior" = -48; +"@MMK_R_KO_six" = 25; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -70; +"@MMK_R_KO_u" = 18; +"@MMK_R_KO_underscore" = -37; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -8; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -34; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = -56; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = -51; +"@MMK_R_KO_X" = -29; +"@MMK_R_KO_bracketright" = -45; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -26; +"@MMK_R_KO_comma.ss01" = -44; +"@MMK_R_KO_e" = 28; +"@MMK_R_KO_ellipsis" = -67; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 33; +"@MMK_R_KO_hyphen.case" = 31; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_parenright.case" = -34; +"@MMK_R_KO_period" = -26; +"@MMK_R_KO_period.ss01" = -54; +"@MMK_R_KO_question" = -15; +"@MMK_R_KO_question.ss01" = -30; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -25; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = -28; +"@MMK_R_KO_J" = -130; +"@MMK_R_KO_O" = 30; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = 16; +"@MMK_R_KO_V" = -16; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = -40; +"@MMK_R_KO_Y" = -26; +"@MMK_R_KO_Z" = -36; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -68; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 21; +"@MMK_R_KO_ellipsis" = -233; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = 12; +"@MMK_R_KO_foursuperior" = 14; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 23; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 55; +"@MMK_R_KO_imacron" = 75; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 13; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 10; +"@MMK_R_KO_onesuperior" = -4; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_parenright.case" = -67; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 15; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 12; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 31; +"@MMK_R_KO_sixsuperior" = 14; +"@MMK_R_KO_slash" = -88; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = 16; +"@MMK_R_KO_trademark" = -38; +"@MMK_R_KO_u" = 8; +"@MMK_R_KO_underscore" = -222; +"@MMK_R_KO_v" = 26; +"@MMK_R_KO_w" = 36; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 24; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = -109; +"@MMK_R_KO_U" = -32; +"@MMK_R_KO_V" = -91; +"@MMK_R_KO_W" = -70; +"@MMK_R_KO_X" = 15; +"@MMK_R_KO_Y" = -106; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asciicircum" = -92; +"@MMK_R_KO_bracketright" = -77; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eightsuperior" = -42; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -48; +"@MMK_R_KO_foursuperior" = -37; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -20; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -51; +"@MMK_R_KO_onesuperior" = -77; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -55; +"@MMK_R_KO_question.ss01" = -69; +"@MMK_R_KO_quotedbl" = -52; +"@MMK_R_KO_quotedblleft" = -63; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -62; +"@MMK_R_KO_quoteright" = -62; +"@MMK_R_KO_quoteright.ss01" = -61; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = -83; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_sixsuperior" = -52; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_t" = -29; +"@MMK_R_KO_threesuperior" = -40; +"@MMK_R_KO_trademark" = -109; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_underscore" = 19; +"@MMK_R_KO_v" = -40; +"@MMK_R_KO_w" = -35; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = -39; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -30; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -19; +"@MMK_R_KO_W" = -10; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -30; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -31; +"@MMK_R_KO_bracketright" = -51; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 7; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -24; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 55; +"@MMK_R_KO_imacron" = 76; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -11; +"@MMK_R_KO_parenright" = -40; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -16; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -45; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = 7; +"@MMK_R_KO_v" = 8; +"@MMK_R_KO_w" = 15; +"@MMK_R_KO_x" = 16; +"@MMK_R_KO_y" = 9; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 25; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 22; +"@MMK_R_KO_asciicircum" = -49; +"@MMK_R_KO_bracketright" = -66; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -26; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 15; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = -21; +"@MMK_R_KO_i" = 7; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 66; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -32; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_trademark" = -65; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 25; +"@MMK_R_KO_T" = -46; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -38; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -45; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 22; +"@MMK_R_KO_bracketright" = -62; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = -19; +"@MMK_R_KO_ellipsis" = -26; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -21; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 15; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = -21; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 66; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 8; +"@MMK_R_KO_n" = 5; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -32; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -26; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -137; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = -121; +"@MMK_R_KO_O" = -34; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 18; +"@MMK_R_KO_W" = 46; +"@MMK_R_KO_X" = 20; +"@MMK_R_KO_Y" = 17; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_a" = -136; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asciicircum" = -70; +"@MMK_R_KO_bracketright" = -18; +"@MMK_R_KO_colon" = -72; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -136; +"@MMK_R_KO_egrave" = -69; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -176; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -46; +"@MMK_R_KO_fivesuperior" = -7; +"@MMK_R_KO_foursuperior" = -77; +"@MMK_R_KO_g" = -135; +"@MMK_R_KO_guillemetleft" = -110; +"@MMK_R_KO_guillemetright" = -110; +"@MMK_R_KO_hyphen" = -132; +"@MMK_R_KO_hyphen.case" = -132; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -16; +"@MMK_R_KO_l.ss04" = 35; +"@MMK_R_KO_n" = -138; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 5; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = -8; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -141; +"@MMK_R_KO_sevensuperior" = 2; +"@MMK_R_KO_six" = -27; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = -130; +"@MMK_R_KO_t" = -63; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = -128; +"@MMK_R_KO_underscore" = -134; +"@MMK_R_KO_v" = -149; +"@MMK_R_KO_w" = -145; +"@MMK_R_KO_x" = -149; +"@MMK_R_KO_y" = -144; +"@MMK_R_KO_z" = -151; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 10; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -39; +"@MMK_R_KO_bracketright" = -23; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 3; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_imacron" = 91; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 35; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 2; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -12; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_underscore" = -34; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -29; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 12; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 10; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = -23; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_egrave" = 7; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 2; +"@MMK_R_KO_guillemetright" = 3; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_i" = 11; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 35; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 2; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = -5; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = 4; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 10; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 22; +"@MMK_R_KO_I.ss02" = 61; +"@MMK_R_KO_O" = 12; +"@MMK_R_KO_T" = 60; +"@MMK_R_KO_U" = 33; +"@MMK_R_KO_V" = 56; +"@MMK_R_KO_X" = 37; +"@MMK_R_KO_Y" = 56; +"@MMK_R_KO_Z" = 43; +"@MMK_R_KO_a" = 7; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = 77; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -25; +"@MMK_R_KO_comma.ss01" = -43; +"@MMK_R_KO_e" = 7; +"@MMK_R_KO_eightsuperior" = 46; +"@MMK_R_KO_ellipsis" = -63; +"@MMK_R_KO_exclam" = 44; +"@MMK_R_KO_fivesuperior" = 52; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = 3; +"@MMK_R_KO_hyphen" = 11; +"@MMK_R_KO_hyphen.case" = 11; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 50; +"@MMK_R_KO_onesuperior" = 44; +"@MMK_R_KO_parenright" = 90; +"@MMK_R_KO_parenright.case" = 90; +"@MMK_R_KO_period" = -25; +"@MMK_R_KO_period.ss01" = -43; +"@MMK_R_KO_question" = 30; +"@MMK_R_KO_question.ss01" = 9; +"@MMK_R_KO_quotedbl" = 47; +"@MMK_R_KO_quoteright" = 49; +"@MMK_R_KO_quoteright.ss01" = 31; +"@MMK_R_KO_sevensuperior" = 70; +"@MMK_R_KO_sixsuperior" = 30; +"@MMK_R_KO_slash" = -32; +"@MMK_R_KO_threesuperior" = 39; +"@MMK_R_KO_u" = 2; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -150; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 38; +"@MMK_R_KO_J" = -124; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 36; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = 36; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -75; +"@MMK_R_KO_a.ss05" = -45; +"@MMK_R_KO_asciicircum" = -61; +"@MMK_R_KO_bracketright" = -16; +"@MMK_R_KO_colon" = -31; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -74; +"@MMK_R_KO_egrave" = -66; +"@MMK_R_KO_eightsuperior" = 7; +"@MMK_R_KO_ellipsis" = -193; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_f" = -20; +"@MMK_R_KO_fivesuperior" = 3; +"@MMK_R_KO_foursuperior" = -30; +"@MMK_R_KO_g" = -68; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -87; +"@MMK_R_KO_hyphen.case" = -54; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 44; +"@MMK_R_KO_imacron" = 99; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 39; +"@MMK_R_KO_n" = -51; +"@MMK_R_KO_ninesuperior" = 15; +"@MMK_R_KO_onesuperior" = 11; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 13; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 28; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 15; +"@MMK_R_KO_quoteleft" = 14; +"@MMK_R_KO_quoteright" = 19; +"@MMK_R_KO_quoteright.ss01" = 13; +"@MMK_R_KO_s" = -58; +"@MMK_R_KO_sevensuperior" = 16; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -164; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_underscore" = -162; +"@MMK_R_KO_v" = -36; +"@MMK_R_KO_w" = -27; +"@MMK_R_KO_x" = -32; +"@MMK_R_KO_y" = -26; +"@MMK_R_KO_z" = -48; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -100; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 40; +"@MMK_R_KO_J" = -104; +"@MMK_R_KO_O" = -12; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 41; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = 39; +"@MMK_R_KO_W" = 40; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = 37; +"@MMK_R_KO_Z" = 25; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -44; +"@MMK_R_KO_asciicircum" = -49; +"@MMK_R_KO_bracketright" = -17; +"@MMK_R_KO_colon" = -17; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -49; +"@MMK_R_KO_egrave" = -45; +"@MMK_R_KO_eightsuperior" = 13; +"@MMK_R_KO_ellipsis" = -129; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = 3; +"@MMK_R_KO_foursuperior" = -16; +"@MMK_R_KO_g" = -46; +"@MMK_R_KO_guillemetleft" = -49; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -50; +"@MMK_R_KO_hyphen.case" = -31; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 59; +"@MMK_R_KO_imacron" = 107; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 42; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_ninesuperior" = 18; +"@MMK_R_KO_onesuperior" = 14; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 20; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 29; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 13; +"@MMK_R_KO_quoteleft" = 14; +"@MMK_R_KO_quoteright" = 27; +"@MMK_R_KO_quoteright.ss01" = 19; +"@MMK_R_KO_s" = -41; +"@MMK_R_KO_sevensuperior" = 20; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = -110; +"@MMK_R_KO_t" = -3; +"@MMK_R_KO_threesuperior" = 2; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_underscore" = -106; +"@MMK_R_KO_v" = -9; +"@MMK_R_KO_w" = -11; +"@MMK_R_KO_x" = -20; +"@MMK_R_KO_y" = -9; +"@MMK_R_KO_z" = -25; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 33; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 29; +"@MMK_R_KO_J" = 35; +"@MMK_R_KO_O" = -40; +"@MMK_R_KO_S" = -13; +"@MMK_R_KO_T" = 15; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 15; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_X" = 30; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = 30; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asciicircum" = -82; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = 5; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -49; +"@MMK_R_KO_egrave" = -49; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -27; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -67; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = -78; +"@MMK_R_KO_hyphen.case" = -96; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 27; +"@MMK_R_KO_imacron" = 68; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 28; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 5; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -17; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = -23; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = -45; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -11; +"@MMK_R_KO_u" = -43; +"@MMK_R_KO_underscore" = 16; +"@MMK_R_KO_v" = -60; +"@MMK_R_KO_w" = -61; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = -59; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -153; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = -128; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_S" = -7; +"@MMK_R_KO_T" = 11; +"@MMK_R_KO_U" = 6; +"@MMK_R_KO_V" = 35; +"@MMK_R_KO_W" = 36; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = 35; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -97; +"@MMK_R_KO_a.ss05" = -53; +"@MMK_R_KO_asciicircum" = -69; +"@MMK_R_KO_bracketright" = -15; +"@MMK_R_KO_colon" = -47; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -96; +"@MMK_R_KO_egrave" = -73; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -187; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -34; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -48; +"@MMK_R_KO_g" = -92; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -38; +"@MMK_R_KO_hyphen" = -115; +"@MMK_R_KO_hyphen.case" = -88; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 30; +"@MMK_R_KO_imacron" = 86; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 37; +"@MMK_R_KO_n" = -67; +"@MMK_R_KO_ninesuperior" = 2; +"@MMK_R_KO_onesuperior" = 5; +"@MMK_R_KO_parenright" = -2; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 11; +"@MMK_R_KO_quoteright" = 14; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -78; +"@MMK_R_KO_sevensuperior" = 10; +"@MMK_R_KO_six" = -26; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = -142; +"@MMK_R_KO_t" = -34; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_underscore" = -149; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -46; +"@MMK_R_KO_x" = -53; +"@MMK_R_KO_y" = -40; +"@MMK_R_KO_z" = -61; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 29; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_X" = 31; +"@MMK_R_KO_Y" = 26; +"@MMK_R_KO_Z" = 30; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_asciicircum" = -68; +"@MMK_R_KO_bracketright" = -22; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -52; +"@MMK_R_KO_egrave" = -46; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -4; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = -30; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -52; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -130; +"@MMK_R_KO_hyphen.case" = -95; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 54; +"@MMK_R_KO_imacron" = 88; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 33; +"@MMK_R_KO_n" = -12; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -10; +"@MMK_R_KO_parenright.case" = -10; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft" = 7; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 7; +"@MMK_R_KO_quoteright" = 7; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -33; +"@MMK_R_KO_sevensuperior" = 2; +"@MMK_R_KO_six" = -24; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = -41; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -47; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_x" = 7; +"@MMK_R_KO_y" = -47; +"@MMK_R_KO_z" = 3; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -140; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -62; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -81; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -55; +"@MMK_R_KO_bracketright" = -76; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = -3; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -53; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = -17; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -54; +"@MMK_R_KO_quoteleft" = -41; +"@MMK_R_KO_quoteright" = -29; +"@MMK_R_KO_quoteright.ss01" = -44; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -68; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -19; +"@MMK_R_KO_slash" = -2; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -16; +"@MMK_R_KO_trademark" = -80; +"@MMK_R_KO_u" = -1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = -153; +"@MMK_R_KO_U" = -28; +"@MMK_R_KO_V" = -114; +"@MMK_R_KO_W" = -78; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -145; +"@MMK_R_KO_Z" = 5; +"@MMK_R_KO_a" = -18; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asciicircum" = -102; +"@MMK_R_KO_bracketright" = -85; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -18; +"@MMK_R_KO_eightsuperior" = -48; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -25; +"@MMK_R_KO_fivesuperior" = -58; +"@MMK_R_KO_foursuperior" = -58; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -58; +"@MMK_R_KO_onesuperior" = -77; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -72; +"@MMK_R_KO_question.ss01" = -90; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -96; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_sevensuperior" = -84; +"@MMK_R_KO_six" = -22; +"@MMK_R_KO_sixsuperior" = -65; +"@MMK_R_KO_slash" = 5; +"@MMK_R_KO_t" = -40; +"@MMK_R_KO_threesuperior" = -51; +"@MMK_R_KO_trademark" = -113; +"@MMK_R_KO_u" = -23; +"@MMK_R_KO_underscore" = 16; +"@MMK_R_KO_v" = -49; +"@MMK_R_KO_w" = -36; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 4; +"@MMK_R_KO_O" = -19; +"@MMK_R_KO_S" = -18; +"@MMK_R_KO_T" = -125; +"@MMK_R_KO_U" = -28; +"@MMK_R_KO_V" = -95; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -104; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_bracketright" = -83; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 11; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = -48; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_fivesuperior" = -56; +"@MMK_R_KO_foursuperior" = -52; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -56; +"@MMK_R_KO_onesuperior" = -77; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -71; +"@MMK_R_KO_question.ss01" = -90; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -80; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -6; +"@MMK_R_KO_sevensuperior" = -84; +"@MMK_R_KO_six" = -21; +"@MMK_R_KO_sixsuperior" = -64; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_threesuperior" = -47; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_underscore" = 16; +"@MMK_R_KO_v" = -49; +"@MMK_R_KO_w" = -36; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 24; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_T" = -142; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_f" = -34; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_t" = -51; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -139; +"@MMK_R_KO_H" = -44; +"@MMK_R_KO_O" = -26; +"@MMK_R_KO_T" = -98; +"@MMK_R_KO_a" = -52; +"@MMK_R_KO_e" = -51; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_i" = -43; +"@MMK_R_KO_n" = -53; +"@MMK_R_KO_t" = -12; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -155; +"@MMK_R_KO_H" = -91; +"@MMK_R_KO_O" = -80; +"@MMK_R_KO_T" = -245; +"@MMK_R_KO_a" = -84; +"@MMK_R_KO_e" = -83; +"@MMK_R_KO_f" = -98; +"@MMK_R_KO_i" = -84; +"@MMK_R_KO_n" = -101; +"@MMK_R_KO_t" = -98; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -89; +"@MMK_R_KO_H" = 10; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -122; +"@MMK_R_KO_O" = 18; +"@MMK_R_KO_S" = 28; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 23; +"@MMK_R_KO_V" = 10; +"@MMK_R_KO_W" = 22; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asterisk" = 49; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -23; +"@MMK_R_KO_eight" = 23; +"@MMK_R_KO_f" = 21; +"@MMK_R_KO_five" = 16; +"@MMK_R_KO_four" = -72; +"@MMK_R_KO_g" = -19; +"@MMK_R_KO_guillemetleft" = -32; +"@MMK_R_KO_guillemetright" = 19; +"@MMK_R_KO_hyphen" = -132; +"@MMK_R_KO_hyphen.case" = -44; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 40; +"@MMK_R_KO_one" = 27; +"@MMK_R_KO_parenright" = -31; +"@MMK_R_KO_parenright.case" = -30; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = 30; +"@MMK_R_KO_quotedblleft" = 22; +"@MMK_R_KO_quotedblleft.ss01" = 28; +"@MMK_R_KO_quoteright" = 8; +"@MMK_R_KO_quoteright.ss01" = 22; +"@MMK_R_KO_s" = -10; +"@MMK_R_KO_seven" = 44; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_slash" = -118; +"@MMK_R_KO_t" = 21; +"@MMK_R_KO_three" = 30; +"@MMK_R_KO_two" = 36; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 36; +"@MMK_R_KO_w" = 34; +"@MMK_R_KO_y" = 37; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = -81; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -77; +"@MMK_R_KO_O" = -51; +"@MMK_R_KO_S" = -45; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = -22; +"@MMK_R_KO_V" = -6; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_Y" = -4; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = -77; +"@MMK_R_KO_a.ss05" = -66; +"@MMK_R_KO_asterisk" = -36; +"@MMK_R_KO_colon" = -72; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -81; +"@MMK_R_KO_egrave" = -78; +"@MMK_R_KO_eight" = -43; +"@MMK_R_KO_ellipsis" = -99; +"@MMK_R_KO_f" = -56; +"@MMK_R_KO_five" = -33; +"@MMK_R_KO_four" = -84; +"@MMK_R_KO_g" = -42; +"@MMK_R_KO_guillemetleft" = -83; +"@MMK_R_KO_guillemetright" = -78; +"@MMK_R_KO_hyphen" = -84; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = 71; +"@MMK_R_KO_n" = -79; +"@MMK_R_KO_nine" = -41; +"@MMK_R_KO_one" = -75; +"@MMK_R_KO_period" = -70; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = -14; +"@MMK_R_KO_quotedblleft" = -23; +"@MMK_R_KO_quotedblleft.ss01" = -32; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = -87; +"@MMK_R_KO_seven" = -11; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = -69; +"@MMK_R_KO_three" = -53; +"@MMK_R_KO_two" = -45; +"@MMK_R_KO_u" = -95; +"@MMK_R_KO_v" = -84; +"@MMK_R_KO_w" = -85; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -82; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = -16; +"@MMK_R_KO_H" = -8; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -17; +"@MMK_R_KO_O" = -53; +"@MMK_R_KO_S" = -41; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = -17; +"@MMK_R_KO_V" = -7; +"@MMK_R_KO_W" = -8; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_asterisk" = -32; +"@MMK_R_KO_colon" = -26; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -21; +"@MMK_R_KO_eight" = -28; +"@MMK_R_KO_ellipsis" = -42; +"@MMK_R_KO_five" = -21; +"@MMK_R_KO_four" = -84; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -58; +"@MMK_R_KO_hyphen.case" = -84; +"@MMK_R_KO_nine" = -39; +"@MMK_R_KO_one" = -75; +"@MMK_R_KO_period" = -26; +"@MMK_R_KO_period.ss01" = -39; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -33; +"@MMK_R_KO_quoteright" = -11; +"@MMK_R_KO_quoteright.ss01" = -30; +"@MMK_R_KO_seven" = -13; +"@MMK_R_KO_six" = -47; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_three" = -44; +"@MMK_R_KO_two" = -26; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -24; +"@MMK_R_KO_J" = -22; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -150; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -84; +"@MMK_R_KO_W" = -60; +"@MMK_R_KO_X" = -14; +"@MMK_R_KO_Y" = -122; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 2; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asciicircum" = -72; +"@MMK_R_KO_bracketright" = -89; +"@MMK_R_KO_colon" = -9; +"@MMK_R_KO_comma" = -5; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 2; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = -22; +"@MMK_R_KO_ellipsis" = -36; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_fivesuperior" = -30; +"@MMK_R_KO_foursuperior" = -37; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -52; +"@MMK_R_KO_parenright" = -87; +"@MMK_R_KO_period" = -5; +"@MMK_R_KO_period.ss01" = -30; +"@MMK_R_KO_question" = -66; +"@MMK_R_KO_question.ss01" = -82; +"@MMK_R_KO_quotedbl" = -53; +"@MMK_R_KO_quotedblleft" = -77; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 24; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -36; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = -27; +"@MMK_R_KO_threesuperior" = -20; +"@MMK_R_KO_trademark" = -87; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -8; +"@MMK_R_KO_v" = -22; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = -12; +"@MMK_R_KO_y" = -23; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -74; +"@MMK_R_KO_comma" = 4; +"@MMK_R_KO_eight" = -30; +"@MMK_R_KO_five" = -46; +"@MMK_R_KO_four" = -74; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -74; +"@MMK_R_KO_hyphen.case" = -74; +"@MMK_R_KO_nine" = -44; +"@MMK_R_KO_one" = -66; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_quotedbl" = -74; +"@MMK_R_KO_quotedblleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_seven" = -74; +"@MMK_R_KO_six" = -65; +"@MMK_R_KO_three" = -47; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -134; +"@MMK_R_KO_H" = -17; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_T" = -45; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_e" = -57; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_i" = -18; +"@MMK_R_KO_n" = -43; +"@MMK_R_KO_t" = -13; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -23; +"@MMK_R_KO_J" = -25; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -151; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -92; +"@MMK_R_KO_W" = -64; +"@MMK_R_KO_X" = -15; +"@MMK_R_KO_Y" = -130; +"@MMK_R_KO_Z" = -4; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -82; +"@MMK_R_KO_bracketright" = -92; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -35; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 11; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_fivesuperior" = -36; +"@MMK_R_KO_foursuperior" = -44; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 22; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -39; +"@MMK_R_KO_onesuperior" = -57; +"@MMK_R_KO_parenright" = -89; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -33; +"@MMK_R_KO_question" = -73; +"@MMK_R_KO_question.ss01" = -95; +"@MMK_R_KO_quotedbl" = -58; +"@MMK_R_KO_quotedblleft" = -84; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 18; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -44; +"@MMK_R_KO_slash" = -14; +"@MMK_R_KO_t" = -24; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -95; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -11; +"@MMK_R_KO_v" = -27; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_x" = -14; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -14; +"@MMK_R_KO_J" = -25; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -111; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -92; +"@MMK_R_KO_W" = -62; +"@MMK_R_KO_X" = -11; +"@MMK_R_KO_Y" = -89; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_bracketright" = -91; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -30; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 11; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = -38; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -23; +"@MMK_R_KO_fivesuperior" = -34; +"@MMK_R_KO_foursuperior" = -44; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = 22; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -35; +"@MMK_R_KO_onesuperior" = -53; +"@MMK_R_KO_parenright" = -86; +"@MMK_R_KO_period" = -6; +"@MMK_R_KO_period.ss01" = -32; +"@MMK_R_KO_question" = -69; +"@MMK_R_KO_question.ss01" = -70; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -76; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 18; +"@MMK_R_KO_sevensuperior" = -64; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -43; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -11; +"@MMK_R_KO_v" = -27; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_x" = -14; +"@MMK_R_KO_y" = -28; +"@MMK_R_KO_z" = -6; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = -37; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -26; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 17; +"@MMK_R_KO_asterisk" = 11; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eight" = 20; +"@MMK_R_KO_ellipsis" = -33; +"@MMK_R_KO_f" = 12; +"@MMK_R_KO_five" = 8; +"@MMK_R_KO_four" = 21; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = 13; +"@MMK_R_KO_hyphen.case" = -8; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 13; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_parenright.case" = -29; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -16; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 19; +"@MMK_R_KO_seven" = 6; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_three" = 13; +"@MMK_R_KO_two" = 12; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -33; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = -100; +"@MMK_R_KO_S" = -68; +"@MMK_R_KO_T" = -177; +"@MMK_R_KO_U" = -84; +"@MMK_R_KO_V" = -217; +"@MMK_R_KO_W" = -137; +"@MMK_R_KO_Y" = -184; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -69; +"@MMK_R_KO_a.ss05" = -48; +"@MMK_R_KO_asterisk" = -141; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = -72; +"@MMK_R_KO_egrave" = -71; +"@MMK_R_KO_eight" = -64; +"@MMK_R_KO_ellipsis" = -18; +"@MMK_R_KO_f" = -59; +"@MMK_R_KO_five" = -74; +"@MMK_R_KO_four" = -220; +"@MMK_R_KO_g" = -42; +"@MMK_R_KO_guillemetleft" = -87; +"@MMK_R_KO_guillemetright" = -42; +"@MMK_R_KO_hyphen" = -233; +"@MMK_R_KO_hyphen.case" = -233; +"@MMK_R_KO_i" = -31; +"@MMK_R_KO_j" = -30; +"@MMK_R_KO_n" = -31; +"@MMK_R_KO_nine" = -72; +"@MMK_R_KO_one" = -86; +"@MMK_R_KO_parenright" = -74; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -147; +"@MMK_R_KO_quotedblleft" = -138; +"@MMK_R_KO_quoteright" = -138; +"@MMK_R_KO_s" = -51; +"@MMK_R_KO_seven" = -105; +"@MMK_R_KO_six" = -87; +"@MMK_R_KO_slash" = -6; +"@MMK_R_KO_t" = -70; +"@MMK_R_KO_three" = -69; +"@MMK_R_KO_two" = -24; +"@MMK_R_KO_u" = -65; +"@MMK_R_KO_v" = -131; +"@MMK_R_KO_w" = -85; +"@MMK_R_KO_y" = -110; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -26; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -94; +"@MMK_R_KO_S" = -61; +"@MMK_R_KO_T" = -178; +"@MMK_R_KO_U" = -77; +"@MMK_R_KO_V" = -210; +"@MMK_R_KO_W" = -135; +"@MMK_R_KO_Y" = -185; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -63; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_asterisk" = -141; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = -65; +"@MMK_R_KO_egrave" = -65; +"@MMK_R_KO_eight" = -57; +"@MMK_R_KO_f" = -56; +"@MMK_R_KO_five" = -67; +"@MMK_R_KO_four" = -196; +"@MMK_R_KO_g" = -46; +"@MMK_R_KO_guillemetleft" = -82; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = -210; +"@MMK_R_KO_hyphen.case" = -228; +"@MMK_R_KO_i" = -25; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_n" = -25; +"@MMK_R_KO_nine" = -66; +"@MMK_R_KO_one" = -83; +"@MMK_R_KO_parenright" = -76; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_quotedbl" = -147; +"@MMK_R_KO_quotedblleft.ss01" = -128; +"@MMK_R_KO_quoteright.ss01" = -128; +"@MMK_R_KO_s" = -41; +"@MMK_R_KO_seven" = -101; +"@MMK_R_KO_six" = -80; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -68; +"@MMK_R_KO_three" = -62; +"@MMK_R_KO_two" = -15; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_v" = -125; +"@MMK_R_KO_w" = -81; +"@MMK_R_KO_y" = -112; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -29; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -97; +"@MMK_R_KO_J" = -112; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -132; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -98; +"@MMK_R_KO_W" = -69; +"@MMK_R_KO_Y" = -140; +"@MMK_R_KO_Z" = -44; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -72; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 30; +"@MMK_R_KO_egrave" = 30; +"@MMK_R_KO_eight" = 32; +"@MMK_R_KO_f" = -34; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 28; +"@MMK_R_KO_guillemetleft" = 21; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -70; +"@MMK_R_KO_parenright" = -96; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -138; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -104; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = -40; +"@MMK_R_KO_three" = -3; +"@MMK_R_KO_two" = -39; +"@MMK_R_KO_u" = 13; +"@MMK_R_KO_v" = -42; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_y" = -40; +"@MMK_R_KO_z" = -54; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = -47; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 25; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 37; +"@MMK_R_KO_X" = 11; +"@MMK_R_KO_Y" = 26; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 31; +"@MMK_R_KO_comma" = -45; +"@MMK_R_KO_comma.ss01" = -63; +"@MMK_R_KO_e" = -6; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = 28; +"@MMK_R_KO_ellipsis" = -62; +"@MMK_R_KO_exclam" = 20; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 27; +"@MMK_R_KO_hyphen" = -39; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 18; +"@MMK_R_KO_onesuperior" = 3; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -46; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = 40; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 16; +"@MMK_R_KO_quoteright" = 39; +"@MMK_R_KO_quoteright.ss01" = 10; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 12; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = 19; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = 15; +"@MMK_R_KO_threesuperior" = 11; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -46; +"@MMK_R_KO_v" = 17; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -39; +"@MMK_R_KO_H" = 9; +"@MMK_R_KO_I.ss02" = 21; +"@MMK_R_KO_J" = -47; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = 25; +"@MMK_R_KO_U" = 20; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 37; +"@MMK_R_KO_X" = 11; +"@MMK_R_KO_Y" = 26; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -19; +"@MMK_R_KO_colon" = 32; +"@MMK_R_KO_comma" = -45; +"@MMK_R_KO_comma.ss01" = -63; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = 28; +"@MMK_R_KO_ellipsis" = -62; +"@MMK_R_KO_exclam" = 20; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 7; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 27; +"@MMK_R_KO_hyphen" = -38; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 19; +"@MMK_R_KO_onesuperior" = 3; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -46; +"@MMK_R_KO_period.ss01" = -63; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = -6; +"@MMK_R_KO_quotedbl" = 40; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 16; +"@MMK_R_KO_quoteright" = 39; +"@MMK_R_KO_quoteright.ss01" = 10; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 12; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_sixsuperior" = 19; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = 15; +"@MMK_R_KO_threesuperior" = 11; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -46; +"@MMK_R_KO_v" = 17; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 17; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -54; +"@MMK_R_KO_bracketright" = -47; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -41; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -2; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 27; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 21; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eight" = 27; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_five" = 17; +"@MMK_R_KO_four" = 29; +"@MMK_R_KO_g" = 14; +"@MMK_R_KO_guillemetleft" = 10; +"@MMK_R_KO_guillemetright" = 5; +"@MMK_R_KO_hyphen" = 28; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -37; +"@MMK_R_KO_parenright" = -28; +"@MMK_R_KO_parenright.case" = -20; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -31; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -27; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = -33; +"@MMK_R_KO_three" = 17; +"@MMK_R_KO_two" = -6; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_v" = -41; +"@MMK_R_KO_w" = -24; +"@MMK_R_KO_y" = -44; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -53; +"@MMK_R_KO_J" = -57; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 34; +"@MMK_R_KO_T" = -60; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -52; +"@MMK_R_KO_W" = -51; +"@MMK_R_KO_Y" = -55; +"@MMK_R_KO_Z" = -30; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -47; +"@MMK_R_KO_colon" = -58; +"@MMK_R_KO_comma" = -57; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 36; +"@MMK_R_KO_ellipsis" = -74; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = 26; +"@MMK_R_KO_four" = 12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -37; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -50; +"@MMK_R_KO_parenright" = -75; +"@MMK_R_KO_parenright.case" = -59; +"@MMK_R_KO_period" = -58; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = -60; +"@MMK_R_KO_quotedblleft" = -57; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -54; +"@MMK_R_KO_quoteright.ss01" = -66; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -53; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = -30; +"@MMK_R_KO_t" = -33; +"@MMK_R_KO_three" = 3; +"@MMK_R_KO_two" = -20; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -53; +"@MMK_R_KO_w" = -32; +"@MMK_R_KO_y" = -50; +"@MMK_R_KO_z" = -39; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 21; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -82; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -27; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = 14; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -16; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asciicircum" = -56; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 48; +"@MMK_R_KO_comma" = 48; +"@MMK_R_KO_comma.ss01" = 31; +"@MMK_R_KO_e" = -16; +"@MMK_R_KO_egrave" = -15; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -32; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -15; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 9; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 17; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -14; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = -10; +"@MMK_R_KO_sevensuperior" = -30; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -5; +"@MMK_R_KO_slash" = 56; +"@MMK_R_KO_t" = -19; +"@MMK_R_KO_threesuperior" = -25; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = -22; +"@MMK_R_KO_underscore" = 57; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -20; +"@MMK_R_KO_x" = 17; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 16; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -43; +"@MMK_R_KO_W" = -25; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -8; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -5; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 19; +"@MMK_R_KO_hyphen" = -23; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = -3; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -31; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteright" = -3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 10; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 11; +"@MMK_R_KO_w" = 13; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -30; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -45; +"@MMK_R_KO_J" = -46; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = -81; +"@MMK_R_KO_W" = -55; +"@MMK_R_KO_Y" = -110; +"@MMK_R_KO_Z" = -34; +"@MMK_R_KO_a" = 28; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -54; +"@MMK_R_KO_colon" = -46; +"@MMK_R_KO_comma" = -39; +"@MMK_R_KO_comma.ss01" = -52; +"@MMK_R_KO_e" = 29; +"@MMK_R_KO_egrave" = 29; +"@MMK_R_KO_eight" = 21; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 14; +"@MMK_R_KO_g" = 29; +"@MMK_R_KO_guillemetleft" = 21; +"@MMK_R_KO_guillemetright" = -22; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_hyphen.case" = 7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -3; +"@MMK_R_KO_one" = -59; +"@MMK_R_KO_parenright" = -102; +"@MMK_R_KO_parenright.case" = -68; +"@MMK_R_KO_period" = -49; +"@MMK_R_KO_period.ss01" = -51; +"@MMK_R_KO_quotedbl" = -56; +"@MMK_R_KO_quotedblleft" = -78; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -70; +"@MMK_R_KO_quoteright.ss01" = -65; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -61; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_slash" = -45; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -39; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_v" = -27; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = -36; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -23; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -96; +"@MMK_R_KO_J" = -112; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = -131; +"@MMK_R_KO_U" = 9; +"@MMK_R_KO_V" = -98; +"@MMK_R_KO_W" = -69; +"@MMK_R_KO_Y" = -140; +"@MMK_R_KO_Z" = -42; +"@MMK_R_KO_a" = 30; +"@MMK_R_KO_a.ss05" = 24; +"@MMK_R_KO_asterisk" = -141; +"@MMK_R_KO_colon" = -72; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = 31; +"@MMK_R_KO_egrave" = 31; +"@MMK_R_KO_eight" = 32; +"@MMK_R_KO_f" = -34; +"@MMK_R_KO_five" = 10; +"@MMK_R_KO_four" = 47; +"@MMK_R_KO_g" = 30; +"@MMK_R_KO_guillemetleft" = 21; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -70; +"@MMK_R_KO_parenright" = -95; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = -147; +"@MMK_R_KO_quotedblleft" = -138; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -104; +"@MMK_R_KO_six" = 13; +"@MMK_R_KO_slash" = -39; +"@MMK_R_KO_t" = -38; +"@MMK_R_KO_three" = -3; +"@MMK_R_KO_two" = -39; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_v" = -36; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = -53; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -55; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -97; +"@MMK_R_KO_J" = -114; +"@MMK_R_KO_O" = 31; +"@MMK_R_KO_S" = -28; +"@MMK_R_KO_T" = -131; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -63; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_Y" = -101; +"@MMK_R_KO_Z" = -93; +"@MMK_R_KO_asterisk" = -54; +"@MMK_R_KO_colon" = -38; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = 26; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_nine" = -5; +"@MMK_R_KO_one" = -68; +"@MMK_R_KO_parenright.case" = -80; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = -55; +"@MMK_R_KO_quotedblleft" = -127; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_seven" = -87; +"@MMK_R_KO_six" = 30; +"@MMK_R_KO_slash" = -71; +"@MMK_R_KO_three" = -44; +"@MMK_R_KO_two" = -55; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -51; +"@MMK_R_KO_bracketright" = -55; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -47; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = -13; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = -38; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteleft" = -32; +"@MMK_R_KO_quoteright" = -28; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = -10; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -21; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 2; +"@MMK_R_KO_H" = 34; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = -5; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = 23; +"@MMK_R_KO_T" = 41; +"@MMK_R_KO_U" = 45; +"@MMK_R_KO_V" = 50; +"@MMK_R_KO_W" = 54; +"@MMK_R_KO_X" = 38; +"@MMK_R_KO_Y" = 46; +"@MMK_R_KO_Z" = 34; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 29; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 41; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 29; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 22; +"@MMK_R_KO_icircumflex" = 23; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = 22; +"@MMK_R_KO_l.ss04" = 22; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 34; +"@MMK_R_KO_onesuperior" = 37; +"@MMK_R_KO_parenright" = 14; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 32; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 46; +"@MMK_R_KO_quotedblleft" = 32; +"@MMK_R_KO_quotedblleft.ss01" = 17; +"@MMK_R_KO_quoteleft" = 34; +"@MMK_R_KO_quoteright" = 45; +"@MMK_R_KO_quoteright.ss01" = 21; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 42; +"@MMK_R_KO_six" = 6; +"@MMK_R_KO_sixsuperior" = 31; +"@MMK_R_KO_slash" = 22; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 27; +"@MMK_R_KO_trademark" = 15; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 3; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -153; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -52; +"@MMK_R_KO_W" = -27; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = -69; +"@MMK_R_KO_Z" = 10; +"@MMK_R_KO_a" = -23; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -86; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 9; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -24; +"@MMK_R_KO_egrave" = -21; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = 7; +"@MMK_R_KO_hyphen" = -74; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -30; +"@MMK_R_KO_onesuperior" = -45; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -13; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_sevensuperior" = -76; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 21; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 19; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -13; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -44; +"@MMK_R_KO_bracketright" = -24; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -30; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = -10; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 22; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -12; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -15; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -21; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = -35; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_U" = -33; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -31; +"@MMK_R_KO_X" = 12; +"@MMK_R_KO_Y" = -35; +"@MMK_R_KO_Z" = 7; +"@MMK_R_KO_a" = -26; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -84; +"@MMK_R_KO_bracketright" = -58; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 22; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_egrave" = -27; +"@MMK_R_KO_eightsuperior" = -45; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_fivesuperior" = -49; +"@MMK_R_KO_foursuperior" = -40; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -37; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -33; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -45; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_period" = 18; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = -34; +"@MMK_R_KO_question.ss01" = -43; +"@MMK_R_KO_quotedbl" = -44; +"@MMK_R_KO_quotedblleft" = -41; +"@MMK_R_KO_quotedblleft.ss01" = -48; +"@MMK_R_KO_quoteleft" = -41; +"@MMK_R_KO_quoteright" = -40; +"@MMK_R_KO_quoteright.ss01" = -44; +"@MMK_R_KO_s" = -4; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = -35; +"@MMK_R_KO_sixsuperior" = -46; +"@MMK_R_KO_slash" = 16; +"@MMK_R_KO_t" = -32; +"@MMK_R_KO_threesuperior" = -44; +"@MMK_R_KO_trademark" = -72; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_underscore" = 18; +"@MMK_R_KO_v" = -39; +"@MMK_R_KO_w" = -34; +"@MMK_R_KO_x" = 10; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 6; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 2; +"@MMK_R_KO_eightsuperior" = 111; +"@MMK_R_KO_exclam" = 124; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_fivesuperior" = 110; +"@MMK_R_KO_foursuperior" = 52; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 66; +"@MMK_R_KO_j" = 26; +"@MMK_R_KO_l.ss04" = 68; +"@MMK_R_KO_n" = 22; +"@MMK_R_KO_ninesuperior" = 117; +"@MMK_R_KO_onesuperior" = 110; +"@MMK_R_KO_parenright" = 88; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 130; +"@MMK_R_KO_question.ss01" = 82; +"@MMK_R_KO_quotedbl" = 145; +"@MMK_R_KO_quotedblleft" = 123; +"@MMK_R_KO_quotedblleft.ss01" = 109; +"@MMK_R_KO_quoteleft" = 123; +"@MMK_R_KO_sevensuperior" = 115; +"@MMK_R_KO_sixsuperior" = 109; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = 96; +"@MMK_R_KO_u" = 19; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_z" = 15; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -67; +"@MMK_R_KO_H" = -63; +"@MMK_R_KO_O" = -49; +"@MMK_R_KO_T" = -219; +"@MMK_R_KO_a" = -47; +"@MMK_R_KO_e" = -46; +"@MMK_R_KO_f" = -82; +"@MMK_R_KO_i" = -63; +"@MMK_R_KO_n" = -64; +"@MMK_R_KO_t" = -86; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = -160; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -91; +"@MMK_R_KO_W" = -65; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -123; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -84; +"@MMK_R_KO_bracketright" = -72; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 10; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = -30; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -21; +"@MMK_R_KO_fivesuperior" = -38; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 7; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 14; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -43; +"@MMK_R_KO_onesuperior" = -62; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = -74; +"@MMK_R_KO_question.ss01" = -91; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -81; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -69; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -46; +"@MMK_R_KO_slash" = 7; +"@MMK_R_KO_t" = -22; +"@MMK_R_KO_threesuperior" = -28; +"@MMK_R_KO_trademark" = -95; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 4; +"@MMK_R_KO_v" = -30; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -6; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -24; +"@MMK_R_KO_J" = -35; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = -152; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = -90; +"@MMK_R_KO_W" = -66; +"@MMK_R_KO_X" = -21; +"@MMK_R_KO_Y" = -127; +"@MMK_R_KO_Z" = -12; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -87; +"@MMK_R_KO_bracketright" = -86; +"@MMK_R_KO_colon" = -18; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -26; +"@MMK_R_KO_fivesuperior" = -40; +"@MMK_R_KO_foursuperior" = -49; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 19; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = -1; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -44; +"@MMK_R_KO_onesuperior" = -59; +"@MMK_R_KO_parenright" = -89; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -40; +"@MMK_R_KO_question" = -74; +"@MMK_R_KO_question.ss01" = -95; +"@MMK_R_KO_quotedbl" = -62; +"@MMK_R_KO_quotedblleft" = -88; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 17; +"@MMK_R_KO_sevensuperior" = -68; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -48; +"@MMK_R_KO_slash" = -16; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_threesuperior" = -33; +"@MMK_R_KO_trademark" = -100; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -20; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -19; +"@MMK_R_KO_x" = -16; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -22; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -114; +"@MMK_R_KO_V" = -85; +"@MMK_R_KO_W" = -56; +"@MMK_R_KO_Y" = -98; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 16; +"@MMK_R_KO_bracketright" = -82; +"@MMK_R_KO_colon" = -17; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -29; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eightsuperior" = -33; +"@MMK_R_KO_ellipsis" = -50; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -24; +"@MMK_R_KO_fivesuperior" = -41; +"@MMK_R_KO_foursuperior" = -43; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = 19; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 31; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -41; +"@MMK_R_KO_onesuperior" = -59; +"@MMK_R_KO_parenright" = -82; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -36; +"@MMK_R_KO_question" = -67; +"@MMK_R_KO_question.ss01" = -85; +"@MMK_R_KO_quotedbl" = -54; +"@MMK_R_KO_quotedblleft" = -75; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -66; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = -49; +"@MMK_R_KO_slash" = -15; +"@MMK_R_KO_t" = -28; +"@MMK_R_KO_threesuperior" = -33; +"@MMK_R_KO_trademark" = -99; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -20; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -19; +"@MMK_R_KO_x" = -16; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = -16; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -53; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -59; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -40; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -7; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = -105; +"@MMK_R_KO_a.ss05" = -66; +"@MMK_R_KO_asterisk" = -23; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -104; +"@MMK_R_KO_egrave" = -74; +"@MMK_R_KO_eight" = -40; +"@MMK_R_KO_ellipsis" = -71; +"@MMK_R_KO_f" = -56; +"@MMK_R_KO_five" = -22; +"@MMK_R_KO_four" = -91; +"@MMK_R_KO_g" = -39; +"@MMK_R_KO_guillemetleft" = -102; +"@MMK_R_KO_guillemetright" = -68; +"@MMK_R_KO_hyphen" = -96; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 73; +"@MMK_R_KO_n" = -52; +"@MMK_R_KO_nine" = -42; +"@MMK_R_KO_one" = -54; +"@MMK_R_KO_parenright" = 14; +"@MMK_R_KO_period" = -54; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -88; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -48; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -65; +"@MMK_R_KO_three" = -50; +"@MMK_R_KO_two" = -47; +"@MMK_R_KO_u" = -82; +"@MMK_R_KO_v" = -81; +"@MMK_R_KO_w" = -77; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = -58; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -33; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -5; +"@MMK_R_KO_asterisk" = -21; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_eight" = -29; +"@MMK_R_KO_ellipsis" = -43; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -72; +"@MMK_R_KO_guillemetleft" = -79; +"@MMK_R_KO_guillemetright" = -51; +"@MMK_R_KO_hyphen.case" = -78; +"@MMK_R_KO_nine" = -31; +"@MMK_R_KO_one" = -47; +"@MMK_R_KO_parenright.case" = 13; +"@MMK_R_KO_period" = -7; +"@MMK_R_KO_period.ss01" = -35; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -24; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -15; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = -46; +"@MMK_R_KO_slash" = 21; +"@MMK_R_KO_three" = -47; +"@MMK_R_KO_two" = -21; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -72; +"@MMK_R_KO_S" = -45; +"@MMK_R_KO_T" = -72; +"@MMK_R_KO_U" = -61; +"@MMK_R_KO_V" = -72; +"@MMK_R_KO_W" = -72; +"@MMK_R_KO_Y" = -72; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = -42; +"@MMK_R_KO_a.ss05" = -19; +"@MMK_R_KO_asterisk" = -72; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_e" = -45; +"@MMK_R_KO_eight" = -31; +"@MMK_R_KO_f" = -37; +"@MMK_R_KO_five" = -52; +"@MMK_R_KO_four" = -72; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -72; +"@MMK_R_KO_hyphen.case" = -72; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_nine" = -51; +"@MMK_R_KO_one" = -67; +"@MMK_R_KO_parenright" = -52; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_quotedbl" = -72; +"@MMK_R_KO_quotedblleft" = -72; +"@MMK_R_KO_quoteright" = -72; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_seven" = -72; +"@MMK_R_KO_six" = -72; +"@MMK_R_KO_slash" = 23; +"@MMK_R_KO_t" = -52; +"@MMK_R_KO_three" = -47; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -72; +"@MMK_R_KO_w" = -69; +"@MMK_R_KO_y" = -72; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -22; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -69; +"@MMK_R_KO_S" = -61; +"@MMK_R_KO_T" = -69; +"@MMK_R_KO_U" = -69; +"@MMK_R_KO_V" = -69; +"@MMK_R_KO_W" = -69; +"@MMK_R_KO_Y" = -69; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_asterisk" = -69; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_eight" = -45; +"@MMK_R_KO_f" = -56; +"@MMK_R_KO_five" = -58; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -45; +"@MMK_R_KO_guillemetleft" = -69; +"@MMK_R_KO_guillemetright" = -23; +"@MMK_R_KO_hyphen" = -69; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -18; +"@MMK_R_KO_j" = -18; +"@MMK_R_KO_n" = -19; +"@MMK_R_KO_nine" = -57; +"@MMK_R_KO_one" = -68; +"@MMK_R_KO_parenright" = -69; +"@MMK_R_KO_parenright.case" = -38; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_quotedbl" = -69; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -41; +"@MMK_R_KO_seven" = -68; +"@MMK_R_KO_six" = -68; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -65; +"@MMK_R_KO_three" = -63; +"@MMK_R_KO_two" = -17; +"@MMK_R_KO_u" = -54; +"@MMK_R_KO_v" = -69; +"@MMK_R_KO_w" = -69; +"@MMK_R_KO_y" = -69; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -20; +"@MMK_R_KO_I.ss02" = -15; +"@MMK_R_KO_J" = -11; +"@MMK_R_KO_O" = -87; +"@MMK_R_KO_S" = -79; +"@MMK_R_KO_T" = -173; +"@MMK_R_KO_U" = -84; +"@MMK_R_KO_V" = -162; +"@MMK_R_KO_W" = -136; +"@MMK_R_KO_Y" = -176; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -75; +"@MMK_R_KO_a.ss05" = -51; +"@MMK_R_KO_e" = -76; +"@MMK_R_KO_eight" = -75; +"@MMK_R_KO_f" = -54; +"@MMK_R_KO_five" = -82; +"@MMK_R_KO_four" = -85; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetright" = -70; +"@MMK_R_KO_i" = -21; +"@MMK_R_KO_j" = 91; +"@MMK_R_KO_nine" = -77; +"@MMK_R_KO_one" = -92; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_quotedbl" = -67; +"@MMK_R_KO_quotedblleft" = -130; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_s" = -58; +"@MMK_R_KO_seven" = -94; +"@MMK_R_KO_six" = -84; +"@MMK_R_KO_t" = -71; +"@MMK_R_KO_three" = -80; +"@MMK_R_KO_two" = -13; +"@MMK_R_KO_u" = -74; +"@MMK_R_KO_v" = -81; +"@MMK_R_KO_w" = -78; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -110; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -140; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 27; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asterisk" = 30; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -34; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -147; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -77; +"@MMK_R_KO_g" = -30; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -147; +"@MMK_R_KO_hyphen.case" = -39; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_nine" = 13; +"@MMK_R_KO_one" = 4; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 3; +"@MMK_R_KO_quoteright" = 14; +"@MMK_R_KO_quoteright.ss01" = 14; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_seven" = 22; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = -131; +"@MMK_R_KO_t" = 3; +"@MMK_R_KO_three" = 14; +"@MMK_R_KO_two" = 16; +"@MMK_R_KO_u" = -9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = -12; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = -74; +"@MMK_R_KO_S" = -46; +"@MMK_R_KO_T" = -138; +"@MMK_R_KO_U" = -65; +"@MMK_R_KO_V" = -138; +"@MMK_R_KO_W" = -74; +"@MMK_R_KO_Y" = -138; +"@MMK_R_KO_Z" = 11; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asterisk" = -74; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 12; +"@MMK_R_KO_e" = -53; +"@MMK_R_KO_egrave" = -53; +"@MMK_R_KO_eight" = -40; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -41; +"@MMK_R_KO_five" = -57; +"@MMK_R_KO_four" = -74; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -74; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -74; +"@MMK_R_KO_hyphen.case" = -74; +"@MMK_R_KO_i" = -12; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_n" = -12; +"@MMK_R_KO_nine" = -54; +"@MMK_R_KO_one" = -69; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_quotedblleft" = -138; +"@MMK_R_KO_quoteright" = -74; +"@MMK_R_KO_s" = -25; +"@MMK_R_KO_seven" = -74; +"@MMK_R_KO_six" = -67; +"@MMK_R_KO_slash" = 41; +"@MMK_R_KO_t" = -55; +"@MMK_R_KO_three" = -49; +"@MMK_R_KO_two" = -4; +"@MMK_R_KO_u" = -46; +"@MMK_R_KO_v" = -74; +"@MMK_R_KO_w" = -71; +"@MMK_R_KO_y" = -29; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = -20; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -68; +"@MMK_R_KO_S" = -51; +"@MMK_R_KO_T" = -128; +"@MMK_R_KO_U" = -68; +"@MMK_R_KO_V" = -128; +"@MMK_R_KO_W" = -68; +"@MMK_R_KO_Y" = -128; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -58; +"@MMK_R_KO_a.ss05" = -39; +"@MMK_R_KO_asterisk" = -68; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -56; +"@MMK_R_KO_egrave" = -57; +"@MMK_R_KO_eight" = -45; +"@MMK_R_KO_f" = -52; +"@MMK_R_KO_five" = -58; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -23; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -18; +"@MMK_R_KO_j" = 38; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = -57; +"@MMK_R_KO_one" = -68; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = -41; +"@MMK_R_KO_seven" = -68; +"@MMK_R_KO_six" = -68; +"@MMK_R_KO_slash" = 17; +"@MMK_R_KO_t" = -65; +"@MMK_R_KO_three" = -63; +"@MMK_R_KO_two" = -17; +"@MMK_R_KO_u" = -49; +"@MMK_R_KO_v" = -68; +"@MMK_R_KO_w" = -68; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -129; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -133; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_Y" = 21; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -59; +"@MMK_R_KO_a.ss05" = -38; +"@MMK_R_KO_asterisk" = 18; +"@MMK_R_KO_colon" = -18; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_e" = -60; +"@MMK_R_KO_egrave" = -51; +"@MMK_R_KO_eight" = 2; +"@MMK_R_KO_ellipsis" = -138; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -106; +"@MMK_R_KO_g" = -56; +"@MMK_R_KO_guillemetleft" = -56; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -138; +"@MMK_R_KO_hyphen.case" = -123; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_nine" = 12; +"@MMK_R_KO_one" = 8; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_quotedbl" = 17; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quoteright" = 16; +"@MMK_R_KO_s" = -40; +"@MMK_R_KO_seven" = 37; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -138; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 13; +"@MMK_R_KO_two" = 16; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -18; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -68; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 10; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -68; +"@MMK_R_KO_a.ss05" = -40; +"@MMK_R_KO_asterisk" = 24; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -56; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -67; +"@MMK_R_KO_guillemetleft" = -49; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -12; +"@MMK_R_KO_n" = -38; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -46; +"@MMK_R_KO_seven" = 24; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_three" = 9; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = -28; +"@MMK_R_KO_v" = -16; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -26; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -138; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 7; +"@MMK_R_KO_J" = -136; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -72; +"@MMK_R_KO_a.ss05" = -45; +"@MMK_R_KO_asterisk" = 23; +"@MMK_R_KO_colon" = -34; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_e" = -73; +"@MMK_R_KO_egrave" = -62; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -138; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -136; +"@MMK_R_KO_g" = -70; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = -138; +"@MMK_R_KO_hyphen.case" = -138; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -45; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quotedblleft" = 12; +"@MMK_R_KO_quoteright" = 12; +"@MMK_R_KO_s" = -60; +"@MMK_R_KO_seven" = 27; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_slash" = -138; +"@MMK_R_KO_t" = -14; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = -38; +"@MMK_R_KO_v" = -17; +"@MMK_R_KO_w" = -18; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = -29; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -74; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -74; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 7; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 24; +"@MMK_R_KO_Y" = 21; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -58; +"@MMK_R_KO_a.ss05" = -37; +"@MMK_R_KO_asterisk" = 18; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_e" = -59; +"@MMK_R_KO_egrave" = -50; +"@MMK_R_KO_eight" = 2; +"@MMK_R_KO_ellipsis" = -74; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -74; +"@MMK_R_KO_g" = -54; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -74; +"@MMK_R_KO_hyphen.case" = -74; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -17; +"@MMK_R_KO_nine" = 12; +"@MMK_R_KO_one" = 8; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_quotedbl" = 17; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quoteright" = 16; +"@MMK_R_KO_s" = -33; +"@MMK_R_KO_seven" = 37; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -74; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 13; +"@MMK_R_KO_two" = 16; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -17; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -74; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = -74; +"@MMK_R_KO_O" = -17; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_Y" = 15; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -72; +"@MMK_R_KO_a.ss05" = -44; +"@MMK_R_KO_asterisk" = 23; +"@MMK_R_KO_colon" = -29; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_e" = -72; +"@MMK_R_KO_egrave" = -61; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -74; +"@MMK_R_KO_f" = -6; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -74; +"@MMK_R_KO_g" = -69; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -74; +"@MMK_R_KO_hyphen.case" = -74; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -40; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = -13; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quotedblleft" = 12; +"@MMK_R_KO_quoteright" = 12; +"@MMK_R_KO_s" = -58; +"@MMK_R_KO_seven" = 27; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_slash" = -74; +"@MMK_R_KO_t" = -7; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 5; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_y" = -13; +"@MMK_R_KO_z" = -35; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -68; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -68; +"@MMK_R_KO_O" = -5; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 21; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -13; +"@MMK_R_KO_a" = -68; +"@MMK_R_KO_a.ss05" = -41; +"@MMK_R_KO_asterisk" = 33; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -68; +"@MMK_R_KO_egrave" = -60; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_five" = -5; +"@MMK_R_KO_four" = -68; +"@MMK_R_KO_g" = -68; +"@MMK_R_KO_guillemetleft" = -54; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -68; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -13; +"@MMK_R_KO_n" = -40; +"@MMK_R_KO_nine" = 2; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -20; +"@MMK_R_KO_parenright.case" = -19; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = 6; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -59; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -68; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 4; +"@MMK_R_KO_two" = 6; +"@MMK_R_KO_u" = -30; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -19; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = -34; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -67; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -67; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 2; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 27; +"@MMK_R_KO_Y" = 12; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -17; +"@MMK_R_KO_asterisk" = 30; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -67; +"@MMK_R_KO_comma.ss01" = -67; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -67; +"@MMK_R_KO_f" = 20; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -67; +"@MMK_R_KO_g" = -28; +"@MMK_R_KO_guillemetleft" = -36; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -67; +"@MMK_R_KO_hyphen.case" = -39; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -15; +"@MMK_R_KO_nine" = 13; +"@MMK_R_KO_one" = 16; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = -11; +"@MMK_R_KO_period" = -67; +"@MMK_R_KO_period.ss01" = -67; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 3; +"@MMK_R_KO_quoteright" = 14; +"@MMK_R_KO_quoteright.ss01" = 14; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_seven" = 22; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = -67; +"@MMK_R_KO_t" = 20; +"@MMK_R_KO_three" = 14; +"@MMK_R_KO_two" = 16; +"@MMK_R_KO_u" = -8; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -85; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -92; +"@MMK_R_KO_J" = -96; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -145; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -16; +"@MMK_R_KO_X" = -73; +"@MMK_R_KO_Y" = -57; +"@MMK_R_KO_Z" = -92; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -83; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = 4; +"@MMK_R_KO_ellipsis" = -110; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = -5; +"@MMK_R_KO_foursuperior" = 14; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = 27; +"@MMK_R_KO_hyphen" = -83; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -16; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -25; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -19; +"@MMK_R_KO_quoteright" = -16; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -63; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -88; +"@MMK_R_KO_t" = 15; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_underscore" = -95; +"@MMK_R_KO_v" = 19; +"@MMK_R_KO_w" = 18; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 19; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -8; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -148; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -82; +"@MMK_R_KO_W" = -55; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -115; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -67; +"@MMK_R_KO_bracketright" = -86; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 5; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_fivesuperior" = -24; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 7; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -54; +"@MMK_R_KO_parenright" = -76; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = -64; +"@MMK_R_KO_question.ss01" = -86; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -74; +"@MMK_R_KO_quotedblleft.ss01" = -68; +"@MMK_R_KO_quoteleft" = -74; +"@MMK_R_KO_quoteright" = -68; +"@MMK_R_KO_quoteright.ss01" = -68; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -34; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -13; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_trademark" = -83; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -19; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -148; +"@MMK_R_KO_V" = -57; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_bracketright" = -77; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 5; +"@MMK_R_KO_eightsuperior" = -16; +"@MMK_R_KO_ellipsis" = -21; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_fivesuperior" = -23; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 7; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -50; +"@MMK_R_KO_parenright" = -70; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_question" = -60; +"@MMK_R_KO_question.ss01" = -76; +"@MMK_R_KO_quotedbl" = -41; +"@MMK_R_KO_quotedblleft" = -67; +"@MMK_R_KO_quotedblleft.ss01" = -64; +"@MMK_R_KO_quoteleft" = -66; +"@MMK_R_KO_quoteright" = -62; +"@MMK_R_KO_quoteright.ss01" = -65; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -63; +"@MMK_R_KO_sixsuperior" = -31; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -8; +"@MMK_R_KO_threesuperior" = -14; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -18; +"@MMK_R_KO_w" = -8; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -17; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -147; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 45; +"@MMK_R_KO_J" = -121; +"@MMK_R_KO_O" = -24; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 15; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 44; +"@MMK_R_KO_W" = 46; +"@MMK_R_KO_Y" = 36; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -87; +"@MMK_R_KO_a.ss05" = -78; +"@MMK_R_KO_asterisk" = 22; +"@MMK_R_KO_colon" = -42; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -88; +"@MMK_R_KO_egrave" = -70; +"@MMK_R_KO_eight" = -4; +"@MMK_R_KO_ellipsis" = -189; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -104; +"@MMK_R_KO_g" = -85; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = -32; +"@MMK_R_KO_hyphen" = -101; +"@MMK_R_KO_hyphen.case" = -72; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -61; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = 22; +"@MMK_R_KO_quotedblleft.ss01" = 10; +"@MMK_R_KO_quoteright" = 23; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -74; +"@MMK_R_KO_seven" = 39; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_slash" = -154; +"@MMK_R_KO_t" = -31; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -53; +"@MMK_R_KO_v" = -37; +"@MMK_R_KO_w" = -37; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = -62; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 24; +"@MMK_R_KO_T" = -44; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_Y" = -43; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -19; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_ellipsis" = -37; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 13; +"@MMK_R_KO_four" = 27; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = 5; +"@MMK_R_KO_guillemetright" = 11; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = -4; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_nine" = 6; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -68; +"@MMK_R_KO_parenright.case" = -34; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 10; +"@MMK_R_KO_seven" = 2; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 14; +"@MMK_R_KO_two" = 8; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -147; +"@MMK_R_KO_H" = 6; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = -125; +"@MMK_R_KO_O" = -16; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 13; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = 24; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -62; +"@MMK_R_KO_a.ss05" = -38; +"@MMK_R_KO_asterisk" = 29; +"@MMK_R_KO_colon" = -30; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -67; +"@MMK_R_KO_egrave" = -43; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -187; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -88; +"@MMK_R_KO_g" = -60; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = -85; +"@MMK_R_KO_hyphen.case" = -55; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = -2; +"@MMK_R_KO_n" = -50; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_quotedbl" = 35; +"@MMK_R_KO_quotedblleft" = 21; +"@MMK_R_KO_quotedblleft.ss01" = 15; +"@MMK_R_KO_quoteright" = 26; +"@MMK_R_KO_quoteright.ss01" = 16; +"@MMK_R_KO_s" = -55; +"@MMK_R_KO_seven" = 44; +"@MMK_R_KO_six" = -12; +"@MMK_R_KO_slash" = -161; +"@MMK_R_KO_t" = -23; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_v" = -35; +"@MMK_R_KO_w" = -27; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = -49; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -71; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -19; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -18; +"@MMK_R_KO_bracketright" = -83; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 10; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -8; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 11; +"@MMK_R_KO_fivesuperior" = -8; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -16; +"@MMK_R_KO_guillemetright" = 21; +"@MMK_R_KO_hyphen" = -51; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -8; +"@MMK_R_KO_onesuperior" = -38; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_period" = 9; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -22; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -61; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -6; +"@MMK_R_KO_trademark" = -65; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 7; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 10; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = -35; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -24; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_Y" = -34; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asterisk" = 14; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 22; +"@MMK_R_KO_ellipsis" = -35; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 22; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = 0; +"@MMK_R_KO_guillemetright" = 14; +"@MMK_R_KO_hyphen" = 15; +"@MMK_R_KO_hyphen.case" = -5; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 15; +"@MMK_R_KO_one" = 3; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -28; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 19; +"@MMK_R_KO_seven" = 8; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_three" = 15; +"@MMK_R_KO_two" = 13; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 2; +"@MMK_R_KO_O" = 6; +"@MMK_R_KO_S" = -2; +"@MMK_R_KO_T" = -43; +"@MMK_R_KO_U" = -2; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_Y" = -43; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -13; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asterisk" = 8; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -13; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eight" = -5; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -4; +"@MMK_R_KO_four" = -49; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = 9; +"@MMK_R_KO_hyphen" = -42; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 7; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -54; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -15; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = 5; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -80; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = -95; +"@MMK_R_KO_J" = -96; +"@MMK_R_KO_O" = 30; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -147; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_X" = -76; +"@MMK_R_KO_Y" = -54; +"@MMK_R_KO_Z" = -87; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -83; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = -74; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = 8; +"@MMK_R_KO_ellipsis" = -110; +"@MMK_R_KO_exclam" = 12; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = -3; +"@MMK_R_KO_guillemetleft" = -11; +"@MMK_R_KO_guillemetright" = 27; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 1; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -81; +"@MMK_R_KO_period" = -72; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -27; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = -13; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -8; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -59; +"@MMK_R_KO_six" = 32; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -89; +"@MMK_R_KO_t" = 12; +"@MMK_R_KO_threesuperior" = -2; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_underscore" = -91; +"@MMK_R_KO_v" = 24; +"@MMK_R_KO_w" = 27; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 25; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -59; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -68; +"@MMK_R_KO_J" = -71; +"@MMK_R_KO_O" = 26; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -145; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -64; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = -62; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -10; +"@MMK_R_KO_bracketright" = -85; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = -60; +"@MMK_R_KO_comma.ss01" = -68; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 19; +"@MMK_R_KO_ellipsis" = -79; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = 10; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 11; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = 26; +"@MMK_R_KO_hyphen" = -9; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 7; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 7; +"@MMK_R_KO_n" = 6; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -79; +"@MMK_R_KO_period" = -60; +"@MMK_R_KO_period.ss01" = -69; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -28; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -14; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -56; +"@MMK_R_KO_six" = 28; +"@MMK_R_KO_sixsuperior" = 3; +"@MMK_R_KO_slash" = -45; +"@MMK_R_KO_t" = 9; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -58; +"@MMK_R_KO_u" = 19; +"@MMK_R_KO_underscore" = -66; +"@MMK_R_KO_v" = 26; +"@MMK_R_KO_w" = 29; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = 27; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 11; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 8; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -155; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -42; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = -69; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = -19; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asciicircum" = -17; +"@MMK_R_KO_bracketright" = -86; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 8; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = -20; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eightsuperior" = -8; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = 12; +"@MMK_R_KO_hyphen" = -53; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -52; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -32; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = -8; +"@MMK_R_KO_quoteright.ss01" = -20; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -69; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -69; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 19; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -155; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -54; +"@MMK_R_KO_W" = -29; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -71; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -7; +"@MMK_R_KO_asciicircum" = -21; +"@MMK_R_KO_bracketright" = -83; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 19; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -23; +"@MMK_R_KO_onesuperior" = -48; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -35; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = -10; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_sevensuperior" = -65; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -53; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -32; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -21; +"@MMK_R_KO_a.ss05" = -7; +"@MMK_R_KO_bracketright" = -74; +"@MMK_R_KO_colon" = 19; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -22; +"@MMK_R_KO_egrave" = -17; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -12; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 19; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -42; +"@MMK_R_KO_parenright" = -61; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -34; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -14; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_sevensuperior" = -59; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 11; +"@MMK_R_KO_z" = 18; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -19; +"@MMK_R_KO_H" = 1; +"@MMK_R_KO_I.ss02" = -31; +"@MMK_R_KO_J" = -25; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = -63; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_Y" = -56; +"@MMK_R_KO_Z" = -17; +"@MMK_R_KO_a" = 27; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -20; +"@MMK_R_KO_comma.ss01" = -36; +"@MMK_R_KO_e" = 29; +"@MMK_R_KO_egrave" = 29; +"@MMK_R_KO_eight" = 21; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_five" = 12; +"@MMK_R_KO_four" = 26; +"@MMK_R_KO_g" = 28; +"@MMK_R_KO_guillemetleft" = 24; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 34; +"@MMK_R_KO_hyphen.case" = 28; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_j" = 4; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_nine" = 4; +"@MMK_R_KO_one" = -21; +"@MMK_R_KO_parenright" = -91; +"@MMK_R_KO_parenright.case" = -46; +"@MMK_R_KO_period" = -20; +"@MMK_R_KO_period.ss01" = -45; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_seven" = -10; +"@MMK_R_KO_six" = 23; +"@MMK_R_KO_slash" = -24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 11; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 16; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -6; +}; +A = { +Dcroat = -48; +Tbar = -119; +asciitilde = -58; +asterisk = -120; +backslash = -156; +g.ss06 = 19; +minus = -88; +one = -61; +ordmasculine = -138; +plus = -73; +quotedbl = -134; +registered = -119; +seven = -72; +two = 0; +twosuperior = -77; +}; +Aacute = { +Tbar = -119; +}; +Abrevedotbelow.ss01 = { +T = -140; +}; +Aogonek = { +comma = 29; +parenright = 0; +}; +Atilde = { +ordfeminine = -137; +}; +B = { +Hbar = 44; +hbar = 40; +idieresis = 47; +itilde = 66; +}; +C = { +h = 0; +l = 0; +plus = -5; +three = 25; +}; +D = { +Lslash = 36; +Oslash = 24; +braceright = -79; +bracketright.case = -60; +}; +E = { +H = 0; +idieresis = 48; +}; +Eogonek = { +comma = 17; +}; +F = { +fourinferior = -100; +i = -6; +igrave = 39; +}; +G = { +Lslash = 37; +lslash = 28; +}; +Germandbls = { +S = 28; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -11; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 31; +itilde = 71; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 41; +D = 41; +E = 41; +H = 41; +Hbar = 112; +I = 41; +L = 41; +M = 41; +O = 47; +R = 41; +S = 65; +U = 53; +W = 44; +i = 27; +}; +I = { +Hbar = 40; +I = 0; +jcircumflex = 49; +}; +Icircumflex = { +Icircumflex = 39; +l.ss04 = 27; +}; +Imacron = { +Imacron = 45; +}; +Itilde = { +itilde = 71; +}; +J = { +Hbar = 46; +itilde = 77; +}; +Jacute = { +Imacron = 16; +}; +K = { +asciitilde = -99; +four = -54; +idieresis = 55; +igrave = 38; +itilde = 57; +less = -98; +logicalnot = -186; +minus = -128; +one = -8; +oslash = 0; +plus = -114; +}; +L = { +H = 0; +Tbar = -135; +asciitilde = -219; +asterisk = -141; +backslash = -176; +equal = -150; +four = -185; +less = -196; +logicalnot = -284; +minus = -264; +one = -67; +ordfeminine = -231; +ordmasculine = -224; +oslash = -17; +plus = -163; +quotedbl = -147; +quoteleft.ss01 = -68; +quoteright = -74; +quoteright.ss01 = -68; +registered = -250; +seven = -81; +twosuperior = -197; +}; +Lcaron = { +A = 9; +O = -78; +U = -58; +Uacute = -58; +V = -63; +a = -63; +hyphen = -188; +hyphen.case = -171; +u = -52; +v = -97; +}; +Lcommaaccent = { +twosuperior = -197; +}; +Lslash = { +twosuperior = -125; +}; +M = { +Hbar = 40; +idieresis = 55; +igrave = 31; +itilde = 71; +}; +N = { +Hbar = 40; +idieresis = 54; +igrave = 31; +itilde = 71; +}; +O = { +Dcroat = 31; +Lslash = 36; +braceright = -78; +bracketright.case = -55; +itilde = 23; +}; +Oslash = { +T = -8; +V = -6; +Y = -8; +parenright = 0; +parenright.case = 11; +}; +P = { +fourinferior = -87; +idieresis = 46; +itilde = 65; +two = 27; +}; +R = { +Hbar = 52; +jcircumflex = 58; +two = 19; +}; +S = { +Hbar = 32; +Lslash = 3; +dollar = 11; +four = 25; +idieresis = 27; +itilde = 67; +lslash = 0; +three = 15; +}; +T = { +Oslash = -34; +a.ss05 = -137; +aacute.ss05 = -110; +abreve = -81; +abreveacute = -79; +acircumflex = -102; +acircumflexacute = -102; +acircumflexdotbelow = -102; +adieresis = -87; +adotbelow.ss05 = -137; +ae = -138; +agrave = -98; +amacron = -71; +ampersand = -32; +aring = -93; +asciitilde = -149; +atilde = -75; +equal = -95; +four = -137; +g.ss06 = -139; +h = -3; +i.ss01 = -4; +iacute = -38; +idieresis = 53; +idotless = -84; +igrave = 41; +itilde = 0; +less = -141; +logicalnot = -210; +minus = -162; +ograve = -85; +plus = -121; +racute = -84; +scaron = -30; +seven = 17; +twoinferior = -156; +udieresis = -73; +udieresis.ss01 = -86; +ugrave = -88; +uhorngrave = -88; +umacron = -61; +ycircumflex = -75; +ygrave = -75; +yhookabove = -99; +zcaron = -61; +zeroinferior = -155; +}; +Tbar = { +A = -95; +Aacute = -95; +Tbar = 14; +a = -47; +comma = -74; +e = -46; +o = -45; +period = -72; +slash = -116; +}; +Tcaron = { +a.ss05 = -137; +}; +Tcedilla = { +a.ss05 = -137; +abreve = -81; +four = -137; +}; +Tcommaaccent = { +a.ss05 = -137; +abreve = -81; +four = -137; +}; +Thorn = { +A = -39; +AE = -39; +Aacute = -39; +J = -97; +O = 30; +Oacute = 30; +V = -56; +Y = -74; +Yacute = -74; +a = 25; +aacute = 25; +e = 26; +o = 27; +oacute = 27; +period = -72; +}; +U = { +Hbar = 51; +jcircumflex = 58; +}; +V = { +four = -91; +iacute = -21; +ibreve = 87; +idieresis = 64; +igrave = 49; +itilde = 73; +minus = -76; +plus = -55; +scaron = -20; +seven = 44; +twoinferior = -84; +}; +W = { +Hbar = 50; +backslash = 50; +idieresis = 76; +igrave = 51; +itilde = 81; +}; +X = { +asciitilde = -98; +four = -56; +less = -86; +logicalnot = -174; +minus = -114; +notequal = -119; +one = -10; +plus = -101; +}; +Y = { +a.ss05 = -82; +agrave = -89; +amacron = -56; +ampersand = -36; +asciitilde = -88; +at = -43; +four = -137; +g.ss06 = -87; +igrave = 44; +less = -64; +logicalnot = -141; +minus = -103; +ograve = -71; +plus = -79; +scaron = -22; +twoinferior = -130; +}; +Z = { +four = -136; +ibreve = 74; +igrave = 42; +itilde = 64; +minus = -112; +plus = -88; +}; +_B.currency = { +_baht.bar = -7; +}; +a = { +braceright = -74; +}; +a.ss05 = { +g.ss06 = 14; +}; +acircumflexacute.ss05 = { +y = -50; +}; +adieresis.ss05 = { +germandbls = -26; +}; +ampersand = { +V = -116; +W = -73; +Y = -156; +quotedbl = -109; +quotedblleft = -138; +}; +aogonek = { +j = 5; +parenright = -20; +}; +aogonek.ss05 = { +parenright = 0; +}; +approxequal = { +parenright = -134; +parenright.case = -129; +}; +asciicircum = { +J = -184; +X = -113; +Y = -100; +bracketright = -127; +comma = -74; +comma.ss01 = -68; +four = -94; +hyphen = -145; +parenright = -132; +parenright.case = -131; +period = -72; +period.ss01 = -69; +slash = -157; +}; +asciitilde = { +I.ss02 = -216; +J = -193; +V = -169; +W = -141; +X = -193; +Y = -203; +Z = -186; +bracketright = -165; +bracketright.case = -166; +comma = -74; +comma.ss01 = -68; +eight = -94; +exclam = -90; +four = -96; +one = -148; +parenright = -160; +parenright.case = -147; +period = -72; +period.ss01 = -69; +question = -133; +quotedbl = -130; +quotedblright = -138; +seven = -123; +slash = -171; +three = -115; +two = -114; +}; +at = { +T = -90; +parenright = -105; +}; +b = { +asterisk = -56; +braceright = -82; +lslash = 23; +one = -69; +}; +backslash = { +T = -158; +V = -187; +Y = -157; +asterisk = -131; +backslash = -169; +quotedbl = -142; +quotedblleft = -138; +quotedblleft.ss01 = -128; +quotedblright = -138; +quotedblright.ss01 = -128; +quoteleft = -74; +quoteright = -74; +quotesingle = -67; +}; +baht = { +parenright = -59; +}; +braceleft = { +p = -18; +}; +bracketleft = { +asciicircum = -104; +asciitilde = -91; +bracketright = 6; +jcircumflex = 71; +p = -22; +pi = -79; +plus = -98; +x = -85; +}; +c = { +asterisk = -47; +braceright = -85; +}; +cent = { +parenright = -101; +}; +colon = { +T = -72; +Y = -59; +four = -65; +one = -18; +parenright = -55; +two = 0; +zero = 0; +}; +colon.ss01 = { +T = -69; +four = -69; +parenright = -69; +}; +comma = { +eightsuperior = -74; +fivesuperior = -74; +foursuperior = -74; +ninesuperior = -74; +onesuperior = -74; +quoteleft = -74; +quotesingle = -67; +sevensuperior = -74; +sixsuperior = -74; +threesuperior = -74; +twosuperior = -74; +}; +comma.ss01 = { +eightsuperior = -68; +fivesuperior = -68; +foursuperior = -68; +ninesuperior = -68; +onesuperior = -68; +sevensuperior = -68; +sixsuperior = -68; +threesuperior = -68; +twosuperior = -68; +}; +copyright = { +Y = -94; +parenright = -114; +}; +d = { +idieresis = 21; +igrave = 21; +itilde = 21; +}; +dcaron = { +C = 116; +H = 155; +bracketright = 36; +eightsuperior = 152; +exclam = 169; +exclam.ss01 = 169; +fivesuperior = 155; +foursuperior = 83; +h = 71; +i = 64; +j = 64; +k = 71; +l = 71; +l.ss03 = 74; +l.ss04 = 71; +ninesuperior = 162; +onesuperior = 149; +parenright = 133; +question = 175; +question.ss01 = 127; +quotedbl = 190; +quotedblleft = 168; +quotedblleft.ss01 = 154; +quoteleft = 168; +quoteleft.ss01 = 154; +quotesingle = 190; +sevensuperior = 160; +sixsuperior = 154; +t = 20; +t_i.liga = 17; +t_t.liga = 20; +threesuperior = 138; +twosuperior = 142; +zcaron = 21; +}; +dcroat = { +i = 21; +igrave = 21; +itilde = 22; +}; +degree = { +J = -158; +comma = -74; +comma.ss01 = -68; +emdash = -182; +endash = -144; +four = -94; +hyphen = -143; +parenright = -74; +parenright.case = -73; +period = -72; +period.ss01 = -69; +slash = -154; +}; +divide = { +parenright = -122; +}; +dollar = { +parenright = -74; +three = 9; +}; +e = { +asterisk = -53; +backslash = -81; +braceright = -90; +germandbls = -22; +one = -75; +seven = -73; +}; +ecircumflexacute = { +t = -23; +}; +eight = { +bracketright = -48; +degree = -19; +}; +eight.dnom = { +degree = -131; +question.ss01 = -119; +quotedbl = -100; +quotedblleft = -138; +quotedblright = -138; +}; +eightsuperior = { +comma = -74; +comma.ss01 = -68; +period = -72; +period.ss01 = -69; +slash = -93; +}; +ellipsis = { +Tbar = -177; +bracketright = -98; +eightsuperior = -220; +fivesuperior = -218; +foursuperior = -207; +ninesuperior = -226; +onesuperior = -110; +parenleft = -54; +parenleft.case = -68; +question = -101; +quoteleft = -74; +quoteright = -74; +quotesingle = -67; +sevensuperior = -185; +sixsuperior = -226; +threesuperior = -212; +twosuperior = -197; +}; +ellipsis.ss01 = { +Tbar = -178; +bracketright = -98; +eightsuperior = -220; +fivesuperior = -218; +foursuperior = -207; +ninesuperior = -226; +onesuperior = -110; +question.ss01 = -119; +quoteleft.ss01 = -68; +quoteright.ss01 = -68; +quotesingle = -67; +sevensuperior = -185; +sixsuperior = -226; +threesuperior = -212; +twosuperior = -197; +}; +emdash = { +foursuperior = -133; +question = -98; +}; +emdash.case = { +X = -97; +quotedblbase = -138; +quotedblbase.ss01 = -128; +}; +endash = { +X = -54; +endash = 0; +foursuperior = -133; +question = -98; +}; +endash.case = { +H = 1; +X = -97; +quotedblbase = -138; +quotedblbase.ss01 = -128; +}; +eng = { +bracketright = -13; +}; +eogonek = { +lslash = 15; +}; +equal = { +T = -104; +equal = 0; +parenright = -98; +parenright.case = -86; +}; +eth = { +a = 16; +e = 16; +g = 13; +hyphen = 29; +parenright = -68; +}; +euro = { +parenright = -92; +parenright.case = -59; +}; +exclamdown = { +T = -90; +V = -50; +Y = -65; +}; +f = { +igrave = 0; +n = 0; +o = -5; +}; +f_f.liga = { +igrave = 0; +}; +f_f_i.liga = { +idieresis = 22; +}; +fi = { +idieresis = 22; +}; +five = { +degree = -48; +ordmasculine = -44; +percent = -17; +}; +five.dnom = { +degree = -126; +question.ss01 = -114; +quotedblleft = -138; +}; +five.numr = { +fraction = 10; +}; +fiveinferior = { +T = -155; +}; +fivesuperior = { +comma = -74; +comma.ss01 = -68; +period = -72; +period.ss01 = -69; +slash = -93; +}; +fl = { +idieresis = 22; +itilde = 22; +periodcentered.loclCAT = 50; +}; +four = { +asciicircum = -107; +bracketright = -76; +bracketright.case = -73; +degree = -80; +ordfeminine = -68; +ordmasculine = -67; +percent = -60; +x = -48; +}; +four.dnom = { +degree = -119; +question.ss01 = -106; +quotedblleft = -138; +}; +fourinferior = { +T = -152; +V = -122; +}; +foursuperior = { +comma = -74; +comma.ss01 = -68; +period = -72; +period.ss01 = -69; +slash = -100; +}; +fraction = { +eight.dnom = 8; +four.dnom = -51; +fourinferior = -51; +seveninferior = 43; +two.dnom = 8; +zero.dnom = 0; +}; +g = { +bracketright = -34; +j = 22; +j.ss01 = 22; +parenright = -32; +slash = 17; +}; +g.ss06 = { +g.ss06 = 32; +}; +gcaron.ss06 = { +gcaron.ss06 = 32; +}; +gdotaccent = { +j = 22; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 32; +}; +germandbls = { +e = 12; +hyphen = 25; +parenright = -65; +}; +greater = { +T = -141; +parenright = -100; +}; +greaterequal = { +T = -202; +}; +guillemetleft = { +pi = 11; +}; +guillemetright = { +X = -42; +bracketright = -83; +}; +guilsinglright = { +X = -42; +}; +h = { +asterisk = -50; +}; +hyphen = { +Lslash = 21; +X = -52; +bracketright = -84; +foursuperior = -133; +pi = -23; +question = -98; +quotedblbase = -138; +quoteleft = -74; +quotesingle = -67; +x = -61; +}; +hyphen.case = { +Dcroat = 25; +X = -97; +bracketright.case = -85; +quotedblbase = -138; +quotedblbase.ss01 = -128; +quotesinglbase = -74; +}; +i = { +T = -28; +idieresis = 22; +jcircumflex = 23; +parenright = -43; +}; +i.ss01 = { +parenright = -26; +}; +iacute = { +rcaron = 22; +}; +icircumflex = { +b = 23; +h = 23; +i = 22; +icircumflex = 49; +j = 23; +k = 23; +l = 23; +l.ss03 = 23; +l.ss04 = 24; +question = 87; +quotedbl = 68; +quoteright = 73; +quotesingle = 70; +}; +idieresis = { +b = 23; +idieresis = 22; +k = 23; +l = 23; +l.ss03 = 19; +l.ss04 = 23; +}; +idotaccent = { +parenright = -43; +}; +idotaccent.ss01 = { +parenright = -26; +}; +imacron = { +b = 23; +imacron = 61; +j = 22; +k = 23; +kcommaaccent = 23; +l = 23; +l.ss04 = 23; +lcommaaccent = 23; +quotedbl = 115; +}; +infinity = { +parenright = -110; +parenright.case = -86; +}; +integral = { +a = -74; +}; +iogonek = { +j = 5; +}; +itilde = { +h = 23; +itilde = 25; +quotedbl = 101; +quotesingle = 103; +}; +j = { +j = 22; +}; +jacute = { +backslash = 94; +iogonek = 25; +}; +jcircumflex = { +i = 22; +jcircumflex = 62; +}; +k = { +oslash = -12; +}; +l = { +at = 0; +idieresis = 22; +igrave = 22; +itilde = 22; +jcircumflex = 22; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = 0; +}; +l.ss03 = { +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -26; +}; +l.ss04 = { +periodcentered.loclCAT = 50; +periodcentered.loclCAT.ss01 = 0; +}; +lcaron = { +exclam.ss01 = 124; +l = 66; +ncaron = 22; +scaron = 13; +twosuperior = 99; +}; +lcaron.ss03 = { +b = 7; +eightsuperior = 53; +exclam = 66; +exclam.ss01 = 66; +fivesuperior = 52; +k = 7; +ninesuperior = 59; +onesuperior = 56; +question = 72; +quotedbl = 87; +quotesingle = 87; +sevensuperior = 59; +sixsuperior = 51; +}; +lcaron.ss04 = { +exclam.ss01 = 124; +twosuperior = 99; +}; +liraTurkish = { +one = -58; +parenright = -103; +question = -65; +quotedbl = -74; +quotesingle = -67; +seven = -64; +}; +logicalnot = { +Y = -196; +parenright = -160; +seven = -155; +}; +m = { +asterisk = -48; +braceright = -68; +twosuperior = -15; +}; +minus = { +T = -163; +X = -112; +comma = -74; +one = -83; +parenright = -122; +parenright.case = -105; +period = -72; +seven = -76; +three = -5; +two = -48; +}; +mu = { +mu = -14; +parenright = -63; +quotesingle = -28; +}; +multiply = { +parenright = -109; +parenright.case = -84; +}; +n = { +asterisk = -52; +at = 0; +braceright = -67; +degree = -85; +g.ss06 = 12; +n = 0; +one = -70; +ordmasculine = -63; +}; +ncaron = { +Yacute = -62; +}; +nine = { +bracketright = -81; +degree = -41; +}; +nine.dnom = { +degree = -146; +question = -102; +question.ss01 = -116; +quotedbl = -107; +quotedblleft = -138; +quotedblleft.ss01 = -128; +quotedblright = -138; +quotedblright.ss01 = -128; +}; +ninesuperior = { +comma = -74; +comma.ss01 = -68; +fraction = -6; +period = -72; +period.ss01 = -69; +slash = -110; +}; +notequal = { +parenright = -160; +parenright.case = -137; +}; +numbersign = { +parenright = -83; +}; +o = { +asterisk = -60; +backslash = -82; +braceright = -82; +germandbls = -28; +lslash = 23; +n = 0; +one = -69; +}; +oacute = { +lslash = 23; +}; +ocircumflexacute = { +bracketright = -23; +parenright = -22; +}; +odieresis = { +germandbls = -25; +}; +ohorn = { +i = 0; +m = 0; +n = 0; +parenright = -53; +}; +ohornacute = { +c = 16; +i = 0; +m = 0; +n = 0; +p = 0; +t = -12; +t_i.liga = -12; +t_t.liga = -12; +}; +ohorndotbelow = { +c = 16; +i = 0; +n = 0; +p = 0; +t = -12; +t_i.liga = -13; +t_t.liga = -12; +u = 10; +}; +ohorngrave = { +i = 0; +n = 0; +parenright = -53; +}; +ohornhookabove = { +i = 0; +n = 0; +}; +ohorntilde = { +i = 0; +n = 0; +}; +ohungarumlaut = { +parenright = -62; +}; +one = { +comma.ss01 = -22; +degree = -19; +equal = 0; +four = 0; +icircumflex = 38; +nine = 0; +one = 0; +parenright = -13; +percent = 0; +period.ss01 = -22; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -105; +one.dnom = 0; +question.ss01 = -105; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -74; +comma.ss01 = -68; +period = -72; +period.ss01 = -69; +slash = -93; +}; +ordfeminine = { +comma = -74; +comma.ss01 = -68; +period = -72; +period.ss01 = -69; +}; +ordmasculine = { +comma = -74; +comma.ss01 = -68; +hyphen = -71; +parenright = -65; +period = -72; +period.ss01 = -69; +slash = -125; +}; +oslash = { +d = 16; +e = 17; +g = 15; +hyphen = 31; +parenright = -57; +y = 0; +}; +p = { +asterisk = -57; +backslash = -79; +braceright = -82; +lslash = 23; +one = -69; +}; +parenleft = { +Dcroat = -61; +H = 0; +Icircumflex = 19; +Oslash = -45; +ampersand = -50; +approxequal = -140; +asciicircum = -109; +asciitilde = -106; +at = -81; +cent = -88; +copyright = -76; +degree = -54; +divide = -120; +dollar = -49; +equal = -92; +euro = -97; +greaterequal = -88; +i = -38; +idotaccent = -38; +infinity = -94; +iogonek = 66; +jcircumflex = 76; +less = -95; +literSign = -80; +logicalnot = -159; +minus = -120; +mu = -24; +multiply = -96; +notequal = -148; +numbersign = -79; +oslash = -43; +p = -7; +parenleft = -47; +pi = -71; +plus = -110; +plusminus = -59; +published = -76; +question = -35; +quotedblbase = 0; +quoteleft = -24; +radical = -100; +scaron = -44; +section = -39; +sterling = -51; +x = -55; +}; +parenleft.case = { +Icircumflex = 44; +approxequal = -129; +asciicircum = -108; +asciitilde = -90; +dollar = -42; +equal = -78; +euro = -74; +minus = -105; +numbersign = -70; +parenleft.case = -38; +plus = -96; +question = -32; +quotedblbase = 0; +quoteleft = -24; +}; +parenright = { +bracketright = -51; +comma = -8; +comma.ss01 = -20; +hyphen = 24; +parenleft = 16; +parenright = -47; +period = -7; +period.ss01 = -27; +quotedbl = -22; +}; +parenright.case = { +comma = -26; +comma.ss01 = -39; +parenright.case = -38; +period = -26; +period.ss01 = -47; +}; +percent = { +asterisk = -73; +bracketright = -78; +comma.ss01 = -29; +eightsuperior = -72; +fivesuperior = -77; +foursuperior = -96; +ninesuperior = -76; +onesuperior = -74; +parenright = -86; +parenright.case = -45; +period = -11; +period.ss01 = -32; +question = -77; +question.ss01 = -98; +quotedbl = -77; +quotedblleft = -81; +quotedblright = -76; +quoteleft = -74; +quoteright = -74; +quotesingle = -67; +sevensuperior = -79; +sixsuperior = -84; +threesuperior = -71; +twosuperior = -45; +}; +period = { +bracketright = -70; +eightsuperior = -72; +fivesuperior = -72; +foursuperior = -72; +ninesuperior = -72; +onesuperior = -72; +ordfeminine = -72; +ordmasculine = -72; +parenleft.case = -50; +question = -72; +quoteleft = -72; +quotesingle = -67; +sevensuperior = -72; +sixsuperior = -72; +threesuperior = -72; +twosuperior = -72; +}; +period.ss01 = { +bracketright = -69; +eightsuperior = -69; +fivesuperior = -69; +foursuperior = -69; +ninesuperior = -69; +onesuperior = -69; +ordfeminine = -69; +ordmasculine = -69; +question.ss01 = -69; +sevensuperior = -69; +sixsuperior = -69; +threesuperior = -69; +twosuperior = -69; +}; +periodcentered.loclCAT = { +l = 49; +l.ss03 = 54; +}; +perthousand = { +asterisk = -128; +parenright = -89; +parenright.case = -54; +question = -108; +question.ss01 = -123; +quotedblleft = -138; +quotedblleft.ss01 = -128; +quotedblright = -138; +quotedblright.ss01 = -128; +quoteleft = -74; +quoteright = -74; +}; +pi = { +hyphen = -23; +parenright = -58; +period = 10; +pi = 13; +quotesingle = 0; +}; +plus = { +J = -116; +T = -139; +V = -75; +X = -85; +Y = -111; +braceright = -100; +bracketright = -98; +comma = -74; +comma.ss01 = -68; +one = -73; +parenright = -114; +parenright.case = -95; +period = -72; +period.ss01 = -69; +quotedbl = -60; +seven = -69; +slash = -64; +three = -5; +two = -40; +}; +published = { +parenright = -114; +}; +q = { +bracketright = -11; +j = 22; +parenright = -15; +}; +question = { +A = -83; +J = -104; +comma = -74; +hyphen = -34; +parenright = -68; +parenright.case = -67; +period = -72; +question = 11; +questiondown = -108; +slash = -88; +}; +question.ss01 = { +comma.ss01 = -68; +parenright = -68; +parenright.case = -67; +period.ss01 = -69; +questiondown.ss01 = -115; +}; +questiondown.case = { +T = -98; +V = -102; +Y = -102; +quotedbl = -103; +quotedblleft = -102; +quotedblleft.ss01 = -115; +quoteright = -74; +}; +questiondown.ss01 = { +C = -112; +Q = -112; +Q.ss09 = -112; +T = -198; +V = -180; +Y = -187; +four = -109; +quotedbl = -125; +quotedblleft.ss01 = -128; +quotesingle = -67; +}; +quotedbl = { +ellipsis.ss01 = -147; +exclamdown = -15; +g.ss06 = -28; +icircumflex = 70; +mu = -18; +questiondown = -118; +questiondown.case = -69; +questiondown.ss01 = -126; +underscore = -147; +}; +quotedblbase = { +copyright = -126; +divide = -138; +equal = -124; +euro = -138; +minus = -138; +p = 0; +plus = -138; +question = -93; +quotedblright = -138; +quoteleft = -74; +}; +quotedblbase.ss01 = { +divide = -128; +minus = -128; +plus = -128; +question.ss01 = -119; +quotedblright.ss01 = -128; +}; +quotedblleft = { +g.ss06 = -51; +mu = -18; +questiondown = -123; +questiondown.case = -88; +quotedblbase = -138; +underscore = -138; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -128; +questiondown.ss01 = -128; +quotedblbase.ss01 = -128; +underscore = -128; +}; +quotedblright = { +asciitilde = -75; +questiondown = -136; +questiondown.case = -110; +quotesinglbase = -74; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -128; +questiondown.case = -110; +questiondown.ss01 = -128; +}; +quoteleft = { +questiondown = -74; +questiondown.case = -74; +quotedblbase = -74; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -68; +}; +quoteright = { +icircumflex = 69; +questiondown = -74; +quotedblbase = -74; +}; +quoteright.ss01 = { +questiondown.ss01 = -68; +quotedblbase.ss01 = -68; +}; +quotesinglbase = { +T = -74; +V = -74; +Y = -74; +minus = -74; +plus = -74; +question = -74; +quotedblleft = -74; +quoteleft = -74; +}; +quotesinglbase.ss01 = { +T = -68; +V = -68; +Y = -68; +question.ss01 = -68; +}; +quotesingle = { +Hbar = 57; +g.ss06 = -26; +icircumflex = 71; +igrave = 41; +imacron = 116; +itilde = 103; +l.ss04 = 31; +questiondown = -67; +questiondown.case = -67; +underscore = -67; +}; +r = { +braceright = -79; +fourinferior = -90; +g.ss06 = -12; +parenright = -78; +}; +radical = { +A = -117; +}; +rcaron = { +sevensuperior = 0; +}; +registered = { +comma = -74; +comma.ss01 = -68; +parenright = -89; +parenright.case = -81; +period = -72; +period.ss01 = -69; +slash = -95; +}; +s = { +asterisk = -37; +braceright = -84; +l = 0; +}; +scaron = { +T = -69; +}; +semicolon = { +hyphen = -74; +}; +seven = { +minus = -94; +percent = 4; +plus = -70; +underscore = -153; +}; +seven.dnom = { +question.ss01 = -134; +}; +seven.numr = { +fraction = -47; +}; +seveninferior = { +parenright = -96; +}; +sevensuperior = { +A = -157; +comma = -74; +comma.ss01 = -68; +fraction = -51; +period = -72; +period.ss01 = -69; +slash = -168; +}; +six = { +bracketright = -56; +degree = -25; +}; +six.dnom = { +degree = -133; +question.ss01 = -118; +quotedbl = -101; +quotedblleft = -138; +quotedblleft.ss01 = -128; +quotedblright = -138; +}; +sixinferior = { +T = -158; +}; +sixsuperior = { +comma = -74; +comma.ss01 = -68; +period = -72; +period.ss01 = -69; +slash = -95; +}; +slash = { +fourinferior = -138; +g.ss06 = -59; +ibreve = 89; +l.ss04 = 49; +mu = -53; +quotedblbase = -138; +quotedblbase.ss01 = -128; +quotesinglbase = -74; +underscore = -157; +}; +sterling = { +two = 15; +}; +t_i.liga = { +idieresis = 22; +}; +tcaron = { +b = 0; +exclam = 27; +h = 0; +hyphen = -51; +i = 0; +j = 0; +k = 0; +parenright = 32; +quotedbl = 44; +quotedblleft = 20; +quotesingle = 44; +}; +tcedilla = { +parenright = 32; +}; +tenge = { +comma = -74; +comma.ss01 = -68; +period = -72; +period.ss01 = -69; +slash = -106; +}; +three = { +bracketright = -47; +}; +three.dnom = { +degree = -130; +question.ss01 = -120; +quotedbl = -99; +quotedblleft = -138; +quotedblright = -138; +}; +three.numr = { +fraction = 6; +}; +threeinferior = { +T = -156; +V = -113; +Y = -155; +}; +threesuperior = { +comma = -74; +comma.ss01 = -68; +fraction = 2; +parenright = -43; +period = -72; +period.ss01 = -69; +slash = -95; +}; +trademark = { +comma = -74; +comma.ss01 = -68; +hyphen = -87; +period = -72; +period.ss01 = -69; +slash = -131; +}; +two = { +percent = 3; +}; +two.dnom = { +degree = -126; +question.ss01 = -113; +quotedbl = -96; +quotedblleft = -138; +quotedblright = -138; +}; +twoinferior = { +T = -158; +V = -106; +Y = -155; +}; +twosuperior = { +comma = -74; +comma.ss01 = -68; +parenright = -38; +parenright.case = -37; +period = -72; +period.ss01 = -69; +slash = -89; +}; +uhorn = { +a = -23; +ohorn = -23; +ohornacute = -23; +ohorndotbelow = -23; +ohorndotbelow.ss01 = -23; +ohorngrave = -23; +ohornhookabove = -23; +ohorntilde = -22; +}; +uhornacute = { +a = -23; +c = -23; +}; +uhorndotbelow = { +a = -23; +c = -23; +comma = -29; +period = -29; +}; +uhorngrave = { +a = -23; +a.ss05 = -14; +}; +uhornhookabove = { +a = -23; +comma = -29; +comma.ss01 = -46; +period = -29; +period.ss01 = -46; +}; +uhorntilde = { +a = -23; +comma = -29; +period = -29; +}; +uhungarumlaut = { +parenright = -49; +}; +underscore = { +C = -89; +O = -89; +T = -155; +V = -193; +W = -117; +Y = -165; +asterisk = -141; +four = -165; +one = -76; +quotedbl = -147; +quotedblright = -138; +quotedblright.ss01 = -128; +quotesingle = -67; +seven = -93; +six = -72; +v = -112; +}; +uogonek = { +j = 5; +parenright = -20; +}; +v = { +braceright = -80; +n = 0; +}; +w = { +braceright = -81; +}; +x = { +four = -67; +}; +y = { +braceright = -80; +}; +ydotbelow = { +period = -72; +}; +zero = { +braceright = -78; +bracketright = -83; +bracketright.case = -51; +degree = -46; +percent = -4; +}; +zero.dnom = { +degree = -163; +question = -100; +question.ss01 = -114; +quotedbl = -114; +quotedblleft = -138; +quotedblleft.ss01 = -128; +quotedblright = -138; +quotedblright.ss01 = -128; +quoteleft = -74; +}; +zeroinferior = { +parenright = -79; +}; +zerosuperior = { +comma = -74; +comma.ss01 = -68; +fraction = -6; +period = -72; +period.ss01 = -69; +slash = -109; +}; +}; +"377EF8AC-8B0D-46C2-96BB-3B5B69A8F571" = { +"@MMK_L_KO_A" = { +"@MMK_R_KO_A" = 29; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 28; +"@MMK_R_KO_O" = -43; +"@MMK_R_KO_S" = -21; +"@MMK_R_KO_T" = -97; +"@MMK_R_KO_U" = -41; +"@MMK_R_KO_V" = -121; +"@MMK_R_KO_W" = -70; +"@MMK_R_KO_X" = 24; +"@MMK_R_KO_Y" = -141; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -25; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asciicircum" = -122; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 14; +"@MMK_R_KO_comma.ss01" = 3; +"@MMK_R_KO_e" = -28; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eightsuperior" = -90; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_fivesuperior" = -99; +"@MMK_R_KO_foursuperior" = -84; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -64; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -20; +"@MMK_R_KO_hyphen.case" = -45; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 54; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -99; +"@MMK_R_KO_onesuperior" = -111; +"@MMK_R_KO_parenright" = -35; +"@MMK_R_KO_parenright.case" = -3; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = 2; +"@MMK_R_KO_question" = -87; +"@MMK_R_KO_question.ss01" = -95; +"@MMK_R_KO_quotedbl" = -105; +"@MMK_R_KO_quotedblleft" = -97; +"@MMK_R_KO_quotedblleft.ss01" = -90; +"@MMK_R_KO_quoteleft" = -97; +"@MMK_R_KO_quoteright" = -86; +"@MMK_R_KO_quoteright.ss01" = -86; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_sevensuperior" = -116; +"@MMK_R_KO_six" = -40; +"@MMK_R_KO_sixsuperior" = -98; +"@MMK_R_KO_slash" = 15; +"@MMK_R_KO_t" = -55; +"@MMK_R_KO_threesuperior" = -97; +"@MMK_R_KO_trademark" = -128; +"@MMK_R_KO_u" = -24; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -90; +"@MMK_R_KO_w" = -46; +"@MMK_R_KO_x" = 26; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_B" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = 17; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -44; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -13; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -6; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 71; +"@MMK_R_KO_imacron" = 35; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 17; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -13; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 17; +"@MMK_R_KO_sevensuperior" = -19; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -10; +"@MMK_R_KO_trademark" = -29; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_underscore" = -8; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 12; +}; +"@MMK_L_KO_C" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 9; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 26; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = -33; +"@MMK_R_KO_Y" = -66; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -24; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -2; +"@MMK_R_KO_ellipsis" = -9; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 5; +"@MMK_R_KO_guillemetleft" = -23; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 28; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -26; +"@MMK_R_KO_parenright" = -59; +"@MMK_R_KO_parenright.case" = -32; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -19; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -9; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = -10; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 5; +"@MMK_R_KO_underscore" = -31; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_D" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 26; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -47; +"@MMK_R_KO_Y" = -73; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 24; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = -26; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -24; +"@MMK_R_KO_e" = 22; +"@MMK_R_KO_egrave" = 22; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 18; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 23; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 22; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 25; +"@MMK_R_KO_imacron" = 10; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 5; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = -23; +"@MMK_R_KO_t" = 16; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -55; +"@MMK_R_KO_u" = 17; +"@MMK_R_KO_underscore" = -49; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 9; +"@MMK_R_KO_x" = -14; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Dcroat" = { +"@MMK_R_KO_A" = -22; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -13; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 26; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = -47; +"@MMK_R_KO_Y" = -73; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 24; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_bracketright" = -26; +"@MMK_R_KO_colon" = 10; +"@MMK_R_KO_comma" = -15; +"@MMK_R_KO_comma.ss01" = -24; +"@MMK_R_KO_e" = 22; +"@MMK_R_KO_egrave" = 22; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 22; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -64; +"@MMK_R_KO_parenright.case" = -39; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -25; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = -23; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 17; +"@MMK_R_KO_y" = 0; +}; +"@MMK_L_KO_E" = { +"@MMK_R_KO_A" = 13; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 24; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 5; +"@MMK_R_KO_T" = 15; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 11; +"@MMK_R_KO_W" = 14; +"@MMK_R_KO_X" = 15; +"@MMK_R_KO_Y" = 7; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 22; +"@MMK_R_KO_colon" = 21; +"@MMK_R_KO_comma" = 32; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = -8; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -5; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -37; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -3; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 102; +"@MMK_R_KO_imacron" = 74; +"@MMK_R_KO_j" = 47; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 7; +"@MMK_R_KO_period" = 28; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 6; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 3; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteleft" = 3; +"@MMK_R_KO_quoteright" = 3; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 27; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 6; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_F" = { +"@MMK_R_KO_A" = -52; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = -60; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 31; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = 27; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = -5; +"@MMK_R_KO_a.ss05" = -14; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -85; +"@MMK_R_KO_comma.ss01" = -130; +"@MMK_R_KO_e" = -3; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eightsuperior" = 7; +"@MMK_R_KO_ellipsis" = -115; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_icircumflex" = 100; +"@MMK_R_KO_imacron" = 89; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_l.ss04" = 46; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_ninesuperior" = 18; +"@MMK_R_KO_onesuperior" = 15; +"@MMK_R_KO_parenright" = -3; +"@MMK_R_KO_parenright.case" = 8; +"@MMK_R_KO_period" = -87; +"@MMK_R_KO_period.ss01" = -135; +"@MMK_R_KO_question" = 20; +"@MMK_R_KO_question.ss01" = 12; +"@MMK_R_KO_quotedbl" = 14; +"@MMK_R_KO_quotedblleft" = 15; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 15; +"@MMK_R_KO_quoteright" = 20; +"@MMK_R_KO_quoteright.ss01" = 6; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = 11; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_sixsuperior" = 16; +"@MMK_R_KO_slash" = -66; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 9; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -198; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_G" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 27; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = -23; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -44; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = -40; +"@MMK_R_KO_Y" = -74; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 17; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -25; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -8; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_e" = 19; +"@MMK_R_KO_egrave" = 19; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -20; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = -10; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 18; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 4; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 26; +"@MMK_R_KO_imacron" = 8; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -29; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_parenright.case" = -36; +"@MMK_R_KO_period" = -9; +"@MMK_R_KO_period.ss01" = -22; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -10; +"@MMK_R_KO_quotedbl" = -27; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = -8; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 11; +"@MMK_R_KO_sevensuperior" = -34; +"@MMK_R_KO_six" = 28; +"@MMK_R_KO_sixsuperior" = -13; +"@MMK_R_KO_slash" = -19; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_threesuperior" = -8; +"@MMK_R_KO_trademark" = -56; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_underscore" = -39; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -11; +"@MMK_R_KO_y" = -3; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_G.ss07" = { +"@MMK_R_KO_A" = 19; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = 15; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -26; +"@MMK_R_KO_X" = 7; +"@MMK_R_KO_Y" = -81; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asciicircum" = -26; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = -8; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -12; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = 15; +"@MMK_R_KO_guillemetleft" = -9; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 18; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 41; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 22; +"@MMK_R_KO_period.ss01" = -10; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -32; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_quoteright.ss01" = -11; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -41; +"@MMK_R_KO_six" = 16; +"@MMK_R_KO_sixsuperior" = -22; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -65; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = 5; +"@MMK_R_KO_v" = -5; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 4; +"@MMK_R_KO_y" = -6; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_H" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -3; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = -3; +"@MMK_R_KO_asciicircum" = -14; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 6; +"@MMK_R_KO_comma.ss01" = -20; +"@MMK_R_KO_egrave" = 1; +"@MMK_R_KO_eightsuperior" = -3; +"@MMK_R_KO_ellipsis" = -11; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_icircumflex" = 80; +"@MMK_R_KO_imacron" = 54; +"@MMK_R_KO_j" = 21; +"@MMK_R_KO_l.ss04" = 16; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -16; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = 3; +"@MMK_R_KO_question.ss01" = -4; +"@MMK_R_KO_quotedbl" = -6; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -4; +"@MMK_R_KO_quoteright.ss01" = -4; +"@MMK_R_KO_sevensuperior" = -3; +"@MMK_R_KO_six" = 1; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -15; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 2; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 2; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_I.ss02" = { +"@MMK_R_KO_A" = 14; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 26; +"@MMK_R_KO_J" = 21; +"@MMK_R_KO_O" = -7; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 18; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 14; +"@MMK_R_KO_W" = 16; +"@MMK_R_KO_X" = 17; +"@MMK_R_KO_Y" = 10; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = -15; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 24; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 30; +"@MMK_R_KO_comma.ss01" = -4; +"@MMK_R_KO_e" = -18; +"@MMK_R_KO_egrave" = -16; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -7; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -63; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -6; +"@MMK_R_KO_hyphen.case" = -74; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 89; +"@MMK_R_KO_imacron" = 76; +"@MMK_R_KO_j" = 39; +"@MMK_R_KO_l.ss04" = 38; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 5; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 10; +"@MMK_R_KO_period" = 29; +"@MMK_R_KO_period.ss01" = -6; +"@MMK_R_KO_question" = 3; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -6; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 30; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = 7; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_J" = { +"@MMK_R_KO_A" = -18; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -4; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 8; +"@MMK_R_KO_U" = 8; +"@MMK_R_KO_V" = 8; +"@MMK_R_KO_W" = 9; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_colon" = 17; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -19; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_fivesuperior" = -3; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -9; +"@MMK_R_KO_hyphen" = 9; +"@MMK_R_KO_hyphen.case" = 9; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_icircumflex" = 88; +"@MMK_R_KO_imacron" = 61; +"@MMK_R_KO_j" = 6; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -3; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 6; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_sixsuperior" = 3; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -8; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -28; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = -2; +}; +"@MMK_L_KO_K" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 23; +"@MMK_R_KO_O" = -55; +"@MMK_R_KO_S" = -36; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = -13; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 5; +"@MMK_R_KO_X" = 27; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -53; +"@MMK_R_KO_a.ss05" = -25; +"@MMK_R_KO_asciicircum" = -95; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -63; +"@MMK_R_KO_egrave" = -44; +"@MMK_R_KO_eightsuperior" = -20; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -30; +"@MMK_R_KO_fivesuperior" = -22; +"@MMK_R_KO_foursuperior" = -75; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -106; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -68; +"@MMK_R_KO_hyphen.case" = -116; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 22; +"@MMK_R_KO_imacron" = 64; +"@MMK_R_KO_j" = 36; +"@MMK_R_KO_l.ss04" = 30; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -12; +"@MMK_R_KO_parenright" = -8; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -31; +"@MMK_R_KO_question.ss01" = -37; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteleft" = -37; +"@MMK_R_KO_quoteright" = -12; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_sevensuperior" = -5; +"@MMK_R_KO_six" = -49; +"@MMK_R_KO_sixsuperior" = -25; +"@MMK_R_KO_slash" = 9; +"@MMK_R_KO_t" = -57; +"@MMK_R_KO_threesuperior" = -19; +"@MMK_R_KO_trademark" = -11; +"@MMK_R_KO_u" = -46; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -77; +"@MMK_R_KO_w" = -52; +"@MMK_R_KO_x" = 28; +"@MMK_R_KO_y" = -10; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_L" = { +"@MMK_R_KO_A" = 29; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_J" = 34; +"@MMK_R_KO_O" = -29; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -89; +"@MMK_R_KO_U" = -21; +"@MMK_R_KO_V" = -108; +"@MMK_R_KO_W" = -57; +"@MMK_R_KO_X" = 20; +"@MMK_R_KO_Y" = -141; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -220; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 37; +"@MMK_R_KO_comma" = 48; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = -190; +"@MMK_R_KO_ellipsis" = 12; +"@MMK_R_KO_exclam" = 26; +"@MMK_R_KO_f" = -31; +"@MMK_R_KO_fivesuperior" = -192; +"@MMK_R_KO_foursuperior" = -191; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -102; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 8; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -191; +"@MMK_R_KO_onesuperior" = -154; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = 44; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -88; +"@MMK_R_KO_question.ss01" = -93; +"@MMK_R_KO_quotedbl" = -109; +"@MMK_R_KO_quotedblleft" = -191; +"@MMK_R_KO_quotedblleft.ss01" = -199; +"@MMK_R_KO_quoteleft" = -133; +"@MMK_R_KO_quoteright" = -191; +"@MMK_R_KO_quoteright.ss01" = -196; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_sevensuperior" = -195; +"@MMK_R_KO_six" = -26; +"@MMK_R_KO_sixsuperior" = -193; +"@MMK_R_KO_slash" = 46; +"@MMK_R_KO_t" = -35; +"@MMK_R_KO_threesuperior" = -190; +"@MMK_R_KO_trademark" = -206; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -65; +"@MMK_R_KO_w" = -30; +"@MMK_R_KO_x" = 22; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_Lslash" = { +"@MMK_R_KO_A" = 29; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 22; +"@MMK_R_KO_J" = 34; +"@MMK_R_KO_O" = -27; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -88; +"@MMK_R_KO_U" = -20; +"@MMK_R_KO_V" = -106; +"@MMK_R_KO_W" = -57; +"@MMK_R_KO_X" = 20; +"@MMK_R_KO_Y" = -140; +"@MMK_R_KO_Z" = 32; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 37; +"@MMK_R_KO_comma" = 48; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eightsuperior" = -104; +"@MMK_R_KO_ellipsis" = 12; +"@MMK_R_KO_exclam" = 26; +"@MMK_R_KO_fivesuperior" = -112; +"@MMK_R_KO_foursuperior" = -107; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -97; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_ninesuperior" = -113; +"@MMK_R_KO_onesuperior" = -122; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = 44; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -82; +"@MMK_R_KO_question.ss01" = -93; +"@MMK_R_KO_quotedbl" = -109; +"@MMK_R_KO_quotedblleft" = -112; +"@MMK_R_KO_quotedblleft.ss01" = -104; +"@MMK_R_KO_quoteleft" = -112; +"@MMK_R_KO_quoteright" = -118; +"@MMK_R_KO_quoteright.ss01" = -118; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_sevensuperior" = -131; +"@MMK_R_KO_sixsuperior" = -108; +"@MMK_R_KO_slash" = 46; +"@MMK_R_KO_threesuperior" = -114; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_y" = -18; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_O" = { +"@MMK_R_KO_A" = -20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 23; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -43; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = -44; +"@MMK_R_KO_Y" = -81; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 23; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asciicircum" = -17; +"@MMK_R_KO_bracketright" = -29; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 22; +"@MMK_R_KO_egrave" = 22; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 23; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 15; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_parenright.case" = -37; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -27; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 17; +"@MMK_R_KO_underscore" = -43; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = -15; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Oacute" = { +"@MMK_R_KO_A" = -20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -10; +"@MMK_R_KO_J" = -2; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -28; +"@MMK_R_KO_U" = 13; +"@MMK_R_KO_V" = -43; +"@MMK_R_KO_W" = -24; +"@MMK_R_KO_X" = -44; +"@MMK_R_KO_Y" = -81; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 23; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_bracketright" = -29; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 22; +"@MMK_R_KO_egrave" = 22; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 16; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 23; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 4; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = -12; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -63; +"@MMK_R_KO_parenright.case" = -37; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = -12; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = -27; +"@MMK_R_KO_quotedblleft" = -11; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteleft" = -11; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = 24; +"@MMK_R_KO_sixsuperior" = -16; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -64; +"@MMK_R_KO_u" = 17; +"@MMK_R_KO_underscore" = -43; +"@MMK_R_KO_v" = -3; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_x" = -15; +"@MMK_R_KO_y" = -5; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Ohorn" = { +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_O" = 24; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = 9; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = 17; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_bracketright" = 30; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 22; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_exclam" = 7; +"@MMK_R_KO_guillemetright" = -21; +"@MMK_R_KO_hyphen" = 23; +"@MMK_R_KO_hyphen.case" = 21; +"@MMK_R_KO_i" = 10; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 30; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_slash" = -20; +"@MMK_R_KO_t" = 14; +}; +"@MMK_L_KO_P" = { +"@MMK_R_KO_A" = -58; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = -7; +"@MMK_R_KO_J" = -70; +"@MMK_R_KO_O" = 36; +"@MMK_R_KO_S" = 15; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = -18; +"@MMK_R_KO_W" = -4; +"@MMK_R_KO_X" = -57; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_Z" = -14; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 10; +"@MMK_R_KO_asciicircum" = -3; +"@MMK_R_KO_bracketright" = -3; +"@MMK_R_KO_colon" = 33; +"@MMK_R_KO_comma" = -124; +"@MMK_R_KO_comma.ss01" = -134; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = 16; +"@MMK_R_KO_ellipsis" = -147; +"@MMK_R_KO_exclam" = 20; +"@MMK_R_KO_f" = 23; +"@MMK_R_KO_fivesuperior" = 7; +"@MMK_R_KO_foursuperior" = 18; +"@MMK_R_KO_g" = 12; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 20; +"@MMK_R_KO_i" = 6; +"@MMK_R_KO_icircumflex" = 65; +"@MMK_R_KO_imacron" = 34; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 24; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 10; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_parenright.case" = -31; +"@MMK_R_KO_period" = -126; +"@MMK_R_KO_period.ss01" = -135; +"@MMK_R_KO_question" = 11; +"@MMK_R_KO_question.ss01" = 10; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 16; +"@MMK_R_KO_quotedblleft.ss01" = 7; +"@MMK_R_KO_quoteleft" = 16; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 35; +"@MMK_R_KO_sixsuperior" = 10; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_t" = 22; +"@MMK_R_KO_threesuperior" = 9; +"@MMK_R_KO_trademark" = -23; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = -241; +"@MMK_R_KO_v" = 26; +"@MMK_R_KO_w" = 22; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 21; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_Q" = { +"@MMK_R_KO_A" = 31; +"@MMK_R_KO_H" = 4; +"@MMK_R_KO_I.ss02" = 11; +"@MMK_R_KO_J" = 28; +"@MMK_R_KO_O" = -23; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -81; +"@MMK_R_KO_U" = -17; +"@MMK_R_KO_V" = -94; +"@MMK_R_KO_W" = -47; +"@MMK_R_KO_X" = 23; +"@MMK_R_KO_Y" = -132; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_asciicircum" = -89; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 40; +"@MMK_R_KO_comma" = 45; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_egrave" = -7; +"@MMK_R_KO_eightsuperior" = -60; +"@MMK_R_KO_ellipsis" = 14; +"@MMK_R_KO_exclam" = 28; +"@MMK_R_KO_f" = -22; +"@MMK_R_KO_fivesuperior" = -69; +"@MMK_R_KO_foursuperior" = -47; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -50; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -34; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 66; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -69; +"@MMK_R_KO_onesuperior" = -96; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_parenright.case" = -2; +"@MMK_R_KO_period" = 46; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -57; +"@MMK_R_KO_question.ss01" = -68; +"@MMK_R_KO_quotedbl" = -84; +"@MMK_R_KO_quotedblleft" = -67; +"@MMK_R_KO_quotedblleft.ss01" = -58; +"@MMK_R_KO_quoteleft" = -67; +"@MMK_R_KO_quoteright" = -55; +"@MMK_R_KO_quoteright.ss01" = -52; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_sevensuperior" = -102; +"@MMK_R_KO_six" = -20; +"@MMK_R_KO_sixsuperior" = -72; +"@MMK_R_KO_slash" = 24; +"@MMK_R_KO_t" = -29; +"@MMK_R_KO_threesuperior" = -59; +"@MMK_R_KO_trademark" = -112; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -60; +"@MMK_R_KO_w" = -28; +"@MMK_R_KO_x" = 25; +"@MMK_R_KO_y" = -16; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_R" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 6; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 7; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = 5; +"@MMK_R_KO_Y" = -38; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 31; +"@MMK_R_KO_comma" = 12; +"@MMK_R_KO_comma.ss01" = -11; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 6; +"@MMK_R_KO_ellipsis" = -5; +"@MMK_R_KO_exclam" = 13; +"@MMK_R_KO_f" = 13; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -33; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 82; +"@MMK_R_KO_imacron" = 45; +"@MMK_R_KO_j" = 37; +"@MMK_R_KO_l.ss04" = 23; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = -5; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_parenright.case" = -4; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = 5; +"@MMK_R_KO_question.ss01" = 5; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 10; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -11; +"@MMK_R_KO_six" = 19; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_t" = 13; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -24; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = 9; +"@MMK_R_KO_v" = 14; +"@MMK_R_KO_w" = 12; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 19; +"@MMK_R_KO_z" = 7; +}; +"@MMK_L_KO_S" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_asciicircum" = -19; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 6; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 5; +"@MMK_R_KO_icircumflex" = 51; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = -36; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 19; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_trademark" = -39; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -7; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_Scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 14; +"@MMK_R_KO_J" = 19; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 22; +"@MMK_R_KO_T" = -14; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -22; +"@MMK_R_KO_X" = -18; +"@MMK_R_KO_Y" = -61; +"@MMK_R_KO_Z" = 22; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 18; +"@MMK_R_KO_bracketright" = -20; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = 6; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -17; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -20; +"@MMK_R_KO_foursuperior" = -11; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 19; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 4; +"@MMK_R_KO_icircumflex" = 51; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_l.ss04" = 11; +"@MMK_R_KO_n" = 4; +"@MMK_R_KO_ninesuperior" = -26; +"@MMK_R_KO_onesuperior" = -23; +"@MMK_R_KO_parenright" = -48; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -7; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -10; +"@MMK_R_KO_quotedblleft.ss01" = -21; +"@MMK_R_KO_quoteleft" = -10; +"@MMK_R_KO_quoteright" = -36; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 19; +"@MMK_R_KO_sevensuperior" = -27; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -14; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_T" = { +"@MMK_R_KO_A" = -92; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 20; +"@MMK_R_KO_J" = -63; +"@MMK_R_KO_O" = -3; +"@MMK_R_KO_S" = 4; +"@MMK_R_KO_T" = 36; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = 32; +"@MMK_R_KO_W" = 29; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = 25; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -45; +"@MMK_R_KO_a.ss05" = -22; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 36; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -101; +"@MMK_R_KO_comma.ss01" = -113; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -41; +"@MMK_R_KO_eightsuperior" = 10; +"@MMK_R_KO_ellipsis" = -117; +"@MMK_R_KO_exclam" = 10; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 4; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -35; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -97; +"@MMK_R_KO_hyphen.case" = -90; +"@MMK_R_KO_i" = 8; +"@MMK_R_KO_icircumflex" = 104; +"@MMK_R_KO_imacron" = 94; +"@MMK_R_KO_j" = 7; +"@MMK_R_KO_l.ss04" = 44; +"@MMK_R_KO_n" = -13; +"@MMK_R_KO_ninesuperior" = 22; +"@MMK_R_KO_onesuperior" = 17; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 12; +"@MMK_R_KO_period" = -103; +"@MMK_R_KO_period.ss01" = -118; +"@MMK_R_KO_question" = 18; +"@MMK_R_KO_question.ss01" = 16; +"@MMK_R_KO_quotedbl" = 16; +"@MMK_R_KO_quotedblleft" = 10; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 10; +"@MMK_R_KO_quoteright" = 14; +"@MMK_R_KO_quoteright.ss01" = 2; +"@MMK_R_KO_s" = -31; +"@MMK_R_KO_sevensuperior" = 12; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_sixsuperior" = 12; +"@MMK_R_KO_slash" = -90; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = -90; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -8; +}; +"@MMK_L_KO_U" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 8; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 10; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_imacron" = 65; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 3; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = 15; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 12; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -4; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_underscore" = -39; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_Uacute" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 5; +"@MMK_R_KO_I.ss02" = 2; +"@MMK_R_KO_J" = -10; +"@MMK_R_KO_O" = 11; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 10; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 12; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = 9; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 7; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = -14; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_i" = 9; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 27; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 3; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -13; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = 15; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 2; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_t" = 7; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_u" = 3; +"@MMK_R_KO_v" = 12; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = -3; +}; +"@MMK_L_KO_Uhorn" = { +"@MMK_R_KO_A" = -24; +"@MMK_R_KO_H" = 32; +"@MMK_R_KO_I.ss02" = 55; +"@MMK_R_KO_O" = 13; +"@MMK_R_KO_T" = 71; +"@MMK_R_KO_U" = 46; +"@MMK_R_KO_V" = 74; +"@MMK_R_KO_X" = 64; +"@MMK_R_KO_Y" = 66; +"@MMK_R_KO_Z" = 43; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = 87; +"@MMK_R_KO_colon" = 14; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -27; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_eightsuperior" = 50; +"@MMK_R_KO_ellipsis" = -25; +"@MMK_R_KO_exclam" = 39; +"@MMK_R_KO_fivesuperior" = 45; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = 7; +"@MMK_R_KO_hyphen.case" = 12; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 53; +"@MMK_R_KO_onesuperior" = 49; +"@MMK_R_KO_parenright" = 57; +"@MMK_R_KO_parenright.case" = 86; +"@MMK_R_KO_period" = -14; +"@MMK_R_KO_period.ss01" = -28; +"@MMK_R_KO_question" = 27; +"@MMK_R_KO_question.ss01" = 16; +"@MMK_R_KO_quotedbl" = 52; +"@MMK_R_KO_quoteright" = 52; +"@MMK_R_KO_quoteright.ss01" = 49; +"@MMK_R_KO_sevensuperior" = 66; +"@MMK_R_KO_sixsuperior" = 39; +"@MMK_R_KO_slash" = -25; +"@MMK_R_KO_threesuperior" = 54; +"@MMK_R_KO_u" = 3; +}; +"@MMK_L_KO_V" = { +"@MMK_R_KO_A" = -102; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = -67; +"@MMK_R_KO_O" = -20; +"@MMK_R_KO_S" = -4; +"@MMK_R_KO_T" = 32; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = 32; +"@MMK_R_KO_W" = 31; +"@MMK_R_KO_X" = 3; +"@MMK_R_KO_Y" = 25; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -50; +"@MMK_R_KO_a.ss05" = -34; +"@MMK_R_KO_asciicircum" = -46; +"@MMK_R_KO_bracketright" = 20; +"@MMK_R_KO_colon" = -22; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_comma.ss01" = -126; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eightsuperior" = 7; +"@MMK_R_KO_ellipsis" = -128; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -12; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = -18; +"@MMK_R_KO_g" = -47; +"@MMK_R_KO_guillemetleft" = -83; +"@MMK_R_KO_guillemetright" = -26; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_hyphen.case" = -35; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 81; +"@MMK_R_KO_imacron" = 104; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 49; +"@MMK_R_KO_n" = -35; +"@MMK_R_KO_ninesuperior" = 13; +"@MMK_R_KO_onesuperior" = 14; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -110; +"@MMK_R_KO_period.ss01" = -129; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 23; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = 11; +"@MMK_R_KO_quoteright.ss01" = 15; +"@MMK_R_KO_s" = -40; +"@MMK_R_KO_sevensuperior" = 20; +"@MMK_R_KO_six" = -18; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = -108; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 9; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_underscore" = -115; +"@MMK_R_KO_v" = -14; +"@MMK_R_KO_w" = -14; +"@MMK_R_KO_x" = -21; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = -33; +}; +"@MMK_L_KO_W" = { +"@MMK_R_KO_A" = -56; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = -44; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = 29; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = 31; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = 27; +"@MMK_R_KO_Z" = 4; +"@MMK_R_KO_a" = -22; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asciicircum" = -16; +"@MMK_R_KO_bracketright" = 33; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -50; +"@MMK_R_KO_comma.ss01" = -73; +"@MMK_R_KO_e" = -21; +"@MMK_R_KO_egrave" = -20; +"@MMK_R_KO_eightsuperior" = 8; +"@MMK_R_KO_ellipsis" = -69; +"@MMK_R_KO_exclam" = 18; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -20; +"@MMK_R_KO_guillemetleft" = -48; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -22; +"@MMK_R_KO_hyphen.case" = -7; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 101; +"@MMK_R_KO_imacron" = 101; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 54; +"@MMK_R_KO_n" = -18; +"@MMK_R_KO_ninesuperior" = 14; +"@MMK_R_KO_onesuperior" = 15; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 17; +"@MMK_R_KO_period" = -52; +"@MMK_R_KO_period.ss01" = -75; +"@MMK_R_KO_question" = 12; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = 20; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 19; +"@MMK_R_KO_quoteright.ss01" = 12; +"@MMK_R_KO_s" = -16; +"@MMK_R_KO_sevensuperior" = 16; +"@MMK_R_KO_six" = -5; +"@MMK_R_KO_sixsuperior" = 8; +"@MMK_R_KO_slash" = -54; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 8; +"@MMK_R_KO_trademark" = 5; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = -54; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_X" = { +"@MMK_R_KO_A" = 24; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = 22; +"@MMK_R_KO_O" = -45; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = 6; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 18; +"@MMK_R_KO_X" = 26; +"@MMK_R_KO_Y" = 7; +"@MMK_R_KO_Z" = 15; +"@MMK_R_KO_a" = -54; +"@MMK_R_KO_a.ss05" = -25; +"@MMK_R_KO_asciicircum" = -79; +"@MMK_R_KO_bracketright" = 12; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -64; +"@MMK_R_KO_egrave" = -57; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -29; +"@MMK_R_KO_fivesuperior" = -13; +"@MMK_R_KO_foursuperior" = -62; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -106; +"@MMK_R_KO_guillemetright" = -33; +"@MMK_R_KO_hyphen" = -69; +"@MMK_R_KO_hyphen.case" = -99; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 46; +"@MMK_R_KO_imacron" = 77; +"@MMK_R_KO_j" = 55; +"@MMK_R_KO_l.ss04" = 38; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -10; +"@MMK_R_KO_onesuperior" = -3; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 11; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_question" = -22; +"@MMK_R_KO_question.ss01" = -29; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = -31; +"@MMK_R_KO_quotedblleft.ss01" = -28; +"@MMK_R_KO_quoteleft" = -31; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -7; +"@MMK_R_KO_s" = -35; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 8; +"@MMK_R_KO_t" = -47; +"@MMK_R_KO_threesuperior" = -13; +"@MMK_R_KO_trademark" = -5; +"@MMK_R_KO_u" = -46; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -51; +"@MMK_R_KO_w" = -44; +"@MMK_R_KO_x" = 28; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_Y" = { +"@MMK_R_KO_A" = -115; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_I.ss02" = 12; +"@MMK_R_KO_J" = -71; +"@MMK_R_KO_O" = -38; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = 27; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 28; +"@MMK_R_KO_X" = 6; +"@MMK_R_KO_Y" = 28; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -90; +"@MMK_R_KO_a.ss05" = -36; +"@MMK_R_KO_asciicircum" = -64; +"@MMK_R_KO_bracketright" = 7; +"@MMK_R_KO_colon" = -49; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_comma.ss01" = -134; +"@MMK_R_KO_e" = -93; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = -180; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = -38; +"@MMK_R_KO_g" = -86; +"@MMK_R_KO_guillemetleft" = -112; +"@MMK_R_KO_guillemetright" = -47; +"@MMK_R_KO_hyphen" = -123; +"@MMK_R_KO_hyphen.case" = -85; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 58; +"@MMK_R_KO_imacron" = 97; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 43; +"@MMK_R_KO_n" = -63; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = -7; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -132; +"@MMK_R_KO_period.ss01" = -135; +"@MMK_R_KO_question" = -8; +"@MMK_R_KO_question.ss01" = -18; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -15; +"@MMK_R_KO_quoteleft" = -18; +"@MMK_R_KO_quoteright" = 6; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -83; +"@MMK_R_KO_sevensuperior" = 17; +"@MMK_R_KO_six" = -34; +"@MMK_R_KO_sixsuperior" = -2; +"@MMK_R_KO_slash" = -128; +"@MMK_R_KO_t" = -34; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 5; +"@MMK_R_KO_u" = -52; +"@MMK_R_KO_underscore" = -143; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -33; +"@MMK_R_KO_x" = -37; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = -58; +}; +"@MMK_L_KO_Z" = { +"@MMK_R_KO_A" = 17; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = 22; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = 15; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 19; +"@MMK_R_KO_W" = 17; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = 4; +"@MMK_R_KO_Z" = 21; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 25; +"@MMK_R_KO_colon" = 25; +"@MMK_R_KO_comma" = 32; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -15; +"@MMK_R_KO_egrave" = -12; +"@MMK_R_KO_eightsuperior" = 0; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 21; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_fivesuperior" = -2; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = -11; +"@MMK_R_KO_guillemetleft" = -62; +"@MMK_R_KO_guillemetright" = -6; +"@MMK_R_KO_hyphen" = -4; +"@MMK_R_KO_hyphen.case" = -40; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 96; +"@MMK_R_KO_imacron" = 72; +"@MMK_R_KO_j" = 51; +"@MMK_R_KO_l.ss04" = 34; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_onesuperior" = 0; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 4; +"@MMK_R_KO_period" = 32; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = 15; +"@MMK_R_KO_question.ss01" = 4; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -3; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_sevensuperior" = 0; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 31; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = -3; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = 12; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_a" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -15; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_X" = -5; +"@MMK_R_KO_Y" = -74; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -44; +"@MMK_R_KO_bracketright" = -4; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -21; +"@MMK_R_KO_foursuperior" = -13; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 1; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -24; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = -6; +"@MMK_R_KO_question.ss01" = -13; +"@MMK_R_KO_quotedbl" = -31; +"@MMK_R_KO_quotedblleft" = -16; +"@MMK_R_KO_quotedblleft.ss01" = -24; +"@MMK_R_KO_quoteleft" = -16; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -23; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -52; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -18; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = -17; +"@MMK_R_KO_trademark" = -83; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_a.ss05" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 22; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -87; +"@MMK_R_KO_U" = -16; +"@MMK_R_KO_V" = -88; +"@MMK_R_KO_W" = -54; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = -126; +"@MMK_R_KO_Z" = 19; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_asciicircum" = -76; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = -38; +"@MMK_R_KO_ellipsis" = 10; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_fivesuperior" = -50; +"@MMK_R_KO_foursuperior" = -33; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = -14; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 38; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -48; +"@MMK_R_KO_onesuperior" = -91; +"@MMK_R_KO_parenright" = -37; +"@MMK_R_KO_period" = 21; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -59; +"@MMK_R_KO_question.ss01" = -68; +"@MMK_R_KO_quotedbl" = -66; +"@MMK_R_KO_quotedblleft" = -53; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteleft" = -53; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -33; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -95; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = -58; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -40; +"@MMK_R_KO_trademark" = -105; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -38; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = 19; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_aacute.ss05" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 22; +"@MMK_R_KO_O" = -9; +"@MMK_R_KO_S" = -8; +"@MMK_R_KO_T" = -36; +"@MMK_R_KO_U" = -16; +"@MMK_R_KO_V" = -42; +"@MMK_R_KO_X" = 21; +"@MMK_R_KO_Y" = -73; +"@MMK_R_KO_a" = -4; +"@MMK_R_KO_a.ss05" = 2; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 26; +"@MMK_R_KO_comma" = 26; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = -36; +"@MMK_R_KO_ellipsis" = 10; +"@MMK_R_KO_exclam" = 17; +"@MMK_R_KO_f" = -10; +"@MMK_R_KO_fivesuperior" = -49; +"@MMK_R_KO_foursuperior" = -33; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -30; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = -2; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 40; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -47; +"@MMK_R_KO_onesuperior" = -86; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_period" = 21; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -59; +"@MMK_R_KO_question.ss01" = -68; +"@MMK_R_KO_quotedbl" = -65; +"@MMK_R_KO_quotedblleft" = -53; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteleft" = -53; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -33; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -85; +"@MMK_R_KO_six" = -8; +"@MMK_R_KO_sixsuperior" = -50; +"@MMK_R_KO_slash" = 18; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -39; +"@MMK_R_KO_u" = -2; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -38; +"@MMK_R_KO_w" = -23; +"@MMK_R_KO_x" = 19; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 13; +}; +"@MMK_L_KO_ampersand" = { +"@MMK_R_KO_A" = 12; +"@MMK_R_KO_H" = -3; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_T" = -103; +"@MMK_R_KO_a" = -6; +"@MMK_R_KO_e" = -7; +"@MMK_R_KO_f" = -18; +"@MMK_R_KO_i" = -8; +"@MMK_R_KO_n" = -8; +"@MMK_R_KO_t" = -24; +}; +"@MMK_L_KO_asciicircum" = { +"@MMK_R_KO_A" = -105; +"@MMK_R_KO_H" = -14; +"@MMK_R_KO_O" = -4; +"@MMK_R_KO_T" = -18; +"@MMK_R_KO_a" = -31; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_i" = -40; +"@MMK_R_KO_n" = -43; +"@MMK_R_KO_t" = -5; +}; +"@MMK_L_KO_asciitilde" = { +"@MMK_R_KO_A" = -108; +"@MMK_R_KO_H" = -63; +"@MMK_R_KO_O" = -31; +"@MMK_R_KO_T" = -93; +"@MMK_R_KO_a" = -52; +"@MMK_R_KO_e" = -50; +"@MMK_R_KO_f" = -51; +"@MMK_R_KO_i" = -70; +"@MMK_R_KO_n" = -71; +"@MMK_R_KO_t" = -51; +}; +"@MMK_L_KO_asterisk" = { +"@MMK_R_KO_A" = -100; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = -77; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = 19; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -33; +"@MMK_R_KO_asterisk" = 23; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_comma.ss01" = -134; +"@MMK_R_KO_e" = -39; +"@MMK_R_KO_eight" = 6; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -72; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = -99; +"@MMK_R_KO_hyphen.case" = -24; +"@MMK_R_KO_i" = -3; +"@MMK_R_KO_j" = -10; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_nine" = 17; +"@MMK_R_KO_one" = 17; +"@MMK_R_KO_parenright" = -33; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = -132; +"@MMK_R_KO_period.ss01" = -135; +"@MMK_R_KO_quotedbl" = 11; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quotedblleft.ss01" = 4; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = 23; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -109; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 6; +"@MMK_R_KO_two" = 14; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_bracketleft" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -6; +"@MMK_R_KO_S" = 12; +"@MMK_R_KO_T" = 36; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = 28; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_Y" = 22; +"@MMK_R_KO_Z" = 24; +"@MMK_R_KO_a" = -39; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asterisk" = 7; +"@MMK_R_KO_colon" = -7; +"@MMK_R_KO_comma" = 17; +"@MMK_R_KO_comma.ss01" = 9; +"@MMK_R_KO_e" = -39; +"@MMK_R_KO_egrave" = -13; +"@MMK_R_KO_eight" = 14; +"@MMK_R_KO_ellipsis" = -23; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_five" = 5; +"@MMK_R_KO_four" = -34; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -53; +"@MMK_R_KO_hyphen" = -60; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 76; +"@MMK_R_KO_n" = -6; +"@MMK_R_KO_nine" = 10; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_period" = -23; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_quotedbl" = 7; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 19; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -40; +"@MMK_R_KO_seven" = 29; +"@MMK_R_KO_six" = -4; +"@MMK_R_KO_slash" = 19; +"@MMK_R_KO_t" = -20; +"@MMK_R_KO_three" = 10; +"@MMK_R_KO_two" = 18; +"@MMK_R_KO_u" = -28; +"@MMK_R_KO_v" = -46; +"@MMK_R_KO_w" = -33; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_bracketleft.case" = { +"@MMK_R_KO_A" = 10; +"@MMK_R_KO_H" = 14; +"@MMK_R_KO_I.ss02" = 39; +"@MMK_R_KO_J" = 33; +"@MMK_R_KO_O" = -8; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = 35; +"@MMK_R_KO_U" = 17; +"@MMK_R_KO_V" = 26; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_Y" = 19; +"@MMK_R_KO_Z" = 35; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 18; +"@MMK_R_KO_comma.ss01" = 6; +"@MMK_R_KO_eight" = 11; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_five" = 3; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_guillemetleft" = -67; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen.case" = -62; +"@MMK_R_KO_nine" = 16; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_period" = 14; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = 4; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright" = 16; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 26; +"@MMK_R_KO_six" = -9; +"@MMK_R_KO_slash" = 44; +"@MMK_R_KO_three" = 11; +"@MMK_R_KO_two" = 23; +}; +"@MMK_L_KO_c" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 16; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -91; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -78; +"@MMK_R_KO_W" = -39; +"@MMK_R_KO_X" = -23; +"@MMK_R_KO_Y" = -119; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -65; +"@MMK_R_KO_bracketright" = -32; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -3; +"@MMK_R_KO_fivesuperior" = -38; +"@MMK_R_KO_foursuperior" = -27; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -20; +"@MMK_R_KO_guillemetright" = -25; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = -4; +"@MMK_R_KO_icircumflex" = -4; +"@MMK_R_KO_imacron" = -3; +"@MMK_R_KO_j" = -3; +"@MMK_R_KO_l.ss04" = -4; +"@MMK_R_KO_n" = -4; +"@MMK_R_KO_ninesuperior" = -38; +"@MMK_R_KO_onesuperior" = -69; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = -59; +"@MMK_R_KO_question.ss01" = -67; +"@MMK_R_KO_quotedbl" = -54; +"@MMK_R_KO_quotedblleft" = -45; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteleft" = -45; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = 16; +"@MMK_R_KO_sevensuperior" = -68; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -48; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -33; +"@MMK_R_KO_trademark" = -93; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -22; +"@MMK_R_KO_v" = -32; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = -25; +"@MMK_R_KO_y" = -38; +"@MMK_R_KO_z" = 10; +}; +"@MMK_L_KO_comma" = { +"@MMK_R_KO_asterisk" = -133; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_eight" = -6; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = -7; +"@MMK_R_KO_guillemetleft" = -90; +"@MMK_R_KO_guillemetright" = -10; +"@MMK_R_KO_hyphen" = -38; +"@MMK_R_KO_hyphen.case" = -121; +"@MMK_R_KO_nine" = -27; +"@MMK_R_KO_one" = -91; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_quotedbl" = -133; +"@MMK_R_KO_quotedblleft" = -133; +"@MMK_R_KO_quoteright" = -133; +"@MMK_R_KO_seven" = -98; +"@MMK_R_KO_six" = -51; +"@MMK_R_KO_three" = -16; +"@MMK_R_KO_two" = 0; +}; +"@MMK_L_KO_degree" = { +"@MMK_R_KO_A" = -95; +"@MMK_R_KO_H" = -15; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_i" = -17; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_t" = 0; +}; +"@MMK_L_KO_e" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 3; +"@MMK_R_KO_T" = -96; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -86; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_X" = -24; +"@MMK_R_KO_Y" = -129; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -83; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -39; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = -53; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = 16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -50; +"@MMK_R_KO_onesuperior" = -80; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = -70; +"@MMK_R_KO_question.ss01" = -82; +"@MMK_R_KO_quotedbl" = -68; +"@MMK_R_KO_quotedblleft" = -60; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteleft" = -60; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -34; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -84; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -60; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_threesuperior" = -42; +"@MMK_R_KO_trademark" = -107; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -23; +"@MMK_R_KO_v" = -34; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = -28; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_eacute" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 12; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 9; +"@MMK_R_KO_T" = -55; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -85; +"@MMK_R_KO_W" = -44; +"@MMK_R_KO_X" = -21; +"@MMK_R_KO_Y" = -90; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_a" = 8; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_bracketright" = -28; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -6; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = -39; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -9; +"@MMK_R_KO_fivesuperior" = -52; +"@MMK_R_KO_foursuperior" = -35; +"@MMK_R_KO_g" = 6; +"@MMK_R_KO_guillemetleft" = -15; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = 16; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -51; +"@MMK_R_KO_onesuperior" = -76; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_question" = -69; +"@MMK_R_KO_question.ss01" = -82; +"@MMK_R_KO_quotedbl" = -68; +"@MMK_R_KO_quotedblleft" = -59; +"@MMK_R_KO_quotedblleft.ss01" = -36; +"@MMK_R_KO_quoteleft" = -59; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -34; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -70; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -62; +"@MMK_R_KO_slash" = -11; +"@MMK_R_KO_t" = -12; +"@MMK_R_KO_threesuperior" = -41; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -23; +"@MMK_R_KO_v" = -34; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = -28; +"@MMK_R_KO_y" = -46; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_eight" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 14; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = -3; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_Y" = -42; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 4; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asterisk" = 0; +"@MMK_R_KO_colon" = 22; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 25; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_five" = 9; +"@MMK_R_KO_four" = 20; +"@MMK_R_KO_g" = 2; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 3; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 15; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -47; +"@MMK_R_KO_parenright.case" = -17; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_quotedbl" = -11; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 19; +"@MMK_R_KO_seven" = 4; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_three" = 19; +"@MMK_R_KO_two" = 17; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 8; +"@MMK_R_KO_y" = 5; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_ellipsis" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = -11; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -61; +"@MMK_R_KO_S" = -26; +"@MMK_R_KO_T" = -120; +"@MMK_R_KO_U" = -41; +"@MMK_R_KO_V" = -145; +"@MMK_R_KO_W" = -85; +"@MMK_R_KO_Y" = -177; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asterisk" = -143; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_e" = -39; +"@MMK_R_KO_egrave" = -39; +"@MMK_R_KO_eight" = -17; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -42; +"@MMK_R_KO_five" = -30; +"@MMK_R_KO_four" = -10; +"@MMK_R_KO_g" = -24; +"@MMK_R_KO_guillemetleft" = -101; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_hyphen" = -36; +"@MMK_R_KO_hyphen.case" = -135; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_nine" = -32; +"@MMK_R_KO_one" = -107; +"@MMK_R_KO_parenright" = -58; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_quotedbl" = -234; +"@MMK_R_KO_quotedblleft" = -271; +"@MMK_R_KO_quoteright" = -271; +"@MMK_R_KO_s" = -14; +"@MMK_R_KO_seven" = -112; +"@MMK_R_KO_six" = -52; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -58; +"@MMK_R_KO_three" = -24; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -33; +"@MMK_R_KO_v" = -99; +"@MMK_R_KO_w" = -60; +"@MMK_R_KO_y" = -33; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_ellipsis.ss01" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = -22; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -46; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = -131; +"@MMK_R_KO_U" = -36; +"@MMK_R_KO_V" = -139; +"@MMK_R_KO_W" = -84; +"@MMK_R_KO_Y" = -188; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asterisk" = -143; +"@MMK_R_KO_comma.ss01" = -18; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_egrave" = -33; +"@MMK_R_KO_eight" = -14; +"@MMK_R_KO_f" = -56; +"@MMK_R_KO_five" = -24; +"@MMK_R_KO_four" = -2; +"@MMK_R_KO_g" = -28; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -36; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -147; +"@MMK_R_KO_i" = -28; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -28; +"@MMK_R_KO_nine" = -26; +"@MMK_R_KO_one" = -118; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedbl" = -234; +"@MMK_R_KO_quotedblleft.ss01" = -267; +"@MMK_R_KO_quoteright.ss01" = -267; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = -123; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -60; +"@MMK_R_KO_three" = -17; +"@MMK_R_KO_two" = -9; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_v" = -96; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_endash" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -4; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -95; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -71; +"@MMK_R_KO_W" = -30; +"@MMK_R_KO_Y" = -128; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_colon" = -14; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -12; +"@MMK_R_KO_e" = 17; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eight" = 20; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 27; +"@MMK_R_KO_g" = 16; +"@MMK_R_KO_guillemetleft" = -19; +"@MMK_R_KO_guillemetright" = -37; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_n" = 1; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -69; +"@MMK_R_KO_parenright" = -89; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_quotedbl" = -69; +"@MMK_R_KO_quotedblleft" = -56; +"@MMK_R_KO_quotedblleft.ss01" = -18; +"@MMK_R_KO_quoteright" = -37; +"@MMK_R_KO_quoteright.ss01" = -17; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -82; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_slash" = -26; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -16; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_v" = -26; +"@MMK_R_KO_w" = -2; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -12; +}; +"@MMK_L_KO_f" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = -39; +"@MMK_R_KO_O" = 27; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = 28; +"@MMK_R_KO_U" = 27; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 42; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = 30; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 33; +"@MMK_R_KO_colon" = 36; +"@MMK_R_KO_comma" = -41; +"@MMK_R_KO_comma.ss01" = -69; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 21; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = 23; +"@MMK_R_KO_fivesuperior" = 12; +"@MMK_R_KO_foursuperior" = 21; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 62; +"@MMK_R_KO_imacron" = 49; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 42; +"@MMK_R_KO_n" = -1; +"@MMK_R_KO_ninesuperior" = 28; +"@MMK_R_KO_onesuperior" = 16; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -73; +"@MMK_R_KO_question" = 24; +"@MMK_R_KO_question.ss01" = 18; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = 26; +"@MMK_R_KO_quotedblleft.ss01" = 19; +"@MMK_R_KO_quoteleft" = 26; +"@MMK_R_KO_quoteright" = 27; +"@MMK_R_KO_quoteright.ss01" = 26; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = 16; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_sixsuperior" = 24; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = 23; +"@MMK_R_KO_threesuperior" = 24; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 10; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_v" = 33; +"@MMK_R_KO_w" = 28; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 29; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_f_f.liga" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 11; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = -39; +"@MMK_R_KO_O" = 27; +"@MMK_R_KO_S" = 19; +"@MMK_R_KO_T" = 28; +"@MMK_R_KO_U" = 27; +"@MMK_R_KO_V" = 37; +"@MMK_R_KO_W" = 42; +"@MMK_R_KO_X" = 16; +"@MMK_R_KO_Y" = 30; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 33; +"@MMK_R_KO_colon" = 36; +"@MMK_R_KO_comma" = -41; +"@MMK_R_KO_comma.ss01" = -69; +"@MMK_R_KO_e" = 8; +"@MMK_R_KO_egrave" = 8; +"@MMK_R_KO_eightsuperior" = 21; +"@MMK_R_KO_ellipsis" = -61; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = 23; +"@MMK_R_KO_fivesuperior" = 12; +"@MMK_R_KO_foursuperior" = 21; +"@MMK_R_KO_g" = 9; +"@MMK_R_KO_guillemetleft" = -25; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_icircumflex" = 62; +"@MMK_R_KO_imacron" = 49; +"@MMK_R_KO_j" = 3; +"@MMK_R_KO_l.ss04" = 42; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = 28; +"@MMK_R_KO_onesuperior" = 16; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = -42; +"@MMK_R_KO_period.ss01" = -73; +"@MMK_R_KO_question" = 24; +"@MMK_R_KO_question.ss01" = 18; +"@MMK_R_KO_quotedbl" = 21; +"@MMK_R_KO_quotedblleft" = 26; +"@MMK_R_KO_quotedblleft.ss01" = 19; +"@MMK_R_KO_quoteleft" = 26; +"@MMK_R_KO_quoteright" = 27; +"@MMK_R_KO_quoteright.ss01" = 26; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = 16; +"@MMK_R_KO_six" = 27; +"@MMK_R_KO_sixsuperior" = 24; +"@MMK_R_KO_slash" = -40; +"@MMK_R_KO_t" = 23; +"@MMK_R_KO_threesuperior" = 24; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -42; +"@MMK_R_KO_v" = 33; +"@MMK_R_KO_w" = 28; +"@MMK_R_KO_x" = 9; +"@MMK_R_KO_y" = 29; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_fi" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 1; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 10; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -3; +"@MMK_R_KO_onesuperior" = -2; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_question" = -3; +"@MMK_R_KO_quotedbl" = -8; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = -5; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -8; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -6; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = -4; +"@MMK_R_KO_trademark" = -17; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_five" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 9; +"@MMK_R_KO_J" = 14; +"@MMK_R_KO_O" = 5; +"@MMK_R_KO_S" = 16; +"@MMK_R_KO_T" = -9; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = -12; +"@MMK_R_KO_W" = -6; +"@MMK_R_KO_Y" = -17; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 15; +"@MMK_R_KO_asterisk" = -18; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -5; +"@MMK_R_KO_e" = 13; +"@MMK_R_KO_egrave" = 13; +"@MMK_R_KO_eight" = 27; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_five" = 16; +"@MMK_R_KO_four" = 33; +"@MMK_R_KO_g" = 11; +"@MMK_R_KO_guillemetleft" = -10; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = 24; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_j" = 5; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 5; +"@MMK_R_KO_one" = -18; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = -9; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -7; +"@MMK_R_KO_quotedbl" = -21; +"@MMK_R_KO_quotedblleft" = -22; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteright" = -19; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 18; +"@MMK_R_KO_seven" = -11; +"@MMK_R_KO_six" = 7; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = -9; +"@MMK_R_KO_three" = 19; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_v" = -12; +"@MMK_R_KO_w" = -5; +"@MMK_R_KO_y" = -14; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_four" = { +"@MMK_R_KO_A" = -7; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 7; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -39; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -39; +"@MMK_R_KO_W" = -28; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = 13; +"@MMK_R_KO_a.ss05" = 8; +"@MMK_R_KO_asterisk" = -41; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 16; +"@MMK_R_KO_egrave" = 17; +"@MMK_R_KO_eight" = 24; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = -17; +"@MMK_R_KO_five" = 6; +"@MMK_R_KO_four" = 26; +"@MMK_R_KO_g" = 13; +"@MMK_R_KO_guillemetleft" = -4; +"@MMK_R_KO_guillemetright" = -24; +"@MMK_R_KO_hyphen" = 6; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -39; +"@MMK_R_KO_parenright" = -46; +"@MMK_R_KO_parenright.case" = -27; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -2; +"@MMK_R_KO_quotedbl" = -52; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -42; +"@MMK_R_KO_quoteright" = -48; +"@MMK_R_KO_quoteright.ss01" = -52; +"@MMK_R_KO_s" = 12; +"@MMK_R_KO_seven" = -41; +"@MMK_R_KO_six" = 8; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -3; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -24; +"@MMK_R_KO_w" = -6; +"@MMK_R_KO_y" = -34; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_g.ss06" = { +"@MMK_R_KO_A" = 32; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 29; +"@MMK_R_KO_O" = -15; +"@MMK_R_KO_S" = -19; +"@MMK_R_KO_T" = -17; +"@MMK_R_KO_U" = -20; +"@MMK_R_KO_V" = -30; +"@MMK_R_KO_W" = -21; +"@MMK_R_KO_X" = 26; +"@MMK_R_KO_Y" = -36; +"@MMK_R_KO_Z" = 23; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = -8; +"@MMK_R_KO_asciicircum" = -60; +"@MMK_R_KO_bracketright" = 41; +"@MMK_R_KO_colon" = 20; +"@MMK_R_KO_comma" = 23; +"@MMK_R_KO_comma.ss01" = 15; +"@MMK_R_KO_e" = -19; +"@MMK_R_KO_egrave" = -19; +"@MMK_R_KO_eightsuperior" = -26; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 8; +"@MMK_R_KO_f" = -14; +"@MMK_R_KO_fivesuperior" = -29; +"@MMK_R_KO_foursuperior" = -28; +"@MMK_R_KO_guillemetleft" = -45; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = -27; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 11; +"@MMK_R_KO_imacron" = 8; +"@MMK_R_KO_j" = 64; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -28; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_period" = 8; +"@MMK_R_KO_period.ss01" = 3; +"@MMK_R_KO_question" = -18; +"@MMK_R_KO_question.ss01" = -27; +"@MMK_R_KO_quotedbl" = -32; +"@MMK_R_KO_quotedblleft" = -25; +"@MMK_R_KO_quotedblleft.ss01" = -26; +"@MMK_R_KO_quoteleft" = -25; +"@MMK_R_KO_quoteright" = -32; +"@MMK_R_KO_quoteright.ss01" = -32; +"@MMK_R_KO_s" = -12; +"@MMK_R_KO_sevensuperior" = -31; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = -27; +"@MMK_R_KO_slash" = 52; +"@MMK_R_KO_t" = -17; +"@MMK_R_KO_threesuperior" = -34; +"@MMK_R_KO_trademark" = -37; +"@MMK_R_KO_u" = -21; +"@MMK_R_KO_underscore" = 25; +"@MMK_R_KO_v" = -21; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = -12; +"@MMK_R_KO_z" = 17; +}; +"@MMK_L_KO_guillemetleft" = { +"@MMK_R_KO_A" = -2; +"@MMK_R_KO_H" = -14; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -21; +"@MMK_R_KO_S" = -10; +"@MMK_R_KO_T" = -24; +"@MMK_R_KO_U" = -18; +"@MMK_R_KO_V" = -41; +"@MMK_R_KO_W" = -36; +"@MMK_R_KO_Y" = -73; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -15; +"@MMK_R_KO_asterisk" = -27; +"@MMK_R_KO_colon" = 4; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = -37; +"@MMK_R_KO_egrave" = -37; +"@MMK_R_KO_eight" = -10; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_f" = -7; +"@MMK_R_KO_five" = -20; +"@MMK_R_KO_four" = -18; +"@MMK_R_KO_g" = -27; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -19; +"@MMK_R_KO_hyphen" = -36; +"@MMK_R_KO_hyphen.case" = -31; +"@MMK_R_KO_i" = -15; +"@MMK_R_KO_j" = -15; +"@MMK_R_KO_n" = -15; +"@MMK_R_KO_nine" = -7; +"@MMK_R_KO_one" = -11; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_parenright.case" = -31; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -17; +"@MMK_R_KO_quotedbl" = -32; +"@MMK_R_KO_quotedblleft" = -28; +"@MMK_R_KO_quotedblleft.ss01" = -35; +"@MMK_R_KO_quoteright" = -55; +"@MMK_R_KO_quoteright.ss01" = -38; +"@MMK_R_KO_s" = -18; +"@MMK_R_KO_seven" = -16; +"@MMK_R_KO_six" = -21; +"@MMK_R_KO_slash" = -4; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_three" = -10; +"@MMK_R_KO_two" = -2; +"@MMK_R_KO_u" = -14; +"@MMK_R_KO_v" = -5; +"@MMK_R_KO_w" = -17; +"@MMK_R_KO_y" = -15; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_guillemetright" = { +"@MMK_R_KO_A" = -51; +"@MMK_R_KO_H" = -20; +"@MMK_R_KO_I.ss02" = -38; +"@MMK_R_KO_J" = -32; +"@MMK_R_KO_O" = -11; +"@MMK_R_KO_S" = -22; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = -15; +"@MMK_R_KO_V" = -97; +"@MMK_R_KO_W" = -58; +"@MMK_R_KO_Y" = -158; +"@MMK_R_KO_Z" = -32; +"@MMK_R_KO_a" = -7; +"@MMK_R_KO_a.ss05" = -23; +"@MMK_R_KO_asterisk" = -109; +"@MMK_R_KO_colon" = -44; +"@MMK_R_KO_comma" = -44; +"@MMK_R_KO_comma.ss01" = -55; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eight" = -9; +"@MMK_R_KO_ellipsis" = -59; +"@MMK_R_KO_f" = -34; +"@MMK_R_KO_five" = -14; +"@MMK_R_KO_four" = 2; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -28; +"@MMK_R_KO_guillemetright" = -73; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_hyphen.case" = -12; +"@MMK_R_KO_i" = -22; +"@MMK_R_KO_j" = -22; +"@MMK_R_KO_n" = -23; +"@MMK_R_KO_nine" = -29; +"@MMK_R_KO_one" = -56; +"@MMK_R_KO_parenright" = -97; +"@MMK_R_KO_parenright.case" = -73; +"@MMK_R_KO_period" = -44; +"@MMK_R_KO_period.ss01" = -56; +"@MMK_R_KO_quotedbl" = -94; +"@MMK_R_KO_quotedblleft" = -85; +"@MMK_R_KO_quotedblleft.ss01" = -52; +"@MMK_R_KO_quoteright" = -51; +"@MMK_R_KO_quoteright.ss01" = -50; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_seven" = -64; +"@MMK_R_KO_six" = -10; +"@MMK_R_KO_slash" = -58; +"@MMK_R_KO_t" = -34; +"@MMK_R_KO_three" = -22; +"@MMK_R_KO_two" = -50; +"@MMK_R_KO_u" = -15; +"@MMK_R_KO_v" = -50; +"@MMK_R_KO_w" = -32; +"@MMK_R_KO_y" = -60; +"@MMK_R_KO_z" = -44; +}; +"@MMK_L_KO_hyphen" = { +"@MMK_R_KO_A" = -12; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -3; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -94; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -70; +"@MMK_R_KO_W" = -30; +"@MMK_R_KO_Y" = -127; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 16; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -114; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -14; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 19; +"@MMK_R_KO_egrave" = 19; +"@MMK_R_KO_eight" = 21; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 28; +"@MMK_R_KO_g" = 17; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_guillemetright" = -37; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = 1; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 1; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = -69; +"@MMK_R_KO_parenright" = -86; +"@MMK_R_KO_period" = -15; +"@MMK_R_KO_period.ss01" = -14; +"@MMK_R_KO_quotedbl" = -64; +"@MMK_R_KO_quotedblleft" = -56; +"@MMK_R_KO_quotedblleft.ss01" = -20; +"@MMK_R_KO_quoteright" = -33; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = 4; +"@MMK_R_KO_seven" = -82; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_slash" = -33; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = -15; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_hyphen.case" = { +"@MMK_R_KO_A" = -37; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -71; +"@MMK_R_KO_J" = -64; +"@MMK_R_KO_O" = 21; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -88; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -45; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_Y" = -98; +"@MMK_R_KO_Z" = -38; +"@MMK_R_KO_asterisk" = -30; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -98; +"@MMK_R_KO_comma.ss01" = -134; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_five" = 7; +"@MMK_R_KO_four" = 8; +"@MMK_R_KO_guillemetleft" = -19; +"@MMK_R_KO_guillemetright" = -30; +"@MMK_R_KO_hyphen.case" = 2; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright.case" = -69; +"@MMK_R_KO_period" = -98; +"@MMK_R_KO_period.ss01" = -135; +"@MMK_R_KO_quotedbl" = -29; +"@MMK_R_KO_quotedblleft" = -18; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 21; +"@MMK_R_KO_slash" = -56; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = -12; +}; +"@MMK_L_KO_i.ss01" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -3; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -6; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_bracketright" = -2; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -10; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = -2; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -19; +"@MMK_R_KO_foursuperior" = -12; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 1; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 8; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -22; +"@MMK_R_KO_onesuperior" = -37; +"@MMK_R_KO_parenright" = -42; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = -4; +"@MMK_R_KO_question.ss01" = -12; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -15; +"@MMK_R_KO_quotedblleft.ss01" = -19; +"@MMK_R_KO_quoteleft" = -15; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -18; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -52; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -15; +"@MMK_R_KO_slash" = 3; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = -15; +"@MMK_R_KO_trademark" = -24; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 1; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_jacute" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 14; +"@MMK_R_KO_I.ss02" = 41; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 3; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 44; +"@MMK_R_KO_U" = 30; +"@MMK_R_KO_V" = 54; +"@MMK_R_KO_W" = 64; +"@MMK_R_KO_X" = 48; +"@MMK_R_KO_Y" = 48; +"@MMK_R_KO_Z" = 27; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -42; +"@MMK_R_KO_bracketright" = 75; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -23; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 11; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 19; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = 9; +"@MMK_R_KO_foursuperior" = -8; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = 1; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 35; +"@MMK_R_KO_imacron" = 19; +"@MMK_R_KO_j" = 19; +"@MMK_R_KO_l.ss04" = 18; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = 13; +"@MMK_R_KO_onesuperior" = 3; +"@MMK_R_KO_parenright" = 20; +"@MMK_R_KO_period" = 1; +"@MMK_R_KO_period.ss01" = -27; +"@MMK_R_KO_question" = -2; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = 15; +"@MMK_R_KO_quotedblleft" = -6; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteleft" = -6; +"@MMK_R_KO_quoteright" = 15; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = 33; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = 2; +"@MMK_R_KO_slash" = 11; +"@MMK_R_KO_t" = -5; +"@MMK_R_KO_threesuperior" = 15; +"@MMK_R_KO_trademark" = 0; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_k" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 22; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -22; +"@MMK_R_KO_W" = -7; +"@MMK_R_KO_X" = 27; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -32; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 15; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -38; +"@MMK_R_KO_eightsuperior" = -11; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = 3; +"@MMK_R_KO_fivesuperior" = -9; +"@MMK_R_KO_foursuperior" = 0; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -69; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_icircumflex" = -5; +"@MMK_R_KO_imacron" = -5; +"@MMK_R_KO_j" = 24; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = -5; +"@MMK_R_KO_ninesuperior" = -17; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -36; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -10; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -7; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -35; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = -21; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = 5; +"@MMK_R_KO_sixsuperior" = 0; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -27; +"@MMK_R_KO_trademark" = -52; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 22; +"@MMK_R_KO_y" = 15; +"@MMK_R_KO_z" = 4; +}; +"@MMK_L_KO_l" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 4; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = 2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -5; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -41; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 3; +"@MMK_R_KO_comma" = 2; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_eightsuperior" = -4; +"@MMK_R_KO_ellipsis" = -16; +"@MMK_R_KO_exclam" = 2; +"@MMK_R_KO_f" = -5; +"@MMK_R_KO_fivesuperior" = -11; +"@MMK_R_KO_foursuperior" = -9; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -22; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_icircumflex" = 24; +"@MMK_R_KO_imacron" = 12; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -6; +"@MMK_R_KO_onesuperior" = -9; +"@MMK_R_KO_parenright" = -25; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_period.ss01" = -26; +"@MMK_R_KO_question" = 3; +"@MMK_R_KO_question.ss01" = -11; +"@MMK_R_KO_quotedbl" = -9; +"@MMK_R_KO_quotedblleft" = -5; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteleft" = -5; +"@MMK_R_KO_quoteright" = -6; +"@MMK_R_KO_quoteright.ss01" = -6; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -14; +"@MMK_R_KO_six" = 4; +"@MMK_R_KO_sixsuperior" = -3; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = -2; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -22; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 2; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_x" = -2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_l.ss03" = { +"@MMK_R_KO_A" = 29; +"@MMK_R_KO_I.ss02" = 15; +"@MMK_R_KO_J" = 24; +"@MMK_R_KO_O" = -18; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -20; +"@MMK_R_KO_U" = -13; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = 22; +"@MMK_R_KO_Y" = -25; +"@MMK_R_KO_Z" = 20; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 7; +"@MMK_R_KO_asciicircum" = -65; +"@MMK_R_KO_bracketright" = 4; +"@MMK_R_KO_colon" = 34; +"@MMK_R_KO_comma" = 36; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = -5; +"@MMK_R_KO_egrave" = -5; +"@MMK_R_KO_eightsuperior" = -28; +"@MMK_R_KO_ellipsis" = 13; +"@MMK_R_KO_exclam" = 23; +"@MMK_R_KO_f" = -15; +"@MMK_R_KO_fivesuperior" = -36; +"@MMK_R_KO_foursuperior" = -32; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -44; +"@MMK_R_KO_guillemetright" = -13; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = 5; +"@MMK_R_KO_imacron" = 5; +"@MMK_R_KO_j" = 40; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -28; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -32; +"@MMK_R_KO_period" = 38; +"@MMK_R_KO_period.ss01" = -3; +"@MMK_R_KO_question" = -20; +"@MMK_R_KO_question.ss01" = -31; +"@MMK_R_KO_quotedbl" = -31; +"@MMK_R_KO_quotedblleft" = -27; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -27; +"@MMK_R_KO_quoteright" = -33; +"@MMK_R_KO_quoteright.ss01" = -24; +"@MMK_R_KO_s" = 9; +"@MMK_R_KO_sevensuperior" = -36; +"@MMK_R_KO_six" = -15; +"@MMK_R_KO_sixsuperior" = -27; +"@MMK_R_KO_slash" = 16; +"@MMK_R_KO_t" = -18; +"@MMK_R_KO_threesuperior" = -33; +"@MMK_R_KO_trademark" = -42; +"@MMK_R_KO_u" = -10; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -23; +"@MMK_R_KO_w" = -16; +"@MMK_R_KO_x" = 19; +"@MMK_R_KO_y" = -20; +"@MMK_R_KO_z" = 11; +}; +"@MMK_L_KO_lcaron" = { +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 173; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 3; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 3; +"@MMK_R_KO_egrave" = 61; +"@MMK_R_KO_eightsuperior" = 182; +"@MMK_R_KO_exclam" = 181; +"@MMK_R_KO_f" = 121; +"@MMK_R_KO_fivesuperior" = 177; +"@MMK_R_KO_foursuperior" = 117; +"@MMK_R_KO_g" = 3; +"@MMK_R_KO_guillemetleft" = -3; +"@MMK_R_KO_hyphen" = 2; +"@MMK_R_KO_i" = 172; +"@MMK_R_KO_j" = 147; +"@MMK_R_KO_l.ss04" = 176; +"@MMK_R_KO_n" = 3; +"@MMK_R_KO_ninesuperior" = 188; +"@MMK_R_KO_onesuperior" = 190; +"@MMK_R_KO_parenright" = 131; +"@MMK_R_KO_period" = 3; +"@MMK_R_KO_period.ss01" = -24; +"@MMK_R_KO_question" = 156; +"@MMK_R_KO_question.ss01" = 155; +"@MMK_R_KO_quotedbl" = 196; +"@MMK_R_KO_quotedblleft" = 152; +"@MMK_R_KO_quotedblleft.ss01" = 155; +"@MMK_R_KO_quoteleft" = 152; +"@MMK_R_KO_sevensuperior" = 204; +"@MMK_R_KO_sixsuperior" = 172; +"@MMK_R_KO_slash" = 4; +"@MMK_R_KO_t" = 86; +"@MMK_R_KO_threesuperior" = 133; +"@MMK_R_KO_u" = 2; +"@MMK_R_KO_v" = 7; +"@MMK_R_KO_z" = 103; +}; +"@MMK_L_KO_logicalnot" = { +"@MMK_R_KO_A" = -77; +"@MMK_R_KO_H" = -74; +"@MMK_R_KO_O" = -59; +"@MMK_R_KO_T" = -146; +"@MMK_R_KO_a" = -57; +"@MMK_R_KO_e" = -55; +"@MMK_R_KO_f" = -63; +"@MMK_R_KO_i" = -75; +"@MMK_R_KO_n" = -75; +"@MMK_R_KO_t" = -63; +}; +"@MMK_L_KO_n" = { +"@MMK_R_KO_A" = 16; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -77; +"@MMK_R_KO_U" = -4; +"@MMK_R_KO_V" = -78; +"@MMK_R_KO_W" = -43; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -115; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 9; +"@MMK_R_KO_a.ss05" = 5; +"@MMK_R_KO_asciicircum" = -62; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = 18; +"@MMK_R_KO_comma.ss01" = -15; +"@MMK_R_KO_e" = 6; +"@MMK_R_KO_egrave" = 6; +"@MMK_R_KO_eightsuperior" = -31; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -11; +"@MMK_R_KO_fivesuperior" = -38; +"@MMK_R_KO_foursuperior" = -26; +"@MMK_R_KO_g" = 8; +"@MMK_R_KO_guillemetleft" = -18; +"@MMK_R_KO_guillemetright" = -27; +"@MMK_R_KO_hyphen" = 10; +"@MMK_R_KO_icircumflex" = -1; +"@MMK_R_KO_imacron" = -1; +"@MMK_R_KO_j" = 19; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -37; +"@MMK_R_KO_onesuperior" = -79; +"@MMK_R_KO_parenright" = -45; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = -39; +"@MMK_R_KO_question.ss01" = -49; +"@MMK_R_KO_quotedbl" = -54; +"@MMK_R_KO_quotedblleft" = -42; +"@MMK_R_KO_quotedblleft.ss01" = -29; +"@MMK_R_KO_quoteleft" = -41; +"@MMK_R_KO_quoteright" = -26; +"@MMK_R_KO_quoteright.ss01" = -26; +"@MMK_R_KO_s" = 2; +"@MMK_R_KO_sevensuperior" = -83; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -47; +"@MMK_R_KO_slash" = 19; +"@MMK_R_KO_t" = -11; +"@MMK_R_KO_threesuperior" = -33; +"@MMK_R_KO_trademark" = -93; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = -27; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = 0; +"@MMK_R_KO_y" = -24; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_o" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -85; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -80; +"@MMK_R_KO_W" = -40; +"@MMK_R_KO_X" = -27; +"@MMK_R_KO_Y" = -118; +"@MMK_R_KO_Z" = 9; +"@MMK_R_KO_a" = 11; +"@MMK_R_KO_a.ss05" = 9; +"@MMK_R_KO_asciicircum" = -67; +"@MMK_R_KO_bracketright" = -30; +"@MMK_R_KO_colon" = 2; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 12; +"@MMK_R_KO_egrave" = 12; +"@MMK_R_KO_eightsuperior" = -33; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_fivesuperior" = -41; +"@MMK_R_KO_foursuperior" = -29; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_ninesuperior" = -42; +"@MMK_R_KO_onesuperior" = -75; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -11; +"@MMK_R_KO_question" = -51; +"@MMK_R_KO_question.ss01" = -63; +"@MMK_R_KO_quotedbl" = -57; +"@MMK_R_KO_quotedblleft" = -48; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteleft" = -48; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -32; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -79; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_sixsuperior" = -52; +"@MMK_R_KO_slash" = -8; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -36; +"@MMK_R_KO_trademark" = -97; +"@MMK_R_KO_u" = 7; +"@MMK_R_KO_underscore" = -23; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = -29; +"@MMK_R_KO_y" = -37; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_oacute" = { +"@MMK_R_KO_A" = -5; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 11; +"@MMK_R_KO_T" = -42; +"@MMK_R_KO_V" = -49; +"@MMK_R_KO_W" = -41; +"@MMK_R_KO_Y" = -80; +"@MMK_R_KO_a" = 12; +"@MMK_R_KO_a.ss05" = 11; +"@MMK_R_KO_bracketright" = -31; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = 11; +"@MMK_R_KO_egrave" = 11; +"@MMK_R_KO_eightsuperior" = -37; +"@MMK_R_KO_ellipsis" = -7; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = -8; +"@MMK_R_KO_fivesuperior" = -49; +"@MMK_R_KO_foursuperior" = -33; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = 18; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 1; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -48; +"@MMK_R_KO_onesuperior" = -53; +"@MMK_R_KO_parenright" = -67; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -12; +"@MMK_R_KO_question" = -55; +"@MMK_R_KO_question.ss01" = -62; +"@MMK_R_KO_quotedbl" = -64; +"@MMK_R_KO_quotedblleft" = -56; +"@MMK_R_KO_quotedblleft.ss01" = -34; +"@MMK_R_KO_quoteleft" = -56; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -32; +"@MMK_R_KO_s" = 7; +"@MMK_R_KO_sevensuperior" = -78; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -59; +"@MMK_R_KO_slash" = -9; +"@MMK_R_KO_t" = -10; +"@MMK_R_KO_threesuperior" = -38; +"@MMK_R_KO_trademark" = -103; +"@MMK_R_KO_u" = 4; +"@MMK_R_KO_underscore" = -28; +"@MMK_R_KO_v" = -31; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = -29; +"@MMK_R_KO_y" = -43; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_parenleft" = { +"@MMK_R_KO_A" = -36; +"@MMK_R_KO_H" = -1; +"@MMK_R_KO_I.ss02" = 19; +"@MMK_R_KO_J" = -34; +"@MMK_R_KO_O" = -47; +"@MMK_R_KO_S" = -24; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -76; +"@MMK_R_KO_a.ss05" = -60; +"@MMK_R_KO_asterisk" = -25; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -77; +"@MMK_R_KO_egrave" = -57; +"@MMK_R_KO_eight" = -24; +"@MMK_R_KO_ellipsis" = -64; +"@MMK_R_KO_f" = -44; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -56; +"@MMK_R_KO_g" = -40; +"@MMK_R_KO_guillemetleft" = -97; +"@MMK_R_KO_guillemetright" = -73; +"@MMK_R_KO_hyphen" = -87; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_j" = 48; +"@MMK_R_KO_n" = -52; +"@MMK_R_KO_nine" = -26; +"@MMK_R_KO_one" = -37; +"@MMK_R_KO_parenright" = 15; +"@MMK_R_KO_period" = -65; +"@MMK_R_KO_period.ss01" = -65; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = -26; +"@MMK_R_KO_quotedblleft.ss01" = -27; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -68; +"@MMK_R_KO_seven" = 16; +"@MMK_R_KO_six" = -42; +"@MMK_R_KO_slash" = -7; +"@MMK_R_KO_t" = -49; +"@MMK_R_KO_three" = -34; +"@MMK_R_KO_two" = -24; +"@MMK_R_KO_u" = -59; +"@MMK_R_KO_v" = -57; +"@MMK_R_KO_w" = -57; +"@MMK_R_KO_y" = -8; +"@MMK_R_KO_z" = -43; +}; +"@MMK_L_KO_parenleft.case" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 5; +"@MMK_R_KO_J" = 7; +"@MMK_R_KO_O" = -37; +"@MMK_R_KO_S" = -23; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -2; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 14; +"@MMK_R_KO_asterisk" = -25; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = 12; +"@MMK_R_KO_eight" = -19; +"@MMK_R_KO_ellipsis" = -13; +"@MMK_R_KO_five" = -12; +"@MMK_R_KO_four" = -26; +"@MMK_R_KO_guillemetleft" = -73; +"@MMK_R_KO_guillemetright" = -38; +"@MMK_R_KO_hyphen.case" = -71; +"@MMK_R_KO_nine" = -24; +"@MMK_R_KO_one" = -29; +"@MMK_R_KO_parenright.case" = 35; +"@MMK_R_KO_period" = -16; +"@MMK_R_KO_period.ss01" = -9; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = -31; +"@MMK_R_KO_quotedblleft.ss01" = -30; +"@MMK_R_KO_quoteright" = -7; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_seven" = 7; +"@MMK_R_KO_six" = -35; +"@MMK_R_KO_slash" = 32; +"@MMK_R_KO_three" = -28; +"@MMK_R_KO_two" = 2; +}; +"@MMK_L_KO_period" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 23; +"@MMK_R_KO_J" = 41; +"@MMK_R_KO_O" = -52; +"@MMK_R_KO_S" = -16; +"@MMK_R_KO_T" = -105; +"@MMK_R_KO_U" = -35; +"@MMK_R_KO_V" = -125; +"@MMK_R_KO_W" = -67; +"@MMK_R_KO_Y" = -132; +"@MMK_R_KO_Z" = 30; +"@MMK_R_KO_a" = -20; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asterisk" = -132; +"@MMK_R_KO_colon" = 8; +"@MMK_R_KO_e" = -27; +"@MMK_R_KO_eight" = -3; +"@MMK_R_KO_f" = -28; +"@MMK_R_KO_five" = -19; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -5; +"@MMK_R_KO_guillemetleft" = -83; +"@MMK_R_KO_guillemetright" = -7; +"@MMK_R_KO_hyphen" = -33; +"@MMK_R_KO_hyphen.case" = -116; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 19; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = -21; +"@MMK_R_KO_one" = -91; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_parenright.case" = -15; +"@MMK_R_KO_period" = 2; +"@MMK_R_KO_quotedbl" = -132; +"@MMK_R_KO_quotedblleft" = -132; +"@MMK_R_KO_quoteright" = -132; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_seven" = -97; +"@MMK_R_KO_six" = -48; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -42; +"@MMK_R_KO_three" = -13; +"@MMK_R_KO_two" = 7; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = -82; +"@MMK_R_KO_w" = -41; +"@MMK_R_KO_y" = -21; +"@MMK_R_KO_z" = 25; +}; +"@MMK_L_KO_period.ss01" = { +"@MMK_R_KO_A" = 4; +"@MMK_R_KO_H" = -22; +"@MMK_R_KO_I.ss02" = -6; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -46; +"@MMK_R_KO_S" = -20; +"@MMK_R_KO_T" = -131; +"@MMK_R_KO_U" = -36; +"@MMK_R_KO_V" = -135; +"@MMK_R_KO_W" = -84; +"@MMK_R_KO_Y" = -135; +"@MMK_R_KO_Z" = -2; +"@MMK_R_KO_a" = -29; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asterisk" = -135; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_eight" = -12; +"@MMK_R_KO_f" = -56; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -28; +"@MMK_R_KO_guillemetleft" = -85; +"@MMK_R_KO_guillemetright" = -36; +"@MMK_R_KO_hyphen" = -18; +"@MMK_R_KO_hyphen.case" = -132; +"@MMK_R_KO_i" = -28; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -28; +"@MMK_R_KO_nine" = -24; +"@MMK_R_KO_one" = -111; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_parenright.case" = -21; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedbl" = -135; +"@MMK_R_KO_quotedblleft.ss01" = -134; +"@MMK_R_KO_quoteright.ss01" = -134; +"@MMK_R_KO_s" = -9; +"@MMK_R_KO_seven" = -119; +"@MMK_R_KO_six" = -41; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -60; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = -9; +"@MMK_R_KO_u" = -29; +"@MMK_R_KO_v" = -96; +"@MMK_R_KO_w" = -58; +"@MMK_R_KO_y" = -35; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_questiondown" = { +"@MMK_R_KO_A" = 9; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -78; +"@MMK_R_KO_S" = -44; +"@MMK_R_KO_T" = -112; +"@MMK_R_KO_U" = -67; +"@MMK_R_KO_V" = -123; +"@MMK_R_KO_W" = -80; +"@MMK_R_KO_Y" = -164; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -48; +"@MMK_R_KO_a.ss05" = -24; +"@MMK_R_KO_e" = -66; +"@MMK_R_KO_eight" = -34; +"@MMK_R_KO_f" = -33; +"@MMK_R_KO_five" = -47; +"@MMK_R_KO_four" = -90; +"@MMK_R_KO_g" = -4; +"@MMK_R_KO_guillemetright" = -29; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = 66; +"@MMK_R_KO_nine" = -55; +"@MMK_R_KO_one" = -88; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_quotedbl" = -109; +"@MMK_R_KO_quotedblleft" = -110; +"@MMK_R_KO_quoteright" = -108; +"@MMK_R_KO_s" = -31; +"@MMK_R_KO_seven" = -94; +"@MMK_R_KO_six" = -76; +"@MMK_R_KO_t" = -63; +"@MMK_R_KO_three" = -41; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -39; +"@MMK_R_KO_v" = -92; +"@MMK_R_KO_w" = -52; +"@MMK_R_KO_y" = -11; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_quotedbl" = { +"@MMK_R_KO_A" = -97; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -81; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 17; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 22; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_asterisk" = 13; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_comma.ss01" = -134; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -26; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -234; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = -46; +"@MMK_R_KO_hyphen.case" = -27; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = 6; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -132; +"@MMK_R_KO_period.ss01" = -135; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -30; +"@MMK_R_KO_seven" = 24; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = -105; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -18; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_quotedblbase" = { +"@MMK_R_KO_A" = 19; +"@MMK_R_KO_H" = -11; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 13; +"@MMK_R_KO_O" = -71; +"@MMK_R_KO_S" = -31; +"@MMK_R_KO_T" = -120; +"@MMK_R_KO_U" = -49; +"@MMK_R_KO_V" = -139; +"@MMK_R_KO_W" = -89; +"@MMK_R_KO_Y" = -176; +"@MMK_R_KO_Z" = 2; +"@MMK_R_KO_a" = -40; +"@MMK_R_KO_a.ss05" = -18; +"@MMK_R_KO_asterisk" = -133; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = 18; +"@MMK_R_KO_e" = -48; +"@MMK_R_KO_egrave" = -48; +"@MMK_R_KO_eight" = -24; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_f" = -43; +"@MMK_R_KO_five" = -35; +"@MMK_R_KO_four" = -18; +"@MMK_R_KO_g" = -14; +"@MMK_R_KO_guillemetleft" = -109; +"@MMK_R_KO_guillemetright" = -31; +"@MMK_R_KO_hyphen" = -41; +"@MMK_R_KO_hyphen.case" = -133; +"@MMK_R_KO_i" = -16; +"@MMK_R_KO_j" = 54; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_nine" = -37; +"@MMK_R_KO_one" = -107; +"@MMK_R_KO_period" = 10; +"@MMK_R_KO_quotedblleft" = -271; +"@MMK_R_KO_quoteright" = -133; +"@MMK_R_KO_s" = -22; +"@MMK_R_KO_seven" = -112; +"@MMK_R_KO_six" = -63; +"@MMK_R_KO_slash" = 41; +"@MMK_R_KO_t" = -64; +"@MMK_R_KO_three" = -29; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -37; +"@MMK_R_KO_v" = -97; +"@MMK_R_KO_w" = -65; +"@MMK_R_KO_y" = -22; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_quotedblbase.ss01" = { +"@MMK_R_KO_A" = 5; +"@MMK_R_KO_H" = -21; +"@MMK_R_KO_I.ss02" = -5; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = -43; +"@MMK_R_KO_S" = -17; +"@MMK_R_KO_T" = -110; +"@MMK_R_KO_U" = -35; +"@MMK_R_KO_V" = -136; +"@MMK_R_KO_W" = -83; +"@MMK_R_KO_Y" = -188; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_a.ss05" = -11; +"@MMK_R_KO_asterisk" = -134; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -31; +"@MMK_R_KO_egrave" = -31; +"@MMK_R_KO_eight" = -12; +"@MMK_R_KO_f" = -55; +"@MMK_R_KO_five" = -23; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = -22; +"@MMK_R_KO_guillemetleft" = -81; +"@MMK_R_KO_guillemetright" = -35; +"@MMK_R_KO_hyphen" = -16; +"@MMK_R_KO_hyphen.case" = -132; +"@MMK_R_KO_i" = -23; +"@MMK_R_KO_j" = 41; +"@MMK_R_KO_n" = -23; +"@MMK_R_KO_nine" = -24; +"@MMK_R_KO_one" = -111; +"@MMK_R_KO_period.ss01" = -19; +"@MMK_R_KO_quotedblleft.ss01" = -134; +"@MMK_R_KO_quoteright.ss01" = -134; +"@MMK_R_KO_s" = -7; +"@MMK_R_KO_seven" = -119; +"@MMK_R_KO_six" = -40; +"@MMK_R_KO_slash" = 41; +"@MMK_R_KO_t" = -59; +"@MMK_R_KO_three" = -15; +"@MMK_R_KO_two" = -9; +"@MMK_R_KO_u" = -27; +"@MMK_R_KO_v" = -94; +"@MMK_R_KO_w" = -55; +"@MMK_R_KO_y" = -30; +"@MMK_R_KO_z" = -9; +}; +"@MMK_L_KO_quotedblleft" = { +"@MMK_R_KO_A" = -80; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -81; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 5; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_Y" = 7; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asterisk" = -7; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eight" = -8; +"@MMK_R_KO_ellipsis" = -271; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -36; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = -30; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_nine" = 12; +"@MMK_R_KO_one" = 11; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -132; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = 15; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_three" = -3; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_quotedblleft.ss01" = { +"@MMK_R_KO_A" = -78; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -83; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 2; +"@MMK_R_KO_U" = 4; +"@MMK_R_KO_V" = 13; +"@MMK_R_KO_W" = 19; +"@MMK_R_KO_Y" = 6; +"@MMK_R_KO_Z" = -6; +"@MMK_R_KO_a" = -12; +"@MMK_R_KO_a.ss05" = -10; +"@MMK_R_KO_asterisk" = 3; +"@MMK_R_KO_comma.ss01" = -134; +"@MMK_R_KO_e" = -12; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eight" = -7; +"@MMK_R_KO_f" = 4; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -29; +"@MMK_R_KO_g" = -8; +"@MMK_R_KO_guillemetleft" = -37; +"@MMK_R_KO_guillemetright" = -12; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = -6; +"@MMK_R_KO_j" = -6; +"@MMK_R_KO_n" = -23; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -15; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -135; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteright.ss01" = 3; +"@MMK_R_KO_s" = -8; +"@MMK_R_KO_seven" = 12; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = 4; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_quotedblright" = { +"@MMK_R_KO_A" = -94; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_asterisk" = 19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eight" = 2; +"@MMK_R_KO_ellipsis" = -271; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -77; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -60; +"@MMK_R_KO_hyphen.case" = -25; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = 14; +"@MMK_R_KO_one" = 13; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = -132; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = 21; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -103; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_quoteleft" = { +"@MMK_R_KO_A" = -80; +"@MMK_R_KO_H" = -4; +"@MMK_R_KO_I.ss02" = -2; +"@MMK_R_KO_J" = -79; +"@MMK_R_KO_O" = 10; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 6; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_Y" = 7; +"@MMK_R_KO_Z" = -9; +"@MMK_R_KO_a" = -10; +"@MMK_R_KO_a.ss05" = -6; +"@MMK_R_KO_asterisk" = -7; +"@MMK_R_KO_colon" = 5; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_e" = -10; +"@MMK_R_KO_egrave" = -10; +"@MMK_R_KO_eight" = -8; +"@MMK_R_KO_ellipsis" = -133; +"@MMK_R_KO_f" = 14; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = -36; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = -29; +"@MMK_R_KO_hyphen.case" = -2; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -5; +"@MMK_R_KO_n" = -16; +"@MMK_R_KO_nine" = 12; +"@MMK_R_KO_one" = 11; +"@MMK_R_KO_parenright" = -11; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -132; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_s" = -2; +"@MMK_R_KO_seven" = 15; +"@MMK_R_KO_six" = 10; +"@MMK_R_KO_slash" = -94; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_three" = -3; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -10; +}; +"@MMK_L_KO_quoteright" = { +"@MMK_R_KO_A" = -94; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -78; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 14; +"@MMK_R_KO_U" = 2; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 8; +"@MMK_R_KO_Y" = -8; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -37; +"@MMK_R_KO_a.ss05" = -32; +"@MMK_R_KO_asterisk" = 19; +"@MMK_R_KO_colon" = 0; +"@MMK_R_KO_comma" = -133; +"@MMK_R_KO_e" = -38; +"@MMK_R_KO_egrave" = -28; +"@MMK_R_KO_eight" = 2; +"@MMK_R_KO_ellipsis" = -133; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_five" = -2; +"@MMK_R_KO_four" = -73; +"@MMK_R_KO_g" = -34; +"@MMK_R_KO_guillemetleft" = -77; +"@MMK_R_KO_guillemetright" = -11; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_hyphen.case" = -24; +"@MMK_R_KO_i" = -5; +"@MMK_R_KO_j" = -9; +"@MMK_R_KO_n" = -20; +"@MMK_R_KO_nine" = 14; +"@MMK_R_KO_one" = 13; +"@MMK_R_KO_parenright" = -29; +"@MMK_R_KO_parenright.case" = -7; +"@MMK_R_KO_period" = -132; +"@MMK_R_KO_quotedbl" = 8; +"@MMK_R_KO_quotedblleft" = 14; +"@MMK_R_KO_quoteright" = 4; +"@MMK_R_KO_s" = -29; +"@MMK_R_KO_seven" = 21; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -103; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = -11; +"@MMK_R_KO_v" = 5; +"@MMK_R_KO_w" = 3; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -14; +}; +"@MMK_L_KO_quoteright.ss01" = { +"@MMK_R_KO_A" = -96; +"@MMK_R_KO_H" = -7; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -87; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 16; +"@MMK_R_KO_W" = 12; +"@MMK_R_KO_Y" = 0; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = -33; +"@MMK_R_KO_a.ss05" = -21; +"@MMK_R_KO_asterisk" = 5; +"@MMK_R_KO_comma.ss01" = -134; +"@MMK_R_KO_e" = -33; +"@MMK_R_KO_egrave" = -30; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -6; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -30; +"@MMK_R_KO_guillemetleft" = -70; +"@MMK_R_KO_guillemetright" = -17; +"@MMK_R_KO_hyphen" = -49; +"@MMK_R_KO_hyphen.case" = -19; +"@MMK_R_KO_i" = -11; +"@MMK_R_KO_j" = -11; +"@MMK_R_KO_n" = -27; +"@MMK_R_KO_nine" = 0; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -14; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period.ss01" = -135; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -24; +"@MMK_R_KO_seven" = 15; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -104; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -17; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -22; +}; +"@MMK_L_KO_quotesingle" = { +"@MMK_R_KO_A" = -97; +"@MMK_R_KO_H" = -5; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -81; +"@MMK_R_KO_O" = -2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 17; +"@MMK_R_KO_U" = 5; +"@MMK_R_KO_V" = 22; +"@MMK_R_KO_W" = 20; +"@MMK_R_KO_Y" = 8; +"@MMK_R_KO_Z" = -3; +"@MMK_R_KO_a" = -35; +"@MMK_R_KO_a.ss05" = -31; +"@MMK_R_KO_asterisk" = 13; +"@MMK_R_KO_colon" = -5; +"@MMK_R_KO_comma" = -109; +"@MMK_R_KO_comma.ss01" = -109; +"@MMK_R_KO_e" = -35; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eight" = 0; +"@MMK_R_KO_ellipsis" = -109; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = -7; +"@MMK_R_KO_four" = -61; +"@MMK_R_KO_g" = -33; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = -46; +"@MMK_R_KO_hyphen.case" = -27; +"@MMK_R_KO_i" = -7; +"@MMK_R_KO_j" = -7; +"@MMK_R_KO_n" = -30; +"@MMK_R_KO_nine" = 3; +"@MMK_R_KO_one" = 6; +"@MMK_R_KO_parenright" = -5; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -109; +"@MMK_R_KO_period.ss01" = -109; +"@MMK_R_KO_quotedbl" = 0; +"@MMK_R_KO_quotedblleft" = 2; +"@MMK_R_KO_quotedblleft.ss01" = -2; +"@MMK_R_KO_quoteright" = 5; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = -30; +"@MMK_R_KO_seven" = 24; +"@MMK_R_KO_six" = -2; +"@MMK_R_KO_slash" = -105; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = -2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = -20; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = -2; +"@MMK_R_KO_z" = -23; +}; +"@MMK_L_KO_r" = { +"@MMK_R_KO_A" = -52; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -70; +"@MMK_R_KO_O" = 25; +"@MMK_R_KO_S" = 14; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 14; +"@MMK_R_KO_V" = -23; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = -72; +"@MMK_R_KO_Y" = -41; +"@MMK_R_KO_Z" = -8; +"@MMK_R_KO_a" = 6; +"@MMK_R_KO_a.ss05" = 4; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -35; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = -82; +"@MMK_R_KO_comma.ss01" = -95; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eightsuperior" = 26; +"@MMK_R_KO_ellipsis" = -99; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 26; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 15; +"@MMK_R_KO_g" = 10; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 3; +"@MMK_R_KO_icircumflex" = 2; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_l.ss04" = 3; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_ninesuperior" = 0; +"@MMK_R_KO_period" = -83; +"@MMK_R_KO_period.ss01" = -100; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -7; +"@MMK_R_KO_quotedblleft" = 12; +"@MMK_R_KO_quotedblleft.ss01" = 0; +"@MMK_R_KO_quoteleft" = 12; +"@MMK_R_KO_quoteright" = -2; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 8; +"@MMK_R_KO_sevensuperior" = -32; +"@MMK_R_KO_six" = 25; +"@MMK_R_KO_sixsuperior" = 6; +"@MMK_R_KO_slash" = -60; +"@MMK_R_KO_t" = 26; +"@MMK_R_KO_threesuperior" = 28; +"@MMK_R_KO_trademark" = -56; +"@MMK_R_KO_u" = 16; +"@MMK_R_KO_underscore" = -78; +"@MMK_R_KO_v" = 38; +"@MMK_R_KO_w" = 33; +"@MMK_R_KO_x" = 7; +"@MMK_R_KO_y" = 26; +"@MMK_R_KO_z" = -4; +}; +"@MMK_L_KO_s" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_J" = 21; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -79; +"@MMK_R_KO_U" = -6; +"@MMK_R_KO_V" = -72; +"@MMK_R_KO_W" = -42; +"@MMK_R_KO_X" = -10; +"@MMK_R_KO_Y" = -118; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asciicircum" = -57; +"@MMK_R_KO_bracketright" = -16; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 15; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -28; +"@MMK_R_KO_ellipsis" = 6; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -35; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -34; +"@MMK_R_KO_onesuperior" = -79; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_period" = 11; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -37; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -48; +"@MMK_R_KO_quotedblleft" = -37; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -37; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_sevensuperior" = -82; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -41; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_trademark" = -87; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = -5; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -32; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_scaron" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 4; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = -79; +"@MMK_R_KO_V" = -29; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_bracketright" = -16; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 18; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -27; +"@MMK_R_KO_ellipsis" = 6; +"@MMK_R_KO_exclam" = 11; +"@MMK_R_KO_f" = -2; +"@MMK_R_KO_fivesuperior" = -34; +"@MMK_R_KO_foursuperior" = -22; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -31; +"@MMK_R_KO_guillemetright" = -16; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 2; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -33; +"@MMK_R_KO_onesuperior" = -61; +"@MMK_R_KO_parenright" = -50; +"@MMK_R_KO_period" = 12; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_question" = -37; +"@MMK_R_KO_question.ss01" = -46; +"@MMK_R_KO_quotedbl" = -48; +"@MMK_R_KO_quotedblleft" = -36; +"@MMK_R_KO_quotedblleft.ss01" = -25; +"@MMK_R_KO_quoteleft" = -36; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -21; +"@MMK_R_KO_s" = 14; +"@MMK_R_KO_sevensuperior" = -43; +"@MMK_R_KO_sixsuperior" = -39; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = -6; +"@MMK_R_KO_threesuperior" = -29; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = -25; +"@MMK_R_KO_w" = -15; +"@MMK_R_KO_x" = -13; +"@MMK_R_KO_y" = -31; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_seven" = { +"@MMK_R_KO_A" = -91; +"@MMK_R_KO_H" = 3; +"@MMK_R_KO_I.ss02" = 16; +"@MMK_R_KO_J" = -59; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 17; +"@MMK_R_KO_T" = 29; +"@MMK_R_KO_U" = 18; +"@MMK_R_KO_V" = 36; +"@MMK_R_KO_W" = 39; +"@MMK_R_KO_Y" = 27; +"@MMK_R_KO_Z" = 6; +"@MMK_R_KO_a" = -41; +"@MMK_R_KO_a.ss05" = -37; +"@MMK_R_KO_asterisk" = 31; +"@MMK_R_KO_colon" = -2; +"@MMK_R_KO_comma" = -105; +"@MMK_R_KO_comma.ss01" = -114; +"@MMK_R_KO_e" = -44; +"@MMK_R_KO_egrave" = -22; +"@MMK_R_KO_eight" = 10; +"@MMK_R_KO_ellipsis" = -121; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 4; +"@MMK_R_KO_four" = -60; +"@MMK_R_KO_g" = -36; +"@MMK_R_KO_guillemetleft" = -71; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -70; +"@MMK_R_KO_hyphen.case" = -36; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = -15; +"@MMK_R_KO_nine" = 22; +"@MMK_R_KO_one" = 18; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 21; +"@MMK_R_KO_period" = -106; +"@MMK_R_KO_period.ss01" = -115; +"@MMK_R_KO_quotedbl" = 18; +"@MMK_R_KO_quotedblleft" = 21; +"@MMK_R_KO_quotedblleft.ss01" = 6; +"@MMK_R_KO_quoteright" = 18; +"@MMK_R_KO_quoteright.ss01" = 11; +"@MMK_R_KO_s" = -34; +"@MMK_R_KO_seven" = 37; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_slash" = -97; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 8; +"@MMK_R_KO_two" = 22; +"@MMK_R_KO_u" = -7; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -13; +}; +"@MMK_L_KO_six" = { +"@MMK_R_KO_A" = -3; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 8; +"@MMK_R_KO_J" = 11; +"@MMK_R_KO_O" = 9; +"@MMK_R_KO_S" = 21; +"@MMK_R_KO_T" = -6; +"@MMK_R_KO_U" = 3; +"@MMK_R_KO_V" = -31; +"@MMK_R_KO_W" = -14; +"@MMK_R_KO_Y" = -53; +"@MMK_R_KO_Z" = 16; +"@MMK_R_KO_a" = 10; +"@MMK_R_KO_a.ss05" = 12; +"@MMK_R_KO_asterisk" = -2; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -7; +"@MMK_R_KO_e" = 9; +"@MMK_R_KO_egrave" = 9; +"@MMK_R_KO_eight" = 28; +"@MMK_R_KO_ellipsis" = -2; +"@MMK_R_KO_f" = 2; +"@MMK_R_KO_five" = 13; +"@MMK_R_KO_four" = 30; +"@MMK_R_KO_g" = 7; +"@MMK_R_KO_guillemetleft" = -12; +"@MMK_R_KO_guillemetright" = -2; +"@MMK_R_KO_hyphen" = 20; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 2; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 2; +"@MMK_R_KO_nine" = 10; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -51; +"@MMK_R_KO_parenright.case" = -24; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -8; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteright" = -30; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 11; +"@MMK_R_KO_slash" = -5; +"@MMK_R_KO_t" = 2; +"@MMK_R_KO_three" = 26; +"@MMK_R_KO_two" = 13; +"@MMK_R_KO_u" = 11; +"@MMK_R_KO_v" = 4; +"@MMK_R_KO_w" = 2; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = 5; +}; +"@MMK_L_KO_slash" = { +"@MMK_R_KO_A" = -87; +"@MMK_R_KO_H" = 31; +"@MMK_R_KO_I.ss02" = 57; +"@MMK_R_KO_J" = -44; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 8; +"@MMK_R_KO_T" = 74; +"@MMK_R_KO_U" = 46; +"@MMK_R_KO_V" = 50; +"@MMK_R_KO_W" = 57; +"@MMK_R_KO_Y" = 42; +"@MMK_R_KO_Z" = 43; +"@MMK_R_KO_a" = -34; +"@MMK_R_KO_a.ss05" = -13; +"@MMK_R_KO_asterisk" = 37; +"@MMK_R_KO_colon" = -15; +"@MMK_R_KO_comma" = -111; +"@MMK_R_KO_comma.ss01" = -112; +"@MMK_R_KO_e" = -36; +"@MMK_R_KO_egrave" = -26; +"@MMK_R_KO_eight" = 2; +"@MMK_R_KO_ellipsis" = -118; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 23; +"@MMK_R_KO_four" = -44; +"@MMK_R_KO_g" = -31; +"@MMK_R_KO_guillemetleft" = -68; +"@MMK_R_KO_guillemetright" = -15; +"@MMK_R_KO_hyphen" = -56; +"@MMK_R_KO_hyphen.case" = -30; +"@MMK_R_KO_i" = 29; +"@MMK_R_KO_j" = 18; +"@MMK_R_KO_n" = -24; +"@MMK_R_KO_nine" = 13; +"@MMK_R_KO_one" = 26; +"@MMK_R_KO_parenright" = 0; +"@MMK_R_KO_parenright.case" = 0; +"@MMK_R_KO_period" = -113; +"@MMK_R_KO_period.ss01" = -115; +"@MMK_R_KO_quotedbl" = 50; +"@MMK_R_KO_quotedblleft" = 11; +"@MMK_R_KO_quotedblleft.ss01" = 8; +"@MMK_R_KO_quoteright" = 33; +"@MMK_R_KO_quoteright.ss01" = 43; +"@MMK_R_KO_s" = -27; +"@MMK_R_KO_seven" = 65; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_slash" = -110; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 6; +"@MMK_R_KO_u" = -13; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = -19; +}; +"@MMK_L_KO_t" = { +"@MMK_R_KO_A" = 6; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 3; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -33; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_X" = 0; +"@MMK_R_KO_Y" = -62; +"@MMK_R_KO_Z" = 3; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -27; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 18; +"@MMK_R_KO_comma" = 18; +"@MMK_R_KO_comma.ss01" = -13; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = -5; +"@MMK_R_KO_ellipsis" = -6; +"@MMK_R_KO_exclam" = 4; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -14; +"@MMK_R_KO_foursuperior" = -2; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -35; +"@MMK_R_KO_guillemetright" = -5; +"@MMK_R_KO_hyphen" = -12; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 18; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -13; +"@MMK_R_KO_onesuperior" = -32; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_period" = 17; +"@MMK_R_KO_period.ss01" = -18; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -2; +"@MMK_R_KO_quotedbl" = -22; +"@MMK_R_KO_quotedblleft" = -2; +"@MMK_R_KO_quotedblleft.ss01" = -13; +"@MMK_R_KO_quoteleft" = -2; +"@MMK_R_KO_quoteright" = -15; +"@MMK_R_KO_quoteright.ss01" = -12; +"@MMK_R_KO_s" = 3; +"@MMK_R_KO_sevensuperior" = -44; +"@MMK_R_KO_six" = 2; +"@MMK_R_KO_sixsuperior" = -9; +"@MMK_R_KO_slash" = 2; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -69; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 9; +"@MMK_R_KO_w" = 7; +"@MMK_R_KO_x" = 5; +"@MMK_R_KO_y" = 8; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_three" = { +"@MMK_R_KO_A" = 0; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 10; +"@MMK_R_KO_J" = 15; +"@MMK_R_KO_O" = 2; +"@MMK_R_KO_S" = 18; +"@MMK_R_KO_T" = -7; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -28; +"@MMK_R_KO_W" = -15; +"@MMK_R_KO_Y" = -46; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 3; +"@MMK_R_KO_a.ss05" = 13; +"@MMK_R_KO_asterisk" = -4; +"@MMK_R_KO_colon" = 16; +"@MMK_R_KO_comma" = 0; +"@MMK_R_KO_comma.ss01" = -2; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eight" = 24; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_f" = 0; +"@MMK_R_KO_five" = 10; +"@MMK_R_KO_four" = 22; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -21; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = 5; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 16; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -49; +"@MMK_R_KO_parenright.case" = -18; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -4; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -10; +"@MMK_R_KO_quoteright" = -24; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 15; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 3; +"@MMK_R_KO_slash" = -3; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_three" = 20; +"@MMK_R_KO_two" = 11; +"@MMK_R_KO_u" = 6; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 9; +}; +"@MMK_L_KO_two" = { +"@MMK_R_KO_A" = 20; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 17; +"@MMK_R_KO_J" = 20; +"@MMK_R_KO_O" = 8; +"@MMK_R_KO_S" = 6; +"@MMK_R_KO_T" = -11; +"@MMK_R_KO_U" = -3; +"@MMK_R_KO_V" = -34; +"@MMK_R_KO_W" = -18; +"@MMK_R_KO_Y" = -55; +"@MMK_R_KO_Z" = 18; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = 6; +"@MMK_R_KO_asterisk" = -5; +"@MMK_R_KO_colon" = 28; +"@MMK_R_KO_comma" = 35; +"@MMK_R_KO_comma.ss01" = 0; +"@MMK_R_KO_e" = -2; +"@MMK_R_KO_egrave" = -2; +"@MMK_R_KO_eight" = 6; +"@MMK_R_KO_ellipsis" = 2; +"@MMK_R_KO_f" = 6; +"@MMK_R_KO_five" = 0; +"@MMK_R_KO_four" = 0; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -34; +"@MMK_R_KO_guillemetright" = -4; +"@MMK_R_KO_hyphen" = -7; +"@MMK_R_KO_hyphen.case" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 52; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 9; +"@MMK_R_KO_one" = 0; +"@MMK_R_KO_parenright" = -26; +"@MMK_R_KO_parenright.case" = 6; +"@MMK_R_KO_period" = 35; +"@MMK_R_KO_period.ss01" = 0; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -5; +"@MMK_R_KO_quoteright" = -9; +"@MMK_R_KO_quoteright.ss01" = -5; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_seven" = 0; +"@MMK_R_KO_six" = 9; +"@MMK_R_KO_slash" = 14; +"@MMK_R_KO_t" = 5; +"@MMK_R_KO_three" = 0; +"@MMK_R_KO_two" = 13; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 0; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = 14; +}; +"@MMK_L_KO_v" = { +"@MMK_R_KO_A" = -74; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -55; +"@MMK_R_KO_O" = 19; +"@MMK_R_KO_S" = 13; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 15; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = -2; +"@MMK_R_KO_X" = -69; +"@MMK_R_KO_Y" = -39; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -9; +"@MMK_R_KO_a.ss05" = -9; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -43; +"@MMK_R_KO_colon" = 11; +"@MMK_R_KO_comma" = -68; +"@MMK_R_KO_comma.ss01" = -90; +"@MMK_R_KO_e" = -9; +"@MMK_R_KO_egrave" = -9; +"@MMK_R_KO_eightsuperior" = 2; +"@MMK_R_KO_ellipsis" = -90; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 32; +"@MMK_R_KO_fivesuperior" = 2; +"@MMK_R_KO_foursuperior" = 21; +"@MMK_R_KO_g" = -7; +"@MMK_R_KO_guillemetleft" = -41; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -20; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 2; +"@MMK_R_KO_ninesuperior" = -7; +"@MMK_R_KO_onesuperior" = -30; +"@MMK_R_KO_parenright" = -60; +"@MMK_R_KO_period" = -70; +"@MMK_R_KO_period.ss01" = -89; +"@MMK_R_KO_question" = 13; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -2; +"@MMK_R_KO_quotedblleft" = 20; +"@MMK_R_KO_quotedblleft.ss01" = 7; +"@MMK_R_KO_quoteleft" = 20; +"@MMK_R_KO_quoteright" = -22; +"@MMK_R_KO_quoteright.ss01" = -2; +"@MMK_R_KO_s" = -3; +"@MMK_R_KO_sevensuperior" = -39; +"@MMK_R_KO_six" = 20; +"@MMK_R_KO_sixsuperior" = 11; +"@MMK_R_KO_slash" = -81; +"@MMK_R_KO_t" = 32; +"@MMK_R_KO_threesuperior" = -7; +"@MMK_R_KO_trademark" = -46; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_underscore" = -84; +"@MMK_R_KO_v" = 32; +"@MMK_R_KO_w" = 27; +"@MMK_R_KO_x" = 2; +"@MMK_R_KO_y" = 30; +"@MMK_R_KO_z" = 2; +}; +"@MMK_L_KO_w" = { +"@MMK_R_KO_A" = -43; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = -28; +"@MMK_R_KO_O" = 17; +"@MMK_R_KO_S" = 20; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 10; +"@MMK_R_KO_V" = -20; +"@MMK_R_KO_W" = -3; +"@MMK_R_KO_X" = -50; +"@MMK_R_KO_Y" = -40; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 0; +"@MMK_R_KO_a.ss05" = -2; +"@MMK_R_KO_asciicircum" = -5; +"@MMK_R_KO_bracketright" = -33; +"@MMK_R_KO_colon" = 25; +"@MMK_R_KO_comma" = -31; +"@MMK_R_KO_comma.ss01" = -53; +"@MMK_R_KO_e" = 0; +"@MMK_R_KO_egrave" = 0; +"@MMK_R_KO_eightsuperior" = 3; +"@MMK_R_KO_ellipsis" = -51; +"@MMK_R_KO_exclam" = 5; +"@MMK_R_KO_f" = 27; +"@MMK_R_KO_fivesuperior" = 0; +"@MMK_R_KO_foursuperior" = 18; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -26; +"@MMK_R_KO_guillemetright" = 3; +"@MMK_R_KO_hyphen" = 0; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 0; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -5; +"@MMK_R_KO_onesuperior" = -31; +"@MMK_R_KO_parenright" = -55; +"@MMK_R_KO_period" = -36; +"@MMK_R_KO_period.ss01" = -55; +"@MMK_R_KO_question" = 8; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -3; +"@MMK_R_KO_quotedblleft" = 18; +"@MMK_R_KO_quotedblleft.ss01" = 2; +"@MMK_R_KO_quoteleft" = 18; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 0; +"@MMK_R_KO_sevensuperior" = -40; +"@MMK_R_KO_six" = 17; +"@MMK_R_KO_sixsuperior" = 11; +"@MMK_R_KO_slash" = -41; +"@MMK_R_KO_t" = 27; +"@MMK_R_KO_threesuperior" = 0; +"@MMK_R_KO_trademark" = -49; +"@MMK_R_KO_u" = 9; +"@MMK_R_KO_underscore" = -46; +"@MMK_R_KO_v" = 27; +"@MMK_R_KO_w" = 29; +"@MMK_R_KO_x" = 14; +"@MMK_R_KO_y" = 28; +"@MMK_R_KO_z" = 0; +}; +"@MMK_L_KO_x" = { +"@MMK_R_KO_A" = 25; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 3; +"@MMK_R_KO_J" = 22; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = 0; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -25; +"@MMK_R_KO_W" = -11; +"@MMK_R_KO_X" = 27; +"@MMK_R_KO_Y" = -48; +"@MMK_R_KO_Z" = 12; +"@MMK_R_KO_a" = -28; +"@MMK_R_KO_a.ss05" = -20; +"@MMK_R_KO_asciicircum" = -7; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 12; +"@MMK_R_KO_comma" = -2; +"@MMK_R_KO_comma.ss01" = -3; +"@MMK_R_KO_e" = -32; +"@MMK_R_KO_egrave" = -32; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = -10; +"@MMK_R_KO_exclam" = 0; +"@MMK_R_KO_f" = 8; +"@MMK_R_KO_fivesuperior" = -12; +"@MMK_R_KO_foursuperior" = 2; +"@MMK_R_KO_g" = -2; +"@MMK_R_KO_guillemetleft" = -65; +"@MMK_R_KO_guillemetright" = 0; +"@MMK_R_KO_hyphen" = -59; +"@MMK_R_KO_i" = -2; +"@MMK_R_KO_icircumflex" = -2; +"@MMK_R_KO_imacron" = -2; +"@MMK_R_KO_j" = 23; +"@MMK_R_KO_l.ss04" = -2; +"@MMK_R_KO_n" = -2; +"@MMK_R_KO_ninesuperior" = -21; +"@MMK_R_KO_onesuperior" = -35; +"@MMK_R_KO_parenright" = -34; +"@MMK_R_KO_period" = 0; +"@MMK_R_KO_period.ss01" = -5; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = 0; +"@MMK_R_KO_quotedbl" = -15; +"@MMK_R_KO_quotedblleft" = 0; +"@MMK_R_KO_quotedblleft.ss01" = -11; +"@MMK_R_KO_quoteleft" = 0; +"@MMK_R_KO_quoteright" = -34; +"@MMK_R_KO_quoteright.ss01" = -19; +"@MMK_R_KO_s" = -15; +"@MMK_R_KO_sevensuperior" = -49; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -4; +"@MMK_R_KO_slash" = 10; +"@MMK_R_KO_t" = 8; +"@MMK_R_KO_threesuperior" = -24; +"@MMK_R_KO_trademark" = -57; +"@MMK_R_KO_u" = -5; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 14; +"@MMK_R_KO_x" = 19; +"@MMK_R_KO_y" = 14; +"@MMK_R_KO_z" = 6; +}; +"@MMK_L_KO_z" = { +"@MMK_R_KO_A" = 15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -8; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = -36; +"@MMK_R_KO_W" = -17; +"@MMK_R_KO_X" = 8; +"@MMK_R_KO_Y" = -64; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_asciicircum" = -32; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -9; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -16; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -39; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_icircumflex" = 0; +"@MMK_R_KO_imacron" = 0; +"@MMK_R_KO_j" = 24; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -34; +"@MMK_R_KO_parenright" = -43; +"@MMK_R_KO_period" = 26; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -24; +"@MMK_R_KO_quotedblleft" = -7; +"@MMK_R_KO_quotedblleft.ss01" = -17; +"@MMK_R_KO_quoteleft" = -7; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -14; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -46; +"@MMK_R_KO_six" = 0; +"@MMK_R_KO_sixsuperior" = -12; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_trademark" = -74; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_underscore" = 0; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_zcaron" = { +"@MMK_R_KO_A" = 15; +"@MMK_R_KO_H" = 0; +"@MMK_R_KO_I.ss02" = 0; +"@MMK_R_KO_J" = 10; +"@MMK_R_KO_O" = 0; +"@MMK_R_KO_S" = 0; +"@MMK_R_KO_T" = -5; +"@MMK_R_KO_U" = 0; +"@MMK_R_KO_V" = 0; +"@MMK_R_KO_W" = 0; +"@MMK_R_KO_X" = 9; +"@MMK_R_KO_Y" = -2; +"@MMK_R_KO_Z" = 8; +"@MMK_R_KO_a" = -2; +"@MMK_R_KO_a.ss05" = 0; +"@MMK_R_KO_bracketright" = 0; +"@MMK_R_KO_colon" = 23; +"@MMK_R_KO_comma" = 24; +"@MMK_R_KO_comma.ss01" = -10; +"@MMK_R_KO_e" = -4; +"@MMK_R_KO_egrave" = -4; +"@MMK_R_KO_eightsuperior" = -7; +"@MMK_R_KO_ellipsis" = 0; +"@MMK_R_KO_exclam" = 9; +"@MMK_R_KO_f" = 5; +"@MMK_R_KO_fivesuperior" = -15; +"@MMK_R_KO_foursuperior" = -4; +"@MMK_R_KO_g" = 0; +"@MMK_R_KO_guillemetleft" = -38; +"@MMK_R_KO_guillemetright" = -3; +"@MMK_R_KO_hyphen" = -14; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_imacron" = 6; +"@MMK_R_KO_j" = 27; +"@MMK_R_KO_l.ss04" = 0; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_ninesuperior" = -15; +"@MMK_R_KO_onesuperior" = -33; +"@MMK_R_KO_parenright" = -38; +"@MMK_R_KO_period" = 26; +"@MMK_R_KO_period.ss01" = -13; +"@MMK_R_KO_question" = 0; +"@MMK_R_KO_question.ss01" = -3; +"@MMK_R_KO_quotedbl" = -16; +"@MMK_R_KO_quotedblleft" = -4; +"@MMK_R_KO_quotedblleft.ss01" = -12; +"@MMK_R_KO_quoteleft" = -4; +"@MMK_R_KO_quoteright" = -17; +"@MMK_R_KO_quoteright.ss01" = -10; +"@MMK_R_KO_s" = 5; +"@MMK_R_KO_sevensuperior" = -38; +"@MMK_R_KO_sixsuperior" = -11; +"@MMK_R_KO_slash" = 0; +"@MMK_R_KO_t" = 0; +"@MMK_R_KO_threesuperior" = -9; +"@MMK_R_KO_u" = 0; +"@MMK_R_KO_v" = 6; +"@MMK_R_KO_w" = 4; +"@MMK_R_KO_x" = 8; +"@MMK_R_KO_y" = 4; +"@MMK_R_KO_z" = 8; +}; +"@MMK_L_KO_zero" = { +"@MMK_R_KO_A" = -20; +"@MMK_R_KO_H" = -2; +"@MMK_R_KO_I.ss02" = -8; +"@MMK_R_KO_J" = 0; +"@MMK_R_KO_O" = 22; +"@MMK_R_KO_S" = 10; +"@MMK_R_KO_T" = -26; +"@MMK_R_KO_U" = 11; +"@MMK_R_KO_V" = -40; +"@MMK_R_KO_W" = -23; +"@MMK_R_KO_Y" = -74; +"@MMK_R_KO_Z" = 0; +"@MMK_R_KO_a" = 23; +"@MMK_R_KO_a.ss05" = 14; +"@MMK_R_KO_asterisk" = -22; +"@MMK_R_KO_colon" = 7; +"@MMK_R_KO_comma" = -12; +"@MMK_R_KO_comma.ss01" = -22; +"@MMK_R_KO_e" = 20; +"@MMK_R_KO_egrave" = 20; +"@MMK_R_KO_eight" = 18; +"@MMK_R_KO_ellipsis" = -22; +"@MMK_R_KO_f" = 17; +"@MMK_R_KO_five" = 19; +"@MMK_R_KO_four" = 31; +"@MMK_R_KO_g" = 22; +"@MMK_R_KO_guillemetleft" = -2; +"@MMK_R_KO_guillemetright" = -20; +"@MMK_R_KO_hyphen" = 22; +"@MMK_R_KO_hyphen.case" = 19; +"@MMK_R_KO_i" = 0; +"@MMK_R_KO_j" = 2; +"@MMK_R_KO_n" = 0; +"@MMK_R_KO_nine" = 11; +"@MMK_R_KO_one" = -2; +"@MMK_R_KO_parenright" = -62; +"@MMK_R_KO_parenright.case" = -35; +"@MMK_R_KO_period" = -13; +"@MMK_R_KO_period.ss01" = -23; +"@MMK_R_KO_quotedbl" = -26; +"@MMK_R_KO_quotedblleft" = -8; +"@MMK_R_KO_quotedblleft.ss01" = -4; +"@MMK_R_KO_quoteright" = 0; +"@MMK_R_KO_quoteright.ss01" = 0; +"@MMK_R_KO_s" = 13; +"@MMK_R_KO_seven" = -4; +"@MMK_R_KO_six" = 26; +"@MMK_R_KO_slash" = -21; +"@MMK_R_KO_t" = 14; +"@MMK_R_KO_three" = 2; +"@MMK_R_KO_two" = 0; +"@MMK_R_KO_u" = 14; +"@MMK_R_KO_v" = 0; +"@MMK_R_KO_w" = 5; +"@MMK_R_KO_y" = 0; +"@MMK_R_KO_z" = 0; +}; +A = { +Dcroat = -23; +Tbar = -77; +asciitilde = -62; +asterisk = -110; +backslash = -104; +g.ss06 = 13; +minus = -63; +one = -77; +ordmasculine = -103; +plus = -56; +quotedbl = -105; +registered = -90; +seven = -84; +two = 5; +twosuperior = -73; +}; +Aacute = { +Tbar = -77; +}; +Abrevedotbelow.ss01 = { +T = -97; +}; +Aogonek = { +comma = 40; +parenright = 33; +}; +Atilde = { +ordfeminine = -102; +}; +B = { +Hbar = 34; +hbar = 14; +idieresis = 43; +itilde = 25; +}; +C = { +h = 0; +l = 0; +plus = 0; +three = 21; +}; +D = { +Lslash = 28; +Oslash = 26; +braceright = -30; +bracketright.case = -11; +}; +E = { +H = 0; +idieresis = 95; +}; +Eogonek = { +comma = 32; +}; +F = { +fourinferior = -51; +i = 2; +igrave = 39; +}; +G = { +Lslash = 29; +lslash = 15; +}; +Germandbls = { +S = 19; +}; +H = { +H = 0; +O = 0; +T = 0; +V = 0; +ampersand = 0; +colon.ss01 = -4; +endash = 0; +exclam = 0; +hyphen = 0; +igrave = 13; +itilde = 47; +n = 0; +o = 0; +s = 0; +x = 0; +}; +Hbar = { +B = 24; +D = 25; +E = 25; +H = 25; +Hbar = 87; +I = 25; +L = 25; +M = 25; +O = 36; +R = 25; +S = 49; +U = 39; +W = 56; +i = 25; +}; +I = { +Hbar = 26; +I = 0; +jcircumflex = 79; +}; +Icircumflex = { +Icircumflex = 118; +l.ss04 = 16; +}; +Imacron = { +Imacron = 129; +}; +Itilde = { +itilde = 48; +}; +J = { +Hbar = 33; +itilde = 55; +}; +Jacute = { +Imacron = 68; +}; +K = { +asciitilde = -111; +four = -37; +idieresis = 70; +igrave = 34; +itilde = 45; +less = -67; +logicalnot = -177; +minus = -117; +one = -43; +oslash = -2; +plus = -101; +}; +L = { +H = 0; +Tbar = -63; +asciitilde = -33; +asterisk = -143; +backslash = -99; +equal = 0; +four = 0; +less = 0; +logicalnot = -125; +minus = -43; +one = -81; +ordfeminine = -193; +ordmasculine = -192; +oslash = -7; +periodcentered.loclCAT.case = 0; +periodcentered.loclCAT.case.ss01 = 0; +plus = -33; +quotedbl = -196; +quoteleft.ss01 = -134; +quoteright = -133; +quoteright.ss01 = -134; +registered = -123; +seven = -88; +twosuperior = -191; +}; +Lcaron = { +A = 29; +O = -27; +U = -14; +Uacute = -14; +V = -21; +a = -6; +hyphen = 0; +hyphen.case = -102; +u = -2; +v = -57; +}; +Lcommaaccent = { +twosuperior = -191; +}; +Lslash = { +twosuperior = -111; +}; +M = { +Hbar = 26; +idieresis = 72; +igrave = 13; +itilde = 47; +}; +N = { +Hbar = 26; +idieresis = 72; +igrave = 13; +itilde = 47; +}; +O = { +Dcroat = 20; +Lslash = 29; +braceright = -33; +bracketright.case = -6; +itilde = 4; +}; +Oslash = { +T = 0; +V = 8; +Y = 0; +parenright = 0; +parenright.case = 24; +}; +P = { +fourinferior = -77; +idieresis = 47; +itilde = 28; +two = 9; +}; +R = { +Hbar = 40; +jcircumflex = 81; +two = 20; +}; +S = { +Hbar = 27; +Lslash = 26; +dollar = 8; +four = 32; +idieresis = 27; +itilde = 11; +lslash = 18; +three = 25; +}; +T = { +Oslash = -3; +a.ss05 = -37; +aacute.ss05 = -37; +abreve = -45; +abreveacute = -45; +acircumflex = -37; +acircumflexacute = -45; +acircumflexdotbelow = -37; +adieresis = -38; +adotbelow.ss05 = -37; +ae = -37; +agrave = -45; +amacron = -44; +ampersand = -28; +aring = -45; +asciitilde = -56; +atilde = -45; +equal = 0; +four = -84; +g.ss06 = -36; +h = 0; +i.ss01 = 0; +iacute = -12; +idieresis = 114; +idotless = -12; +igrave = 42; +itilde = 88; +less = 0; +logicalnot = -149; +minus = -11; +ograve = -50; +plus = -5; +racute = -13; +scaron = -10; +seven = 36; +twoinferior = -106; +udieresis = -2; +udieresis.ss01 = -3; +ugrave = -3; +uhorngrave = -3; +umacron = -3; +ycircumflex = 0; +ygrave = 0; +yhookabove = 0; +zcaron = -6; +zeroinferior = -105; +}; +Tbar = { +A = -68; +Aacute = -68; +Tbar = 36; +a = -29; +comma = -82; +e = -28; +o = -28; +period = -86; +slash = -73; +}; +Tcaron = { +a.ss05 = -37; +}; +Tcedilla = { +a.ss05 = -37; +abreve = -45; +four = -84; +}; +Tcommaaccent = { +a.ss05 = -37; +abreve = -45; +four = -84; +}; +Thorn = { +A = -29; +AE = -29; +Aacute = -29; +J = -16; +O = 30; +Oacute = 30; +V = -50; +Y = -87; +Yacute = -87; +a = 23; +aacute = 23; +e = 25; +o = 25; +oacute = 25; +period = -32; +}; +U = { +Hbar = 36; +jcircumflex = 91; +}; +V = { +four = -64; +iacute = -30; +ibreve = 69; +idieresis = 113; +igrave = 63; +itilde = 72; +minus = -55; +plus = -39; +scaron = -3; +seven = 34; +twoinferior = -79; +}; +W = { +Hbar = 54; +backslash = 58; +idieresis = 113; +igrave = 59; +itilde = 80; +}; +X = { +asciitilde = -110; +four = -37; +less = -59; +logicalnot = -168; +minus = -101; +notequal = -103; +one = -33; +plus = -88; +}; +Y = { +a.ss05 = -88; +agrave = -80; +amacron = -57; +ampersand = -51; +asciitilde = -101; +at = -54; +four = -107; +g.ss06 = -90; +igrave = 47; +less = -45; +logicalnot = -147; +minus = -82; +ograve = -67; +plus = -72; +scaron = -4; +twoinferior = -132; +}; +Z = { +four = 0; +ibreve = 42; +igrave = 29; +itilde = 66; +minus = -14; +plus = -5; +}; +_B.currency = { +_baht.bar = -14; +}; +a = { +braceright = -5; +}; +a.ss05 = { +g.ss06 = 16; +}; +acircumflexacute.ss05 = { +y = -22; +}; +adieresis.ss05 = { +germandbls = -10; +}; +ampersand = { +V = -92; +W = -56; +Y = -132; +quotedbl = -70; +quotedblleft = -64; +}; +aogonek = { +j = 26; +parenright = 0; +}; +aogonek.ss05 = { +parenright = 24; +}; +approxequal = { +parenright = -103; +parenright.case = -83; +}; +asciicircum = { +J = -106; +X = -99; +Y = -82; +bracketright = -80; +comma = -133; +comma.ss01 = -134; +four = -61; +hyphen = -71; +parenright = -112; +parenright.case = -93; +period = -132; +period.ss01 = -135; +slash = -124; +}; +asciitilde = { +I.ss02 = -94; +J = -98; +V = -111; +W = -83; +X = -160; +Y = -149; +Z = -96; +bracketright = -133; +bracketright.case = -135; +comma = -127; +comma.ss01 = -127; +eight = -60; +exclam = -75; +four = -55; +one = -53; +parenright = -162; +parenright.case = -142; +period = -129; +period.ss01 = -128; +question = -68; +quotedbl = -90; +quotedblright = -61; +seven = -58; +slash = -130; +three = -71; +two = -63; +}; +at = { +T = -33; +parenright = -74; +}; +b = { +asterisk = -71; +braceright = -33; +lslash = 13; +one = -25; +}; +backslash = { +T = -97; +V = -131; +Y = -144; +asterisk = -115; +backslash = -129; +quotedbl = -110; +quotedblleft = -101; +quotedblleft.ss01 = -98; +quotedblright = -98; +quotedblright.ss01 = -97; +quoteleft = -101; +quoteright = -98; +quotesingle = -109; +}; +baht = { +parenright = -60; +}; +braceleft = { +p = 0; +}; +bracketleft = { +asciicircum = -64; +asciitilde = -82; +bracketright = 50; +jcircumflex = 124; +p = 4; +pi = -32; +plus = -67; +x = 0; +}; +c = { +asterisk = -72; +braceright = -35; +}; +cent = { +parenright = -79; +}; +colon = { +T = -14; +Y = -72; +four = 0; +one = 11; +parenright = -40; +two = 19; +zero = 28; +}; +colon.ss01 = { +T = -8; +four = 0; +parenright = -47; +}; +comma = { +eightsuperior = -133; +fivesuperior = -133; +foursuperior = -133; +ninesuperior = -133; +onesuperior = -133; +quoteleft = -133; +quotesingle = -109; +sevensuperior = -133; +sixsuperior = -133; +threesuperior = -133; +twosuperior = -133; +}; +comma.ss01 = { +eightsuperior = -134; +fivesuperior = -134; +foursuperior = -134; +ninesuperior = -134; +onesuperior = -134; +sevensuperior = -134; +sixsuperior = -134; +threesuperior = -134; +twosuperior = -134; +}; +copyright = { +Y = -105; +parenright = -88; +}; +d = { +idieresis = 39; +igrave = 0; +itilde = 9; +}; +dcaron = { +C = 116; +H = 178; +bracketright = 173; +eightsuperior = 182; +exclam = 181; +exclam.ss01 = 183; +fivesuperior = 177; +foursuperior = 117; +h = 172; +i = 142; +j = 147; +k = 172; +l = 172; +l.ss03 = 153; +l.ss04 = 175; +ninesuperior = 188; +onesuperior = 190; +parenright = 131; +question = 156; +question.ss01 = 155; +quotedbl = 196; +quotedblleft = 152; +quotedblleft.ss01 = 155; +quoteleft = 152; +quoteleft.ss01 = 155; +quotesingle = 196; +sevensuperior = 204; +sixsuperior = 172; +t = 86; +t_i.liga = 86; +t_t.liga = 86; +threesuperior = 133; +twosuperior = 155; +zcaron = 103; +}; +dcroat = { +i = 0; +igrave = 5; +itilde = 25; +}; +degree = { +J = -88; +comma = -133; +comma.ss01 = -134; +emdash = -57; +endash = -52; +four = -62; +hyphen = -52; +parenright = -55; +parenright.case = -37; +period = -132; +period.ss01 = -135; +slash = -104; +}; +divide = { +parenright = -99; +}; +dollar = { +parenright = -66; +three = 18; +}; +e = { +asterisk = -87; +backslash = -67; +braceright = -34; +germandbls = -13; +one = -32; +seven = -37; +}; +ecircumflexacute = { +t = -12; +}; +eight = { +bracketright = 0; +degree = -13; +}; +eight.dnom = { +degree = -155; +question.ss01 = -103; +quotedbl = -115; +quotedblleft = -111; +quotedblright = -78; +}; +eightsuperior = { +comma = -133; +comma.ss01 = -134; +period = -132; +period.ss01 = -135; +slash = -87; +}; +ellipsis = { +Tbar = -114; +bracketright = -2; +eightsuperior = -222; +fivesuperior = -220; +foursuperior = -216; +ninesuperior = -228; +onesuperior = -154; +parenleft = -28; +parenleft.case = -49; +question = -103; +quoteleft = -133; +quoteright = -133; +quotesingle = -109; +sevensuperior = -200; +sixsuperior = -228; +threesuperior = -217; +twosuperior = -213; +}; +ellipsis.ss01 = { +Tbar = -109; +bracketright = 0; +eightsuperior = -222; +fivesuperior = -220; +foursuperior = -216; +ninesuperior = -228; +onesuperior = -154; +question.ss01 = -128; +quoteleft.ss01 = -134; +quoteright.ss01 = -134; +quotesingle = -109; +sevensuperior = -200; +sixsuperior = -228; +threesuperior = -217; +twosuperior = -213; +}; +emdash = { +foursuperior = -61; +question = -109; +}; +emdash.case = { +X = -103; +quotedblbase = -162; +quotedblbase.ss01 = -137; +}; +endash = { +X = -56; +endash = 0; +foursuperior = -49; +question = -102; +}; +endash.case = { +H = 0; +X = -103; +quotedblbase = -162; +quotedblbase.ss01 = -137; +}; +eng = { +bracketright = 9; +}; +eogonek = { +lslash = 12; +}; +equal = { +T = 0; +equal = 0; +parenright = -79; +parenright.case = -60; +}; +eth = { +a = 16; +e = 15; +g = 13; +hyphen = 20; +parenright = -34; +}; +euro = { +parenright = -75; +parenright.case = -47; +}; +exclamdown = { +T = -21; +V = -43; +Y = -80; +}; +f = { +igrave = 10; +n = 0; +o = 8; +}; +f_f.liga = { +igrave = 10; +}; +f_f_i.liga = { +idieresis = 24; +}; +fi = { +idieresis = 24; +}; +five = { +degree = -30; +ordmasculine = -22; +percent = -19; +}; +five.dnom = { +degree = -116; +question.ss01 = -104; +quotedblleft = -72; +}; +five.numr = { +fraction = -10; +}; +fiveinferior = { +T = -105; +}; +fivesuperior = { +comma = -133; +comma.ss01 = -134; +period = -132; +period.ss01 = -135; +slash = -87; +}; +fl = { +idieresis = 39; +itilde = 10; +periodcentered.loclCAT = 29; +}; +four = { +asciicircum = -78; +bracketright = -16; +bracketright.case = 0; +degree = -59; +ordfeminine = -49; +ordmasculine = -49; +percent = -43; +x = -30; +}; +four.dnom = { +degree = -123; +question.ss01 = -107; +quotedblleft = -80; +}; +fourinferior = { +T = -108; +V = -96; +}; +foursuperior = { +comma = -133; +comma.ss01 = -134; +period = -132; +period.ss01 = -135; +slash = -88; +}; +fraction = { +eight.dnom = -9; +four.dnom = -55; +fourinferior = -54; +seveninferior = 40; +two.dnom = -5; +zero.dnom = -6; +}; +g = { +bracketright = 0; +j = 15; +j.ss01 = 15; +parenright = -30; +slash = 6; +}; +g.ss06 = { +g.ss06 = 18; +}; +gcaron.ss06 = { +gcaron.ss06 = 18; +}; +gdotaccent = { +j = 15; +}; +gdotaccent.ss06 = { +gdotaccent.ss06 = 18; +}; +germandbls = { +e = 3; +hyphen = 7; +parenright = -54; +}; +greater = { +T = 0; +parenright = -72; +}; +greaterequal = { +T = -35; +}; +guillemetleft = { +pi = -7; +}; +guillemetright = { +X = -82; +bracketright = -67; +}; +guilsinglright = { +X = -82; +}; +h = { +asterisk = -61; +}; +hyphen = { +Lslash = 24; +X = -55; +bracketright = -60; +foursuperior = -51; +pi = 0; +question = -102; +quotedblbase = -22; +quoteleft = -56; +quotesingle = -63; +x = -52; +}; +hyphen.case = { +Dcroat = 0; +X = -103; +bracketright.case = -62; +quotedblbase = -162; +quotedblbase.ss01 = -145; +quotesinglbase = -133; +}; +i = { +T = 0; +idieresis = 24; +jcircumflex = 45; +parenright = -26; +}; +i.ss01 = { +parenright = -27; +}; +iacute = { +rcaron = 0; +}; +icircumflex = { +b = 25; +h = 26; +i = 24; +icircumflex = 118; +j = 35; +k = 26; +l = 26; +l.ss03 = 34; +l.ss04 = 73; +question = 84; +quotedbl = 63; +quoteright = 60; +quotesingle = 64; +}; +idieresis = { +b = 49; +idieresis = 121; +k = 49; +l = 49; +l.ss03 = 58; +l.ss04 = 87; +}; +idotaccent = { +parenright = -26; +}; +idotaccent.ss01 = { +parenright = -27; +}; +imacron = { +b = 11; +imacron = 78; +j = 50; +k = 12; +kcommaaccent = 12; +l = 12; +l.ss04 = 48; +lcommaaccent = 12; +quotedbl = 64; +}; +infinity = { +parenright = -78; +parenright.case = -54; +}; +integral = { +a = -50; +}; +iogonek = { +j = 37; +}; +itilde = { +h = 5; +itilde = 28; +quotedbl = 54; +quotesingle = 54; +}; +j = { +j = 19; +}; +jacute = { +backslash = 65; +iogonek = 2; +}; +jcircumflex = { +i = 24; +jcircumflex = 126; +}; +k = { +oslash = -14; +}; +l = { +at = 0; +idieresis = 39; +igrave = 0; +itilde = 10; +jcircumflex = 43; +l = 0; +n = 0; +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -6; +}; +l.ss03 = { +periodcentered.loclCAT = 0; +periodcentered.loclCAT.ss01 = -32; +}; +l.ss04 = { +periodcentered.loclCAT = 29; +periodcentered.loclCAT.ss01 = -6; +}; +lcaron = { +exclam.ss01 = 183; +l = 172; +ncaron = 64; +scaron = 83; +twosuperior = 155; +}; +lcaron.ss03 = { +b = 117; +eightsuperior = 141; +exclam = 140; +exclam.ss01 = 143; +fivesuperior = 136; +k = 118; +ninesuperior = 147; +onesuperior = 149; +question = 115; +quotedbl = 155; +quotesingle = 155; +sevensuperior = 163; +sixsuperior = 131; +}; +lcaron.ss04 = { +exclam.ss01 = 183; +twosuperior = 155; +}; +liraTurkish = { +one = -79; +parenright = -78; +question = -103; +quotedbl = -72; +quotesingle = -72; +seven = -96; +}; +logicalnot = { +Y = -176; +parenright = -131; +seven = -70; +}; +m = { +asterisk = -60; +braceright = 0; +twosuperior = -19; +}; +minus = { +T = -55; +X = -94; +comma = -60; +one = 0; +parenright = -112; +parenright.case = -93; +period = -61; +seven = 0; +three = 0; +two = -5; +}; +mu = { +mu = -15; +parenright = -50; +quotesingle = -38; +}; +multiply = { +parenright = -89; +parenright.case = -74; +}; +n = { +asterisk = -61; +at = 2; +braceright = 0; +degree = -77; +g.ss06 = 6; +n = 0; +one = -23; +ordmasculine = -58; +}; +ncaron = { +Yacute = -29; +}; +nine = { +bracketright = -25; +degree = -31; +}; +nine.dnom = { +degree = -171; +question = -95; +question.ss01 = -103; +quotedbl = -131; +quotedblleft = -127; +quotedblleft.ss01 = -80; +quotedblright = -94; +quotedblright.ss01 = -81; +}; +ninesuperior = { +comma = -133; +comma.ss01 = -134; +fraction = -6; +period = -132; +period.ss01 = -135; +slash = -92; +}; +notequal = { +parenright = -111; +parenright.case = -91; +}; +numbersign = { +parenright = -50; +}; +o = { +asterisk = -83; +backslash = -65; +braceright = -35; +germandbls = -12; +lslash = 14; +n = 0; +one = -30; +}; +oacute = { +lslash = 14; +}; +ocircumflexacute = { +bracketright = 32; +parenright = 18; +}; +odieresis = { +germandbls = -12; +}; +ohorn = { +i = 7; +m = 7; +n = 7; +parenright = -34; +}; +ohornacute = { +c = 19; +i = 7; +m = 7; +n = 7; +p = 7; +t = 27; +t_i.liga = 27; +t_t.liga = 27; +}; +ohorndotbelow = { +c = 19; +i = 7; +n = 7; +p = 7; +t = 27; +t_i.liga = 27; +t_t.liga = 27; +u = 19; +}; +ohorngrave = { +i = 7; +n = 7; +parenright = -34; +}; +ohornhookabove = { +i = 7; +n = 7; +}; +ohorntilde = { +i = 7; +n = 7; +}; +ohungarumlaut = { +parenright = -17; +}; +one = { +comma.ss01 = -21; +degree = -16; +equal = 0; +four = 0; +icircumflex = 77; +nine = 0; +one = 0; +parenright = -18; +percent = 0; +period.ss01 = -24; +seven = 0; +three = 0; +two = 0; +zero = 0; +}; +one.dnom = { +degree = -113; +one.dnom = 0; +question.ss01 = -111; +two.dnom = 0; +zero.dnom = 0; +}; +one.numr = { +fraction = 0; +}; +oneinferior = { +oneinferior = 0; +twoinferior = 0; +zeroinferior = 0; +}; +onesuperior = { +comma = -133; +comma.ss01 = -134; +period = -132; +period.ss01 = -135; +slash = -88; +}; +ordfeminine = { +comma = -133; +comma.ss01 = -134; +period = -132; +period.ss01 = -135; +}; +ordmasculine = { +comma = -133; +comma.ss01 = -134; +hyphen = -40; +parenright = -47; +period = -132; +period.ss01 = -135; +slash = -97; +}; +oslash = { +d = 12; +e = 12; +g = 10; +hyphen = 18; +parenright = -44; +y = -9; +}; +p = { +asterisk = -71; +backslash = -61; +braceright = -33; +lslash = 13; +one = -25; +}; +parenleft = { +Dcroat = -25; +H = -2; +Icircumflex = 75; +Oslash = -32; +ampersand = -54; +approxequal = -108; +asciicircum = -101; +asciitilde = -112; +at = -64; +cent = -70; +copyright = -65; +degree = -30; +divide = -93; +dollar = -43; +equal = -74; +euro = -68; +greaterequal = -66; +i = 0; +idotaccent = 0; +infinity = -62; +iogonek = 16; +jcircumflex = 68; +less = -66; +literSign = -61; +logicalnot = -120; +minus = -109; +mu = -26; +multiply = -86; +notequal = -104; +numbersign = -44; +oslash = -30; +p = 0; +parenleft = -38; +pi = -50; +plus = -93; +plusminus = -73; +published = -65; +question = -32; +quotedblbase = 0; +quoteleft = -26; +radical = -61; +scaron = 0; +section = -33; +sterling = -48; +x = -38; +}; +parenleft.case = { +Icircumflex = 66; +approxequal = -88; +asciicircum = -101; +asciitilde = -92; +dollar = -39; +equal = -60; +euro = -54; +minus = -92; +numbersign = -32; +parenleft.case = -32; +plus = -78; +question = -30; +quotedblbase = 0; +quoteleft = -31; +}; +parenright = { +bracketright = -5; +comma = 2; +comma.ss01 = -11; +hyphen = 25; +parenleft = 21; +parenright = -41; +period = 0; +period.ss01 = -17; +quotedbl = -23; +}; +parenright.case = { +comma = 0; +comma.ss01 = -21; +parenright.case = -32; +period = -2; +period.ss01 = -23; +}; +percent = { +asterisk = -129; +bracketright = -21; +comma.ss01 = -12; +eightsuperior = -111; +fivesuperior = -116; +foursuperior = -125; +ninesuperior = -110; +onesuperior = -111; +parenright = -60; +parenright.case = -29; +period = 0; +period.ss01 = -15; +question = -97; +question.ss01 = -106; +quotedbl = -118; +quotedblleft = -126; +quotedblright = -112; +quoteleft = -126; +quoteright = -105; +quotesingle = -109; +sevensuperior = -109; +sixsuperior = -115; +threesuperior = -113; +twosuperior = -64; +}; +period = { +bracketright = -2; +eightsuperior = -132; +fivesuperior = -132; +foursuperior = -132; +ninesuperior = -132; +onesuperior = -132; +ordfeminine = -132; +ordmasculine = -132; +parenleft.case = -33; +question = -92; +quoteleft = -132; +quotesingle = -109; +sevensuperior = -132; +sixsuperior = -132; +threesuperior = -132; +twosuperior = -132; +}; +period.ss01 = { +bracketright = 0; +eightsuperior = -135; +fivesuperior = -135; +foursuperior = -135; +ninesuperior = -135; +onesuperior = -135; +ordfeminine = -135; +ordmasculine = -135; +question.ss01 = -128; +sevensuperior = -135; +sixsuperior = -135; +threesuperior = -135; +twosuperior = -135; +}; +periodcentered.loclCAT = { +l = 29; +l.ss03 = 38; +}; +perthousand = { +asterisk = -143; +parenright = -64; +parenright.case = -29; +question = -99; +question.ss01 = -107; +quotedblleft = -148; +quotedblleft.ss01 = -101; +quotedblright = -112; +quotedblright.ss01 = -102; +quoteleft = -133; +quoteright = -112; +}; +pi = { +hyphen = 0; +parenright = -44; +period = 18; +pi = 15; +quotesingle = -21; +}; +plus = { +J = -5; +T = -46; +V = -58; +X = -85; +Y = -96; +braceright = -77; +bracketright = -68; +comma = -55; +comma.ss01 = -54; +one = 0; +parenright = -99; +parenright.case = -78; +period = -56; +period.ss01 = -55; +quotedbl = -35; +seven = 0; +slash = -62; +three = 0; +two = 0; +}; +published = { +parenright = -88; +}; +q = { +bracketright = 4; +j = 22; +parenright = 0; +}; +question = { +A = -72; +J = -73; +comma = -79; +hyphen = -25; +parenright = -53; +parenright.case = -35; +period = -80; +question = 14; +questiondown = -81; +slash = -73; +}; +question.ss01 = { +comma.ss01 = -101; +parenright = -52; +parenright.case = -34; +period.ss01 = -108; +questiondown.ss01 = -90; +}; +questiondown.case = { +T = -89; +V = -99; +Y = -114; +quotedbl = -104; +quotedblleft = -102; +quotedblleft.ss01 = -102; +quoteright = -102; +}; +questiondown.ss01 = { +C = -91; +Q = -91; +Q.ss09 = -91; +T = -113; +V = -139; +Y = -176; +four = -101; +quotedbl = -134; +quotedblleft.ss01 = -128; +quotesingle = -109; +}; +quotedbl = { +ellipsis.ss01 = -234; +exclamdown = -22; +g.ss06 = -34; +icircumflex = 69; +mu = -28; +questiondown = -111; +questiondown.case = -75; +questiondown.ss01 = -122; +underscore = -234; +}; +quotedblbase = { +copyright = -115; +divide = -104; +equal = -35; +euro = -115; +minus = -110; +p = -5; +plus = -104; +question = -105; +quotedblright = -271; +quoteleft = -133; +}; +quotedblbase.ss01 = { +divide = -70; +minus = -83; +plus = -69; +question.ss01 = -113; +quotedblright.ss01 = -267; +}; +quotedblleft = { +g.ss06 = -8; +mu = -17; +questiondown = -95; +questiondown.case = -46; +quotedblbase = -271; +underscore = -241; +}; +quotedblleft.ss01 = { +ellipsis.ss01 = -267; +questiondown.ss01 = -101; +quotedblbase.ss01 = -267; +underscore = -241; +}; +quotedblright = { +asciitilde = -53; +questiondown = -106; +questiondown.case = -86; +quotesinglbase = -133; +}; +quotedblright.ss01 = { +ellipsis.ss01 = -267; +questiondown.case = -77; +questiondown.ss01 = -121; +}; +quoteleft = { +questiondown = -95; +questiondown.case = -46; +quotedblbase = -133; +}; +quoteleft.ss01 = { +quotedblbase.ss01 = -134; +}; +quoteright = { +icircumflex = 49; +questiondown = -106; +quotedblbase = -133; +}; +quoteright.ss01 = { +questiondown.ss01 = -120; +quotedblbase.ss01 = -134; +}; +quotesinglbase = { +T = -120; +V = -133; +Y = -133; +minus = -110; +plus = -104; +question = -105; +quotedblleft = -133; +quoteleft = -133; +}; +quotesinglbase.ss01 = { +T = -123; +V = -134; +Y = -134; +question.ss01 = -113; +}; +quotesingle = { +Hbar = 44; +g.ss06 = -34; +icircumflex = 70; +igrave = 16; +imacron = 66; +itilde = 61; +l.ss04 = 27; +questiondown = -109; +questiondown.case = -75; +underscore = -109; +}; +r = { +braceright = -38; +fourinferior = -73; +g.ss06 = 0; +parenright = -56; +}; +radical = { +A = -97; +}; +rcaron = { +sevensuperior = 38; +}; +registered = { +comma = -102; +comma.ss01 = -117; +parenright = -74; +parenright.case = -55; +period = -104; +period.ss01 = -119; +slash = -73; +}; +s = { +asterisk = -57; +braceright = -17; +l = 0; +}; +scaron = { +T = -33; +}; +semicolon = { +hyphen = -18; +}; +seven = { +minus = -11; +percent = 25; +plus = -5; +underscore = -98; +}; +seven.dnom = { +question.ss01 = -108; +}; +seven.numr = { +fraction = -36; +}; +seveninferior = { +parenright = -68; +}; +sevensuperior = { +A = -109; +comma = -133; +comma.ss01 = -134; +fraction = -34; +period = -132; +period.ss01 = -135; +slash = -119; +}; +six = { +bracketright = -5; +degree = -16; +}; +six.dnom = { +degree = -161; +question.ss01 = -103; +quotedbl = -121; +quotedblleft = -117; +quotedblleft.ss01 = -70; +quotedblright = -84; +}; +sixinferior = { +T = -103; +}; +sixsuperior = { +comma = -133; +comma.ss01 = -134; +period = -132; +period.ss01 = -135; +slash = -87; +}; +slash = { +fourinferior = -96; +g.ss06 = -34; +ibreve = 76; +l.ss04 = 65; +mu = -25; +quotedblbase = -115; +quotedblbase.ss01 = -112; +quotesinglbase = -115; +underscore = -121; +}; +sterling = { +two = 10; +}; +t_i.liga = { +idieresis = 24; +}; +tcaron = { +b = 33; +exclam = 65; +h = 33; +hyphen = -12; +i = 33; +j = 43; +k = 33; +parenright = 56; +quotedbl = 77; +quotedblleft = 38; +quotesingle = 77; +}; +tcedilla = { +parenright = 3; +}; +tenge = { +comma = -114; +comma.ss01 = -131; +period = -114; +period.ss01 = -135; +slash = -80; +}; +three = { +bracketright = 0; +}; +three.dnom = { +degree = -153; +question.ss01 = -103; +quotedbl = -114; +quotedblleft = -109; +quotedblright = -76; +}; +three.numr = { +fraction = -9; +}; +threeinferior = { +T = -104; +V = -97; +Y = -159; +}; +threesuperior = { +comma = -133; +comma.ss01 = -134; +fraction = -2; +parenright = -27; +period = -132; +period.ss01 = -135; +slash = -89; +}; +trademark = { +comma = -133; +comma.ss01 = -134; +hyphen = -50; +period = -132; +period.ss01 = -135; +slash = -112; +}; +two = { +percent = 0; +}; +two.dnom = { +degree = -161; +question.ss01 = -106; +quotedbl = -121; +quotedblleft = -117; +quotedblright = -84; +}; +twoinferior = { +T = -106; +V = -100; +Y = -169; +}; +twosuperior = { +comma = -133; +comma.ss01 = -134; +parenright = -33; +parenright.case = -17; +period = -132; +period.ss01 = -135; +slash = -74; +}; +uhorn = { +a = -16; +ohorn = -19; +ohornacute = -19; +ohorndotbelow = -19; +ohorndotbelow.ss01 = -19; +ohorngrave = -19; +ohornhookabove = -19; +ohorntilde = -19; +}; +uhornacute = { +a = -16; +c = -19; +}; +uhorndotbelow = { +a = -16; +c = -19; +comma = -29; +period = -30; +}; +uhorngrave = { +a = -16; +a.ss05 = -15; +}; +uhornhookabove = { +a = -16; +comma = -29; +comma.ss01 = -57; +period = -30; +period.ss01 = -61; +}; +uhorntilde = { +a = -16; +comma = -29; +period = -30; +}; +uhungarumlaut = { +parenright = -15; +}; +underscore = { +C = -103; +O = -103; +T = -103; +V = -145; +W = -81; +Y = -160; +asterisk = -143; +four = -117; +one = -90; +quotedbl = -234; +quotedblright = -241; +quotedblright.ss01 = -241; +quotesingle = -109; +seven = -95; +six = -88; +v = -109; +}; +uogonek = { +j = 27; +parenright = 0; +}; +v = { +braceright = -48; +n = 0; +}; +w = { +braceright = -38; +}; +x = { +four = -36; +}; +y = { +braceright = -48; +}; +ydotbelow = { +period = -53; +}; +zero = { +braceright = -32; +bracketright = -28; +bracketright.case = -6; +degree = -33; +percent = -13; +}; +zero.dnom = { +degree = -179; +question = -95; +question.ss01 = -103; +quotedbl = -140; +quotedblleft = -136; +quotedblleft.ss01 = -89; +quotedblright = -102; +quotedblright.ss01 = -90; +quoteleft = -133; +}; +zeroinferior = { +parenright = -51; +}; +zerosuperior = { +comma = -133; +comma.ss01 = -134; +fraction = -8; +period = -132; +period.ss01 = -135; +slash = -93; +}; +}; +}; +metrics = ( +{ +type = ascender; +}, +{ +type = "cap height"; +}, +{ +type = "x-height"; +}, +{ +type = baseline; +}, +{ +type = descender; +}, +{ +type = "italic angle"; +} +); +properties = ( +{ +key = copyrights; +values = ( +{ +language = dflt; +value = "Copyright 2022 The Mona Sans Project Authors (https://github.com/github/mona-sans), with Reserved Font Name \"Mona\""; +} +); +}, +{ +key = designers; +values = ( +{ +language = dflt; +value = "Deni Anggara"; +} +); +}, +{ +key = designerURL; +value = www.degarism.com; +}, +{ +key = licenses; +values = ( +{ +language = dflt; +value = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL"; +} +); +}, +{ +key = licenseURL; +value = "https://openfontlicense.org"; +}, +{ +key = manufacturers; +values = ( +{ +language = dflt; +value = GitHub; +} +); +}, +{ +key = manufacturerURL; +value = www.github.com; +}, +{ +key = vendorID; +value = GTHB; +} +); +stems = ( +{ +horizontal = 1; +name = H; +}, +{ +horizontal = 1; +name = o; +}, +{ +name = n; +}, +{ +name = o; +} +); +unitsPerEm = 1000; +userData = { +GSDimensionPlugin.Dimensions = { +"106FCE83-F343-403B-A314-646E4D059B3F" = { +HV = "38"; +OH = "36"; +OV = "40"; +nV = "37"; +}; +"1EDCBF6C-9964-4A28-BC87-E86B534B8BE7" = { +HH = "172"; +HV = "203"; +OH = "172"; +OV = "208"; +nV = "191"; +oH = "153"; +oV = "193"; +}; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = { +HH = "36"; +HV = "38"; +OH = "36"; +OV = "40"; +nV = "37"; +oH = "35"; +oV = "38"; +}; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = { +HH = "178"; +HV = "229"; +OH = "179"; +OV = "235"; +nV = "221"; +}; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = { +HH = "30"; +HV = "31"; +OH = "29"; +OV = "33"; +nV = "29"; +oH = "27"; +oV = "29"; +}; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = { +HV = "38"; +nV = "36"; +oV = "38"; +}; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = { +HV = "31"; +OH = "29"; +OV = "33"; +nV = "30"; +oH = "27"; +oV = "31"; +tH = "27"; +}; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = { +HH = "178"; +HV = "229"; +OH = "179"; +OV = "230"; +nV = "221"; +oH = "166"; +oV = "220"; +}; +"DED42A87-C949-4722-A202-2B551272A3FB" = { +HV = "203"; +OH = "172"; +OV = "210"; +nV = "191"; +oV = "193"; +}; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = { +HH = "156"; +HV = "184"; +OH = "156"; +OV = "180"; +nV = "177"; +oH = "137"; +oV = "177"; +}; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = { +HV = "186"; +OH = "156"; +OV = "188"; +nV = "177"; +tH = "143"; +}; +m019 = { +HH = "36"; +HV = "37"; +OH = "36"; +OV = "39"; +nV = "37"; +oV = "38"; +}; +m020 = { +HH = "172"; +HV = "201"; +OH = "175"; +OV = "206"; +nV = "191"; +oH = "153"; +oV = "195"; +tH = "153"; +}; +master01 = { +HH = "36"; +HV = "38"; +OH = "36"; +OV = "40"; +nV = "36"; +oH = "35"; +oV = "38"; +}; +}; +KernOnKerningWeightLimit = 24000; +KernOnRegenerateGroups = 1; +KernOnVersion = "1.37"; +com.eweracs.HTLSManager.fontRules = { +Letter = { +312438f7decf4fc68bcbaca450e03a99 = { +case = 2; +filter = ""; +referenceGlyph = x; +subcategory = Any; +value = 1; +}; +6a2d898c1367438986d3a6a56dff674b = { +case = 1; +filter = ""; +referenceGlyph = H; +subcategory = Any; +value = 1.1; +}; +}; +Mark = { +}; +Number = { +2bd1e700934d48afa4ccdec6e58ec3e7 = { +case = 4; +filter = inferior; +referenceGlyph = oneinferior; +subcategory = Small; +value = "1.0"; +}; +55f63e4331df4db2af4078f7d25e7c81 = { +case = 0; +filter = fraction; +referenceGlyph = one.numr; +subcategory = Fraction; +value = "1.0"; +}; +83f21c7fa30c4bda82d83ce68797bf1e = { +case = 4; +filter = .dnom; +referenceGlyph = one.dnom; +subcategory = Fraction; +value = "1.0"; +}; +ed5cb22a9b09400187c0feacae1f0f8f = { +case = 0; +filter = ""; +referenceGlyph = H; +subcategory = "Decimal DigitalicItalic"; +value = 1.1; +}; +}; +Punctuation = { +167668d12cdd4c8893e2ea25c8b50ee7 = { +case = 0; +filter = ""; +referenceGlyph = ""; +subcategory = Quote; +value = 0.8; +}; +473a79e894d44c599a51e7e1ece63290 = { +case = 0; +filter = guil; +referenceGlyph = ""; +subcategory = Quote; +value = 1.2; +}; +4ec998b892f749cda9789e6906484c17 = { +case = 0; +filter = comma; +referenceGlyph = period; +subcategory = Any; +value = "0.7"; +}; +9184a8a098a84478838c6fc128ee0a80 = { +case = 0; +filter = ""; +referenceGlyph = bracketleft; +subcategory = Parenthesis; +value = 1.2; +}; +9d511a8382cb45d792fdbfdfc50ffffd = { +case = 1; +filter = ""; +referenceGlyph = H; +subcategory = Any; +value = 1.2; +}; +9ec58eaef538412db8c6e39bfab814c4 = { +case = 0; +filter = colon; +referenceGlyph = idotless; +subcategory = Any; +value = 1.2; +}; +9f4aa33eabc048148a0062f6007b15aa = { +case = 1; +filter = ""; +referenceGlyph = ""; +subcategory = Parenthesis; +value = 1.2; +}; +c63f0f2ed1a04e758a366249316b4adc = { +case = 0; +filter = ""; +referenceGlyph = ""; +subcategory = Any; +value = 0.7; +}; +d38ed0f19582418b87419664ccbaea66 = { +case = 0; +filter = numbersign; +referenceGlyph = ""; +subcategory = Any; +value = "1"; +}; +}; +Symbol = { +0fc37ed242184cf0bb4187ff151ca40f = { +case = 0; +filter = florin; +referenceGlyph = idotless; +subcategory = Currency; +value = 1; +}; +29efbbb3c5a14419ae21c4df65fbd7be = { +case = 0; +filter = ""; +referenceGlyph = ""; +subcategory = Math; +value = 1; +}; +42048483ab514efc835267f63d632f9d = { +case = 0; +filter = ""; +referenceGlyph = ""; +subcategory = Any; +value = 1.3; +}; +d186e1aee4d04436b206cbedd9f1894d = { +case = 0; +filter = ""; +referenceGlyph = H; +subcategory = Currency; +value = 1.3; +}; +}; +}; +}; +versionMajor = 2; +versionMinor = 8; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_.glyph new file mode 100644 index 00000000..9e104a32 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_.glyph @@ -0,0 +1,1207 @@ +{ +glyphname = A; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (249,0); +}, +{ +name = ogonek; +pos = (487,0); +}, +{ +name = top; +pos = (249,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(199,120,l), +(297,120,l), +(312,0,l), +(487,0,l), +(373,729,l), +(122,729,l), +(10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(231,413,l), +(244,563,l), +(251,563,l), +(266,414,l), +(282,260,l), +(213,260,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(236,491,l), +(244,583,l), +(251,583,l), +(260,491,l), +(312,0,l), +(487,0,l), +(373,729,l), +(122,729,l), +(10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(313,120,l), +(298,260,l), +(197,260,l), +(183,120,l) +); +} +); +width = 497; +}, +{ +anchors = ( +{ +name = bottom; +pos = (193,0); +}, +{ +name = ogonek; +pos = (376,0); +}, +{ +name = top; +pos = (193,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(42,0,l), +(156,518,l), +(191,698,l), +(197,698,l), +(232,518,l), +(344,0,l), +(376,0,l), +(218,729,l), +(170,729,l), +(10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(308,203,l), +(300,232,l), +(87,232,l), +(79,203,l) +); +} +); +width = 386; +}, +{ +anchors = ( +{ +name = bottom; +pos = (402,0); +}, +{ +name = ogonek; +pos = (787,0); +}, +{ +name = top; +pos = (402,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(347,585,l), +(401,695,l), +(404,695,l), +(456,589,l), +(746,0,l), +(787,0,l), +(426,729,l), +(378,729,l), +(16,0,l) +); +}, +{ +closed = 1; +nodes = ( +(656,200,l), +(640,233,l), +(165,233,l), +(147,200,l) +); +} +); +width = 803; +}, +{ +anchors = ( +{ +name = bottom; +pos = (435,0); +}, +{ +name = ogonek; +pos = (877,0); +}, +{ +name = top; +pos = (435,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(404,466,l), +(430,547,l), +(437,547,l), +(465,464,l), +(628,0,l), +(877,0,l), +(583,729,l), +(285,729,l), +(-7,0,l), +(240,0,l) +); +}, +{ +closed = 1; +nodes = ( +(600,124,l), +(540,293,l), +(328,293,l), +(267,124,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,0,l), +(402,476,l), +(430,565,l), +(437,565,l), +(466,476,l), +(628,0,l), +(877,0,l), +(583,729,l), +(285,729,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(600,124,l), +(540,293,l), +(328,293,l), +(267,124,l) +); +} +); +width = 871; +}, +{ +anchors = ( +{ +name = bottom; +pos = (172,0); +}, +{ +name = ogonek; +pos = (350,0); +}, +{ +name = top; +pos = (172,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(34,0,l), +(137,507,l), +(173,687,l), +(174,687,l), +(209,507,l), +(310,0,l), +(342,0,l), +(193,729,l), +(154,729,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(274,219,l), +(266,248,l), +(79,248,l), +(71,219,l) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = ogonek; +pos = (487,0); +}, +{ +name = top; +pos = (239,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(182,0,l), +(196,120,l), +(294,120,l), +(309,0,l), +(484,0,l), +(370,729,l), +(119,729,l), +(7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(228,413,l), +(241,563,l), +(248,563,l), +(263,414,l), +(279,260,l), +(210,260,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,0,l), +(225,431,l), +(238,527,l), +(239,527,l), +(252,431,l), +(309,0,l), +(490,0,l), +(371,729,l), +(119,729,l), +(0,0,l) +); +}, +{ +closed = 1; +nodes = ( +(303,138,l), +(288,278,l), +(187,278,l), +(173,138,l) +); +} +); +width = 490; +}, +{ +anchors = ( +{ +name = bottom; +pos = (327,0); +}, +{ +name = ogonek; +pos = (635,0); +}, +{ +name = top; +pos = (327,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(85,0,l), +(161,200,l), +(543,200,l), +(620,0,l), +(660,0,l), +(377,729,l), +(327,729,l), +(44,0,l) +); +}, +{ +closed = 1; +nodes = ( +(284,516,l), +(351,690,l), +(355,690,l), +(421,516,l), +(530,233,l), +(174,233,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,0,l), +(291,595,l), +(328,687,l), +(329,687,l), +(365,595,l), +(606,0,l), +(648,0,l), +(349,729,l), +(307,729,l), +(6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,211,l), +(535,247,l), +(121,247,l), +(121,211,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 654; +}, +{ +anchors = ( +{ +name = bottom; +pos = (376,0); +}, +{ +name = ogonek; +pos = (749,0); +}, +{ +name = top; +pos = (376,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,l), +(358,431,l), +(389,547,l), +(396,547,l), +(427,431,l), +(553,0,l), +(764,0,l), +(537,729,l), +(248,729,l), +(21,0,l) +); +}, +{ +closed = 1; +nodes = ( +(531,130,l), +(486,284,l), +(299,284,l), +(254,130,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,0,l), +(341,433,l), +(375,545,l), +(376,545,l), +(410,433,l), +(542,0,l), +(764,0,l), +(525,729,l), +(236,729,l), +(-5,0,l) +); +}, +{ +closed = 1; +nodes = ( +(525,143,l), +(479,303,l), +(271,303,l), +(226,143,l) +); +} +); +width = 759; +}, +{ +anchors = ( +{ +name = bottom; +pos = (416,0); +}, +{ +name = ogonek; +pos = (820,0); +}, +{ +name = top; +pos = (416,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(53,0,l), +(360,582,l), +(415,690,l), +(418,690,l), +(471,586,l), +(778,0,l), +(820,0,l), +(439,729,l), +(394,729,l), +(10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(686,208,l), +(670,241,l), +(163,241,l), +(145,208,l) +); +} +); +width = 830; +}, +{ +anchors = ( +{ +name = bottom; +pos = (440,0); +}, +{ +name = ogonek; +pos = (886,0); +}, +{ +name = top; +pos = (440,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(419,466,l), +(445,547,l), +(452,547,l), +(480,464,l), +(643,0,l), +(892,0,l), +(598,729,l), +(300,729,l), +(8,0,l), +(255,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,124,l), +(555,293,l), +(343,293,l), +(282,124,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,0,l), +(405,448,l), +(437,532,l), +(438,532,l), +(471,448,l), +(635,0,l), +(894,0,l), +(589,729,l), +(297,729,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(607,124,l), +(546,296,l), +(330,296,l), +(268,124,l) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = bottom; +pos = (336,0); +}, +{ +name = ogonek; +pos = (630,0); +}, +{ +name = top; +pos = (336,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,l), +(148,200,l), +(530,200,l), +(607,0,l), +(647,0,l), +(364,729,l), +(314,729,l), +(31,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,516,l), +(338,690,l), +(342,690,l), +(408,516,l), +(517,233,l), +(161,233,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(83,0,l), +(300,605,l), +(334,696,l), +(340,696,l), +(372,605,l), +(588,0,l), +(630,0,l), +(363,729,l), +(309,729,l), +(43,0,l) +); +}, +{ +closed = 1; +nodes = ( +(513,234,l), +(513,270,l), +(154,270,l), +(154,234,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 670; +}, +{ +anchors = ( +{ +name = bottom; +pos = (373,0); +}, +{ +name = ogonek; +pos = (740,0); +}, +{ +name = top; +pos = (373,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,l), +(348,431,l), +(379,547,l), +(386,547,l), +(417,431,l), +(543,0,l), +(754,0,l), +(527,729,l), +(238,729,l), +(11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(521,130,l), +(476,284,l), +(289,284,l), +(244,130,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(219,0,l), +(346,482,l), +(367,577,l), +(379,577,l), +(400,482,l), +(527,0,l), +(740,0,l), +(520,729,l), +(230,729,l), +(10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(537,155,l), +(491,314,l), +(254,314,l), +(210,155,l) +); +} +); +width = 750; +}, +{ +anchors = ( +{ +name = bottom; +pos = (148,0); +}, +{ +name = ogonek; +pos = (326,0); +}, +{ +name = top; +pos = (293,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(79,231,l), +(67,205,l), +(293,205,l), +(290,231,l) +); +}, +{ +closed = 1; +nodes = ( +(286,0,l), +(318,0,l), +(308,729,l), +(268,729,l), +(-44,0,l), +(-13,0,l), +(77,212,l), +(83,224,l), +(222,556,l), +(280,694,l), +(284,694,l), +(285,557,l), +(283,224,l), +(286,212,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-10,0,l), +(222,540,l), +(285,702,l), +(291,702,l), +(289,538,l), +(294,0,l), +(326,0,l), +(315,729,l), +(271,729,l), +(-44,0,l) +); +}, +{ +closed = 1; +nodes = ( +(313,205,l), +(310,231,l), +(79,231,l), +(67,205,l) +); +} +); +width = 389; +}, +{ +anchors = ( +{ +name = bottom; +pos = (205,0); +}, +{ +name = ogonek; +pos = (432,0); +}, +{ +name = top; +pos = (340,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(133,0,l), +(171,120,l), +(270,120,l), +(259,0,l), +(432,0,l), +(470,729,l), +(222,729,l), +(-40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(266,425,l), +(309,563,l), +(316,563,l), +(301,423,l), +(282,260,l), +(215,260,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,0,l), +(276,490,l), +(301,583,l), +(309,583,l), +(300,490,l), +(260,0,l), +(432,0,l), +(459,729,l), +(220,729,l), +(-46,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,120,l), +(295,260,l), +(196,260,l), +(152,120,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = bottom; +pos = (289,0); +}, +{ +name = ogonek; +pos = (578,0); +}, +{ +name = top; +pos = (428,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(19,0,l), +(363,588,l), +(420,690,l), +(423,690,l), +(442,583,l), +(540,0,l), +(578,0,l), +(452,729,l), +(404,729,l), +(-23,0,l) +); +}, +{ +closed = 1; +nodes = ( +(515,200,l), +(509,233,l), +(145,233,l), +(126,200,l) +); +} +); +width = 663; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = ogonek; +pos = (657,0); +}, +{ +name = top; +pos = (453,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,0,l), +(375,449,l), +(411,527,l), +(418,527,l), +(425,449,l), +(465,0,l), +(657,0,l), +(574,729,l), +(332,729,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(469,130,l), +(455,284,l), +(279,284,l), +(205,130,l) +); +} +); +width = 724; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,23); +}, +{ +name = ogonek; +pos = (724,0); +}, +{ +name = top; +pos = (494,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(4,0,l), +(438,620,l), +(487,692,l), +(490,692,l), +(509,620,l), +(683,0,l), +(724,0,l), +(517,729,l), +(471,729,l), +(-38,0,l) +); +}, +{ +closed = 1; +nodes = ( +(636,200,l), +(626,233,l), +(157,233,l), +(134,200,l) +); +} +); +width = 794; +}, +{ +anchors = ( +{ +name = bottom; +pos = (374,0); +}, +{ +name = ogonek; +pos = (798,0); +}, +{ +name = top; +pos = (512,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(183,0,l), +(434,469,l), +(472,544,l), +(480,544,l), +(493,467,l), +(566,0,l), +(798,0,l), +(656,729,l), +(368,729,l), +(-72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(559,124,l), +(534,293,l), +(326,293,l), +(230,124,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(183,0,l), +(397,400,l), +(472,544,l), +(480,544,l), +(504,400,l), +(566,0,l), +(798,0,l), +(656,729,l), +(368,729,l), +(-62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(559,124,l), +(534,293,l), +(326,293,l), +(230,124,l) +); +} +); +width = 848; +} +); +unicode = 65; +userData = { +KernOnName = A; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_E_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_E_.glyph new file mode 100644 index 00000000..c837300c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_E_.glyph @@ -0,0 +1,874 @@ +{ +glyphname = AE; +kernLeft = KO_A; +kernRight = KO_E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (238,0); +}, +{ +name = top; +pos = (238,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(42,0,l), +(87,203,l), +(300,203,l), +(344,0,l), +(466,0,l), +(466,28,l), +(370,28,l), +(298,361,l), +(435,361,l), +(435,389,l), +(292,389,l), +(224,701,l), +(466,701,l), +(466,729,l), +(170,729,l), +(10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(156,518,l), +(191,698,l), +(197,698,l), +(232,518,l), +(294,232,l), +(93,232,l) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(197,120,l), +(299,120,l), +(312,0,l), +(598,0,l), +(598,157,l), +(462,157,l), +(440,299,l), +(584,299,l), +(584,445,l), +(417,445,l), +(398,572,l), +(598,572,l), +(598,729,l), +(122,729,l), +(10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(236,491,l), +(244,583,l), +(251,583,l), +(260,491,l), +(284,260,l), +(212,260,l) +); +} +); +width = 617; +}, +{ +anchors = ( +{ +name = bottom; +pos = (567,0); +}, +{ +name = top; +pos = (567,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(156,200,l), +(648,200,l), +(746,0,l), +(1111,0,l), +(1111,37,l), +(769,37,l), +(610,358,l), +(1063,358,l), +(1063,392,l), +(593,392,l), +(444,693,l), +(1111,693,l), +(1111,729,l), +(378,729,l), +(16,0,l) +); +}, +{ +closed = 1; +nodes = ( +(347,585,l), +(401,695,l), +(404,695,l), +(459,583,l), +(631,233,l), +(173,233,l) +); +} +); +width = 1133; +}, +{ +anchors = ( +{ +name = bottom; +pos = (571,0); +}, +{ +name = top; +pos = (571,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,0,l), +(282,124,l), +(586,124,l), +(628,0,l), +(1119,0,l), +(1119,179,l), +(805,179,l), +(763,282,l), +(1066,282,l), +(1066,449,l), +(696,449,l), +(655,550,l), +(1116,550,l), +(1116,729,l), +(285,729,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(402,476,l), +(430,565,l), +(437,565,l), +(466,476,l), +(528,293,l), +(340,293,l) +); +} +); +width = 1141; +}, +{ +anchors = ( +{ +name = bottom; +pos = (230,0); +}, +{ +name = top; +pos = (230,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(34,0,l), +(79,203,l), +(292,203,l), +(336,0,l), +(458,0,l), +(458,28,l), +(362,28,l), +(290,361,l), +(427,361,l), +(427,389,l), +(284,389,l), +(216,701,l), +(458,701,l), +(458,729,l), +(162,729,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(148,518,l), +(183,698,l), +(189,698,l), +(224,518,l), +(286,232,l), +(85,232,l) +); +} +); +width = 460; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (302,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,0,l), +(190,120,l), +(292,120,l), +(305,0,l), +(591,0,l), +(591,157,l), +(455,157,l), +(433,299,l), +(577,299,l), +(577,445,l), +(410,445,l), +(391,572,l), +(591,572,l), +(591,729,l), +(115,729,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(229,491,l), +(237,583,l), +(244,583,l), +(253,491,l), +(277,260,l), +(205,260,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = bottom; +pos = (431,0); +}, +{ +name = top; +pos = (431,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(47,0,l), +(123,199,l), +(506,199,l), +(582,0,l), +(850,0,l), +(850,37,l), +(608,37,l), +(484,358,l), +(802,358,l), +(802,392,l), +(471,392,l), +(355,693,l), +(850,693,l), +(850,729,l), +(288,729,l), +(6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(278,605,l), +(312,696,l), +(318,696,l), +(352,605,l), +(493,235,l), +(137,235,l) +); +} +); +width = 867; +}, +{ +anchors = ( +{ +name = bottom; +pos = (474,0); +}, +{ +name = top; +pos = (474,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,0,l), +(241,130,l), +(490,130,l), +(526,0,l), +(931,0,l), +(931,172,l), +(683,172,l), +(647,288,l), +(878,288,l), +(878,449,l), +(597,449,l), +(564,557,l), +(928,557,l), +(928,729,l), +(221,729,l), +(-6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(337,482,l), +(362,577,l), +(369,577,l), +(394,482,l), +(448,284,l), +(283,284,l) +); +} +); +width = 939; +}, +{ +anchors = ( +{ +name = bottom; +pos = (562,0); +}, +{ +name = top; +pos = (562,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,0,l), +(151,200,l), +(643,200,l), +(741,0,l), +(1106,0,l), +(1106,37,l), +(764,37,l), +(605,358,l), +(1058,358,l), +(1058,392,l), +(588,392,l), +(439,693,l), +(1106,693,l), +(1106,729,l), +(373,729,l), +(11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(342,585,l), +(396,695,l), +(399,695,l), +(454,583,l), +(626,233,l), +(168,233,l) +); +} +); +width = 1118; +}, +{ +anchors = ( +{ +name = bottom; +pos = (561,0); +}, +{ +name = top; +pos = (561,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(272,124,l), +(576,124,l), +(618,0,l), +(1109,0,l), +(1109,179,l), +(795,179,l), +(753,282,l), +(1056,282,l), +(1056,449,l), +(686,449,l), +(645,550,l), +(1106,550,l), +(1106,729,l), +(275,729,l), +(-17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(392,476,l), +(420,565,l), +(427,565,l), +(456,476,l), +(518,293,l), +(330,293,l) +); +} +); +width = 1116; +}, +{ +anchors = ( +{ +name = bottom; +pos = (449,0); +}, +{ +name = top; +pos = (449,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(149,199,l), +(524,199,l), +(598,0,l), +(860,0,l), +(860,37,l), +(624,37,l), +(502,358,l), +(814,358,l), +(814,392,l), +(489,392,l), +(375,693,l), +(860,693,l), +(860,729,l), +(310,729,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,605,l), +(334,696,l), +(340,696,l), +(372,605,l), +(511,235,l), +(161,235,l) +); +} +); +width = 899; +}, +{ +anchors = ( +{ +name = bottom; +pos = (480,0); +}, +{ +name = top; +pos = (480,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(219,0,l), +(253,130,l), +(495,130,l), +(530,0,l), +(928,0,l), +(928,172,l), +(685,172,l), +(651,288,l), +(876,288,l), +(876,449,l), +(602,449,l), +(571,557,l), +(925,557,l), +(925,729,l), +(231,729,l), +(10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(347,482,l), +(370,577,l), +(377,577,l), +(402,482,l), +(453,284,l), +(295,284,l) +); +} +); +width = 959; +}, +{ +anchors = ( +{ +name = bottom; +pos = (202,0); +}, +{ +name = top; +pos = (353,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-10,0,l), +(78,205,l), +(292,205,l), +(294,0,l), +(445,0,l), +(451,28,l), +(326,28,l), +(321,361,l), +(490,361,l), +(495,389,l), +(320,389,l), +(315,701,l), +(591,701,l), +(596,729,l), +(271,729,l), +(-44,0,l) +); +}, +{ +closed = 1; +nodes = ( +(222,540,l), +(285,702,l), +(291,702,l), +(289,538,l), +(292,231,l), +(89,231,l) +); +} +); +width = 509; +}, +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = top; +pos = (403,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,0,l), +(168,120,l), +(270,120,l), +(260,0,l), +(540,0,l), +(572,157,l), +(438,157,l), +(443,299,l), +(587,299,l), +(618,445,l), +(448,445,l), +(453,572,l), +(660,572,l), +(691,729,l), +(220,729,l), +(-46,0,l) +); +}, +{ +closed = 1; +nodes = ( +(276,490,l), +(301,583,l), +(309,583,l), +(300,490,l), +(281,260,l), +(209,260,l) +); +} +); +width = 616; +}, +{ +anchors = ( +{ +name = bottom; +pos = (406,0); +}, +{ +name = top; +pos = (557,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(19,0,l), +(136,200,l), +(506,200,l), +(540,0,l), +(829,0,l), +(836,36,l), +(572,36,l), +(516,358,l), +(858,358,l), +(865,392,l), +(510,392,l), +(458,693,l), +(973,693,l), +(980,729,l), +(404,729,l), +(-23,0,l) +); +}, +{ +closed = 1; +nodes = ( +(363,588,l), +(420,690,l), +(423,690,l), +(442,583,l), +(501,233,l), +(155,233,l) +); +} +); +width = 920; +}, +{ +anchors = ( +{ +name = bottom; +pos = (427,0); +}, +{ +name = top; +pos = (578,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,0,l), +(220,130,l), +(453,130,l), +(465,0,l), +(875,0,l), +(910,172,l), +(637,172,l), +(625,285,l), +(883,285,l), +(916,446,l), +(606,446,l), +(594,557,l), +(987,557,l), +(1023,729,l), +(332,729,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(375,449,l), +(411,527,l), +(418,527,l), +(425,449,l), +(440,284,l), +(295,284,l) +); +} +); +width = 965; +}, +{ +anchors = ( +{ +name = bottom; +pos = (505,0); +}, +{ +name = top; +pos = (656,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(4,0,l), +(144,200,l), +(627,200,l), +(683,0,l), +(1040,0,l), +(1048,37,l), +(713,37,l), +(622,358,l), +(1069,358,l), +(1076,392,l), +(613,392,l), +(527,693,l), +(1184,693,l), +(1191,729,l), +(471,729,l), +(-38,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,620,l), +(487,692,l), +(490,692,l), +(509,620,l), +(618,233,l), +(167,233,l) +); +} +); +width = 1117; +}, +{ +anchors = ( +{ +name = bottom; +pos = (524,0); +}, +{ +name = top; +pos = (675,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(183,0,l), +(249,124,l), +(547,124,l), +(566,0,l), +(1081,0,l), +(1118,179,l), +(763,179,l), +(743,282,l), +(1087,282,l), +(1122,449,l), +(711,449,l), +(691,550,l), +(1192,550,l), +(1229,729,l), +(368,729,l), +(-62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(397,400,l), +(472,544,l), +(480,544,l), +(504,400,l), +(521,293,l), +(340,293,l) +); +} +); +width = 1159; +} +); +metricLeft = A; +metricRight = E; +unicode = 198; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_acute.glyph new file mode 100644 index 00000000..3c17da5e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_acute.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Aacute; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (137,57); +ref = acutecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (137,51); +ref = acutecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (344,57); +ref = acutecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (318,56); +ref = acutecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (136,57); +ref = acutecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (137,51); +ref = acutecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (292,57); +ref = acutecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (275,51); +ref = acutecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (368,57); +ref = acutecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (333,56); +ref = acutecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (280,57); +ref = acutecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (263,51); +ref = acutecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (152,57); +ref = acutecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (145,51); +ref = acutecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (286,57); +ref = acutecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (258,51); +ref = acutecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (351,57); +ref = acutecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (312,56); +ref = acutecomb; +} +); +width = 848; +} +); +unicode = 193; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_breve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_breve.glyph new file mode 100644 index 00000000..685c88bc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_breve.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Abreve; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (69,57); +ref = brevecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (54,51); +ref = brevecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (228,57); +ref = brevecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (196,56); +ref = brevecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (68,57); +ref = brevecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (54,51); +ref = brevecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (179,51); +ref = brevecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (168,51); +ref = brevecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (252,57); +ref = brevecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (211,56); +ref = brevecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (169,51); +ref = brevecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (162,51); +ref = brevecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (79,57); +ref = brevecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (60,51); +ref = brevecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (172,57); +ref = brevecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (141,51); +ref = brevecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (229,57); +ref = brevecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (190,51); +ref = brevecomb; +} +); +width = 848; +} +); +unicode = 258; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_breveacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_breveacute.glyph new file mode 100644 index 00000000..41c591a7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_breveacute.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Abreveacute; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (69,57); +ref = brevecomb_acutecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,51); +ref = brevecomb_acutecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (229,57); +ref = brevecomb_acutecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (195,56); +ref = brevecomb_acutecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (68,57); +ref = brevecomb_acutecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,51); +ref = brevecomb_acutecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (179,51); +ref = brevecomb_acutecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (168,51); +ref = brevecomb_acutecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (253,57); +ref = brevecomb_acutecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (210,56); +ref = brevecomb_acutecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (169,51); +ref = brevecomb_acutecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (162,51); +ref = brevecomb_acutecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (82,56); +ref = brevecomb_acutecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (60,51); +ref = brevecomb_acutecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (166,51); +ref = brevecomb_acutecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (143,51); +ref = brevecomb_acutecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (226,57); +ref = brevecomb_acutecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (181,56); +ref = brevecomb_acutecomb; +} +); +width = 848; +} +); +unicode = 7854; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevedotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevedotbelow.glyph new file mode 100644 index 00000000..d058a4ac --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevedotbelow.glyph @@ -0,0 +1,318 @@ +{ +color = 6; +glyphname = Abrevedotbelow; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (130,0); +ref = dotbelowcomb; +}, +{ +pos = (69,57); +ref = brevecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (131,0); +ref = dotbelowcomb; +}, +{ +pos = (54,51); +ref = brevecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (330,0); +ref = dotbelowcomb; +}, +{ +pos = (228,57); +ref = brevecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (282,0); +ref = dotbelowcomb; +}, +{ +pos = (196,56); +ref = brevecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (129,0); +ref = dotbelowcomb; +}, +{ +pos = (68,57); +ref = brevecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (131,0); +ref = dotbelowcomb; +}, +{ +pos = (54,51); +ref = brevecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (275,0); +ref = dotbelowcomb; +}, +{ +pos = (179,51); +ref = brevecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (262,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (168,51); +ref = brevecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (354,0); +ref = dotbelowcomb; +}, +{ +pos = (252,57); +ref = brevecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (297,0); +ref = dotbelowcomb; +}, +{ +pos = (211,56); +ref = brevecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (263,0); +ref = dotbelowcomb; +}, +{ +pos = (169,51); +ref = brevecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (252,0); +ref = dotbelowcomb; +}, +{ +pos = (162,51); +ref = brevecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (138,0); +ref = dotbelowcomb; +}, +{ +pos = (79,57); +ref = brevecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (140,0); +ref = dotbelowcomb; +}, +{ +pos = (60,51); +ref = brevecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (271,0); +ref = dotbelowcomb; +}, +{ +pos = (172,57); +ref = brevecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (246,0); +ref = dotbelowcomb; +}, +{ +pos = (141,51); +ref = brevecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (338,23); +ref = dotbelowcomb; +}, +{ +pos = (229,57); +ref = brevecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (277,0); +ref = dotbelowcomb; +}, +{ +pos = (190,51); +ref = brevecomb; +} +); +width = 848; +} +); +unicode = 7862; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevedotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevedotbelow.ss01.glyph new file mode 100644 index 00000000..7f7d2875 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevedotbelow.ss01.glyph @@ -0,0 +1,313 @@ +{ +color = 6; +glyphname = Abrevedotbelow.ss01; +kernLeft = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (138,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (69,57); +ref = brevecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (54,51); +ref = brevecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (343,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (228,57); +ref = brevecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (294,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (196,56); +ref = brevecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (137,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (68,57); +ref = brevecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (54,51); +ref = brevecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (288,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (179,51); +ref = brevecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = A; +}, +{ +pos = (261,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (178,51); +ref = brevecomb; +} +); +width = 759; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (367,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (252,57); +ref = brevecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (309,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (211,56); +ref = brevecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (276,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (169,51); +ref = brevecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (239,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (162,51); +ref = brevecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (146,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (79,57); +ref = brevecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (131,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (60,51); +ref = brevecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (284,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (172,57); +ref = brevecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (237,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (141,51); +ref = brevecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (349,23); +ref = dotbelowcomb.ss01; +}, +{ +pos = (229,57); +ref = brevecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (291,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (190,51); +ref = brevecomb; +} +); +width = 848; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevegrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevegrave.glyph new file mode 100644 index 00000000..196294d8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevegrave.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Abrevegrave; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (70,57); +ref = brevecomb_gravecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (51,51); +ref = brevecomb_gravecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (228,57); +ref = brevecomb_gravecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (197,56); +ref = brevecomb_gravecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (69,57); +ref = brevecomb_gravecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (51,51); +ref = brevecomb_gravecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (179,51); +ref = brevecomb_gravecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (168,51); +ref = brevecomb_gravecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (252,57); +ref = brevecomb_gravecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (212,56); +ref = brevecomb_gravecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (169,51); +ref = brevecomb_gravecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (162,51); +ref = brevecomb_gravecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (88,56); +ref = brevecomb_gravecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (47,51); +ref = brevecomb_gravecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (167,57); +ref = brevecomb_gravecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (143,51); +ref = brevecomb_gravecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (226,57); +ref = brevecomb_gravecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (181,56); +ref = brevecomb_gravecomb; +} +); +width = 848; +} +); +unicode = 7856; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevehookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevehookabove.glyph new file mode 100644 index 00000000..8b7e815b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevehookabove.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Abrevehookabove; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (70,57); +ref = brevecomb_hookabovecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,51); +ref = brevecomb_hookabovecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (228,57); +ref = brevecomb_hookabovecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (197,56); +ref = brevecomb_hookabovecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (69,57); +ref = brevecomb_hookabovecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,51); +ref = brevecomb_hookabovecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (179,51); +ref = brevecomb_hookabovecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (171,51); +ref = brevecomb_hookabovecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (252,57); +ref = brevecomb_hookabovecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (212,56); +ref = brevecomb_hookabovecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (169,51); +ref = brevecomb_hookabovecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (165,51); +ref = brevecomb_hookabovecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (88,56); +ref = brevecomb_hookabovecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (59,51); +ref = brevecomb_hookabovecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (167,57); +ref = brevecomb_hookabovecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (143,51); +ref = brevecomb_hookabovecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (227,57); +ref = brevecomb_hookabovecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (181,56); +ref = brevecomb_hookabovecomb; +} +); +width = 848; +} +); +unicode = 7858; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevetilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevetilde.glyph new file mode 100644 index 00000000..c12e4a9f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_brevetilde.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Abrevetilde; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (61,57); +ref = brevecomb_tildecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,51); +ref = brevecomb_tildecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (226,57); +ref = brevecomb_tildecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (185,56); +ref = brevecomb_tildecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (60,57); +ref = brevecomb_tildecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,51); +ref = brevecomb_tildecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (174,57); +ref = brevecomb_tildecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (159,51); +ref = brevecomb_tildecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (250,57); +ref = brevecomb_tildecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (200,56); +ref = brevecomb_tildecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (164,57); +ref = brevecomb_tildecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (153,51); +ref = brevecomb_tildecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (70,56); +ref = brevecomb_tildecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (48,51); +ref = brevecomb_tildecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (159,57); +ref = brevecomb_tildecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (129,51); +ref = brevecomb_tildecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (210,57); +ref = brevecomb_tildecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (171,56); +ref = brevecomb_tildecomb; +} +); +width = 848; +} +); +unicode = 7860; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflex.glyph new file mode 100644 index 00000000..93ed9e6b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflex.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Acircumflex; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (64,57); +ref = circumflexcomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (32,51); +ref = circumflexcomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (223,57); +ref = circumflexcomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (144,56); +ref = circumflexcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (63,57); +ref = circumflexcomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (32,51); +ref = circumflexcomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (183,57); +ref = circumflexcomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (140,51); +ref = circumflexcomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (247,57); +ref = circumflexcomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (159,56); +ref = circumflexcomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (173,57); +ref = circumflexcomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (134,51); +ref = circumflexcomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (78,57); +ref = circumflexcomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (38,51); +ref = circumflexcomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (176,57); +ref = circumflexcomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (124,51); +ref = circumflexcomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (228,57); +ref = circumflexcomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (136,56); +ref = circumflexcomb; +} +); +width = 848; +} +); +unicode = 194; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexacute.glyph new file mode 100644 index 00000000..92774b32 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexacute.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Acircumflexacute; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (64,57); +ref = circumflexcomb_acutecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (43,51); +ref = circumflexcomb_acutecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (223,57); +ref = circumflexcomb_acutecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (168,56); +ref = circumflexcomb_acutecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (63,57); +ref = circumflexcomb_acutecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (43,51); +ref = circumflexcomb_acutecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (183,57); +ref = circumflexcomb_acutecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (140,51); +ref = circumflexcomb_acutecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (247,57); +ref = circumflexcomb_acutecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (183,56); +ref = circumflexcomb_acutecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (173,57); +ref = circumflexcomb_acutecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (133,51); +ref = circumflexcomb_acutecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (78,57); +ref = circumflexcomb_acutecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (50,51); +ref = circumflexcomb_acutecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (176,57); +ref = circumflexcomb_acutecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (126,51); +ref = circumflexcomb_acutecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (228,57); +ref = circumflexcomb_acutecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (159,56); +ref = circumflexcomb_acutecomb; +} +); +width = 848; +} +); +unicode = 7844; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexdotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexdotbelow.glyph new file mode 100644 index 00000000..0a6df617 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexdotbelow.glyph @@ -0,0 +1,318 @@ +{ +color = 6; +glyphname = Acircumflexdotbelow; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (130,0); +ref = dotbelowcomb; +}, +{ +pos = (64,57); +ref = circumflexcomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (131,0); +ref = dotbelowcomb; +}, +{ +pos = (32,51); +ref = circumflexcomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (330,0); +ref = dotbelowcomb; +}, +{ +pos = (223,57); +ref = circumflexcomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (282,0); +ref = dotbelowcomb; +}, +{ +pos = (144,56); +ref = circumflexcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (129,0); +ref = dotbelowcomb; +}, +{ +pos = (63,57); +ref = circumflexcomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (131,0); +ref = dotbelowcomb; +}, +{ +pos = (32,51); +ref = circumflexcomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (275,0); +ref = dotbelowcomb; +}, +{ +pos = (183,57); +ref = circumflexcomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (262,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (140,51); +ref = circumflexcomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (354,0); +ref = dotbelowcomb; +}, +{ +pos = (247,57); +ref = circumflexcomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (297,0); +ref = dotbelowcomb; +}, +{ +pos = (159,56); +ref = circumflexcomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (263,0); +ref = dotbelowcomb; +}, +{ +pos = (173,57); +ref = circumflexcomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (252,0); +ref = dotbelowcomb; +}, +{ +pos = (134,51); +ref = circumflexcomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (138,0); +ref = dotbelowcomb; +}, +{ +pos = (78,57); +ref = circumflexcomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (140,0); +ref = dotbelowcomb; +}, +{ +pos = (38,51); +ref = circumflexcomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (271,0); +ref = dotbelowcomb; +}, +{ +pos = (176,57); +ref = circumflexcomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (246,0); +ref = dotbelowcomb; +}, +{ +pos = (124,51); +ref = circumflexcomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (338,23); +ref = dotbelowcomb; +}, +{ +pos = (228,57); +ref = circumflexcomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (277,0); +ref = dotbelowcomb; +}, +{ +pos = (136,56); +ref = circumflexcomb; +} +); +width = 848; +} +); +unicode = 7852; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexdotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..8f04ade0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexdotbelow.ss01.glyph @@ -0,0 +1,314 @@ +{ +color = 6; +glyphname = Acircumflexdotbelow.ss01; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (138,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (64,57); +ref = circumflexcomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (32,51); +ref = circumflexcomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (343,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (223,57); +ref = circumflexcomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (294,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (144,56); +ref = circumflexcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (137,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (63,57); +ref = circumflexcomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (32,51); +ref = circumflexcomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (288,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (183,57); +ref = circumflexcomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = A; +}, +{ +pos = (261,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (150,51); +ref = circumflexcomb; +} +); +width = 759; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (367,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (247,57); +ref = circumflexcomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (309,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (159,56); +ref = circumflexcomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (276,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (173,57); +ref = circumflexcomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (239,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (134,51); +ref = circumflexcomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (146,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (78,57); +ref = circumflexcomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (131,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (38,51); +ref = circumflexcomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (284,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (176,57); +ref = circumflexcomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (237,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (124,51); +ref = circumflexcomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (349,23); +ref = dotbelowcomb.ss01; +}, +{ +pos = (228,57); +ref = circumflexcomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (291,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (136,56); +ref = circumflexcomb; +} +); +width = 848; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexgrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexgrave.glyph new file mode 100644 index 00000000..3ff6532c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexgrave.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Acircumflexgrave; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (64,57); +ref = circumflexcomb_gravecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (43,51); +ref = circumflexcomb_gravecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (223,57); +ref = circumflexcomb_gravecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (168,56); +ref = circumflexcomb_gravecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (63,57); +ref = circumflexcomb_gravecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (43,51); +ref = circumflexcomb_gravecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (183,57); +ref = circumflexcomb_gravecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (140,51); +ref = circumflexcomb_gravecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (247,57); +ref = circumflexcomb_gravecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (183,56); +ref = circumflexcomb_gravecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (173,57); +ref = circumflexcomb_gravecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (133,51); +ref = circumflexcomb_gravecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (78,57); +ref = circumflexcomb_gravecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (50,51); +ref = circumflexcomb_gravecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (176,57); +ref = circumflexcomb_gravecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (126,51); +ref = circumflexcomb_gravecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (228,57); +ref = circumflexcomb_gravecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (159,56); +ref = circumflexcomb_gravecomb; +} +); +width = 848; +} +); +unicode = 7846; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexhookabove.glyph new file mode 100644 index 00000000..c6d3a2dc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflexhookabove.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Acircumflexhookabove; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (64,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (43,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (223,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (168,56); +ref = circumflexcomb_hookabovecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (63,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (43,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (183,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (140,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (247,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (183,56); +ref = circumflexcomb_hookabovecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (173,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (133,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (78,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (50,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (176,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (126,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (228,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (159,56); +ref = circumflexcomb_hookabovecomb; +} +); +width = 848; +} +); +unicode = 7848; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflextilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflextilde.glyph new file mode 100644 index 00000000..a63a0d8e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_circumflextilde.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Acircumflextilde; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (64,57); +ref = circumflexcomb_tildecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (43,51); +ref = circumflexcomb_tildecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (223,57); +ref = circumflexcomb_tildecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (168,56); +ref = circumflexcomb_tildecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (63,57); +ref = circumflexcomb_tildecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (43,51); +ref = circumflexcomb_tildecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (183,57); +ref = circumflexcomb_tildecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (140,51); +ref = circumflexcomb_tildecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (247,57); +ref = circumflexcomb_tildecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (183,56); +ref = circumflexcomb_tildecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (173,57); +ref = circumflexcomb_tildecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (134,51); +ref = circumflexcomb_tildecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (78,57); +ref = circumflexcomb_tildecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (49,51); +ref = circumflexcomb_tildecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (169,57); +ref = circumflexcomb_tildecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (126,51); +ref = circumflexcomb_tildecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (228,57); +ref = circumflexcomb_tildecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (167,56); +ref = circumflexcomb_tildecomb; +} +); +width = 848; +} +); +unicode = 7850; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_dieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_dieresis.glyph new file mode 100644 index 00000000..4ab2006e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_dieresis.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Adieresis; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (75,57); +ref = dieresiscomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (24,51); +ref = dieresiscomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (225,57); +ref = dieresiscomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (152,51); +ref = dieresiscomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (74,57); +ref = dieresiscomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (24,51); +ref = dieresiscomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (185,57); +ref = dieresiscomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (144,51); +ref = dieresiscomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (249,57); +ref = dieresiscomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (167,51); +ref = dieresiscomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (175,57); +ref = dieresiscomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (138,51); +ref = dieresiscomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (84,57); +ref = dieresiscomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (23,51); +ref = dieresiscomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (181,57); +ref = dieresiscomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (124,51); +ref = dieresiscomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (232,57); +ref = dieresiscomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (143,51); +ref = dieresiscomb; +} +); +width = 848; +} +); +unicode = 196; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_dieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_dieresis.ss01.glyph new file mode 100644 index 00000000..1e83c580 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_dieresis.ss01.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Adieresis.ss01; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (86,57); +ref = dieresiscomb.ss01; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (25,51); +ref = dieresiscomb.ss01; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (258,57); +ref = dieresiscomb.ss01; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (174,51); +ref = dieresiscomb.ss01; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (85,57); +ref = dieresiscomb.ss01; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (25,51); +ref = dieresiscomb.ss01; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (212,57); +ref = dieresiscomb.ss01; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = A; +}, +{ +pos = (166,51); +ref = dieresiscomb.ss01; +} +); +width = 759; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (282,57); +ref = dieresiscomb.ss01; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (189,51); +ref = dieresiscomb.ss01; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (200,57); +ref = dieresiscomb.ss01; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (150,51); +ref = dieresiscomb.ss01; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (97,57); +ref = dieresiscomb.ss01; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (31,51); +ref = dieresiscomb.ss01; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (203,57); +ref = dieresiscomb.ss01; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (140,51); +ref = dieresiscomb.ss01; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (269,57); +ref = dieresiscomb.ss01; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (172,51); +ref = dieresiscomb.ss01; +} +); +width = 848; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_dotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_dotbelow.glyph new file mode 100644 index 00000000..e22238a5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_dotbelow.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Adotbelow; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (130,0); +ref = dotbelowcomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (131,0); +ref = dotbelowcomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (330,0); +ref = dotbelowcomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (282,0); +ref = dotbelowcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (129,0); +ref = dotbelowcomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (131,0); +ref = dotbelowcomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (275,0); +ref = dotbelowcomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (262,0); +ref = dotbelowcomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (354,0); +ref = dotbelowcomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (297,0); +ref = dotbelowcomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (263,0); +ref = dotbelowcomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (252,0); +ref = dotbelowcomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (138,0); +ref = dotbelowcomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (140,0); +ref = dotbelowcomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (271,0); +ref = dotbelowcomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (246,0); +ref = dotbelowcomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (338,23); +ref = dotbelowcomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (277,0); +ref = dotbelowcomb; +} +); +width = 848; +} +); +unicode = 7840; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_dotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_dotbelow.ss01.glyph new file mode 100644 index 00000000..cce5275c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_dotbelow.ss01.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Adotbelow.ss01; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (138,0); +ref = dotbelowcomb.ss01; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (343,0); +ref = dotbelowcomb.ss01; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (294,0); +ref = dotbelowcomb.ss01; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (137,0); +ref = dotbelowcomb.ss01; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (288,0); +ref = dotbelowcomb.ss01; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = A; +}, +{ +pos = (261,0); +ref = dotbelowcomb.ss01; +} +); +width = 759; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (367,0); +ref = dotbelowcomb.ss01; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (309,0); +ref = dotbelowcomb.ss01; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (276,0); +ref = dotbelowcomb.ss01; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (239,0); +ref = dotbelowcomb.ss01; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (146,0); +ref = dotbelowcomb.ss01; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (131,0); +ref = dotbelowcomb.ss01; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (284,0); +ref = dotbelowcomb.ss01; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (237,0); +ref = dotbelowcomb.ss01; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (349,23); +ref = dotbelowcomb.ss01; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (291,0); +ref = dotbelowcomb.ss01; +} +); +width = 848; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_grave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_grave.glyph new file mode 100644 index 00000000..03b32e13 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_grave.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Agrave; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (59,57); +ref = gravecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (40,51); +ref = gravecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (258,57); +ref = gravecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (201,56); +ref = gravecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (58,57); +ref = gravecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (40,51); +ref = gravecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (213,57); +ref = gravecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (178,51); +ref = gravecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (282,57); +ref = gravecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (216,56); +ref = gravecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (201,57); +ref = gravecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (174,51); +ref = gravecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (75,57); +ref = gravecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,51); +ref = gravecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (209,57); +ref = gravecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (157,51); +ref = gravecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (264,57); +ref = gravecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (195,56); +ref = gravecomb; +} +); +width = 848; +} +); +unicode = 192; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_hookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_hookabove.glyph new file mode 100644 index 00000000..afaaf449 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_hookabove.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Ahookabove; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (112,57); +ref = hookabovecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (110,50); +ref = hookabovecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (294,57); +ref = hookabovecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (282,51); +ref = hookabovecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (111,57); +ref = hookabovecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (110,50); +ref = hookabovecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (239,57); +ref = hookabovecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (224,51); +ref = hookabovecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (318,57); +ref = hookabovecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (297,51); +ref = hookabovecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (227,57); +ref = hookabovecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (217,51); +ref = hookabovecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (104,56); +ref = hookabovecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (109,49); +ref = hookabovecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (239,56); +ref = hookabovecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (198,50); +ref = hookabovecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (306,56); +ref = hookabovecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (260,48); +ref = hookabovecomb; +} +); +width = 848; +} +); +unicode = 7842; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_macron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_macron.glyph new file mode 100644 index 00000000..7ed23b8e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_macron.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Amacron; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (56,58); +ref = macroncomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,49); +ref = macroncomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (174,58); +ref = macroncomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (171,56); +ref = macroncomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,58); +ref = macroncomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (55,49); +ref = macroncomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (147,57); +ref = macroncomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (145,51); +ref = macroncomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (198,58); +ref = macroncomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (186,56); +ref = macroncomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (137,57); +ref = macroncomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (139,51); +ref = macroncomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (70,58); +ref = macroncomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (61,49); +ref = macroncomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (142,57); +ref = macroncomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (145,51); +ref = macroncomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (180,58); +ref = macroncomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (164,56); +ref = macroncomb; +} +); +width = 848; +} +); +unicode = 256; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_ogonek.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_ogonek.glyph new file mode 100644 index 00000000..de6e467b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_ogonek.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Aogonek; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (241,0); +ref = ogonekcomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (290,0); +ref = ogonekcomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (604,0); +ref = ogonekcomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (570,0); +ref = ogonekcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (235,0); +ref = ogonekcomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (300,0); +ref = ogonekcomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (494,0); +ref = ogonekcomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (477,0); +ref = ogonekcomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (647,0); +ref = ogonekcomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (589,0); +ref = ogonekcomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (470,0); +ref = ogonekcomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (470,0); +ref = ogonekcomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (248,0); +ref = ogonekcomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (291,0); +ref = ogonekcomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (475,0); +ref = ogonekcomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (434,0); +ref = ogonekcomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (599,0); +ref = ogonekcomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (549,0); +ref = ogonekcomb; +} +); +width = 848; +} +); +unicode = 260; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_ring.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_ring.glyph new file mode 100644 index 00000000..bb13c89c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_ring.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Aring; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (90,57); +ref = ringcomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (95,51); +ref = ringcomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (254,57); +ref = ringcomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (251,56); +ref = ringcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (89,57); +ref = ringcomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (95,51); +ref = ringcomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (214,57); +ref = ringcomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (218,51); +ref = ringcomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (278,57); +ref = ringcomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (266,56); +ref = ringcomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (202,57); +ref = ringcomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (212,51); +ref = ringcomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (105,57); +ref = ringcomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (102,51); +ref = ringcomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (209,57); +ref = ringcomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (198,51); +ref = ringcomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (258,57); +ref = ringcomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (242,51); +ref = ringcomb; +} +); +width = 848; +} +); +unicode = 197; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/A_tilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/A_tilde.glyph new file mode 100644 index 00000000..77ccea82 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/A_tilde.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Atilde; +kernLeft = KO_A; +kernRight = KO_A; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = A; +}, +{ +pos = (53,57); +ref = tildecomb; +} +); +width = 386; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = A; +}, +{ +pos = (17,50); +ref = tildecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = A; +}, +{ +pos = (195,57); +ref = tildecomb; +} +); +width = 803; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = A; +}, +{ +pos = (171,56); +ref = tildecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (52,57); +ref = tildecomb; +} +); +width = 344; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = A; +}, +{ +pos = (17,50); +ref = tildecomb; +} +); +width = 490; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = A; +}, +{ +pos = (158,57); +ref = tildecomb; +} +); +width = 654; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = A; +}, +{ +alignment = -1; +pos = (129,51); +ref = tildecomb; +} +); +width = 743; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (219,57); +ref = tildecomb; +} +); +width = 830; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = A; +}, +{ +pos = (186,56); +ref = tildecomb; +} +); +width = 884; +}, +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (148,57); +ref = tildecomb; +} +); +width = 670; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (123,51); +ref = tildecomb; +} +); +width = 750; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = A; +}, +{ +pos = (68,57); +ref = tildecomb; +} +); +width = 389; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = A; +}, +{ +pos = (22,50); +ref = tildecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = A; +}, +{ +pos = (154,57); +ref = tildecomb; +} +); +width = 663; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = A; +}, +{ +pos = (109,51); +ref = tildecomb; +} +); +width = 724; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = A; +}, +{ +pos = (202,57); +ref = tildecomb; +} +); +width = 794; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = A; +}, +{ +pos = (168,51); +ref = tildecomb; +} +); +width = 848; +} +); +unicode = 195; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/B_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/B_.glyph new file mode 100644 index 00000000..b53f63d8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/B_.glyph @@ -0,0 +1,1856 @@ +{ +glyphname = B; +kernLeft = KO_H; +kernRight = KO_B; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (232,0); +}, +{ +name = top; +pos = (232,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(226,0,ls), +(370,0,o), +(453,70,o), +(453,206,cs), +(453,296,o), +(420,360,o), +(357,381,c), +(357,387,l), +(406,404,o), +(438,465,o), +(438,537,cs), +(438,654,o), +(386,729,o), +(244,729,cs), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(208,309,l), +(225,309,ls), +(256,309,o), +(276,285,o), +(276,225,cs), +(276,172,o), +(263,141,o), +(224,141,cs), +(208,141,l) +); +}, +{ +closed = 1; +nodes = ( +(208,591,l), +(225,591,ls), +(255,591,o), +(271,568,o), +(271,513,cs), +(271,465,o), +(260,433,o), +(225,433,cs), +(208,433,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,0,ls), +(370,0,o), +(453,70,o), +(453,206,cs), +(453,297,o), +(420,361,o), +(335,381,c), +(335,387,l), +(406,403,o), +(438,464,o), +(438,537,cs), +(438,654,o), +(386,729,o), +(244,729,cs), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(208,591,l), +(225,591,ls), +(255,591,o), +(271,568,o), +(271,513,cs), +(271,465,o), +(260,433,o), +(225,433,cs), +(192,433,l), +(192,309,l), +(225,309,ls), +(256,309,o), +(276,285,o), +(276,225,cs), +(276,172,o), +(263,141,o), +(224,141,cs), +(208,141,l) +); +} +); +width = 466; +}, +{ +anchors = ( +{ +name = bottom; +pos = (180,0); +}, +{ +name = top; +pos = (180,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(172,0,ls), +(291,0,o), +(336,81,o), +(336,200,cs), +(336,279,o), +(306,355,o), +(241,374,c), +(241,376,l), +(287,392,o), +(323,456,o), +(323,543,cs), +(323,670,o), +(271,729,o), +(173,729,cs), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(97,359,l), +(183,359,ls), +(258,359,o), +(302,299,o), +(302,201,cs), +(302,77,o), +(258,29,o), +(172,29,cs), +(97,29,l) +); +}, +{ +closed = 1; +nodes = ( +(97,700,l), +(172,700,ls), +(260,700,o), +(292,635,o), +(292,539,cs), +(292,449,o), +(252,389,o), +(182,389,cs), +(97,389,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,0,ls), +(291,0,o), +(336,81,o), +(336,200,cs), +(336,279,o), +(303,355,o), +(232,373,c), +(232,378,l), +(284,392,o), +(323,456,o), +(323,543,cs), +(323,670,o), +(271,729,o), +(173,729,cs), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(97,700,l), +(172,700,ls), +(260,700,o), +(292,635,o), +(292,539,cs), +(292,449,o), +(252,389,o), +(182,389,cs), +(90,389,l), +(90,359,l), +(183,359,ls), +(258,359,o), +(302,299,o), +(302,201,cs), +(302,77,o), +(258,29,o), +(172,29,cs), +(97,29,l) +); +} +); +width = 373; +}, +{ +anchors = ( +{ +name = bottom; +pos = (361,0); +}, +{ +name = top; +pos = (361,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(461,0,ls), +(604,0,o), +(695,78,o), +(695,200,cs), +(695,285,o), +(646,356,o), +(549,374,c), +(549,377,l), +(637,397,o), +(676,464,o), +(676,543,cs), +(676,654,o), +(597,729,o), +(462,729,cs), +(72,729,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(110,694,l), +(461,694,ls), +(568,694,o), +(638,635,o), +(638,538,cs), +(638,450,o), +(582,391,o), +(477,391,cs), +(101,391,l), +(101,356,l), +(479,356,ls), +(591,356,o), +(655,298,o), +(655,202,cs), +(655,104,o), +(589,36,o), +(461,36,cs), +(110,36,l) +); +} +); +width = 732; +}, +{ +anchors = ( +{ +name = bottom; +pos = (382,0); +}, +{ +name = top; +pos = (382,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,0,ls), +(677,0,o), +(761,86,o), +(761,206,cs), +(761,291,o), +(711,356,o), +(621,376,c), +(621,385,l), +(694,406,o), +(738,465,o), +(738,538,cs), +(738,667,o), +(646,729,o), +(479,729,cs), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,298,l), +(420,298,ls), +(485,298,o), +(518,279,o), +(518,228,cs), +(518,184,o), +(494,155,o), +(421,155,cs), +(275,155,l) +); +}, +{ +closed = 1; +nodes = ( +(275,573,l), +(411,573,ls), +(478,573,o), +(497,549,o), +(497,511,cs), +(497,472,o), +(474,447,o), +(410,447,cs), +(275,447,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,0,ls), +(650,0,o), +(755,66,o), +(755,206,cs), +(755,302,o), +(700,358,o), +(612,377,c), +(612,384,l), +(684,407,o), +(732,461,o), +(732,544,cs), +(732,665,o), +(654,729,o), +(476,729,cs), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,573,l), +(412,573,ls), +(468,573,o), +(506,559,o), +(506,513,cs), +(506,473,o), +(484,447,o), +(413,447,cs), +(259,447,l), +(259,298,l), +(422,298,ls), +(493,298,o), +(526,277,o), +(526,227,cs), +(526,184,o), +(502,155,o), +(422,155,cs), +(275,155,l) +); +} +); +width = 766; +}, +{ +anchors = ( +{ +name = bottom; +pos = (166,0); +}, +{ +name = top; +pos = (164,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(172,0,ls), +(291,0,o), +(336,81,o), +(336,200,cs), +(336,279,o), +(306,355,o), +(241,374,c), +(241,376,l), +(287,392,o), +(323,456,o), +(323,543,cs), +(323,670,o), +(271,729,o), +(173,729,cs), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(97,359,l), +(183,359,ls), +(258,359,o), +(302,299,o), +(302,201,cs), +(302,77,o), +(258,29,o), +(172,29,cs), +(97,29,l) +); +}, +{ +closed = 1; +nodes = ( +(97,700,l), +(172,700,ls), +(260,700,o), +(292,635,o), +(292,539,cs), +(292,449,o), +(252,389,o), +(182,389,cs), +(97,389,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,0,ls), +(264,0,o), +(310,67,o), +(310,215,cs), +(310,321,o), +(276,389,o), +(207,405,c), +(207,406,l), +(265,421,o), +(294,480,o), +(294,558,cs), +(294,669,o), +(250,729,o), +(155,729,cs), +(42,729,l), +(42,0,l) +); +}, +{ +closed = 1; +nodes = ( +(73,700,l), +(155,700,ls), +(231,700,o), +(263,649,o), +(263,554,cs), +(263,471,o), +(227,419,o), +(164,419,cs), +(66,419,l), +(66,389,l), +(167,389,ls), +(237,389,o), +(276,322,o), +(276,216,cs), +(276,78,o), +(240,29,o), +(157,29,cs), +(73,29,l) +); +} +); +width = 330; +}, +{ +anchors = ( +{ +name = bottom; +pos = (222,0); +}, +{ +name = top; +pos = (222,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(227,0,ls), +(371,0,o), +(454,70,o), +(454,206,cs), +(454,296,o), +(421,360,o), +(358,381,c), +(358,387,l), +(407,404,o), +(439,465,o), +(439,537,cs), +(439,654,o), +(387,729,o), +(245,729,cs), +(30,729,l), +(30,0,l) +); +}, +{ +closed = 1; +nodes = ( +(209,309,l), +(226,309,ls), +(257,309,o), +(277,285,o), +(277,225,cs), +(277,172,o), +(264,141,o), +(225,141,cs), +(209,141,l) +); +}, +{ +closed = 1; +nodes = ( +(209,591,l), +(226,591,ls), +(256,591,o), +(272,568,o), +(272,513,cs), +(272,465,o), +(261,433,o), +(226,433,cs), +(209,433,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,ls), +(373,0,o), +(450,71,o), +(450,212,cs), +(450,318,o), +(414,376,o), +(336,395,c), +(336,396,l), +(401,411,o), +(439,466,o), +(439,543,cs), +(439,666,o), +(373,729,o), +(244,729,cs), +(18,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(198,591,l), +(219,591,ls), +(248,591,o), +(263,568,o), +(263,519,cs), +(263,476,o), +(253,444,o), +(219,444,cs), +(182,444,l), +(182,320,l), +(215,320,ls), +(245,320,o), +(264,296,o), +(264,231,cs), +(264,172,o), +(252,141,o), +(214,141,cs), +(198,141,l) +); +} +); +width = 454; +}, +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = top; +pos = (312,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,0,ls), +(518,0,o), +(610,79,o), +(610,208,cs), +(610,301,o), +(560,374,o), +(462,392,c), +(462,393,l), +(545,413,o), +(583,480,o), +(583,551,cs), +(583,655,o), +(505,729,o), +(371,729,cs), +(70,729,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(108,694,l), +(370,694,ls), +(476,694,o), +(545,636,o), +(545,546,cs), +(545,466,o), +(490,408,o), +(386,408,cs), +(99,408,l), +(99,373,l), +(392,373,ls), +(504,373,o), +(570,312,o), +(570,210,cs), +(570,105,o), +(503,36,o), +(374,36,cs), +(108,36,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +2, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +4 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +} +); +}; +width = 644; +}, +{ +anchors = ( +{ +name = bottom; +pos = (323,0); +}, +{ +name = top; +pos = (323,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(412,0,ls), +(587,0,o), +(685,68,o), +(685,212,cs), +(685,293,o), +(641,359,o), +(562,376,c), +(562,385,l), +(626,405,o), +(665,468,o), +(665,541,cs), +(665,654,o), +(592,729,o), +(439,729,cs), +(59,729,l), +(59,0,l) +); +}, +{ +closed = 1; +nodes = ( +(256,299,l), +(390,299,ls), +(443,299,o), +(479,278,o), +(479,224,cs), +(479,181,o), +(454,153,o), +(388,153,cs), +(256,153,l) +); +}, +{ +closed = 1; +nodes = ( +(256,576,l), +(380,576,ls), +(429,576,o), +(461,558,o), +(461,513,cs), +(461,473,o), +(439,446,o), +(381,446,cs), +(256,446,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,0,ls), +(559,0,o), +(657,68,o), +(657,214,cs), +(657,298,o), +(612,369,o), +(510,385,c), +(510,386,l), +(586,405,o), +(635,466,o), +(635,543,cs), +(635,654,o), +(562,729,o), +(409,729,cs), +(30,729,l), +(30,0,l) +); +}, +{ +closed = 1; +nodes = ( +(227,576,l), +(346,576,ls), +(398,576,o), +(425,555,o), +(425,515,cs), +(425,477,o), +(392,450,o), +(347,450,cs), +(211,450,l), +(211,303,l), +(358,303,ls), +(412,303,o), +(447,273,o), +(447,226,cs), +(447,181,o), +(422,153,o), +(356,153,cs), +(227,153,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 660; +}, +{ +anchors = ( +{ +name = bottom; +pos = (351,0); +}, +{ +name = top; +pos = (351,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,0,ls), +(598,0,o), +(689,78,o), +(689,206,cs), +(689,306,o), +(633,374,o), +(539,387,c), +(539,388,l), +(623,408,o), +(660,476,o), +(660,549,cs), +(660,654,o), +(581,729,o), +(446,729,cs), +(62,729,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(100,694,l), +(445,694,ls), +(552,694,o), +(622,635,o), +(622,544,cs), +(622,462,o), +(566,403,o), +(461,403,cs), +(91,403,l), +(91,368,l), +(473,368,ls), +(585,368,o), +(649,310,o), +(649,208,cs), +(649,104,o), +(583,36,o), +(455,36,cs), +(100,36,l) +); +} +); +width = 712; +}, +{ +anchors = ( +{ +name = bottom; +pos = (367,0); +}, +{ +name = top; +pos = (367,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,0,ls), +(677,0,o), +(761,86,o), +(761,206,cs), +(761,291,o), +(711,356,o), +(621,376,c), +(621,385,l), +(694,406,o), +(738,465,o), +(738,538,cs), +(738,667,o), +(646,729,o), +(479,729,cs), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,298,l), +(420,298,ls), +(485,298,o), +(518,279,o), +(518,228,cs), +(518,184,o), +(494,155,o), +(421,155,cs), +(275,155,l) +); +}, +{ +closed = 1; +nodes = ( +(275,573,l), +(411,573,ls), +(478,573,o), +(497,549,o), +(497,511,cs), +(497,472,o), +(474,447,o), +(410,447,cs), +(275,447,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(453,0,ls), +(646,0,o), +(744,71,o), +(744,212,cs), +(744,307,o), +(694,365,o), +(597,385,c), +(597,386,l), +(671,410,o), +(715,469,o), +(715,545,cs), +(715,665,o), +(627,729,o), +(459,729,cs), +(32,729,l), +(32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(260,573,l), +(395,573,ls), +(451,573,o), +(489,559,o), +(489,514,cs), +(489,475,o), +(467,449,o), +(396,449,cs), +(244,449,l), +(244,300,l), +(411,300,ls), +(482,300,o), +(515,279,o), +(515,228,cs), +(515,184,o), +(491,155,o), +(411,155,cs), +(260,155,l) +); +} +); +width = 744; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (317,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(392,0,ls), +(533,0,o), +(622,80,o), +(622,206,cs), +(622,294,o), +(573,367,o), +(478,386,c), +(478,389,l), +(555,408,o), +(592,472,o), +(592,549,cs), +(592,656,o), +(515,729,o), +(382,729,cs), +(105,729,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(142,694,l), +(381,694,ls), +(486,694,o), +(554,637,o), +(554,544,cs), +(554,460,o), +(502,403,o), +(403,403,cs), +(133,403,l), +(133,368,l), +(410,368,ls), +(520,368,o), +(582,308,o), +(582,208,cs), +(582,106,o), +(518,36,o), +(392,36,cs), +(142,36,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +2, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +4 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +} +); +}; +width = 685; +}, +{ +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(417,0,ls), +(592,0,o), +(690,68,o), +(690,212,cs), +(690,293,o), +(646,359,o), +(567,376,c), +(567,385,l), +(631,405,o), +(670,468,o), +(670,541,cs), +(670,654,o), +(597,729,o), +(444,729,cs), +(64,729,l), +(64,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,299,l), +(395,299,ls), +(448,299,o), +(484,278,o), +(484,224,cs), +(484,181,o), +(459,153,o), +(393,153,cs), +(261,153,l) +); +}, +{ +closed = 1; +nodes = ( +(261,576,l), +(385,576,ls), +(434,576,o), +(466,558,o), +(466,513,cs), +(466,473,o), +(444,446,o), +(386,446,cs), +(261,446,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(406,0,ls), +(577,0,o), +(672,68,o), +(672,212,cs), +(672,296,o), +(630,360,o), +(532,376,c), +(532,388,l), +(605,406,o), +(653,462,o), +(653,541,cs), +(653,654,o), +(582,729,o), +(434,729,cs), +(62,729,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(257,576,l), +(374,576,ls), +(421,576,o), +(450,558,o), +(450,513,cs), +(450,473,o), +(431,446,o), +(375,446,cs), +(242,446,l), +(242,299,l), +(384,299,ls), +(434,299,o), +(468,278,o), +(468,224,cs), +(468,181,o), +(445,153,o), +(382,153,cs), +(257,153,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 715; +}, +{ +anchors = ( +{ +name = bottom; +pos = (137,0); +}, +{ +name = top; +pos = (288,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,ls), +(250,0,o), +(320,89,o), +(325,240,cs), +(327,301,o), +(303,351,o), +(260,369,c), +(260,372,l), +(333,397,o), +(382,485,o), +(386,587,cs), +(389,672,o), +(348,729,o), +(259,729,cs), +(164,729,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(117,359,l), +(192,359,ls), +(261,359,o), +(295,315,o), +(293,242,cs), +(288,106,o), +(227,29,o), +(124,29,cs), +(49,29,l) +); +}, +{ +closed = 1; +nodes = ( +(188,700,l), +(253,700,ls), +(317,700,o), +(357,668,o), +(354,588,cs), +(350,479,o), +(297,389,o), +(209,389,cs), +(125,389,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,ls), +(250,0,o), +(320,89,o), +(325,240,cs), +(327,301,o), +(303,351,o), +(247,370,c), +(247,373,l), +(335,398,o), +(386,490,o), +(386,596,cs), +(386,676,o), +(345,729,o), +(259,729,cs), +(164,729,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(188,700,l), +(253,700,ls), +(315,700,o), +(354,670,o), +(354,596,cs), +(354,484,o), +(299,389,o), +(209,389,cs), +(117,389,l), +(109,359,l), +(192,359,ls), +(261,359,o), +(295,315,o), +(293,242,cs), +(288,106,o), +(227,29,o), +(124,29,cs), +(49,29,l) +); +} +); +width = 371; +}, +{ +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (338,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,0,ls), +(343,0,o), +(439,95,o), +(444,247,cs), +(446,303,o), +(427,353,o), +(381,375,c), +(383,380,l), +(447,401,o), +(496,474,o), +(499,569,cs), +(502,661,o), +(457,729,o), +(325,729,cs), +(125,729,l), +(-27,0,l) +); +}, +{ +closed = 1; +nodes = ( +(217,309,l), +(231,309,ls), +(260,309,o), +(273,289,o), +(271,253,cs), +(269,189,o), +(240,141,o), +(199,141,cs), +(180,141,l) +); +}, +{ +closed = 1; +nodes = ( +(275,590,l), +(290,590,ls), +(314,590,o), +(329,572,o), +(328,538,cs), +(326,482,o), +(297,433,o), +(258,433,cs), +(241,433,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,0,ls), +(358,0,o), +(444,114,o), +(444,242,cs), +(444,306,o), +(408,363,o), +(352,374,c), +(353,381,l), +(440,397,o), +(499,476,o), +(499,576,cs), +(499,668,o), +(444,729,o), +(325,729,cs), +(125,729,l), +(-27,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,590,l), +(290,590,ls), +(313,590,o), +(328,573,o), +(328,541,cs), +(328,484,o), +(298,433,o), +(258,433,cs), +(225,433,l), +(201,309,l), +(231,309,ls), +(258,309,o), +(271,292,o), +(271,260,cs), +(271,193,o), +(242,141,o), +(199,141,cs), +(180,141,l) +); +} +); +width = 468; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (437,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,0,ls), +(520,0,o), +(621,86,o), +(621,218,cs), +(621,296,o), +(577,354,o), +(500,373,c), +(501,377,l), +(593,399,o), +(658,466,o), +(658,563,cs), +(658,664,o), +(585,729,o), +(468,729,cs), +(191,729,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(222,693,l), +(468,693,ls), +(563,693,o), +(618,645,o), +(618,564,cs), +(618,457,o), +(541,393,o), +(415,393,cs), +(150,393,l), +(143,358,l), +(418,358,ls), +(517,358,o), +(581,309,o), +(581,220,cs), +(581,106,o), +(501,36,o), +(361,36,cs), +(85,36,l) +); +} +); +width = 685; +}, +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = top; +pos = (455,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(368,0,ls), +(542,0,o), +(660,72,o), +(665,224,cs), +(668,296,o), +(632,355,o), +(578,370,c), +(580,379,l), +(647,398,o), +(706,464,o), +(709,555,cs), +(713,657,o), +(648,729,o), +(494,729,cs), +(154,729,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,300,l), +(393,300,ls), +(432,300,o), +(462,282,o), +(461,236,cs), +(459,182,o), +(424,153,o), +(366,153,cs), +(230,153,l) +); +}, +{ +closed = 1; +nodes = ( +(319,576,l), +(442,576,ls), +(482,576,o), +(505,557,o), +(503,522,cs), +(502,472,o), +(467,445,o), +(413,445,cs), +(292,445,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,0,ls), +(553,0,o), +(660,77,o), +(665,212,cs), +(668,289,o), +(625,351,o), +(556,371,c), +(557,378,l), +(648,403,o), +(703,467,o), +(706,550,cs), +(710,657,o), +(645,729,o), +(491,729,cs), +(154,729,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,576,l), +(438,576,ls), +(477,576,o), +(503,558,o), +(503,521,cs), +(503,474,o), +(469,445,o), +(415,445,cs), +(276,445,l), +(244,300,l), +(387,300,ls), +(431,300,o), +(461,280,o), +(461,238,cs), +(461,185,o), +(422,153,o), +(362,153,cs), +(230,153,l) +); +} +); +width = 704; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = top; +pos = (466,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(402,0,ls), +(573,0,o), +(673,83,o), +(678,221,cs), +(681,295,o), +(635,357,o), +(567,372,c), +(567,375,l), +(661,395,o), +(728,468,o), +(732,564,cs), +(735,669,o), +(673,729,o), +(537,729,cs), +(169,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(201,694,l), +(530,694,ls), +(639,694,o), +(695,647,o), +(692,562,cs), +(688,456,o), +(613,391,o), +(483,391,cs), +(129,391,l), +(120,356,l), +(485,356,ls), +(590,356,o), +(641,307,o), +(638,219,cs), +(634,104,o), +(550,36,o), +(409,36,cs), +(63,36,l) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = bottom; +pos = (336,0); +}, +{ +name = top; +pos = (487,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(425,0,ls), +(622,0,o), +(739,81,o), +(739,220,cs), +(739,303,o), +(692,353,o), +(630,371,c), +(631,378,l), +(727,403,o), +(781,467,o), +(781,556,cs), +(781,665,o), +(704,729,o), +(549,729,cs), +(143,729,l), +(-9,0,l) +); +}, +{ +closed = 1; +nodes = ( +(338,573,l), +(472,573,ls), +(520,573,o), +(550,559,o), +(550,520,cs), +(550,469,o), +(516,446,o), +(448,446,cs), +(295,446,l), +(265,297,l), +(424,297,ls), +(478,297,o), +(511,281,o), +(511,238,cs), +(511,181,o), +(474,155,o), +(397,155,cs), +(251,155,l) +); +} +); +width = 764; +} +); +metricLeft = H; +unicode = 66; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/C_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/C_.glyph new file mode 100644 index 00000000..79ddb6cb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/C_.glyph @@ -0,0 +1,1254 @@ +{ +glyphname = C; +kernLeft = KO_O; +kernRight = KO_C; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (242,0); +}, +{ +name = top; +pos = (242,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-89,140,o), +(38,-10,o), +(273,-10,cs), +(491,-10,o), +(636,121,o), +(636,365,cs), +(636,587,o), +(510,738,o), +(273,738,cs), +(55,738,o), +(-89,607,o), +(-89,365,cs) +); +}, +{ +closed = 1; +nodes = ( +(125,481,o), +(176,562,o), +(273,562,cs), +(363,562,o), +(423,491,o), +(423,365,cs), +(423,247,o), +(372,166,o), +(273,166,cs), +(184,166,o), +(125,235,o), +(125,365,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,-9,o), +(462,69,o), +(467,270,c), +(297,270,l), +(293,190,o), +(286,147,o), +(248,147,cs), +(209,147,o), +(197,203,o), +(197,365,cs), +(197,515,o), +(206,583,o), +(248,583,cs), +(284,583,o), +(292,546,o), +(297,465,c), +(467,465,l), +(458,668,o), +(383,739,o), +(247,739,cs), +(67,739,o), +(16,593,o), +(16,365,cs), +(16,136,o), +(65,-9,o), +(235,-9,cs) +); +} +); +width = 481; +}, +{ +anchors = ( +{ +name = bottom; +pos = (208,0); +}, +{ +name = top; +pos = (208,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(428,-8,o), +(525,71,o), +(539,238,c), +(499,238,l), +(484,87,o), +(402,28,o), +(294,28,cs), +(140,28,o), +(76,150,o), +(76,337,cs), +(76,394,ls), +(76,581,o), +(140,703,o), +(294,703,cs), +(402,703,o), +(484,644,o), +(499,493,c), +(539,493,l), +(525,660,o), +(428,739,o), +(294,739,cs), +(107,739,o), +(35,605,o), +(35,366,cs), +(35,126,o), +(107,-8,o), +(294,-8,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-10,o), +(361,39,o), +(372,234,c), +(340,234,l), +(330,88,o), +(297,19,o), +(209,19,cs), +(105,19,o), +(78,159,o), +(78,364,cs), +(78,570,o), +(105,709,o), +(210,709,cs), +(293,709,o), +(329,650,o), +(340,495,c), +(372,495,l), +(364,642,o), +(331,739,o), +(210,738,cs), +(113,737,o), +(45,666,o), +(45,364,cs), +(45,65,o), +(113,-10,o), +(210,-10,cs) +); +} +); +width = 403; +}, +{ +anchors = ( +{ +name = bottom; +pos = (401,0); +}, +{ +name = top; +pos = (401,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(607,-8,o), +(745,88,o), +(768,238,c), +(729,238,l), +(706,111,o), +(589,28,o), +(417,28,cs), +(205,28,o), +(76,162,o), +(76,364,cs), +(76,566,o), +(205,700,o), +(417,700,cs), +(582,700,o), +(703,620,o), +(729,494,c), +(768,494,l), +(739,643,o), +(603,736,o), +(417,736,cs), +(188,736,o), +(36,587,o), +(36,364,cs), +(36,142,o), +(187,-8,o), +(417,-8,cs) +); +} +); +width = 797; +}, +{ +anchors = ( +{ +name = bottom; +pos = (422,0); +}, +{ +name = top; +pos = (422,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(813,97,o), +(832,259,c), +(604,259,l), +(588,204,o), +(517,170,o), +(437,170,cs), +(320,170,o), +(243,230,o), +(243,365,cs), +(243,500,o), +(320,560,o), +(437,560,cs), +(518,560,o), +(585,524,o), +(602,471,c), +(832,471,l), +(813,630,o), +(669,739,o), +(437,739,cs), +(166,739,o), +(12,592,o), +(12,365,cs), +(12,138,o), +(166,-10,o), +(437,-10,cs) +); +} +); +width = 838; +}, +{ +anchors = ( +{ +name = bottom; +pos = (178,0); +}, +{ +name = top; +pos = (178,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(418,-8,o), +(515,71,o), +(529,238,c), +(489,238,l), +(474,87,o), +(392,28,o), +(284,28,cs), +(130,28,o), +(66,150,o), +(66,337,cs), +(66,394,ls), +(66,581,o), +(130,703,o), +(284,703,cs), +(392,703,o), +(474,644,o), +(489,493,c), +(529,493,l), +(515,660,o), +(418,739,o), +(284,739,cs), +(97,739,o), +(25,605,o), +(25,366,cs), +(25,126,o), +(97,-8,o), +(284,-8,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,-10,o), +(318,65,o), +(325,250,c), +(293,250,l), +(286,88,o), +(257,19,o), +(181,19,cs), +(92,19,o), +(61,117,o), +(61,364,cs), +(61,611,o), +(91,709,o), +(181,709,cs), +(251,709,o), +(283,649,o), +(292,478,c), +(324,478,l), +(316,662,o), +(274,738,o), +(181,738,cs), +(67,738,o), +(28,630,o), +(28,364,cs), +(28,96,o), +(68,-10,o), +(181,-10,cs) +); +} +); +width = 348; +}, +{ +anchors = ( +{ +name = bottom; +pos = (233,0); +}, +{ +name = top; +pos = (233,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-89,140,o), +(38,-10,o), +(273,-10,cs), +(491,-10,o), +(636,121,o), +(636,365,cs), +(636,587,o), +(510,738,o), +(273,738,cs), +(55,738,o), +(-89,607,o), +(-89,365,cs) +); +}, +{ +closed = 1; +nodes = ( +(125,481,o), +(176,562,o), +(273,562,cs), +(363,562,o), +(423,491,o), +(423,365,cs), +(423,247,o), +(372,166,o), +(273,166,cs), +(184,166,o), +(125,235,o), +(125,365,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,-9,o), +(457,73,o), +(463,289,c), +(285,289,l), +(281,180,o), +(270,147,o), +(239,147,cs), +(204,147,o), +(193,203,o), +(193,365,cs), +(193,515,o), +(201,583,o), +(239,583,cs), +(269,583,o), +(280,550,o), +(285,447,c), +(463,447,l), +(453,658,o), +(391,739,o), +(238,739,cs), +(56,739,o), +(5,593,o), +(5,365,cs), +(5,136,o), +(54,-9,o), +(226,-9,cs) +); +} +); +width = 466; +}, +{ +anchors = ( +{ +name = bottom; +pos = (392,0); +}, +{ +name = top; +pos = (392,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(578,-8,o), +(703,87,o), +(724,237,c), +(684,238,l), +(664,111,o), +(559,28,o), +(405,28,cs), +(216,28,o), +(101,162,o), +(101,364,cs), +(101,566,o), +(216,700,o), +(405,700,cs), +(558,700,o), +(662,615,o), +(684,494,c), +(724,494,l), +(698,643,o), +(574,736,o), +(405,736,cs), +(198,736,o), +(60,586,o), +(60,364,cs), +(60,143,o), +(197,-8,o), +(405,-8,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(568,-8,o), +(688,87,o), +(710,246,c), +(670,246,l), +(649,109,o), +(544,28,o), +(385,28,cs), +(194,28,o), +(76,163,o), +(76,364,cs), +(76,565,o), +(193,700,o), +(385,700,cs), +(541,700,o), +(647,620,o), +(670,486,c), +(710,486,l), +(683,643,o), +(562,736,o), +(385,736,cs), +(174,736,o), +(35,588,o), +(35,364,cs), +(35,142,o), +(173,-8,o), +(385,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 734; +}, +{ +anchors = ( +{ +name = bottom; +pos = (362,0); +}, +{ +name = top; +pos = (362,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(590,-10,o), +(732,98,o), +(749,258,c), +(544,258,l), +(530,200,o), +(470,162,o), +(401,162,c), +(401,-10,l) +); +}, +{ +closed = 1; +nodes = ( +(177,739,o), +(27,607,o), +(27,365,cs), +(27,122,o), +(177,-10,o), +(401,-10,c), +(401,162,l), +(301,162,o), +(235,220,o), +(235,365,cs), +(235,509,o), +(301,567,o), +(401,567,c), +(401,739,l) +); +}, +{ +closed = 1; +nodes = ( +(474,567,o), +(528,528,o), +(544,472,c), +(749,472,l), +(732,631,o), +(595,739,o), +(401,739,c), +(401,567,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(583,-10,o), +(717,94,o), +(738,270,c), +(524,270,l), +(508,201,o), +(446,162,o), +(375,162,cs), +(278,162,o), +(212,220,o), +(212,365,cs), +(212,509,o), +(278,567,o), +(375,567,cs), +(451,567,o), +(506,527,o), +(524,460,c), +(738,460,l), +(717,635,o), +(583,739,o), +(375,739,cs), +(151,739,o), +(2,607,o), +(2,365,cs), +(2,122,o), +(151,-10,o), +(375,-10,cs) +); +} +); +width = 737; +}, +{ +anchors = ( +{ +name = bottom; +pos = (391,0); +}, +{ +name = top; +pos = (391,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(600,-8,o), +(740,88,o), +(766,240,c), +(727,240,l), +(701,110,o), +(576,28,o), +(407,28,cs), +(195,28,o), +(66,162,o), +(66,364,cs), +(66,566,o), +(195,700,o), +(407,700,cs), +(574,700,o), +(698,620,o), +(726,493,c), +(765,493,l), +(734,642,o), +(595,736,o), +(407,736,cs), +(178,736,o), +(26,587,o), +(26,364,cs), +(26,142,o), +(177,-8,o), +(407,-8,cs) +); +} +); +width = 786; +}, +{ +anchors = ( +{ +name = bottom; +pos = (415,0); +}, +{ +name = top; +pos = (415,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(670,-10,o), +(826,102,o), +(848,297,c), +(612,297,l), +(592,213,o), +(531,170,o), +(430,170,cs), +(314,170,o), +(238,230,o), +(238,365,cs), +(238,499,o), +(314,559,o), +(430,559,cs), +(531,559,o), +(590,518,o), +(613,430,c), +(848,430,l), +(825,626,o), +(670,739,o), +(430,739,cs), +(158,739,o), +(3,592,o), +(3,365,cs), +(3,138,o), +(158,-10,o), +(430,-10,cs) +); +} +); +width = 848; +}, +{ +anchors = ( +{ +name = bottom; +pos = (410,0); +}, +{ +name = top; +pos = (410,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(581,-8,o), +(706,87,o), +(727,237,c), +(687,238,l), +(667,111,o), +(562,28,o), +(408,28,cs), +(219,28,o), +(104,162,o), +(104,364,cs), +(104,566,o), +(219,700,o), +(408,700,cs), +(561,700,o), +(665,615,o), +(687,494,c), +(727,494,l), +(701,643,o), +(577,736,o), +(408,736,cs), +(201,736,o), +(63,586,o), +(63,364,cs), +(63,143,o), +(200,-8,o), +(408,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(549,-8,o), +(656,77,o), +(684,214,c), +(646,214,l), +(622,101,o), +(531,28,o), +(403,28,cs), +(231,28,o), +(127,163,o), +(127,364,cs), +(127,565,o), +(230,700,o), +(403,700,cs), +(532,700,o), +(622,624,o), +(646,514,c), +(684,514,l), +(655,651,o), +(547,736,o), +(403,736,cs), +(212,736,o), +(88,588,o), +(88,364,cs), +(88,142,o), +(211,-8,o), +(403,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 765; +}, +{ +anchors = ( +{ +name = bottom; +pos = (386,0); +}, +{ +name = top; +pos = (386,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(599,-10,o), +(741,98,o), +(758,258,c), +(553,258,l), +(539,200,o), +(479,162,o), +(410,162,c), +(410,-10,l) +); +}, +{ +closed = 1; +nodes = ( +(186,739,o), +(36,607,o), +(36,365,cs), +(36,122,o), +(186,-10,o), +(410,-10,c), +(410,162,l), +(310,162,o), +(244,220,o), +(244,365,cs), +(244,509,o), +(310,567,o), +(410,567,c), +(410,739,l) +); +}, +{ +closed = 1; +nodes = ( +(483,567,o), +(537,528,o), +(553,472,c), +(758,472,l), +(741,631,o), +(604,739,o), +(410,739,c), +(410,567,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(579,-10,o), +(714,98,o), +(730,258,c), +(527,258,l), +(515,201,o), +(461,162,o), +(400,162,cs), +(312,162,o), +(252,220,o), +(252,365,cs), +(252,509,o), +(312,567,o), +(400,567,cs), +(466,567,o), +(513,526,o), +(527,472,c), +(730,472,l), +(714,631,o), +(583,739,o), +(400,739,cs), +(188,739,o), +(47,607,o), +(47,365,cs), +(47,122,o), +(188,-10,o), +(400,-10,cs) +); +} +); +width = 759; +}, +{ +anchors = ( +{ +name = bottom; +pos = (164,0); +}, +{ +name = top; +pos = (298,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(248,-9,o), +(326,46,o), +(364,234,c), +(333,234,l), +(301,100,o), +(256,20,o), +(170,20,cs), +(49,20,o), +(62,185,o), +(101,374,cs), +(147,593,o), +(204,708,o), +(294,708,cs), +(396,708,o), +(402,617,o), +(387,495,c), +(418,495,l), +(441,652,o), +(412,738,o), +(298,738,cs), +(199,738,o), +(126,645,o), +(69,375,cs), +(27,177,o), +(12,-9,o), +(167,-9,cs) +); +} +); +width = 401; +}, +{ +anchors = ( +{ +name = bottom; +pos = (206,0); +}, +{ +name = top; +pos = (341,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-9,o), +(422,73,o), +(463,270,c), +(295,270,l), +(274,187,o), +(258,145,o), +(222,147,cs), +(182,149,o), +(180,204,o), +(215,370,cs), +(246,522,o), +(270,584,o), +(311,582,cs), +(347,580,o), +(346,536,o), +(336,464,c), +(502,464,l), +(528,641,o), +(483,739,o), +(322,739,cs), +(170,739,o), +(88,616,o), +(39,382,cs), +(-8,154,o), +(3,-9,o), +(204,-9,cs) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = top; +pos = (467,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,-10,o), +(655,84,o), +(692,237,c), +(654,237,l), +(619,112,o), +(507,27,o), +(359,27,cs), +(207,27,o), +(109,127,o), +(115,309,cs), +(123,547,o), +(258,703,o), +(462,703,cs), +(600,703,o), +(694,615,o), +(698,493,c), +(733,493,l), +(732,638,o), +(623,739,o), +(462,739,cs), +(241,739,o), +(84,566,o), +(75,309,cs), +(69,118,o), +(179,-10,o), +(354,-10,cs) +); +} +); +width = 741; +}, +{ +anchors = ( +{ +name = bottom; +pos = (378,0); +}, +{ +name = top; +pos = (472,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(574,-9,o), +(705,93,o), +(733,255,c), +(529,255,l), +(508,190,o), +(459,157,o), +(381,159,cs), +(304,161,o), +(250,215,o), +(254,329,cs), +(259,473,o), +(328,569,o), +(439,569,cs), +(512,569,o), +(565,531,o), +(572,469,c), +(774,469,l), +(770,628,o), +(638,737,o), +(440,737,cs), +(214,737,o), +(56,580,o), +(47,337,cs), +(40,129,o), +(162,-9,o), +(391,-9,cs) +); +} +); +width = 759; +}, +{ +anchors = ( +{ +name = bottom; +pos = (370,0); +}, +{ +name = top; +pos = (478,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(569,-9,o), +(717,80,o), +(765,236,c), +(726,236,l), +(680,109,o), +(564,27,o), +(400,27,cs), +(214,27,o), +(92,133,o), +(99,330,cs), +(107,559,o), +(251,703,o), +(473,703,cs), +(626,703,o), +(743,620,o), +(765,497,c), +(803,497,l), +(783,642,o), +(652,739,o), +(475,739,cs), +(235,739,o), +(68,575,o), +(59,333,cs), +(52,121,o), +(185,-9,o), +(395,-9,cs) +); +} +); +width = 796; +}, +{ +anchors = ( +{ +name = bottom; +pos = (410,0); +}, +{ +name = top; +pos = (506,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(632,-10,o), +(802,87,o), +(836,255,c), +(605,255,l), +(584,199,o), +(514,169,o), +(436,169,cs), +(328,169,o), +(257,231,o), +(261,350,cs), +(265,470,o), +(336,561,o), +(471,561,cs), +(554,561,o), +(621,525,o), +(637,465,c), +(867,465,l), +(858,628,o), +(705,738,o), +(479,738,cs), +(219,738,o), +(40,580,o), +(32,341,cs), +(24,128,o), +(169,-10,o), +(422,-10,cs) +); +} +); +width = 844; +} +); +unicode = 67; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/C_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/C_acute.glyph new file mode 100644 index 00000000..82915453 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/C_acute.glyph @@ -0,0 +1,249 @@ +{ +color = 6; +glyphname = Cacute; +kernLeft = KO_O; +kernRight = KO_C; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = C; +}, +{ +pos = (152,57); +ref = acutecomb; +} +); +width = 403; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = C; +}, +{ +pos = (130,51); +ref = acutecomb; +} +); +width = 481; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = C; +}, +{ +pos = (343,57); +ref = acutecomb; +} +); +width = 797; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = C; +}, +{ +pos = (305,56); +ref = acutecomb; +} +); +width = 838; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (142,57); +ref = acutecomb; +} +); +width = 348; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = C; +}, +{ +pos = (131,51); +ref = acutecomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (357,57); +ref = acutecomb; +} +); +width = 771; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (270,51); +ref = acutecomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (343,57); +ref = acutecomb; +} +); +width = 797; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = C; +}, +{ +pos = (308,56); +ref = acutecomb; +} +); +width = 848; +}, +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (354,57); +ref = acutecomb; +} +); +width = 765; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (276,51); +ref = acutecomb; +} +); +width = 759; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = C; +}, +{ +pos = (157,57); +ref = acutecomb; +} +); +width = 401; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (146,51); +ref = acutecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = C; +}, +{ +pos = (325,57); +ref = acutecomb; +} +); +width = 741; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = C; +}, +{ +pos = (277,51); +ref = acutecomb; +} +); +width = 759; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = C; +}, +{ +pos = (335,57); +ref = acutecomb; +} +); +width = 796; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = C; +}, +{ +pos = (306,56); +ref = acutecomb; +} +); +width = 844; +} +); +unicode = 262; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/C_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/C_caron.glyph new file mode 100644 index 00000000..d377df20 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/C_caron.glyph @@ -0,0 +1,249 @@ +{ +color = 6; +glyphname = Ccaron; +kernLeft = KO_O; +kernRight = KO_C; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = C; +}, +{ +pos = (79,57); +ref = caroncomb; +} +); +width = 403; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = C; +}, +{ +pos = (25,51); +ref = caroncomb; +} +); +width = 481; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = C; +}, +{ +pos = (222,57); +ref = caroncomb; +} +); +width = 797; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = C; +}, +{ +pos = (131,56); +ref = caroncomb; +} +); +width = 838; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (69,57); +ref = caroncomb; +} +); +width = 348; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = C; +}, +{ +pos = (26,51); +ref = caroncomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (248,57); +ref = caroncomb; +} +); +width = 771; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (135,51); +ref = caroncomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (222,57); +ref = caroncomb; +} +); +width = 797; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = C; +}, +{ +pos = (134,56); +ref = caroncomb; +} +); +width = 848; +}, +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (247,57); +ref = caroncomb; +} +); +width = 765; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (147,51); +ref = caroncomb; +} +); +width = 759; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = C; +}, +{ +pos = (84,57); +ref = caroncomb; +} +); +width = 401; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (45,51); +ref = caroncomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = C; +}, +{ +pos = (216,57); +ref = caroncomb; +} +); +width = 741; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = C; +}, +{ +pos = (138,51); +ref = caroncomb; +} +); +width = 759; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = C; +}, +{ +pos = (212,57); +ref = caroncomb; +} +); +width = 796; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = C; +}, +{ +pos = (132,56); +ref = caroncomb; +} +); +width = 844; +} +); +unicode = 268; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/C_cedilla.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/C_cedilla.glyph new file mode 100644 index 00000000..4713d90c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/C_cedilla.glyph @@ -0,0 +1,249 @@ +{ +color = 6; +glyphname = Ccedilla; +kernLeft = KO_O; +kernRight = KO_C; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = C; +}, +{ +pos = (67,0); +ref = cedillacomb; +} +); +width = 403; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = C; +}, +{ +pos = (36,0); +ref = cedillacomb; +} +); +width = 481; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = C; +}, +{ +pos = (248,0); +ref = cedillacomb; +} +); +width = 797; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = C; +}, +{ +pos = (197,0); +ref = cedillacomb; +} +); +width = 838; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (57,0); +ref = cedillacomb; +} +); +width = 348; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = C; +}, +{ +pos = (37,0); +ref = cedillacomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (268,0); +ref = cedillacomb; +} +); +width = 771; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (164,0); +ref = cedillacomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (248,0); +ref = cedillacomb; +} +); +width = 797; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = C; +}, +{ +pos = (200,0); +ref = cedillacomb; +} +); +width = 848; +}, +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (265,0); +ref = cedillacomb; +} +); +width = 765; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (176,0); +ref = cedillacomb; +} +); +width = 759; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = C; +}, +{ +pos = (90,0); +ref = cedillacomb; +} +); +width = 401; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (55,0); +ref = cedillacomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = C; +}, +{ +pos = (267,0); +ref = cedillacomb; +} +); +width = 741; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = C; +}, +{ +pos = (219,0); +ref = cedillacomb; +} +); +width = 759; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = C; +}, +{ +pos = (269,0); +ref = cedillacomb; +} +); +width = 796; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = C; +}, +{ +pos = (234,0); +ref = cedillacomb; +} +); +width = 844; +} +); +unicode = 199; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/C_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/C_circumflex.glyph new file mode 100644 index 00000000..c1e48e63 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/C_circumflex.glyph @@ -0,0 +1,249 @@ +{ +color = 6; +glyphname = Ccircumflex; +kernLeft = KO_O; +kernRight = KO_C; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = C; +}, +{ +pos = (79,57); +ref = circumflexcomb; +} +); +width = 403; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = C; +}, +{ +pos = (25,51); +ref = circumflexcomb; +} +); +width = 481; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = C; +}, +{ +pos = (222,57); +ref = circumflexcomb; +} +); +width = 797; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = C; +}, +{ +pos = (131,56); +ref = circumflexcomb; +} +); +width = 838; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (69,57); +ref = circumflexcomb; +} +); +width = 348; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = C; +}, +{ +pos = (26,51); +ref = circumflexcomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (248,57); +ref = circumflexcomb; +} +); +width = 771; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (135,51); +ref = circumflexcomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (222,57); +ref = circumflexcomb; +} +); +width = 797; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = C; +}, +{ +pos = (134,56); +ref = circumflexcomb; +} +); +width = 848; +}, +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (247,57); +ref = circumflexcomb; +} +); +width = 765; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (147,51); +ref = circumflexcomb; +} +); +width = 759; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = C; +}, +{ +pos = (83,57); +ref = circumflexcomb; +} +); +width = 401; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (39,51); +ref = circumflexcomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = C; +}, +{ +pos = (215,57); +ref = circumflexcomb; +} +); +width = 741; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = C; +}, +{ +pos = (143,51); +ref = circumflexcomb; +} +); +width = 759; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = C; +}, +{ +pos = (212,57); +ref = circumflexcomb; +} +); +width = 796; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = C; +}, +{ +pos = (130,56); +ref = circumflexcomb; +} +); +width = 844; +} +); +unicode = 264; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/C_dotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/C_dotaccent.glyph new file mode 100644 index 00000000..e33fed8a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/C_dotaccent.glyph @@ -0,0 +1,249 @@ +{ +color = 6; +glyphname = Cdotaccent; +kernLeft = KO_O; +kernRight = KO_C; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = C; +}, +{ +pos = (145,57); +ref = dotaccentcomb; +} +); +width = 403; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = C; +}, +{ +pos = (108,51); +ref = dotaccentcomb; +} +); +width = 481; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = C; +}, +{ +pos = (329,57); +ref = dotaccentcomb; +} +); +width = 797; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = C; +}, +{ +pos = (264,56); +ref = dotaccentcomb; +} +); +width = 838; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (135,62); +ref = dotaccentcomb; +} +); +width = 348; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = C; +}, +{ +pos = (109,51); +ref = dotaccentcomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (340,57); +ref = dotaccentcomb; +} +); +width = 771; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (245,51); +ref = dotaccentcomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (329,57); +ref = dotaccentcomb; +} +); +width = 797; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = C; +}, +{ +pos = (267,56); +ref = dotaccentcomb; +} +); +width = 848; +}, +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (337,79); +ref = dotaccentcomb; +} +); +width = 765; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (253,65); +ref = dotaccentcomb; +} +); +width = 759; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = C; +}, +{ +pos = (144,57); +ref = dotaccentcomb; +} +); +width = 401; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (123,51); +ref = dotaccentcomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = C; +}, +{ +pos = (310,57); +ref = dotaccentcomb; +} +); +width = 741; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = C; +}, +{ +pos = (247,51); +ref = dotaccentcomb; +} +); +width = 759; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = C; +}, +{ +pos = (321,57); +ref = dotaccentcomb; +} +); +width = 796; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = C; +}, +{ +pos = (262,56); +ref = dotaccentcomb; +} +); +width = 844; +} +); +unicode = 266; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/C_dotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/C_dotaccent.ss01.glyph new file mode 100644 index 00000000..9eef31b6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/C_dotaccent.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Cdotaccent.ss01; +kernLeft = KO_O; +kernRight = KO_C; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = C; +}, +{ +pos = (153,57); +ref = dotaccentcomb.ss01; +} +); +width = 403; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = C; +}, +{ +pos = (113,51); +ref = dotaccentcomb.ss01; +} +); +width = 481; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = C; +}, +{ +pos = (342,57); +ref = dotaccentcomb.ss01; +} +); +width = 797; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = C; +}, +{ +pos = (271,56); +ref = dotaccentcomb.ss01; +} +); +width = 838; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (153,57); +ref = dotaccentcomb.ss01; +} +); +width = 403; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = C; +}, +{ +pos = (114,51); +ref = dotaccentcomb.ss01; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = C; +}, +{ +alignment = -1; +pos = (353,57); +ref = dotaccentcomb.ss01; +} +); +width = 771; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = C; +}, +{ +pos = (247,51); +ref = dotaccentcomb.ss01; +} +); +width = 737; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = C; +}, +{ +pos = (342,57); +ref = dotaccentcomb.ss01; +} +); +width = 786; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = C; +}, +{ +pos = (274,56); +ref = dotaccentcomb.ss01; +} +); +width = 848; +}, +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (350,57); +ref = dotaccentcomb.ss01; +} +); +width = 765; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (252,51); +ref = dotaccentcomb.ss01; +} +); +width = 759; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = C; +}, +{ +pos = (158,57); +ref = dotaccentcomb.ss01; +} +); +width = 401; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = C; +}, +{ +pos = (129,51); +ref = dotaccentcomb.ss01; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = C; +}, +{ +pos = (323,57); +ref = dotaccentcomb.ss01; +} +); +width = 741; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = C; +}, +{ +pos = (252,51); +ref = dotaccentcomb.ss01; +} +); +width = 759; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = C; +}, +{ +pos = (334,57); +ref = dotaccentcomb.ss01; +} +); +width = 796; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = C; +}, +{ +pos = (271,51); +ref = dotaccentcomb.ss01; +} +); +width = 844; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/D_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/D_.glyph new file mode 100644 index 00000000..f4c454ec --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/D_.glyph @@ -0,0 +1,1065 @@ +{ +glyphname = D; +kernLeft = KO_H; +kernRight = KO_D; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (250,0); +}, +{ +name = center; +pos = (126,365); +}, +{ +name = top; +pos = (250,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,0,ls), +(425,0,o), +(475,149,o), +(475,364,cs), +(475,634,o), +(381,729,o), +(191,729,cs), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(208,572,l), +(223,572,ls), +(277,572,o), +(295,524,o), +(295,368,cs), +(295,227,o), +(285,157,o), +(223,157,cs), +(208,157,l) +); +} +); +width = 490; +}, +{ +anchors = ( +{ +name = bottom; +pos = (210,0); +}, +{ +name = center; +pos = (82,365); +}, +{ +name = top; +pos = (210,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,0,ls), +(328,0,o), +(380,150,o), +(380,365,cs), +(380,581,o), +(324,729,o), +(173,729,cs), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(97,701,l), +(174,701,ls), +(277,701,o), +(347,620,o), +(347,365,cs), +(347,109,o), +(277,28,o), +(174,28,cs), +(97,28,l) +); +} +); +width = 418; +}, +{ +anchors = ( +{ +name = bottom; +pos = (395,0); +}, +{ +name = center; +pos = (120,365); +}, +{ +name = top; +pos = (395,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,0,ls), +(608,0,o), +(748,144,o), +(748,364,cs), +(748,585,o), +(608,729,o), +(380,729,cs), +(72,729,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(110,693,l), +(380,693,ls), +(581,693,o), +(709,570,o), +(709,365,cs), +(709,167,o), +(587,37,o), +(380,37,cs), +(110,37,l) +); +} +); +width = 785; +}, +{ +anchors = ( +{ +name = bottom; +pos = (410,0); +}, +{ +name = center; +pos = (183,365); +}, +{ +name = top; +pos = (410,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,0,ls), +(652,0,o), +(805,121,o), +(805,364,cs), +(805,583,o), +(679,729,o), +(415,729,cs), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,554,l), +(368,554,ls), +(490,554,o), +(574,513,o), +(574,368,cs), +(574,244,o), +(520,175,o), +(368,175,cs), +(275,175,l) +); +} +); +width = 818; +}, +{ +anchors = ( +{ +name = bottom; +pos = (176,0); +}, +{ +name = center; +pos = (58,365); +}, +{ +name = top; +pos = (176,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(272,0,o), +(326,107,o), +(326,365,cs), +(326,623,o), +(272,729,o), +(134,729,cs), +(42,729,l), +(42,0,l) +); +}, +{ +closed = 1; +nodes = ( +(73,701,l), +(135,701,ls), +(250,701,o), +(293,603,o), +(293,365,cs), +(293,126,o), +(250,28,o), +(135,28,cs), +(73,28,l) +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = center; +pos = (115,365); +}, +{ +name = top; +pos = (239,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,0,ls), +(378,0,o), +(465,96,o), +(465,364,cs), +(465,624,o), +(378,729,o), +(181,729,cs), +(18,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(197,572,l), +(211,572,ls), +(267,572,o), +(278,517,o), +(278,368,cs), +(278,205,o), +(267,157,o), +(211,157,cs), +(197,157,l) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = center; +pos = (108,365); +}, +{ +name = top; +pos = (352,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,0,ls), +(555,0,o), +(676,144,o), +(676,364,cs), +(676,585,o), +(555,729,o), +(355,729,cs), +(70,729,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(108,693,l), +(354,693,ls), +(526,693,o), +(636,570,o), +(636,365,cs), +(636,167,o), +(531,37,o), +(354,37,cs), +(108,37,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 712; +}, +{ +anchors = ( +{ +name = bottom; +pos = (346,0); +}, +{ +name = center; +pos = (161,365); +}, +{ +name = top; +pos = (346,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,0,ls), +(612,0,o), +(730,147,o), +(730,364,cs), +(730,581,o), +(613,729,o), +(388,729,cs), +(59,729,l), +(59,0,l) +); +}, +{ +closed = 1; +nodes = ( +(262,557,l), +(352,557,ls), +(447,557,o), +(518,527,o), +(518,368,cs), +(518,198,o), +(443,172,o), +(352,172,cs), +(262,172,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,0,ls), +(583,0,o), +(702,147,o), +(702,364,cs), +(702,581,o), +(584,729,o), +(357,729,cs), +(30,729,l), +(30,0,l) +); +}, +{ +closed = 1; +nodes = ( +(233,558,l), +(322,558,ls), +(419,558,o), +(492,526,o), +(492,368,cs), +(492,200,o), +(415,171,o), +(322,171,cs), +(233,171,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 705; +}, +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = center; +pos = (110,365); +}, +{ +name = top; +pos = (385,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,0,ls), +(598,0,o), +(738,144,o), +(738,364,cs), +(738,585,o), +(598,729,o), +(370,729,cs), +(62,729,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(100,693,l), +(370,693,ls), +(571,693,o), +(699,570,o), +(699,365,cs), +(699,167,o), +(577,37,o), +(370,37,cs), +(100,37,l) +); +} +); +width = 776; +}, +{ +anchors = ( +{ +name = bottom; +pos = (395,0); +}, +{ +name = center; +pos = (168,365); +}, +{ +name = top; +pos = (395,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,0,ls), +(637,0,o), +(790,121,o), +(790,364,cs), +(790,583,o), +(664,729,o), +(400,729,cs), +(32,729,l), +(32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(260,554,l), +(353,554,ls), +(475,554,o), +(559,513,o), +(559,368,cs), +(559,244,o), +(505,175,o), +(353,175,cs), +(260,175,l) +); +} +); +width = 804; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = center; +pos = (142,365); +}, +{ +name = top; +pos = (355,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(358,0,ls), +(554,0,o), +(673,144,o), +(673,364,cs), +(673,585,o), +(554,729,o), +(358,729,cs), +(105,729,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(142,693,l), +(357,693,ls), +(527,693,o), +(635,570,o), +(635,365,cs), +(635,167,o), +(532,37,o), +(357,37,cs), +(142,37,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 731; +}, +{ +anchors = ( +{ +name = bottom; +pos = (366,0); +}, +{ +name = center; +pos = (187,365); +}, +{ +name = top; +pos = (366,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,0,ls), +(612,0,o), +(730,147,o), +(730,364,cs), +(730,581,o), +(613,729,o), +(388,729,cs), +(59,729,l), +(59,0,l) +); +}, +{ +closed = 1; +nodes = ( +(262,557,l), +(352,557,ls), +(447,557,o), +(518,527,o), +(518,368,cs), +(518,198,o), +(443,172,o), +(352,172,cs), +(262,172,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,ls), +(586,0,o), +(710,135,o), +(710,364,cs), +(710,593,o), +(586,729,o), +(377,729,cs), +(57,729,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(258,558,l), +(343,558,ls), +(453,558,o), +(505,497,o), +(505,368,cs), +(505,234,o), +(453,171,o), +(343,171,cs), +(258,171,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 736; +}, +{ +anchors = ( +{ +name = bottom; +pos = (167,0); +}, +{ +name = center; +pos = (118,365); +}, +{ +name = top; +pos = (270,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,ls), +(276,0,o), +(410,221,o), +(420,516,cs), +(425,655,o), +(374,729,o), +(270,729,cs), +(163,729,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(188,699,l), +(265,699,ls), +(348,699,o), +(393,643,o), +(389,520,cs), +(379,248,o), +(262,30,o), +(125,30,cs), +(49,30,l) +); +} +); +width = 416; +}, +{ +anchors = ( +{ +name = bottom; +pos = (200,0); +}, +{ +name = center; +pos = (138,365); +}, +{ +name = top; +pos = (301,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(380,0,o), +(450,148,o), +(491,360,cs), +(539,612,o), +(467,729,o), +(267,729,cs), +(124,729,l), +(-27,0,l) +); +}, +{ +closed = 1; +nodes = ( +(270,572,l), +(285,572,ls), +(337,572,o), +(343,534,o), +(314,371,cs), +(287,220,o), +(253,157,o), +(203,157,cs), +(184,157,l) +); +} +); +width = 488; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = center; +pos = (151,365); +}, +{ +name = top; +pos = (419,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,0,ls), +(537,0,o), +(692,169,o), +(701,418,cs), +(707,604,o), +(598,729,o), +(419,729,cs), +(191,729,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(221,693,l), +(418,693,ls), +(571,693,o), +(666,593,o), +(660,419,cs), +(652,189,o), +(517,36,o), +(322,36,cs), +(83,36,l) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = center; +pos = (209,365); +}, +{ +name = top; +pos = (445,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,0,ls), +(563,0,o), +(726,166,o), +(735,428,cs), +(741,609,o), +(633,729,o), +(445,729,cs), +(154,729,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(320,561,l), +(397,561,ls), +(477,561,o), +(531,518,o), +(527,414,cs), +(522,255,o), +(446,168,o), +(316,168,cs), +(239,168,l) +); +} +); +width = 739; +}, +{ +anchors = ( +{ +name = bottom; +pos = (351,0); +}, +{ +name = center; +pos = (131,365); +}, +{ +name = top; +pos = (418,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,0,ls), +(594,0,o), +(761,153,o), +(770,410,cs), +(777,624,o), +(638,729,o), +(418,729,cs), +(169,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(200,693,l), +(414,693,ls), +(638,693,o), +(735,582,o), +(729,410,cs), +(721,179,o), +(581,37,o), +(340,37,cs), +(63,37,l) +); +} +); +width = 783; +}, +{ +anchors = ( +{ +name = bottom; +pos = (363,0); +}, +{ +name = center; +pos = (180,365); +}, +{ +name = top; +pos = (468,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,0,ls), +(638,0,o), +(814,158,o), +(823,410,cs), +(831,623,o), +(690,729,o), +(468,729,cs), +(142,729,l), +(-9,0,l) +); +}, +{ +closed = 1; +nodes = ( +(332,554,l), +(429,554,ls), +(530,554,o), +(596,509,o), +(592,398,cs), +(587,260,o), +(503,175,o), +(368,175,cs), +(254,175,l) +); +} +); +width = 813; +} +); +metricLeft = H; +unicode = 68; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/D_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/D_caron.glyph new file mode 100644 index 00000000..b0773c75 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/D_caron.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Dcaron; +kernLeft = KO_H; +kernRight = KO_D; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = D; +}, +{ +pos = (81,57); +ref = caroncomb; +} +); +width = 418; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = D; +}, +{ +pos = (33,51); +ref = caroncomb; +} +); +width = 490; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = D; +}, +{ +pos = (216,57); +ref = caroncomb; +} +); +width = 785; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = D; +}, +{ +pos = (119,56); +ref = caroncomb; +} +); +width = 818; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = D; +}, +{ +pos = (67,57); +ref = caroncomb; +} +); +width = 351; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = D; +}, +{ +pos = (32,51); +ref = caroncomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = D; +}, +{ +pos = (208,57); +ref = caroncomb; +} +); +width = 712; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = D; +}, +{ +pos = (120,51); +ref = caroncomb; +} +); +width = 705; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = D; +}, +{ +alignment = -1; +pos = (216,57); +ref = caroncomb; +} +); +width = 785; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = D; +}, +{ +pos = (114,56); +ref = caroncomb; +} +); +width = 804; +}, +{ +layerId = m019; +shapes = ( +{ +ref = D; +}, +{ +pos = (192,57); +ref = caroncomb; +} +); +width = 731; +}, +{ +layerId = m020; +shapes = ( +{ +ref = D; +}, +{ +pos = (127,51); +ref = caroncomb; +} +); +width = 736; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = D; +}, +{ +pos = (56,57); +ref = caroncomb; +} +); +width = 416; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = D; +}, +{ +pos = (5,51); +ref = caroncomb; +} +); +width = 488; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = D; +}, +{ +pos = (168,57); +ref = caroncomb; +} +); +width = 731; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = D; +}, +{ +pos = (111,51); +ref = caroncomb; +} +); +width = 739; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = D; +}, +{ +pos = (152,57); +ref = caroncomb; +} +); +width = 783; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = D; +}, +{ +pos = (94,56); +ref = caroncomb; +} +); +width = 813; +} +); +unicode = 270; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/D_croat.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/D_croat.glyph new file mode 100644 index 00000000..aa0a64c4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/D_croat.glyph @@ -0,0 +1,171 @@ +{ +color = 6; +glyphname = Dcroat; +kernRight = KO_Dcroat; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Eth; +} +); +width = 425; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Eth; +} +); +width = 504; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Eth; +} +); +width = 860; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Eth; +} +); +width = 839; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Eth; +} +); +width = 385; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Eth; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Eth; +} +); +width = 745; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Eth; +} +); +width = 744; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = Eth; +} +); +width = 820; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Eth; +} +); +width = 809; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Eth; +} +); +width = 774; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Eth; +} +); +width = 785; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Eth; +} +); +width = 421; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Eth; +} +); +width = 510; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Eth; +} +); +width = 778; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Eth; +} +); +width = 779; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Eth; +} +); +width = 869; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Eth; +} +); +width = 856; +} +); +unicode = 272; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_.glyph new file mode 100644 index 00000000..2a016132 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_.glyph @@ -0,0 +1,1004 @@ +{ +glyphname = E; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (190,0); +}, +{ +name = ogonek; +pos = (361,0); +}, +{ +name = top; +pos = (190,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,0,l), +(361,157,l), +(181,157,l), +(206,132,l), +(206,597,l), +(181,572,l), +(361,572,l), +(361,729,l), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(347,299,l), +(347,445,l), +(181,445,l), +(181,299,l) +); +} +); +width = 380; +}, +{ +anchors = ( +{ +name = bottom; +pos = (184,0); +}, +{ +name = ogonek; +pos = (302,0); +}, +{ +name = top; +pos = (184,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(302,28,l), +(92,28,l), +(97,23,l), +(97,706,l), +(92,701,l), +(302,701,l), +(302,729,l), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,361,l), +(271,389,l), +(92,389,l), +(92,361,l) +); +} +); +width = 312; +}, +{ +anchors = ( +{ +name = bottom; +pos = (336,0); +}, +{ +name = ogonek; +pos = (638,0); +}, +{ +name = top; +pos = (336,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(638,0,l), +(638,37,l), +(85,37,l), +(110,12,l), +(110,718,l), +(85,693,l), +(638,693,l), +(638,729,l), +(72,729,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(590,358,l), +(590,392,l), +(95,392,l), +(95,358,l) +); +} +); +width = 660; +}, +{ +anchors = ( +{ +name = bottom; +pos = (368,0); +}, +{ +name = ogonek; +pos = (688,0); +}, +{ +name = top; +pos = (366,729); +}, +{ +name = topleft; +pos = (13,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,0,l), +(688,179,l), +(231,179,l), +(276,134,l), +(276,595,l), +(231,550,l), +(685,550,l), +(685,729,l), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(635,282,l), +(635,449,l), +(231,449,l), +(231,282,l) +); +} +); +width = 710; +}, +{ +anchors = ( +{ +name = bottom; +pos = (160,0); +}, +{ +name = ogonek; +pos = (278,0); +}, +{ +name = top; +pos = (160,729); +}, +{ +name = topleft; +pos = (-3,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(278,28,l), +(68,28,l), +(73,23,l), +(73,706,l), +(68,701,l), +(278,701,l), +(278,729,l), +(42,729,l), +(42,0,l) +); +}, +{ +closed = 1; +nodes = ( +(258,361,l), +(258,389,l), +(68,389,l), +(68,361,l) +); +} +); +width = 278; +}, +{ +anchors = ( +{ +name = bottom; +pos = (179,0); +}, +{ +name = ogonek; +pos = (350,0); +}, +{ +name = top; +pos = (179,729); +}, +{ +name = topleft; +pos = (10,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,0,l), +(350,157,l), +(170,157,l), +(195,132,l), +(195,597,l), +(170,572,l), +(350,572,l), +(350,729,l), +(18,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,299,l), +(340,445,l), +(170,445,l), +(170,299,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = ogonek; +pos = (551,0); +}, +{ +name = top; +pos = (286,729); +}, +{ +name = topleft; +pos = (-13,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,37,l), +(97,37,l), +(108,26,l), +(108,704,l), +(97,693,l), +(551,693,l), +(551,729,l), +(70,729,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(503,358,l), +(503,392,l), +(97,392,l), +(97,358,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 568; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = ogonek; +pos = (583,0); +}, +{ +name = top; +pos = (295,729); +}, +{ +name = topleft; +pos = (-19,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(583,0,l), +(583,172,l), +(191,172,l), +(233,130,l), +(233,599,l), +(191,557,l), +(580,557,l), +(580,729,l), +(30,729,l), +(30,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,288,l), +(530,449,l), +(191,449,l), +(191,288,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 591; +}, +{ +anchors = ( +{ +name = bottom; +pos = (326,0); +}, +{ +name = ogonek; +pos = (628,0); +}, +{ +name = top; +pos = (326,729); +}, +{ +name = topleft; +pos = (11,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(628,0,l), +(628,37,l), +(75,37,l), +(100,12,l), +(100,718,l), +(75,693,l), +(628,693,l), +(628,729,l), +(62,729,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(580,358,l), +(580,392,l), +(85,392,l), +(85,358,l) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = ogonek; +pos = (673,0); +}, +{ +name = top; +pos = (351,729); +}, +{ +name = topleft; +pos = (-2,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(673,0,l), +(673,179,l), +(216,179,l), +(261,134,l), +(261,595,l), +(216,550,l), +(670,550,l), +(670,729,l), +(32,729,l), +(32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(620,282,l), +(620,449,l), +(216,449,l), +(216,282,l) +); +} +); +width = 680; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = ogonek; +pos = (576,0); +}, +{ +name = top; +pos = (337,729); +}, +{ +name = topleft; +pos = (24,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(586,0,l), +(586,37,l), +(132,37,l), +(143,26,l), +(143,704,l), +(132,693,l), +(586,693,l), +(586,729,l), +(105,729,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(540,358,l), +(540,392,l), +(132,392,l), +(132,358,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 623; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = ogonek; +pos = (595,0); +}, +{ +name = top; +pos = (315,729); +}, +{ +name = topleft; +pos = (11,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(595,0,l), +(595,172,l), +(217,172,l), +(258,130,l), +(258,599,l), +(217,557,l), +(592,557,l), +(592,729,l), +(57,729,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(544,288,l), +(544,449,l), +(217,449,l), +(217,288,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 627; +}, +{ +anchors = ( +{ +name = bottom; +pos = (119,0); +}, +{ +name = ogonek; +pos = (246,0); +}, +{ +name = top; +pos = (270,729); +}, +{ +name = topleft; +pos = (130,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,0,l), +(252,28,l), +(39,28,l), +(46,17,l), +(191,714,l), +(176,701,l), +(392,701,l), +(397,729,l), +(163,729,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(291,361,l), +(296,389,l), +(112,389,l), +(104,361,l) +); +} +); +width = 310; +}, +{ +anchors = ( +{ +name = bottom; +pos = (138,0); +}, +{ +name = ogonek; +pos = (302,0); +}, +{ +name = top; +pos = (289,729); +}, +{ +name = topleft; +pos = (125,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(334,157,l), +(135,157,l), +(171,113,l), +(275,616,l), +(221,572,l), +(422,572,l), +(453,729,l), +(125,729,l), +(-27,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,299,l), +(380,445,l), +(195,445,l), +(165,299,l) +); +} +); +width = 378; +}, +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = ogonek; +pos = (506,0); +}, +{ +name = top; +pos = (424,729); +}, +{ +name = topleft; +pos = (118,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(506,0,l), +(513,36,l), +(73,36,l), +(80,22,l), +(224,710,l), +(209,693,l), +(650,693,l), +(657,729,l), +(191,729,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,358,l), +(542,392,l), +(148,392,l), +(144,358,l) +); +} +); +width = 597; +}, +{ +anchors = ( +{ +name = bottom; +pos = (272,0); +}, +{ +name = ogonek; +pos = (541,0); +}, +{ +name = top; +pos = (423,729); +}, +{ +name = topleft; +pos = (115,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(541,0,l), +(576,172,l), +(195,172,l), +(231,128,l), +(328,601,l), +(274,557,l), +(653,557,l), +(689,729,l), +(154,729,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(549,285,l), +(582,446,l), +(251,446,l), +(218,285,l) +); +} +); +width = 631; +}, +{ +anchors = ( +{ +name = bottom; +pos = (297,0); +}, +{ +name = ogonek; +pos = (576,0); +}, +{ +name = top; +pos = (448,729); +}, +{ +name = topleft; +pos = (128,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(576,0,l), +(584,37,l), +(48,37,l), +(60,21,l), +(205,715,l), +(181,693,l), +(720,693,l), +(727,729,l), +(169,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(605,358,l), +(612,392,l), +(130,392,l), +(122,358,l) +); +} +); +width = 653; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = ogonek; +pos = (625,0); +}, +{ +name = top; +pos = (458,729); +}, +{ +name = topleft; +pos = (118,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(625,0,l), +(662,179,l), +(210,179,l), +(246,135,l), +(342,594,l), +(288,550,l), +(736,550,l), +(773,729,l), +(142,729,l), +(-9,0,l) +); +}, +{ +closed = 1; +nodes = ( +(631,282,l), +(666,449,l), +(267,449,l), +(232,282,l) +); +} +); +width = 703; +} +); +metricLeft = H; +unicode = 69; +userData = { +KernOnName = E; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_acute.glyph new file mode 100644 index 00000000..210e0acb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_acute.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Eacute; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (128,57); +ref = acutecomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (78,51); +ref = acutecomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (278,57); +ref = acutecomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (249,56); +ref = acutecomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (124,57); +ref = acutecomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,51); +ref = acutecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (251,57); +ref = acutecomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (204,51); +ref = acutecomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (278,57); +ref = acutecomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (244,56); +ref = acutecomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (281,57); +ref = acutecomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (205,51); +ref = acutecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (129,57); +ref = acutecomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (94,51); +ref = acutecomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (282,57); +ref = acutecomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (228,51); +ref = acutecomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (305,57); +ref = acutecomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (258,56); +ref = acutecomb; +} +); +width = 703; +} +); +unicode = 201; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_breve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_breve.glyph new file mode 100644 index 00000000..b01cf6a2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_breve.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Ebreve; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (60,57); +ref = brevecomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-5,51); +ref = brevecomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (162,57); +ref = brevecomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (127,56); +ref = brevecomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (56,57); +ref = brevecomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-6,51); +ref = brevecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (138,51); +ref = brevecomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (97,51); +ref = brevecomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (162,57); +ref = brevecomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (122,56); +ref = brevecomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (170,51); +ref = brevecomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (104,51); +ref = brevecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (56,57); +ref = brevecomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (9,51); +ref = brevecomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (168,57); +ref = brevecomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (111,51); +ref = brevecomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (183,57); +ref = brevecomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (136,51); +ref = brevecomb; +} +); +width = 703; +} +); +unicode = 276; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_caron.glyph new file mode 100644 index 00000000..ba1a0f9a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_caron.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Ecaron; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = caroncomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-27,51); +ref = caroncomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (157,57); +ref = caroncomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,56); +ref = caroncomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (51,57); +ref = caroncomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-28,51); +ref = caroncomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (142,57); +ref = caroncomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (69,51); +ref = caroncomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (157,57); +ref = caroncomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (70,56); +ref = caroncomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (174,57); +ref = caroncomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,51); +ref = caroncomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (56,57); +ref = caroncomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-7,51); +ref = caroncomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (173,57); +ref = caroncomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (89,51); +ref = caroncomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (182,57); +ref = caroncomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (84,56); +ref = caroncomb; +} +); +width = 703; +} +); +unicode = 282; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflex.glyph new file mode 100644 index 00000000..455c4a55 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflex.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Ecircumflex; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-27,51); +ref = circumflexcomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (157,57); +ref = circumflexcomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,56); +ref = circumflexcomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (51,57); +ref = circumflexcomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-28,51); +ref = circumflexcomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (142,57); +ref = circumflexcomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (69,51); +ref = circumflexcomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (157,57); +ref = circumflexcomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (70,56); +ref = circumflexcomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (174,57); +ref = circumflexcomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,51); +ref = circumflexcomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-13,51); +ref = circumflexcomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (172,57); +ref = circumflexcomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (94,51); +ref = circumflexcomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (182,57); +ref = circumflexcomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (82,56); +ref = circumflexcomb; +} +); +width = 703; +} +); +unicode = 202; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexacute.glyph new file mode 100644 index 00000000..8d24d24a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexacute.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Ecircumflexacute; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb_acutecomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-16,51); +ref = circumflexcomb_acutecomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (157,57); +ref = circumflexcomb_acutecomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (99,56); +ref = circumflexcomb_acutecomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (51,57); +ref = circumflexcomb_acutecomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-17,51); +ref = circumflexcomb_acutecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (142,57); +ref = circumflexcomb_acutecomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (69,51); +ref = circumflexcomb_acutecomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (157,57); +ref = circumflexcomb_acutecomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (94,56); +ref = circumflexcomb_acutecomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (174,57); +ref = circumflexcomb_acutecomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,51); +ref = circumflexcomb_acutecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb_acutecomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-1,51); +ref = circumflexcomb_acutecomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (172,57); +ref = circumflexcomb_acutecomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (96,51); +ref = circumflexcomb_acutecomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (182,57); +ref = circumflexcomb_acutecomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (105,56); +ref = circumflexcomb_acutecomb; +} +); +width = 703; +} +); +unicode = 7870; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexdotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexdotbelow.glyph new file mode 100644 index 00000000..54dbf542 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexdotbelow.glyph @@ -0,0 +1,317 @@ +{ +color = 6; +glyphname = Ecircumflexdotbelow; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (121,0); +ref = dotbelowcomb; +}, +{ +pos = (55,57); +ref = circumflexcomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (72,0); +ref = dotbelowcomb; +}, +{ +pos = (-27,51); +ref = circumflexcomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (264,0); +ref = dotbelowcomb; +}, +{ +pos = (157,57); +ref = circumflexcomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (215,0); +ref = dotbelowcomb; +}, +{ +pos = (75,56); +ref = circumflexcomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (117,0); +ref = dotbelowcomb; +}, +{ +pos = (51,57); +ref = circumflexcomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (71,0); +ref = dotbelowcomb; +}, +{ +pos = (-28,51); +ref = circumflexcomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (234,0); +ref = dotbelowcomb; +}, +{ +pos = (142,57); +ref = circumflexcomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (191,0); +ref = dotbelowcomb; +}, +{ +pos = (69,51); +ref = circumflexcomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (264,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (157,57); +ref = circumflexcomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (210,0); +ref = dotbelowcomb; +}, +{ +pos = (70,56); +ref = circumflexcomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (264,0); +ref = dotbelowcomb; +}, +{ +pos = (174,57); +ref = circumflexcomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (194,0); +ref = dotbelowcomb; +}, +{ +pos = (76,51); +ref = circumflexcomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (109,0); +ref = dotbelowcomb; +}, +{ +pos = (55,57); +ref = circumflexcomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (73,0); +ref = dotbelowcomb; +}, +{ +pos = (-13,51); +ref = circumflexcomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (255,0); +ref = dotbelowcomb; +}, +{ +pos = (172,57); +ref = circumflexcomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (201,0); +ref = dotbelowcomb; +}, +{ +pos = (94,51); +ref = circumflexcomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (280,0); +ref = dotbelowcomb; +}, +{ +pos = (182,57); +ref = circumflexcomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (211,0); +ref = dotbelowcomb; +}, +{ +pos = (82,56); +ref = circumflexcomb; +} +); +width = 703; +} +); +unicode = 7878; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexdotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..f00e3d77 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexdotbelow.ss01.glyph @@ -0,0 +1,312 @@ +{ +color = 6; +glyphname = Ecircumflexdotbelow.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (129,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (55,57); +ref = circumflexcomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (61,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-27,51); +ref = circumflexcomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (157,57); +ref = circumflexcomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (227,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (75,56); +ref = circumflexcomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (125,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (51,57); +ref = circumflexcomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (60,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-28,51); +ref = circumflexcomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (247,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (142,57); +ref = circumflexcomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (180,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (69,51); +ref = circumflexcomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (157,57); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (222,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (70,56); +ref = circumflexcomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (174,57); +ref = circumflexcomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (76,51); +ref = circumflexcomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (117,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (55,57); +ref = circumflexcomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (64,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-13,51); +ref = circumflexcomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (268,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (172,57); +ref = circumflexcomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (192,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (94,51); +ref = circumflexcomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (291,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (182,57); +ref = circumflexcomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (225,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (82,56); +ref = circumflexcomb; +} +); +width = 703; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexgrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexgrave.glyph new file mode 100644 index 00000000..b83481da --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexgrave.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Ecircumflexgrave; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb_gravecomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-16,51); +ref = circumflexcomb_gravecomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (157,57); +ref = circumflexcomb_gravecomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (99,56); +ref = circumflexcomb_gravecomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (51,57); +ref = circumflexcomb_gravecomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-17,51); +ref = circumflexcomb_gravecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (142,57); +ref = circumflexcomb_gravecomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (69,51); +ref = circumflexcomb_gravecomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (157,57); +ref = circumflexcomb_gravecomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (94,56); +ref = circumflexcomb_gravecomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (174,57); +ref = circumflexcomb_gravecomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,51); +ref = circumflexcomb_gravecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb_gravecomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-1,51); +ref = circumflexcomb_gravecomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (172,57); +ref = circumflexcomb_gravecomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (96,51); +ref = circumflexcomb_gravecomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (182,57); +ref = circumflexcomb_gravecomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (105,56); +ref = circumflexcomb_gravecomb; +} +); +width = 703; +} +); +unicode = 7872; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexhookabove.glyph new file mode 100644 index 00000000..96623532 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflexhookabove.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Ecircumflexhookabove; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-16,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (157,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (99,56); +ref = circumflexcomb_hookabovecomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (51,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-17,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (142,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (69,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (157,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (94,56); +ref = circumflexcomb_hookabovecomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (174,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-1,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (172,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (96,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (182,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (105,56); +ref = circumflexcomb_hookabovecomb; +} +); +width = 703; +} +); +unicode = 7874; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflextilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflextilde.glyph new file mode 100644 index 00000000..b6aec9aa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_circumflextilde.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Ecircumflextilde; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb_tildecomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-16,51); +ref = circumflexcomb_tildecomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (157,57); +ref = circumflexcomb_tildecomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (99,56); +ref = circumflexcomb_tildecomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (51,57); +ref = circumflexcomb_tildecomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-17,51); +ref = circumflexcomb_tildecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (142,57); +ref = circumflexcomb_tildecomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (69,51); +ref = circumflexcomb_tildecomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (157,57); +ref = circumflexcomb_tildecomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (94,56); +ref = circumflexcomb_tildecomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (174,57); +ref = circumflexcomb_tildecomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,51); +ref = circumflexcomb_tildecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,57); +ref = circumflexcomb_tildecomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-2,51); +ref = circumflexcomb_tildecomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (165,57); +ref = circumflexcomb_tildecomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (96,51); +ref = circumflexcomb_tildecomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (182,57); +ref = circumflexcomb_tildecomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (113,56); +ref = circumflexcomb_tildecomb; +} +); +width = 703; +} +); +unicode = 7876; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_dieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dieresis.glyph new file mode 100644 index 00000000..c2e19fb7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dieresis.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Edieresis; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (66,57); +ref = dieresiscomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-35,51); +ref = dieresiscomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (159,57); +ref = dieresiscomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (83,51); +ref = dieresiscomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (62,57); +ref = dieresiscomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-36,51); +ref = dieresiscomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (144,57); +ref = dieresiscomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (73,51); +ref = dieresiscomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (159,57); +ref = dieresiscomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (78,51); +ref = dieresiscomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (176,57); +ref = dieresiscomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (80,51); +ref = dieresiscomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (61,57); +ref = dieresiscomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-28,51); +ref = dieresiscomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (177,57); +ref = dieresiscomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (94,51); +ref = dieresiscomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (186,57); +ref = dieresiscomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (89,51); +ref = dieresiscomb; +} +); +width = 703; +} +); +unicode = 203; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_dieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dieresis.ss01.glyph new file mode 100644 index 00000000..5c779ae8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dieresis.ss01.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Edieresis.ss01; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,57); +ref = dieresiscomb.ss01; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-34,51); +ref = dieresiscomb.ss01; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (192,57); +ref = dieresiscomb.ss01; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (105,51); +ref = dieresiscomb.ss01; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (73,57); +ref = dieresiscomb.ss01; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-35,51); +ref = dieresiscomb.ss01; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (171,57); +ref = dieresiscomb.ss01; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (85,51); +ref = dieresiscomb.ss01; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (192,57); +ref = dieresiscomb.ss01; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (100,51); +ref = dieresiscomb.ss01; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (201,57); +ref = dieresiscomb.ss01; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (92,51); +ref = dieresiscomb.ss01; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (74,57); +ref = dieresiscomb.ss01; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-20,51); +ref = dieresiscomb.ss01; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (199,57); +ref = dieresiscomb.ss01; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (110,51); +ref = dieresiscomb.ss01; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (223,57); +ref = dieresiscomb.ss01; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (118,51); +ref = dieresiscomb.ss01; +} +); +width = 703; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotaccent.glyph new file mode 100644 index 00000000..6dd2fab8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotaccent.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Edotaccent; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (121,57); +ref = dotaccentcomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (56,51); +ref = dotaccentcomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (264,57); +ref = dotaccentcomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (208,56); +ref = dotaccentcomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (117,62); +ref = dotaccentcomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (55,51); +ref = dotaccentcomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (234,62); +ref = dotaccentcomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (179,51); +ref = dotaccentcomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (264,57); +ref = dotaccentcomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (203,56); +ref = dotaccentcomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (264,79); +ref = dotaccentcomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (182,65); +ref = dotaccentcomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (116,57); +ref = dotaccentcomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (71,51); +ref = dotaccentcomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (267,57); +ref = dotaccentcomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (198,51); +ref = dotaccentcomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (291,57); +ref = dotaccentcomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (214,56); +ref = dotaccentcomb; +} +); +width = 703; +} +); +unicode = 278; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotaccent.ss01.glyph new file mode 100644 index 00000000..5c532283 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotaccent.ss01.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Edotaccent.ss01; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (129,57); +ref = dotaccentcomb.ss01; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (61,51); +ref = dotaccentcomb.ss01; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (277,57); +ref = dotaccentcomb.ss01; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (215,56); +ref = dotaccentcomb.ss01; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (125,57); +ref = dotaccentcomb.ss01; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (60,51); +ref = dotaccentcomb.ss01; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (247,57); +ref = dotaccentcomb.ss01; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (180,51); +ref = dotaccentcomb.ss01; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (277,57); +ref = dotaccentcomb.ss01; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (210,56); +ref = dotaccentcomb.ss01; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (277,57); +ref = dotaccentcomb.ss01; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (181,51); +ref = dotaccentcomb.ss01; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (130,57); +ref = dotaccentcomb.ss01; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,51); +ref = dotaccentcomb.ss01; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (280,57); +ref = dotaccentcomb.ss01; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (203,51); +ref = dotaccentcomb.ss01; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (304,57); +ref = dotaccentcomb.ss01; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (223,51); +ref = dotaccentcomb.ss01; +} +); +width = 703; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotbelow.glyph new file mode 100644 index 00000000..c13207e7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotbelow.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Edotbelow; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (121,0); +ref = dotbelowcomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (72,0); +ref = dotbelowcomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (264,0); +ref = dotbelowcomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (215,0); +ref = dotbelowcomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (117,0); +ref = dotbelowcomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (71,0); +ref = dotbelowcomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (234,0); +ref = dotbelowcomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (191,0); +ref = dotbelowcomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (264,0); +ref = dotbelowcomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (210,0); +ref = dotbelowcomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (264,0); +ref = dotbelowcomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (194,0); +ref = dotbelowcomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (109,0); +ref = dotbelowcomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (73,0); +ref = dotbelowcomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (255,0); +ref = dotbelowcomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (201,0); +ref = dotbelowcomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (280,0); +ref = dotbelowcomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (211,0); +ref = dotbelowcomb; +} +); +width = 703; +} +); +unicode = 7864; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotbelow.ss01.glyph new file mode 100644 index 00000000..6ed6528f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_dotbelow.ss01.glyph @@ -0,0 +1,241 @@ +{ +color = 6; +glyphname = Edotbelow.ss01; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (129,0); +ref = dotbelowcomb.ss01; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (61,0); +ref = dotbelowcomb.ss01; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (227,0); +ref = dotbelowcomb.ss01; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (125,0); +ref = dotbelowcomb.ss01; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (60,0); +ref = dotbelowcomb.ss01; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (247,0); +ref = dotbelowcomb.ss01; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (180,0); +ref = dotbelowcomb.ss01; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (222,0); +ref = dotbelowcomb.ss01; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (117,0); +ref = dotbelowcomb.ss01; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (64,0); +ref = dotbelowcomb.ss01; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (268,0); +ref = dotbelowcomb.ss01; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (192,0); +ref = dotbelowcomb.ss01; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (291,0); +ref = dotbelowcomb.ss01; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (225,0); +ref = dotbelowcomb.ss01; +} +); +width = 703; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_grave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_grave.glyph new file mode 100644 index 00000000..73daf203 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_grave.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Egrave; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (50,57); +ref = gravecomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-19,51); +ref = gravecomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (192,57); +ref = gravecomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (132,56); +ref = gravecomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (46,57); +ref = gravecomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-20,51); +ref = gravecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (172,57); +ref = gravecomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (107,51); +ref = gravecomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (192,57); +ref = gravecomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (127,56); +ref = gravecomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (202,57); +ref = gravecomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (116,51); +ref = gravecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (52,57); +ref = gravecomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (4,51); +ref = gravecomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (205,57); +ref = gravecomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (127,51); +ref = gravecomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (218,57); +ref = gravecomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (141,56); +ref = gravecomb; +} +); +width = 703; +} +); +unicode = 200; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_hookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_hookabove.glyph new file mode 100644 index 00000000..811adf99 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_hookabove.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Ehookabove; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (103,57); +ref = hookabovecomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (51,50); +ref = hookabovecomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (228,57); +ref = hookabovecomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (213,51); +ref = hookabovecomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (99,57); +ref = hookabovecomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (50,50); +ref = hookabovecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (198,57); +ref = hookabovecomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (153,51); +ref = hookabovecomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (228,57); +ref = hookabovecomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (208,51); +ref = hookabovecomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (228,57); +ref = hookabovecomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (159,51); +ref = hookabovecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (81,56); +ref = hookabovecomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (58,49); +ref = hookabovecomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (235,56); +ref = hookabovecomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (168,50); +ref = hookabovecomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (260,56); +ref = hookabovecomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (206,48); +ref = hookabovecomb; +} +); +width = 703; +} +); +unicode = 7866; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_macron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_macron.glyph new file mode 100644 index 00000000..0b6bbebf --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_macron.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Emacron; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (47,58); +ref = macroncomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-4,49); +ref = macroncomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (108,58); +ref = macroncomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (102,56); +ref = macroncomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (43,58); +ref = macroncomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-5,49); +ref = macroncomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (106,57); +ref = macroncomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (74,51); +ref = macroncomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (108,58); +ref = macroncomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (97,56); +ref = macroncomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (138,57); +ref = macroncomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (81,51); +ref = macroncomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (47,58); +ref = macroncomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (10,49); +ref = macroncomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (138,57); +ref = macroncomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (115,51); +ref = macroncomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (134,58); +ref = macroncomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (110,56); +ref = macroncomb; +} +); +width = 703; +} +); +unicode = 274; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_ng.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_ng.glyph new file mode 100644 index 00000000..0eb2e8d7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_ng.glyph @@ -0,0 +1,778 @@ +{ +glyphname = Eng; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,410,l), +(94,685,l), +(100,685,l), +(330,0,l), +(380,0,l), +(380,729,l), +(349,729,l), +(349,328,l), +(352,39,l), +(347,39,l), +(116,729,l), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(316,-167,ls), +(365,-167,o), +(380,-138,o), +(380,-94,cs), +(380,0,l), +(351,0,l), +(351,-89,ls), +(351,-128,o), +(340,-140,o), +(311,-140,cs), +(294,-140,l), +(294,-167,l) +); +} +); +width = 446; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,157,l), +(184,358,l), +(190,358,l), +(271,0,l), +(458,0,l), +(458,729,l), +(294,729,l), +(294,575,l), +(303,366,l), +(296,366,l), +(218,729,l), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(305,-167,ls), +(421,-167,o), +(458,-108,o), +(458,-2,cs), +(458,0,l), +(301,0,l), +(301,-1,ls), +(301,-28,o), +(294,-40,o), +(268,-40,cs), +(223,-40,l), +(223,-167,l) +); +} +); +width = 487; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,436,l), +(107,686,l), +(112,686,l), +(681,0,l), +(733,0,l), +(733,729,l), +(695,729,l), +(695,303,l), +(699,43,l), +(694,43,l), +(124,729,l), +(72,729,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(606,-167,ls), +(671,-167,o), +(733,-140,o), +(733,-43,cs), +(733,0,l), +(696,0,l), +(696,-35,ls), +(696,-107,o), +(666,-133,o), +(602,-133,cs), +(556,-133,l), +(556,-167,l) +); +} +); +width = 805; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(278,226,l), +(271,424,l), +(280,424,l), +(562,0,l), +(834,0,l), +(834,729,l), +(607,729,l), +(607,504,l), +(613,299,l), +(605,299,l), +(323,729,l), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(637,-167,ls), +(771,-167,o), +(834,-122,o), +(834,-26,cs), +(834,81,l), +(613,81,l), +(613,-8,ls), +(613,-40,o), +(599,-51,o), +(563,-51,cs), +(526,-51,l), +(526,-167,l) +); +} +); +width = 881; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(73,410,l), +(70,685,l), +(76,685,l), +(306,0,l), +(356,0,l), +(356,729,l), +(325,729,l), +(325,328,l), +(328,39,l), +(323,39,l), +(92,729,l), +(42,729,l), +(42,0,l) +); +}, +{ +closed = 1; +nodes = ( +(292,-167,ls), +(341,-167,o), +(356,-138,o), +(356,-94,cs), +(356,0,l), +(327,0,l), +(327,-89,ls), +(327,-128,o), +(316,-140,o), +(287,-140,cs), +(270,-140,l), +(270,-167,l) +); +} +); +width = 398; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,0,l), +(182,157,l), +(173,358,l), +(179,358,l), +(260,0,l), +(447,0,l), +(447,729,l), +(283,729,l), +(283,575,l), +(292,366,l), +(285,366,l), +(207,729,l), +(18,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(294,-167,ls), +(410,-167,o), +(447,-108,o), +(447,-2,cs), +(447,0,l), +(290,0,l), +(290,-1,ls), +(290,-28,o), +(283,-40,o), +(257,-40,cs), +(212,-40,l), +(212,-167,l) +); +} +); +width = 465; +}, +{ +background = { +shapes = ( +{ +ref = N; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(106,436,l), +(103,686,l), +(108,686,l), +(589,0,l), +(644,0,l), +(644,729,l), +(606,729,l), +(606,303,l), +(610,43,l), +(605,43,l), +(123,729,l), +(68,729,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,-167,ls), +(615,-167,o), +(644,-128,o), +(644,-70,cs), +(644,0,l), +(607,0,l), +(607,-60,ls), +(607,-113,o), +(589,-133,o), +(543,-133,cs), +(497,-133,l), +(497,-167,l) +); +} +); +width = 712; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,0,l), +(237,236,l), +(230,431,l), +(236,431,l), +(471,0,l), +(702,0,l), +(702,729,l), +(507,729,l), +(507,504,l), +(514,289,l), +(508,289,l), +(275,729,l), +(30,729,l), +(30,0,l) +); +}, +{ +closed = 1; +nodes = ( +(517,-167,ls), +(652,-167,o), +(702,-107,o), +(702,-4,cs), +(702,19,l), +(511,19,l), +(511,-7,ls), +(511,-41,o), +(496,-54,o), +(460,-54,cs), +(421,-54,l), +(421,-167,l) +); +} +); +width = 732; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(100,436,l), +(97,686,l), +(102,686,l), +(671,0,l), +(723,0,l), +(723,729,l), +(685,729,l), +(685,303,l), +(689,43,l), +(684,43,l), +(114,729,l), +(62,729,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(596,-167,ls), +(661,-167,o), +(723,-140,o), +(723,-43,cs), +(723,0,l), +(686,0,l), +(686,-35,ls), +(686,-107,o), +(656,-133,o), +(592,-133,cs), +(546,-133,l), +(546,-167,l) +); +} +); +width = 785; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,l), +(263,226,l), +(256,424,l), +(265,424,l), +(547,0,l), +(819,0,l), +(819,729,l), +(592,729,l), +(592,504,l), +(598,299,l), +(590,299,l), +(308,729,l), +(32,729,l), +(32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(622,-167,ls), +(756,-167,o), +(819,-122,o), +(819,-26,cs), +(819,81,l), +(598,81,l), +(598,-8,ls), +(598,-40,o), +(584,-51,o), +(548,-51,cs), +(511,-51,l), +(511,-167,l) +); +} +); +width = 851; +}, +{ +background = { +shapes = ( +{ +ref = N; +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(133,0,l), +(133,436,l), +(130,686,l), +(135,686,l), +(606,0,l), +(659,0,l), +(659,729,l), +(623,729,l), +(623,303,l), +(627,43,l), +(622,43,l), +(150,729,l), +(95,729,l), +(95,0,l) +); +}, +{ +closed = 1; +nodes = ( +(571,-167,ls), +(632,-167,o), +(659,-128,o), +(659,-70,cs), +(659,0,l), +(624,0,l), +(624,-60,ls), +(624,-113,o), +(606,-133,o), +(560,-133,cs), +(516,-133,l), +(516,-167,l) +); +} +); +width = 753; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(262,0,l), +(262,236,l), +(255,431,l), +(261,431,l), +(484,0,l), +(713,0,l), +(713,729,l), +(520,729,l), +(520,504,l), +(527,289,l), +(521,289,l), +(300,729,l), +(57,729,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(531,-167,ls), +(663,-167,o), +(713,-107,o), +(713,-4,cs), +(713,19,l), +(524,19,l), +(524,-7,ls), +(524,-41,o), +(509,-54,o), +(474,-54,cs), +(437,-54,l), +(437,-167,l) +); +} +); +width = 769; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(128,410,l), +(182,685,l), +(188,685,l), +(277,0,l), +(326,0,l), +(477,729,l), +(446,729,l), +(363,328,l), +(306,39,l), +(301,39,l), +(212,729,l), +(163,729,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(228,-167,ls), +(277,-167,o), +(298,-138,o), +(307,-94,cs), +(326,0,l), +(297,0,l), +(279,-89,ls), +(271,-128,o), +(257,-140,o), +(228,-140,cs), +(211,-140,l), +(206,-167,l) +); +} +); +width = 445; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,0,l), +(167,157,l), +(202,358,l), +(208,358,l), +(213,0,l), +(398,0,l), +(549,729,l), +(387,729,l), +(355,575,l), +(322,366,l), +(315,366,l), +(312,729,l), +(125,729,l), +(-27,0,l) +); +}, +{ +closed = 1; +nodes = ( +(211,-167,ls), +(327,-167,o), +(375,-111,o), +(397,-5,c), +(398,0,l), +(241,0,l), +(240,-5,l), +(234,-32,o), +(226,-40,o), +(200,-40,cs), +(155,-40,l), +(129,-167,l) +); +} +); +width = 483; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(168,436,l), +(218,686,l), +(222,686,l), +(548,0,l), +(601,0,l), +(752,729,l), +(715,729,l), +(626,303,l), +(576,43,l), +(571,43,l), +(243,729,l), +(191,729,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(477,-167,ls), +(538,-167,o), +(575,-128,o), +(587,-70,cs), +(601,0,l), +(564,0,l), +(552,-60,ls), +(541,-113,o), +(519,-133,o), +(473,-133,cs), +(427,-133,l), +(420,-167,l) +); +} +); +width = 749; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(253,236,l), +(283,431,l), +(291,431,l), +(426,0,l), +(653,0,l), +(805,729,l), +(606,729,l), +(557,494,l), +(526,292,l), +(518,292,l), +(382,729,l), +(154,729,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(434,-167,ls), +(569,-167,o), +(631,-107,o), +(652,-4,cs), +(657,19,l), +(466,19,l), +(461,-7,ls), +(454,-41,o), +(436,-54,o), +(400,-54,cs), +(361,-54,l), +(338,-167,l) +); +} +); +width = 769; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(146,436,l), +(197,689,l), +(201,689,l), +(619,0,l), +(670,0,l), +(822,729,l), +(784,729,l), +(697,303,l), +(644,40,l), +(639,40,l), +(222,729,l), +(169,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,-167,ls), +(574,-167,o), +(641,-140,o), +(661,-43,cs), +(670,0,l), +(633,0,l), +(626,-35,ls), +(611,-107,o), +(576,-133,o), +(512,-133,cs), +(466,-133,l), +(459,-167,l) +); +} +); +width = 797; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,l), +(267,232,l), +(303,441,l), +(311,441,l), +(501,0,l), +(768,0,l), +(919,729,l), +(695,729,l), +(647,498,l), +(608,282,l), +(600,282,l), +(411,729,l), +(142,729,l), +(-9,0,l) +); +}, +{ +closed = 1; +nodes = ( +(549,-167,ls), +(684,-167,o), +(746,-107,o), +(767,-4,cs), +(772,19,l), +(581,19,l), +(576,-7,ls), +(569,-41,o), +(551,-54,o), +(515,-54,cs), +(476,-54,l), +(453,-167,l) +); +} +); +width = 872; +} +); +metricLeft = H; +metricRight = H; +unicode = 330; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_ogonek.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_ogonek.glyph new file mode 100644 index 00000000..1509585a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_ogonek.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Eogonek; +kernLeft = KO_H; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (167,0); +ref = ogonek; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (164,0); +ref = ogonek; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (455,0); +ref = ogonek; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (381,0); +ref = ogonek; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (163,0); +ref = ogonek; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (163,0); +ref = ogonek; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (410,0); +ref = ogonek; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (323,0); +ref = ogonek; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (455,0); +ref = ogonek; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (376,0); +ref = ogonek; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (416,0); +ref = ogonek; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (325,0); +ref = ogonek; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (168,0); +ref = ogonek; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (161,0); +ref = ogonek; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (403,0); +ref = ogonek; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (318,0); +ref = ogonek; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (451,0); +ref = ogonek; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (376,0); +ref = ogonek; +} +); +width = 703; +} +); +unicode = 280; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_th.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_th.glyph new file mode 100644 index 00000000..d75ad9f6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_th.glyph @@ -0,0 +1,279 @@ +{ +color = 7; +glyphname = Eth; +kernRight = KO_Dcroat; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = D; +}, +{ +pos = (-30,86); +ref = strokeshortcomb.case; +} +); +width = 425; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +pos = (14,0); +ref = D; +}, +{ +pos = (-28,59); +ref = strokeshortcomb.case; +} +); +width = 504; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +pos = (75,0); +ref = D; +}, +{ +pos = (-22,-23); +ref = strokeshortcomb.case; +} +); +width = 860; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +pos = (21,0); +ref = D; +}, +{ +pos = (-38,62); +ref = strokeshortcomb.case; +} +); +width = 839; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = D; +}, +{ +pos = (-34,86); +ref = strokeshortcomb.case; +} +); +width = 385; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (14,0); +ref = D; +}, +{ +pos = (-29,59); +ref = strokeshortcomb.case; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (44,0); +ref = D; +}, +{ +pos = (-13,-23); +ref = strokeshortcomb.case; +} +); +width = 745; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (40,0); +ref = D; +}, +{ +pos = (-29,-13); +ref = strokeshortcomb.case; +} +); +width = 744; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (75,0); +ref = D; +}, +{ +pos = (-22,-23); +ref = strokeshortcomb.case; +} +); +width = 840; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (21,0); +ref = D; +}, +{ +pos = (-43,62); +ref = strokeshortcomb.case; +} +); +width = 809; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (44,0); +ref = D; +}, +{ +pos = (2,-23); +ref = strokeshortcomb.case; +} +); +width = 774; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (40,0); +ref = D; +}, +{ +pos = (-17,-13); +ref = strokeshortcomb.case; +} +); +width = 785; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +pos = (5,0); +ref = D; +}, +{ +pos = (-1,86); +ref = strokeshortcomb.case; +} +); +width = 421; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +pos = (22,0); +ref = D; +}, +{ +pos = (-16,59); +ref = strokeshortcomb.case; +} +); +width = 510; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +pos = (47,0); +ref = D; +}, +{ +pos = (-14,-23); +ref = strokeshortcomb.case; +} +); +width = 778; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +pos = (40,0); +ref = D; +}, +{ +pos = (-24,-13); +ref = strokeshortcomb.case; +} +); +width = 779; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +pos = (86,0); +ref = D; +}, +{ +pos = (-27,-23); +ref = strokeshortcomb.case; +} +); +width = 869; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +pos = (43,0); +ref = D; +}, +{ +pos = (-26,62); +ref = strokeshortcomb.case; +} +); +width = 856; +} +); +metricRight = D; +unicode = 208; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/E_tilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/E_tilde.glyph new file mode 100644 index 00000000..3ed29982 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/E_tilde.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Etilde; +kernRight = KO_E; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = E; +}, +{ +pos = (44,57); +ref = tildecomb; +} +); +width = 312; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-42,50); +ref = tildecomb; +} +); +width = 380; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = E; +}, +{ +pos = (129,57); +ref = tildecomb; +} +); +width = 660; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = E; +}, +{ +pos = (102,56); +ref = tildecomb; +} +); +width = 710; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (40,57); +ref = tildecomb; +} +); +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-43,50); +ref = tildecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = E; +}, +{ +pos = (117,57); +ref = tildecomb; +} +); +width = 568; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = E; +}, +{ +pos = (58,51); +ref = tildecomb; +} +); +width = 591; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = E; +}, +{ +alignment = -1; +pos = (129,57); +ref = tildecomb; +} +); +width = 660; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = E; +}, +{ +pos = (97,56); +ref = tildecomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (149,57); +ref = tildecomb; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (65,51); +ref = tildecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = E; +}, +{ +pos = (45,57); +ref = tildecomb; +} +); +width = 310; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-29,50); +ref = tildecomb; +} +); +width = 378; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = E; +}, +{ +pos = (150,57); +ref = tildecomb; +} +); +width = 597; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = E; +}, +{ +pos = (79,51); +ref = tildecomb; +} +); +width = 631; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = E; +}, +{ +pos = (156,57); +ref = tildecomb; +} +); +width = 653; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = E; +}, +{ +pos = (114,51); +ref = tildecomb; +} +); +width = 703; +} +); +unicode = 7868; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/F_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/F_.glyph new file mode 100644 index 00000000..ff0ac1db --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/F_.glyph @@ -0,0 +1,798 @@ +{ +glyphname = F; +kernLeft = KO_H; +kernRight = KO_F; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (186,0); +}, +{ +name = top; +pos = (186,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,l), +(215,587,l), +(200,572,l), +(362,572,l), +(362,729,l), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(344,271,l), +(344,420,l), +(184,420,l), +(184,271,l) +); +} +); +width = 375; +}, +{ +anchors = ( +{ +name = bottom; +pos = (156,0); +}, +{ +name = top; +pos = (156,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,715,l), +(82,700,l), +(289,700,l), +(289,729,l), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(264,353,l), +(264,382,l), +(80,382,l), +(80,353,l) +); +} +); +width = 293; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,708,l), +(95,693,l), +(636,693,l), +(636,729,l), +(72,729,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(596,349,l), +(596,384,l), +(86,384,l), +(86,349,l) +); +} +); +width = 653; +}, +{ +anchors = ( +{ +name = bottom; +pos = (333,0); +}, +{ +name = top; +pos = (333,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,565,l), +(261,550,l), +(657,550,l), +(657,729,l), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(617,257,l), +(617,426,l), +(245,426,l), +(245,257,l) +); +} +); +width = 666; +}, +{ +anchors = ( +{ +name = bottom; +pos = (132,0); +}, +{ +name = top; +pos = (132,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(73,715,l), +(58,700,l), +(265,700,l), +(265,729,l), +(42,729,l), +(42,0,l) +); +}, +{ +closed = 1; +nodes = ( +(245,353,l), +(245,382,l), +(56,382,l), +(56,353,l) +); +} +); +width = 265; +}, +{ +anchors = ( +{ +name = bottom; +pos = (175,0); +}, +{ +name = top; +pos = (175,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,587,l), +(189,572,l), +(351,572,l), +(351,729,l), +(18,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(337,271,l), +(337,420,l), +(173,420,l), +(173,271,l) +); +} +); +width = 355; +}, +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = top; +pos = (275,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,704,l), +(97,693,l), +(549,693,l), +(549,729,l), +(70,729,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,349,l), +(509,384,l), +(88,384,l), +(88,349,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 553; +}, +{ +anchors = ( +{ +name = bottom; +pos = (281,0); +}, +{ +name = top; +pos = (281,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(233,589,l), +(201,557,l), +(579,557,l), +(579,729,l), +(30,729,l), +(30,0,l) +); +}, +{ +closed = 1; +nodes = ( +(539,261,l), +(539,424,l), +(185,424,l), +(185,261,l) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (321,0); +}, +{ +name = top; +pos = (321,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(100,708,l), +(85,693,l), +(626,693,l), +(626,729,l), +(62,729,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(586,349,l), +(586,384,l), +(76,384,l), +(76,349,l) +); +} +); +width = 633; +}, +{ +anchors = ( +{ +name = bottom; +pos = (318,0); +}, +{ +name = top; +pos = (318,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,565,l), +(246,550,l), +(642,550,l), +(642,729,l), +(32,729,l), +(32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(602,251,l), +(602,426,l), +(230,426,l), +(230,251,l) +); +} +); +width = 641; +}, +{ +anchors = ( +{ +name = bottom; +pos = (336,0); +}, +{ +name = top; +pos = (336,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,l), +(143,704,l), +(132,693,l), +(594,693,l), +(594,729,l), +(105,729,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(545,349,l), +(545,384,l), +(123,384,l), +(123,349,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 627; +}, +{ +anchors = ( +{ +name = bottom; +pos = (301,0); +}, +{ +name = top; +pos = (301,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(258,0,l), +(258,589,l), +(227,557,l), +(591,557,l), +(591,729,l), +(57,729,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,261,l), +(552,424,l), +(211,424,l), +(211,261,l) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = bottom; +pos = (112,0); +}, +{ +name = top; +pos = (263,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(191,714,l), +(176,700,l), +(378,700,l), +(384,729,l), +(163,729,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(281,353,l), +(287,382,l), +(103,382,l), +(93,353,l) +); +} +); +width = 290; +}, +{ +anchors = ( +{ +name = bottom; +pos = (138,0); +}, +{ +name = top; +pos = (289,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,0,l), +(285,616,l), +(231,572,l), +(420,572,l), +(454,729,l), +(125,729,l), +(-27,0,l) +); +}, +{ +closed = 1; +nodes = ( +(342,271,l), +(373,420,l), +(185,420,l), +(154,271,l) +); +} +); +width = 372; +}, +{ +anchors = ( +{ +name = bottom; +pos = (248,0); +}, +{ +name = top; +pos = (399,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(224,706,l), +(209,693,l), +(649,693,l), +(656,729,l), +(191,729,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(539,349,l), +(545,384,l), +(136,384,l), +(123,349,l) +); +} +); +width = 590; +}, +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = top; +pos = (403,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(328,601,l), +(274,557,l), +(642,557,l), +(678,729,l), +(154,729,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(542,262,l), +(576,425,l), +(231,425,l), +(197,262,l) +); +} +); +width = 606; +}, +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +}, +{ +name = top; +pos = (434,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(202,705,l), +(187,693,l), +(718,693,l), +(725,729,l), +(169,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(608,349,l), +(614,384,l), +(116,384,l), +(106,349,l) +); +} +); +width = 646; +}, +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +}, +{ +name = top; +pos = (434,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,l), +(342,594,l), +(288,550,l), +(706,550,l), +(743,729,l), +(142,729,l), +(-9,0,l) +); +}, +{ +closed = 1; +nodes = ( +(606,257,l), +(642,426,l), +(246,426,l), +(210,257,l) +); +} +); +width = 657; +} +); +metricLeft = H; +unicode = 70; +userData = { +KernOnName = F; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_.glyph new file mode 100644 index 00000000..bcd1f455 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_.glyph @@ -0,0 +1,1343 @@ +{ +glyphname = G; +kernLeft = KO_O; +kernRight = KO_G; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (245,0); +}, +{ +name = top; +pos = (252,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(427,-9,o), +(478,136,o), +(478,365,cs), +(478,594,o), +(427,739,o), +(247,739,cs), +(68,739,o), +(16,595,o), +(16,365,cs), +(16,135,o), +(68,-9,o), +(247,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,147,o), +(197,202,o), +(197,365,cs), +(197,515,o), +(205,583,o), +(247,583,cs), +(285,583,o), +(298,529,o), +(298,365,cs), +(298,217,o), +(290,147,o), +(247,147,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,-9,o), +(467,74,o), +(467,249,cs), +(467,399,l), +(249,399,l), +(249,264,l), +(340,264,l), +(297,307,l), +(297,254,ls), +(297,185,o), +(288,147,o), +(252,147,cs), +(208,147,o), +(197,192,o), +(197,370,cs), +(197,540,o), +(208,583,o), +(250,583,cs), +(281,583,o), +(297,555,o), +(297,465,c), +(467,465,l), +(468,640,o), +(400,739,o), +(252,739,cs), +(112,739,o), +(16,662,o), +(16,370,cs), +(16,143,o), +(63,-9,o), +(248,-9,cs) +); +} +); +width = 485; +}, +{ +anchors = ( +{ +name = bottom; +pos = (208,0); +}, +{ +name = top; +pos = (210,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-10,o), +(372,44,o), +(372,257,cs), +(372,375,l), +(198,375,l), +(198,344,l), +(369,344,l), +(339,375,l), +(339,257,ls), +(339,105,o), +(302,19,o), +(209,19,cs), +(105,19,o), +(78,159,o), +(78,364,cs), +(78,570,o), +(105,709,o), +(210,709,cs), +(293,709,o), +(329,650,o), +(340,495,c), +(372,495,l), +(364,641,o), +(331,738,o), +(212,738,cs), +(114,738,o), +(45,668,o), +(45,364,cs), +(45,65,o), +(113,-10,o), +(210,-10,cs) +); +} +); +width = 417; +}, +{ +anchors = ( +{ +name = bottom; +pos = (413,0); +}, +{ +name = top; +pos = (417,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(638,-8,o), +(788,124,o), +(788,340,cs), +(788,366,l), +(402,366,l), +(402,331,l), +(777,331,l), +(747,353,l), +(747,327,ls), +(747,140,o), +(612,28,o), +(417,28,cs), +(208,28,o), +(73,162,o), +(73,365,cs), +(73,567,o), +(210,699,o), +(417,699,cs), +(580,699,o), +(703,620,o), +(728,493,c), +(767,493,l), +(741,640,o), +(601,736,o), +(417,736,cs), +(190,736,o), +(36,587,o), +(36,364,cs), +(36,141,o), +(187,-8,o), +(417,-8,cs) +); +} +); +width = 820; +}, +{ +anchors = ( +{ +name = bottom; +pos = (426,0); +}, +{ +name = top; +pos = (437,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(650,-10,o), +(839,101,o), +(839,331,cs), +(839,405,l), +(420,405,l), +(420,262,l), +(669,262,l), +(613,322,l), +(613,304,ls), +(613,223,o), +(558,169,o), +(431,169,cs), +(316,169,o), +(243,231,o), +(243,365,cs), +(243,486,o), +(305,560,o), +(437,560,cs), +(518,560,o), +(582,531,o), +(601,473,c), +(832,473,l), +(813,632,o), +(669,739,o), +(437,739,cs), +(167,739,o), +(12,592,o), +(12,365,cs), +(12,138,o), +(166,-10,o), +(428,-10,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(650,-10,o), +(839,101,o), +(839,331,cs), +(839,405,l), +(420,405,l), +(420,262,l), +(669,262,l), +(613,322,l), +(613,304,ls), +(613,223,o), +(558,169,o), +(431,169,cs), +(316,169,o), +(243,231,o), +(243,365,cs), +(243,486,o), +(305,560,o), +(437,560,cs), +(518,560,o), +(582,531,o), +(601,473,c), +(832,473,l), +(813,632,o), +(669,739,o), +(437,739,cs), +(167,739,o), +(12,592,o), +(12,365,cs), +(12,138,o), +(166,-10,o), +(428,-10,cs) +); +} +); +width = 853; +}, +{ +anchors = ( +{ +name = bottom; +pos = (188,0); +}, +{ +name = top; +pos = (190,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,-10,o), +(352,44,o), +(352,257,cs), +(352,375,l), +(178,375,l), +(178,344,l), +(349,344,l), +(319,375,l), +(319,257,ls), +(319,105,o), +(282,19,o), +(189,19,cs), +(85,19,o), +(58,159,o), +(58,364,cs), +(58,570,o), +(85,709,o), +(190,709,cs), +(273,709,o), +(309,650,o), +(320,495,c), +(352,495,l), +(344,641,o), +(311,738,o), +(192,738,cs), +(94,738,o), +(25,668,o), +(25,364,cs), +(25,65,o), +(93,-10,o), +(190,-10,cs) +); +} +); +width = 377; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = top; +pos = (243,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(427,-9,o), +(478,136,o), +(478,365,cs), +(478,594,o), +(427,739,o), +(247,739,cs), +(68,739,o), +(16,595,o), +(16,365,cs), +(16,135,o), +(68,-9,o), +(247,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,147,o), +(197,202,o), +(197,365,cs), +(197,515,o), +(205,583,o), +(247,583,cs), +(285,583,o), +(298,529,o), +(298,365,cs), +(298,217,o), +(290,147,o), +(247,147,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,-9,o), +(458,74,o), +(458,249,cs), +(458,399,l), +(240,399,l), +(240,264,l), +(331,264,l), +(288,307,l), +(288,254,ls), +(288,185,o), +(279,147,o), +(243,147,cs), +(199,147,o), +(188,192,o), +(188,370,cs), +(188,540,o), +(199,583,o), +(241,583,cs), +(272,583,o), +(288,555,o), +(288,465,c), +(458,465,l), +(459,640,o), +(391,739,o), +(243,739,cs), +(103,739,o), +(7,662,o), +(7,370,cs), +(7,143,o), +(54,-9,o), +(239,-9,cs) +); +} +); +width = 466; +}, +{ +anchors = ( +{ +name = bottom; +pos = (382,0); +}, +{ +name = top; +pos = (386,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(586,-8,o), +(717,124,o), +(717,340,cs), +(717,366,l), +(438,366,l), +(438,330,l), +(699,330,l), +(676,355,l), +(676,335,ls), +(676,140,o), +(559,28,o), +(390,28,cs), +(210,28,o), +(94,162,o), +(94,365,cs), +(94,567,o), +(211,699,o), +(391,699,cs), +(530,699,o), +(637,621,o), +(659,493,c), +(699,493,l), +(677,640,o), +(554,736,o), +(391,736,cs), +(190,736,o), +(55,587,o), +(55,364,cs), +(55,141,o), +(187,-8,o), +(390,-8,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(590,-8,o), +(727,124,o), +(727,340,cs), +(727,366,l), +(406,366,l), +(406,330,l), +(710,330,l), +(686,355,l), +(686,335,ls), +(686,140,o), +(563,28,o), +(385,28,cs), +(196,28,o), +(74,162,o), +(74,365,cs), +(74,567,o), +(197,699,o), +(386,699,cs), +(527,699,o), +(644,626,o), +(669,493,c), +(708,493,l), +(685,640,o), +(555,736,o), +(386,736,cs), +(177,736,o), +(35,587,o), +(35,364,cs), +(35,142,o), +(173,-8,o), +(385,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +28 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 758; +}, +{ +anchors = ( +{ +name = bottom; +pos = (366,0); +}, +{ +name = top; +pos = (375,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(582,-10,o), +(731,115,o), +(731,310,cs), +(731,401,l), +(358,401,l), +(358,254,l), +(578,254,l), +(527,318,l), +(527,283,ls), +(527,208,o), +(470,158,o), +(373,158,cs), +(270,158,o), +(209,220,o), +(209,365,cs), +(209,509,o), +(275,567,o), +(375,567,cs), +(450,567,o), +(500,534,o), +(511,480,c), +(720,480,l), +(703,634,o), +(579,739,o), +(375,739,cs), +(150,739,o), +(1,607,o), +(1,365,cs), +(1,140,o), +(134,-10,o), +(368,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +}; +width = 734; +}, +{ +anchors = ( +{ +name = bottom; +pos = (403,0); +}, +{ +name = top; +pos = (407,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(628,-8,o), +(778,124,o), +(778,340,cs), +(778,366,l), +(392,366,l), +(392,331,l), +(767,331,l), +(737,353,l), +(737,327,ls), +(737,140,o), +(602,28,o), +(407,28,cs), +(198,28,o), +(63,162,o), +(63,365,cs), +(63,567,o), +(200,699,o), +(407,699,cs), +(570,699,o), +(693,620,o), +(718,493,c), +(757,493,l), +(731,640,o), +(591,736,o), +(407,736,cs), +(180,736,o), +(26,587,o), +(26,364,cs), +(26,141,o), +(177,-8,o), +(407,-8,cs) +); +} +); +width = 800; +}, +{ +anchors = ( +{ +name = bottom; +pos = (416,0); +}, +{ +name = top; +pos = (427,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(650,-10,o), +(839,101,o), +(839,331,cs), +(839,405,l), +(420,405,l), +(420,262,l), +(669,262,l), +(613,322,l), +(613,304,ls), +(613,223,o), +(558,169,o), +(431,169,cs), +(316,169,o), +(243,231,o), +(243,365,cs), +(243,486,o), +(305,560,o), +(437,560,cs), +(518,560,o), +(582,531,o), +(601,473,c), +(832,473,l), +(813,632,o), +(669,739,o), +(437,739,cs), +(167,739,o), +(12,592,o), +(12,365,cs), +(12,138,o), +(166,-10,o), +(428,-10,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(829,101,o), +(829,331,cs), +(829,405,l), +(410,405,l), +(410,262,l), +(659,262,l), +(603,322,l), +(603,304,ls), +(603,223,o), +(548,169,o), +(421,169,cs), +(306,169,o), +(233,231,o), +(233,365,cs), +(233,486,o), +(295,560,o), +(427,560,cs), +(508,560,o), +(572,531,o), +(591,473,c), +(822,473,l), +(803,632,o), +(659,739,o), +(427,739,cs), +(157,739,o), +(2,592,o), +(2,365,cs), +(2,138,o), +(156,-10,o), +(418,-10,cs) +); +} +); +width = 833; +}, +{ +anchors = ( +{ +name = bottom; +pos = (403,0); +}, +{ +name = top; +pos = (407,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(592,-8,o), +(723,124,o), +(723,340,cs), +(723,366,l), +(444,366,l), +(444,330,l), +(705,330,l), +(682,355,l), +(682,335,ls), +(682,140,o), +(565,28,o), +(396,28,cs), +(216,28,o), +(100,162,o), +(100,365,cs), +(100,567,o), +(217,699,o), +(397,699,cs), +(536,699,o), +(643,621,o), +(665,493,c), +(705,493,l), +(683,640,o), +(560,736,o), +(397,736,cs), +(196,736,o), +(61,587,o), +(61,364,cs), +(61,141,o), +(193,-8,o), +(396,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(596,-8,o), +(714,124,o), +(714,342,cs), +(714,351,l), +(427,351,l), +(427,315,l), +(699,315,l), +(676,341,l), +(676,334,ls), +(676,137,o), +(570,28,o), +(410,28,cs), +(238,28,o), +(126,162,o), +(126,365,cs), +(126,567,o), +(238,699,o), +(410,699,cs), +(528,699,o), +(620,636,o), +(648,534,c), +(688,534,l), +(658,653,o), +(551,736,o), +(410,736,cs), +(218,736,o), +(87,587,o), +(87,364,cs), +(87,142,o), +(215,-8,o), +(410,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +28 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 789; +}, +{ +anchors = ( +{ +name = bottom; +pos = (392,0); +}, +{ +name = top; +pos = (401,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(606,-10,o), +(741,114,o), +(741,310,cs), +(741,401,l), +(392,401,l), +(392,254,l), +(589,254,l), +(539,318,l), +(539,303,ls), +(539,207,o), +(492,158,o), +(399,158,cs), +(304,158,o), +(252,231,o), +(252,365,cs), +(252,495,o), +(305,567,o), +(403,567,cs), +(470,567,o), +(512,537,o), +(523,489,c), +(732,489,l), +(712,646,o), +(590,739,o), +(403,739,cs), +(184,739,o), +(47,594,o), +(47,365,cs), +(47,136,o), +(181,-10,o), +(394,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +}; +width = 778; +}, +{ +anchors = ( +{ +name = bottom; +pos = (166,0); +}, +{ +name = top; +pos = (298,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,-9,o), +(324,36,o), +(367,246,cs), +(393,375,l), +(221,375,l), +(215,344,l), +(367,344,l), +(356,354,l), +(335,247,ls), +(303,93,o), +(252,20,o), +(168,20,cs), +(51,20,o), +(61,180,o), +(101,374,cs), +(143,573,o), +(196,708,o), +(294,708,cs), +(395,708,o), +(401,619,o), +(386,494,c), +(418,494,l), +(438,636,o), +(419,738,o), +(298,738,cs), +(196,738,o), +(124,639,o), +(69,375,cs), +(27,177,o), +(12,-9,o), +(166,-9,cs) +); +} +); +width = 415; +}, +{ +anchors = ( +{ +name = bottom; +pos = (207,0); +}, +{ +name = top; +pos = (319,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,-9,o), +(419,58,o), +(454,229,cs), +(490,397,l), +(273,397,l), +(245,264,l), +(314,264,l), +(296,282,l), +(289,241,ls), +(274,171,o), +(254,147,o), +(226,147,cs), +(173,147,o), +(187,232,o), +(215,369,cs), +(245,516,o), +(269,582,o), +(309,582,cs), +(344,582,o), +(348,546,o), +(336,464,c), +(502,464,l), +(529,647,o), +(478,739,o), +(321,739,cs), +(169,739,o), +(88,614,o), +(39,382,cs), +(-7,163,o), +(3,-9,o), +(205,-9,cs) +); +} +); +width = 481; +}, +{ +anchors = ( +{ +name = bottom; +pos = (356,0); +}, +{ +name = top; +pos = (464,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(549,-10,o), +(680,92,o), +(721,309,cs), +(732,366,l), +(417,366,l), +(409,330,l), +(694,330,l), +(684,342,l), +(681,324,ls), +(649,138,o), +(554,27,o), +(359,27,cs), +(207,27,o), +(109,127,o), +(115,308,cs), +(123,547,o), +(258,701,o), +(458,701,cs), +(603,701,o), +(693,612,o), +(696,493,c), +(735,493,l), +(735,633,o), +(629,739,o), +(464,739,cs), +(241,739,o), +(84,566,o), +(75,308,cs), +(69,119,o), +(179,-10,o), +(354,-10,cs) +); +} +); +width = 765; +}, +{ +anchors = ( +{ +name = bottom; +pos = (379,0); +}, +{ +name = top; +pos = (458,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(562,-10,o), +(712,77,o), +(756,305,cs), +(774,398,l), +(422,398,l), +(394,267,l), +(575,267,l), +(546,300,l), +(542,278,ls), +(527,195,o), +(477,157,o), +(393,157,cs), +(308,157,o), +(252,207,o), +(252,324,cs), +(252,471,o), +(325,570,o), +(447,570,cs), +(512,570,o), +(558,538,o), +(565,481,c), +(770,481,l), +(765,635,o), +(639,737,o), +(454,737,cs), +(215,737,o), +(47,576,o), +(47,319,cs), +(47,121,o), +(164,-10,o), +(377,-10,cs) +); +} +); +width = 776; +}, +{ +anchors = ( +{ +name = bottom; +pos = (397,0); +}, +{ +name = top; +pos = (474,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(604,-10,o), +(747,101,o), +(789,298,cs), +(803,366,l), +(411,366,l), +(403,331,l), +(770,331,l), +(758,343,l), +(748,295,ls), +(714,124,o), +(585,27,o), +(403,27,cs), +(219,27,o), +(99,127,o), +(99,314,cs), +(99,551,o), +(245,703,o), +(469,703,cs), +(612,703,o), +(746,625,o), +(762,494,c), +(800,494,l), +(786,642,o), +(644,739,o), +(472,739,cs), +(230,739,o), +(59,568,o), +(59,317,cs), +(59,115,o), +(190,-10,o), +(401,-10,cs) +); +} +); +width = 814; +}, +{ +anchors = ( +{ +name = bottom; +pos = (421,0); +}, +{ +name = top; +pos = (489,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(648,-9,o), +(799,96,o), +(842,293,cs), +(866,402,l), +(455,402,l), +(423,262,l), +(649,262,l), +(616,309,l), +(612,286,ls), +(599,213,o), +(530,169,o), +(440,169,cs), +(332,169,o), +(261,227,o), +(261,340,cs), +(261,471,o), +(338,561,o), +(474,561,cs), +(546,561,o), +(623,531,o), +(636,468,c), +(863,468,l), +(854,629,o), +(698,739,o), +(476,739,cs), +(216,739,o), +(32,574,o), +(32,322,cs), +(32,122,o), +(175,-9,o), +(419,-9,cs) +); +} +); +width = 852; +} +); +unicode = 71; +userData = { +KernOnName = G; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_.ss07.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_.ss07.glyph new file mode 100644 index 00000000..7e807213 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_.ss07.glyph @@ -0,0 +1,1494 @@ +{ +glyphname = G.ss07; +kernLeft = KO_O; +kernRight = KO_G.ss07; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (248,0); +}, +{ +name = top; +pos = (252,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(428,259,l), +(414,203,o), +(361,166,o), +(295,166,cs), +(205,166,o), +(149,229,o), +(149,361,cs), +(149,489,o), +(203,562,o), +(300,562,cs), +(361,562,o), +(411,529,o), +(428,471,c), +(638,471,l), +(622,631,o), +(488,738,o), +(301,738,cs), +(80,738,o), +(-65,589,o), +(-65,362,cs), +(-65,139,o), +(74,-10,o), +(301,-10,cs), +(481,-10,o), +(622,98,o), +(638,259,c) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,-10,o), +(326,13,o), +(353,94,c), +(358,94,l), +(365,0,l), +(481,0,l), +(481,405,l), +(254,405,l), +(254,270,l), +(352,270,l), +(312,317,l), +(312,273,ls), +(312,179,o), +(295,146,o), +(254,146,cs), +(207,146,o), +(197,217,o), +(197,364,cs), +(197,526,o), +(212,582,o), +(253,582,cs), +(290,582,o), +(302,541,o), +(306,464,c), +(476,464,l), +(472,667,o), +(387,738,o), +(252,738,cs), +(68,738,o), +(16,590,o), +(16,364,cs), +(16,138,o), +(66,-10,o), +(208,-10,cs) +); +} +); +width = 503; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = top; +pos = (210,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(267,-10,o), +(317,35,o), +(333,136,c), +(337,136,l), +(340,0,l), +(366,0,l), +(366,374,l), +(192,374,l), +(192,344,l), +(353,344,l), +(333,364,l), +(333,299,ls), +(333,116,o), +(291,19,o), +(205,19,cs), +(107,19,o), +(78,149,o), +(78,364,cs), +(78,570,o), +(105,709,o), +(210,709,cs), +(282,709,o), +(328,666,o), +(339,495,c), +(372,495,l), +(364,630,o), +(334,739,o), +(212,739,cs), +(114,739,o), +(45,666,o), +(45,364,cs), +(45,64,o), +(112,-10,o), +(205,-10,cs) +); +} +); +width = 421; +}, +{ +anchors = ( +{ +name = bottom; +pos = (435,0); +}, +{ +name = top; +pos = (422,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(567,-8,o), +(695,64,o), +(733,174,c), +(740,174,l), +(746,0,l), +(777,0,l), +(777,376,l), +(379,376,l), +(379,340,l), +(756,340,l), +(738,357,l), +(738,298,ls), +(738,132,o), +(602,28,o), +(407,28,cs), +(202,28,o), +(74,161,o), +(74,364,cs), +(74,566,o), +(205,700,o), +(422,700,cs), +(587,700,o), +(697,629,o), +(728,515,c), +(767,515,l), +(734,658,o), +(600,736,o), +(422,736,cs), +(189,736,o), +(36,587,o), +(36,364,cs), +(36,140,o), +(185,-8,o), +(409,-8,cs) +); +} +); +width = 828; +}, +{ +anchors = ( +{ +name = bottom; +pos = (435,0); +}, +{ +name = top; +pos = (445,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(501,-10,o), +(609,28,o), +(650,97,c), +(658,97,l), +(666,0,l), +(847,0,l), +(847,410,l), +(435,410,l), +(435,261,l), +(639,261,l), +(611,294,l), +(611,271,ls), +(611,208,o), +(528,163,o), +(437,163,cs), +(321,163,o), +(243,231,o), +(243,358,cs), +(243,479,o), +(305,563,o), +(446,563,cs), +(531,563,o), +(593,525,o), +(606,475,c), +(838,475,l), +(823,633,o), +(665,739,o), +(445,739,cs), +(178,739,o), +(12,598,o), +(12,352,cs), +(12,135,o), +(160,-10,o), +(380,-10,cs) +); +} +); +width = 877; +}, +{ +anchors = ( +{ +name = bottom; +pos = (183,0); +}, +{ +name = top; +pos = (176,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,-10,o), +(278,35,o), +(294,136,c), +(295,136,l), +(298,0,l), +(324,0,l), +(324,384,l), +(168,384,l), +(168,354,l), +(311,354,l), +(291,374,l), +(291,299,ls), +(291,116,o), +(252,19,o), +(171,19,cs), +(92,19,o), +(61,129,o), +(61,364,cs), +(61,599,o), +(96,709,o), +(181,709,cs), +(250,709,o), +(281,645,o), +(291,495,c), +(324,495,l), +(314,665,o), +(275,739,o), +(183,739,cs), +(72,739,o), +(28,629,o), +(28,364,cs), +(28,100,o), +(66,-10,o), +(171,-10,cs) +); +} +); +width = 361; +}, +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = top; +pos = (243,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(428,259,l), +(414,203,o), +(361,166,o), +(295,166,cs), +(205,166,o), +(149,229,o), +(149,361,cs), +(149,489,o), +(203,562,o), +(300,562,cs), +(361,562,o), +(411,529,o), +(428,471,c), +(638,471,l), +(622,631,o), +(488,738,o), +(301,738,cs), +(80,738,o), +(-65,589,o), +(-65,362,cs), +(-65,139,o), +(74,-10,o), +(301,-10,cs), +(481,-10,o), +(622,98,o), +(638,259,c) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,-10,o), +(307,27,o), +(326,94,c), +(327,94,l), +(336,0,l), +(473,0,l), +(473,428,l), +(243,428,l), +(243,281,l), +(344,281,l), +(304,325,l), +(304,273,ls), +(304,187,o), +(286,146,o), +(249,146,cs), +(204,146,o), +(195,217,o), +(195,364,cs), +(195,526,o), +(209,582,o), +(248,582,cs), +(278,582,o), +(291,547,o), +(295,476,c), +(469,476,l), +(462,654,o), +(397,738,o), +(243,738,cs), +(59,738,o), +(7,590,o), +(7,364,cs), +(7,138,o), +(57,-10,o), +(199,-10,cs) +); +} +); +width = 484; +}, +{ +anchors = ( +{ +name = bottom; +pos = (383,0); +}, +{ +name = top; +pos = (385,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(540,-8,o), +(656,64,o), +(691,174,c), +(697,174,l), +(702,0,l), +(734,0,l), +(734,376,l), +(373,376,l), +(373,340,l), +(710,340,l), +(693,357,l), +(693,298,ls), +(693,132,o), +(573,28,o), +(398,28,cs), +(215,28,o), +(101,161,o), +(101,364,cs), +(101,566,o), +(217,700,o), +(411,700,cs), +(559,700,o), +(657,629,o), +(685,515,c), +(725,515,l), +(696,658,o), +(572,736,o), +(411,736,cs), +(200,736,o), +(61,587,o), +(61,364,cs), +(61,141,o), +(196,-8,o), +(398,-8,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-8,o), +(640,64,o), +(676,174,c), +(677,174,l), +(682,0,l), +(714,0,l), +(714,376,l), +(353,376,l), +(353,340,l), +(692,340,l), +(673,359,l), +(673,298,ls), +(673,132,o), +(553,28,o), +(385,28,cs), +(194,28,o), +(76,163,o), +(76,364,cs), +(76,565,o), +(193,700,o), +(385,700,cs), +(544,700,o), +(632,629,o), +(665,515,c), +(705,515,l), +(671,658,o), +(557,736,o), +(385,736,cs), +(174,736,o), +(35,588,o), +(35,364,cs), +(35,142,o), +(173,-8,o), +(385,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +33 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +20 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 766; +}, +{ +anchors = ( +{ +name = bottom; +pos = (375,0); +}, +{ +name = top; +pos = (378,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-10,o), +(722,98,o), +(739,258,c), +(534,258,l), +(520,200,o), +(460,162,o), +(391,162,cs), +(293,162,o), +(227,220,o), +(227,365,cs), +(227,509,o), +(293,567,o), +(391,567,cs), +(464,567,o), +(518,528,o), +(534,472,c), +(739,472,l), +(722,631,o), +(585,739,o), +(391,739,cs), +(168,739,o), +(19,607,o), +(19,365,cs), +(19,122,o), +(168,-10,o), +(391,-10,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,-10,o), +(543,33,o), +(573,92,c), +(574,92,l), +(582,0,l), +(743,0,l), +(743,415,l), +(377,415,l), +(377,261,l), +(565,261,l), +(528,297,l), +(527,279,ls), +(523,210,o), +(465,156,o), +(379,156,cs), +(280,156,o), +(214,221,o), +(214,358,cs), +(214,483,o), +(269,567,o), +(385,567,cs), +(459,567,o), +(507,535,o), +(525,487,c), +(741,487,l), +(717,650,o), +(597,739,o), +(386,739,cs), +(156,739,o), +(4,600,o), +(4,352,cs), +(4,126,o), +(138,-10,o), +(342,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +}; +width = 760; +}, +{ +anchors = ( +{ +name = bottom; +pos = (437,0); +}, +{ +name = top; +pos = (424,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(569,-8,o), +(703,64,o), +(741,174,c), +(742,174,l), +(748,0,l), +(779,0,l), +(779,376,l), +(381,376,l), +(381,340,l), +(758,340,l), +(740,357,l), +(740,298,ls), +(740,132,o), +(604,28,o), +(409,28,cs), +(204,28,o), +(76,161,o), +(76,364,cs), +(76,566,o), +(207,700,o), +(424,700,cs), +(601,700,o), +(697,629,o), +(730,515,c), +(769,515,l), +(734,658,o), +(614,736,o), +(424,736,cs), +(191,736,o), +(38,587,o), +(38,364,cs), +(38,140,o), +(187,-8,o), +(411,-8,cs) +); +} +); +width = 820; +}, +{ +anchors = ( +{ +name = bottom; +pos = (437,0); +}, +{ +name = top; +pos = (447,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(510,-10,o), +(620,33,o), +(662,97,c), +(663,97,l), +(671,0,l), +(852,0,l), +(852,410,l), +(437,410,l), +(437,261,l), +(644,261,l), +(616,294,l), +(616,271,ls), +(616,208,o), +(532,163,o), +(439,163,cs), +(323,163,o), +(245,231,o), +(245,358,cs), +(245,479,o), +(307,563,o), +(448,563,cs), +(531,563,o), +(591,525,o), +(604,475,c), +(847,475,l), +(827,641,o), +(678,739,o), +(451,739,cs), +(180,739,o), +(14,598,o), +(14,352,cs), +(14,135,o), +(162,-10,o), +(382,-10,cs) +); +} +); +width = 866; +}, +{ +anchors = ( +{ +name = bottom; +pos = (398,0); +}, +{ +name = top; +pos = (400,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(540,-8,o), +(656,64,o), +(691,174,c), +(697,174,l), +(702,0,l), +(734,0,l), +(734,376,l), +(373,376,l), +(373,340,l), +(710,340,l), +(693,357,l), +(693,298,ls), +(693,132,o), +(573,28,o), +(398,28,cs), +(215,28,o), +(101,161,o), +(101,364,cs), +(101,566,o), +(217,700,o), +(411,700,cs), +(559,700,o), +(657,629,o), +(685,515,c), +(725,515,l), +(696,658,o), +(572,736,o), +(411,736,cs), +(200,736,o), +(61,587,o), +(61,364,cs), +(61,141,o), +(196,-8,o), +(398,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-8,o), +(629,64,o), +(660,174,c), +(666,174,l), +(671,0,l), +(703,0,l), +(703,359,l), +(408,359,l), +(408,323,l), +(681,323,l), +(662,342,l), +(662,301,ls), +(662,135,o), +(552,28,o), +(400,28,cs), +(225,28,o), +(117,163,o), +(117,364,cs), +(117,565,o), +(226,700,o), +(408,700,cs), +(532,700,o), +(618,642,o), +(648,539,c), +(689,539,l), +(656,665,o), +(556,736,o), +(408,736,cs), +(207,736,o), +(76,588,o), +(76,364,cs), +(76,142,o), +(204,-8,o), +(400,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +33 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +20 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 795; +}, +{ +anchors = ( +{ +name = bottom; +pos = (399,0); +}, +{ +name = top; +pos = (402,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(588,-10,o), +(730,98,o), +(747,258,c), +(542,258,l), +(528,200,o), +(468,162,o), +(399,162,cs), +(301,162,o), +(235,220,o), +(235,365,cs), +(235,509,o), +(301,567,o), +(399,567,cs), +(472,567,o), +(526,528,o), +(542,472,c), +(747,472,l), +(730,631,o), +(593,739,o), +(399,739,cs), +(176,739,o), +(27,607,o), +(27,365,cs), +(27,122,o), +(176,-10,o), +(399,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-10,o), +(540,32,o), +(568,92,c), +(575,92,l), +(583,0,l), +(752,0,l), +(752,408,l), +(391,408,l), +(391,264,l), +(576,264,l), +(540,297,l), +(540,279,ls), +(540,205,o), +(481,156,o), +(395,156,cs), +(301,156,o), +(238,221,o), +(238,358,cs), +(238,483,o), +(289,567,o), +(401,567,cs), +(470,567,o), +(525,531,o), +(541,478,c), +(744,478,l), +(727,638,o), +(593,739,o), +(402,739,cs), +(180,739,o), +(32,600,o), +(32,352,cs), +(32,126,o), +(162,-10,o), +(358,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +}; +width = 799; +}, +{ +anchors = ( +{ +name = bottom; +pos = (156,0); +}, +{ +name = top; +pos = (298,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,-9,o), +(269,32,o), +(305,128,c), +(309,128,l), +(283,0,l), +(309,0,l), +(386,374,l), +(215,374,l), +(209,344,l), +(357,344,l), +(350,353,l), +(337,291,ls), +(301,118,o), +(242,20,o), +(162,20,cs), +(47,20,o), +(64,193,o), +(101,374,cs), +(148,602,o), +(208,708,o), +(294,708,cs), +(394,708,o), +(401,619,o), +(387,495,c), +(417,495,l), +(438,640,o), +(416,738,o), +(298,738,cs), +(201,738,o), +(127,652,o), +(69,373,cs), +(29,184,o), +(11,-9,o), +(156,-9,cs) +); +} +); +width = 416; +}, +{ +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (325,729); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (325,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-7,o), +(274,17,o), +(313,88,c), +(318,87,l), +(305,0,l), +(422,0,l), +(504,405,l), +(280,405,l), +(254,270,l), +(326,270,l), +(314,289,l), +(309,268,ls), +(286,172,o), +(263,143,o), +(227,146,cs), +(179,150,o), +(183,216,o), +(216,375,cs), +(249,535,o), +(276,583,o), +(316,581,cs), +(348,579,o), +(356,543,o), +(344,464,c), +(512,464,l), +(540,635,o), +(491,738,o), +(327,738,cs), +(161,738,o), +(84,596,o), +(39,382,cs), +(-4,179,o), +(-4,-7,o), +(166,-7,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,-7,o), +(274,17,o), +(313,88,c), +(318,87,l), +(305,0,l), +(422,0,l), +(504,405,l), +(280,405,l), +(254,270,l), +(326,270,l), +(314,289,l), +(309,268,ls), +(287,176,o), +(265,146,o), +(232,146,cs), +(170,146,o), +(188,245,o), +(216,375,cs), +(248,532,o), +(275,581,o), +(314,581,cs), +(352,581,o), +(353,534,o), +(344,464,c), +(512,464,l), +(540,635,o), +(491,738,o), +(327,738,cs), +(161,738,o), +(84,596,o), +(39,382,cs), +(-4,179,o), +(-4,-7,o), +(166,-7,cs) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = bottom; +pos = (359,0); +}, +{ +name = top; +pos = (464,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,-10,o), +(573,41,o), +(627,155,c), +(633,155,l), +(608,0,l), +(640,0,l), +(718,376,l), +(374,376,l), +(367,340,l), +(680,340,l), +(672,349,l), +(656,275,ls), +(624,127,o), +(515,27,o), +(359,27,cs), +(208,27,o), +(110,127,o), +(116,309,cs), +(124,547,o), +(259,703,o), +(459,703,cs), +(595,703,o), +(683,627,o), +(694,515,c), +(735,515,l), +(729,658,o), +(613,739,o), +(466,739,cs), +(242,739,o), +(85,567,o), +(76,309,cs), +(70,118,o), +(180,-10,o), +(357,-10,cs) +); +} +); +width = 764; +}, +{ +anchors = ( +{ +name = bottom; +pos = (343,0); +}, +{ +name = top; +pos = (477,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-9,o), +(517,24,o), +(556,79,c), +(563,79,l), +(558,0,l), +(704,0,l), +(789,408,l), +(426,408,l), +(395,264,l), +(571,264,l), +(555,281,l), +(552,269,ls), +(534,199,o), +(480,158,o), +(396,158,cs), +(306,158,o), +(251,213,o), +(251,314,cs), +(251,468,o), +(327,566,o), +(443,566,cs), +(525,566,o), +(581,529,o), +(587,474,c), +(791,474,l), +(787,633,o), +(643,737,o), +(460,737,cs), +(206,737,o), +(44,559,o), +(44,299,cs), +(44,108,o), +(165,-9,o), +(341,-9,cs) +); +} +); +width = 802; +}, +{ +anchors = ( +{ +name = bottom; +pos = (392,0); +}, +{ +name = top; +pos = (478,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(524,-9,o), +(646,44,o), +(703,145,c), +(710,145,l), +(684,0,l), +(717,0,l), +(793,376,l), +(400,376,l), +(393,340,l), +(757,340,l), +(749,349,l), +(733,277,ls), +(700,127,o), +(589,25,o), +(397,25,cs), +(215,25,o), +(99,129,o), +(99,314,cs), +(99,552,o), +(246,703,o), +(473,703,cs), +(629,703,o), +(744,627,o), +(761,514,c), +(801,514,l), +(785,650,o), +(653,739,o), +(475,739,cs), +(230,739,o), +(59,568,o), +(59,317,cs), +(59,115,o), +(190,-9,o), +(392,-9,cs) +); +} +); +width = 819; +}, +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = top; +pos = (503,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(434,261,l), +(608,261,l), +(607,253,ls), +(595,195,o), +(522,166,o), +(448,166,cs), +(329,166,o), +(258,234,o), +(262,347,cs), +(266,475,o), +(344,560,o), +(476,560,cs), +(556,560,o), +(620,526,o), +(639,475,c), +(871,475,l), +(864,630,o), +(698,738,o), +(479,738,cs), +(204,738,o), +(39,562,o), +(31,335,cs), +(24,128,o), +(165,-10,o), +(383,-10,cs), +(484,-10,o), +(571,22,o), +(611,76,c), +(617,76,l), +(616,0,l), +(790,0,l), +(876,410,l), +(464,410,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,-10,o), +(571,22,o), +(611,76,c), +(617,76,l), +(616,0,l), +(790,0,l), +(876,410,l), +(464,410,l), +(434,261,l), +(626,261,l), +(611,278,l), +(607,253,ls), +(597,192,o), +(522,166,o), +(448,166,cs), +(332,166,o), +(262,230,o), +(262,338,cs), +(262,471,o), +(341,560,o), +(476,560,cs), +(556,560,o), +(620,526,o), +(639,475,c), +(871,475,l), +(864,630,o), +(698,738,o), +(479,738,cs), +(198,738,o), +(31,554,o), +(31,320,cs), +(31,122,o), +(170,-10,o), +(383,-10,cs) +); +} +); +width = 874; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_breve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_breve.glyph new file mode 100644 index 00000000..c2a1ab90 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_breve.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Gbreve; +kernLeft = KO_O; +kernRight = KO_G; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G; +}, +{ +pos = (86,57); +ref = brevecomb; +} +); +width = 417; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G; +}, +{ +pos = (57,51); +ref = brevecomb; +} +); +width = 485; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G; +}, +{ +pos = (243,57); +ref = brevecomb; +} +); +width = 820; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G; +}, +{ +pos = (198,56); +ref = brevecomb; +} +); +width = 853; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (86,57); +ref = brevecomb; +} +); +width = 377; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G; +}, +{ +pos = (58,51); +ref = brevecomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G; +}, +{ +pos = (238,51); +ref = brevecomb; +} +); +width = 758; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G; +}, +{ +pos = (177,51); +ref = brevecomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (243,57); +ref = brevecomb; +} +); +width = 800; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (198,56); +ref = brevecomb; +} +); +width = 833; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (240,51); +ref = brevecomb; +} +); +width = 789; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (190,51); +ref = brevecomb; +} +); +width = 778; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G; +}, +{ +pos = (84,57); +ref = brevecomb; +} +); +width = 415; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (39,51); +ref = brevecomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G; +}, +{ +pos = (208,57); +ref = brevecomb; +} +); +width = 765; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G; +}, +{ +pos = (146,51); +ref = brevecomb; +} +); +width = 776; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G; +}, +{ +pos = (209,57); +ref = brevecomb; +} +); +width = 814; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G; +}, +{ +pos = (167,51); +ref = brevecomb; +} +); +width = 852; +} +); +unicode = 286; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_breve.ss07.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_breve.ss07.glyph new file mode 100644 index 00000000..42e67051 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_breve.ss07.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Gbreve.ss07; +kernLeft = KO_O; +kernRight = KO_G.ss07; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (86,57); +ref = brevecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (57,51); +ref = brevecomb; +} +); +width = 503; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (248,57); +ref = brevecomb; +} +); +width = 828; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (206,56); +ref = brevecomb; +} +); +width = 877; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (72,57); +ref = brevecomb; +} +); +width = 361; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (58,51); +ref = brevecomb; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (237,51); +ref = brevecomb; +} +); +width = 766; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (180,51); +ref = brevecomb; +} +); +width = 760; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (260,57); +ref = brevecomb; +} +); +width = 820; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (218,56); +ref = brevecomb; +} +); +width = 866; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (233,51); +ref = brevecomb; +} +); +width = 795; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (191,51); +ref = brevecomb; +} +); +width = 799; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (84,57); +ref = brevecomb; +} +); +width = 416; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (45,51); +ref = brevecomb; +} +); +width = 499; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (208,57); +ref = brevecomb; +} +); +width = 764; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (165,51); +ref = brevecomb; +} +); +width = 802; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (213,57); +ref = brevecomb; +} +); +width = 819; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (181,51); +ref = brevecomb; +} +); +width = 874; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_caron.glyph new file mode 100644 index 00000000..9dff5803 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_caron.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Gcaron; +kernLeft = KO_O; +kernRight = KO_G; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G; +}, +{ +pos = (81,57); +ref = caroncomb; +} +); +width = 417; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G; +}, +{ +pos = (35,51); +ref = caroncomb; +} +); +width = 485; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G; +}, +{ +pos = (238,57); +ref = caroncomb; +} +); +width = 820; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G; +}, +{ +pos = (146,56); +ref = caroncomb; +} +); +width = 853; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (81,57); +ref = caroncomb; +} +); +width = 377; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G; +}, +{ +pos = (36,51); +ref = caroncomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G; +}, +{ +pos = (242,57); +ref = caroncomb; +} +); +width = 758; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G; +}, +{ +pos = (149,51); +ref = caroncomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (238,57); +ref = caroncomb; +} +); +width = 800; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (146,56); +ref = caroncomb; +} +); +width = 833; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (244,57); +ref = caroncomb; +} +); +width = 789; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (162,51); +ref = caroncomb; +} +); +width = 778; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G; +}, +{ +pos = (84,57); +ref = caroncomb; +} +); +width = 415; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (23,51); +ref = caroncomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G; +}, +{ +pos = (213,57); +ref = caroncomb; +} +); +width = 765; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G; +}, +{ +pos = (124,51); +ref = caroncomb; +} +); +width = 776; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G; +}, +{ +pos = (208,57); +ref = caroncomb; +} +); +width = 814; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,56); +ref = caroncomb; +} +); +width = 852; +} +); +unicode = 486; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_caron.ss07.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_caron.ss07.glyph new file mode 100644 index 00000000..bce8fc4b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_caron.ss07.glyph @@ -0,0 +1,241 @@ +{ +color = 6; +glyphname = Gcaron.ss07; +kernRight = KO_G.ss07; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (81,57); +ref = caroncomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (35,51); +ref = caroncomb; +} +); +width = 503; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (243,57); +ref = caroncomb; +} +); +width = 828; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (154,56); +ref = caroncomb; +} +); +width = 877; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (67,57); +ref = caroncomb; +} +); +width = 361; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (36,51); +ref = caroncomb; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (241,57); +ref = caroncomb; +} +); +width = 766; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (152,51); +ref = caroncomb; +} +); +width = 760; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (255,57); +ref = caroncomb; +} +); +width = 820; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (166,56); +ref = caroncomb; +} +); +width = 866; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (237,57); +ref = caroncomb; +} +); +width = 795; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (163,51); +ref = caroncomb; +} +); +width = 799; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (84,57); +ref = caroncomb; +} +); +width = 416; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (29,51); +ref = caroncomb; +} +); +width = 499; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (213,57); +ref = caroncomb; +} +); +width = 764; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (143,51); +ref = caroncomb; +} +); +width = 802; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (212,57); +ref = caroncomb; +} +); +width = 819; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (129,56); +ref = caroncomb; +} +); +width = 874; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_circumflex.glyph new file mode 100644 index 00000000..f444cfbc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_circumflex.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Gcircumflex; +kernLeft = KO_O; +kernRight = KO_G; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G; +}, +{ +pos = (81,57); +ref = circumflexcomb; +} +); +width = 417; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G; +}, +{ +pos = (35,51); +ref = circumflexcomb; +} +); +width = 485; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G; +}, +{ +pos = (238,57); +ref = circumflexcomb; +} +); +width = 820; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G; +}, +{ +pos = (146,56); +ref = circumflexcomb; +} +); +width = 853; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (81,57); +ref = circumflexcomb; +} +); +width = 377; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G; +}, +{ +pos = (36,51); +ref = circumflexcomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G; +}, +{ +pos = (242,57); +ref = circumflexcomb; +} +); +width = 758; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G; +}, +{ +pos = (149,51); +ref = circumflexcomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (238,57); +ref = circumflexcomb; +} +); +width = 800; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (146,56); +ref = circumflexcomb; +} +); +width = 833; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (244,57); +ref = circumflexcomb; +} +); +width = 789; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (162,51); +ref = circumflexcomb; +} +); +width = 778; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G; +}, +{ +pos = (83,57); +ref = circumflexcomb; +} +); +width = 415; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (17,51); +ref = circumflexcomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G; +}, +{ +pos = (212,57); +ref = circumflexcomb; +} +); +width = 765; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G; +}, +{ +pos = (129,51); +ref = circumflexcomb; +} +); +width = 776; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G; +}, +{ +pos = (208,57); +ref = circumflexcomb; +} +); +width = 814; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G; +}, +{ +pos = (113,56); +ref = circumflexcomb; +} +); +width = 852; +} +); +unicode = 284; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_circumflex.ss07.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_circumflex.ss07.glyph new file mode 100644 index 00000000..75215ade --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_circumflex.ss07.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Gcircumflex.ss07; +kernLeft = KO_O; +kernRight = KO_G.ss07; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (81,57); +ref = circumflexcomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (35,51); +ref = circumflexcomb; +} +); +width = 503; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (243,57); +ref = circumflexcomb; +} +); +width = 828; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (154,56); +ref = circumflexcomb; +} +); +width = 877; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (67,57); +ref = circumflexcomb; +} +); +width = 361; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (36,51); +ref = circumflexcomb; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (241,57); +ref = circumflexcomb; +} +); +width = 766; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (152,51); +ref = circumflexcomb; +} +); +width = 760; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (255,57); +ref = circumflexcomb; +} +); +width = 820; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (166,56); +ref = circumflexcomb; +} +); +width = 866; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (237,57); +ref = circumflexcomb; +} +); +width = 795; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (163,51); +ref = circumflexcomb; +} +); +width = 799; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (83,57); +ref = circumflexcomb; +} +); +width = 416; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (23,51); +ref = circumflexcomb; +} +); +width = 499; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (212,57); +ref = circumflexcomb; +} +); +width = 764; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (148,51); +ref = circumflexcomb; +} +); +width = 802; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (212,57); +ref = circumflexcomb; +} +); +width = 819; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (127,56); +ref = circumflexcomb; +} +); +width = 874; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_commaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_commaaccent.glyph new file mode 100644 index 00000000..41339861 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_commaaccent.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Gcommaaccent; +kernLeft = KO_O; +kernRight = KO_G; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G; +}, +{ +pos = (111,0); +ref = commaaccentcomb; +} +); +width = 417; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G; +}, +{ +pos = (63,0); +ref = commaaccentcomb; +} +); +width = 485; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G; +}, +{ +pos = (312,0); +ref = commaaccentcomb; +} +); +width = 820; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G; +}, +{ +pos = (242,0); +ref = commaaccentcomb; +} +); +width = 853; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (111,0); +ref = commaaccentcomb; +} +); +width = 377; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G; +}, +{ +pos = (64,0); +ref = commaaccentcomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G; +}, +{ +pos = (296,0); +ref = commaaccentcomb; +} +); +width = 758; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G; +}, +{ +pos = (217,0); +ref = commaaccentcomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (312,0); +ref = commaaccentcomb; +} +); +width = 800; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (242,0); +ref = commaaccentcomb; +} +); +width = 833; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (296,0); +ref = commaaccentcomb; +} +); +width = 789; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (229,0); +ref = commaaccentcomb; +} +); +width = 778; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G; +}, +{ +pos = (123,0); +ref = commaaccentcomb; +} +); +width = 415; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (83,0); +ref = commaaccentcomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G; +}, +{ +pos = (304,0); +ref = commaaccentcomb; +} +); +width = 765; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G; +}, +{ +pos = (264,0); +ref = commaaccentcomb; +} +); +width = 776; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G; +}, +{ +pos = (349,0); +ref = commaaccentcomb; +} +); +width = 814; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G; +}, +{ +pos = (298,0); +ref = commaaccentcomb; +} +); +width = 852; +} +); +unicode = 290; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_commaaccent.ss07.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_commaaccent.ss07.glyph new file mode 100644 index 00000000..56c8af1b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_commaaccent.ss07.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Gcommaaccent.ss07; +kernLeft = KO_O; +kernRight = KO_G.ss07; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (120,0); +ref = commaaccentcomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (66,0); +ref = commaaccentcomb; +} +); +width = 503; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (334,0); +ref = commaaccentcomb; +} +); +width = 828; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (251,0); +ref = commaaccentcomb; +} +); +width = 877; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (106,0); +ref = commaaccentcomb; +} +); +width = 361; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (67,0); +ref = commaaccentcomb; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (297,0); +ref = commaaccentcomb; +} +); +width = 766; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (226,0); +ref = commaaccentcomb; +} +); +width = 760; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (346,0); +ref = commaaccentcomb; +} +); +width = 820; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (263,0); +ref = commaaccentcomb; +} +); +width = 866; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (291,0); +ref = commaaccentcomb; +} +); +width = 795; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (236,0); +ref = commaaccentcomb; +} +); +width = 799; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (113,0); +ref = commaaccentcomb; +} +); +width = 416; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (63,0); +ref = commaaccentcomb; +} +); +width = 499; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (307,0); +ref = commaaccentcomb; +} +); +width = 764; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (228,0); +ref = commaaccentcomb; +} +); +width = 802; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (344,0); +ref = commaaccentcomb; +} +); +width = 819; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (262,0); +ref = commaaccentcomb; +} +); +width = 874; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.glyph new file mode 100644 index 00000000..61e377a4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Gdotaccent; +kernLeft = KO_O; +kernRight = KO_G; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G; +}, +{ +pos = (147,57); +ref = dotaccentcomb; +} +); +width = 417; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G; +}, +{ +pos = (118,51); +ref = dotaccentcomb; +} +); +width = 485; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G; +}, +{ +pos = (345,57); +ref = dotaccentcomb; +} +); +width = 820; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G; +}, +{ +pos = (279,56); +ref = dotaccentcomb; +} +); +width = 853; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (147,62); +ref = dotaccentcomb; +} +); +width = 377; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G; +}, +{ +pos = (119,51); +ref = dotaccentcomb; +} +); +width = 466; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G; +}, +{ +pos = (334,62); +ref = dotaccentcomb; +} +); +width = 758; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G; +}, +{ +pos = (259,51); +ref = dotaccentcomb; +} +); +width = 734; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (345,57); +ref = dotaccentcomb; +} +); +width = 800; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G; +}, +{ +pos = (279,56); +ref = dotaccentcomb; +} +); +width = 833; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (334,79); +ref = dotaccentcomb; +} +); +width = 789; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (268,65); +ref = dotaccentcomb; +} +); +width = 778; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G; +}, +{ +pos = (144,57); +ref = dotaccentcomb; +} +); +width = 415; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G; +}, +{ +pos = (101,51); +ref = dotaccentcomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G; +}, +{ +pos = (307,57); +ref = dotaccentcomb; +} +); +width = 765; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G; +}, +{ +pos = (233,51); +ref = dotaccentcomb; +} +); +width = 776; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G; +}, +{ +pos = (317,57); +ref = dotaccentcomb; +} +); +width = 814; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G; +}, +{ +pos = (245,56); +ref = dotaccentcomb; +} +); +width = 852; +} +); +unicode = 288; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.ss01.glyph new file mode 100644 index 00000000..290c0ddd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Gdotaccent.ss01; +kernLeft = KO_O; +kernRight = KO_G.ss07; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (155,57); +ref = dotaccentcomb.ss01; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (123,51); +ref = dotaccentcomb.ss01; +} +); +width = 503; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (363,57); +ref = dotaccentcomb.ss01; +} +); +width = 828; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (294,56); +ref = dotaccentcomb.ss01; +} +); +width = 877; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = G.ss07; +}, +{ +alignment = -1; +pos = (155,57); +ref = dotaccentcomb.ss01; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (124,51); +ref = dotaccentcomb.ss01; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = G.ss07; +}, +{ +alignment = -1; +pos = (346,57); +ref = dotaccentcomb.ss01; +} +); +width = 806; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (263,51); +ref = dotaccentcomb.ss01; +} +); +width = 760; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (375,57); +ref = dotaccentcomb.ss01; +} +); +width = 820; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (306,56); +ref = dotaccentcomb.ss01; +} +); +width = 866; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (340,57); +ref = dotaccentcomb.ss01; +} +); +width = 795; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (268,51); +ref = dotaccentcomb.ss01; +} +); +width = 799; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (158,57); +ref = dotaccentcomb.ss01; +} +); +width = 416; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (113,51); +ref = dotaccentcomb.ss01; +} +); +width = 499; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (320,57); +ref = dotaccentcomb.ss01; +} +); +width = 764; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (257,51); +ref = dotaccentcomb.ss01; +} +); +width = 802; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (334,57); +ref = dotaccentcomb.ss01; +} +); +width = 819; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (268,51); +ref = dotaccentcomb.ss01; +} +); +width = 874; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.ss01.ss07.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.ss01.ss07.glyph new file mode 100644 index 00000000..6bb4212f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.ss01.ss07.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Gdotaccent.ss01.ss07; +kernLeft = KO_O; +kernRight = KO_G.ss07; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (155,57); +ref = dotaccentcomb.ss01; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (123,51); +ref = dotaccentcomb.ss01; +} +); +width = 503; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (363,57); +ref = dotaccentcomb.ss01; +} +); +width = 828; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (294,56); +ref = dotaccentcomb.ss01; +} +); +width = 877; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (141,57); +ref = dotaccentcomb.ss01; +} +); +width = 361; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (124,51); +ref = dotaccentcomb.ss01; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (346,57); +ref = dotaccentcomb.ss01; +} +); +width = 766; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (263,51); +ref = dotaccentcomb.ss01; +} +); +width = 760; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (375,57); +ref = dotaccentcomb.ss01; +} +); +width = 820; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (306,56); +ref = dotaccentcomb.ss01; +} +); +width = 866; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (340,57); +ref = dotaccentcomb.ss01; +} +); +width = 795; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (268,51); +ref = dotaccentcomb.ss01; +} +); +width = 799; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (158,57); +ref = dotaccentcomb.ss01; +} +); +width = 416; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (113,51); +ref = dotaccentcomb.ss01; +} +); +width = 499; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (320,57); +ref = dotaccentcomb.ss01; +} +); +width = 764; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (257,51); +ref = dotaccentcomb.ss01; +} +); +width = 802; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (334,57); +ref = dotaccentcomb.ss01; +} +); +width = 819; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (268,51); +ref = dotaccentcomb.ss01; +} +); +width = 874; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.ss07.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.ss07.glyph new file mode 100644 index 00000000..5d14050d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_dotaccent.ss07.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Gdotaccent.ss07; +kernLeft = KO_O; +kernRight = KO_G.ss07; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (147,57); +ref = dotaccentcomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (118,51); +ref = dotaccentcomb; +} +); +width = 503; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (350,57); +ref = dotaccentcomb; +} +); +width = 828; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (287,56); +ref = dotaccentcomb; +} +); +width = 877; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (133,62); +ref = dotaccentcomb; +} +); +width = 361; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (119,51); +ref = dotaccentcomb; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (333,62); +ref = dotaccentcomb; +} +); +width = 766; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (262,51); +ref = dotaccentcomb; +} +); +width = 760; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (362,57); +ref = dotaccentcomb; +} +); +width = 820; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (299,56); +ref = dotaccentcomb; +} +); +width = 866; +}, +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (327,79); +ref = dotaccentcomb; +} +); +width = 795; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (269,65); +ref = dotaccentcomb; +} +); +width = 799; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (144,57); +ref = dotaccentcomb; +} +); +width = 416; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (107,51); +ref = dotaccentcomb; +} +); +width = 499; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (307,57); +ref = dotaccentcomb; +} +); +width = 764; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (252,51); +ref = dotaccentcomb; +} +); +width = 802; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (321,57); +ref = dotaccentcomb; +} +); +width = 819; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (259,56); +ref = dotaccentcomb; +} +); +width = 874; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/G_ermandbls.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/G_ermandbls.glyph new file mode 100644 index 00000000..33ff5eda --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/G_ermandbls.glyph @@ -0,0 +1,781 @@ +{ +glyphname = Germandbls; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,701,l), +(327,701,l), +(191,426,l), +(191,400,l), +(209,400,ls), +(297,400,o), +(356,351,o), +(356,213,cs), +(356,101,o), +(310,26,o), +(199,26,cs), +(165,26,l), +(165,0,l), +(201,0,ls), +(313,0,o), +(388,60,o), +(388,213,cs), +(388,357,o), +(324,425,o), +(211,425,cs), +(203,425,l), +(225,411,l), +(225,429,l), +(358,697,l), +(358,729,l), +(66,729,l), +(66,0,l) +); +} +); +width = 413; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,0,l), +(207,581,l), +(342,581,l), +(263,436,l), +(263,331,l), +(283,331,ls), +(333,331,o), +(367,306,o), +(367,241,cs), +(367,179,o), +(343,144,o), +(283,144,cs), +(257,144,l), +(257,0,l), +(318,0,ls), +(452,0,o), +(542,86,o), +(542,214,cs), +(542,332,o), +(484,411,o), +(380,411,cs), +(362,411,l), +(417,376,l), +(417,417,l), +(509,582,l), +(509,729,l), +(29,729,l), +(29,0,l) +); +} +); +width = 554; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(111,692,l), +(588,692,l), +(339,415,l), +(339,382,l), +(442,382,ls), +(562,382,o), +(642,334,o), +(642,211,cs), +(642,106,o), +(586,36,o), +(442,36,cs), +(198,36,l), +(198,0,l), +(448,0,ls), +(598,0,o), +(682,84,o), +(682,210,cs), +(682,342,o), +(598,417,o), +(448,417,cs), +(376,417,l), +(394,387,l), +(394,424,l), +(623,678,l), +(623,729,l), +(72,729,l), +(72,0,l) +); +} +); +width = 711; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,0,l), +(292,554,l), +(526,554,l), +(410,401,l), +(410,297,l), +(483,297,ls), +(535,297,o), +(565,277,o), +(565,233,cs), +(565,191,o), +(539,168,o), +(485,168,cs), +(368,168,l), +(368,0,l), +(544,0,ls), +(711,0,o), +(823,67,o), +(823,209,cs), +(823,331,o), +(745,399,o), +(628,399,cs), +(604,399,l), +(658,360,l), +(658,406,l), +(765,539,l), +(765,729,l), +(47,729,l), +(47,0,l) +); +} +); +width = 828; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(73,701,l), +(303,701,l), +(167,426,l), +(167,400,l), +(185,400,ls), +(273,400,o), +(332,351,o), +(332,213,cs), +(332,101,o), +(286,26,o), +(175,26,cs), +(141,26,l), +(141,0,l), +(177,0,ls), +(289,0,o), +(364,60,o), +(364,213,cs), +(364,357,o), +(300,425,o), +(187,425,cs), +(179,425,l), +(201,411,l), +(201,429,l), +(334,697,l), +(334,729,l), +(42,729,l), +(42,0,l) +); +} +); +width = 367; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,l), +(196,581,l), +(331,581,l), +(252,436,l), +(252,331,l), +(272,331,ls), +(322,331,o), +(356,306,o), +(356,241,cs), +(356,179,o), +(332,144,o), +(272,144,cs), +(246,144,l), +(246,0,l), +(307,0,ls), +(441,0,o), +(531,86,o), +(531,214,cs), +(531,332,o), +(473,411,o), +(369,411,cs), +(351,411,l), +(406,376,l), +(406,417,l), +(498,582,l), +(498,729,l), +(18,729,l), +(18,0,l) +); +} +); +width = 534; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(109,0,l), +(109,693,l), +(473,693,l), +(254,417,l), +(254,387,l), +(313,387,ls), +(457,387,o), +(514,319,o), +(514,211,cs), +(514,110,o), +(455,34,o), +(321,34,cs), +(179,34,l), +(179,0,l), +(321,0,ls), +(470,0,o), +(555,81,o), +(555,211,cs), +(555,339,o), +(479,420,o), +(317,420,cs), +(292,420,l), +(307,403,l), +(307,427,l), +(506,678,l), +(506,729,l), +(70,729,l), +(70,0,l) +); +} +); +width = 582; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(233,561,l), +(455,561,l), +(349,411,l), +(349,321,l), +(379,321,ls), +(435,321,o), +(473,299,o), +(473,242,cs), +(473,195,o), +(447,163,o), +(379,163,cs), +(292,163,l), +(292,0,l), +(417,0,ls), +(577,0,o), +(683,78,o), +(683,217,cs), +(683,325,o), +(611,404,o), +(509,404,cs), +(492,404,l), +(541,353,l), +(541,410,l), +(644,546,l), +(644,729,l), +(30,729,l), +(30,0,l) +); +} +); +width = 685; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,0,l), +(101,692,l), +(578,692,l), +(329,415,l), +(329,382,l), +(432,382,ls), +(552,382,o), +(632,334,o), +(632,211,cs), +(632,106,o), +(576,36,o), +(432,36,cs), +(188,36,l), +(188,0,l), +(438,0,ls), +(588,0,o), +(672,84,o), +(672,210,cs), +(672,342,o), +(588,417,o), +(438,417,cs), +(366,417,l), +(384,387,l), +(384,424,l), +(613,678,l), +(613,729,l), +(62,729,l), +(62,0,l) +); +} +); +width = 691; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(277,0,l), +(277,554,l), +(511,554,l), +(395,401,l), +(395,297,l), +(468,297,ls), +(520,297,o), +(550,277,o), +(550,233,cs), +(550,191,o), +(524,168,o), +(470,168,cs), +(353,168,l), +(353,0,l), +(529,0,ls), +(696,0,o), +(808,67,o), +(808,209,cs), +(808,331,o), +(730,399,o), +(613,399,cs), +(589,399,l), +(643,360,l), +(643,406,l), +(750,539,l), +(750,729,l), +(32,729,l), +(32,0,l) +); +} +); +width = 803; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,l), +(134,693,l), +(490,693,l), +(275,417,l), +(275,387,l), +(334,387,ls), +(474,387,o), +(531,319,o), +(531,211,cs), +(531,110,o), +(472,34,o), +(342,34,cs), +(202,34,l), +(202,0,l), +(342,0,ls), +(487,0,o), +(570,81,o), +(570,211,cs), +(570,339,o), +(496,420,o), +(338,420,cs), +(313,420,l), +(328,403,l), +(328,427,l), +(523,678,l), +(523,729,l), +(95,729,l), +(95,0,l) +); +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(258,0,l), +(258,561,l), +(469,561,l), +(370,411,l), +(370,321,l), +(398,321,ls), +(449,321,o), +(486,299,o), +(486,242,cs), +(486,195,o), +(461,163,o), +(398,163,cs), +(316,163,l), +(316,0,l), +(436,0,ls), +(591,0,o), +(694,78,o), +(694,217,cs), +(694,325,o), +(625,404,o), +(528,404,cs), +(511,404,l), +(559,353,l), +(559,410,l), +(656,546,l), +(656,729,l), +(57,729,l), +(57,0,l) +); +} +); +width = 716; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(190,701,l), +(418,701,l), +(225,426,l), +(220,400,l), +(244,400,ls), +(328,400,o), +(371,339,o), +(346,210,cs), +(322,94,o), +(270,29,o), +(150,29,cs), +(116,29,l), +(110,0,l), +(146,0,ls), +(263,0,o), +(351,59,o), +(378,209,cs), +(401,346,o), +(354,426,o), +(248,426,cs), +(241,426,l), +(256,413,l), +(260,429,l), +(447,697,l), +(454,729,l), +(165,729,l), +(12,0,l) +); +} +); +width = 412; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(601,729,l), +(126,729,l), +(-28,0,l), +(149,0,l), +(270,581,l), +(391,581,l), +(295,436,l), +(273,331,l), +(305,331,ls), +(349,331,o), +(371,299,o), +(356,232,cs), +(344,179,o), +(316,144,o), +(263,144,cs), +(228,144,l), +(198,0,l), +(272,0,ls), +(423,0,o), +(526,90,o), +(532,250,cs), +(534,346,o), +(489,403,o), +(413,411,c), +(435,361,l), +(444,417,l), +(575,605,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(270,581,l), +(391,581,l), +(295,436,l), +(273,331,l), +(305,331,ls), +(349,331,o), +(371,299,o), +(356,232,cs), +(344,179,o), +(316,144,o), +(263,144,cs), +(228,144,l), +(198,0,l), +(272,0,ls), +(423,0,o), +(526,90,o), +(532,250,cs), +(534,346,o), +(486,411,o), +(403,411,cs), +(397,411,l), +(437,375,l), +(444,417,l), +(575,605,l), +(601,729,l), +(126,729,l), +(-28,0,l) +); +} +); +width = 553; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(222,693,l), +(581,693,l), +(309,417,l), +(302,387,l), +(380,387,ls), +(474,387,o), +(530,337,o), +(530,246,cs), +(530,116,o), +(451,34,o), +(316,34,cs), +(154,34,l), +(147,0,l), +(311,0,ls), +(462,0,o), +(569,92,o), +(569,244,cs), +(569,352,o), +(499,420,o), +(374,420,cs), +(353,420,l), +(362,410,l), +(364,427,l), +(613,678,l), +(623,729,l), +(192,729,l), +(39,0,l) +); +} +); +width = 624; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(753,729,l), +(155,729,l), +(2,0,l), +(203,0,l), +(321,561,l), +(521,561,l), +(394,411,l), +(375,321,l), +(412,321,ls), +(462,321,o), +(487,296,o), +(485,254,cs), +(483,198,o), +(448,163,o), +(377,163,cs), +(306,163,l), +(271,0,l), +(407,0,ls), +(588,0,o), +(693,93,o), +(698,232,cs), +(701,328,o), +(648,397,o), +(561,404,c), +(540,404,l), +(583,355,l), +(593,410,l), +(715,546,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,0,l), +(321,561,l), +(521,561,l), +(394,411,l), +(375,321,l), +(412,321,ls), +(462,321,o), +(487,296,o), +(485,254,cs), +(483,198,o), +(448,163,o), +(377,163,cs), +(306,163,l), +(271,0,l), +(407,0,ls), +(588,0,o), +(693,93,o), +(698,232,cs), +(701,328,o), +(644,404,o), +(551,404,cs), +(540,404,l), +(583,355,l), +(593,410,l), +(715,546,l), +(753,729,l), +(155,729,l), +(2,0,l) +); +} +); +width = 730; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(201,692,l), +(669,692,l), +(368,415,l), +(361,382,l), +(476,382,ls), +(569,382,o), +(631,340,o), +(631,241,cs), +(631,119,o), +(547,37,o), +(399,37,cs), +(150,37,l), +(142,0,l), +(397,0,ls), +(571,0,o), +(670,99,o), +(670,239,cs), +(670,349,o), +(602,417,o), +(476,417,cs), +(419,417,l), +(427,408,l), +(429,424,l), +(705,678,l), +(716,729,l), +(170,729,l), +(17,0,l) +); +} +); +width = 709; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(335,567,l), +(591,567,l), +(423,401,l), +(402,303,l), +(478,303,ls), +(521,303,o), +(551,285,o), +(549,238,cs), +(547,186,o), +(511,156,o), +(450,156,cs), +(325,156,l), +(292,0,l), +(491,0,ls), +(666,0,o), +(783,83,o), +(788,221,cs), +(791,328,o), +(725,398,o), +(622,398,cs), +(603,398,l), +(648,353,l), +(658,406,l), +(792,529,l), +(834,729,l), +(143,729,l), +(-10,0,l) +); +} +); +width = 805; +} +); +unicode = 7838; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/H_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/H_.glyph new file mode 100644 index 00000000..0d453896 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/H_.glyph @@ -0,0 +1,1082 @@ +{ +glyphname = H; +kernLeft = KO_H; +kernRight = KO_H; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (248,0); +}, +{ +name = center; +pos = (247,591); +}, +{ +name = top; +pos = (248,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(213,0,l), +(213,729,l), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,0,l), +(466,729,l), +(280,729,l), +(280,0,l) +); +}, +{ +closed = 1; +nodes = ( +(311,291,l), +(311,447,l), +(182,447,l), +(182,291,l) +); +} +); +width = 495; +}, +{ +anchors = ( +{ +name = bottom; +pos = (213,0); +}, +{ +name = center; +pos = (213,592); +}, +{ +name = top; +pos = (213,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,729,l), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(360,0,l), +(360,729,l), +(329,729,l), +(329,0,l) +); +}, +{ +closed = 1; +nodes = ( +(348,365,l), +(348,395,l), +(80,395,l), +(80,365,l) +); +} +); +width = 426; +}, +{ +anchors = ( +{ +name = bottom; +pos = (406,0); +}, +{ +name = center; +pos = (406,592); +}, +{ +name = top; +pos = (406,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,729,l), +(72,729,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(739,0,l), +(739,729,l), +(701,729,l), +(701,0,l) +); +}, +{ +closed = 1; +nodes = ( +(715,362,l), +(715,398,l), +(96,398,l), +(96,362,l) +); +} +); +width = 811; +}, +{ +anchors = ( +{ +name = bottom; +pos = (434,0); +}, +{ +name = center; +pos = (434,591); +}, +{ +name = top; +pos = (434,729); +}, +{ +name = topleft; +pos = (13,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,729,l), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(821,0,l), +(821,729,l), +(592,729,l), +(592,0,l) +); +}, +{ +closed = 1; +nodes = ( +(623,280,l), +(623,458,l), +(245,458,l), +(245,280,l) +); +} +); +width = 868; +}, +{ +anchors = ( +{ +name = bottom; +pos = (181,0); +}, +{ +name = center; +pos = (181,592); +}, +{ +name = top; +pos = (181,729); +}, +{ +name = topleft; +pos = (-3,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(73,729,l), +(42,729,l), +(42,0,l) +); +}, +{ +closed = 1; +nodes = ( +(320,0,l), +(320,729,l), +(289,729,l), +(289,0,l) +); +}, +{ +closed = 1; +nodes = ( +(308,365,l), +(308,395,l), +(56,395,l), +(56,365,l) +); +} +); +width = 362; +}, +{ +anchors = ( +{ +name = bottom; +pos = (237,0); +}, +{ +name = center; +pos = (236,591); +}, +{ +name = top; +pos = (237,729); +}, +{ +name = topleft; +pos = (10,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,729,l), +(18,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(455,0,l), +(455,729,l), +(269,729,l), +(269,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,291,l), +(300,447,l), +(171,447,l), +(171,291,l) +); +} +); +width = 473; +}, +{ +anchors = ( +{ +name = bottom; +pos = (361,0); +}, +{ +name = center; +pos = (361,592); +}, +{ +name = top; +pos = (361,729); +}, +{ +name = topleft; +pos = (-13,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,729,l), +(70,729,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(652,0,l), +(652,729,l), +(614,729,l), +(614,0,l) +); +}, +{ +closed = 1; +nodes = ( +(634,362,l), +(634,398,l), +(88,398,l), +(88,362,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 722; +}, +{ +anchors = ( +{ +name = bottom; +pos = (372,0); +}, +{ +name = center; +pos = (372,591); +}, +{ +name = top; +pos = (372,729); +}, +{ +name = topleft; +pos = (-19,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(233,729,l), +(30,729,l), +(30,0,l) +); +}, +{ +closed = 1; +nodes = ( +(714,0,l), +(714,729,l), +(511,729,l), +(511,0,l) +); +}, +{ +closed = 1; +nodes = ( +(549,283,l), +(549,455,l), +(195,455,l), +(195,283,l) +); +} +); +width = 744; +}, +{ +anchors = ( +{ +name = bottom; +pos = (396,0); +}, +{ +name = center; +pos = (396,592); +}, +{ +name = top; +pos = (396,729); +}, +{ +name = topleft; +pos = (11,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(100,729,l), +(62,729,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(729,0,l), +(729,729,l), +(691,729,l), +(691,0,l) +); +}, +{ +closed = 1; +nodes = ( +(705,362,l), +(705,398,l), +(86,398,l), +(86,362,l) +); +} +); +width = 791; +}, +{ +anchors = ( +{ +name = bottom; +pos = (419,0); +}, +{ +name = center; +pos = (419,591); +}, +{ +name = top; +pos = (419,729); +}, +{ +name = topleft; +pos = (-2,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,729,l), +(32,729,l), +(32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(806,0,l), +(806,729,l), +(577,729,l), +(577,0,l) +); +}, +{ +closed = 1; +nodes = ( +(608,280,l), +(608,458,l), +(230,458,l), +(230,280,l) +); +} +); +width = 838; +}, +{ +anchors = ( +{ +name = bottom; +pos = (377,0); +}, +{ +name = center; +pos = (377,592); +}, +{ +name = top; +pos = (377,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,l), +(143,729,l), +(105,729,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(649,0,l), +(649,729,l), +(613,729,l), +(613,0,l) +); +}, +{ +closed = 1; +nodes = ( +(633,362,l), +(633,398,l), +(123,398,l), +(123,362,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 754; +}, +{ +anchors = ( +{ +name = bottom; +pos = (391,0); +}, +{ +name = center; +pos = (391,591); +}, +{ +name = top; +pos = (391,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,l), +(263,729,l), +(62,729,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(720,0,l), +(720,729,l), +(519,729,l), +(519,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,283,l), +(556,455,l), +(226,455,l), +(226,283,l) +); +} +); +width = 782; +}, +{ +anchors = ( +{ +name = bottom; +pos = (169,0); +}, +{ +name = center; +pos = (282,592); +}, +{ +name = top; +pos = (320,729); +}, +{ +name = topleft; +pos = (130,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(195,729,l), +(164,729,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(303,0,l), +(455,729,l), +(426,729,l), +(273,0,l) +); +}, +{ +closed = 1; +nodes = ( +(362,355,l), +(371,385,l), +(109,385,l), +(97,355,l) +); +} +); +width = 422; +}, +{ +anchors = ( +{ +name = bottom; +pos = (202,0); +}, +{ +name = center; +pos = (314,591); +}, +{ +name = top; +pos = (353,729); +}, +{ +name = topleft; +pos = (127,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,0,l), +(310,729,l), +(125,729,l), +(-27,0,l) +); +}, +{ +closed = 1; +nodes = ( +(408,0,l), +(560,729,l), +(375,729,l), +(224,0,l) +); +}, +{ +closed = 1; +nodes = ( +(346,291,l), +(379,447,l), +(190,447,l), +(157,291,l) +); +} +); +width = 494; +}, +{ +anchors = ( +{ +name = bottom; +pos = (333,0); +}, +{ +name = center; +pos = (445,592); +}, +{ +name = top; +pos = (484,729); +}, +{ +name = topleft; +pos = (118,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(228,729,l), +(191,729,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(606,0,l), +(757,729,l), +(719,729,l), +(568,0,l) +); +}, +{ +closed = 1; +nodes = ( +(662,352,l), +(666,388,l), +(139,388,l), +(126,352,l) +); +} +); +width = 754; +}, +{ +anchors = ( +{ +name = bottom; +pos = (347,0); +}, +{ +name = center; +pos = (459,591); +}, +{ +name = top; +pos = (498,729); +}, +{ +name = topleft; +pos = (115,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(355,729,l), +(154,729,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,0,l), +(821,729,l), +(620,729,l), +(469,0,l) +); +}, +{ +closed = 1; +nodes = ( +(590,283,l), +(624,455,l), +(238,455,l), +(202,283,l) +); +} +); +width = 785; +}, +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = center; +pos = (470,592); +}, +{ +name = top; +pos = (509,729); +}, +{ +name = topleft; +pos = (128,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(207,729,l), +(169,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(676,0,l), +(827,729,l), +(790,729,l), +(639,0,l) +); +}, +{ +closed = 1; +nodes = ( +(730,352,l), +(739,388,l), +(118,388,l), +(111,352,l) +); +} +); +width = 802; +}, +{ +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = center; +pos = (496,591); +}, +{ +name = top; +pos = (535,729); +}, +{ +name = topleft; +pos = (118,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,l), +(369,729,l), +(142,729,l), +(-9,0,l) +); +}, +{ +closed = 1; +nodes = ( +(756,0,l), +(908,729,l), +(680,729,l), +(529,0,l) +); +}, +{ +closed = 1; +nodes = ( +(648,280,l), +(685,458,l), +(253,458,l), +(216,280,l) +); +} +); +width = 860; +} +); +metricRight = "=|"; +unicode = 72; +userData = { +KernOnName = H; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/H_bar.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/H_bar.glyph new file mode 100644 index 00000000..2383bdc7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/H_bar.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Hbar; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-36,223); +ref = strokelongcomb; +} +); +width = 426; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-53,222); +ref = strokelongcomb; +} +); +width = 495; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-56,223); +ref = strokelongcomb; +} +); +width = 811; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-65,226); +ref = strokelongcomb; +} +); +width = 868; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-48,223); +ref = strokelongcomb; +} +); +width = 362; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-54,222); +ref = strokelongcomb; +} +); +width = 473; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-46,223); +ref = strokelongcomb; +} +); +width = 722; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-62,226); +ref = strokelongcomb; +} +); +width = 744; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = H; +}, +{ +alignment = -1; +pos = (-56,223); +ref = strokelongcomb; +} +); +width = 811; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-70,226); +ref = strokelongcomb; +} +); +width = 838; +}, +{ +layerId = m019; +shapes = ( +{ +ref = H; +}, +{ +pos = (-45,223); +ref = strokelongcomb; +} +); +width = 754; +}, +{ +layerId = m020; +shapes = ( +{ +ref = H; +}, +{ +pos = (-54,226); +ref = strokelongcomb; +} +); +width = 782; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = H; +}, +{ +pos = (10,223); +ref = strokelongcomb; +} +); +width = 422; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-7,222); +ref = strokelongcomb; +} +); +width = 494; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-5,223); +ref = strokelongcomb; +} +); +width = 754; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-15,226); +ref = strokelongcomb; +} +); +width = 785; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-15,223); +ref = strokelongcomb; +} +); +width = 802; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = H; +}, +{ +pos = (-22,226); +ref = strokelongcomb; +} +); +width = 860; +} +); +unicode = 294; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/H_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/H_circumflex.glyph new file mode 100644 index 00000000..c28cc332 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/H_circumflex.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Hcircumflex; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = H; +}, +{ +pos = (84,57); +ref = circumflexcomb; +} +); +width = 426; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = H; +}, +{ +pos = (31,51); +ref = circumflexcomb; +} +); +width = 495; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = H; +}, +{ +pos = (227,57); +ref = circumflexcomb; +} +); +width = 811; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = H; +}, +{ +pos = (143,56); +ref = circumflexcomb; +} +); +width = 868; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = H; +}, +{ +pos = (72,57); +ref = circumflexcomb; +} +); +width = 362; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = H; +}, +{ +pos = (30,51); +ref = circumflexcomb; +} +); +width = 473; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = H; +}, +{ +pos = (217,57); +ref = circumflexcomb; +} +); +width = 722; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = H; +}, +{ +pos = (146,51); +ref = circumflexcomb; +} +); +width = 744; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = H; +}, +{ +alignment = -1; +pos = (227,57); +ref = circumflexcomb; +} +); +width = 811; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = H; +}, +{ +pos = (138,56); +ref = circumflexcomb; +} +); +width = 838; +}, +{ +layerId = m019; +shapes = ( +{ +ref = H; +}, +{ +pos = (214,57); +ref = circumflexcomb; +} +); +width = 754; +}, +{ +layerId = m020; +shapes = ( +{ +ref = H; +}, +{ +pos = (152,51); +ref = circumflexcomb; +} +); +width = 782; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = H; +}, +{ +pos = (105,57); +ref = circumflexcomb; +} +); +width = 422; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = H; +}, +{ +pos = (51,51); +ref = circumflexcomb; +} +); +width = 494; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = H; +}, +{ +pos = (232,57); +ref = circumflexcomb; +} +); +width = 754; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = H; +}, +{ +pos = (169,51); +ref = circumflexcomb; +} +); +width = 785; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = H; +}, +{ +pos = (243,57); +ref = circumflexcomb; +} +); +width = 802; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = H; +}, +{ +pos = (159,56); +ref = circumflexcomb; +} +); +width = 860; +} +); +unicode = 292; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_.glyph new file mode 100644 index 00000000..90264a71 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_.glyph @@ -0,0 +1,703 @@ +{ +glyphname = I; +kernLeft = KO_H; +kernRight = KO_H; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (123,0); +}, +{ +name = ogonek; +pos = (216,0); +}, +{ +name = top; +pos = (123,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,0,l), +(216,729,l), +(29,729,l), +(29,0,l) +); +} +); +width = 245; +}, +{ +anchors = ( +{ +name = bottom; +pos = (82,0); +}, +{ +name = ogonek; +pos = (97,0); +}, +{ +name = top; +pos = (82,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,729,l), +(66,729,l), +(66,0,l) +); +} +); +width = 163; +}, +{ +anchors = ( +{ +name = bottom; +pos = (91,0); +}, +{ +name = ogonek; +pos = (110,0); +}, +{ +name = top; +pos = (91,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,729,l), +(72,729,l), +(72,0,l) +); +} +); +width = 182; +}, +{ +anchors = ( +{ +name = bottom; +pos = (162,0); +}, +{ +name = ogonek; +pos = (276,0); +}, +{ +name = top; +pos = (162,729); +}, +{ +name = topleft; +pos = (13,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,729,l), +(47,729,l), +(47,0,l) +); +} +); +width = 323; +}, +{ +anchors = ( +{ +name = bottom; +pos = (58,0); +}, +{ +name = ogonek; +pos = (73,0); +}, +{ +name = top; +pos = (58,729); +}, +{ +name = topleft; +pos = (-3,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(73,729,l), +(42,729,l), +(42,0,l) +); +} +); +width = 115; +}, +{ +anchors = ( +{ +name = bottom; +pos = (112,0); +}, +{ +name = ogonek; +pos = (204,0); +}, +{ +name = top; +pos = (112,729); +}, +{ +name = topleft; +pos = (10,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,729,l), +(18,729,l), +(18,0,l) +); +} +); +width = 222; +}, +{ +anchors = ( +{ +name = bottom; +pos = (89,0); +}, +{ +name = ogonek; +pos = (108,0); +}, +{ +name = top; +pos = (89,729); +}, +{ +name = topleft; +pos = (-13,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,729,l), +(70,729,l), +(70,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 178; +}, +{ +anchors = ( +{ +name = bottom; +pos = (132,0); +}, +{ +name = ogonek; +pos = (233,0); +}, +{ +name = top; +pos = (132,729); +}, +{ +name = topleft; +pos = (-19,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(233,729,l), +(30,729,l), +(30,0,l) +); +} +); +width = 263; +}, +{ +anchors = ( +{ +name = bottom; +pos = (81,0); +}, +{ +name = ogonek; +pos = (100,0); +}, +{ +name = top; +pos = (81,729); +}, +{ +name = topleft; +pos = (11,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(100,729,l), +(62,729,l), +(62,0,l) +); +} +); +width = 162; +}, +{ +anchors = ( +{ +name = bottom; +pos = (147,0); +}, +{ +name = ogonek; +pos = (261,0); +}, +{ +name = top; +pos = (147,729); +}, +{ +name = topleft; +pos = (-2,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,729,l), +(32,729,l), +(32,0,l) +); +} +); +width = 293; +}, +{ +anchors = ( +{ +name = bottom; +pos = (124,0); +}, +{ +name = ogonek; +pos = (143,0); +}, +{ +name = top; +pos = (124,729); +}, +{ +name = topleft; +pos = (24,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,l), +(143,729,l), +(105,729,l), +(105,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 248; +}, +{ +anchors = ( +{ +name = bottom; +pos = (163,0); +}, +{ +name = ogonek; +pos = (264,0); +}, +{ +name = top; +pos = (163,729); +}, +{ +name = topleft; +pos = (22,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,729,l), +(62,729,l), +(62,0,l) +); +} +); +width = 327; +}, +{ +anchors = ( +{ +name = bottom; +pos = (28,0); +}, +{ +name = ogonek; +pos = (43,0); +}, +{ +name = top; +pos = (179,729); +}, +{ +name = topleft; +pos = (130,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(194,729,l), +(163,729,l), +(12,0,l) +); +} +); +width = 161; +}, +{ +anchors = ( +{ +name = bottom; +pos = (66,0); +}, +{ +name = ogonek; +pos = (158,0); +}, +{ +name = top; +pos = (216,729); +}, +{ +name = topleft; +pos = (125,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,0,l), +(310,729,l), +(125,729,l), +(-27,0,l) +); +} +); +width = 244; +}, +{ +anchors = ( +{ +name = bottom; +pos = (59,0); +}, +{ +name = ogonek; +pos = (77,0); +}, +{ +name = top; +pos = (210,729); +}, +{ +name = topleft; +pos = (118,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(229,729,l), +(191,729,l), +(40,0,l) +); +} +); +width = 226; +}, +{ +anchors = ( +{ +name = bottom; +pos = (104,0); +}, +{ +name = ogonek; +pos = (204,0); +}, +{ +name = top; +pos = (254,729); +}, +{ +name = topleft; +pos = (115,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(355,729,l), +(154,729,l), +(3,0,l) +); +} +); +width = 319; +}, +{ +anchors = ( +{ +name = bottom; +pos = (37,0); +}, +{ +name = ogonek; +pos = (56,0); +}, +{ +name = top; +pos = (188,729); +}, +{ +name = topleft; +pos = (128,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(207,729,l), +(169,729,l), +(18,0,l) +); +} +); +width = 182; +}, +{ +anchors = ( +{ +name = bottom; +pos = (105,0); +}, +{ +name = ogonek; +pos = (218,0); +}, +{ +name = top; +pos = (256,729); +}, +{ +name = topleft; +pos = (118,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,l), +(369,729,l), +(142,729,l), +(-9,0,l) +); +} +); +width = 321; +} +); +metricLeft = H; +metricRight = H; +unicode = 73; +userData = { +KernOnName = I; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_.ss02.glyph new file mode 100644 index 00000000..202ba392 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_.ss02.glyph @@ -0,0 +1,1021 @@ +{ +glyphname = I.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (180,0); +}, +{ +name = ogonek; +pos = (342,0); +}, +{ +name = top; +pos = (180,729); +}, +{ +name = topleft; +pos = (27,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,143,l), +(269,586,l), +(85,586,l), +(85,143,l) +); +}, +{ +closed = 1; +nodes = ( +(342,570,l), +(342,729,l), +(17,729,l), +(17,570,l) +); +}, +{ +closed = 1; +nodes = ( +(342,0,l), +(342,159,l), +(17,159,l), +(17,0,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = bottom; +pos = (106,0); +}, +{ +name = ogonek; +pos = (205,0); +}, +{ +name = top; +pos = (106,729); +}, +{ +name = topleft; +pos = (-5,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,21,l), +(121,708,l), +(90,708,l), +(90,21,l) +); +}, +{ +closed = 1; +nodes = ( +(205,700,l), +(205,729,l), +(6,729,l), +(6,700,l) +); +}, +{ +closed = 1; +nodes = ( +(205,0,l), +(205,29,l), +(6,29,l), +(6,0,l) +); +} +); +width = 211; +}, +{ +anchors = ( +{ +name = bottom; +pos = (260,0); +}, +{ +name = ogonek; +pos = (500,0); +}, +{ +name = top; +pos = (260,729); +}, +{ +name = topleft; +pos = (3,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(280,27,l), +(280,703,l), +(242,703,l), +(242,27,l) +); +}, +{ +closed = 1; +nodes = ( +(500,693,l), +(500,729,l), +(21,729,l), +(21,693,l) +); +}, +{ +closed = 1; +nodes = ( +(500,0,l), +(500,36,l), +(21,36,l), +(21,0,l) +); +} +); +width = 522; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = ogonek; +pos = (568,0); +}, +{ +name = top; +pos = (295,729); +}, +{ +name = topleft; +pos = (8,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(406,165,l), +(406,564,l), +(178,564,l), +(178,165,l) +); +}, +{ +closed = 1; +nodes = ( +(568,548,l), +(568,729,l), +(22,729,l), +(22,548,l) +); +}, +{ +closed = 1; +nodes = ( +(568,0,l), +(568,181,l), +(22,181,l), +(22,0,l) +); +} +); +width = 589; +}, +{ +anchors = ( +{ +name = bottom; +pos = (98,0); +}, +{ +name = ogonek; +pos = (197,0); +}, +{ +name = top; +pos = (98,729); +}, +{ +name = topleft; +pos = (-13,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,21,l), +(113,708,l), +(82,708,l), +(82,21,l) +); +}, +{ +closed = 1; +nodes = ( +(197,700,l), +(197,729,l), +(-2,729,l), +(-2,700,l) +); +}, +{ +closed = 1; +nodes = ( +(197,0,l), +(197,29,l), +(-2,29,l), +(-2,0,l) +); +} +); +width = 195; +}, +{ +anchors = ( +{ +name = bottom; +pos = (170,0); +}, +{ +name = ogonek; +pos = (332,0); +}, +{ +name = top; +pos = (170,729); +}, +{ +name = topleft; +pos = (17,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,143,l), +(259,586,l), +(75,586,l), +(75,143,l) +); +}, +{ +closed = 1; +nodes = ( +(332,570,l), +(332,729,l), +(7,729,l), +(7,570,l) +); +}, +{ +closed = 1; +nodes = ( +(332,0,l), +(332,159,l), +(7,159,l), +(7,0,l) +); +} +); +width = 339; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = ogonek; +pos = (419,0); +}, +{ +name = top; +pos = (217,729); +}, +{ +name = topleft; +pos = (34,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,27,l), +(236,703,l), +(198,703,l), +(198,27,l) +); +}, +{ +closed = 1; +nodes = ( +(419,693,l), +(419,729,l), +(15,729,l), +(15,693,l) +); +}, +{ +closed = 1; +nodes = ( +(419,0,l), +(419,36,l), +(15,36,l), +(15,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 434; +}, +{ +anchors = ( +{ +name = bottom; +pos = (267,0); +}, +{ +name = ogonek; +pos = (524,0); +}, +{ +name = top; +pos = (267,729); +}, +{ +name = topleft; +pos = (21,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(365,158,l), +(365,571,l), +(162,571,l), +(162,158,l) +); +}, +{ +closed = 1; +nodes = ( +(524,555,l), +(524,729,l), +(9,729,l), +(9,555,l) +); +}, +{ +closed = 1; +nodes = ( +(524,0,l), +(524,174,l), +(9,174,l), +(9,0,l) +); +} +); +width = 533; +}, +{ +anchors = ( +{ +name = bottom; +pos = (250,0); +}, +{ +name = ogonek; +pos = (490,0); +}, +{ +name = top; +pos = (250,729); +}, +{ +name = topleft; +pos = (-7,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,27,l), +(270,703,l), +(232,703,l), +(232,27,l) +); +}, +{ +closed = 1; +nodes = ( +(490,693,l), +(490,729,l), +(11,729,l), +(11,693,l) +); +}, +{ +closed = 1; +nodes = ( +(490,0,l), +(490,36,l), +(11,36,l), +(11,0,l) +); +} +); +width = 502; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = ogonek; +pos = (553,0); +}, +{ +name = top; +pos = (280,729); +}, +{ +name = topleft; +pos = (-7,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,165,l), +(391,564,l), +(163,564,l), +(163,165,l) +); +}, +{ +closed = 1; +nodes = ( +(553,548,l), +(553,729,l), +(7,729,l), +(7,548,l) +); +}, +{ +closed = 1; +nodes = ( +(553,0,l), +(553,181,l), +(7,181,l), +(7,0,l) +); +} +); +width = 559; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = ogonek; +pos = (434,0); +}, +{ +name = top; +pos = (236,729); +}, +{ +name = topleft; +pos = (55,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(253,27,l), +(253,703,l), +(217,703,l), +(217,27,l) +); +}, +{ +closed = 1; +nodes = ( +(434,693,l), +(434,729,l), +(38,729,l), +(38,693,l) +); +}, +{ +closed = 1; +nodes = ( +(434,0,l), +(434,36,l), +(38,36,l), +(38,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 469; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = ogonek; +pos = (534,0); +}, +{ +name = top; +pos = (284,729); +}, +{ +name = topleft; +pos = (45,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(381,158,l), +(381,571,l), +(180,571,l), +(180,158,l) +); +}, +{ +closed = 1; +nodes = ( +(534,555,l), +(534,729,l), +(34,729,l), +(34,555,l) +); +}, +{ +closed = 1; +nodes = ( +(534,0,l), +(534,174,l), +(34,174,l), +(34,0,l) +); +} +); +width = 566; +}, +{ +anchors = ( +{ +name = bottom; +pos = (54,0); +}, +{ +name = ogonek; +pos = (153,0); +}, +{ +name = top; +pos = (204,729); +}, +{ +name = topleft; +pos = (93,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,21,l), +(215,708,l), +(184,708,l), +(42,21,l) +); +}, +{ +closed = 1; +nodes = ( +(297,700,l), +(303,729,l), +(104,729,l), +(98,700,l) +); +}, +{ +closed = 1; +nodes = ( +(153,0,l), +(159,29,l), +(-40,29,l), +(-46,0,l) +); +} +); +width = 212; +}, +{ +anchors = ( +{ +name = bottom; +pos = (125,0); +}, +{ +name = ogonek; +pos = (287,0); +}, +{ +name = top; +pos = (275,729); +}, +{ +name = topleft; +pos = (122,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,143,l), +(335,586,l), +(151,586,l), +(59,143,l) +); +}, +{ +closed = 1; +nodes = ( +(405,570,l), +(437,729,l), +(112,729,l), +(80,570,l) +); +}, +{ +closed = 1; +nodes = ( +(287,0,l), +(319,159,l), +(-6,159,l), +(-38,0,l) +); +} +); +width = 360; +}, +{ +anchors = ( +{ +name = bottom; +pos = (184,0); +}, +{ +name = ogonek; +pos = (386,0); +}, +{ +name = top; +pos = (334,729); +}, +{ +name = topleft; +pos = (151,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,27,l), +(348,702,l), +(310,702,l), +(170,27,l) +); +}, +{ +closed = 1; +nodes = ( +(529,693,l), +(536,729,l), +(132,729,l), +(125,693,l) +); +}, +{ +closed = 1; +nodes = ( +(386,0,l), +(393,36,l), +(-11,36,l), +(-18,0,l) +); +} +); +width = 475; +}, +{ +anchors = ( +{ +name = bottom; +pos = (237,0); +}, +{ +name = ogonek; +pos = (494,0); +}, +{ +name = top; +pos = (387,729); +}, +{ +name = topleft; +pos = (141,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,158,l), +(452,571,l), +(249,571,l), +(165,158,l) +); +}, +{ +closed = 1; +nodes = ( +(608,555,l), +(644,729,l), +(129,729,l), +(93,555,l) +); +}, +{ +closed = 1; +nodes = ( +(494,0,l), +(530,174,l), +(15,174,l), +(-21,0,l) +); +} +); +width = 584; +}, +{ +anchors = ( +{ +name = bottom; +pos = (207,0); +}, +{ +name = ogonek; +pos = (447,0); +}, +{ +name = top; +pos = (357,729); +}, +{ +name = topleft; +pos = (100,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,27,l), +(372,702,l), +(334,702,l), +(194,27,l) +); +}, +{ +closed = 1; +nodes = ( +(590,693,l), +(597,729,l), +(118,729,l), +(111,693,l) +); +}, +{ +closed = 1; +nodes = ( +(447,0,l), +(454,36,l), +(-25,36,l), +(-32,0,l) +); +} +); +width = 522; +}, +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = ogonek; +pos = (512,0); +}, +{ +name = top; +pos = (389,729); +}, +{ +name = topleft; +pos = (102,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,165,l), +(466,564,l), +(238,564,l), +(156,165,l) +); +}, +{ +closed = 1; +nodes = ( +(625,548,l), +(662,729,l), +(116,729,l), +(79,548,l) +); +}, +{ +closed = 1; +nodes = ( +(512,0,l), +(549,181,l), +(3,181,l), +(-34,0,l) +); +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_J_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_J_.glyph new file mode 100644 index 00000000..05caf971 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_J_.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = IJ; +kernLeft = KO_H; +kernRight = KO_J; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (163,0); +ref = J; +} +); +width = 341; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (245,0); +ref = J; +} +); +width = 537; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (182,0); +ref = J; +} +); +width = 607; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (323,0); +ref = J; +} +); +width = 795; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (119,0); +ref = J; +} +); +width = 265; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (222,0); +ref = J; +} +); +width = 495; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (178,0); +ref = J; +} +); +width = 507; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (263,0); +ref = J; +} +); +width = 651; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (156,0); +ref = J; +} +); +width = 566; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (293,0); +ref = J; +} +); +width = 740; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (248,0); +ref = J; +} +); +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (331,0); +ref = J; +} +); +width = 753; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (163,0); +ref = J; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (244,0); +ref = J; +} +); +width = 534; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (226,0); +ref = J; +} +); +width = 604; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (323,0); +ref = J; +} +); +width = 752; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (182,0); +ref = J; +} +); +width = 568; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (324,0); +ref = J; +} +); +width = 753; +} +); +unicode = 306; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_J_.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_J_.ss02.glyph new file mode 100644 index 00000000..34393493 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_J_.ss02.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = IJ.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_J; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (260,0); +ref = J; +} +); +width = 438; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (366,0); +ref = J; +} +); +width = 658; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (535,0); +ref = J; +} +); +width = 960; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (606,0); +ref = J; +} +); +width = 1078; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (224,0); +ref = J; +} +); +width = 370; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (347,0); +ref = J; +} +); +width = 620; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (476,0); +ref = J; +} +); +width = 805; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (539,0); +ref = J; +} +); +width = 927; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (519,0); +ref = J; +} +); +width = 929; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (584,0); +ref = J; +} +); +width = 1031; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (510,0); +ref = J; +} +); +width = 885; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (566,0); +ref = J; +} +); +width = 988; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (269,0); +ref = J; +} +); +width = 447; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (360,0); +ref = J; +} +); +width = 650; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (484,0); +ref = J; +} +); +width = 862; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (590,0); +ref = J; +} +); +width = 1019; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (533,0); +ref = J; +} +); +width = 919; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (610,0); +ref = J; +} +); +width = 1039; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_acute.glyph new file mode 100644 index 00000000..edc1e8fc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_acute.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Iacute; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (26,57); +ref = acutecomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (11,51); +ref = acutecomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (33,57); +ref = acutecomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (45,56); +ref = acutecomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (22,57); +ref = acutecomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (10,51); +ref = acutecomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (54,57); +ref = acutecomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (41,51); +ref = acutecomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (33,57); +ref = acutecomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (40,56); +ref = acutecomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (68,57); +ref = acutecomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (53,51); +ref = acutecomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (38,57); +ref = acutecomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (21,51); +ref = acutecomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (68,57); +ref = acutecomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (59,51); +ref = acutecomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (45,57); +ref = acutecomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (56,56); +ref = acutecomb; +} +); +width = 321; +} +); +unicode = 205; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_acute.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_acute.ss02.glyph new file mode 100644 index 00000000..2419f1ff --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_acute.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Iacute.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (50,57); +ref = acutecomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (68,51); +ref = acutecomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (202,57); +ref = acutecomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (178,56); +ref = acutecomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (62,57); +ref = acutecomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (68,51); +ref = acutecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (182,57); +ref = acutecomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (176,51); +ref = acutecomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (202,57); +ref = acutecomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (173,56); +ref = acutecomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (180,57); +ref = acutecomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (174,51); +ref = acutecomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (63,57); +ref = acutecomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (80,51); +ref = acutecomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (192,57); +ref = acutecomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (192,51); +ref = acutecomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (214,57); +ref = acutecomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (189,56); +ref = acutecomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_breve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_breve.glyph new file mode 100644 index 00000000..fe55949a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_breve.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Ibreve; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-42,57); +ref = brevecomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-72,51); +ref = brevecomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-83,57); +ref = brevecomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-77,56); +ref = brevecomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-46,57); +ref = brevecomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-73,51); +ref = brevecomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-59,51); +ref = brevecomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-66,51); +ref = brevecomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (-83,57); +ref = brevecomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-82,56); +ref = brevecomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-43,51); +ref = brevecomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-48,51); +ref = brevecomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-35,57); +ref = brevecomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-64,51); +ref = brevecomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-46,57); +ref = brevecomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-58,51); +ref = brevecomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-77,57); +ref = brevecomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-66,51); +ref = brevecomb; +} +); +width = 321; +} +); +unicode = 300; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_breve.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_breve.ss02.glyph new file mode 100644 index 00000000..8a6a90e6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_breve.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Ibreve.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-18,57); +ref = brevecomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-15,51); +ref = brevecomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (86,57); +ref = brevecomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (56,56); +ref = brevecomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-6,57); +ref = brevecomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (-15,51); +ref = brevecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (69,51); +ref = brevecomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (69,51); +ref = brevecomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (86,57); +ref = brevecomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (51,56); +ref = brevecomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (69,51); +ref = brevecomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (73,51); +ref = brevecomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-10,57); +ref = brevecomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-5,51); +ref = brevecomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (78,57); +ref = brevecomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (75,51); +ref = brevecomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (92,57); +ref = brevecomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (67,51); +ref = brevecomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_circumflex.glyph new file mode 100644 index 00000000..05061d5f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_circumflex.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Icircumflex; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-47,57); +ref = circumflexcomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-94,51); +ref = circumflexcomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-88,57); +ref = circumflexcomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-129,56); +ref = circumflexcomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-51,57); +ref = circumflexcomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-95,51); +ref = circumflexcomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-55,57); +ref = circumflexcomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-94,51); +ref = circumflexcomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (-88,57); +ref = circumflexcomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-134,56); +ref = circumflexcomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-39,57); +ref = circumflexcomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-76,51); +ref = circumflexcomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-36,57); +ref = circumflexcomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-86,51); +ref = circumflexcomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-42,57); +ref = circumflexcomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-75,51); +ref = circumflexcomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-78,57); +ref = circumflexcomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-120,56); +ref = circumflexcomb; +} +); +width = 321; +} +); +unicode = 206; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_circumflex.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_circumflex.ss02.glyph new file mode 100644 index 00000000..9d2a1349 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_circumflex.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Icircumflex.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-23,57); +ref = circumflexcomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-37,51); +ref = circumflexcomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (81,57); +ref = circumflexcomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (4,56); +ref = circumflexcomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-11,57); +ref = circumflexcomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (-37,51); +ref = circumflexcomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (73,57); +ref = circumflexcomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (41,51); +ref = circumflexcomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (81,57); +ref = circumflexcomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-1,56); +ref = circumflexcomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (73,57); +ref = circumflexcomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (45,51); +ref = circumflexcomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-11,57); +ref = circumflexcomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-27,51); +ref = circumflexcomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (82,57); +ref = circumflexcomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (58,51); +ref = circumflexcomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (91,57); +ref = circumflexcomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (13,56); +ref = circumflexcomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_dieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dieresis.glyph new file mode 100644 index 00000000..ccde630f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dieresis.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Idieresis; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-36,57); +ref = dieresiscomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-102,51); +ref = dieresiscomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-86,57); +ref = dieresiscomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,51); +ref = dieresiscomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-40,57); +ref = dieresiscomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-103,51); +ref = dieresiscomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-53,57); +ref = dieresiscomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-90,51); +ref = dieresiscomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (-86,57); +ref = dieresiscomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-126,51); +ref = dieresiscomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-37,57); +ref = dieresiscomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-72,51); +ref = dieresiscomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-30,57); +ref = dieresiscomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-101,51); +ref = dieresiscomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-37,57); +ref = dieresiscomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-75,51); +ref = dieresiscomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-74,57); +ref = dieresiscomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-113,51); +ref = dieresiscomb; +} +); +width = 321; +} +); +unicode = 207; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_dieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dieresis.ss01.glyph new file mode 100644 index 00000000..85b19e01 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dieresis.ss01.glyph @@ -0,0 +1,240 @@ +{ +color = 6; +glyphname = Idieresis.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-25,57); +ref = dieresiscomb.ss01; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-101,51); +ref = dieresiscomb.ss01; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-53,57); +ref = dieresiscomb.ss01; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-99,51); +ref = dieresiscomb.ss01; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-29,57); +ref = dieresiscomb.ss01; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-102,51); +ref = dieresiscomb.ss01; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-26,57); +ref = dieresiscomb.ss01; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-78,51); +ref = dieresiscomb.ss01; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-53,57); +ref = dieresiscomb.ss01; +} +); +width = 162; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-104,51); +ref = dieresiscomb.ss01; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-12,57); +ref = dieresiscomb.ss01; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-60,51); +ref = dieresiscomb.ss01; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-17,57); +ref = dieresiscomb.ss01; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-93,51); +ref = dieresiscomb.ss01; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-15,57); +ref = dieresiscomb.ss01; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-59,51); +ref = dieresiscomb.ss01; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-37,57); +ref = dieresiscomb.ss01; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-84,51); +ref = dieresiscomb.ss01; +} +); +width = 321; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_dieresis.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dieresis.ss02.glyph new file mode 100644 index 00000000..56e5f1f7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dieresis.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Idieresis.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-12,57); +ref = dieresiscomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-45,51); +ref = dieresiscomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (83,57); +ref = dieresiscomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (12,51); +ref = dieresiscomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (0,57); +ref = dieresiscomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (-45,51); +ref = dieresiscomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (75,57); +ref = dieresiscomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (45,51); +ref = dieresiscomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (83,57); +ref = dieresiscomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (7,51); +ref = dieresiscomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (75,57); +ref = dieresiscomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (49,51); +ref = dieresiscomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-5,57); +ref = dieresiscomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-42,51); +ref = dieresiscomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (87,57); +ref = dieresiscomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (58,51); +ref = dieresiscomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (95,57); +ref = dieresiscomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (20,51); +ref = dieresiscomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotaccent.glyph new file mode 100644 index 00000000..c86e56c1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotaccent.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Idotaccent; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (19,57); +ref = dotaccentcomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-11,51); +ref = dotaccentcomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (19,57); +ref = dotaccentcomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (4,56); +ref = dotaccentcomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (15,62); +ref = dotaccentcomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-12,51); +ref = dotaccentcomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (37,62); +ref = dotaccentcomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (16,51); +ref = dotaccentcomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (19,57); +ref = dotaccentcomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-1,56); +ref = dotaccentcomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (51,79); +ref = dotaccentcomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (30,65); +ref = dotaccentcomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (25,57); +ref = dotaccentcomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-2,51); +ref = dotaccentcomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (53,57); +ref = dotaccentcomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (29,51); +ref = dotaccentcomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (31,57); +ref = dotaccentcomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (12,56); +ref = dotaccentcomb; +} +); +width = 321; +} +); +unicode = 304; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotaccent.ss01.glyph new file mode 100644 index 00000000..bce49884 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotaccent.ss01.glyph @@ -0,0 +1,240 @@ +{ +color = 6; +glyphname = Idotaccent.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (27,57); +ref = dotaccentcomb.ss01; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-6,51); +ref = dotaccentcomb.ss01; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (32,57); +ref = dotaccentcomb.ss01; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (11,56); +ref = dotaccentcomb.ss01; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (23,57); +ref = dotaccentcomb.ss01; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-7,51); +ref = dotaccentcomb.ss01; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (50,57); +ref = dotaccentcomb.ss01; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (17,51); +ref = dotaccentcomb.ss01; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (32,57); +ref = dotaccentcomb.ss01; +} +); +width = 162; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (6,56); +ref = dotaccentcomb.ss01; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (64,57); +ref = dotaccentcomb.ss01; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (29,51); +ref = dotaccentcomb.ss01; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (39,57); +ref = dotaccentcomb.ss01; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (4,51); +ref = dotaccentcomb.ss01; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (66,57); +ref = dotaccentcomb.ss01; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (34,51); +ref = dotaccentcomb.ss01; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (44,57); +ref = dotaccentcomb.ss01; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (21,51); +ref = dotaccentcomb.ss01; +} +); +width = 321; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotaccent.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotaccent.ss02.glyph new file mode 100644 index 00000000..6ef5d754 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotaccent.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Idotaccent.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (43,57); +ref = dotaccentcomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (46,51); +ref = dotaccentcomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (188,57); +ref = dotaccentcomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (137,56); +ref = dotaccentcomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (55,62); +ref = dotaccentcomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (46,51); +ref = dotaccentcomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (165,57); +ref = dotaccentcomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (151,51); +ref = dotaccentcomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (188,57); +ref = dotaccentcomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (132,56); +ref = dotaccentcomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (163,79); +ref = dotaccentcomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (151,65); +ref = dotaccentcomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (50,57); +ref = dotaccentcomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (57,51); +ref = dotaccentcomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (177,57); +ref = dotaccentcomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (162,51); +ref = dotaccentcomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (200,57); +ref = dotaccentcomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (145,56); +ref = dotaccentcomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotbelow.glyph new file mode 100644 index 00000000..244e3199 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotbelow.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Idotbelow; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (19,0); +ref = dotbelowcomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (5,0); +ref = dotbelowcomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (19,0); +ref = dotbelowcomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (9,0); +ref = dotbelowcomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (15,0); +ref = dotbelowcomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (4,0); +ref = dotbelowcomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (37,0); +ref = dotbelowcomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (28,0); +ref = dotbelowcomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (19,0); +ref = dotbelowcomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (4,0); +ref = dotbelowcomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (51,0); +ref = dotbelowcomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (42,0); +ref = dotbelowcomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (18,0); +ref = dotbelowcomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (41,0); +ref = dotbelowcomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (33,0); +ref = dotbelowcomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (20,0); +ref = dotbelowcomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (8,0); +ref = dotbelowcomb; +} +); +width = 321; +} +); +unicode = 7882; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotbelow.ss01.glyph new file mode 100644 index 00000000..ea22bda5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotbelow.ss01.glyph @@ -0,0 +1,240 @@ +{ +color = 6; +glyphname = Idotbelow.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (27,0); +ref = dotbelowcomb.ss01; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-6,0); +ref = dotbelowcomb.ss01; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (32,0); +ref = dotbelowcomb.ss01; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (21,0); +ref = dotbelowcomb.ss01; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (23,0); +ref = dotbelowcomb.ss01; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-7,0); +ref = dotbelowcomb.ss01; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (50,0); +ref = dotbelowcomb.ss01; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (17,0); +ref = dotbelowcomb.ss01; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (32,0); +ref = dotbelowcomb.ss01; +} +); +width = 162; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (16,0); +ref = dotbelowcomb.ss01; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (64,0); +ref = dotbelowcomb.ss01; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (29,0); +ref = dotbelowcomb.ss01; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (26,0); +ref = dotbelowcomb.ss01; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-8,0); +ref = dotbelowcomb.ss01; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (54,0); +ref = dotbelowcomb.ss01; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (24,0); +ref = dotbelowcomb.ss01; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (31,0); +ref = dotbelowcomb.ss01; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (22,0); +ref = dotbelowcomb.ss01; +} +); +width = 321; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotbelow.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotbelow.ss02.glyph new file mode 100644 index 00000000..8ae3e337 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_dotbelow.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Idotbelow.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (43,0); +ref = dotbelowcomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (62,0); +ref = dotbelowcomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (188,0); +ref = dotbelowcomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (142,0); +ref = dotbelowcomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (55,0); +ref = dotbelowcomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (62,0); +ref = dotbelowcomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (165,0); +ref = dotbelowcomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (163,0); +ref = dotbelowcomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (188,0); +ref = dotbelowcomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (137,0); +ref = dotbelowcomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (163,0); +ref = dotbelowcomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (163,0); +ref = dotbelowcomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (44,0); +ref = dotbelowcomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (60,0); +ref = dotbelowcomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (166,0); +ref = dotbelowcomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (166,0); +ref = dotbelowcomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (190,0); +ref = dotbelowcomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (142,0); +ref = dotbelowcomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_grave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_grave.glyph new file mode 100644 index 00000000..80265bac --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_grave.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Igrave; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-52,57); +ref = gravecomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-86,51); +ref = gravecomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-53,57); +ref = gravecomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-72,56); +ref = gravecomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-56,57); +ref = gravecomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-87,51); +ref = gravecomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-25,57); +ref = gravecomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-56,51); +ref = gravecomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (-53,57); +ref = gravecomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-77,56); +ref = gravecomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-11,57); +ref = gravecomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-36,51); +ref = gravecomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-39,57); +ref = gravecomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-69,51); +ref = gravecomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-9,57); +ref = gravecomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-42,51); +ref = gravecomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-42,57); +ref = gravecomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-61,56); +ref = gravecomb; +} +); +width = 321; +} +); +unicode = 204; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_grave.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_grave.ss02.glyph new file mode 100644 index 00000000..fd742798 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_grave.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Igrave.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-28,57); +ref = gravecomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-29,51); +ref = gravecomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (116,57); +ref = gravecomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (61,56); +ref = gravecomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-16,57); +ref = gravecomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (-29,51); +ref = gravecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (103,57); +ref = gravecomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (79,51); +ref = gravecomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (116,57); +ref = gravecomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (56,56); +ref = gravecomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (101,57); +ref = gravecomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (85,51); +ref = gravecomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-14,57); +ref = gravecomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-10,51); +ref = gravecomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (115,57); +ref = gravecomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (91,51); +ref = gravecomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (127,57); +ref = gravecomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (72,56); +ref = gravecomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_hookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_hookabove.glyph new file mode 100644 index 00000000..61fc3550 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_hookabove.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Ihookabove; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (1,57); +ref = hookabovecomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-16,50); +ref = hookabovecomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-17,57); +ref = hookabovecomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (9,51); +ref = hookabovecomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-3,57); +ref = hookabovecomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-17,50); +ref = hookabovecomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (1,57); +ref = hookabovecomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-10,51); +ref = hookabovecomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (-17,57); +ref = hookabovecomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (4,51); +ref = hookabovecomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (15,57); +ref = hookabovecomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (7,51); +ref = hookabovecomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-10,56); +ref = hookabovecomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-15,49); +ref = hookabovecomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (21,56); +ref = hookabovecomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-1,50); +ref = hookabovecomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (0,56); +ref = hookabovecomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (4,48); +ref = hookabovecomb; +} +); +width = 321; +} +); +unicode = 7880; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_hookabove.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_hookabove.ss02.glyph new file mode 100644 index 00000000..dbfdc157 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_hookabove.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Ihookabove.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (25,57); +ref = hookabovecomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (41,50); +ref = hookabovecomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (152,57); +ref = hookabovecomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (142,51); +ref = hookabovecomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (37,57); +ref = hookabovecomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (41,50); +ref = hookabovecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (129,57); +ref = hookabovecomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (125,51); +ref = hookabovecomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (152,57); +ref = hookabovecomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (137,51); +ref = hookabovecomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (127,57); +ref = hookabovecomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (128,51); +ref = hookabovecomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (15,56); +ref = hookabovecomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (44,49); +ref = hookabovecomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (145,56); +ref = hookabovecomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (132,50); +ref = hookabovecomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (169,56); +ref = hookabovecomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (137,48); +ref = hookabovecomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_macron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_macron.glyph new file mode 100644 index 00000000..7edbd638 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_macron.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Imacron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-55,58); +ref = macroncomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-71,49); +ref = macroncomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-137,58); +ref = macroncomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-102,56); +ref = macroncomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-59,58); +ref = macroncomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-72,49); +ref = macroncomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-91,57); +ref = macroncomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-89,51); +ref = macroncomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (-137,58); +ref = macroncomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-107,56); +ref = macroncomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-75,57); +ref = macroncomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-71,51); +ref = macroncomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-44,58); +ref = macroncomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-63,49); +ref = macroncomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-76,57); +ref = macroncomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-54,51); +ref = macroncomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-126,58); +ref = macroncomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-92,56); +ref = macroncomb; +} +); +width = 321; +} +); +unicode = 298; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_macron.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_macron.ss02.glyph new file mode 100644 index 00000000..a80d1d0d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_macron.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Imacron.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-31,58); +ref = macroncomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-14,49); +ref = macroncomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (32,58); +ref = macroncomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (31,56); +ref = macroncomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-19,58); +ref = macroncomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (-14,49); +ref = macroncomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (37,57); +ref = macroncomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (46,51); +ref = macroncomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (32,58); +ref = macroncomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (26,56); +ref = macroncomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (37,57); +ref = macroncomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (50,51); +ref = macroncomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-19,58); +ref = macroncomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-4,49); +ref = macroncomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (48,57); +ref = macroncomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (79,51); +ref = macroncomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (43,58); +ref = macroncomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (41,56); +ref = macroncomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_ogonek.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_ogonek.glyph new file mode 100644 index 00000000..477022a3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_ogonek.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Iogonek; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-38,0); +ref = ogonekcomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (19,0); +ref = ogonekcomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-73,0); +ref = ogonekcomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-31,0); +ref = ogonekcomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-42,0); +ref = ogonekcomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (17,0); +ref = ogonekcomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-33,0); +ref = ogonekcomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-27,0); +ref = ogonekcomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (-73,0); +ref = ogonekcomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-36,0); +ref = ogonekcomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-17,0); +ref = ogonekcomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-6,0); +ref = ogonekcomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-35,0); +ref = ogonekcomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (17,0); +ref = ogonekcomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-26,0); +ref = ogonekcomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-19,0); +ref = ogonekcomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-69,0); +ref = ogonekcomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-31,0); +ref = ogonekcomb; +} +); +width = 321; +} +); +unicode = 302; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_ogonek.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_ogonek.ss02.glyph new file mode 100644 index 00000000..04473085 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_ogonek.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Iogonek.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (70,0); +ref = ogonekcomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (145,0); +ref = ogonekcomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (317,0); +ref = ogonekcomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (261,0); +ref = ogonekcomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (82,0); +ref = ogonekcomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (145,0); +ref = ogonekcomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (278,0); +ref = ogonekcomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (264,0); +ref = ogonekcomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (317,0); +ref = ogonekcomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (256,0); +ref = ogonekcomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (274,0); +ref = ogonekcomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (264,0); +ref = ogonekcomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (75,0); +ref = ogonekcomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (146,0); +ref = ogonekcomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (283,0); +ref = ogonekcomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (271,0); +ref = ogonekcomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (322,0); +ref = ogonekcomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (263,0); +ref = ogonekcomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_tilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_tilde.glyph new file mode 100644 index 00000000..0b6ee20d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_tilde.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Itilde; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-58,57); +ref = tildecomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-109,50); +ref = tildecomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-116,57); +ref = tildecomb; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-102,56); +ref = tildecomb; +} +); +width = 323; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-62,57); +ref = tildecomb; +} +); +width = 115; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-110,50); +ref = tildecomb; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-80,57); +ref = tildecomb; +} +); +width = 178; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-105,51); +ref = tildecomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +alignment = -1; +pos = (-116,57); +ref = tildecomb; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-107,56); +ref = tildecomb; +} +); +width = 293; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-64,57); +ref = tildecomb; +} +); +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-87,51); +ref = tildecomb; +} +); +width = 327; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-46,57); +ref = tildecomb; +} +); +width = 161; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-102,50); +ref = tildecomb; +} +); +width = 244; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-64,57); +ref = tildecomb; +} +); +width = 226; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-90,51); +ref = tildecomb; +} +); +width = 319; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-104,57); +ref = tildecomb; +} +); +width = 182; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-88,51); +ref = tildecomb; +} +); +width = 321; +} +); +unicode = 296; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/I_tilde.ss02.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/I_tilde.ss02.glyph new file mode 100644 index 00000000..c119333f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/I_tilde.ss02.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Itilde.ss02; +kernLeft = KO_I.ss02; +kernRight = KO_I.ss02; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-34,57); +ref = tildecomb; +} +); +width = 211; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-52,50); +ref = tildecomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (53,57); +ref = tildecomb; +} +); +width = 522; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (31,56); +ref = tildecomb; +} +); +width = 589; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-22,57); +ref = tildecomb; +} +); +width = 195; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (-52,50); +ref = tildecomb; +} +); +width = 359; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I.ss02; +}, +{ +alignment = -1; +pos = (48,57); +ref = tildecomb; +} +); +width = 474; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (30,51); +ref = tildecomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (53,57); +ref = tildecomb; +} +); +width = 502; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (26,56); +ref = tildecomb; +} +); +width = 559; +}, +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (48,57); +ref = tildecomb; +} +); +width = 469; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (34,51); +ref = tildecomb; +} +); +width = 566; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-21,57); +ref = tildecomb; +} +); +width = 212; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-43,50); +ref = tildecomb; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (60,57); +ref = tildecomb; +} +); +width = 475; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (43,51); +ref = tildecomb; +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (65,57); +ref = tildecomb; +} +); +width = 522; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (45,51); +ref = tildecomb; +} +); +width = 589; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/J_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/J_.glyph new file mode 100644 index 00000000..263d1a18 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/J_.glyph @@ -0,0 +1,1130 @@ +{ +glyphname = J; +kernLeft = KO_J; +kernRight = KO_J; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (144,0); +}, +{ +name = top; +pos = (173,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,ls), +(200,0,o), +(266,59,o), +(266,185,cs), +(266,729,l), +(79,729,l), +(79,210,ls), +(79,165,o), +(71,143,o), +(40,143,cs), +(12,143,l), +(12,0,l) +); +} +); +width = 292; +}, +{ +anchors = ( +{ +name = bottom; +pos = (69,0); +}, +{ +name = top; +pos = (99,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(82,-6,o), +(114,17,o), +(114,88,cs), +(114,729,l), +(84,729,l), +(84,97,ls), +(84,45,o), +(74,21,o), +(34,21,cs), +(19,21,o), +(5,26,o), +(0,31,c), +(0,4,l), +(7,-2,o), +(21,-6,o), +(36,-6,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,0,ls), +(82,0,o), +(114,23,o), +(114,94,cs), +(114,729,l), +(83,729,l), +(83,103,ls), +(83,51,o), +(73,27,o), +(34,27,cs), +(0,27,l), +(0,0,l) +); +} +); +width = 178; +}, +{ +anchors = ( +{ +name = bottom; +pos = (183,0); +}, +{ +name = top; +pos = (341,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(233,-8,o), +(320,49,o), +(320,194,cs), +(320,729,l), +(282,729,l), +(282,201,ls), +(282,75,o), +(222,27,o), +(114,27,cs), +(69,27,o), +(38,36,o), +(16,50,c), +(16,13,l), +(37,1,o), +(69,-8,o), +(115,-8,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,0,ls), +(293,0,o), +(360,67,o), +(360,202,cs), +(360,729,l), +(322,729,l), +(322,203,ls), +(322,88,o), +(269,35,o), +(154,35,cs), +(16,35,l), +(16,0,l) +); +} +); +width = 425; +}, +{ +anchors = ( +{ +name = bottom; +pos = (215,0); +}, +{ +name = top; +pos = (319,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(312,-10,o), +(393,75,o), +(393,263,cs), +(393,729,l), +(165,729,l), +(165,276,ls), +(165,195,o), +(129,171,o), +(69,171,cs), +(42,171,o), +(17,176,o), +(4,182,c), +(4,7,l), +(28,-3,o), +(71,-10,o), +(123,-10,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,ls), +(360,0,o), +(433,82,o), +(433,229,cs), +(433,729,l), +(204,729,l), +(204,242,ls), +(204,198,o), +(186,179,o), +(142,179,cs), +(4,179,l), +(4,0,l) +); +} +); +width = 472; +}, +{ +anchors = ( +{ +name = bottom; +pos = (61,0); +}, +{ +name = top; +pos = (91,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(82,-6,o), +(114,17,o), +(114,88,cs), +(114,729,l), +(84,729,l), +(84,97,ls), +(84,45,o), +(74,21,o), +(34,21,cs), +(19,21,o), +(5,26,o), +(0,31,c), +(0,4,l), +(7,-2,o), +(21,-6,o), +(36,-6,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(28,0,ls), +(74,0,o), +(106,23,o), +(106,94,cs), +(106,729,l), +(75,729,l), +(75,103,ls), +(75,51,o), +(65,27,o), +(26,27,cs), +(-8,27,l), +(-8,0,l) +); +} +); +width = 146; +}, +{ +anchors = ( +{ +name = bottom; +pos = (135,0); +}, +{ +name = top; +pos = (164,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,0,ls), +(191,0,o), +(257,59,o), +(257,185,cs), +(257,729,l), +(70,729,l), +(70,210,ls), +(70,165,o), +(62,143,o), +(31,143,cs), +(3,143,l), +(3,0,l) +); +} +); +width = 273; +}, +{ +anchors = ( +{ +name = bottom; +pos = (178,0); +}, +{ +name = top; +pos = (246,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225,-8,o), +(290,44,o), +(290,162,cs), +(290,729,l), +(252,729,l), +(252,167,ls), +(252,66,o), +(200,27,o), +(115,27,cs), +(78,27,o), +(48,36,o), +(28,50,c), +(28,13,l), +(48,1,o), +(79,-8,o), +(117,-8,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(104,0,ls), +(217,0,o), +(265,57,o), +(265,170,cs), +(265,729,l), +(227,729,l), +(227,175,ls), +(227,81,o), +(198,35,o), +(104,35,cs), +(3,35,l), +(3,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 329; +}, +{ +anchors = ( +{ +name = bottom; +pos = (205,0); +}, +{ +name = top; +pos = (257,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(281,-7,o), +(380,59,o), +(380,227,cs), +(380,729,l), +(178,729,l), +(178,241,ls), +(178,187,o), +(153,158,o), +(88,158,cs), +(60,158,o), +(38,164,o), +(20,172,c), +(20,12,l), +(45,1,o), +(90,-7,o), +(133,-7,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,ls), +(284,0,o), +(358,74,o), +(358,221,cs), +(358,729,l), +(156,729,l), +(156,234,ls), +(156,178,o), +(132,156,o), +(76,156,cs), +(-2,156,l), +(-2,0,l) +); +} +); +width = 388; +}, +{ +anchors = ( +{ +name = bottom; +pos = (178,0); +}, +{ +name = top; +pos = (336,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(233,-8,o), +(320,49,o), +(320,194,cs), +(320,729,l), +(282,729,l), +(282,201,ls), +(282,75,o), +(222,27,o), +(114,27,cs), +(69,27,o), +(38,36,o), +(16,50,c), +(16,13,l), +(37,1,o), +(69,-8,o), +(115,-8,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,0,ls), +(288,0,o), +(355,67,o), +(355,202,cs), +(355,729,l), +(317,729,l), +(317,203,ls), +(317,88,o), +(264,35,o), +(149,35,cs), +(11,35,l), +(11,0,l) +); +} +); +width = 410; +}, +{ +anchors = ( +{ +name = bottom; +pos = (205,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(312,-10,o), +(393,75,o), +(393,263,cs), +(393,729,l), +(165,729,l), +(165,276,ls), +(165,195,o), +(129,171,o), +(69,171,cs), +(42,171,o), +(17,176,o), +(4,182,c), +(4,7,l), +(28,-3,o), +(71,-10,o), +(123,-10,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,ls), +(350,0,o), +(423,82,o), +(423,229,cs), +(423,729,l), +(194,729,l), +(194,242,ls), +(194,198,o), +(176,179,o), +(132,179,cs), +(-6,179,l), +(-6,0,l) +); +} +); +width = 447; +}, +{ +anchors = ( +{ +name = bottom; +pos = (202,0); +}, +{ +name = top; +pos = (268,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225,-8,o), +(290,44,o), +(290,162,cs), +(290,729,l), +(252,729,l), +(252,167,ls), +(252,66,o), +(200,27,o), +(115,27,cs), +(78,27,o), +(48,36,o), +(28,50,c), +(28,13,l), +(48,1,o), +(79,-8,o), +(117,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(130,0,ls), +(241,0,o), +(287,57,o), +(287,170,cs), +(287,729,l), +(250,729,l), +(250,175,ls), +(250,81,o), +(222,35,o), +(130,35,cs), +(31,35,l), +(31,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 375; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = top; +pos = (265,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(281,-7,o), +(380,59,o), +(380,227,cs), +(380,729,l), +(178,729,l), +(178,241,ls), +(178,187,o), +(153,158,o), +(88,158,cs), +(60,158,o), +(38,164,o), +(20,172,c), +(20,12,l), +(45,1,o), +(90,-7,o), +(133,-7,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(152,0,ls), +(294,0,o), +(365,74,o), +(365,221,cs), +(365,729,l), +(165,729,l), +(165,234,ls), +(165,178,o), +(143,156,o), +(91,156,cs), +(19,156,l), +(19,0,l) +); +} +); +width = 422; +}, +{ +anchors = ( +{ +name = bottom; +pos = (-39,0); +}, +{ +name = top; +pos = (197,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-42,-6,o), +(-2,15,o), +(13,88,cs), +(146,729,l), +(116,729,l), +(-16,97,ls), +(-27,44,o), +(-43,21,o), +(-81,21,cs), +(-92,21,o), +(-108,25,o), +(-113,31,c), +(-119,4,l), +(-113,-2,o), +(-99,-6,o), +(-84,-6,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-18,0,ls), +(28,0,o), +(65,23,o), +(80,94,cs), +(212,729,l), +(181,729,l), +(51,103,ls), +(40,49,o), +(24,27,o), +(-14,27,cs), +(-48,27,l), +(-54,0,l) +); +} +); +width = 178; +}, +{ +anchors = ( +{ +name = bottom; +pos = (32,0); +}, +{ +name = top; +pos = (267,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(98,-9,o), +(155,62,o), +(179,176,cs), +(294,729,l), +(110,729,l), +(1,210,ls), +(-8,170,o), +(-18,143,o), +(-50,143,cs), +(-58,143,o), +(-72,145,o), +(-77,154,c), +(-107,9,l), +(-89,-3,o), +(-59,-9,o), +(-24,-9,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,0,ls), +(143,0,o), +(220,59,o), +(246,185,cs), +(359,729,l), +(174,729,l), +(66,210,ls), +(57,165,o), +(44,143,o), +(14,143,cs), +(-14,143,l), +(-44,0,l) +); +} +); +width = 290; +}, +{ +anchors = ( +{ +name = bottom; +pos = (166,0); +}, +{ +name = top; +pos = (368,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(170,-8,o), +(247,47,o), +(270,164,cs), +(388,729,l), +(351,729,l), +(233,167,ls), +(213,68,o), +(154,27,o), +(73,27,cs), +(41,27,o), +(12,35,o), +(-4,50,c), +(-11,13,l), +(6,1,o), +(34,-8,o), +(68,-8,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,0,ls), +(177,0,o), +(245,39,o), +(272,170,cs), +(387,729,l), +(349,729,l), +(235,175,ls), +(215,81,o), +(177,35,o), +(83,35,cs), +(-18,35,l), +(-25,0,l) +); +} +); +width = 378; +}, +{ +anchors = ( +{ +name = bottom; +pos = (183,0); +}, +{ +name = top; +pos = (371,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,-10,o), +(323,28,o), +(365,226,cs), +(471,729,l), +(270,729,l), +(174,272,ls), +(154,176,o), +(125,157,o), +(66,157,cs), +(43,157,o), +(17,164,o), +(6,175,c), +(-27,15,l), +(-6,1,o), +(43,-10,o), +(93,-10,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(122,0,ls), +(244,0,o), +(329,43,o), +(366,221,cs), +(471,729,l), +(270,729,l), +(168,234,ls), +(155,170,o), +(128,156,o), +(72,156,cs), +(-6,156,l), +(-38,0,l) +); +} +); +width = 429; +}, +{ +anchors = ( +{ +name = bottom; +pos = (151,0); +}, +{ +name = top; +pos = (398,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(217,-10,o), +(287,59,o), +(317,201,cs), +(427,729,l), +(390,729,l), +(280,207,ls), +(252,71,o), +(192,25,o), +(91,25,cs), +(39,25,o), +(5,36,o), +(-17,54,c), +(-24,17,l), +(-4,2,o), +(32,-10,o), +(85,-10,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(200,0,o), +(278,57,o), +(308,202,cs), +(417,729,l), +(379,729,l), +(271,203,ls), +(247,88,o), +(190,35,o), +(68,35,cs), +(-30,35,l), +(-37,0,l) +); +} +); +width = 386; +}, +{ +anchors = ( +{ +name = bottom; +pos = (180,0); +}, +{ +name = top; +pos = (372,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(254,-10,o), +(359,50,o), +(401,252,cs), +(501,729,l), +(273,729,l), +(179,274,ls), +(166,209,o), +(136,173,o), +(71,173,cs), +(42,173,o), +(14,178,o), +(3,186,c), +(-34,12,l), +(-11,0,o), +(37,-10,o), +(99,-10,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,ls), +(262,0,o), +(352,82,o), +(382,229,cs), +(485,729,l), +(258,729,l), +(158,242,ls), +(149,198,o), +(127,179,o), +(83,179,cs), +(-15,179,l), +(-52,0,l) +); +} +); +width = 429; +} +); +unicode = 74; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/J_.ss10.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/J_.ss10.glyph new file mode 100644 index 00000000..8e19e89c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/J_.ss10.glyph @@ -0,0 +1,1187 @@ +{ +glyphname = J.ss10; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (224,0); +}, +{ +name = top; +pos = (224,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(358,-10,o), +(446,50,o), +(446,206,cs), +(446,309,o), +(407,372,o), +(315,426,cs), +(268,455,ls), +(222,484,o), +(210,506,o), +(210,545,cs), +(210,576,o), +(216,594,o), +(238,594,cs), +(259,594,o), +(270,577,o), +(269,508,c), +(440,508,l), +(440,664,o), +(356,738,o), +(234,738,cs), +(104,738,o), +(17,678,o), +(17,522,cs), +(17,420,o), +(63,357,o), +(132,315,cs), +(183,284,ls), +(241,248,o), +(251,220,o), +(251,187,cs), +(251,155,o), +(245,137,o), +(221,137,cs), +(197,137,o), +(184,156,o), +(184,231,c), +(14,231,l), +(14,77,o), +(93,-10,o), +(227,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,-10,o), +(439,58,o), +(439,202,cs), +(439,729,l), +(255,729,l), +(255,191,ls), +(255,159,o), +(247,140,o), +(223,140,cs), +(200,140,o), +(188,161,o), +(188,231,c), +(14,231,l), +(14,86,o), +(73,-10,o), +(223,-10,cs) +); +} +); +width = 464; +}, +{ +anchors = ( +{ +name = bottom; +pos = (173,0); +}, +{ +name = top; +pos = (162,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,-8,o), +(303,52,o), +(303,180,cs), +(303,729,l), +(272,729,l), +(272,182,ls), +(272,73,o), +(240,22,o), +(171,22,cs), +(96,22,o), +(63,84,o), +(61,215,c), +(29,215,l), +(32,63,o), +(78,-8,o), +(173,-8,cs) +); +} +); +width = 361; +}, +{ +anchors = ( +{ +name = bottom; +pos = (361,0); +}, +{ +name = top; +pos = (342,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(546,-8,o), +(647,63,o), +(647,222,cs), +(647,729,l), +(609,729,l), +(609,221,ls), +(609,84,o), +(522,26,o), +(355,26,cs), +(182,26,o), +(79,89,o), +(72,225,c), +(30,225,l), +(39,86,o), +(134,-8,o), +(355,-8,cs) +); +} +); +width = 707; +}, +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = top; +pos = (382,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(721,78,o), +(721,246,cs), +(721,729,l), +(492,729,l), +(492,247,ls), +(492,191,o), +(456,165,o), +(380,165,cs), +(295,165,o), +(248,191,o), +(246,239,c), +(9,239,l), +(14,92,o), +(144,-10,o), +(377,-10,cs) +); +} +); +width = 754; +}, +{ +anchors = ( +{ +name = bottom; +pos = (142,0); +}, +{ +name = top; +pos = (131,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,-8,o), +(284,52,o), +(284,180,cs), +(284,729,l), +(253,729,l), +(253,182,ls), +(253,73,o), +(221,22,o), +(152,22,cs), +(77,22,o), +(45,84,o), +(42,215,c), +(10,215,l), +(13,63,o), +(59,-8,o), +(154,-8,cs) +); +} +); +width = 324; +}, +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (218,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(449,50,o), +(449,206,cs), +(449,309,o), +(410,372,o), +(318,426,cs), +(271,455,ls), +(225,484,o), +(213,506,o), +(213,545,cs), +(213,576,o), +(219,594,o), +(241,594,cs), +(262,594,o), +(273,577,o), +(272,508,c), +(443,508,l), +(443,664,o), +(359,738,o), +(237,738,cs), +(107,738,o), +(20,678,o), +(20,522,cs), +(20,420,o), +(66,357,o), +(135,315,cs), +(186,284,ls), +(244,248,o), +(254,220,o), +(254,187,cs), +(254,155,o), +(248,137,o), +(224,137,cs), +(200,137,o), +(187,156,o), +(187,231,c), +(17,231,l), +(17,77,o), +(96,-10,o), +(230,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,-10,o), +(431,65,o), +(431,202,cs), +(431,729,l), +(245,729,l), +(245,195,ls), +(245,165,o), +(236,150,o), +(219,150,cs), +(195,150,o), +(184,176,o), +(182,241,c), +(4,241,l), +(6,70,o), +(81,-10,o), +(223,-10,cs) +); +} +); +width = 446; +}, +{ +anchors = ( +{ +name = bottom; +pos = (301,0); +}, +{ +name = top; +pos = (288,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(478,-8,o), +(584,69,o), +(584,195,cs), +(584,340,o), +(458,372,o), +(396,385,cs), +(280,408,ls), +(218,420,o), +(108,448,o), +(108,555,cs), +(108,646,o), +(187,703,o), +(308,703,cs), +(439,703,o), +(515,641,o), +(519,529,c), +(559,529,l), +(556,654,o), +(473,737,o), +(312,737,cs), +(165,737,o), +(68,664,o), +(68,550,cs), +(68,419,o), +(194,387,o), +(274,370,cs), +(392,345,ls), +(441,335,o), +(544,313,o), +(544,193,cs), +(544,93,o), +(456,26,o), +(319,26,cs), +(165,26,o), +(95,102,o), +(91,225,c), +(50,225,l), +(53,90,o), +(134,-8,o), +(321,-8,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,-8,o), +(564,67,o), +(564,205,cs), +(564,729,l), +(526,729,l), +(526,203,ls), +(526,84,o), +(451,26,o), +(314,26,cs), +(153,26,o), +(75,102,o), +(68,227,c), +(27,227,l), +(33,90,o), +(120,-8,o), +(314,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +32 +); +stem = -2; +target = ( +0, +39 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 594; +}, +{ +anchors = ( +{ +name = bottom; +pos = (319,0); +}, +{ +name = top; +pos = (319,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(553,-10,o), +(656,87,o), +(656,224,cs), +(656,410,o), +(523,441,o), +(405,458,cs), +(294,475,o), +(254,478,o), +(254,528,cs), +(254,563,o), +(287,584,o), +(337,584,cs), +(379,584,o), +(423,570,o), +(426,518,c), +(635,518,l), +(635,650,o), +(517,738,o), +(342,738,cs), +(155,738,o), +(39,650,o), +(39,501,cs), +(39,358,o), +(145,301,o), +(294,279,cs), +(406,262,o), +(440,257,o), +(440,203,cs), +(440,166,o), +(404,147,o), +(349,147,cs), +(267,147,o), +(235,181,o), +(235,231,c), +(24,231,l), +(24,86,o), +(136,-10,o), +(339,-10,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(527,-10,o), +(626,73,o), +(626,248,cs), +(626,729,l), +(423,729,l), +(423,237,ls), +(423,186,o), +(392,162,o), +(326,162,cs), +(250,162,o), +(210,187,o), +(207,242,c), +(1,242,l), +(2,86,o), +(114,-10,o), +(317,-10,cs) +); +} +); +width = 647; +}, +{ +anchors = ( +{ +name = bottom; +pos = (341,0); +}, +{ +name = top; +pos = (322,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-8,o), +(637,63,o), +(637,212,cs), +(637,729,l), +(599,729,l), +(599,211,ls), +(599,84,o), +(512,26,o), +(345,26,cs), +(172,26,o), +(69,89,o), +(62,225,c), +(20,225,l), +(29,86,o), +(124,-8,o), +(345,-8,cs) +); +} +); +width = 687; +}, +{ +anchors = ( +{ +name = bottom; +pos = (362,0); +}, +{ +name = top; +pos = (359,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(593,-10,o), +(712,78,o), +(712,246,cs), +(712,729,l), +(483,729,l), +(483,247,ls), +(483,191,o), +(447,165,o), +(371,165,cs), +(285,165,o), +(237,191,o), +(235,239,c), +(0,239,l), +(5,92,o), +(135,-10,o), +(368,-10,cs) +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +pos = (300,0); +}, +{ +name = top; +pos = (287,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(460,-8,o), +(566,69,o), +(566,195,cs), +(566,340,o), +(440,372,o), +(378,385,cs), +(262,408,ls), +(200,420,o), +(90,448,o), +(90,555,cs), +(90,646,o), +(169,703,o), +(290,703,cs), +(421,703,o), +(497,641,o), +(501,529,c), +(541,529,l), +(538,654,o), +(455,737,o), +(294,737,cs), +(147,737,o), +(50,664,o), +(50,550,cs), +(50,419,o), +(176,387,o), +(256,370,cs), +(374,345,ls), +(423,335,o), +(526,313,o), +(526,193,cs), +(526,93,o), +(438,26,o), +(301,26,cs), +(147,26,o), +(77,102,o), +(73,225,c), +(32,225,l), +(35,90,o), +(116,-8,o), +(303,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(440,-8,o), +(523,65,o), +(523,207,cs), +(523,729,l), +(485,729,l), +(485,205,ls), +(485,85,o), +(416,26,o), +(301,26,cs), +(180,26,o), +(117,89,o), +(106,193,c), +(64,193,l), +(77,74,o), +(151,-8,o), +(303,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +32 +); +stem = -2; +target = ( +0, +39 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 610; +}, +{ +anchors = ( +{ +name = bottom; +pos = (279,0); +}, +{ +name = top; +pos = (269,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(490,-10,o), +(593,87,o), +(593,224,cs), +(593,410,o), +(460,441,o), +(342,458,cs), +(231,475,o), +(191,478,o), +(191,528,cs), +(191,563,o), +(224,584,o), +(274,584,cs), +(316,584,o), +(360,570,o), +(363,518,c), +(572,518,l), +(572,650,o), +(454,738,o), +(279,738,cs), +(92,738,o), +(-24,650,o), +(-24,501,cs), +(-24,358,o), +(82,301,o), +(231,279,cs), +(343,262,o), +(377,257,o), +(377,203,cs), +(377,166,o), +(341,147,o), +(286,147,cs), +(204,147,o), +(172,181,o), +(172,231,c), +(-39,231,l), +(-39,86,o), +(73,-10,o), +(276,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(473,-10,o), +(569,78,o), +(569,238,cs), +(569,729,l), +(368,729,l), +(368,225,ls), +(368,178,o), +(345,154,o), +(298,154,cs), +(252,154,o), +(231,178,o), +(227,219,c), +(23,219,l), +(27,79,o), +(121,-10,o), +(299,-10,cs) +); +} +); +width = 621; +}, +{ +anchors = ( +{ +name = bottom; +pos = (152,0); +}, +{ +name = top; +pos = (268,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(275,-8,o), +(327,101,o), +(327,206,cs), +(327,268,o), +(295,325,o), +(233,375,cs), +(192,408,o), +(136,448,o), +(136,527,cs), +(136,637,o), +(188,705,o), +(263,705,cs), +(345,705,o), +(378,654,o), +(356,530,c), +(389,530,l), +(411,654,o), +(374,736,o), +(266,736,cs), +(147,736,o), +(104,630,o), +(104,523,cs), +(104,437,o), +(153,397,o), +(202,357,cs), +(244,323,o), +(294,281,o), +(294,208,cs), +(294,122,o), +(259,22,o), +(155,22,cs), +(48,22,o), +(34,111,o), +(56,225,c), +(23,225,l), +(-2,86,o), +(28,-8,o), +(155,-8,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,-8,o), +(304,64,o), +(323,157,cs), +(438,729,l), +(405,729,l), +(291,164,ls), +(275,85,o), +(238,22,o), +(155,22,cs), +(48,22,o), +(34,111,o), +(56,225,c), +(23,225,l), +(-2,86,o), +(28,-8,o), +(155,-8,cs) +); +} +); +width = 373; +}, +{ +anchors = ( +{ +name = bottom; +pos = (182,0); +}, +{ +name = top; +pos = (306,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,-10,o), +(375,57,o), +(404,195,cs), +(515,729,l), +(336,729,l), +(223,187,ls), +(216,153,o), +(207,136,o), +(184,136,cs), +(148,136,o), +(155,196,o), +(160,231,c), +(5,231,l), +(-21,77,o), +(33,-10,o), +(180,-10,cs) +); +} +); +width = 445; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (374,729); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (374,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(439,-10,o), +(551,72,o), +(556,202,cs), +(559,307,o), +(498,360,o), +(358,392,cs), +(221,423,o), +(165,468,o), +(168,547,cs), +(171,642,o), +(257,702,o), +(368,702,cs), +(487,702,o), +(565,634,o), +(562,529,c), +(601,529,l), +(605,660,o), +(512,739,o), +(373,739,cs), +(234,739,o), +(130,663,o), +(126,544,cs), +(122,445,o), +(184,396,o), +(352,355,cs), +(464,328,o), +(518,287,o), +(515,198,cs), +(511,94,o), +(422,26,o), +(291,26,cs), +(158,26,o), +(77,97,o), +(81,224,c), +(42,224,l), +(33,83,o), +(122,-10,o), +(296,-10,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-10,o), +(526,50,o), +(550,162,cs), +(673,729,l), +(635,729,l), +(512,166,ls), +(490,66,o), +(410,26,o), +(291,26,cs), +(158,26,o), +(77,97,o), +(81,224,c), +(42,224,l), +(33,83,o), +(122,-10,o), +(296,-10,cs) +); +} +); +width = 659; +}, +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = top; +pos = (394,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,-10,o), +(590,62,o), +(616,188,cs), +(729,729,l), +(520,729,l), +(410,222,ls), +(401,178,o), +(369,155,o), +(316,155,cs), +(249,155,o), +(210,186,o), +(212,235,c), +(15,235,l), +(6,82,o), +(114,-10,o), +(302,-10,cs) +); +} +); +width = 657; +}, +{ +anchors = ( +{ +name = bottom; +pos = (330,0); +}, +{ +name = top; +pos = (394,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(495,-10,o), +(599,60,o), +(630,206,cs), +(740,729,l), +(703,729,l), +(591,210,ls), +(563,82,o), +(480,24,o), +(338,24,cs), +(169,24,o), +(56,94,o), +(62,220,c), +(21,220,l), +(17,80,o), +(128,-10,o), +(338,-10,cs) +); +} +); +width = 704; +}, +{ +anchors = ( +{ +name = bottom; +pos = (364,0); +}, +{ +name = top; +pos = (441,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(559,-10,o), +(676,58,o), +(706,197,cs), +(820,729,l), +(593,729,l), +(492,253,ls), +(480,195,o), +(437,168,o), +(363,168,cs), +(281,168,o), +(238,196,o), +(240,242,c), +(2,242,l), +(-2,86,o), +(128,-10,o), +(355,-10,cs) +); +} +); +width = 760; +} +); +metricLeft = S; +metricRight = U; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/J_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/J_acute.glyph new file mode 100644 index 00000000..26db1840 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/J_acute.glyph @@ -0,0 +1,241 @@ +{ +color = 6; +glyphname = Jacute; +kernRight = KO_J; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = J; +}, +{ +pos = (43,57); +ref = acutecomb; +} +); +width = 178; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = J; +}, +{ +pos = (61,51); +ref = acutecomb; +} +); +width = 292; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = J; +}, +{ +pos = (283,57); +ref = acutecomb; +} +); +width = 425; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = J; +}, +{ +pos = (202,56); +ref = acutecomb; +} +); +width = 472; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = J; +}, +{ +pos = (55,57); +ref = acutecomb; +} +); +width = 146; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = J; +}, +{ +pos = (62,51); +ref = acutecomb; +} +); +width = 273; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = J; +}, +{ +pos = (211,57); +ref = acutecomb; +} +); +width = 329; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = J; +}, +{ +pos = (166,51); +ref = acutecomb; +} +); +width = 388; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = J; +}, +{ +pos = (288,57); +ref = acutecomb; +} +); +width = 410; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = J; +}, +{ +pos = (202,56); +ref = acutecomb; +} +); +width = 447; +}, +{ +layerId = m019; +shapes = ( +{ +ref = J; +}, +{ +pos = (212,57); +ref = acutecomb; +} +); +width = 375; +}, +{ +layerId = m020; +shapes = ( +{ +ref = J; +}, +{ +pos = (155,51); +ref = acutecomb; +} +); +width = 422; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = J; +}, +{ +pos = (56,57); +ref = acutecomb; +} +); +width = 178; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = J; +}, +{ +pos = (72,51); +ref = acutecomb; +} +); +width = 290; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = J; +}, +{ +pos = (226,57); +ref = acutecomb; +} +); +width = 378; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = J; +}, +{ +pos = (176,51); +ref = acutecomb; +} +); +width = 429; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = J; +}, +{ +pos = (255,57); +ref = acutecomb; +} +); +width = 386; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = J; +}, +{ +pos = (172,56); +ref = acutecomb; +} +); +width = 429; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/J_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/J_circumflex.glyph new file mode 100644 index 00000000..14958601 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/J_circumflex.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Jcircumflex; +kernLeft = KO_J; +kernRight = KO_J; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = J; +}, +{ +pos = (-30,57); +ref = circumflexcomb; +} +); +width = 178; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = J; +}, +{ +pos = (-44,51); +ref = circumflexcomb; +} +); +width = 292; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = J; +}, +{ +pos = (162,57); +ref = circumflexcomb; +} +); +width = 425; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = J; +}, +{ +pos = (28,56); +ref = circumflexcomb; +} +); +width = 472; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = J; +}, +{ +pos = (-18,57); +ref = circumflexcomb; +} +); +width = 146; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = J; +}, +{ +pos = (-43,51); +ref = circumflexcomb; +} +); +width = 273; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = J; +}, +{ +pos = (102,57); +ref = circumflexcomb; +} +); +width = 329; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = J; +}, +{ +pos = (31,51); +ref = circumflexcomb; +} +); +width = 388; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = J; +}, +{ +pos = (167,57); +ref = circumflexcomb; +} +); +width = 410; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = J; +}, +{ +pos = (28,56); +ref = circumflexcomb; +} +); +width = 447; +}, +{ +layerId = m019; +shapes = ( +{ +ref = J; +}, +{ +pos = (105,57); +ref = circumflexcomb; +} +); +width = 375; +}, +{ +layerId = m020; +shapes = ( +{ +ref = J; +}, +{ +pos = (26,51); +ref = circumflexcomb; +} +); +width = 422; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = J; +}, +{ +pos = (-18,57); +ref = circumflexcomb; +} +); +width = 178; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = J; +}, +{ +pos = (-35,51); +ref = circumflexcomb; +} +); +width = 290; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = J; +}, +{ +pos = (116,57); +ref = circumflexcomb; +} +); +width = 378; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = J; +}, +{ +pos = (42,51); +ref = circumflexcomb; +} +); +width = 429; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = J; +}, +{ +pos = (132,57); +ref = circumflexcomb; +} +); +width = 386; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = J; +}, +{ +pos = (-4,56); +ref = circumflexcomb; +} +); +width = 429; +} +); +unicode = 308; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/K_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/K_.glyph new file mode 100644 index 00000000..5ee394bc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/K_.glyph @@ -0,0 +1,923 @@ +{ +glyphname = K; +kernLeft = KO_H; +kernRight = KO_K; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = top; +pos = (256,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,159,l), +(336,249,l), +(501,0,l), +(747,0,l), +(474,414,l), +(737,729,l), +(487,729,l), +(261,445,l), +(261,729,l), +(58,729,l), +(58,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(488,0,l), +(378,428,l), +(489,729,l), +(297,729,l), +(212,401,l), +(212,152,l), +(247,274,l), +(295,0,l) +); +}, +{ +closed = 1; +nodes = ( +(216,0,l), +(216,729,l), +(29,729,l), +(29,0,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (187,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,0,l), +(190,426,l), +(355,729,l), +(321,729,l), +(90,298,l), +(90,247,l), +(171,395,l), +(328,0,l) +); +}, +{ +closed = 1; +nodes = ( +(97,0,l), +(97,729,l), +(66,729,l), +(66,0,l) +); +} +); +width = 370; +}, +{ +anchors = ( +{ +name = bottom; +pos = (349,0); +}, +{ +name = top; +pos = (349,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,176,l), +(322,385,l), +(633,0,l), +(680,0,l), +(349,411,l), +(673,729,l), +(625,729,l), +(108,221,l), +(108,729,l), +(72,729,l), +(72,0,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(680,0,l), +(338,412,l), +(673,729,l), +(623,729,l), +(99,233,l), +(99,188,l), +(309,386,l), +(631,0,l) +); +}, +{ +closed = 1; +nodes = ( +(110,0,l), +(110,729,l), +(72,729,l), +(72,0,l) +); +} +); +width = 696; +}, +{ +anchors = ( +{ +name = bottom; +pos = (431,0); +}, +{ +name = top; +pos = (431,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(875,0,l), +(546,428,l), +(851,729,l), +(556,729,l), +(265,415,l), +(265,149,l), +(383,273,l), +(586,0,l) +); +}, +{ +closed = 1; +nodes = ( +(276,0,l), +(276,729,l), +(47,729,l), +(47,0,l) +); +} +); +width = 867; +}, +{ +anchors = ( +{ +name = bottom; +pos = (163,0); +}, +{ +name = top; +pos = (163,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,0,l), +(169,454,l), +(323,729,l), +(288,729,l), +(66,334,l), +(66,279,l), +(147,420,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(73,0,l), +(73,729,l), +(42,729,l), +(42,0,l) +); +} +); +width = 328; +}, +{ +anchors = ( +{ +name = bottom; +pos = (245,0); +}, +{ +name = top; +pos = (245,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,159,l), +(336,249,l), +(501,0,l), +(747,0,l), +(474,414,l), +(737,729,l), +(487,729,l), +(261,445,l), +(261,729,l), +(58,729,l), +(58,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(475,0,l), +(363,426,l), +(476,729,l), +(290,729,l), +(201,451,l), +(201,147,l), +(232,252,l), +(284,0,l) +); +}, +{ +closed = 1; +nodes = ( +(205,0,l), +(205,729,l), +(18,729,l), +(18,0,l) +); +} +); +width = 479; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = top; +pos = (295,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(594,0,l), +(289,426,l), +(585,729,l), +(535,729,l), +(99,282,l), +(99,231,l), +(262,398,l), +(546,0,l) +); +}, +{ +closed = 1; +nodes = ( +(108,0,l), +(108,729,l), +(70,729,l), +(70,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 598; +}, +{ +anchors = ( +{ +name = bottom; +pos = (341,0); +}, +{ +name = top; +pos = (341,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262,0,l), +(262,163,l), +(349,273,l), +(506,0,l), +(746,0,l), +(488,420,l), +(735,729,l), +(496,729,l), +(262,417,l), +(262,729,l), +(59,729,l), +(59,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(713,0,l), +(453,427,l), +(711,729,l), +(471,729,l), +(223,418,l), +(223,174,l), +(314,280,l), +(474,0,l) +); +}, +{ +closed = 1; +nodes = ( +(233,0,l), +(233,729,l), +(30,729,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 707; +}, +{ +anchors = ( +{ +name = bottom; +pos = (339,0); +}, +{ +name = top; +pos = (339,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,176,l), +(322,385,l), +(633,0,l), +(680,0,l), +(349,411,l), +(673,729,l), +(625,729,l), +(108,221,l), +(108,729,l), +(72,729,l), +(72,0,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(698,0,l), +(329,430,l), +(634,729,l), +(579,729,l), +(89,250,l), +(89,196,l), +(299,402,l), +(645,0,l) +); +}, +{ +closed = 1; +nodes = ( +(100,0,l), +(100,729,l), +(62,729,l), +(62,0,l) +); +} +); +width = 689; +}, +{ +anchors = ( +{ +name = bottom; +pos = (416,0); +}, +{ +name = top; +pos = (416,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(860,0,l), +(531,428,l), +(836,729,l), +(541,729,l), +(250,415,l), +(250,149,l), +(368,273,l), +(571,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,0,l), +(261,729,l), +(32,729,l), +(32,0,l) +); +} +); +width = 842; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = top; +pos = (316,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(608,0,l), +(309,425,l), +(600,729,l), +(549,729,l), +(124,282,l), +(124,231,l), +(283,398,l), +(561,0,l) +); +}, +{ +closed = 1; +nodes = ( +(133,0,l), +(133,729,l), +(95,729,l), +(95,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (366,0); +}, +{ +name = top; +pos = (366,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,l), +(267,163,l), +(354,273,l), +(511,0,l), +(751,0,l), +(493,420,l), +(740,729,l), +(501,729,l), +(267,417,l), +(267,729,l), +(64,729,l), +(64,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(729,0,l), +(478,427,l), +(727,729,l), +(489,729,l), +(253,408,l), +(253,174,l), +(341,280,l), +(492,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,0,l), +(263,729,l), +(62,729,l), +(62,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 738; +}, +{ +anchors = ( +{ +name = bottom; +pos = (143,0); +}, +{ +name = top; +pos = (294,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,0,l), +(224,424,l), +(449,729,l), +(414,729,l), +(97,296,l), +(84,234,l), +(201,392,l), +(273,0,l) +); +}, +{ +closed = 1; +nodes = ( +(43,0,l), +(194,729,l), +(163,729,l), +(12,0,l) +); +} +); +width = 366; +}, +{ +anchors = ( +{ +name = bottom; +pos = (206,0); +}, +{ +name = top; +pos = (357,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(427,0,l), +(407,428,l), +(579,729,l), +(389,729,l), +(236,401,l), +(183,151,l), +(245,274,l), +(236,0,l) +); +}, +{ +closed = 1; +nodes = ( +(158,0,l), +(310,729,l), +(125,729,l), +(-27,0,l) +); +} +); +width = 494; +}, +{ +anchors = ( +{ +name = bottom; +pos = (261,0); +}, +{ +name = top; +pos = (412,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(557,0,l), +(345,425,l), +(702,729,l), +(647,729,l), +(128,283,l), +(117,233,l), +(316,401,l), +(516,0,l) +); +}, +{ +closed = 1; +nodes = ( +(77,0,l), +(229,729,l), +(191,729,l), +(40,0,l) +); +} +); +width = 641; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = top; +pos = (467,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(675,0,l), +(494,421,l), +(816,729,l), +(569,729,l), +(286,439,l), +(231,181,l), +(341,283,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(204,0,l), +(355,729,l), +(154,729,l), +(3,0,l) +); +} +); +width = 741; +}, +{ +anchors = ( +{ +name = bottom; +pos = (301,0); +}, +{ +name = top; +pos = (452,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(618,0,l), +(378,410,l), +(762,729,l), +(708,729,l), +(91,217,l), +(80,166,l), +(349,387,l), +(574,0,l) +); +}, +{ +closed = 1; +nodes = ( +(56,0,l), +(207,729,l), +(169,729,l), +(18,0,l) +); +} +); +width = 688; +}, +{ +anchors = ( +{ +name = bottom; +pos = (381,0); +}, +{ +name = top; +pos = (532,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(810,0,l), +(572,419,l), +(930,729,l), +(639,729,l), +(295,419,l), +(241,160,l), +(391,286,l), +(546,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(369,729,l), +(142,729,l), +(-9,0,l) +); +} +); +width = 857; +} +); +metricLeft = H; +unicode = 75; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/K_commaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/K_commaaccent.glyph new file mode 100644 index 00000000..9aa8a1cd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/K_commaaccent.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Kcommaaccent; +kernRight = KO_K; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = K; +}, +{ +pos = (90,0); +ref = commaaccentcomb; +} +); +width = 370; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = K; +}, +{ +pos = (74,0); +ref = commaaccentcomb; +} +); +width = 499; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = K; +}, +{ +pos = (248,0); +ref = commaaccentcomb; +} +); +width = 696; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = K; +}, +{ +pos = (247,0); +ref = commaaccentcomb; +} +); +width = 867; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = K; +}, +{ +pos = (86,0); +ref = commaaccentcomb; +} +); +width = 328; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = K; +}, +{ +pos = (73,0); +ref = commaaccentcomb; +} +); +width = 479; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = K; +}, +{ +pos = (209,0); +ref = commaaccentcomb; +} +); +width = 598; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = K; +}, +{ +pos = (192,0); +ref = commaaccentcomb; +} +); +width = 707; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = K; +}, +{ +pos = (248,0); +ref = commaaccentcomb; +} +); +width = 689; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = K; +}, +{ +pos = (242,0); +ref = commaaccentcomb; +} +); +width = 842; +}, +{ +layerId = m019; +shapes = ( +{ +ref = K; +}, +{ +pos = (209,0); +ref = commaaccentcomb; +} +); +width = 640; +}, +{ +layerId = m020; +shapes = ( +{ +ref = K; +}, +{ +pos = (203,0); +ref = commaaccentcomb; +} +); +width = 738; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = K; +}, +{ +pos = (100,0); +ref = commaaccentcomb; +} +); +width = 366; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = K; +}, +{ +pos = (82,0); +ref = commaaccentcomb; +} +); +width = 494; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = K; +}, +{ +pos = (209,0); +ref = commaaccentcomb; +} +); +width = 641; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = K; +}, +{ +pos = (201,0); +ref = commaaccentcomb; +} +); +width = 741; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = K; +}, +{ +pos = (253,0); +ref = commaaccentcomb; +} +); +width = 688; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = K; +}, +{ +pos = (258,0); +ref = commaaccentcomb; +} +); +width = 857; +} +); +unicode = 310; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/L_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/L_.glyph new file mode 100644 index 00000000..03c9d449 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/L_.glyph @@ -0,0 +1,764 @@ +{ +glyphname = L; +kernLeft = KO_H; +kernRight = KO_L; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (182,0); +}, +{ +name = center; +pos = (276,365); +}, +{ +name = top; +pos = (123,729); +}, +{ +name = topright; +pos = (216,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(346,0,l), +(346,163,l), +(191,163,l), +(216,136,l), +(216,729,l), +(29,729,l), +(29,0,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = bottom; +pos = (142,0); +}, +{ +name = center; +pos = (192,365); +}, +{ +name = top; +pos = (82,729); +}, +{ +name = topright; +pos = (119,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,0,l), +(260,29,l), +(83,29,l), +(97,17,l), +(97,729,l), +(66,729,l), +(66,0,l) +); +} +); +width = 260; +}, +{ +anchors = ( +{ +name = bottom; +pos = (292,0); +}, +{ +name = center; +pos = (326,365); +}, +{ +name = top; +pos = (91,729); +}, +{ +name = topright; +pos = (229,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(560,0,l), +(560,37,l), +(92,37,l), +(110,23,l), +(110,729,l), +(72,729,l), +(72,0,l) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = center; +pos = (406,365); +}, +{ +name = top; +pos = (162,729); +}, +{ +name = topright; +pos = (296,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(606,0,l), +(606,186,l), +(231,186,l), +(276,141,l), +(276,729,l), +(47,729,l), +(47,0,l) +); +} +); +width = 611; +}, +{ +anchors = ( +{ +name = bottom; +pos = (118,0); +}, +{ +name = center; +pos = (168,365); +}, +{ +name = top; +pos = (58,729); +}, +{ +name = topright; +pos = (95,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,l), +(236,29,l), +(59,29,l), +(73,17,l), +(73,729,l), +(42,729,l), +(42,0,l) +); +} +); +width = 226; +}, +{ +anchors = ( +{ +name = bottom; +pos = (171,0); +}, +{ +name = center; +pos = (265,365); +}, +{ +name = top; +pos = (112,729); +}, +{ +name = topright; +pos = (205,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(335,163,l), +(180,163,l), +(205,136,l), +(205,729,l), +(18,729,l), +(18,0,l) +); +} +); +width = 339; +}, +{ +anchors = ( +{ +name = bottom; +pos = (234,0); +}, +{ +name = center; +pos = (290,365); +}, +{ +name = top; +pos = (89,729); +}, +{ +name = topright; +pos = (191,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(490,0,l), +(490,37,l), +(90,37,l), +(108,15,l), +(108,729,l), +(70,729,l), +(70,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 494; +}, +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = center; +pos = (352,365); +}, +{ +name = top; +pos = (132,729); +}, +{ +name = topright; +pos = (283,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(535,0,l), +(535,179,l), +(208,179,l), +(233,151,l), +(233,729,l), +(30,729,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 533; +}, +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = center; +pos = (316,365); +}, +{ +name = top; +pos = (81,729); +}, +{ +name = topright; +pos = (219,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(560,0,l), +(560,37,l), +(82,37,l), +(100,23,l), +(100,729,l), +(62,729,l), +(62,0,l) +); +} +); +width = 571; +}, +{ +anchors = ( +{ +name = bottom; +pos = (290,0); +}, +{ +name = center; +pos = (391,365); +}, +{ +name = top; +pos = (147,729); +}, +{ +name = topright; +pos = (281,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(611,0,l), +(611,186,l), +(216,186,l), +(261,141,l), +(261,729,l), +(32,729,l), +(32,0,l) +); +} +); +width = 611; +}, +{ +anchors = ( +{ +name = bottom; +pos = (335,0); +}, +{ +name = center; +pos = (321,365); +}, +{ +name = top; +pos = (124,729); +}, +{ +name = topright; +pos = (224,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(565,0,l), +(565,37,l), +(125,37,l), +(143,15,l), +(143,729,l), +(105,729,l), +(105,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (277,0); +}, +{ +name = center; +pos = (377,365); +}, +{ +name = top; +pos = (163,729); +}, +{ +name = topright; +pos = (311,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(572,0,l), +(572,179,l), +(240,179,l), +(263,151,l), +(263,729,l), +(62,729,l), +(62,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 590; +}, +{ +anchors = ( +{ +name = bottom; +pos = (98,0); +}, +{ +name = center; +pos = (173,365); +}, +{ +name = top; +pos = (179,729); +}, +{ +name = topright; +pos = (226,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(210,29,l), +(40,29,l), +(47,21,l), +(194,729,l), +(163,729,l), +(12,0,l) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = bottom; +pos = (137,0); +}, +{ +name = center; +pos = (291,365); +}, +{ +name = top; +pos = (218,729); +}, +{ +name = topright; +pos = (323,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,0,l), +(321,163,l), +(178,163,l), +(188,149,l), +(310,729,l), +(125,729,l), +(-27,0,l) +); +} +); +width = 356; +}, +{ +anchors = ( +{ +name = bottom; +pos = (207,0); +}, +{ +name = center; +pos = (330,365); +}, +{ +name = top; +pos = (210,729); +}, +{ +name = topright; +pos = (316,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(446,0,l), +(453,37,l), +(71,37,l), +(81,25,l), +(228,729,l), +(191,729,l), +(40,0,l) +); +} +); +width = 528; +}, +{ +anchors = ( +{ +name = bottom; +pos = (228,0); +}, +{ +name = center; +pos = (400,365); +}, +{ +name = top; +pos = (255,729); +}, +{ +name = topright; +pos = (383,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(493,0,l), +(530,179,l), +(230,179,l), +(239,168,l), +(355,729,l), +(154,729,l), +(3,0,l) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = bottom; +pos = (245,0); +}, +{ +name = center; +pos = (348,365); +}, +{ +name = top; +pos = (188,729); +}, +{ +name = topright; +pos = (321,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,0,l), +(506,36,l), +(54,36,l), +(62,28,l), +(207,729,l), +(169,729,l), +(18,0,l) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = bottom; +pos = (257,0); +}, +{ +name = center; +pos = (425,365); +}, +{ +name = top; +pos = (256,729); +}, +{ +name = topright; +pos = (393,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(544,0,l), +(583,186,l), +(212,186,l), +(248,142,l), +(369,729,l), +(142,729,l), +(-9,0,l) +); +} +); +width = 606; +} +); +metricLeft = H; +unicode = 76; +userData = { +KernOnName = L; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/L_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/L_acute.glyph new file mode 100644 index 00000000..656e10e2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/L_acute.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Lacute; +kernRight = KO_L; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = L; +}, +{ +pos = (26,57); +ref = acutecomb; +} +); +width = 260; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = L; +}, +{ +pos = (11,51); +ref = acutecomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = L; +}, +{ +pos = (33,57); +ref = acutecomb; +} +); +width = 576; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = L; +}, +{ +pos = (45,56); +ref = acutecomb; +} +); +width = 611; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = L; +}, +{ +pos = (22,57); +ref = acutecomb; +} +); +width = 226; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = L; +}, +{ +pos = (10,51); +ref = acutecomb; +} +); +width = 339; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = L; +}, +{ +pos = (54,57); +ref = acutecomb; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = L; +}, +{ +pos = (41,51); +ref = acutecomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = L; +}, +{ +pos = (33,57); +ref = acutecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = L; +}, +{ +pos = (40,56); +ref = acutecomb; +} +); +width = 611; +}, +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +pos = (68,57); +ref = acutecomb; +} +); +width = 574; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +pos = (53,51); +ref = acutecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = L; +}, +{ +pos = (38,57); +ref = acutecomb; +} +); +width = 257; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = L; +}, +{ +pos = (23,51); +ref = acutecomb; +} +); +width = 356; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = L; +}, +{ +pos = (68,57); +ref = acutecomb; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = L; +}, +{ +pos = (60,51); +ref = acutecomb; +} +); +width = 569; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = L; +}, +{ +pos = (45,57); +ref = acutecomb; +} +); +width = 569; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = L; +}, +{ +pos = (56,56); +ref = acutecomb; +} +); +width = 606; +} +); +unicode = 313; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/L_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/L_caron.glyph new file mode 100644 index 00000000..2e7346bb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/L_caron.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Lcaron; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = L; +}, +{ +pos = (128,0); +ref = caroncomb.alt; +} +); +width = 260; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = L; +}, +{ +pos = (195,0); +ref = caroncomb.alt; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = L; +}, +{ +pos = (257,0); +ref = caroncomb.alt; +} +); +width = 576; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = L; +}, +{ +pos = (286,0); +ref = caroncomb.alt; +} +); +width = 611; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = L; +}, +{ +pos = (124,0); +ref = caroncomb.alt; +} +); +width = 226; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = L; +}, +{ +pos = (194,0); +ref = caroncomb.alt; +} +); +width = 339; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = L; +}, +{ +pos = (229,0); +ref = caroncomb.alt; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = L; +}, +{ +pos = (283,0); +ref = caroncomb.alt; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = L; +}, +{ +pos = (257,0); +ref = caroncomb.alt; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = L; +}, +{ +pos = (281,0); +ref = caroncomb.alt; +} +); +width = 611; +}, +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +pos = (245,0); +ref = caroncomb.alt; +} +); +width = 574; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +pos = (288,0); +ref = caroncomb.alt; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = L; +}, +{ +pos = (138,0); +ref = caroncomb.alt; +} +); +width = 257; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = L; +}, +{ +pos = (206,0); +ref = caroncomb.alt; +} +); +width = 356; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = L; +}, +{ +pos = (237,0); +ref = caroncomb.alt; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = L; +}, +{ +pos = (276,0); +ref = caroncomb.alt; +} +); +width = 569; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = L; +}, +{ +pos = (252,0); +ref = caroncomb.alt; +} +); +width = 569; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = L; +}, +{ +pos = (288,0); +ref = caroncomb.alt; +} +); +width = 606; +} +); +unicode = 317; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/L_commaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/L_commaaccent.glyph new file mode 100644 index 00000000..44e86f03 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/L_commaaccent.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Lcommaaccent; +kernLeft = KO_H; +kernRight = KO_L; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = L; +}, +{ +pos = (45,0); +ref = commaaccentcomb; +} +); +width = 260; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = L; +}, +{ +ref = commaaccentcomb; +} +); +width = 359; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = L; +}, +{ +pos = (191,0); +ref = commaaccentcomb; +} +); +width = 576; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = L; +}, +{ +pos = (121,0); +ref = commaaccentcomb; +} +); +width = 611; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = L; +}, +{ +pos = (41,0); +ref = commaaccentcomb; +} +); +width = 226; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = L; +}, +{ +pos = (-1,0); +ref = commaaccentcomb; +} +); +width = 339; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = L; +}, +{ +pos = (148,0); +ref = commaaccentcomb; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = L; +}, +{ +pos = (103,0); +ref = commaaccentcomb; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = L; +}, +{ +pos = (191,0); +ref = commaaccentcomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = L; +}, +{ +pos = (116,0); +ref = commaaccentcomb; +} +); +width = 611; +}, +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +pos = (228,0); +ref = commaaccentcomb; +} +); +width = 574; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +pos = (114,0); +ref = commaaccentcomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = L; +}, +{ +pos = (55,0); +ref = commaaccentcomb; +} +); +width = 257; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = L; +}, +{ +pos = (13,0); +ref = commaaccentcomb; +} +); +width = 356; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = L; +}, +{ +pos = (155,0); +ref = commaaccentcomb; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = L; +}, +{ +pos = (113,0); +ref = commaaccentcomb; +} +); +width = 569; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = L; +}, +{ +pos = (197,0); +ref = commaaccentcomb; +} +); +width = 569; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = L; +}, +{ +pos = (134,0); +ref = commaaccentcomb; +} +); +width = 606; +} +); +unicode = 315; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/L_dot.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/L_dot.glyph new file mode 100644 index 00000000..4436bdac --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/L_dot.glyph @@ -0,0 +1,265 @@ +{ +color = 6; +glyphname = Ldot; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (260,0); +ref = periodcentered.loclCAT.case; +} +); +width = 260; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (359,0); +ref = periodcentered.loclCAT.case; +} +); +width = 409; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (576,0); +ref = periodcentered.loclCAT.case; +} +); +width = 576; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (611,0); +ref = periodcentered.loclCAT.case; +} +); +width = 611; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (226,0); +ref = periodcentered.loclCAT.case; +} +); +width = 238; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (339,0); +ref = periodcentered.loclCAT.case; +} +); +width = 379; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (494,0); +ref = periodcentered.loclCAT.case; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (533,0); +ref = periodcentered.loclCAT.case; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (571,0); +ref = periodcentered.loclCAT.case; +} +); +width = 596; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (611,0); +ref = periodcentered.loclCAT.case; +} +); +width = 616; +}, +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (574,0); +ref = periodcentered.loclCAT.case; +} +); +width = 579; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (590,0); +ref = periodcentered.loclCAT.case; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (257,0); +ref = periodcentered.loclCAT.case; +} +); +width = 257; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (356,0); +ref = periodcentered.loclCAT.case; +} +); +width = 419; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (528,0); +ref = periodcentered.loclCAT.case; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (569,0); +ref = periodcentered.loclCAT.case; +} +); +width = 569; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (569,0); +ref = periodcentered.loclCAT.case; +} +); +width = 569; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (606,0); +ref = periodcentered.loclCAT.case; +} +); +width = 606; +} +); +unicode = 319; +userData = { +KernOnSpecialSpacing = { +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/L_dot.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/L_dot.ss01.glyph new file mode 100644 index 00000000..01983351 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/L_dot.ss01.glyph @@ -0,0 +1,259 @@ +{ +color = 6; +glyphname = Ldot.ss01; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (260,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 260; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (359,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 406; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (576,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 576; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (611,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 611; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (226,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 238; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (339,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 376; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (494,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (533,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 533; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (571,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 596; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (611,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 616; +}, +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (574,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 579; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (590,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (257,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 257; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (356,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 410; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (528,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (569,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 569; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (569,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 569; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (606,0); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 606; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/L_slash.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/L_slash.glyph new file mode 100644 index 00000000..95475550 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/L_slash.glyph @@ -0,0 +1,279 @@ +{ +color = 7; +glyphname = Lslash; +kernRight = KO_Lslash; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +pos = (8,0); +ref = L; +}, +{ +pos = (-28,23); +ref = slashshortcomb.case; +} +); +width = 268; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +pos = (15,0); +ref = L; +}, +{ +pos = (-27,-38); +ref = slashshortcomb.case; +} +); +width = 374; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +pos = (53,0); +ref = L; +}, +{ +pos = (-21,71); +ref = slashshortcomb.case; +} +); +width = 629; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = L; +}, +{ +pos = (-33,70); +ref = slashshortcomb.case; +} +); +width = 629; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (8,0); +ref = L; +}, +{ +pos = (-32,23); +ref = slashshortcomb.case; +} +); +width = 228; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (15,0); +ref = L; +}, +{ +pos = (-28,-38); +ref = slashshortcomb.case; +} +); +width = 354; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (33,0); +ref = L; +}, +{ +pos = (-12,25); +ref = slashshortcomb.case; +} +); +width = 536; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (28,0); +ref = L; +}, +{ +pos = (-26,60); +ref = slashshortcomb.case; +} +); +width = 560; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (53,0); +ref = L; +}, +{ +pos = (-21,71); +ref = slashshortcomb.case; +} +); +width = 609; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = L; +}, +{ +pos = (-38,70); +ref = slashshortcomb.case; +} +); +width = 599; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (33,0); +ref = L; +}, +{ +pos = (4,25); +ref = slashshortcomb.case; +} +); +width = 569; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (28,0); +ref = L; +}, +{ +pos = (-7,60); +ref = slashshortcomb.case; +} +); +width = 603; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +pos = (6,0); +ref = L; +}, +{ +pos = (-4,71); +ref = slashshortcomb.case; +} +); +width = 263; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +pos = (19,0); +ref = L; +}, +{ +pos = (-33,-30); +ref = slashshortcomb.case; +} +); +width = 375; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +pos = (39,0); +ref = L; +}, +{ +pos = (6,71); +ref = slashshortcomb.case; +} +); +width = 567; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +pos = (29,0); +ref = L; +}, +{ +pos = (-4,65); +ref = slashshortcomb.case; +} +); +width = 598; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +pos = (54,0); +ref = L; +}, +{ +pos = (-7,71); +ref = slashshortcomb.case; +} +); +width = 623; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +pos = (19,0); +ref = L; +}, +{ +pos = (-18,70); +ref = slashshortcomb.case; +} +); +width = 625; +} +); +metricRight = L; +unicode = 321; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/M_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/M_.glyph new file mode 100644 index 00000000..160c53fd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/M_.glyph @@ -0,0 +1,2235 @@ +{ +glyphname = M; +kernLeft = KO_H; +kernRight = KO_H; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (323,0); +}, +{ +name = top; +pos = (323,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,l), +(198,162,l), +(196,503,l), +(202,503,l), +(267,0,l), +(379,0,l), +(444,503,l), +(450,503,l), +(448,162,l), +(448,0,l), +(617,0,l), +(617,729,l), +(370,729,l), +(326,328,l), +(319,328,l), +(274,729,l), +(29,729,l), +(29,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,l), +(198,337,l), +(195,523,l), +(202,523,l), +(229,275,l), +(267,0,l), +(379,0,l), +(417,275,l), +(447,533,l), +(454,533,l), +(448,337,l), +(448,0,l), +(617,0,l), +(617,729,l), +(360,729,l), +(334,466,l), +(326,298,l), +(319,298,l), +(310,466,l), +(284,729,l), +(29,729,l), +(29,0,l) +); +} +); +width = 646; +}, +{ +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = top; +pos = (258,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(98,0,l), +(98,414,l), +(95,693,l), +(101,693,l), +(243,0,l), +(272,0,l), +(413,693,l), +(420,693,l), +(417,414,l), +(417,0,l), +(449,0,l), +(449,729,l), +(390,729,l), +(257,75,l), +(256,75,l), +(124,729,l), +(66,729,l), +(66,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,407,l), +(95,698,l), +(101,698,l), +(156,415,l), +(236,0,l), +(280,0,l), +(359,417,l), +(413,699,l), +(419,699,l), +(418,407,l), +(418,0,l), +(449,0,l), +(449,729,l), +(390,729,l), +(302,279,l), +(261,44,l), +(255,44,l), +(213,279,l), +(124,729,l), +(66,729,l), +(66,0,l) +); +} +); +width = 515; +}, +{ +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,420,l), +(108,686,l), +(114,686,l), +(444,0,l), +(478,0,l), +(807,686,l), +(814,686,l), +(811,420,l), +(811,0,l), +(850,0,l), +(850,729,l), +(787,729,l), +(461,50,l), +(459,50,l), +(134,729,l), +(72,729,l), +(72,0,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,420,l), +(107,693,l), +(114,693,l), +(221,464,l), +(439,0,l), +(481,0,l), +(702,467,l), +(807,693,l), +(814,693,l), +(811,420,l), +(811,0,l), +(850,0,l), +(850,729,l), +(786,729,l), +(561,258,l), +(463,41,l), +(457,41,l), +(360,258,l), +(136,729,l), +(72,729,l), +(72,0,l) +); +} +); +width = 922; +}, +{ +anchors = ( +{ +name = bottom; +pos = (513,0); +}, +{ +name = top; +pos = (513,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,233,l), +(258,503,l), +(268,503,l), +(414,0,l), +(612,0,l), +(758,503,l), +(767,503,l), +(765,235,l), +(765,0,l), +(977,0,l), +(977,729,l), +(637,729,l), +(518,277,l), +(510,277,l), +(387,729,l), +(47,729,l), +(47,0,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,233,l), +(256,523,l), +(266,523,l), +(317,326,l), +(412,0,l), +(614,0,l), +(709,326,l), +(760,523,l), +(770,523,l), +(765,235,l), +(765,0,l), +(977,0,l), +(977,729,l), +(635,729,l), +(540,349,l), +(518,247,l), +(510,247,l), +(487,349,l), +(389,729,l), +(47,729,l), +(47,0,l) +); +} +); +width = 1024; +}, +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = top; +pos = (266,729); +} +); +associatedMasterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +attr = { +coordinates = ( +75, +300, +1, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(112,378,l), +(109,666,l), +(115,666,l), +(232,0,l), +(299,0,l), +(417,666,l), +(424,666,l), +(421,378,l), +(421,0,l), +(473,0,l), +(473,729,l), +(378,729,l), +(269,111,l), +(262,111,l), +(154,729,l), +(61,729,l), +(61,0,l) +); +} +); +}; +layerId = "06D708AE-6FF7-4126-A797-652CFAE2D764"; +name = "{75, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(112,486,l), +(109,676,l), +(115,676,l), +(146,487,l), +(232,0,l), +(299,0,l), +(386,490,l), +(417,676,l), +(424,676,l), +(421,486,l), +(421,0,l), +(473,0,l), +(473,729,l), +(378,729,l), +(281,169,l), +(269,71,l), +(262,71,l), +(250,169,l), +(154,729,l), +(61,729,l), +(61,0,l) +); +} +); +width = 534; +}, +{ +anchors = ( +{ +name = bottom; +pos = (467,0); +}, +{ +name = top; +pos = (467,729); +} +); +associatedMasterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +attr = { +coordinates = ( +125, +300, +1, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(131,393,l), +(129,660,l), +(135,660,l), +(434,0,l), +(498,0,l), +(799,660,l), +(806,660,l), +(804,394,l), +(804,0,l), +(867,0,l), +(867,729,l), +(763,729,l), +(468,82,l), +(465,82,l), +(172,729,l), +(68,729,l), +(68,0,l) +); +} +); +}; +layerId = "BB8528A8-45D9-4F71-98F5-5E9EBC614399"; +name = "{125, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(131,393,l), +(128,673,l), +(135,673,l), +(234,443,l), +(433,0,l), +(499,0,l), +(703,453,l), +(798,674,l), +(806,674,l), +(804,394,l), +(804,0,l), +(867,0,l), +(867,729,l), +(762,729,l), +(572,304,l), +(470,66,l), +(463,66,l), +(361,304,l), +(172,729,l), +(68,729,l), +(68,0,l) +); +} +); +width = 935; +}, +{ +anchors = ( +{ +name = bottom; +pos = (229,0); +}, +{ +name = top; +pos = (229,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(93,414,l), +(90,693,l), +(96,693,l), +(238,0,l), +(267,0,l), +(408,693,l), +(415,693,l), +(412,414,l), +(412,0,l), +(444,0,l), +(444,729,l), +(385,729,l), +(252,75,l), +(251,75,l), +(119,729,l), +(61,729,l), +(61,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(73,407,l), +(72,677,l), +(73,677,l), +(126,413,l), +(210,0,l), +(248,0,l), +(330,411,l), +(384,678,l), +(385,678,l), +(384,407,l), +(384,0,l), +(415,0,l), +(415,729,l), +(367,729,l), +(273,279,l), +(230,47,l), +(229,47,l), +(184,279,l), +(89,729,l), +(42,729,l), +(42,0,l) +); +} +); +width = 457; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (244,729); +} +); +associatedMasterId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +attr = { +coordinates = ( +75, +300, +100, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(115,0,l), +(115,378,l), +(112,666,l), +(118,666,l), +(235,0,l), +(302,0,l), +(420,666,l), +(427,666,l), +(424,378,l), +(424,0,l), +(476,0,l), +(476,729,l), +(381,729,l), +(272,111,l), +(265,111,l), +(157,729,l), +(64,729,l), +(64,0,l) +); +} +); +}; +layerId = "394B4DF2-E646-4557-83EC-2C41AB442AF7"; +name = "{75, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,0,l), +(91,386,l), +(91,640,l), +(93,640,l), +(141,392,l), +(219,0,l), +(270,0,l), +(347,390,l), +(397,643,l), +(398,643,l), +(397,386,l), +(397,0,l), +(449,0,l), +(449,729,l), +(373,729,l), +(286,307,l), +(247,92,l), +(246,92,l), +(204,307,l), +(117,729,l), +(39,729,l), +(39,0,l) +); +} +); +width = 488; +}, +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = top; +pos = (312,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,l), +(198,162,l), +(196,503,l), +(202,503,l), +(267,0,l), +(379,0,l), +(444,503,l), +(450,503,l), +(448,162,l), +(448,0,l), +(617,0,l), +(617,729,l), +(370,729,l), +(326,328,l), +(319,328,l), +(274,729,l), +(29,729,l), +(29,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,0,l), +(187,262,l), +(188,421,l), +(189,421,l), +(215,263,l), +(256,0,l), +(368,0,l), +(411,263,l), +(438,430,l), +(439,430,l), +(437,262,l), +(437,0,l), +(606,0,l), +(606,729,l), +(372,729,l), +(330,473,l), +(312,359,l), +(311,359,l), +(292,473,l), +(250,729,l), +(18,729,l), +(18,0,l) +); +} +); +width = 624; +}, +{ +anchors = ( +{ +name = bottom; +pos = (416,0); +}, +{ +name = top; +pos = (416,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(132,0,l), +(132,420,l), +(130,686,l), +(136,686,l), +(422,0,l), +(458,0,l), +(743,686,l), +(750,686,l), +(747,420,l), +(747,0,l), +(786,0,l), +(786,729,l), +(724,729,l), +(440,50,l), +(438,50,l), +(156,729,l), +(94,729,l), +(94,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,414,l), +(110,682,l), +(111,682,l), +(209,444,l), +(396,0,l), +(437,0,l), +(622,444,l), +(720,684,l), +(721,684,l), +(723,416,l), +(723,0,l), +(761,0,l), +(761,729,l), +(700,729,l), +(474,179,l), +(417,46,l), +(416,46,l), +(358,180,l), +(131,729,l), +(70,729,l), +(70,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = bottom; +pos = (387,0); +}, +{ +name = top; +pos = (387,729); +} +); +associatedMasterId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +attr = { +coordinates = ( +100, +300, +100, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,0,l), +(159,393,l), +(157,662,l), +(163,662,l), +(423,0,l), +(480,0,l), +(742,662,l), +(749,662,l), +(746,394,l), +(746,0,l), +(807,0,l), +(807,729,l), +(706,729,l), +(453,90,l), +(451,90,l), +(200,729,l), +(98,729,l), +(98,0,l) +); +} +); +}; +layerId = "4CED0082-91DB-40CF-9F74-A1F4B4152A60"; +name = "{100, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,l), +(125,390,l), +(125,655,l), +(128,655,l), +(208,418,l), +(359,0,l), +(419,0,l), +(570,421,l), +(650,657,l), +(653,657,l), +(653,391,l), +(653,0,l), +(714,0,l), +(714,729,l), +(620,729,l), +(458,275,l), +(393,80,l), +(390,80,l), +(323,276,l), +(161,729,l), +(64,729,l), +(64,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 778; +}, +{ +anchors = ( +{ +name = bottom; +pos = (445,0); +}, +{ +name = top; +pos = (445,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(266,0,l), +(266,233,l), +(263,518,l), +(272,518,l), +(392,0,l), +(558,0,l), +(678,518,l), +(685,518,l), +(683,235,l), +(683,0,l), +(879,0,l), +(879,729,l), +(573,729,l), +(479,333,l), +(471,333,l), +(374,729,l), +(68,729,l), +(68,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,l), +(232,257,l), +(231,468,l), +(232,468,l), +(286,276,l), +(370,0,l), +(522,0,l), +(605,271,l), +(660,468,l), +(661,468,l), +(659,257,l), +(659,0,l), +(860,0,l), +(860,729,l), +(567,729,l), +(493,473,l), +(448,303,l), +(446,303,l), +(398,473,l), +(321,729,l), +(30,729,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +}; +width = 890; +}, +{ +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,l), +(120,420,l), +(118,686,l), +(124,686,l), +(454,0,l), +(488,0,l), +(817,686,l), +(824,686,l), +(821,420,l), +(821,0,l), +(860,0,l), +(860,729,l), +(797,729,l), +(471,50,l), +(469,50,l), +(144,729,l), +(82,729,l), +(82,0,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(100,483,l), +(98,686,l), +(99,686,l), +(195,491,l), +(438,0,l), +(482,0,l), +(725,489,l), +(822,686,l), +(823,686,l), +(821,483,l), +(821,0,l), +(859,0,l), +(859,729,l), +(802,729,l), +(564,256,l), +(461,39,l), +(460,39,l), +(357,256,l), +(120,729,l), +(62,729,l), +(62,0,l) +); +} +); +width = 921; +}, +{ +anchors = ( +{ +name = bottom; +pos = (469,0); +}, +{ +name = top; +pos = (469,729); +} +); +associatedMasterId = "106FCE83-F343-403B-A314-646E4D059B3F"; +attr = { +coordinates = ( +125, +300, +100, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(131,393,l), +(129,660,l), +(135,660,l), +(434,0,l), +(498,0,l), +(799,660,l), +(806,660,l), +(804,394,l), +(804,0,l), +(867,0,l), +(867,729,l), +(763,729,l), +(468,82,l), +(465,82,l), +(172,729,l), +(68,729,l), +(68,0,l) +); +} +); +}; +layerId = "EA1FE744-9D89-49DD-9835-CF7DF715E442"; +name = "{125, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(122,0,l), +(122,444,l), +(120,656,l), +(121,656,l), +(212,463,l), +(435,0,l), +(498,0,l), +(721,462,l), +(813,656,l), +(814,656,l), +(812,445,l), +(812,0,l), +(875,0,l), +(875,729,l), +(781,729,l), +(560,269,l), +(468,69,l), +(467,69,l), +(374,269,l), +(153,729,l), +(58,729,l), +(58,0,l) +); +} +); +width = 933; +}, +{ +anchors = ( +{ +name = bottom; +pos = (516,0); +}, +{ +name = top; +pos = (516,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(279,0,l), +(279,233,l), +(276,503,l), +(286,503,l), +(432,0,l), +(630,0,l), +(776,503,l), +(785,503,l), +(783,235,l), +(783,0,l), +(995,0,l), +(995,729,l), +(655,729,l), +(536,277,l), +(528,277,l), +(405,729,l), +(65,729,l), +(65,0,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,0,l), +(255,212,l), +(255,476,l), +(256,476,l), +(315,297,l), +(418,0,l), +(611,0,l), +(714,297,l), +(774,476,l), +(776,476,l), +(774,214,l), +(774,0,l), +(996,0,l), +(996,729,l), +(670,729,l), +(553,349,l), +(521,247,l), +(520,247,l), +(487,349,l), +(366,729,l), +(32,729,l), +(32,0,l) +); +} +); +width = 1028; +}, +{ +anchors = ( +{ +name = bottom; +pos = (430,0); +}, +{ +name = top; +pos = (430,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(127,0,l), +(127,420,l), +(125,686,l), +(131,686,l), +(417,0,l), +(453,0,l), +(738,686,l), +(745,686,l), +(742,420,l), +(742,0,l), +(781,0,l), +(781,729,l), +(719,729,l), +(435,50,l), +(433,50,l), +(151,729,l), +(89,729,l), +(89,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(142,0,l), +(142,420,l), +(141,698,l), +(148,698,l), +(237,451,l), +(407,0,l), +(451,0,l), +(622,451,l), +(711,698,l), +(718,698,l), +(717,420,l), +(717,0,l), +(753,0,l), +(753,729,l), +(687,729,l), +(529,304,l), +(433,42,l), +(426,42,l), +(331,304,l), +(171,729,l), +(105,729,l), +(105,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = bottom; +pos = (444,0); +}, +{ +name = top; +pos = (444,729); +} +); +associatedMasterId = m019; +attr = { +coordinates = ( +100, +300, +1, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(150,0,l), +(150,393,l), +(148,662,l), +(154,662,l), +(414,0,l), +(471,0,l), +(733,662,l), +(740,662,l), +(737,394,l), +(737,0,l), +(798,0,l), +(798,729,l), +(697,729,l), +(444,90,l), +(442,90,l), +(191,729,l), +(89,729,l), +(89,0,l) +); +} +); +}; +layerId = "FEDFBF81-0D03-4F42-91B7-EAD130AB1BCB"; +name = "{100, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(150,0,l), +(150,393,l), +(147,674,l), +(154,674,l), +(252,410,l), +(413,0,l), +(473,0,l), +(637,416,l), +(733,674,l), +(740,674,l), +(737,394,l), +(737,0,l), +(798,0,l), +(798,729,l), +(696,729,l), +(513,263,l), +(446,72,l), +(440,72,l), +(374,263,l), +(192,729,l), +(89,729,l), +(89,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 887; +}, +{ +anchors = ( +{ +name = bottom; +pos = (459,0); +}, +{ +name = top; +pos = (459,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262,0,l), +(262,233,l), +(259,518,l), +(268,518,l), +(388,0,l), +(554,0,l), +(674,518,l), +(681,518,l), +(679,235,l), +(679,0,l), +(875,0,l), +(875,729,l), +(569,729,l), +(475,333,l), +(467,333,l), +(370,729,l), +(64,729,l), +(64,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(258,0,l), +(258,312,l), +(252,538,l), +(264,538,l), +(305,331,l), +(378,0,l), +(543,0,l), +(615,326,l), +(656,538,l), +(668,538,l), +(661,312,l), +(661,0,l), +(855,0,l), +(855,729,l), +(543,729,l), +(493,473,l), +(466,293,l), +(454,293,l), +(427,473,l), +(375,729,l), +(62,729,l), +(62,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +}; +width = 918; +}, +{ +anchors = ( +{ +name = bottom; +pos = (203,0); +}, +{ +name = top; +pos = (354,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-21,0,l), +(64,414,l), +(121,693,l), +(127,693,l), +(121,0,l), +(154,0,l), +(436,693,l), +(442,693,l), +(381,414,l), +(294,0,l), +(326,0,l), +(477,729,l), +(419,729,l), +(153,75,l), +(151,75,l), +(156,729,l), +(98,729,l), +(-53,0,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(127,407,l), +(186,698,l), +(192,698,l), +(188,415,l), +(182,0,l), +(226,0,l), +(391,417,l), +(504,699,l), +(510,699,l), +(448,407,l), +(364,0,l), +(395,0,l), +(546,729,l), +(486,729,l), +(305,279,l), +(215,44,l), +(209,44,l), +(216,279,l), +(221,729,l), +(163,729,l), +(12,0,l) +); +} +); +width = 513; +}, +{ +anchors = ( +{ +name = bottom; +pos = (212,0); +}, +{ +name = top; +pos = (363,729); +} +); +associatedMasterId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +attr = { +coordinates = ( +75, +300, +1, +1 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(134,374,l), +(195,674,l), +(201,674,l), +(184,0,l), +(241,0,l), +(504,674,l), +(510,674,l), +(444,374,l), +(366,0,l), +(417,0,l), +(568,729,l), +(477,729,l), +(236,110,l), +(233,110,l), +(249,729,l), +(157,729,l), +(6,0,l) +); +} +); +}; +layerId = "B348A82E-4BBD-479C-A743-AA43A79828FA"; +name = "{75, 300, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(158,486,l), +(194,676,l), +(200,676,l), +(196,487,l), +(184,0,l), +(241,0,l), +(432,490,l), +(503,676,l), +(510,676,l), +(468,486,l), +(366,0,l), +(418,0,l), +(569,729,l), +(476,729,l), +(276,212,l), +(229,71,l), +(222,71,l), +(233,212,l), +(250,729,l), +(157,729,l), +(6,0,l) +); +} +); +width = 531; +}, +{ +anchors = ( +{ +name = bottom; +pos = (267,0); +}, +{ +name = top; +pos = (418,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(104,133,l), +(191,560,l), +(197,560,l), +(142,0,l), +(281,0,l), +(459,560,l), +(465,560,l), +(373,133,l), +(346,0,l), +(514,0,l), +(666,729,l), +(400,729,l), +(281,318,l), +(274,318,l), +(326,729,l), +(61,729,l), +(-92,0,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(142,0,l), +(212,337,l), +(247,523,l), +(254,523,l), +(230,275,l), +(211,0,l), +(323,0,l), +(418,275,l), +(501,533,l), +(508,533,l), +(462,337,l), +(392,0,l), +(561,0,l), +(712,729,l), +(455,729,l), +(374,463,l), +(332,298,l), +(325,298,l), +(350,463,l), +(379,729,l), +(124,729,l), +(-27,0,l) +); +} +); +width = 646; +}, +{ +anchors = ( +{ +name = bottom; +pos = (382,0); +}, +{ +name = top; +pos = (533,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(165,420,l), +(218,686,l), +(224,686,l), +(272,449,l), +(362,0,l), +(405,0,l), +(686,459,l), +(825,686,l), +(832,686,l), +(774,420,l), +(686,0,l), +(725,0,l), +(876,729,l), +(810,729,l), +(513,243,l), +(395,50,l), +(389,50,l), +(351,238,l), +(252,729,l), +(191,729,l), +(40,0,l) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = bottom; +pos = (388,0); +}, +{ +name = top; +pos = (539,729); +} +); +associatedMasterId = "095FE76F-1953-440B-9108-AA0678D151F9"; +attr = { +coordinates = ( +100, +300, +1, +1 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(179,393,l), +(232,662,l), +(239,662,l), +(364,0,l), +(420,0,l), +(811,662,l), +(818,662,l), +(760,394,l), +(678,0,l), +(739,0,l), +(890,729,l), +(786,729,l), +(408,90,l), +(405,90,l), +(284,729,l), +(188,729,l), +(37,0,l) +); +} +); +}; +layerId = "9B8442A5-55B9-4615-B4DE-51D828345E20"; +name = "{100, 300, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(96,0,l), +(177,393,l), +(233,674,l), +(240,674,l), +(286,410,l), +(364,0,l), +(420,0,l), +(665,416,l), +(815,674,l), +(822,674,l), +(761,394,l), +(679,0,l), +(740,0,l), +(891,729,l), +(789,729,l), +(510,263,l), +(407,72,l), +(401,72,l), +(370,263,l), +(286,729,l), +(186,729,l), +(35,0,l) +); +} +); +width = 883; +}, +{ +anchors = ( +{ +name = bottom; +pos = (405,0); +}, +{ +name = top; +pos = (556,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,l), +(263,312,ls), +(281,399,o), +(292,455,o), +(306,538,c), +(315,538,l), +(314,490,o), +(315,417,o), +(317,331,cs), +(324,0,l), +(488,0,l), +(631,326,ls), +(659,390,o), +(681,444,o), +(717,538,c), +(725,538,l), +(706,449,o), +(692,386,o), +(677,312,cs), +(612,0,l), +(807,0,l), +(958,729,l), +(654,729,l), +(542,473,ls), +(519,420,o), +(500,380,o), +(472,293,c), +(464,293,l), +(472,380,o), +(468,439,o), +(467,473,cs), +(458,729,l), +(154,729,l), +(3,0,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,l), +(263,312,l), +(306,538,l), +(315,538,l), +(317,331,l), +(324,0,l), +(488,0,l), +(631,326,l), +(717,538,l), +(725,538,l), +(677,312,l), +(612,0,l), +(807,0,l), +(958,729,l), +(654,729,l), +(523,430,l), +(472,293,l), +(464,293,l), +(468,430,l), +(458,729,l), +(154,729,l), +(3,0,l) +); +} +); +width = 922; +}, +{ +anchors = ( +{ +name = bottom; +pos = (403,0); +}, +{ +name = top; +pos = (554,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(143,420,l), +(196,686,l), +(202,686,l), +(388,0,l), +(422,0,l), +(888,686,l), +(895,686,l), +(837,420,l), +(750,0,l), +(788,0,l), +(939,729,l), +(875,729,l), +(414,50,l), +(412,50,l), +(228,729,l), +(169,729,l), +(18,0,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(143,420,l), +(197,693,l), +(204,693,l), +(261,465,l), +(386,0,l), +(425,0,l), +(740,467,l), +(889,693,l), +(896,693,l), +(837,420,l), +(750,0,l), +(788,0,l), +(939,729,l), +(874,729,l), +(554,258,l), +(415,43,l), +(409,43,l), +(355,258,l), +(228,729,l), +(169,729,l), +(18,0,l) +); +} +); +width = 914; +}, +{ +anchors = ( +{ +name = bottom; +pos = (410,0); +}, +{ +name = top; +pos = (561,729); +} +); +associatedMasterId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +attr = { +coordinates = ( +125, +300, +1, +1 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(159,393,l), +(212,660,l), +(218,660,l), +(383,0,l), +(446,0,l), +(876,660,l), +(883,660,l), +(825,394,l), +(743,0,l), +(806,0,l), +(957,729,l), +(849,729,l), +(428,82,l), +(425,82,l), +(264,729,l), +(165,729,l), +(14,0,l) +); +} +); +}; +layerId = "D8ED7CD1-9F0A-48B8-8CEC-3DF9BD125477"; +name = "{125, 300, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(158,393,l), +(213,673,l), +(220,673,l), +(273,443,l), +(381,0,l), +(448,0,l), +(739,453,l), +(877,673,l), +(885,673,l), +(825,394,l), +(743,0,l), +(806,0,l), +(957,729,l), +(849,729,l), +(616,368,l), +(429,64,l), +(422,64,l), +(353,368,l), +(264,729,l), +(165,729,l), +(14,0,l) +); +} +); +width = 928; +}, +{ +anchors = ( +{ +name = bottom; +pos = (452,0); +}, +{ +name = top; +pos = (603,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(253,233,l), +(306,503,l), +(315,503,l), +(354,0,l), +(552,0,l), +(801,503,l), +(809,503,l), +(752,235,l), +(703,0,l), +(913,0,l), +(1064,729,l), +(724,729,l), +(513,277,l), +(505,277,l), +(477,729,l), +(143,729,l), +(-8,0,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,0,l), +(253,233,l), +(308,523,l), +(318,523,l), +(329,326,l), +(356,0,l), +(551,0,l), +(713,326,l), +(805,523,l), +(815,523,l), +(751,235,l), +(702,0,l), +(914,0,l), +(1065,729,l), +(724,729,l), +(564,387,l), +(506,247,l), +(498,247,l), +(498,387,l), +(477,729,l), +(142,729,l), +(-9,0,l) +); +} +); +width = 1017; +} +); +metricLeft = H; +metricRight = H; +unicode = 77; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/N_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/N_.glyph new file mode 100644 index 00000000..30ec8ba4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/N_.glyph @@ -0,0 +1,1002 @@ +{ +glyphname = N; +kernLeft = KO_H; +kernRight = KO_H; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (244,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,157,l), +(184,358,l), +(190,358,l), +(271,0,l), +(458,0,l), +(458,729,l), +(294,729,l), +(294,575,l), +(303,366,l), +(296,366,l), +(218,729,l), +(29,729,l), +(29,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,157,l), +(184,358,l), +(190,358,l), +(271,0,l), +(458,0,l), +(458,729,l), +(294,729,l), +(294,575,l), +(303,366,l), +(296,366,l), +(218,729,l), +(29,729,l), +(29,0,l) +); +} +); +width = 487; +}, +{ +anchors = ( +{ +name = bottom; +pos = (223,0); +}, +{ +name = top; +pos = (223,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(98,0,l), +(98,416,l), +(94,672,l), +(100,672,l), +(332,0,l), +(380,0,l), +(380,729,l), +(348,729,l), +(348,322,l), +(352,56,l), +(347,56,l), +(113,729,l), +(66,729,l), +(66,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,410,l), +(94,685,l), +(100,685,l), +(330,0,l), +(380,0,l), +(380,729,l), +(349,729,l), +(349,328,l), +(352,39,l), +(347,39,l), +(116,729,l), +(66,729,l), +(66,0,l) +); +} +); +width = 446; +}, +{ +anchors = ( +{ +name = bottom; +pos = (403,0); +}, +{ +name = top; +pos = (403,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,436,l), +(107,686,l), +(112,686,l), +(681,0,l), +(733,0,l), +(733,729,l), +(695,729,l), +(695,303,l), +(699,43,l), +(694,43,l), +(124,729,l), +(72,729,l), +(72,0,l) +); +} +); +width = 805; +}, +{ +anchors = ( +{ +name = bottom; +pos = (441,0); +}, +{ +name = top; +pos = (441,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(278,226,l), +(271,424,l), +(280,424,l), +(562,0,l), +(834,0,l), +(834,729,l), +(607,729,l), +(607,504,l), +(613,299,l), +(605,299,l), +(323,729,l), +(47,729,l), +(47,0,l) +); +} +); +width = 881; +}, +{ +anchors = ( +{ +name = bottom; +pos = (181,0); +}, +{ +name = top; +pos = (181,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(80,0,l), +(80,416,l), +(76,672,l), +(82,672,l), +(314,0,l), +(362,0,l), +(362,729,l), +(330,729,l), +(330,322,l), +(334,56,l), +(329,56,l), +(95,729,l), +(48,729,l), +(48,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(73,410,l), +(72,676,l), +(73,676,l), +(274,0,l), +(318,0,l), +(318,729,l), +(287,729,l), +(287,328,l), +(288,53,l), +(287,53,l), +(86,729,l), +(42,729,l), +(42,0,l) +); +} +); +width = 360; +}, +{ +anchors = ( +{ +name = bottom; +pos = (233,0); +}, +{ +name = top; +pos = (233,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,157,l), +(184,358,l), +(190,358,l), +(271,0,l), +(458,0,l), +(458,729,l), +(294,729,l), +(294,575,l), +(303,366,l), +(296,366,l), +(218,729,l), +(29,729,l), +(29,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,0,l), +(182,157,l), +(180,338,l), +(181,338,l), +(265,0,l), +(447,0,l), +(447,729,l), +(283,729,l), +(283,575,l), +(286,386,l), +(285,386,l), +(204,729,l), +(18,729,l), +(18,0,l) +); +} +); +width = 465; +}, +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = top; +pos = (358,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(132,0,l), +(132,436,l), +(129,686,l), +(134,686,l), +(615,0,l), +(670,0,l), +(670,729,l), +(632,729,l), +(632,303,l), +(636,43,l), +(631,43,l), +(149,729,l), +(94,729,l), +(94,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,436,l), +(107,681,l), +(108,681,l), +(595,0,l), +(646,0,l), +(646,729,l), +(608,729,l), +(608,303,l), +(610,48,l), +(609,48,l), +(120,729,l), +(70,729,l), +(70,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 716; +}, +{ +anchors = ( +{ +name = bottom; +pos = (366,0); +}, +{ +name = top; +pos = (366,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(266,0,l), +(266,236,l), +(261,431,l), +(269,431,l), +(506,0,l), +(731,0,l), +(731,729,l), +(536,729,l), +(536,504,l), +(543,282,l), +(535,282,l), +(298,729,l), +(59,729,l), +(59,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(233,226,l), +(233,391,l), +(234,391,l), +(482,0,l), +(707,0,l), +(707,729,l), +(507,729,l), +(507,514,l), +(508,328,l), +(507,328,l), +(251,729,l), +(30,729,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +}; +width = 737; +}, +{ +anchors = ( +{ +name = bottom; +pos = (393,0); +}, +{ +name = top; +pos = (393,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(100,436,l), +(99,685,l), +(100,685,l), +(671,0,l), +(723,0,l), +(723,729,l), +(685,729,l), +(685,303,l), +(687,44,l), +(686,44,l), +(114,729,l), +(62,729,l), +(62,0,l) +); +} +); +width = 785; +}, +{ +anchors = ( +{ +name = bottom; +pos = (426,0); +}, +{ +name = top; +pos = (426,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,l), +(263,226,l), +(256,424,l), +(265,424,l), +(547,0,l), +(819,0,l), +(819,729,l), +(592,729,l), +(592,504,l), +(598,299,l), +(590,299,l), +(308,729,l), +(32,729,l), +(32,0,l) +); +} +); +width = 851; +}, +{ +anchors = ( +{ +name = bottom; +pos = (370,0); +}, +{ +name = top; +pos = (370,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,l), +(125,436,l), +(122,686,l), +(127,686,l), +(608,0,l), +(663,0,l), +(663,729,l), +(625,729,l), +(625,303,l), +(629,43,l), +(624,43,l), +(142,729,l), +(87,729,l), +(87,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,l), +(143,435,l), +(140,683,l), +(145,683,l), +(584,0,l), +(638,0,l), +(638,729,l), +(601,729,l), +(601,304,l), +(605,44,l), +(600,44,l), +(158,729,l), +(106,729,l), +(106,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 743; +}, +{ +anchors = ( +{ +name = bottom; +pos = (390,0); +}, +{ +name = top; +pos = (390,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(271,236,l), +(266,431,l), +(274,431,l), +(511,0,l), +(736,0,l), +(736,729,l), +(541,729,l), +(541,504,l), +(548,282,l), +(540,282,l), +(303,729,l), +(64,729,l), +(64,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,l), +(267,236,l), +(257,431,l), +(269,431,l), +(489,0,l), +(718,0,l), +(718,729,l), +(525,729,l), +(525,504,l), +(535,289,l), +(523,289,l), +(305,729,l), +(62,729,l), +(62,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +}; +width = 780; +}, +{ +anchors = ( +{ +name = bottom; +pos = (169,0); +}, +{ +name = top; +pos = (320,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-21,0,l), +(64,416,l), +(115,672,l), +(121,672,l), +(210,0,l), +(258,0,l), +(409,729,l), +(377,729,l), +(294,322,l), +(242,56,l), +(237,56,l), +(145,729,l), +(98,729,l), +(-53,0,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(128,410,l), +(182,685,l), +(188,685,l), +(277,0,l), +(326,0,l), +(477,729,l), +(446,729,l), +(363,328,l), +(306,39,l), +(301,39,l), +(212,729,l), +(163,729,l), +(12,0,l) +); +} +); +width = 444; +}, +{ +anchors = ( +{ +name = bottom; +pos = (186,0); +}, +{ +name = top; +pos = (337,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(136,0,l), +(167,157,l), +(202,358,l), +(208,358,l), +(213,0,l), +(398,0,l), +(549,729,l), +(387,729,l), +(355,575,l), +(322,366,l), +(315,366,l), +(312,729,l), +(125,729,l), +(-27,0,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,0,l), +(167,157,l), +(202,358,l), +(208,358,l), +(213,0,l), +(398,0,l), +(549,729,l), +(387,729,l), +(355,575,l), +(322,366,l), +(315,366,l), +(312,729,l), +(125,729,l), +(-27,0,l) +); +} +); +width = 483; +}, +{ +anchors = ( +{ +name = bottom; +pos = (321,0); +}, +{ +name = top; +pos = (472,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(168,436,l), +(218,686,l), +(222,686,l), +(548,0,l), +(601,0,l), +(752,729,l), +(715,729,l), +(626,303,l), +(576,43,l), +(571,43,l), +(243,729,l), +(191,729,l), +(40,0,l) +); +} +); +width = 749; +}, +{ +anchors = ( +{ +name = bottom; +pos = (329,0); +}, +{ +name = top; +pos = (480,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(253,236,l), +(283,431,l), +(291,431,l), +(426,0,l), +(653,0,l), +(805,729,l), +(606,729,l), +(557,494,l), +(526,292,l), +(518,292,l), +(382,729,l), +(154,729,l), +(3,0,l) +); +} +); +width = 769; +}, +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (496,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(146,436,l), +(197,689,l), +(201,689,l), +(619,0,l), +(670,0,l), +(822,729,l), +(784,729,l), +(697,303,l), +(644,40,l), +(639,40,l), +(222,729,l), +(169,729,l), +(18,0,l) +); +} +); +width = 797; +}, +{ +anchors = ( +{ +name = bottom; +pos = (380,0); +}, +{ +name = top; +pos = (531,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,l), +(267,232,l), +(303,441,l), +(311,441,l), +(501,0,l), +(768,0,l), +(919,729,l), +(695,729,l), +(647,498,l), +(608,282,l), +(600,282,l), +(411,729,l), +(142,729,l), +(-9,0,l) +); +} +); +width = 871; +} +); +metricLeft = H; +metricRight = H; +unicode = 78; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/N_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/N_acute.glyph new file mode 100644 index 00000000..98e4d083 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/N_acute.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Nacute; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = N; +}, +{ +pos = (167,57); +ref = acutecomb; +} +); +width = 446; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = N; +}, +{ +pos = (132,51); +ref = acutecomb; +} +); +width = 487; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = N; +}, +{ +pos = (345,57); +ref = acutecomb; +} +); +width = 805; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = N; +}, +{ +pos = (324,56); +ref = acutecomb; +} +); +width = 881; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = N; +}, +{ +pos = (145,57); +ref = acutecomb; +} +); +width = 360; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = N; +}, +{ +pos = (131,51); +ref = acutecomb; +} +); +width = 465; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = N; +}, +{ +pos = (323,57); +ref = acutecomb; +} +); +width = 716; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = N; +}, +{ +pos = (275,51); +ref = acutecomb; +} +); +width = 737; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = N; +}, +{ +alignment = -1; +pos = (345,57); +ref = acutecomb; +} +); +width = 805; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = N; +}, +{ +alignment = -1; +pos = (319,56); +ref = acutecomb; +} +); +width = 881; +}, +{ +layerId = m019; +shapes = ( +{ +ref = N; +}, +{ +pos = (314,57); +ref = acutecomb; +} +); +width = 743; +}, +{ +layerId = m020; +shapes = ( +{ +ref = N; +}, +{ +pos = (280,51); +ref = acutecomb; +} +); +width = 780; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = N; +}, +{ +pos = (179,57); +ref = acutecomb; +} +); +width = 444; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = N; +}, +{ +pos = (142,51); +ref = acutecomb; +} +); +width = 483; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = N; +}, +{ +pos = (330,57); +ref = acutecomb; +} +); +width = 749; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = N; +}, +{ +pos = (285,51); +ref = acutecomb; +} +); +width = 769; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = N; +}, +{ +pos = (353,57); +ref = acutecomb; +} +); +width = 797; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = N; +}, +{ +pos = (331,56); +ref = acutecomb; +} +); +width = 871; +} +); +unicode = 323; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/N_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/N_caron.glyph new file mode 100644 index 00000000..c7d18f9c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/N_caron.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Ncaron; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = N; +}, +{ +pos = (94,57); +ref = caroncomb; +} +); +width = 446; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = N; +}, +{ +pos = (27,51); +ref = caroncomb; +} +); +width = 487; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = N; +}, +{ +pos = (224,57); +ref = caroncomb; +} +); +width = 805; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = N; +}, +{ +pos = (150,56); +ref = caroncomb; +} +); +width = 881; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = N; +}, +{ +pos = (72,57); +ref = caroncomb; +} +); +width = 360; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = N; +}, +{ +pos = (26,51); +ref = caroncomb; +} +); +width = 465; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = N; +}, +{ +pos = (214,57); +ref = caroncomb; +} +); +width = 716; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = N; +}, +{ +pos = (140,51); +ref = caroncomb; +} +); +width = 737; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = N; +}, +{ +alignment = -1; +pos = (224,57); +ref = caroncomb; +} +); +width = 805; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = N; +}, +{ +alignment = -1; +pos = (145,56); +ref = caroncomb; +} +); +width = 881; +}, +{ +layerId = m019; +shapes = ( +{ +ref = N; +}, +{ +pos = (207,57); +ref = caroncomb; +} +); +width = 743; +}, +{ +layerId = m020; +shapes = ( +{ +ref = N; +}, +{ +pos = (151,51); +ref = caroncomb; +} +); +width = 780; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = N; +}, +{ +pos = (106,57); +ref = caroncomb; +} +); +width = 444; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = N; +}, +{ +pos = (41,51); +ref = caroncomb; +} +); +width = 483; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = N; +}, +{ +pos = (221,57); +ref = caroncomb; +} +); +width = 749; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = N; +}, +{ +pos = (146,51); +ref = caroncomb; +} +); +width = 769; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = N; +}, +{ +pos = (230,57); +ref = caroncomb; +} +); +width = 797; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = N; +}, +{ +pos = (157,56); +ref = caroncomb; +} +); +width = 871; +} +); +unicode = 327; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/N_commaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/N_commaaccent.glyph new file mode 100644 index 00000000..5b3e77e6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/N_commaaccent.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Ncommaaccent; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = N; +}, +{ +pos = (126,0); +ref = commaaccentcomb; +} +); +width = 446; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = N; +}, +{ +pos = (62,0); +ref = commaaccentcomb; +} +); +width = 487; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = N; +}, +{ +pos = (302,0); +ref = commaaccentcomb; +} +); +width = 805; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = N; +}, +{ +pos = (257,0); +ref = commaaccentcomb; +} +); +width = 881; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = N; +}, +{ +pos = (104,0); +ref = commaaccentcomb; +} +); +width = 360; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = N; +}, +{ +pos = (61,0); +ref = commaaccentcomb; +} +); +width = 465; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = N; +}, +{ +pos = (272,0); +ref = commaaccentcomb; +} +); +width = 716; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = N; +}, +{ +pos = (217,0); +ref = commaaccentcomb; +} +); +width = 737; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = N; +}, +{ +alignment = -1; +pos = (302,0); +ref = commaaccentcomb; +} +); +width = 805; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = N; +}, +{ +alignment = -1; +pos = (252,0); +ref = commaaccentcomb; +} +); +width = 881; +}, +{ +layerId = m019; +shapes = ( +{ +ref = N; +}, +{ +pos = (263,0); +ref = commaaccentcomb; +} +); +width = 743; +}, +{ +layerId = m020; +shapes = ( +{ +ref = N; +}, +{ +pos = (227,0); +ref = commaaccentcomb; +} +); +width = 780; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = N; +}, +{ +pos = (126,0); +ref = commaaccentcomb; +} +); +width = 444; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = N; +}, +{ +pos = (62,0); +ref = commaaccentcomb; +} +); +width = 483; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = N; +}, +{ +pos = (269,0); +ref = commaaccentcomb; +} +); +width = 749; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = N; +}, +{ +pos = (214,0); +ref = commaaccentcomb; +} +); +width = 769; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = N; +}, +{ +pos = (297,0); +ref = commaaccentcomb; +} +); +width = 797; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = N; +}, +{ +pos = (257,0); +ref = commaaccentcomb; +} +); +width = 871; +} +); +unicode = 325; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/N_tilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/N_tilde.glyph new file mode 100644 index 00000000..62897871 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/N_tilde.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Ntilde; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = N; +}, +{ +pos = (83,57); +ref = tildecomb; +} +); +width = 446; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = N; +}, +{ +pos = (12,50); +ref = tildecomb; +} +); +width = 487; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = N; +}, +{ +pos = (196,57); +ref = tildecomb; +} +); +width = 805; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = N; +}, +{ +pos = (177,56); +ref = tildecomb; +} +); +width = 881; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = N; +}, +{ +pos = (61,57); +ref = tildecomb; +} +); +width = 360; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = N; +}, +{ +pos = (11,50); +ref = tildecomb; +} +); +width = 465; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = N; +}, +{ +pos = (189,57); +ref = tildecomb; +} +); +width = 716; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = N; +}, +{ +pos = (129,51); +ref = tildecomb; +} +); +width = 737; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = N; +}, +{ +alignment = -1; +pos = (196,57); +ref = tildecomb; +} +); +width = 805; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = N; +}, +{ +alignment = -1; +pos = (172,56); +ref = tildecomb; +} +); +width = 881; +}, +{ +layerId = m019; +shapes = ( +{ +ref = N; +}, +{ +pos = (182,57); +ref = tildecomb; +} +); +width = 743; +}, +{ +layerId = m020; +shapes = ( +{ +ref = N; +}, +{ +pos = (140,51); +ref = tildecomb; +} +); +width = 780; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = N; +}, +{ +pos = (95,57); +ref = tildecomb; +} +); +width = 444; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = N; +}, +{ +pos = (19,50); +ref = tildecomb; +} +); +width = 483; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = N; +}, +{ +pos = (198,57); +ref = tildecomb; +} +); +width = 749; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = N; +}, +{ +pos = (136,51); +ref = tildecomb; +} +); +width = 769; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = N; +}, +{ +pos = (204,57); +ref = tildecomb; +} +); +width = 797; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = N; +}, +{ +pos = (187,51); +ref = tildecomb; +} +); +width = 871; +} +); +unicode = 209; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_.glyph new file mode 100644 index 00000000..7aa9d061 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_.glyph @@ -0,0 +1,1460 @@ +{ +glyphname = O; +kernLeft = KO_O; +kernRight = KO_O; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (247,0); +}, +{ +name = center; +pos = (247,365); +}, +{ +name = ogonek; +pos = (451,10); +}, +{ +name = top; +pos = (247,729); +}, +{ +name = topleft; +pos = (12,729); +}, +{ +name = topright; +pos = (339,709); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(427,-9,o), +(478,136,o), +(478,365,cs), +(478,594,o), +(427,739,o), +(247,739,cs), +(68,739,o), +(16,595,o), +(16,365,cs), +(16,135,o), +(68,-9,o), +(247,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,147,o), +(197,202,o), +(197,365,cs), +(197,515,o), +(205,583,o), +(247,583,cs), +(285,583,o), +(298,529,o), +(298,365,cs), +(298,217,o), +(290,147,o), +(247,147,cs) +); +} +); +width = 494; +}, +{ +anchors = ( +{ +name = bottom; +pos = (211,0); +}, +{ +name = center; +pos = (211,365); +}, +{ +name = ogonek; +pos = (373,10); +}, +{ +name = top; +pos = (211,729); +}, +{ +name = topleft; +pos = (27,729); +}, +{ +name = topright; +pos = (302,699); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(481,-8,o), +(553,126,o), +(553,366,cs), +(553,605,o), +(481,739,o), +(294,739,cs), +(107,739,o), +(35,605,o), +(35,366,cs), +(35,126,o), +(107,-8,o), +(294,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(140,28,o), +(76,150,o), +(76,337,cs), +(76,394,ls), +(76,581,o), +(140,703,o), +(294,703,cs), +(448,703,o), +(512,581,o), +(512,394,cs), +(512,337,ls), +(512,150,o), +(448,28,o), +(294,28,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(307,-10,o), +(376,61,o), +(376,364,cs), +(376,666,o), +(307,738,o), +(210,738,cs), +(114,738,o), +(45,667,o), +(45,364,cs), +(45,61,o), +(114,-10,o), +(210,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(105,19,o), +(78,158,o), +(78,364,cs), +(78,570,o), +(105,709,o), +(210,709,cs), +(316,709,o), +(343,569,o), +(343,364,cs), +(343,159,o), +(316,19,o), +(210,19,cs) +); +} +); +width = 421; +}, +{ +anchors = ( +{ +name = bottom; +pos = (416,0); +}, +{ +name = center; +pos = (416,365); +}, +{ +name = ogonek; +pos = (753,10); +}, +{ +name = top; +pos = (416,729); +}, +{ +name = topleft; +pos = (15,729); +}, +{ +name = topright; +pos = (570,709); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(644,-8,o), +(796,140,o), +(796,364,cs), +(796,587,o), +(646,736,o), +(416,736,cs), +(187,736,o), +(36,588,o), +(36,364,cs), +(36,142,o), +(186,-8,o), +(416,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(206,28,o), +(76,163,o), +(76,364,cs), +(76,565,o), +(204,700,o), +(416,700,cs), +(625,700,o), +(756,566,o), +(756,364,cs), +(756,164,o), +(627,28,o), +(416,28,cs) +); +} +); +width = 832; +}, +{ +anchors = ( +{ +name = bottom; +pos = (436,0); +}, +{ +name = center; +pos = (436,365); +}, +{ +name = ogonek; +pos = (792,10); +}, +{ +name = top; +pos = (436,729); +}, +{ +name = topleft; +pos = (10,729); +}, +{ +name = topright; +pos = (619,709); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(705,-10,o), +(859,138,o), +(859,365,cs), +(859,592,o), +(705,739,o), +(437,739,cs), +(166,739,o), +(12,592,o), +(12,365,cs), +(12,138,o), +(166,-10,o), +(437,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,170,o), +(243,230,o), +(243,365,cs), +(243,500,o), +(320,560,o), +(437,560,cs), +(552,560,o), +(629,500,o), +(629,365,cs), +(629,230,o), +(552,170,o), +(437,170,cs) +); +} +); +width = 871; +}, +{ +anchors = ( +{ +name = bottom; +pos = (179,0); +}, +{ +name = center; +pos = (179,365); +}, +{ +name = ogonek; +pos = (246,10); +}, +{ +name = top; +pos = (179,729); +}, +{ +name = topleft; +pos = (6,729); +}, +{ +name = topright; +pos = (270,699); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(469,-8,o), +(541,126,o), +(541,366,cs), +(541,605,o), +(469,739,o), +(282,739,cs), +(95,739,o), +(23,605,o), +(23,366,cs), +(23,126,o), +(95,-8,o), +(282,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(128,28,o), +(64,150,o), +(64,337,cs), +(64,394,ls), +(64,581,o), +(128,703,o), +(282,703,cs), +(436,703,o), +(500,581,o), +(500,394,cs), +(500,337,ls), +(500,150,o), +(436,28,o), +(282,28,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,-10,o), +(329,100,o), +(329,364,cs), +(329,628,o), +(289,738,o), +(178,738,cs), +(67,738,o), +(28,628,o), +(28,364,cs), +(28,100,o), +(67,-10,o), +(178,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,19,o), +(61,119,o), +(61,364,cs), +(61,609,o), +(90,709,o), +(178,709,cs), +(267,709,o), +(296,609,o), +(296,364,cs), +(296,119,o), +(267,19,o), +(178,19,cs) +); +} +); +width = 357; +}, +{ +anchors = ( +{ +name = bottom; +pos = (240,0); +}, +{ +name = center; +pos = (240,365); +}, +{ +name = ogonek; +pos = (444,10); +}, +{ +name = top; +pos = (240,729); +}, +{ +name = topleft; +pos = (5,729); +}, +{ +name = topright; +pos = (332,709); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(422,-9,o), +(473,136,o), +(473,365,cs), +(473,594,o), +(422,739,o), +(240,739,cs), +(59,739,o), +(7,595,o), +(7,365,cs), +(7,135,o), +(59,-9,o), +(240,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(203,147,o), +(195,200,o), +(195,365,cs), +(195,532,o), +(203,583,o), +(240,583,cs), +(277,583,o), +(286,532,o), +(286,365,cs), +(286,200,o), +(277,147,o), +(240,147,cs) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = center; +pos = (385,365); +}, +{ +name = ogonek; +pos = (702,10); +}, +{ +name = top; +pos = (385,729); +}, +{ +name = topleft; +pos = (9,729); +}, +{ +name = topright; +pos = (552,699); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(595,-8,o), +(735,140,o), +(735,364,cs), +(735,587,o), +(597,736,o), +(385,736,cs), +(174,736,o), +(35,588,o), +(35,364,cs), +(35,142,o), +(173,-8,o), +(385,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,28,o), +(76,163,o), +(76,364,cs), +(76,565,o), +(193,700,o), +(385,700,cs), +(576,700,o), +(695,566,o), +(695,364,cs), +(695,164,o), +(577,28,o), +(385,28,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 770; +}, +{ +anchors = ( +{ +name = bottom; +pos = (376,0); +}, +{ +name = center; +pos = (376,365); +}, +{ +name = ogonek; +pos = (698,10); +}, +{ +name = top; +pos = (376,729); +}, +{ +name = topleft; +pos = (-8,729); +}, +{ +name = topright; +pos = (534,709); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(626,-10,o), +(775,121,o), +(775,365,cs), +(775,608,o), +(626,739,o), +(402,739,cs), +(178,739,o), +(29,608,o), +(29,365,cs), +(29,121,o), +(178,-10,o), +(402,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,166,o), +(242,222,o), +(242,365,cs), +(242,507,o), +(306,563,o), +(402,563,cs), +(498,563,o), +(562,507,o), +(562,365,cs), +(562,222,o), +(498,166,o), +(402,166,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(610,-10,o), +(749,129,o), +(749,365,cs), +(749,600,o), +(610,739,o), +(375,739,cs), +(141,739,o), +(2,600,o), +(2,365,cs), +(2,129,o), +(141,-10,o), +(375,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,162,o), +(212,234,o), +(212,365,cs), +(212,495,o), +(270,567,o), +(375,567,cs), +(481,567,o), +(539,495,o), +(539,365,cs), +(539,234,o), +(481,162,o), +(375,162,cs) +); +} +); +width = 751; +}, +{ +anchors = ( +{ +name = bottom; +pos = (418,0); +}, +{ +name = center; +pos = (418,365); +}, +{ +name = ogonek; +pos = (755,10); +}, +{ +name = top; +pos = (418,729); +}, +{ +name = topleft; +pos = (17,729); +}, +{ +name = topright; +pos = (572,709); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(650,-8,o), +(798,137,o), +(798,364,cs), +(798,591,o), +(650,736,o), +(418,736,cs), +(186,736,o), +(38,591,o), +(38,364,cs), +(38,137,o), +(186,-8,o), +(418,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,28,o), +(78,159,o), +(78,364,cs), +(78,569,o), +(210,700,o), +(418,700,cs), +(626,700,o), +(758,569,o), +(758,364,cs), +(758,159,o), +(626,28,o), +(418,28,cs) +); +} +); +width = 836; +}, +{ +anchors = ( +{ +name = bottom; +pos = (440,0); +}, +{ +name = center; +pos = (440,365); +}, +{ +name = ogonek; +pos = (796,10); +}, +{ +name = top; +pos = (440,729); +}, +{ +name = topleft; +pos = (14,729); +}, +{ +name = topright; +pos = (623,709); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(708,-10,o), +(865,129,o), +(865,365,cs), +(865,600,o), +(708,739,o), +(441,739,cs), +(173,739,o), +(14,600,o), +(14,365,cs), +(14,129,o), +(173,-10,o), +(441,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(317,170,o), +(249,239,o), +(249,365,cs), +(249,491,o), +(317,560,o), +(441,560,cs), +(564,560,o), +(631,491,o), +(631,365,cs), +(631,239,o), +(564,170,o), +(441,170,cs) +); +} +); +width = 879; +}, +{ +anchors = ( +{ +name = bottom; +pos = (400,0); +}, +{ +name = center; +pos = (400,365); +}, +{ +name = ogonek; +pos = (681,10); +}, +{ +name = top; +pos = (400,729); +}, +{ +name = topleft; +pos = (60,729); +}, +{ +name = topright; +pos = (563,699); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(590,-8,o), +(713,140,o), +(713,364,cs), +(713,587,o), +(592,736,o), +(400,736,cs), +(209,736,o), +(88,588,o), +(88,364,cs), +(88,142,o), +(208,-8,o), +(400,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,28,o), +(127,163,o), +(127,364,cs), +(127,565,o), +(227,700,o), +(400,700,cs), +(572,700,o), +(674,566,o), +(674,364,cs), +(674,164,o), +(573,28,o), +(400,28,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 801; +}, +{ +anchors = ( +{ +name = bottom; +pos = (401,0); +}, +{ +name = center; +pos = (401,365); +}, +{ +name = ogonek; +pos = (705,10); +}, +{ +name = top; +pos = (401,729); +}, +{ +name = topleft; +pos = (36,729); +}, +{ +name = topright; +pos = (554,709); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(635,-10,o), +(784,121,o), +(784,365,cs), +(784,608,o), +(635,739,o), +(411,739,cs), +(187,739,o), +(38,608,o), +(38,365,cs), +(38,121,o), +(187,-10,o), +(411,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,166,o), +(251,222,o), +(251,365,cs), +(251,507,o), +(315,563,o), +(411,563,cs), +(507,563,o), +(571,507,o), +(571,365,cs), +(571,222,o), +(507,166,o), +(411,166,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(613,-10,o), +(754,122,o), +(754,365,cs), +(754,607,o), +(613,739,o), +(400,739,cs), +(188,739,o), +(47,607,o), +(47,365,cs), +(47,122,o), +(188,-10,o), +(400,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,166,o), +(252,223,o), +(252,365,cs), +(252,507,o), +(312,564,o), +(400,564,cs), +(489,564,o), +(548,506,o), +(548,365,cs), +(548,224,o), +(489,166,o), +(400,166,cs) +); +} +); +width = 801; +}, +{ +anchors = ( +{ +name = bottom; +pos = (166,0); +}, +{ +name = center; +pos = (241,365); +}, +{ +name = ogonek; +pos = (330,10); +}, +{ +name = top; +pos = (298,729); +}, +{ +name = topleft; +pos = (135,729); +}, +{ +name = topright; +pos = (387,699); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-9,o), +(339,93,o), +(393,350,cs), +(432,543,o), +(456,737,o), +(296,737,cs), +(201,737,o), +(127,655,o), +(69,373,cs), +(28,177,o), +(13,-9,o), +(166,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(44,20,o), +(64,193,o), +(101,373,cs), +(143,573,o), +(195,708,o), +(294,708,cs), +(412,708,o), +(400,543,o), +(361,356,cs), +(313,126,o), +(255,20,o), +(168,20,cs) +); +} +); +width = 419; +}, +{ +anchors = ( +{ +name = bottom; +pos = (194,0); +}, +{ +name = center; +pos = (273,365); +}, +{ +name = ogonek; +pos = (399,10); +}, +{ +name = top; +pos = (338,729); +}, +{ +name = topleft; +pos = (117,729); +}, +{ +name = topright; +pos = (419,709); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,-10,o), +(446,129,o), +(492,351,cs), +(541,582,o), +(516,739,o), +(322,739,cs), +(162,739,o), +(85,600,o), +(40,382,cs), +(-6,160,o), +(7,-10,o), +(211,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,146,o), +(191,249,o), +(217,376,cs), +(246,516,o), +(270,583,o), +(308,583,cs), +(359,583,o), +(342,480,o), +(317,363,cs), +(283,204,o), +(262,146,o), +(224,146,cs) +); +} +); +width = 492; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = center; +pos = (408,365); +}, +{ +name = ogonek; +pos = (625,10); +}, +{ +name = top; +pos = (460,729); +}, +{ +name = topleft; +pos = (139,729); +}, +{ +name = topright; +pos = (612,699); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(574,-10,o), +(730,165,o), +(739,420,cs), +(745,610,o), +(637,739,o), +(461,739,cs), +(240,739,o), +(84,564,o), +(75,309,cs), +(69,118,o), +(179,-10,o), +(354,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(207,25,o), +(109,126,o), +(115,309,cs), +(123,547,o), +(258,704,o), +(455,704,cs), +(609,704,o), +(705,600,o), +(699,420,cs), +(691,183,o), +(555,25,o), +(357,25,cs) +); +} +); +width = 771; +}, +{ +anchors = ( +{ +name = bottom; +pos = (357,0); +}, +{ +name = center; +pos = (414,365); +}, +{ +name = ogonek; +pos = (653,10); +}, +{ +name = top; +pos = (472,729); +}, +{ +name = topleft; +pos = (120,729); +}, +{ +name = topright; +pos = (538,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(614,-9,o), +(772,148,o), +(781,392,cs), +(788,599,o), +(667,738,o), +(442,738,cs), +(215,738,o), +(56,581,o), +(47,337,cs), +(40,130,o), +(161,-9,o), +(387,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,160,o), +(250,215,o), +(254,329,cs), +(259,474,o), +(328,569,o), +(439,569,cs), +(524,569,o), +(578,514,o), +(574,400,cs), +(569,255,o), +(502,160,o), +(390,160,cs) +); +} +); +width = 790; +}, +{ +anchors = ( +{ +name = bottom; +pos = (393,-9); +}, +{ +name = center; +pos = (447,365); +}, +{ +name = ogonek; +pos = (709,10); +}, +{ +name = top; +pos = (477,729); +}, +{ +name = topleft; +pos = (123,729); +}, +{ +name = topright; +pos = (630,709); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(805,155,o), +(814,397,cs), +(821,608,o), +(689,739,o), +(477,739,cs), +(236,739,o), +(68,575,o), +(59,333,cs), +(52,121,o), +(185,-9,o), +(398,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(214,27,o), +(92,133,o), +(99,330,cs), +(107,559,o), +(251,703,o), +(472,703,cs), +(659,703,o), +(781,597,o), +(774,400,cs), +(766,171,o), +(622,27,o), +(400,27,cs) +); +} +); +width = 829; +}, +{ +anchors = ( +{ +name = bottom; +pos = (399,0); +}, +{ +name = center; +pos = (463,365); +}, +{ +name = ogonek; +pos = (745,10); +}, +{ +name = top; +pos = (506,729); +}, +{ +name = topleft; +pos = (114,729); +}, +{ +name = topright; +pos = (659,709); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(686,-10,o), +(864,148,o), +(873,387,cs), +(880,601,o), +(737,738,o), +(480,738,cs), +(219,738,o), +(40,580,o), +(32,341,cs), +(24,128,o), +(169,-10,o), +(424,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,169,o), +(257,233,o), +(261,350,cs), +(265,470,o), +(336,559,o), +(471,559,cs), +(577,559,o), +(647,495,o), +(643,379,cs), +(639,260,o), +(569,169,o), +(434,169,cs) +); +} +); +width = 867; +} +); +metricRight = "=|"; +unicode = 79; +userData = { +KernOnName = O; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_E_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_E_.glyph new file mode 100644 index 00000000..d6ec5d34 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_E_.glyph @@ -0,0 +1,1486 @@ +{ +glyphname = OE; +kernLeft = KO_O; +kernRight = KO_E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (263,0); +}, +{ +name = top; +pos = (263,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(557,0,l), +(557,28,l), +(352,28,l), +(352,361,l), +(526,361,l), +(526,389,l), +(352,389,l), +(352,701,l), +(557,701,l), +(557,729,l), +(245,729,ls), +(90,729,o), +(38,579,o), +(38,364,cs), +(38,148,o), +(94,0,o), +(245,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(141,28,o), +(71,109,o), +(71,364,cs), +(71,620,o), +(141,701,o), +(244,701,cs), +(321,701,l), +(321,28,l), +(244,28,ls) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,-10,o), +(256,-7,o), +(274,0,c), +(516,0,l), +(516,28,l), +(311,28,l), +(311,361,l), +(481,361,l), +(481,389,l), +(311,389,l), +(311,701,l), +(516,701,l), +(516,729,l), +(274,729,l), +(256,736,o), +(236,739,o), +(215,739,cs), +(114,739,o), +(45,668,o), +(45,365,cs), +(45,61,o), +(114,-10,o), +(215,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(105,19,o), +(78,158,o), +(78,365,cs), +(78,571,o), +(105,710,o), +(215,710,cs), +(241,710,o), +(263,705,o), +(280,695,c), +(280,34,l), +(263,24,o), +(241,19,o), +(215,19,cs) +); +} +); +width = 526; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = top; +pos = (315,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(626,0,l), +(626,157,l), +(471,157,l), +(471,299,l), +(612,299,l), +(612,445,l), +(471,445,l), +(471,572,l), +(626,572,l), +(626,729,l), +(294,729,ls), +(64,729,o), +(15,578,o), +(15,365,cs), +(15,95,o), +(109,0,o), +(299,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,157,o), +(195,205,o), +(195,361,cs), +(195,502,o), +(205,572,o), +(267,572,cs), +(294,572,l), +(294,157,l), +(267,157,ls) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-9,o), +(299,-6,o), +(319,0,c), +(611,0,l), +(611,157,l), +(456,157,l), +(456,299,l), +(597,299,l), +(597,445,l), +(456,445,l), +(456,572,l), +(611,572,l), +(611,729,l), +(319,729,l), +(297,735,o), +(275,738,o), +(250,738,cs), +(69,738,o), +(16,593,o), +(16,365,cs), +(16,136,o), +(69,-9,o), +(245,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,145,o), +(197,215,o), +(197,365,cs), +(197,514,o), +(201,584,o), +(259,584,cs), +(265,584,o), +(273,583,o), +(279,580,c), +(279,149,l), +(273,146,o), +(265,145,o), +(259,145,cs) +); +} +); +width = 630; +}, +{ +anchors = ( +{ +name = bottom; +pos = (554,0); +}, +{ +name = top; +pos = (554,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,-10,o), +(511,-6,o), +(550,0,c), +(1086,0,l), +(1086,37,l), +(593,37,l), +(593,358,l), +(1033,358,l), +(1033,392,l), +(593,392,l), +(593,693,l), +(1086,693,l), +(1086,729,l), +(550,729,l), +(511,735,o), +(466,739,o), +(434,739,cs), +(181,739,o), +(36,587,o), +(36,365,cs), +(36,142,o), +(181,-10,o), +(434,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,26,o), +(76,163,o), +(76,365,cs), +(76,566,o), +(209,703,o), +(433,703,cs), +(474,703,o), +(523,698,o), +(555,691,c), +(555,38,l), +(523,31,o), +(475,26,o), +(433,26,cs) +); +} +); +width = 1108; +}, +{ +anchors = ( +{ +name = bottom; +pos = (573,0); +}, +{ +name = top; +pos = (573,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(461,-10,o), +(515,-6,o), +(551,0,c), +(1124,0,l), +(1124,178,l), +(754,178,l), +(754,285,l), +(1068,285,l), +(1068,451,l), +(754,451,l), +(754,551,l), +(1124,551,l), +(1124,729,l), +(551,729,l), +(515,735,o), +(461,739,o), +(417,739,cs), +(166,739,o), +(12,600,o), +(12,365,cs), +(12,129,o), +(166,-10,o), +(417,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,168,o), +(243,231,o), +(243,365,cs), +(243,498,o), +(312,561,o), +(455,561,cs), +(487,561,o), +(516,557,o), +(544,548,c), +(544,181,l), +(516,172,o), +(487,168,o), +(456,168,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(508,-6,o), +(551,0,c), +(1124,0,l), +(1124,178,l), +(754,178,l), +(754,285,l), +(1068,285,l), +(1068,451,l), +(754,451,l), +(754,551,l), +(1124,551,l), +(1124,729,l), +(551,729,l), +(508,735,o), +(457,739,o), +(406,739,cs), +(158,739,o), +(12,600,o), +(12,365,cs), +(12,129,o), +(158,-10,o), +(406,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,168,o), +(243,236,o), +(243,365,cs), +(243,493,o), +(312,561,o), +(445,561,cs), +(483,561,o), +(520,556,o), +(544,548,c), +(544,181,l), +(520,173,o), +(483,168,o), +(445,168,cs) +); +} +); +width = 1146; +}, +{ +anchors = ( +{ +name = bottom; +pos = (243,0); +}, +{ +name = top; +pos = (243,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(557,0,l), +(557,28,l), +(352,28,l), +(352,361,l), +(526,361,l), +(526,389,l), +(352,389,l), +(352,701,l), +(557,701,l), +(557,729,l), +(245,729,ls), +(90,729,o), +(38,579,o), +(38,364,cs), +(38,148,o), +(94,0,o), +(245,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(141,28,o), +(71,109,o), +(71,364,cs), +(71,620,o), +(141,701,o), +(244,701,cs), +(321,701,l), +(321,28,l), +(244,28,ls) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,-10,o), +(236,-7,o), +(254,0,c), +(496,0,l), +(496,28,l), +(291,28,l), +(291,361,l), +(461,361,l), +(461,389,l), +(291,389,l), +(291,701,l), +(496,701,l), +(496,729,l), +(254,729,l), +(236,736,o), +(216,739,o), +(195,739,cs), +(94,739,o), +(25,668,o), +(25,365,cs), +(25,61,o), +(94,-10,o), +(195,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(85,19,o), +(58,158,o), +(58,365,cs), +(58,571,o), +(85,710,o), +(195,710,cs), +(221,710,o), +(243,705,o), +(260,695,c), +(260,34,l), +(243,24,o), +(221,19,o), +(195,19,cs) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = bottom; +pos = (306,0); +}, +{ +name = top; +pos = (306,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(626,0,l), +(626,157,l), +(471,157,l), +(471,299,l), +(612,299,l), +(612,445,l), +(471,445,l), +(471,572,l), +(626,572,l), +(626,729,l), +(294,729,ls), +(64,729,o), +(15,578,o), +(15,365,cs), +(15,95,o), +(109,0,o), +(299,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,157,o), +(195,205,o), +(195,361,cs), +(195,502,o), +(205,572,o), +(267,572,cs), +(294,572,l), +(294,157,l), +(267,157,ls) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,-9,o), +(290,-6,o), +(310,0,c), +(602,0,l), +(602,157,l), +(447,157,l), +(447,299,l), +(588,299,l), +(588,445,l), +(447,445,l), +(447,572,l), +(602,572,l), +(602,729,l), +(310,729,l), +(288,735,o), +(266,738,o), +(241,738,cs), +(60,738,o), +(7,593,o), +(7,365,cs), +(7,136,o), +(60,-9,o), +(236,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,145,o), +(188,215,o), +(188,365,cs), +(188,514,o), +(192,584,o), +(250,584,cs), +(256,584,o), +(264,583,o), +(270,580,c), +(270,149,l), +(264,146,o), +(256,145,o), +(250,145,cs) +); +} +); +width = 611; +}, +{ +anchors = ( +{ +name = bottom; +pos = (501,0); +}, +{ +name = top; +pos = (501,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(425,-10,o), +(464,-6,o), +(500,0,c), +(985,0,l), +(985,37,l), +(542,37,l), +(542,358,l), +(937,358,l), +(937,392,l), +(542,392,l), +(542,693,l), +(985,693,l), +(985,729,l), +(500,729,l), +(464,735,o), +(425,739,o), +(395,739,cs), +(166,739,o), +(35,587,o), +(35,365,cs), +(35,142,o), +(166,-10,o), +(395,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,26,o), +(76,163,o), +(76,365,cs), +(76,566,o), +(194,703,o), +(395,703,cs), +(432,703,o), +(475,698,o), +(504,691,c), +(504,38,l), +(475,31,o), +(432,26,o), +(395,26,cs) +); +} +); +width = 1002; +}, +{ +anchors = ( +{ +name = bottom; +pos = (527,0); +}, +{ +name = top; +pos = (527,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,-10,o), +(466,-6,o), +(500,0,c), +(1046,0,l), +(1046,172,l), +(696,172,l), +(696,288,l), +(993,288,l), +(993,449,l), +(696,449,l), +(696,557,l), +(1046,557,l), +(1046,729,l), +(500,729,l), +(466,735,o), +(419,739,o), +(382,739,cs), +(149,739,o), +(2,595,o), +(2,365,cs), +(2,129,o), +(143,-10,o), +(382,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,162,o), +(210,234,o), +(210,365,cs), +(210,495,o), +(279,567,o), +(404,567,cs), +(439,567,o), +(466,563,o), +(493,554,c), +(493,175,l), +(466,166,o), +(439,162,o), +(404,162,cs) +); +} +); +width = 1054; +}, +{ +anchors = ( +{ +name = bottom; +pos = (544,0); +}, +{ +name = top; +pos = (544,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(456,-10,o), +(501,-6,o), +(540,0,c), +(1076,0,l), +(1076,37,l), +(583,37,l), +(583,358,l), +(1023,358,l), +(1023,392,l), +(583,392,l), +(583,693,l), +(1076,693,l), +(1076,729,l), +(540,729,l), +(501,735,o), +(456,739,o), +(424,739,cs), +(171,739,o), +(26,587,o), +(26,365,cs), +(26,142,o), +(171,-10,o), +(424,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,26,o), +(66,163,o), +(66,365,cs), +(66,566,o), +(199,703,o), +(423,703,cs), +(464,703,o), +(513,698,o), +(545,691,c), +(545,38,l), +(513,31,o), +(465,26,o), +(423,26,cs) +); +} +); +width = 1088; +}, +{ +anchors = ( +{ +name = bottom; +pos = (563,0); +}, +{ +name = top; +pos = (563,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(461,-10,o), +(515,-6,o), +(551,0,c), +(1124,0,l), +(1124,178,l), +(754,178,l), +(754,285,l), +(1068,285,l), +(1068,451,l), +(754,451,l), +(754,551,l), +(1124,551,l), +(1124,729,l), +(551,729,l), +(515,735,o), +(461,739,o), +(417,739,cs), +(166,739,o), +(12,600,o), +(12,365,cs), +(12,129,o), +(166,-10,o), +(417,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,168,o), +(243,231,o), +(243,365,cs), +(243,498,o), +(312,561,o), +(455,561,cs), +(487,561,o), +(516,557,o), +(544,548,c), +(544,181,l), +(516,172,o), +(487,168,o), +(456,168,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,-10,o), +(498,-6,o), +(541,0,c), +(1114,0,l), +(1114,178,l), +(744,178,l), +(744,285,l), +(1058,285,l), +(1058,451,l), +(744,451,l), +(744,551,l), +(1114,551,l), +(1114,729,l), +(541,729,l), +(498,735,o), +(447,739,o), +(396,739,cs), +(148,739,o), +(2,600,o), +(2,365,cs), +(2,129,o), +(148,-10,o), +(396,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,168,o), +(233,236,o), +(233,365,cs), +(233,493,o), +(302,561,o), +(435,561,cs), +(473,561,o), +(510,556,o), +(534,548,c), +(534,181,l), +(510,173,o), +(473,168,o), +(435,168,cs) +); +} +); +width = 1121; +}, +{ +anchors = ( +{ +name = bottom; +pos = (514,0); +}, +{ +name = top; +pos = (514,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(440,-10,o), +(477,-6,o), +(513,0,c), +(988,0,l), +(988,37,l), +(553,37,l), +(553,358,l), +(941,358,l), +(941,392,l), +(553,392,l), +(553,693,l), +(988,693,l), +(988,729,l), +(513,729,l), +(477,735,o), +(440,739,o), +(410,739,cs), +(185,739,o), +(56,587,o), +(56,365,cs), +(56,142,o), +(185,-10,o), +(410,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,26,o), +(97,163,o), +(97,365,cs), +(97,566,o), +(213,703,o), +(410,703,cs), +(446,703,o), +(488,698,o), +(517,691,c), +(517,38,l), +(488,31,o), +(446,26,o), +(410,26,cs) +); +} +); +width = 1027; +}, +{ +anchors = ( +{ +name = bottom; +pos = (542,0); +}, +{ +name = top; +pos = (542,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(436,-10,o), +(481,-6,o), +(515,0,c), +(1050,0,l), +(1050,172,l), +(709,172,l), +(709,288,l), +(999,288,l), +(999,449,l), +(709,449,l), +(709,557,l), +(1050,557,l), +(1050,729,l), +(515,729,l), +(481,735,o), +(436,739,o), +(399,739,cs), +(171,739,o), +(27,595,o), +(27,365,cs), +(27,129,o), +(165,-10,o), +(399,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,162,o), +(233,234,o), +(233,365,cs), +(233,495,o), +(300,567,o), +(421,567,cs), +(455,567,o), +(481,563,o), +(508,554,c), +(508,175,l), +(481,166,o), +(455,162,o), +(421,162,cs) +); +} +); +width = 1082; +}, +{ +anchors = ( +{ +name = bottom; +pos = (212,0); +}, +{ +name = top; +pos = (363,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,-9,o), +(226,-6,o), +(246,0,c), +(466,0,l), +(472,28,l), +(268,28,l), +(338,361,l), +(511,361,l), +(516,389,l), +(343,389,l), +(408,701,l), +(612,701,l), +(617,729,l), +(381,729,l), +(362,735,o), +(338,739,o), +(315,739,cs), +(200,739,o), +(126,665,o), +(71,382,cs), +(17,114,o), +(52,-9,o), +(183,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(79,20,o), +(56,128,o), +(104,380,cs), +(142,576,o), +(189,710,o), +(316,710,cs), +(334,710,o), +(357,707,o), +(377,698,c), +(237,27,l), +(222,22,o), +(204,20,o), +(186,20,cs) +); +} +); +width = 530; +}, +{ +anchors = ( +{ +name = bottom; +pos = (259,0); +}, +{ +name = top; +pos = (410,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(206,-9,o), +(230,-5,o), +(252,0,c), +(553,0,l), +(585,157,l), +(431,157,l), +(460,299,l), +(600,299,l), +(631,445,l), +(491,445,l), +(517,572,l), +(673,572,l), +(704,729,l), +(365,729,l), +(347,735,o), +(324,739,o), +(304,739,cs), +(146,739,o), +(81,606,o), +(42,391,cs), +(-9,108,o), +(43,-9,o), +(180,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,146,o), +(180,186,o), +(217,377,cs), +(249,540,o), +(265,583,o), +(309,583,cs), +(325,583,o), +(335,577,o), +(342,567,c), +(255,149,l), +(249,147,o), +(243,146,o), +(237,146,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,-10,o), +(232,-6,o), +(252,0,c), +(553,0,l), +(585,157,l), +(431,157,l), +(460,299,l), +(600,299,l), +(631,445,l), +(491,445,l), +(517,572,l), +(673,572,l), +(704,729,l), +(375,729,l), +(352,736,o), +(324,739,o), +(305,739,cs), +(162,739,o), +(92,635,o), +(40,382,cs), +(-6,160,o), +(7,-10,o), +(179,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,146,o), +(191,249,o), +(217,376,cs), +(250,539,o), +(270,583,o), +(309,583,cs), +(325,583,o), +(335,577,o), +(342,567,c), +(255,149,l), +(249,147,o), +(243,146,o), +(231,146,cs) +); +} +); +width = 629; +}, +{ +anchors = ( +{ +name = bottom; +pos = (484,0); +}, +{ +name = top; +pos = (635,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,-10,o), +(456,-6,o), +(485,0,c), +(944,0,l), +(951,36,l), +(521,36,l), +(588,358,l), +(973,358,l), +(980,392,l), +(595,392,l), +(658,693,l), +(1088,693,l), +(1095,729,l), +(604,729,l), +(558,737,o), +(520,739,o), +(481,739,cs), +(261,739,o), +(122,603,o), +(85,396,cs), +(45,146,o), +(153,-10,o), +(383,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,26,o), +(86,163,o), +(126,394,cs), +(159,580,o), +(284,703,o), +(478,703,cs), +(531,703,o), +(579,697,o), +(620,686,c), +(486,38,l), +(461,31,o), +(428,26,o), +(393,26,cs) +); +} +); +width = 1035; +}, +{ +anchors = ( +{ +name = bottom; +pos = (486,0); +}, +{ +name = top; +pos = (637,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(463,-6,o), +(495,0,c), +(994,0,l), +(1029,172,l), +(693,172,l), +(716,285,l), +(1002,285,l), +(1035,446,l), +(749,446,l), +(772,557,l), +(1106,557,l), +(1142,729,l), +(575,729,l), +(542,735,o), +(504,739,o), +(465,739,cs), +(240,739,o), +(85,613,o), +(53,400,cs), +(15,149,o), +(142,-10,o), +(382,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(299,160,o), +(236,240,o), +(259,384,cs), +(278,506,o), +(350,569,o), +(469,569,cs), +(506,569,o), +(543,563,o), +(570,550,c), +(490,165,l), +(474,162,o), +(457,160,o), +(435,160,cs) +); +} +); +width = 1084; +}, +{ +anchors = ( +{ +name = bottom; +pos = (518,0); +}, +{ +name = top; +pos = (669,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-10,o), +(483,-6,o), +(515,0,c), +(1066,0,l), +(1074,37,l), +(553,37,l), +(620,358,l), +(1095,358,l), +(1102,392,l), +(628,392,l), +(690,693,l), +(1210,693,l), +(1217,729,l), +(633,729,l), +(583,737,o), +(540,739,o), +(495,739,cs), +(259,739,o), +(101,611,o), +(65,396,cs), +(24,147,o), +(147,-10,o), +(403,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,26,o), +(65,163,o), +(104,391,cs), +(138,587,o), +(279,703,o), +(491,703,cs), +(551,703,o), +(604,697,o), +(650,686,c), +(516,38,l), +(489,31,o), +(451,26,o), +(412,26,cs) +); +} +); +width = 1143; +}, +{ +anchors = ( +{ +name = bottom; +pos = (539,0); +}, +{ +name = top; +pos = (690,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(443,-10,o), +(486,-6,o), +(519,0,c), +(1112,0,l), +(1149,179,l), +(742,179,l), +(764,282,l), +(1118,282,l), +(1153,449,l), +(799,449,l), +(820,550,l), +(1223,550,l), +(1260,729,l), +(596,729,l), +(561,735,o), +(520,739,o), +(481,739,cs), +(243,739,o), +(84,613,o), +(52,400,cs), +(15,150,o), +(148,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,168,o), +(246,248,o), +(267,384,cs), +(285,502,o), +(361,561,o), +(484,561,cs), +(528,561,o), +(565,554,o), +(590,542,c), +(514,172,l), +(495,169,o), +(473,168,o), +(456,168,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,-10,o), +(486,-6,o), +(519,0,c), +(1112,0,l), +(1149,179,l), +(742,179,l), +(764,282,l), +(1118,282,l), +(1153,449,l), +(799,449,l), +(820,550,l), +(1223,550,l), +(1260,729,l), +(596,729,l), +(561,735,o), +(520,739,o), +(474,739,cs), +(229,739,o), +(70,613,o), +(38,400,cs), +(1,150,o), +(134,-10,o), +(394,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,168,o), +(246,248,o), +(267,384,cs), +(285,502,o), +(361,561,o), +(484,561,cs), +(528,561,o), +(565,554,o), +(590,542,c), +(514,172,l), +(495,169,o), +(473,168,o), +(456,168,cs) +); +} +); +width = 1190; +} +); +metricLeft = O; +metricRight = E; +unicode = 338; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_acute.glyph new file mode 100644 index 00000000..64dcbae1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_acute.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Oacute; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (155,57); +ref = acutecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (135,51); +ref = acutecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (358,57); +ref = acutecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (319,56); +ref = acutecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (155,57); +ref = acutecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (138,51); +ref = acutecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (350,57); +ref = acutecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (284,51); +ref = acutecomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (358,57); +ref = acutecomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (333,56); +ref = acutecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (344,57); +ref = acutecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (291,51); +ref = acutecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (157,57); +ref = acutecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (143,51); +ref = acutecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (318,57); +ref = acutecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (277,51); +ref = acutecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (334,57); +ref = acutecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (306,56); +ref = acutecomb; +} +); +width = 867; +} +); +unicode = 211; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflex.glyph new file mode 100644 index 00000000..4b74e8b1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflex.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Ocircumflex; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (82,57); +ref = circumflexcomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (30,51); +ref = circumflexcomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (145,56); +ref = circumflexcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (82,57); +ref = circumflexcomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (33,51); +ref = circumflexcomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (241,57); +ref = circumflexcomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (149,51); +ref = circumflexcomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (237,57); +ref = circumflexcomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (159,56); +ref = circumflexcomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (162,51); +ref = circumflexcomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (83,57); +ref = circumflexcomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (36,51); +ref = circumflexcomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (208,57); +ref = circumflexcomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (143,51); +ref = circumflexcomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (211,57); +ref = circumflexcomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (130,56); +ref = circumflexcomb; +} +); +width = 867; +} +); +unicode = 212; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexacute.glyph new file mode 100644 index 00000000..086bc83d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexacute.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Ocircumflexacute; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (82,57); +ref = circumflexcomb_acutecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (41,51); +ref = circumflexcomb_acutecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb_acutecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (169,56); +ref = circumflexcomb_acutecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (82,57); +ref = circumflexcomb_acutecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (44,51); +ref = circumflexcomb_acutecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (241,57); +ref = circumflexcomb_acutecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (149,51); +ref = circumflexcomb_acutecomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (237,57); +ref = circumflexcomb_acutecomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (183,56); +ref = circumflexcomb_acutecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb_acutecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (161,51); +ref = circumflexcomb_acutecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (83,57); +ref = circumflexcomb_acutecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (48,51); +ref = circumflexcomb_acutecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (208,57); +ref = circumflexcomb_acutecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (145,51); +ref = circumflexcomb_acutecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (211,57); +ref = circumflexcomb_acutecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (153,56); +ref = circumflexcomb_acutecomb; +} +); +width = 867; +} +); +unicode = 7888; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexdotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexdotbelow.glyph new file mode 100644 index 00000000..e26812bd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexdotbelow.glyph @@ -0,0 +1,327 @@ +{ +color = 6; +glyphname = Ocircumflexdotbelow; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (148,0); +ref = dotbelowcomb; +}, +{ +pos = (82,57); +ref = circumflexcomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (129,0); +ref = dotbelowcomb; +}, +{ +pos = (30,51); +ref = circumflexcomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (344,0); +ref = dotbelowcomb; +}, +{ +pos = (237,57); +ref = circumflexcomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (283,0); +ref = dotbelowcomb; +}, +{ +pos = (145,56); +ref = circumflexcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (148,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (82,57); +ref = circumflexcomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (132,0); +ref = dotbelowcomb; +}, +{ +pos = (33,51); +ref = circumflexcomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (333,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (241,57); +ref = circumflexcomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (271,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (149,51); +ref = circumflexcomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (344,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (237,57); +ref = circumflexcomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (297,0); +ref = dotbelowcomb; +}, +{ +pos = (159,56); +ref = circumflexcomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (327,0); +ref = dotbelowcomb; +}, +{ +pos = (237,57); +ref = circumflexcomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (280,0); +ref = dotbelowcomb; +}, +{ +pos = (162,51); +ref = circumflexcomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (156,0); +ref = dotbelowcomb; +}, +{ +pos = (83,57); +ref = circumflexcomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (129,0); +ref = dotbelowcomb; +}, +{ +pos = (36,51); +ref = circumflexcomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (334,0); +ref = dotbelowcomb; +}, +{ +pos = (208,57); +ref = circumflexcomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (286,0); +ref = dotbelowcomb; +}, +{ +pos = (143,51); +ref = circumflexcomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (376,-9); +ref = dotbelowcomb; +}, +{ +pos = (211,57); +ref = circumflexcomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (302,0); +ref = dotbelowcomb; +}, +{ +pos = (130,56); +ref = circumflexcomb; +} +); +width = 867; +} +); +unicode = 7896; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexdotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..9636bd14 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexdotbelow.ss01.glyph @@ -0,0 +1,320 @@ +{ +color = 6; +glyphname = Ocircumflexdotbelow.ss01; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (156,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (82,57); +ref = circumflexcomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (118,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (30,51); +ref = circumflexcomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (357,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (237,57); +ref = circumflexcomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (295,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (145,56); +ref = circumflexcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (156,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (82,57); +ref = circumflexcomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (121,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (33,51); +ref = circumflexcomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (346,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (241,57); +ref = circumflexcomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = O; +}, +{ +pos = (261,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (150,51); +ref = circumflexcomb; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (369,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (249,57); +ref = circumflexcomb; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (309,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (159,56); +ref = circumflexcomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (340,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (237,57); +ref = circumflexcomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (267,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (162,51); +ref = circumflexcomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (164,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (83,57); +ref = circumflexcomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (36,51); +ref = circumflexcomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (347,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (208,57); +ref = circumflexcomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (143,51); +ref = circumflexcomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (387,-9); +ref = dotbelowcomb.ss01; +}, +{ +pos = (211,57); +ref = circumflexcomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (316,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (130,56); +ref = circumflexcomb; +} +); +width = 867; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexgrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexgrave.glyph new file mode 100644 index 00000000..69275fbe --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexgrave.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Ocircumflexgrave; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (82,57); +ref = circumflexcomb_gravecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (41,51); +ref = circumflexcomb_gravecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb_gravecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (169,56); +ref = circumflexcomb_gravecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (82,57); +ref = circumflexcomb_gravecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (44,51); +ref = circumflexcomb_gravecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (241,57); +ref = circumflexcomb_gravecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (149,51); +ref = circumflexcomb_gravecomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (237,57); +ref = circumflexcomb_gravecomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (183,56); +ref = circumflexcomb_gravecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb_gravecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (161,51); +ref = circumflexcomb_gravecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (83,57); +ref = circumflexcomb_gravecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (48,51); +ref = circumflexcomb_gravecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (208,57); +ref = circumflexcomb_gravecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (145,51); +ref = circumflexcomb_gravecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (211,57); +ref = circumflexcomb_gravecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (153,56); +ref = circumflexcomb_gravecomb; +} +); +width = 867; +} +); +unicode = 7890; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexhookabove.glyph new file mode 100644 index 00000000..e9b836bd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflexhookabove.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Ocircumflexhookabove; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (82,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (41,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (169,56); +ref = circumflexcomb_hookabovecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (82,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (44,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (241,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (149,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (237,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (183,56); +ref = circumflexcomb_hookabovecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (161,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (83,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (48,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (208,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (145,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (211,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (153,56); +ref = circumflexcomb_hookabovecomb; +} +); +width = 867; +} +); +unicode = 7892; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflextilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflextilde.glyph new file mode 100644 index 00000000..4b8323fc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_circumflextilde.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Ocircumflextilde; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (82,57); +ref = circumflexcomb_tildecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (41,51); +ref = circumflexcomb_tildecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb_tildecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (169,56); +ref = circumflexcomb_tildecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (82,57); +ref = circumflexcomb_tildecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (44,51); +ref = circumflexcomb_tildecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (241,57); +ref = circumflexcomb_tildecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (149,51); +ref = circumflexcomb_tildecomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (237,57); +ref = circumflexcomb_tildecomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (183,56); +ref = circumflexcomb_tildecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,57); +ref = circumflexcomb_tildecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (162,51); +ref = circumflexcomb_tildecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (83,57); +ref = circumflexcomb_tildecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (47,51); +ref = circumflexcomb_tildecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (201,57); +ref = circumflexcomb_tildecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (145,51); +ref = circumflexcomb_tildecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (211,57); +ref = circumflexcomb_tildecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (161,56); +ref = circumflexcomb_tildecomb; +} +); +width = 867; +} +); +unicode = 7894; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_dieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_dieresis.glyph new file mode 100644 index 00000000..f48154c9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_dieresis.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Odieresis; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (93,57); +ref = dieresiscomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (22,51); +ref = dieresiscomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (239,57); +ref = dieresiscomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (153,51); +ref = dieresiscomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (93,57); +ref = dieresiscomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (25,51); +ref = dieresiscomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (243,57); +ref = dieresiscomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (153,51); +ref = dieresiscomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (239,57); +ref = dieresiscomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (167,51); +ref = dieresiscomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (239,57); +ref = dieresiscomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (166,51); +ref = dieresiscomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (89,57); +ref = dieresiscomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (21,51); +ref = dieresiscomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (213,57); +ref = dieresiscomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (143,51); +ref = dieresiscomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (215,57); +ref = dieresiscomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (137,51); +ref = dieresiscomb; +} +); +width = 867; +} +); +unicode = 214; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_dieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_dieresis.ss01.glyph new file mode 100644 index 00000000..ebb2f3d3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_dieresis.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Odieresis.ss01; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (104,57); +ref = dieresiscomb.ss01; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (23,51); +ref = dieresiscomb.ss01; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (272,57); +ref = dieresiscomb.ss01; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (175,51); +ref = dieresiscomb.ss01; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (104,57); +ref = dieresiscomb.ss01; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (26,51); +ref = dieresiscomb.ss01; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (270,57); +ref = dieresiscomb.ss01; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = O; +}, +{ +pos = (166,51); +ref = dieresiscomb.ss01; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (284,57); +ref = dieresiscomb.ss01; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (189,51); +ref = dieresiscomb.ss01; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (264,57); +ref = dieresiscomb.ss01; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (178,51); +ref = dieresiscomb.ss01; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (102,57); +ref = dieresiscomb.ss01; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (29,51); +ref = dieresiscomb.ss01; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (235,57); +ref = dieresiscomb.ss01; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (159,51); +ref = dieresiscomb.ss01; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (252,57); +ref = dieresiscomb.ss01; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (166,51); +ref = dieresiscomb.ss01; +} +); +width = 867; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_dotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_dotbelow.glyph new file mode 100644 index 00000000..603e0e4e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_dotbelow.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Odotbelow; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (148,0); +ref = dotbelowcomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (129,0); +ref = dotbelowcomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (344,0); +ref = dotbelowcomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (283,0); +ref = dotbelowcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (148,0); +ref = dotbelowcomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (132,0); +ref = dotbelowcomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (333,0); +ref = dotbelowcomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (271,0); +ref = dotbelowcomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (344,0); +ref = dotbelowcomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (297,0); +ref = dotbelowcomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (327,0); +ref = dotbelowcomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (280,0); +ref = dotbelowcomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (156,0); +ref = dotbelowcomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (129,0); +ref = dotbelowcomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (334,0); +ref = dotbelowcomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (286,0); +ref = dotbelowcomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (376,-9); +ref = dotbelowcomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (302,0); +ref = dotbelowcomb; +} +); +width = 867; +} +); +unicode = 7884; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_dotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_dotbelow.ss01.glyph new file mode 100644 index 00000000..7dc388c5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_dotbelow.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Odotbelow.ss01; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (156,0); +ref = dotbelowcomb.ss01; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (118,0); +ref = dotbelowcomb.ss01; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (357,0); +ref = dotbelowcomb.ss01; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (295,0); +ref = dotbelowcomb.ss01; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (156,0); +ref = dotbelowcomb.ss01; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (121,0); +ref = dotbelowcomb.ss01; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (346,0); +ref = dotbelowcomb.ss01; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = O; +}, +{ +pos = (261,0); +ref = dotbelowcomb.ss01; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (369,0); +ref = dotbelowcomb.ss01; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (309,0); +ref = dotbelowcomb.ss01; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (340,0); +ref = dotbelowcomb.ss01; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (267,0); +ref = dotbelowcomb.ss01; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (164,0); +ref = dotbelowcomb.ss01; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (347,0); +ref = dotbelowcomb.ss01; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (387,-9); +ref = dotbelowcomb.ss01; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (316,0); +ref = dotbelowcomb.ss01; +} +); +width = 867; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_grave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_grave.glyph new file mode 100644 index 00000000..6fb36d12 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_grave.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Ograve; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (77,57); +ref = gravecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (38,51); +ref = gravecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (272,57); +ref = gravecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (202,56); +ref = gravecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (77,57); +ref = gravecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (41,51); +ref = gravecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (271,57); +ref = gravecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (187,51); +ref = gravecomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (272,57); +ref = gravecomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (216,56); +ref = gravecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (265,57); +ref = gravecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (202,51); +ref = gravecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (80,57); +ref = gravecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (53,51); +ref = gravecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (241,57); +ref = gravecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (176,51); +ref = gravecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (247,57); +ref = gravecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (189,56); +ref = gravecomb; +} +); +width = 867; +} +); +unicode = 210; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_hookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_hookabove.glyph new file mode 100644 index 00000000..383a4494 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_hookabove.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Ohookabove; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (130,57); +ref = hookabovecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (108,50); +ref = hookabovecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (308,57); +ref = hookabovecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (283,51); +ref = hookabovecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (130,57); +ref = hookabovecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (111,50); +ref = hookabovecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (297,57); +ref = hookabovecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (233,51); +ref = hookabovecomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (308,57); +ref = hookabovecomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (297,51); +ref = hookabovecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (291,57); +ref = hookabovecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (245,51); +ref = hookabovecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (109,56); +ref = hookabovecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (107,49); +ref = hookabovecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (271,56); +ref = hookabovecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (217,50); +ref = hookabovecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (289,56); +ref = hookabovecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (254,48); +ref = hookabovecomb; +} +); +width = 867; +} +); +unicode = 7886; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_horn.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horn.glyph new file mode 100644 index 00000000..f781bd91 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horn.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Ohorn; +kernLeft = KO_O; +kernRight = KO_Ohorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (262,183); +ref = horncomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (299,167); +ref = horncomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (530,184); +ref = horncomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (579,99); +ref = horncomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (262,183); +ref = horncomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (302,167); +ref = horncomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (532,190); +ref = horncomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = O; +}, +{ +pos = (515,119); +ref = horncomb; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (542,184); +ref = horncomb; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (593,99); +ref = horncomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (520,190); +ref = horncomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (515,119); +ref = horncomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (294,183); +ref = horncomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (323,167); +ref = horncomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (520,189); +ref = horncomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (432,139); +ref = horncomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (535,184); +ref = horncomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (547,87); +ref = horncomb; +} +); +width = 867; +} +); +unicode = 416; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_hornacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_hornacute.glyph new file mode 100644 index 00000000..94deb6e2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_hornacute.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Ohornacute; +kernLeft = KO_O; +kernRight = KO_Ohorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (155,57); +ref = acutecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (135,51); +ref = acutecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (358,57); +ref = acutecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (319,56); +ref = acutecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (155,57); +ref = acutecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (138,51); +ref = acutecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (350,57); +ref = acutecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (285,51); +ref = acutecomb; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (370,57); +ref = acutecomb; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (333,56); +ref = acutecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (344,57); +ref = acutecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (291,51); +ref = acutecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (157,57); +ref = acutecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (143,51); +ref = acutecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (318,57); +ref = acutecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (277,51); +ref = acutecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (334,57); +ref = acutecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (306,56); +ref = acutecomb; +} +); +width = 867; +} +); +unicode = 7898; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_horndotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horndotbelow.glyph new file mode 100644 index 00000000..72f2b3b4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horndotbelow.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Ohorndotbelow; +kernLeft = KO_O; +kernRight = KO_Ohorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (148,0); +ref = dotbelowcomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (129,0); +ref = dotbelowcomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (344,0); +ref = dotbelowcomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (283,0); +ref = dotbelowcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (148,0); +ref = dotbelowcomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (132,0); +ref = dotbelowcomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (333,0); +ref = dotbelowcomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (272,0); +ref = dotbelowcomb; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (356,0); +ref = dotbelowcomb; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (297,0); +ref = dotbelowcomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (327,0); +ref = dotbelowcomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (280,0); +ref = dotbelowcomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (156,0); +ref = dotbelowcomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (129,0); +ref = dotbelowcomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (334,0); +ref = dotbelowcomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (286,0); +ref = dotbelowcomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (376,-9); +ref = dotbelowcomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (302,0); +ref = dotbelowcomb; +} +); +width = 867; +} +); +unicode = 7906; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_horndotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horndotbelow.ss01.glyph new file mode 100644 index 00000000..ae12e4a8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horndotbelow.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Ohorndotbelow.ss01; +kernLeft = KO_O; +kernRight = KO_Ohorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (156,0); +ref = dotbelowcomb.ss01; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (118,0); +ref = dotbelowcomb.ss01; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (357,0); +ref = dotbelowcomb.ss01; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (295,0); +ref = dotbelowcomb.ss01; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (156,0); +ref = dotbelowcomb.ss01; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (121,0); +ref = dotbelowcomb.ss01; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (346,0); +ref = dotbelowcomb.ss01; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (261,0); +ref = dotbelowcomb.ss01; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (369,0); +ref = dotbelowcomb.ss01; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (309,0); +ref = dotbelowcomb.ss01; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (340,0); +ref = dotbelowcomb.ss01; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (267,0); +ref = dotbelowcomb.ss01; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (164,0); +ref = dotbelowcomb.ss01; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (347,0); +ref = dotbelowcomb.ss01; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (387,-9); +ref = dotbelowcomb.ss01; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (316,0); +ref = dotbelowcomb.ss01; +} +); +width = 867; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_horngrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horngrave.glyph new file mode 100644 index 00000000..46194f34 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horngrave.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Ohorngrave; +kernLeft = KO_O; +kernRight = KO_Ohorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (77,57); +ref = gravecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (38,51); +ref = gravecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (272,57); +ref = gravecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (202,56); +ref = gravecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (77,57); +ref = gravecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (41,51); +ref = gravecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (271,57); +ref = gravecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (188,51); +ref = gravecomb; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (284,57); +ref = gravecomb; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (216,56); +ref = gravecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (265,57); +ref = gravecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (202,51); +ref = gravecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (80,57); +ref = gravecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (53,51); +ref = gravecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (241,57); +ref = gravecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (176,51); +ref = gravecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (247,57); +ref = gravecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (189,56); +ref = gravecomb; +} +); +width = 867; +} +); +unicode = 7900; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_hornhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_hornhookabove.glyph new file mode 100644 index 00000000..4b063bdd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_hornhookabove.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Ohornhookabove; +kernLeft = KO_O; +kernRight = KO_Ohorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (130,57); +ref = hookabovecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (108,50); +ref = hookabovecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (308,57); +ref = hookabovecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (283,51); +ref = hookabovecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (130,57); +ref = hookabovecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (111,50); +ref = hookabovecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (297,57); +ref = hookabovecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (234,51); +ref = hookabovecomb; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (320,57); +ref = hookabovecomb; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (297,51); +ref = hookabovecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (291,57); +ref = hookabovecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (245,51); +ref = hookabovecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (109,56); +ref = hookabovecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (107,49); +ref = hookabovecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (271,56); +ref = hookabovecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (217,50); +ref = hookabovecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (289,56); +ref = hookabovecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (254,48); +ref = hookabovecomb; +} +); +width = 867; +} +); +unicode = 7902; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_horntilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horntilde.glyph new file mode 100644 index 00000000..28f73561 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_horntilde.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Ohorntilde; +kernLeft = KO_O; +kernRight = KO_Ohorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (71,57); +ref = tildecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (15,50); +ref = tildecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (209,57); +ref = tildecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (172,56); +ref = tildecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (71,57); +ref = tildecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (18,50); +ref = tildecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Ohorn; +}, +{ +alignment = -1; +pos = (216,57); +ref = tildecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (139,51); +ref = tildecomb; +} +); +width = 751; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (221,57); +ref = tildecomb; +} +); +width = 836; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (186,56); +ref = tildecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (212,57); +ref = tildecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (151,51); +ref = tildecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (73,57); +ref = tildecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (20,50); +ref = tildecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (186,57); +ref = tildecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (128,51); +ref = tildecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (185,57); +ref = tildecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (162,51); +ref = tildecomb; +} +); +width = 867; +} +); +unicode = 7904; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_hungarumlaut.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_hungarumlaut.glyph new file mode 100644 index 00000000..616da8d3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_hungarumlaut.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Ohungarumlaut; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,57); +ref = hungarumlautcomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (64,51); +ref = hungarumlautcomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (287,57); +ref = hungarumlautcomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (219,56); +ref = hungarumlautcomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (114,57); +ref = hungarumlautcomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (67,51); +ref = hungarumlautcomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (284,57); +ref = hungarumlautcomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (183,51); +ref = hungarumlautcomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (287,57); +ref = hungarumlautcomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (233,56); +ref = hungarumlautcomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (278,57); +ref = hungarumlautcomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (194,51); +ref = hungarumlautcomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (115,57); +ref = hungarumlautcomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (62,51); +ref = hungarumlautcomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (252,57); +ref = hungarumlautcomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (177,51); +ref = hungarumlautcomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (262,57); +ref = hungarumlautcomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (201,56); +ref = hungarumlautcomb; +} +); +width = 867; +} +); +unicode = 336; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_macron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_macron.glyph new file mode 100644 index 00000000..a28f6701 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_macron.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Omacron; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (74,58); +ref = macroncomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (53,49); +ref = macroncomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (188,58); +ref = macroncomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (172,56); +ref = macroncomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (74,58); +ref = macroncomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (56,49); +ref = macroncomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (205,57); +ref = macroncomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (154,51); +ref = macroncomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (188,58); +ref = macroncomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (186,56); +ref = macroncomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (201,57); +ref = macroncomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (167,51); +ref = macroncomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (75,58); +ref = macroncomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (59,49); +ref = macroncomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (174,57); +ref = macroncomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (164,51); +ref = macroncomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (163,58); +ref = macroncomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (158,56); +ref = macroncomb; +} +); +width = 867; +} +); +unicode = 332; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_slash.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_slash.glyph new file mode 100644 index 00000000..cd3cccc1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_slash.glyph @@ -0,0 +1,250 @@ +{ +color = 6; +glyphname = Oslash; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (-17,41); +ref = slashlongcomb.case; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (-18,41); +ref = slashlongcomb.case; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (26,41); +ref = slashlongcomb.case; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (-27,41); +ref = slashlongcomb.case; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (-17,41); +ref = slashlongcomb.case; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (-15,41); +ref = slashlongcomb.case; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (46,41); +ref = slashlongcomb.case; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (-18,41); +ref = slashlongcomb.case; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (26,41); +ref = slashlongcomb.case; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (-13,41); +ref = slashlongcomb.case; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (46,41); +ref = slashlongcomb.case; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (-3,41); +ref = slashlongcomb.case; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (19,41); +ref = slashlongcomb.case; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (25,41); +ref = slashlongcomb.case; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (37,41); +ref = slashlongcomb.case; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (5,41); +ref = slashlongcomb.case; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (45,41); +ref = slashlongcomb.case; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (-16,41); +ref = slashlongcomb.case; +} +); +width = 867; +} +); +unicode = 216; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/O_tilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/O_tilde.glyph new file mode 100644 index 00000000..85815ca7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/O_tilde.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Otilde; +kernLeft = KO_O; +kernRight = KO_Oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = O; +}, +{ +pos = (71,57); +ref = tildecomb; +} +); +width = 421; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = O; +}, +{ +pos = (15,50); +ref = tildecomb; +} +); +width = 494; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = O; +}, +{ +pos = (209,57); +ref = tildecomb; +} +); +width = 832; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = O; +}, +{ +pos = (172,56); +ref = tildecomb; +} +); +width = 871; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (71,57); +ref = tildecomb; +} +); +width = 421; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = O; +}, +{ +pos = (18,50); +ref = tildecomb; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (216,57); +ref = tildecomb; +} +); +width = 810; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (138,51); +ref = tildecomb; +} +); +width = 781; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +alignment = -1; +pos = (209,57); +ref = tildecomb; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = O; +}, +{ +pos = (186,56); +ref = tildecomb; +} +); +width = 879; +}, +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (212,57); +ref = tildecomb; +} +); +width = 801; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (151,51); +ref = tildecomb; +} +); +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = O; +}, +{ +pos = (73,57); +ref = tildecomb; +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = O; +}, +{ +pos = (20,50); +ref = tildecomb; +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = O; +}, +{ +pos = (186,57); +ref = tildecomb; +} +); +width = 771; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = O; +}, +{ +pos = (128,51); +ref = tildecomb; +} +); +width = 790; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = O; +}, +{ +pos = (185,57); +ref = tildecomb; +} +); +width = 829; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = O; +}, +{ +pos = (162,51); +ref = tildecomb; +} +); +width = 867; +} +); +unicode = 213; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/P_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/P_.glyph new file mode 100644 index 00000000..b9b42171 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/P_.glyph @@ -0,0 +1,1194 @@ +{ +glyphname = P; +kernLeft = KO_H; +kernRight = KO_P; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = top; +pos = (235,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,l), +(232,231,l), +(350,231,ls), +(540,231,o), +(630,331,o), +(630,480,cs), +(630,649,o), +(522,729,o), +(360,729,cs), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(232,550,l), +(336,550,ls), +(392,550,o), +(418,526,o), +(418,472,cs), +(418,423,o), +(396,394,o), +(336,394,cs), +(232,394,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,0,l), +(208,594,l), +(184,572,l), +(224,572,ls), +(261,572,o), +(279,550,o), +(279,473,cs), +(279,408,o), +(270,369,o), +(224,369,cs), +(192,369,l), +(192,212,l), +(230,212,ls), +(383,212,o), +(460,296,o), +(460,471,cs), +(460,644,o), +(383,729,o), +(230,729,cs), +(29,729,l), +(29,0,l) +); +} +); +width = 473; +}, +{ +anchors = ( +{ +name = bottom; +pos = (193,0); +}, +{ +name = top; +pos = (193,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,711,l), +(84,701,l), +(181,701,ls), +(264,701,o), +(317,651,o), +(317,522,cs), +(317,391,o), +(263,343,o), +(181,343,cs), +(90,343,l), +(90,315,l), +(183,315,ls), +(301,315,o), +(350,398,o), +(350,522,cs), +(350,646,o), +(300,729,o), +(183,729,cs), +(66,729,l), +(66,0,l) +); +} +); +width = 370; +}, +{ +anchors = ( +{ +name = bottom; +pos = (350,0); +}, +{ +name = top; +pos = (350,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,710,l), +(92,692,l), +(412,692,ls), +(554,692,o), +(629,623,o), +(629,509,cs), +(629,398,o), +(555,325,o), +(412,325,cs), +(101,325,l), +(101,289,l), +(414,289,ls), +(573,289,o), +(669,375,o), +(669,509,cs), +(669,649,o), +(574,729,o), +(415,729,cs), +(72,729,l), +(72,0,l) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = bottom; +pos = (373,0); +}, +{ +name = top; +pos = (373,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,237,l), +(415,237,ls), +(657,237,o), +(737,334,o), +(737,483,cs), +(737,665,o), +(621,729,o), +(415,729,cs), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(276,550,l), +(398,550,ls), +(455,550,o), +(499,535,o), +(499,475,cs), +(499,426,o), +(472,399,o), +(398,399,cs), +(276,399,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,599,l), +(231,554,l), +(409,554,ls), +(462,554,o), +(503,538,o), +(503,476,cs), +(503,425,o), +(477,397,o), +(409,397,cs), +(260,397,l), +(260,239,l), +(434,239,ls), +(613,239,o), +(733,308,o), +(733,484,cs), +(733,631,o), +(649,729,o), +(434,729,cs), +(47,729,l), +(47,0,l) +); +} +); +width = 740; +}, +{ +anchors = ( +{ +name = bottom; +pos = (165,0); +}, +{ +name = top; +pos = (165,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(73,711,l), +(60,701,l), +(145,701,ls), +(226,701,o), +(273,651,o), +(273,522,cs), +(273,391,o), +(225,343,o), +(145,343,cs), +(66,343,l), +(66,315,l), +(147,315,ls), +(263,315,o), +(306,398,o), +(306,522,cs), +(306,646,o), +(262,729,o), +(147,729,cs), +(42,729,l), +(42,0,l) +); +} +); +width = 313; +}, +{ +anchors = ( +{ +name = bottom; +pos = (224,0); +}, +{ +name = top; +pos = (224,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,l), +(232,231,l), +(350,231,ls), +(540,231,o), +(630,331,o), +(630,480,cs), +(630,649,o), +(522,729,o), +(360,729,cs), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(232,550,l), +(336,550,ls), +(392,550,o), +(418,526,o), +(418,472,cs), +(418,423,o), +(396,394,o), +(336,394,cs), +(232,394,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,0,l), +(197,594,l), +(173,572,l), +(213,572,ls), +(250,572,o), +(267,550,o), +(267,476,cs), +(267,414,o), +(259,375,o), +(213,375,cs), +(181,375,l), +(181,218,l), +(219,218,ls), +(374,218,o), +(452,302,o), +(452,474,cs), +(452,644,o), +(374,729,o), +(219,729,cs), +(18,729,l), +(18,0,l) +); +} +); +width = 456; +}, +{ +anchors = ( +{ +name = bottom; +pos = (290,0); +}, +{ +name = top; +pos = (290,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,704,l), +(94,692,l), +(334,692,ls), +(467,692,o), +(542,623,o), +(542,509,cs), +(542,398,o), +(468,325,o), +(334,325,cs), +(99,325,l), +(99,289,l), +(336,289,ls), +(486,289,o), +(582,375,o), +(582,509,cs), +(582,649,o), +(487,729,o), +(337,729,cs), +(70,729,l), +(70,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 607; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (305,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262,0,l), +(262,583,l), +(240,559,l), +(354,559,ls), +(397,559,o), +(451,549,o), +(451,474,cs), +(451,396,o), +(397,387,o), +(354,387,cs), +(246,387,l), +(246,232,l), +(390,232,ls), +(561,232,o), +(657,334,o), +(657,482,cs), +(657,639,o), +(551,729,o), +(390,729,cs), +(59,729,l), +(59,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(233,581,l), +(211,559,l), +(324,559,ls), +(378,559,o), +(418,538,o), +(418,475,cs), +(418,425,o), +(391,387,o), +(324,387,cs), +(217,387,l), +(217,232,l), +(341,232,ls), +(513,232,o), +(628,322,o), +(628,482,cs), +(628,630,o), +(536,729,o), +(341,729,cs), +(30,729,l), +(30,0,l) +); +} +); +width = 628; +}, +{ +anchors = ( +{ +name = bottom; +pos = (340,0); +}, +{ +name = top; +pos = (340,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(100,710,l), +(82,692,l), +(402,692,ls), +(544,692,o), +(619,623,o), +(619,509,cs), +(619,398,o), +(545,325,o), +(402,325,cs), +(91,325,l), +(91,289,l), +(404,289,ls), +(563,289,o), +(659,375,o), +(659,509,cs), +(659,649,o), +(564,729,o), +(405,729,cs), +(62,729,l), +(62,0,l) +); +} +); +width = 678; +}, +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = top; +pos = (358,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,237,l), +(415,237,ls), +(657,237,o), +(737,334,o), +(737,483,cs), +(737,665,o), +(621,729,o), +(415,729,cs), +(47,729,l), +(47,0,l) +); +}, +{ +closed = 1; +nodes = ( +(276,550,l), +(398,550,ls), +(455,550,o), +(499,535,o), +(499,475,cs), +(499,426,o), +(472,399,o), +(398,399,cs), +(276,399,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,599,l), +(216,554,l), +(394,554,ls), +(447,554,o), +(488,538,o), +(488,476,cs), +(488,425,o), +(462,397,o), +(394,397,cs), +(245,397,l), +(245,239,l), +(419,239,ls), +(598,239,o), +(718,308,o), +(718,484,cs), +(718,631,o), +(634,729,o), +(419,729,cs), +(32,729,l), +(32,0,l) +); +} +); +width = 715; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,l), +(143,705,l), +(129,693,l), +(372,693,ls), +(499,693,o), +(568,629,o), +(568,511,cs), +(568,399,o), +(499,338,o), +(372,338,cs), +(134,338,l), +(134,302,l), +(374,302,ls), +(521,302,o), +(608,380,o), +(608,511,cs), +(608,648,o), +(522,729,o), +(375,729,cs), +(105,729,l), +(105,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 652; +}, +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262,0,l), +(262,583,l), +(240,559,l), +(354,559,ls), +(397,559,o), +(451,549,o), +(451,474,cs), +(451,396,o), +(397,387,o), +(354,387,cs), +(246,387,l), +(246,232,l), +(390,232,ls), +(561,232,o), +(657,334,o), +(657,482,cs), +(657,639,o), +(551,729,o), +(390,729,cs), +(59,729,l), +(59,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(258,0,l), +(258,581,l), +(237,559,l), +(382,559,ls), +(443,559,o), +(475,530,o), +(475,478,cs), +(475,423,o), +(443,393,o), +(382,393,cs), +(243,393,l), +(243,234,l), +(421,234,ls), +(585,234,o), +(679,322,o), +(679,483,cs), +(679,642,o), +(585,729,o), +(421,729,cs), +(57,729,l), +(57,0,l) +); +} +); +width = 694; +}, +{ +anchors = ( +{ +name = bottom; +pos = (149,0); +}, +{ +name = top; +pos = (300,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(190,711,l), +(176,701,l), +(261,701,ls), +(353,701,o), +(396,645,o), +(367,510,cs), +(340,382,o), +(279,343,o), +(197,343,cs), +(107,343,l), +(101,315,l), +(193,315,ls), +(313,315,o), +(374,392,o), +(399,505,cs), +(426,632,o), +(395,729,o), +(269,729,cs), +(164,729,l), +(12,0,l) +); +} +); +width = 368; +}, +{ +anchors = ( +{ +name = bottom; +pos = (194,0); +}, +{ +name = top; +pos = (345,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(275,595,l), +(249,572,l), +(283,572,ls), +(311,572,o), +(326,558,o), +(325,522,cs), +(322,430,o), +(295,369,o), +(242,369,cs), +(211,369,l), +(179,212,l), +(226,212,ls), +(386,212,o), +(497,310,o), +(507,519,cs), +(512,645,o), +(451,729,o), +(313,729,cs), +(125,729,l), +(-27,0,l) +); +} +); +width = 475; +}, +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (415,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(223,702,l), +(210,692,l), +(440,692,ls), +(545,692,o), +(611,642,o), +(608,534,cs), +(603,403,o), +(516,325,o), +(363,325,cs), +(136,325,l), +(129,290,l), +(358,290,ls), +(531,290,o), +(642,384,o), +(647,536,cs), +(651,649,o), +(586,729,o), +(453,729,cs), +(191,729,l), +(40,0,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(224,702,l), +(210,693,l), +(428,693,ls), +(546,693,o), +(614,632,o), +(614,533,cs), +(614,401,o), +(519,322,o), +(363,322,cs), +(135,322,l), +(128,286,l), +(362,286,ls), +(540,286,o), +(653,380,o), +(653,532,cs), +(653,652,o), +(566,729,o), +(427,729,cs), +(191,729,l), +(40,0,l) +); +} +); +width = 646; +}, +{ +anchors = ( +{ +name = bottom; +pos = (281,0); +}, +{ +name = top; +pos = (432,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(323,569,l), +(305,552,l), +(415,552,ls), +(458,552,o), +(481,527,o), +(479,484,cs), +(477,428,o), +(442,393,o), +(380,393,cs), +(272,393,l), +(238,232,l), +(382,232,ls), +(556,232,o), +(681,336,o), +(687,506,cs), +(693,692,o), +(549,729,o), +(447,729,cs), +(154,729,l), +(3,0,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(324,573,l), +(308,559,l), +(393,559,ls), +(444,559,o), +(480,536,o), +(480,487,cs), +(480,425,o), +(434,387,o), +(364,387,cs), +(270,387,l), +(238,232,l), +(382,232,ls), +(556,232,o), +(681,336,o), +(686,498,cs), +(691,637,o), +(607,729,o), +(421,729,cs), +(154,729,l), +(3,0,l) +); +} +); +width = 665; +}, +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = top; +pos = (455,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(203,705,l), +(186,692,l), +(481,692,ls), +(606,692,o), +(682,647,o), +(678,537,cs), +(673,401,o), +(589,326,o), +(430,326,cs), +(114,326,l), +(107,290,l), +(425,290,ls), +(605,290,o), +(712,381,o), +(718,540,cs), +(722,656,o), +(646,729,o), +(492,729,cs), +(169,729,l), +(18,0,l) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (476,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,l), +(338,574,l), +(316,556,l), +(457,556,ls), +(516,556,o), +(545,538,o), +(544,489,cs), +(542,426,o), +(504,398,o), +(428,398,cs), +(285,398,l), +(253,241,l), +(452,241,ls), +(640,241,o), +(768,327,o), +(774,511,cs), +(779,642,o), +(706,729,o), +(510,729,cs), +(142,729,l), +(-9,0,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,l), +(338,574,l), +(316,556,l), +(457,556,ls), +(516,556,o), +(545,538,o), +(544,489,cs), +(542,426,o), +(504,398,o), +(428,398,cs), +(285,398,l), +(253,241,l), +(452,241,ls), +(633,241,o), +(768,327,o), +(774,506,cs), +(779,642,o), +(696,729,o), +(510,729,cs), +(142,729,l), +(-9,0,l) +); +} +); +width = 737; +} +); +metricLeft = H; +unicode = 80; +userData = { +KernOnName = P; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Q_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Q_.glyph new file mode 100644 index 00000000..109b9621 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Q_.glyph @@ -0,0 +1,422 @@ +{ +color = 7; +glyphname = Q; +kernLeft = KO_O; +kernRight = KO_Q; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (163,0); +ref = _tail.Q; +} +); +width = 521; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (174,0); +ref = _tail.Q; +} +); +width = 432; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (379,0); +ref = _tail.Q; +} +); +width = 863; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (365,0); +ref = _tail.Q; +} +); +width = 916; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (162,0); +ref = _tail.Q; +} +); +width = 392; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (166,0); +ref = _tail.Q; +} +); +width = 501; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (368,0); +ref = _tail.Q; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 784; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (329,0); +ref = _tail.Q; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +}; +width = 794; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (391,0); +ref = _tail.Q; +} +); +width = 843; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (379,0); +ref = _tail.Q; +} +); +width = 886; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (366,0); +ref = _tail.Q; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 813; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (336,0); +ref = _tail.Q; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +}; +width = 842; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (132,0); +ref = _tail.Q; +} +); +width = 434; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (124,0); +ref = _tail.Q; +} +); +width = 523; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (319,0); +ref = _tail.Q; +} +); +width = 807; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (302,0); +ref = _tail.Q; +} +); +width = 858; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (360,-9); +ref = _tail.Q; +} +); +width = 892; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (345,0); +ref = _tail.Q; +} +); +width = 955; +} +); +metricLeft = O; +unicode = 81; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Q_.ss09.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Q_.ss09.glyph new file mode 100644 index 00000000..fc31f9fb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Q_.ss09.glyph @@ -0,0 +1,410 @@ +{ +glyphname = Q.ss09; +kernLeft = KO_O; +kernRight = KO_Q; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 521; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 432; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (399,0); +ref = "_tail-diagonal.Q"; +} +); +width = 863; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (343,10); +ref = "_tail-diagonal.Q"; +} +); +width = 916; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 392; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 501; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (354,0); +ref = "_tail-diagonal.Q"; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 784; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (374,0); +ref = "_tail-diagonal.Q"; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +}; +width = 794; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (418,0); +ref = "_tail-diagonal.Q"; +} +); +width = 843; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (440,10); +ref = "_tail-diagonal.Q"; +} +); +width = 886; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (355,10); +ref = "_tail-diagonal.Q"; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 813; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +pos = (366,0); +ref = "_tail-diagonal.Q"; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +}; +width = 835; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 434; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 523; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 807; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 858; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 892; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +ref = O; +}, +{ +ref = "_tail-diagonal.Q"; +} +); +width = 955; +} +); +metricLeft = O; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/R_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/R_.glyph new file mode 100644 index 00000000..6a086529 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/R_.glyph @@ -0,0 +1,1911 @@ +{ +glyphname = R; +kernLeft = KO_H; +kernRight = KO_R; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (238,0); +}, +{ +name = top; +pos = (217,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(208,0,l), +(208,248,l), +(233,248,ls), +(267,248,o), +(268,206,o), +(268,171,cs), +(268,63,ls), +(268,50,o), +(270,20,o), +(276,0,c), +(457,0,l), +(453,21,o), +(450,43,o), +(450,74,cs), +(450,191,ls), +(450,263,o), +(433,328,o), +(377,338,c), +(377,345,l), +(428,363,o), +(461,422,o), +(461,517,cs), +(461,680,o), +(368,729,o), +(230,729,cs), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(208,572,l), +(220,572,ls), +(263,572,o), +(281,548,o), +(281,480,cs), +(281,421,o), +(270,388,o), +(221,388,cs), +(208,388,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,0,l), +(208,572,l), +(220,572,ls), +(263,572,o), +(281,548,o), +(281,480,cs), +(281,421,o), +(270,388,o), +(221,388,cs), +(192,388,l), +(192,248,l), +(233,248,ls), +(260,248,o), +(268,233,o), +(268,171,cs), +(268,63,ls), +(268,50,o), +(270,20,o), +(276,0,c), +(457,0,l), +(453,21,o), +(450,43,o), +(450,74,cs), +(450,191,ls), +(450,264,o), +(433,329,o), +(355,338,c), +(355,345,l), +(427,362,o), +(461,421,o), +(461,517,cs), +(461,680,o), +(368,729,o), +(230,729,cs), +(29,729,l), +(29,0,l) +); +} +); +width = 477; +}, +{ +anchors = ( +{ +name = bottom; +pos = (195,0); +}, +{ +name = top; +pos = (195,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,701,l), +(196,701,ls), +(299,701,o), +(328,634,o), +(328,537,cs), +(328,441,o), +(292,370,o), +(203,370,cs), +(90,370,l), +(90,341,l), +(233,341,ls), +(283,341,o), +(318,316,o), +(318,212,cs), +(318,78,ls), +(318,48,o), +(318,24,o), +(326,0,c), +(356,0,l), +(349,26,o), +(349,50,o), +(349,73,cs), +(349,208,ls), +(349,307,o), +(321,346,o), +(270,358,c), +(270,362,l), +(332,386,o), +(361,452,o), +(361,535,cs), +(361,668,o), +(306,729,o), +(199,729,cs), +(66,729,l), +(66,0,l) +); +} +); +width = 406; +}, +{ +anchors = ( +{ +name = bottom; +pos = (359,0); +}, +{ +name = top; +pos = (335,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,693,l), +(463,693,ls), +(575,693,o), +(649,645,o), +(649,536,cs), +(649,439,o), +(596,371,o), +(463,371,cs), +(101,371,l), +(101,336,l), +(477,336,ls), +(603,336,o), +(634,291,o), +(634,200,cs), +(634,77,ls), +(634,45,o), +(635,22,o), +(645,0,c), +(683,0,l), +(672,26,o), +(672,50,o), +(672,73,cs), +(672,207,ls), +(672,291,o), +(643,341,o), +(557,354,c), +(557,361,l), +(645,386,o), +(688,450,o), +(688,540,cs), +(688,660,o), +(609,729,o), +(467,729,cs), +(72,729,l), +(72,0,l) +); +} +); +width = 735; +}, +{ +anchors = ( +{ +name = bottom; +pos = (400,0); +}, +{ +name = top; +pos = (376,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,558,l), +(444,558,ls), +(510,558,o), +(555,542,o), +(555,485,cs), +(555,437,o), +(531,405,o), +(444,405,cs), +(260,405,l), +(260,243,l), +(446,243,ls), +(515,243,o), +(539,222,o), +(539,164,cs), +(539,73,ls), +(539,46,o), +(539,21,o), +(544,0,c), +(776,0,l), +(769,26,o), +(768,46,o), +(768,76,cs), +(768,199,ls), +(768,278,o), +(724,320,o), +(653,332,c), +(653,338,l), +(737,357,o), +(787,428,o), +(787,510,cs), +(787,679,o), +(651,729,o), +(491,729,cs), +(47,729,l), +(47,0,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,558,l), +(444,558,ls), +(510,558,o), +(555,542,o), +(555,485,cs), +(555,437,o), +(531,405,o), +(444,405,cs), +(260,405,l), +(260,243,l), +(446,243,ls), +(515,243,o), +(539,222,o), +(539,164,cs), +(539,73,ls), +(539,46,o), +(539,21,o), +(544,0,c), +(776,0,l), +(769,26,o), +(768,46,o), +(768,76,cs), +(768,199,ls), +(768,278,o), +(724,320,o), +(653,332,c), +(653,338,l), +(731,360,o), +(787,425,o), +(787,520,cs), +(787,645,o), +(709,729,o), +(521,729,cs), +(47,729,l), +(47,0,l) +); +} +); +width = 807; +}, +{ +anchors = ( +{ +name = bottom; +pos = (164,0); +}, +{ +name = top; +pos = (164,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(73,701,l), +(149,701,ls), +(238,701,o), +(274,649,o), +(274,539,cs), +(274,444,o), +(244,376,o), +(157,376,cs), +(66,376,l), +(66,347,l), +(187,347,ls), +(245,347,o), +(267,306,o), +(267,218,cs), +(267,78,ls), +(267,48,o), +(267,24,o), +(275,0,c), +(305,0,l), +(298,26,o), +(298,50,o), +(298,73,cs), +(298,214,ls), +(298,305,o), +(279,351,o), +(218,365,c), +(218,366,l), +(282,389,o), +(307,444,o), +(307,537,cs), +(307,666,o), +(260,729,o), +(152,729,cs), +(42,729,l), +(42,0,l) +); +} +); +width = 340; +}, +{ +anchors = ( +{ +name = bottom; +pos = (227,0); +}, +{ +name = top; +pos = (206,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(208,0,l), +(208,248,l), +(233,248,ls), +(267,248,o), +(268,206,o), +(268,171,cs), +(268,63,ls), +(268,50,o), +(270,20,o), +(276,0,c), +(457,0,l), +(453,21,o), +(450,43,o), +(450,74,cs), +(450,191,ls), +(450,263,o), +(433,328,o), +(377,338,c), +(377,345,l), +(428,363,o), +(461,422,o), +(461,517,cs), +(461,680,o), +(368,729,o), +(230,729,cs), +(29,729,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(208,572,l), +(220,572,ls), +(263,572,o), +(281,548,o), +(281,480,cs), +(281,421,o), +(270,388,o), +(221,388,cs), +(208,388,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,0,l), +(197,572,l), +(209,572,ls), +(252,572,o), +(270,548,o), +(270,482,cs), +(270,420,o), +(252,394,o), +(210,394,cs), +(181,394,l), +(181,237,l), +(220,237,ls), +(247,237,o), +(257,222,o), +(257,155,cs), +(257,65,ls), +(257,38,o), +(260,15,o), +(265,0,c), +(446,0,l), +(441,24,o), +(439,50,o), +(439,79,cs), +(439,206,ls), +(439,295,o), +(406,346,o), +(340,356,c), +(340,357,l), +(413,377,o), +(450,431,o), +(450,519,cs), +(450,663,o), +(378,729,o), +(219,729,cs), +(18,729,l), +(18,0,l) +); +} +); +width = 457; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (306,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(132,0,l), +(132,336,l), +(414,336,ls), +(540,336,o), +(571,291,o), +(571,200,cs), +(571,77,ls), +(571,45,o), +(572,22,o), +(582,0,c), +(621,0,l), +(610,26,o), +(610,50,o), +(610,73,cs), +(610,207,ls), +(610,291,o), +(580,341,o), +(494,354,c), +(494,361,l), +(582,386,o), +(625,450,o), +(625,540,cs), +(625,660,o), +(546,729,o), +(404,729,cs), +(94,729,l), +(94,0,l) +); +}, +{ +closed = 1; +nodes = ( +(132,693,l), +(400,693,ls), +(512,693,o), +(586,645,o), +(586,536,cs), +(586,439,o), +(533,371,o), +(400,371,cs), +(132,371,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,693,l), +(376,693,ls), +(488,693,o), +(562,645,o), +(562,536,cs), +(562,429,o), +(496,371,o), +(376,371,cs), +(99,371,l), +(99,336,l), +(390,336,ls), +(503,336,o), +(547,293,o), +(547,200,cs), +(547,90,ls), +(547,46,o), +(551,16,o), +(558,0,c), +(597,0,l), +(590,17,o), +(586,46,o), +(586,86,cs), +(586,207,ls), +(586,295,o), +(547,343,o), +(464,357,c), +(464,358,l), +(557,385,o), +(601,443,o), +(601,540,cs), +(601,660,o), +(522,729,o), +(380,729,cs), +(70,729,l), +(70,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +} +); +}; +width = 649; +}, +{ +anchors = ( +{ +name = bottom; +pos = (335,0); +}, +{ +name = top; +pos = (321,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262,0,l), +(262,246,l), +(392,246,ls), +(465,246,o), +(485,215,o), +(485,166,cs), +(485,86,ls), +(485,48,o), +(489,16,o), +(497,0,c), +(701,0,l), +(688,29,o), +(688,59,o), +(688,87,cs), +(688,201,ls), +(688,281,o), +(651,323,o), +(582,338,c), +(582,345,l), +(657,362,o), +(707,430,o), +(707,514,cs), +(707,653,o), +(621,729,o), +(439,729,cs), +(59,729,l), +(59,0,l) +); +}, +{ +closed = 1; +nodes = ( +(262,563,l), +(409,563,ls), +(461,563,o), +(499,544,o), +(499,486,cs), +(499,440,o), +(474,405,o), +(409,405,cs), +(262,405,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(233,563,l), +(376,563,ls), +(428,563,o), +(466,544,o), +(466,486,cs), +(466,440,o), +(441,405,o), +(376,405,cs), +(217,405,l), +(217,240,l), +(363,240,ls), +(436,240,o), +(456,209,o), +(456,160,cs), +(456,86,ls), +(456,48,o), +(460,16,o), +(468,0,c), +(672,0,l), +(659,29,o), +(659,59,o), +(659,87,cs), +(659,201,ls), +(659,282,o), +(622,326,o), +(531,344,c), +(531,345,l), +(620,369,o), +(674,434,o), +(674,524,cs), +(674,663,o), +(575,729,o), +(426,729,cs), +(30,729,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 683; +}, +{ +anchors = ( +{ +name = bottom; +pos = (349,0); +}, +{ +name = top; +pos = (325,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(100,693,l), +(453,693,ls), +(565,693,o), +(639,645,o), +(639,536,cs), +(639,439,o), +(586,371,o), +(453,371,cs), +(91,371,l), +(91,336,l), +(467,336,ls), +(593,336,o), +(624,291,o), +(624,200,cs), +(624,77,ls), +(624,45,o), +(625,22,o), +(635,0,c), +(673,0,l), +(662,26,o), +(662,50,o), +(662,73,cs), +(662,207,ls), +(662,291,o), +(633,341,o), +(537,357,c), +(537,358,l), +(635,386,o), +(678,450,o), +(678,540,cs), +(678,660,o), +(599,729,o), +(457,729,cs), +(62,729,l), +(62,0,l) +); +} +); +width = 715; +}, +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = top; +pos = (361,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,558,l), +(444,558,ls), +(510,558,o), +(555,542,o), +(555,485,cs), +(555,437,o), +(531,405,o), +(444,405,cs), +(260,405,l), +(260,243,l), +(446,243,ls), +(515,243,o), +(539,222,o), +(539,164,cs), +(539,73,ls), +(539,46,o), +(539,21,o), +(544,0,c), +(776,0,l), +(769,26,o), +(768,46,o), +(768,76,cs), +(768,199,ls), +(768,278,o), +(724,320,o), +(653,332,c), +(653,338,l), +(737,357,o), +(787,428,o), +(787,510,cs), +(787,679,o), +(651,729,o), +(491,729,cs), +(47,729,l), +(47,0,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,558,l), +(429,558,ls), +(495,558,o), +(540,542,o), +(540,485,cs), +(540,437,o), +(516,405,o), +(429,405,cs), +(245,405,l), +(245,234,l), +(431,234,ls), +(500,234,o), +(524,213,o), +(524,155,cs), +(524,73,ls), +(524,46,o), +(524,21,o), +(529,0,c), +(761,0,l), +(754,26,o), +(753,46,o), +(753,76,cs), +(753,199,ls), +(753,278,o), +(709,320,o), +(632,335,c), +(632,336,l), +(716,360,o), +(772,425,o), +(772,520,cs), +(772,645,o), +(694,729,o), +(506,729,cs), +(32,729,l), +(32,0,l) +); +} +); +width = 777; +}, +{ +anchors = ( +{ +name = bottom; +pos = (347,0); +}, +{ +name = top; +pos = (337,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(142,0,l), +(142,336,l), +(424,336,ls), +(550,336,o), +(581,291,o), +(581,200,cs), +(581,77,ls), +(581,45,o), +(582,22,o), +(592,0,c), +(631,0,l), +(620,26,o), +(620,50,o), +(620,73,cs), +(620,207,ls), +(620,291,o), +(590,341,o), +(504,354,c), +(504,361,l), +(592,386,o), +(635,450,o), +(635,540,cs), +(635,660,o), +(556,729,o), +(414,729,cs), +(104,729,l), +(104,0,l) +); +}, +{ +closed = 1; +nodes = ( +(142,693,l), +(410,693,ls), +(522,693,o), +(596,645,o), +(596,536,cs), +(596,439,o), +(543,371,o), +(410,371,cs), +(142,371,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,l), +(143,693,l), +(400,693,ls), +(510,693,o), +(582,645,o), +(582,536,cs), +(582,439,o), +(531,371,o), +(400,371,cs), +(134,371,l), +(134,336,l), +(414,336,ls), +(538,336,o), +(567,291,o), +(567,200,cs), +(567,77,ls), +(567,45,o), +(568,22,o), +(578,0,c), +(617,0,l), +(606,26,o), +(606,50,o), +(606,73,cs), +(606,207,ls), +(606,291,o), +(576,341,o), +(492,355,c), +(492,360,l), +(578,385,o), +(621,449,o), +(621,540,cs), +(621,660,o), +(543,729,o), +(404,729,cs), +(105,729,l), +(105,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +} +); +}; +width = 689; +}, +{ +anchors = ( +{ +name = bottom; +pos = (365,0); +}, +{ +name = top; +pos = (351,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,l), +(267,246,l), +(397,246,ls), +(470,246,o), +(490,215,o), +(490,166,cs), +(490,86,ls), +(490,48,o), +(494,16,o), +(502,0,c), +(706,0,l), +(693,29,o), +(693,59,o), +(693,87,cs), +(693,201,ls), +(693,281,o), +(656,323,o), +(587,338,c), +(587,345,l), +(662,362,o), +(712,430,o), +(712,514,cs), +(712,653,o), +(626,729,o), +(444,729,cs), +(64,729,l), +(64,0,l) +); +}, +{ +closed = 1; +nodes = ( +(267,563,l), +(414,563,ls), +(466,563,o), +(504,544,o), +(504,486,cs), +(504,440,o), +(479,405,o), +(414,405,cs), +(267,405,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,l), +(263,563,l), +(400,563,ls), +(449,563,o), +(485,544,o), +(485,486,cs), +(485,440,o), +(461,405,o), +(400,405,cs), +(248,405,l), +(248,246,l), +(382,246,ls), +(451,246,o), +(470,215,o), +(470,166,cs), +(470,86,ls), +(470,49,o), +(474,16,o), +(482,0,c), +(684,0,l), +(671,29,o), +(671,59,o), +(671,87,cs), +(671,201,ls), +(671,285,o), +(636,325,o), +(560,341,c), +(560,353,l), +(639,373,o), +(691,437,o), +(691,524,cs), +(691,663,o), +(594,729,o), +(449,729,cs), +(62,729,l), +(62,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 737; +}, +{ +anchors = ( +{ +name = bottom; +pos = (157,0); +}, +{ +name = top; +pos = (262,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(114,341,l), +(249,341,ls), +(307,341,o), +(321,292,o), +(303,205,cs), +(276,71,ls), +(270,43,o), +(266,12,o), +(267,0,c), +(296,0,l), +(297,21,o), +(300,41,o), +(304,63,cs), +(334,198,ls), +(352,282,o), +(341,333,o), +(295,351,c), +(296,358,l), +(368,384,o), +(417,473,o), +(420,577,cs), +(423,668,o), +(380,729,o), +(284,729,cs), +(163,729,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,701,l), +(275,701,ls), +(345,701,o), +(392,666,o), +(389,577,cs), +(384,453,o), +(320,370,o), +(228,370,cs), +(120,370,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(188,701,l), +(275,701,ls), +(407,701,o), +(395,576,o), +(382,521,cs), +(363,429,o), +(305,370,o), +(228,370,cs), +(113,370,l), +(107,341,l), +(249,341,ls), +(307,341,o), +(321,292,o), +(303,205,cs), +(276,71,ls), +(270,43,o), +(266,12,o), +(267,0,c), +(296,0,l), +(297,21,o), +(299,41,o), +(304,63,cs), +(334,198,ls), +(353,283,o), +(341,334,o), +(287,354,c), +(288,359,l), +(352,378,o), +(397,441,o), +(414,520,cs), +(425,568,o), +(442,729,o), +(284,729,cs), +(163,729,l), +(12,0,l) +); +} +); +width = 402; +}, +{ +anchors = ( +{ +name = bottom; +pos = (192,0); +}, +{ +name = top; +pos = (291,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(202,248,l), +(226,248,ls), +(258,248,o), +(254,211,o), +(246,171,cs), +(223,63,ls), +(218,42,o), +(217,18,o), +(218,0,c), +(397,0,l), +(398,13,o), +(400,46,o), +(406,73,cs), +(430,190,ls), +(447,268,o), +(442,316,o), +(388,336,c), +(389,343,l), +(462,370,o), +(511,456,o), +(515,557,cs), +(518,659,o), +(464,729,o), +(323,729,cs), +(125,729,l), +(-27,0,l) +); +}, +{ +closed = 1; +nodes = ( +(270,572,l), +(281,572,ls), +(311,572,o), +(330,559,o), +(329,519,cs), +(326,440,o), +(294,388,o), +(252,388,cs), +(232,388,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(270,572,l), +(281,572,ls), +(343,572,o), +(331,507,o), +(324,475,cs), +(313,421,o), +(286,388,o), +(252,388,cs), +(216,388,l), +(186,248,l), +(226,248,ls), +(249,248,o), +(259,233,o), +(246,171,cs), +(223,63,ls), +(219,42,o), +(217,18,o), +(218,0,c), +(397,0,l), +(397,13,o), +(400,46,o), +(406,73,cs), +(430,190,ls), +(446,269,o), +(431,317,o), +(370,340,c), +(371,347,l), +(438,362,o), +(492,417,o), +(509,500,cs), +(526,582,o), +(518,729,o), +(323,729,cs), +(125,729,l), +(-27,0,l) +); +} +); +width = 475; +}, +{ +anchors = ( +{ +name = bottom; +pos = (289,0); +}, +{ +name = top; +pos = (411,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(147,335,l), +(448,335,ls), +(523,335,o), +(567,308,o), +(545,200,cs), +(520,80,ls), +(510,33,o), +(509,20,o), +(514,0,c), +(552,0,l), +(546,27,o), +(550,51,o), +(555,74,cs), +(583,207,ls), +(602,295,o), +(568,337,o), +(512,354,c), +(514,361,l), +(607,380,o), +(668,452,o), +(672,548,cs), +(675,657,o), +(608,729,o), +(475,729,cs), +(191,729,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(221,693,l), +(462,693,ls), +(585,693,o), +(635,634,o), +(632,546,cs), +(628,438,o), +(553,371,o), +(436,371,cs), +(154,371,l) +); +} +); +}; +guides = ( +{ +angle = 78.2614; +pos = (562,74); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(221,693,l), +(462,693,ls), +(640,693,o), +(642,566,o), +(627,509,cs), +(609,424,o), +(539,371,o), +(436,371,cs), +(145,371,l), +(138,336,l), +(457,336,ls), +(526,336,o), +(573,301,o), +(550,190,cs), +(527,80,ls), +(519,41,o), +(514,16,o), +(518,0,c), +(556,0,l), +(552,14,o), +(553,31,o), +(562,74,cs), +(587,192,ls), +(605,277,o), +(581,331,o), +(511,354,c), +(512,359,l), +(593,378,o), +(651,433,o), +(667,512,cs), +(683,583,o), +(668,729,o), +(475,729,cs), +(191,729,l), +(40,0,l) +); +} +); +width = 681; +}, +{ +anchors = ( +{ +name = bottom; +pos = (314,0); +}, +{ +name = top; +pos = (432,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(254,246,l), +(387,246,ls), +(436,246,o), +(463,228,o), +(449,161,cs), +(428,59,ls), +(423,36,o), +(421,16,o), +(422,0,c), +(625,0,l), +(621,15,o), +(621,26,o), +(630,69,cs), +(654,186,ls), +(668,257,o), +(647,302,o), +(579,327,c), +(580,334,l), +(680,360,o), +(740,435,o), +(740,534,cs), +(740,657,o), +(651,729,o), +(491,729,cs), +(154,729,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(321,569,l), +(452,569,ls), +(501,569,o), +(534,547,o), +(534,500,cs), +(534,441,o), +(491,405,o), +(424,405,cs), +(287,405,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(321,569,l), +(452,569,ls), +(531,569,o), +(540,514,o), +(531,478,cs), +(522,432,o), +(482,405,o), +(424,405,cs), +(271,405,l), +(238,246,l), +(387,246,ls), +(436,246,o), +(463,228,o), +(449,161,cs), +(428,59,ls), +(423,36,o), +(421,16,o), +(422,0,c), +(625,0,l), +(621,15,o), +(621,26,o), +(630,69,cs), +(654,186,ls), +(668,257,o), +(647,302,o), +(579,327,c), +(580,334,l), +(664,356,o), +(720,412,o), +(736,488,cs), +(756,574,o), +(725,729,o), +(491,729,cs), +(154,729,l), +(3,0,l) +); +} +); +width = 722; +}, +{ +anchors = ( +{ +name = bottom; +pos = (320,0); +}, +{ +name = top; +pos = (409,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(200,693,l), +(502,693,ls), +(628,693,o), +(705,651,o), +(701,551,cs), +(701,536,o), +(699,523,o), +(696,511,cs), +(678,421,o), +(607,371,o), +(493,371,cs), +(124,371,l), +(117,336,l), +(492,336,ls), +(611,336,o), +(632,292,o), +(610,183,cs), +(589,77,ls), +(582,40,o), +(580,17,o), +(583,0,c), +(622,0,l), +(618,18,o), +(617,35,o), +(625,73,cs), +(650,190,ls), +(671,288,o), +(640,333,o), +(574,351,c), +(575,358,l), +(662,374,o), +(719,430,o), +(736,512,cs), +(739,524,o), +(740,539,o), +(741,554,cs), +(745,660,o), +(677,729,o), +(515,729,cs), +(169,729,l), +(18,0,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(200,693,l), +(511,693,ls), +(635,693,o), +(726,640,o), +(696,511,cs), +(678,421,o), +(607,371,o), +(493,371,cs), +(124,371,l), +(117,336,l), +(492,336,ls), +(611,336,o), +(632,292,o), +(610,183,cs), +(589,77,ls), +(582,40,o), +(580,17,o), +(583,0,c), +(622,0,l), +(618,18,o), +(617,35,o), +(625,73,cs), +(650,190,ls), +(671,288,o), +(640,333,o), +(574,351,c), +(575,358,l), +(662,374,o), +(719,430,o), +(736,512,cs), +(763,632,o), +(701,729,o), +(521,729,cs), +(169,729,l), +(18,0,l) +); +} +); +width = 728; +}, +{ +anchors = ( +{ +name = bottom; +pos = (359,0); +}, +{ +name = top; +pos = (455,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(219,0,l), +(335,558,l), +(510,558,ls), +(571,558,o), +(606,540,o), +(604,490,cs), +(602,432,o), +(562,405,o), +(481,405,cs), +(287,405,l), +(253,243,l), +(436,243,ls), +(502,243,o), +(524,214,o), +(512,160,cs), +(495,81,ls), +(487,43,o), +(485,22,o), +(488,0,c), +(717,0,l), +(715,23,o), +(716,41,o), +(724,81,cs), +(744,178,ls), +(760,257,o), +(737,308,o), +(661,324,c), +(663,331,l), +(769,357,o), +(831,432,o), +(834,530,cs), +(837,647,o), +(763,729,o), +(567,729,cs), +(142,729,l), +(-9,0,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(219,0,l), +(335,558,l), +(510,558,ls), +(574,558,o), +(615,535,o), +(602,473,cs), +(592,427,o), +(553,404,o), +(481,405,cs), +(287,405,l), +(253,243,l), +(436,243,ls), +(502,243,o), +(524,214,o), +(512,160,cs), +(495,81,ls), +(487,43,o), +(485,22,o), +(488,0,c), +(717,0,l), +(715,23,o), +(716,41,o), +(724,81,cs), +(744,178,ls), +(760,257,o), +(734,304,o), +(661,324,c), +(663,331,l), +(749,350,o), +(813,408,o), +(830,490,cs), +(847,568,o), +(833,729,o), +(582,729,cs), +(142,729,l), +(-9,0,l) +); +} +); +width = 802; +} +); +metricLeft = H; +unicode = 82; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/R_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/R_acute.glyph new file mode 100644 index 00000000..733cc86a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/R_acute.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Racute; +kernLeft = KO_H; +kernRight = KO_R; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = R; +}, +{ +pos = (139,57); +ref = acutecomb; +} +); +width = 406; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = R; +}, +{ +pos = (105,51); +ref = acutecomb; +} +); +width = 477; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = R; +}, +{ +pos = (277,57); +ref = acutecomb; +} +); +width = 735; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = R; +}, +{ +pos = (259,56); +ref = acutecomb; +} +); +width = 807; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = R; +}, +{ +pos = (128,57); +ref = acutecomb; +} +); +width = 340; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = R; +}, +{ +pos = (104,51); +ref = acutecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = R; +}, +{ +pos = (271,57); +ref = acutecomb; +} +); +width = 649; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = R; +}, +{ +pos = (230,51); +ref = acutecomb; +} +); +width = 683; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = R; +}, +{ +alignment = -1; +pos = (277,57); +ref = acutecomb; +} +); +width = 735; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = R; +}, +{ +alignment = -1; +pos = (254,56); +ref = acutecomb; +} +); +width = 807; +}, +{ +layerId = m019; +shapes = ( +{ +ref = R; +}, +{ +pos = (281,57); +ref = acutecomb; +} +); +width = 689; +}, +{ +layerId = m020; +shapes = ( +{ +ref = R; +}, +{ +pos = (241,51); +ref = acutecomb; +} +); +width = 737; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = R; +}, +{ +pos = (121,57); +ref = acutecomb; +} +); +width = 402; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = R; +}, +{ +pos = (96,51); +ref = acutecomb; +} +); +width = 475; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = R; +}, +{ +pos = (269,57); +ref = acutecomb; +} +); +width = 681; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = R; +}, +{ +pos = (237,51); +ref = acutecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = R; +}, +{ +pos = (266,57); +ref = acutecomb; +} +); +width = 728; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = R; +}, +{ +pos = (255,56); +ref = acutecomb; +} +); +width = 802; +} +); +unicode = 340; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/R_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/R_caron.glyph new file mode 100644 index 00000000..1debb0d6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/R_caron.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Rcaron; +kernLeft = KO_H; +kernRight = KO_R; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = R; +}, +{ +pos = (66,57); +ref = caroncomb; +} +); +width = 406; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = R; +}, +{ +pos = (0,51); +ref = caroncomb; +} +); +width = 477; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = R; +}, +{ +pos = (156,57); +ref = caroncomb; +} +); +width = 735; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = R; +}, +{ +pos = (85,56); +ref = caroncomb; +} +); +width = 807; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = R; +}, +{ +pos = (55,57); +ref = caroncomb; +} +); +width = 340; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = R; +}, +{ +pos = (-1,51); +ref = caroncomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = R; +}, +{ +pos = (162,57); +ref = caroncomb; +} +); +width = 649; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = R; +}, +{ +pos = (95,51); +ref = caroncomb; +} +); +width = 683; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = R; +}, +{ +alignment = -1; +pos = (156,57); +ref = caroncomb; +} +); +width = 735; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = R; +}, +{ +alignment = -1; +pos = (80,56); +ref = caroncomb; +} +); +width = 807; +}, +{ +layerId = m019; +shapes = ( +{ +ref = R; +}, +{ +pos = (174,57); +ref = caroncomb; +} +); +width = 689; +}, +{ +layerId = m020; +shapes = ( +{ +ref = R; +}, +{ +pos = (112,51); +ref = caroncomb; +} +); +width = 737; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = R; +}, +{ +pos = (48,57); +ref = caroncomb; +} +); +width = 402; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = R; +}, +{ +pos = (-5,51); +ref = caroncomb; +} +); +width = 475; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = R; +}, +{ +pos = (160,57); +ref = caroncomb; +} +); +width = 681; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = R; +}, +{ +pos = (98,51); +ref = caroncomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = R; +}, +{ +pos = (143,57); +ref = caroncomb; +} +); +width = 728; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = R; +}, +{ +pos = (81,56); +ref = caroncomb; +} +); +width = 802; +} +); +unicode = 344; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/R_commaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/R_commaaccent.glyph new file mode 100644 index 00000000..7ba204fa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/R_commaaccent.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Rcommaaccent; +kernLeft = KO_H; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = R; +}, +{ +pos = (98,0); +ref = commaaccentcomb; +} +); +width = 406; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = R; +}, +{ +pos = (56,0); +ref = commaaccentcomb; +} +); +width = 477; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = R; +}, +{ +pos = (258,0); +ref = commaaccentcomb; +} +); +width = 735; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = R; +}, +{ +pos = (216,0); +ref = commaaccentcomb; +} +); +width = 807; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = R; +}, +{ +pos = (87,0); +ref = commaaccentcomb; +} +); +width = 340; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = R; +}, +{ +pos = (55,0); +ref = commaaccentcomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = R; +}, +{ +pos = (231,0); +ref = commaaccentcomb; +} +); +width = 649; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = R; +}, +{ +pos = (186,0); +ref = commaaccentcomb; +} +); +width = 683; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = R; +}, +{ +alignment = -1; +pos = (258,0); +ref = commaaccentcomb; +} +); +width = 735; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = R; +}, +{ +alignment = -1; +pos = (211,0); +ref = commaaccentcomb; +} +); +width = 807; +}, +{ +layerId = m019; +shapes = ( +{ +ref = R; +}, +{ +pos = (240,0); +ref = commaaccentcomb; +} +); +width = 689; +}, +{ +layerId = m020; +shapes = ( +{ +ref = R; +}, +{ +pos = (202,0); +ref = commaaccentcomb; +} +); +width = 737; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = R; +}, +{ +pos = (114,0); +ref = commaaccentcomb; +} +); +width = 402; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = R; +}, +{ +pos = (68,0); +ref = commaaccentcomb; +} +); +width = 475; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = R; +}, +{ +pos = (237,0); +ref = commaaccentcomb; +} +); +width = 681; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = R; +}, +{ +pos = (199,0); +ref = commaaccentcomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = R; +}, +{ +pos = (272,0); +ref = commaaccentcomb; +} +); +width = 728; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = R; +}, +{ +pos = (236,0); +ref = commaaccentcomb; +} +); +width = 802; +} +); +unicode = 342; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/S_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/S_.glyph new file mode 100644 index 00000000..f2f2fd2f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/S_.glyph @@ -0,0 +1,1587 @@ +{ +glyphname = S; +kernLeft = KO_S; +kernRight = KO_S; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (224,0); +}, +{ +name = top; +pos = (224,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(358,-10,o), +(446,50,o), +(446,206,cs), +(446,309,o), +(407,372,o), +(315,426,cs), +(268,455,ls), +(222,484,o), +(210,506,o), +(210,545,cs), +(210,576,o), +(216,594,o), +(238,594,cs), +(259,594,o), +(270,577,o), +(269,508,c), +(440,508,l), +(440,664,o), +(356,738,o), +(234,738,cs), +(104,738,o), +(17,678,o), +(17,522,cs), +(17,420,o), +(63,357,o), +(132,315,cs), +(183,284,ls), +(241,248,o), +(251,220,o), +(251,187,cs), +(251,155,o), +(245,137,o), +(221,137,cs), +(197,137,o), +(184,156,o), +(184,231,c), +(14,231,l), +(14,77,o), +(93,-10,o), +(227,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,-10,o), +(434,58,o), +(434,202,cs), +(434,323,o), +(363,386,o), +(279,437,cs), +(216,475,o), +(194,494,o), +(194,548,cs), +(194,584,o), +(204,606,o), +(230,606,cs), +(260,606,o), +(271,580,o), +(270,511,c), +(428,511,l), +(428,675,o), +(350,738,o), +(221,738,cs), +(102,738,o), +(18,675,o), +(18,536,cs), +(18,408,o), +(89,349,o), +(159,307,cs), +(228,265,o), +(255,242,o), +(255,186,cs), +(255,148,o), +(246,125,o), +(217,125,cs), +(186,125,o), +(169,150,o), +(169,231,c), +(14,231,l), +(14,86,o), +(73,-10,o), +(223,-10,cs) +); +} +); +width = 448; +}, +{ +anchors = ( +{ +name = bottom; +pos = (195,0); +}, +{ +name = top; +pos = (184,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,-8,o), +(344,50,o), +(344,170,cs), +(344,301,o), +(279,340,o), +(207,379,cs), +(142,414,o), +(77,450,o), +(77,566,cs), +(77,650,o), +(106,706,o), +(182,706,cs), +(252,706,o), +(301,672,o), +(302,530,c), +(335,530,l), +(334,653,o), +(299,737,o), +(185,737,cs), +(101,737,o), +(45,682,o), +(45,567,cs), +(45,428,o), +(116,390,o), +(184,354,cs), +(255,316,o), +(311,280,o), +(311,172,cs), +(311,83,o), +(278,22,o), +(193,22,cs), +(115,22,o), +(63,72,o), +(63,225,c), +(29,225,l), +(32,85,o), +(73,-8,o), +(195,-8,cs) +); +} +); +width = 376; +}, +{ +anchors = ( +{ +name = bottom; +pos = (351,0); +}, +{ +name = top; +pos = (332,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(548,-8,o), +(649,69,o), +(649,192,cs), +(649,356,o), +(506,377,o), +(349,398,cs), +(193,419,o), +(91,434,o), +(91,552,cs), +(91,645,o), +(180,703,o), +(332,703,cs), +(483,703,o), +(575,646,o), +(580,529,c), +(620,529,l), +(616,654,o), +(520,737,o), +(334,737,cs), +(166,737,o), +(52,669,o), +(52,550,cs), +(52,402,o), +(184,382,o), +(339,361,cs), +(494,340,o), +(609,321,o), +(609,191,cs), +(609,89,o), +(527,26,o), +(351,26,cs), +(178,26,o), +(79,89,o), +(72,225,c), +(30,225,l), +(39,86,o), +(130,-8,o), +(351,-8,cs) +); +} +); +width = 680; +}, +{ +anchors = ( +{ +name = bottom; +pos = (376,0); +}, +{ +name = top; +pos = (373,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(607,-10,o), +(736,78,o), +(736,226,cs), +(736,386,o), +(646,436,o), +(413,462,cs), +(284,476,o), +(262,484,o), +(262,526,cs), +(262,562,o), +(299,585,o), +(366,585,cs), +(428,585,o), +(471,565,o), +(479,514,c), +(710,514,l), +(696,660,o), +(567,738,o), +(375,738,cs), +(157,738,o), +(27,652,o), +(27,499,cs), +(27,357,o), +(126,300,o), +(352,274,cs), +(471,260,o), +(500,256,o), +(500,207,cs), +(500,167,o), +(459,145,o), +(385,145,cs), +(293,145,o), +(248,183,o), +(247,235,c), +(9,235,l), +(9,92,o), +(126,-10,o), +(376,-10,cs) +); +} +); +width = 745; +}, +{ +anchors = ( +{ +name = bottom; +pos = (161,0); +}, +{ +name = top; +pos = (150,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,-8,o), +(295,62,o), +(295,172,cs), +(295,274,o), +(252,327,o), +(173,392,cs), +(94,457,o), +(57,491,o), +(57,574,cs), +(57,657,o), +(93,708,o), +(152,708,cs), +(221,708,o), +(253,651,o), +(254,530,c), +(285,530,l), +(284,671,o), +(242,737,o), +(154,737,cs), +(75,737,o), +(25,673,o), +(25,575,cs), +(25,478,o), +(68,435,o), +(150,367,cs), +(223,307,o), +(263,262,o), +(263,174,cs), +(263,80,o), +(223,21,o), +(159,21,cs), +(81,21,o), +(44,88,o), +(42,230,c), +(10,230,l), +(13,65,o), +(60,-8,o), +(161,-8,cs) +); +} +); +width = 307; +}, +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (218,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(449,50,o), +(449,206,cs), +(449,309,o), +(410,372,o), +(318,426,cs), +(271,455,ls), +(225,484,o), +(213,506,o), +(213,545,cs), +(213,576,o), +(219,594,o), +(241,594,cs), +(262,594,o), +(273,577,o), +(272,508,c), +(443,508,l), +(443,664,o), +(359,738,o), +(237,738,cs), +(107,738,o), +(20,678,o), +(20,522,cs), +(20,420,o), +(66,357,o), +(135,315,cs), +(186,284,ls), +(244,248,o), +(254,220,o), +(254,187,cs), +(254,155,o), +(248,137,o), +(224,137,cs), +(200,137,o), +(187,156,o), +(187,231,c), +(17,231,l), +(17,77,o), +(96,-10,o), +(230,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(432,65,o), +(432,202,cs), +(432,305,o), +(389,373,o), +(274,441,cs), +(210,479,o), +(183,497,o), +(183,539,cs), +(183,571,o), +(197,589,o), +(220,589,cs), +(250,589,o), +(264,562,o), +(266,497,c), +(428,497,l), +(426,661,o), +(360,738,o), +(217,738,cs), +(89,738,o), +(10,660,o), +(10,536,cs), +(10,425,o), +(55,360,o), +(152,303,cs), +(230,257,o), +(256,236,o), +(256,192,cs), +(256,158,o), +(244,140,o), +(220,140,cs), +(190,140,o), +(175,169,o), +(172,241,c), +(4,241,l), +(6,70,o), +(77,-10,o), +(223,-10,cs) +); +} +); +width = 436; +}, +{ +anchors = ( +{ +name = bottom; +pos = (301,0); +}, +{ +name = top; +pos = (288,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(478,-8,o), +(584,69,o), +(584,195,cs), +(584,340,o), +(458,372,o), +(396,385,cs), +(280,408,ls), +(218,420,o), +(108,448,o), +(108,555,cs), +(108,646,o), +(187,703,o), +(308,703,cs), +(439,703,o), +(515,641,o), +(519,529,c), +(559,529,l), +(556,654,o), +(473,737,o), +(312,737,cs), +(165,737,o), +(68,664,o), +(68,550,cs), +(68,419,o), +(194,387,o), +(274,370,cs), +(392,345,ls), +(441,335,o), +(544,313,o), +(544,193,cs), +(544,93,o), +(456,26,o), +(319,26,cs), +(165,26,o), +(95,102,o), +(91,225,c), +(50,225,l), +(53,90,o), +(134,-8,o), +(321,-8,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-8,o), +(564,67,o), +(564,185,cs), +(564,340,o), +(452,372,o), +(313,397,cs), +(152,427,o), +(88,453,o), +(88,555,cs), +(88,644,o), +(160,703,o), +(288,703,cs), +(419,703,o), +(495,641,o), +(502,524,c), +(542,524,l), +(536,654,o), +(453,737,o), +(292,737,cs), +(138,737,o), +(48,662,o), +(48,550,cs), +(48,427,o), +(134,391,o), +(299,360,cs), +(459,331,o), +(524,294,o), +(524,183,cs), +(524,84,o), +(443,26,o), +(307,26,cs), +(146,26,o), +(75,102,o), +(68,227,c), +(27,227,l), +(33,90,o), +(113,-8,o), +(307,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +32 +); +stem = -2; +target = ( +0, +39 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 594; +}, +{ +anchors = ( +{ +name = bottom; +pos = (319,0); +}, +{ +name = top; +pos = (319,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(553,-10,o), +(656,87,o), +(656,224,cs), +(656,410,o), +(523,441,o), +(405,458,cs), +(294,475,o), +(254,478,o), +(254,528,cs), +(254,563,o), +(287,584,o), +(337,584,cs), +(379,584,o), +(423,570,o), +(426,518,c), +(635,518,l), +(635,650,o), +(517,738,o), +(342,738,cs), +(155,738,o), +(39,650,o), +(39,501,cs), +(39,358,o), +(145,301,o), +(294,279,cs), +(406,262,o), +(440,257,o), +(440,203,cs), +(440,166,o), +(404,147,o), +(349,147,cs), +(267,147,o), +(235,181,o), +(235,231,c), +(24,231,l), +(24,86,o), +(136,-10,o), +(339,-10,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(519,-10,o), +(631,74,o), +(631,228,cs), +(631,363,o), +(561,430,o), +(383,456,cs), +(252,475,o), +(224,488,o), +(224,528,cs), +(224,563,o), +(257,584,o), +(313,584,cs), +(370,584,o), +(403,561,o), +(407,506,c), +(612,506,l), +(608,654,o), +(499,738,o), +(318,738,cs), +(134,738,o), +(17,646,o), +(17,502,cs), +(17,374,o), +(103,306,o), +(272,281,cs), +(384,265,o), +(423,246,o), +(423,207,cs), +(423,165,o), +(390,144,o), +(326,144,cs), +(250,144,o), +(210,175,o), +(207,242,c), +(1,242,l), +(2,86,o), +(114,-10,o), +(317,-10,cs) +); +} +); +width = 634; +}, +{ +anchors = ( +{ +name = bottom; +pos = (341,0); +}, +{ +name = top; +pos = (322,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-8,o), +(639,63,o), +(639,192,cs), +(639,356,o), +(496,377,o), +(339,398,cs), +(183,419,o), +(81,434,o), +(81,550,cs), +(81,645,o), +(170,703,o), +(322,703,cs), +(473,703,o), +(565,646,o), +(570,529,c), +(610,529,l), +(606,654,o), +(510,737,o), +(324,737,cs), +(156,737,o), +(42,669,o), +(42,548,cs), +(42,402,o), +(174,382,o), +(329,361,cs), +(484,340,o), +(599,321,o), +(599,191,cs), +(599,84,o), +(508,26,o), +(341,26,cs), +(168,26,o), +(69,89,o), +(62,225,c), +(20,225,l), +(29,86,o), +(120,-8,o), +(341,-8,cs) +); +} +); +width = 660; +}, +{ +anchors = ( +{ +name = bottom; +pos = (368,0); +}, +{ +name = top; +pos = (365,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(599,-10,o), +(728,78,o), +(728,226,cs), +(728,386,o), +(638,436,o), +(405,462,cs), +(276,476,o), +(254,484,o), +(254,526,cs), +(254,562,o), +(291,585,o), +(358,585,cs), +(420,585,o), +(463,565,o), +(471,505,c), +(702,505,l), +(688,660,o), +(559,738,o), +(367,738,cs), +(149,738,o), +(19,652,o), +(19,499,cs), +(19,357,o), +(118,300,o), +(344,274,cs), +(463,260,o), +(492,256,o), +(492,207,cs), +(492,167,o), +(451,145,o), +(377,145,cs), +(285,145,o), +(240,183,o), +(238,239,c), +(0,239,l), +(1,92,o), +(118,-10,o), +(368,-10,cs) +); +} +); +width = 728; +}, +{ +anchors = ( +{ +name = bottom; +pos = (318,0); +}, +{ +name = top; +pos = (305,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(478,-8,o), +(584,69,o), +(584,195,cs), +(584,340,o), +(458,372,o), +(396,385,cs), +(280,408,ls), +(218,420,o), +(108,448,o), +(108,555,cs), +(108,646,o), +(187,703,o), +(308,703,cs), +(439,703,o), +(515,641,o), +(519,529,c), +(559,529,l), +(556,654,o), +(473,737,o), +(312,737,cs), +(165,737,o), +(68,664,o), +(68,550,cs), +(68,419,o), +(194,387,o), +(274,370,cs), +(392,345,ls), +(441,335,o), +(544,313,o), +(544,193,cs), +(544,93,o), +(456,26,o), +(319,26,cs), +(165,26,o), +(95,102,o), +(91,225,c), +(50,225,l), +(53,90,o), +(134,-8,o), +(321,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(466,-8,o), +(561,67,o), +(561,185,cs), +(561,323,o), +(476,364,o), +(330,396,cs), +(182,428,o), +(124,456,o), +(124,555,cs), +(124,645,o), +(195,703,o), +(307,703,cs), +(413,703,o), +(480,655,o), +(499,566,c), +(537,566,l), +(519,670,o), +(442,737,o), +(311,737,cs), +(177,737,o), +(85,661,o), +(85,550,cs), +(85,431,o), +(163,392,o), +(316,360,cs), +(463,329,o), +(523,290,o), +(523,183,cs), +(523,87,o), +(443,26,o), +(315,26,cs), +(182,26,o), +(116,91,o), +(103,195,c), +(64,195,l), +(77,76,o), +(157,-8,o), +(317,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +32 +); +stem = -2; +target = ( +0, +39 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 627; +}, +{ +anchors = ( +{ +name = bottom; +pos = (332,0); +}, +{ +name = top; +pos = (332,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(553,-10,o), +(656,87,o), +(656,224,cs), +(656,410,o), +(523,441,o), +(405,458,cs), +(294,475,o), +(254,478,o), +(254,528,cs), +(254,563,o), +(287,584,o), +(337,584,cs), +(379,584,o), +(423,570,o), +(426,518,c), +(635,518,l), +(635,650,o), +(517,738,o), +(342,738,cs), +(155,738,o), +(39,650,o), +(39,501,cs), +(39,358,o), +(145,301,o), +(294,279,cs), +(406,262,o), +(440,257,o), +(440,203,cs), +(440,166,o), +(404,147,o), +(349,147,cs), +(267,147,o), +(235,181,o), +(235,231,c), +(24,231,l), +(24,86,o), +(136,-10,o), +(339,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(535,-10,o), +(636,86,o), +(636,223,cs), +(636,407,o), +(506,439,o), +(395,456,cs), +(270,475,o), +(246,488,o), +(246,528,cs), +(246,571,o), +(277,587,o), +(326,587,cs), +(368,587,o), +(411,572,o), +(414,518,c), +(616,518,l), +(616,650,o), +(502,738,o), +(331,738,cs), +(149,738,o), +(38,650,o), +(38,502,cs), +(38,374,o), +(122,306,o), +(284,281,cs), +(402,263,o), +(427,254,o), +(427,210,cs), +(427,161,o), +(392,144,o), +(338,144,cs), +(257,144,o), +(227,179,o), +(227,231,c), +(23,231,l), +(23,86,o), +(132,-10,o), +(329,-10,cs) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = bottom; +pos = (152,0); +}, +{ +name = top; +pos = (268,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(275,-8,o), +(327,101,o), +(327,206,cs), +(327,268,o), +(295,325,o), +(233,375,cs), +(192,408,o), +(136,448,o), +(136,527,cs), +(136,637,o), +(188,705,o), +(263,705,cs), +(345,705,o), +(378,654,o), +(356,530,c), +(389,530,l), +(411,654,o), +(374,736,o), +(266,736,cs), +(147,736,o), +(104,630,o), +(104,523,cs), +(104,437,o), +(153,397,o), +(202,357,cs), +(244,323,o), +(294,281,o), +(294,208,cs), +(294,122,o), +(259,22,o), +(155,22,cs), +(48,22,o), +(34,111,o), +(56,225,c), +(23,225,l), +(-2,86,o), +(28,-8,o), +(155,-8,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,-8,o), +(327,101,o), +(327,206,cs), +(327,268,o), +(295,325,o), +(233,375,cs), +(159,434,o), +(136,466,o), +(136,527,cs), +(136,637,o), +(188,705,o), +(263,705,cs), +(345,705,o), +(378,654,o), +(356,530,c), +(389,530,l), +(411,654,o), +(374,736,o), +(266,736,cs), +(147,736,o), +(104,630,o), +(104,523,cs), +(104,451,o), +(132,414,o), +(202,357,cs), +(269,303,o), +(294,265,o), +(294,208,cs), +(294,122,o), +(259,22,o), +(155,22,cs), +(48,22,o), +(34,111,o), +(56,225,c), +(23,225,l), +(-2,86,o), +(28,-8,o), +(155,-8,cs) +); +} +); +width = 373; +}, +{ +anchors = ( +{ +name = bottom; +pos = (192,0); +}, +{ +name = top; +pos = (316,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,-10,o), +(387,57,o), +(414,195,cs), +(436,308,o), +(383,373,o), +(311,432,cs), +(259,475,o), +(242,496,o), +(250,543,cs), +(257,587,o), +(271,606,o), +(295,606,cs), +(335,606,o), +(326,541,o), +(320,512,c), +(474,512,l), +(500,659,o), +(439,739,o), +(298,739,cs), +(173,739,o), +(99,670,o), +(75,544,cs), +(52,428,o), +(103,363,o), +(167,311,cs), +(227,263,o), +(245,242,o), +(235,187,cs), +(228,147,o), +(217,126,o), +(190,126,cs), +(140,126,o), +(152,192,o), +(160,231,c), +(5,231,l), +(-22,77,o), +(35,-10,o), +(190,-10,cs) +); +} +); +width = 444; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (374,729); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (374,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(439,-10,o), +(551,72,o), +(556,202,cs), +(559,307,o), +(498,360,o), +(358,392,cs), +(221,423,o), +(165,468,o), +(168,547,cs), +(171,642,o), +(257,702,o), +(368,702,cs), +(487,702,o), +(565,634,o), +(562,529,c), +(601,529,l), +(605,660,o), +(512,739,o), +(373,739,cs), +(234,739,o), +(130,663,o), +(126,544,cs), +(122,445,o), +(184,396,o), +(352,355,cs), +(464,328,o), +(518,287,o), +(515,198,cs), +(511,94,o), +(422,26,o), +(291,26,cs), +(158,26,o), +(77,97,o), +(81,224,c), +(42,224,l), +(33,83,o), +(122,-10,o), +(296,-10,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-10,o), +(556,70,o), +(556,205,cs), +(556,283,o), +(520,350,o), +(352,394,cs), +(214,430,o), +(170,475,o), +(170,548,cs), +(170,649,o), +(258,702,o), +(368,702,cs), +(487,702,o), +(565,634,o), +(562,529,c), +(601,529,l), +(605,660,o), +(511,739,o), +(372,739,cs), +(238,739,o), +(128,672,o), +(128,545,cs), +(128,449,o), +(191,398,o), +(335,360,cs), +(495,318,o), +(515,260,o), +(515,203,cs), +(515,79,o), +(417,26,o), +(291,26,cs), +(158,26,o), +(77,97,o), +(81,224,c), +(42,224,l), +(33,83,o), +(122,-10,o), +(296,-10,cs) +); +} +); +width = 620; +}, +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = top; +pos = (394,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(624,92,o), +(624,261,cs), +(624,369,o), +(567,422,o), +(396,462,cs), +(334,477,o), +(303,491,o), +(303,523,cs), +(303,562,o), +(331,584,o), +(379,584,cs), +(433,584,o), +(461,556,o), +(457,510,c), +(661,510,l), +(666,642,o), +(563,738,o), +(396,738,cs), +(218,738,o), +(86,649,o), +(86,489,cs), +(86,383,o), +(153,325,o), +(312,282,cs), +(386,262,o), +(407,251,o), +(407,218,cs), +(407,171,o), +(376,146,o), +(312,146,cs), +(249,146,o), +(210,181,o), +(212,235,c), +(15,235,l), +(6,82,o), +(114,-10,o), +(302,-10,cs) +); +} +); +width = 657; +}, +{ +anchors = ( +{ +name = bottom; +pos = (330,0); +}, +{ +name = top; +pos = (394,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(516,-10,o), +(626,70,o), +(626,206,cs), +(626,332,o), +(523,366,o), +(376,393,cs), +(231,419,o), +(149,448,o), +(149,537,cs), +(149,642,o), +(239,704,o), +(389,704,cs), +(539,704,o), +(630,640,o), +(626,535,c), +(665,535,l), +(669,658,o), +(570,738,o), +(393,738,cs), +(212,738,o), +(109,659,o), +(109,534,cs), +(109,430,o), +(191,384,o), +(371,356,cs), +(532,329,o), +(585,285,o), +(585,202,cs), +(585,88,o), +(498,24,o), +(335,24,cs), +(168,24,o), +(56,94,o), +(62,220,c), +(21,220,l), +(17,80,o), +(127,-10,o), +(335,-10,cs) +); +} +); +width = 671; +}, +{ +anchors = ( +{ +name = bottom; +pos = (359,0); +}, +{ +name = top; +pos = (436,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(590,-10,o), +(717,80,o), +(717,243,cs), +(717,391,o), +(606,434,o), +(440,461,cs), +(342,477,o), +(310,487,o), +(310,525,cs), +(310,563,o), +(344,585,o), +(406,585,cs), +(469,585,o), +(516,560,o), +(518,514,c), +(746,514,l), +(747,646,o), +(616,739,o), +(410,739,cs), +(222,739,o), +(70,659,o), +(70,491,cs), +(70,373,o), +(154,308,o), +(339,276,cs), +(448,257,o), +(478,247,o), +(478,210,cs), +(478,170,o), +(449,145,o), +(370,145,cs), +(275,145,o), +(232,183,o), +(235,234,c), +(0,234,l), +(-7,86,o), +(125,-10,o), +(357,-10,cs) +); +} +); +width = 735; +} +); +unicode = 83; +userData = { +KernOnName = S; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/S_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/S_acute.glyph new file mode 100644 index 00000000..d5e9c789 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/S_acute.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Sacute; +kernLeft = KO_S; +kernRight = KO_Scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = S; +}, +{ +pos = (128,57); +ref = acutecomb; +} +); +width = 376; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = S; +}, +{ +pos = (112,51); +ref = acutecomb; +} +); +width = 448; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = S; +}, +{ +pos = (274,57); +ref = acutecomb; +} +); +width = 680; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = S; +}, +{ +pos = (256,56); +ref = acutecomb; +} +); +width = 745; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (128,57); +ref = acutecomb; +} +); +width = 376; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = S; +}, +{ +pos = (116,51); +ref = acutecomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (253,57); +ref = acutecomb; +} +); +width = 634; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (228,51); +ref = acutecomb; +} +); +width = 646; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (274,57); +ref = acutecomb; +} +); +width = 680; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = S; +}, +{ +pos = (258,56); +ref = acutecomb; +} +); +width = 728; +}, +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (249,57); +ref = acutecomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (222,51); +ref = acutecomb; +} +); +width = 658; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = S; +}, +{ +pos = (127,57); +ref = acutecomb; +} +); +width = 373; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = S; +}, +{ +pos = (121,51); +ref = acutecomb; +} +); +width = 444; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = S; +}, +{ +pos = (232,57); +ref = acutecomb; +} +); +width = 620; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = S; +}, +{ +pos = (199,51); +ref = acutecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = S; +}, +{ +pos = (251,57); +ref = acutecomb; +} +); +width = 671; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = S; +}, +{ +pos = (236,56); +ref = acutecomb; +} +); +width = 735; +} +); +unicode = 346; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/S_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/S_caron.glyph new file mode 100644 index 00000000..b807a982 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/S_caron.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Scaron; +kernLeft = KO_S; +kernRight = KO_Scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = S; +}, +{ +pos = (55,57); +ref = caroncomb; +} +); +width = 376; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = S; +}, +{ +pos = (7,51); +ref = caroncomb; +} +); +width = 448; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = S; +}, +{ +pos = (153,57); +ref = caroncomb; +} +); +width = 680; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = S; +}, +{ +pos = (82,56); +ref = caroncomb; +} +); +width = 745; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (55,57); +ref = caroncomb; +} +); +width = 376; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = S; +}, +{ +pos = (11,51); +ref = caroncomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (144,57); +ref = caroncomb; +} +); +width = 634; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (93,51); +ref = caroncomb; +} +); +width = 646; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (153,57); +ref = caroncomb; +} +); +width = 680; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = S; +}, +{ +pos = (84,56); +ref = caroncomb; +} +); +width = 728; +}, +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (142,57); +ref = caroncomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (93,51); +ref = caroncomb; +} +); +width = 658; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = S; +}, +{ +pos = (54,57); +ref = caroncomb; +} +); +width = 373; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = S; +}, +{ +pos = (20,51); +ref = caroncomb; +} +); +width = 444; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = S; +}, +{ +pos = (123,57); +ref = caroncomb; +} +); +width = 620; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = S; +}, +{ +pos = (60,51); +ref = caroncomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = S; +}, +{ +pos = (128,57); +ref = caroncomb; +} +); +width = 671; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = S; +}, +{ +pos = (62,56); +ref = caroncomb; +} +); +width = 735; +} +); +unicode = 352; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/S_cedilla.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/S_cedilla.glyph new file mode 100644 index 00000000..a2ed976f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/S_cedilla.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Scedilla; +kernLeft = KO_S; +kernRight = KO_Scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = S; +}, +{ +pos = (54,0); +ref = cedillacomb; +} +); +width = 376; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = S; +}, +{ +pos = (18,0); +ref = cedillacomb; +} +); +width = 448; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = S; +}, +{ +pos = (198,0); +ref = cedillacomb; +} +); +width = 680; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = S; +}, +{ +pos = (151,0); +ref = cedillacomb; +} +); +width = 745; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (54,0); +ref = cedillacomb; +} +); +width = 376; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = S; +}, +{ +pos = (22,0); +ref = cedillacomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (177,0); +ref = cedillacomb; +} +); +width = 634; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (122,0); +ref = cedillacomb; +} +); +width = 646; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (198,0); +ref = cedillacomb; +} +); +width = 680; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = S; +}, +{ +pos = (153,0); +ref = cedillacomb; +} +); +width = 728; +}, +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (173,0); +ref = cedillacomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (122,0); +ref = cedillacomb; +} +); +width = 658; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = S; +}, +{ +pos = (78,0); +ref = cedillacomb; +} +); +width = 373; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = S; +}, +{ +pos = (41,0); +ref = cedillacomb; +} +); +width = 444; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = S; +}, +{ +pos = (200,0); +ref = cedillacomb; +} +); +width = 620; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = S; +}, +{ +pos = (145,0); +ref = cedillacomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = S; +}, +{ +pos = (229,0); +ref = cedillacomb; +} +); +width = 671; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = S; +}, +{ +pos = (183,0); +ref = cedillacomb; +} +); +width = 735; +} +); +unicode = 350; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/S_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/S_circumflex.glyph new file mode 100644 index 00000000..223d67ef --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/S_circumflex.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Scircumflex; +kernLeft = KO_S; +kernRight = KO_Scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = S; +}, +{ +pos = (55,57); +ref = circumflexcomb; +} +); +width = 376; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = S; +}, +{ +pos = (7,51); +ref = circumflexcomb; +} +); +width = 448; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = S; +}, +{ +pos = (153,57); +ref = circumflexcomb; +} +); +width = 680; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = S; +}, +{ +pos = (82,56); +ref = circumflexcomb; +} +); +width = 745; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (55,57); +ref = circumflexcomb; +} +); +width = 376; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = S; +}, +{ +pos = (11,51); +ref = circumflexcomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (144,57); +ref = circumflexcomb; +} +); +width = 634; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (93,51); +ref = circumflexcomb; +} +); +width = 646; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (153,57); +ref = circumflexcomb; +} +); +width = 680; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = S; +}, +{ +pos = (84,56); +ref = circumflexcomb; +} +); +width = 728; +}, +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (142,57); +ref = circumflexcomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (93,51); +ref = circumflexcomb; +} +); +width = 658; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = S; +}, +{ +pos = (53,57); +ref = circumflexcomb; +} +); +width = 373; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = S; +}, +{ +pos = (14,51); +ref = circumflexcomb; +} +); +width = 444; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = S; +}, +{ +pos = (122,57); +ref = circumflexcomb; +} +); +width = 620; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = S; +}, +{ +pos = (65,51); +ref = circumflexcomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = S; +}, +{ +pos = (128,57); +ref = circumflexcomb; +} +); +width = 671; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = S; +}, +{ +pos = (60,56); +ref = circumflexcomb; +} +); +width = 735; +} +); +unicode = 348; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/S_commaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/S_commaaccent.glyph new file mode 100644 index 00000000..4348fd4e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/S_commaaccent.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = Scommaaccent; +kernLeft = KO_S; +kernRight = KO_Scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = S; +}, +{ +pos = (98,0); +ref = commaaccentcomb; +} +); +width = 376; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = S; +}, +{ +pos = (42,0); +ref = commaaccentcomb; +} +); +width = 448; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = S; +}, +{ +pos = (250,0); +ref = commaaccentcomb; +} +); +width = 680; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = S; +}, +{ +pos = (192,0); +ref = commaaccentcomb; +} +); +width = 745; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (98,0); +ref = commaaccentcomb; +} +); +width = 376; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = S; +}, +{ +pos = (46,0); +ref = commaaccentcomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (215,0); +ref = commaaccentcomb; +} +); +width = 634; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (170,0); +ref = commaaccentcomb; +} +); +width = 646; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = S; +}, +{ +alignment = -1; +pos = (250,0); +ref = commaaccentcomb; +} +); +width = 680; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = S; +}, +{ +pos = (194,0); +ref = commaaccentcomb; +} +); +width = 728; +}, +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (211,0); +ref = commaaccentcomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (169,0); +ref = commaaccentcomb; +} +); +width = 658; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = S; +}, +{ +pos = (109,0); +ref = commaaccentcomb; +} +); +width = 373; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = S; +}, +{ +pos = (68,0); +ref = commaaccentcomb; +} +); +width = 444; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = S; +}, +{ +pos = (234,0); +ref = commaaccentcomb; +} +); +width = 620; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = S; +}, +{ +pos = (189,0); +ref = commaaccentcomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = S; +}, +{ +pos = (282,0); +ref = commaaccentcomb; +} +); +width = 671; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = S; +}, +{ +pos = (236,0); +ref = commaaccentcomb; +} +); +width = 735; +} +); +unicode = 536; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/T_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/T_.glyph new file mode 100644 index 00000000..cddca168 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/T_.glyph @@ -0,0 +1,787 @@ +{ +glyphname = T; +kernLeft = KO_T; +kernRight = KO_T; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (196,0); +}, +{ +name = center; +pos = (193,346); +}, +{ +name = top; +pos = (196,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,0,l), +(285,586,l), +(101,586,l), +(101,0,l) +); +}, +{ +closed = 1; +nodes = ( +(378,570,l), +(378,729,l), +(13,729,l), +(13,570,l) +); +} +); +width = 391; +}, +{ +anchors = ( +{ +name = bottom; +pos = (158,0); +}, +{ +name = center; +pos = (158,365); +}, +{ +name = top; +pos = (158,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,0,l), +(173,708,l), +(142,708,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(315,700,l), +(315,729,l), +(0,729,l), +(0,700,l) +); +} +); +width = 315; +}, +{ +anchors = ( +{ +name = bottom; +pos = (327,0); +}, +{ +name = center; +pos = (328,365); +}, +{ +name = top; +pos = (327,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,0,l), +(347,703,l), +(309,703,l), +(309,0,l) +); +}, +{ +closed = 1; +nodes = ( +(639,693,l), +(639,729,l), +(16,729,l), +(16,693,l) +); +} +); +width = 655; +}, +{ +anchors = ( +{ +name = bottom; +pos = (342,0); +}, +{ +name = center; +pos = (339,324); +}, +{ +name = top; +pos = (342,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(453,0,l), +(453,564,l), +(225,564,l), +(225,0,l) +); +}, +{ +closed = 1; +nodes = ( +(680,548,l), +(680,729,l), +(4,729,l), +(4,548,l) +); +} +); +width = 684; +}, +{ +anchors = ( +{ +name = bottom; +pos = (150,0); +}, +{ +name = center; +pos = (150,365); +}, +{ +name = top; +pos = (150,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,708,l), +(134,708,l), +(134,0,l) +); +}, +{ +closed = 1; +nodes = ( +(303,700,l), +(303,729,l), +(-4,729,l), +(-4,700,l) +); +} +); +width = 299; +}, +{ +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = center; +pos = (184,346); +}, +{ +name = top; +pos = (187,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,586,l), +(92,586,l), +(92,0,l) +); +}, +{ +closed = 1; +nodes = ( +(369,570,l), +(369,729,l), +(4,729,l), +(4,570,l) +); +} +); +width = 373; +}, +{ +anchors = ( +{ +name = bottom; +pos = (272,0); +}, +{ +name = center; +pos = (272,365); +}, +{ +name = top; +pos = (272,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,0,l), +(291,703,l), +(253,703,l), +(253,0,l) +); +}, +{ +closed = 1; +nodes = ( +(541,693,l), +(541,729,l), +(3,729,l), +(3,693,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 544; +}, +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = center; +pos = (301,324); +}, +{ +name = top; +pos = (304,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(402,0,l), +(402,571,l), +(199,571,l), +(199,0,l) +); +}, +{ +closed = 1; +nodes = ( +(609,555,l), +(609,729,l), +(-2,729,l), +(-2,555,l) +); +} +); +width = 607; +}, +{ +anchors = ( +{ +name = bottom; +pos = (351,0); +}, +{ +name = center; +pos = (352,365); +}, +{ +name = top; +pos = (351,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,0,l), +(371,703,l), +(333,703,l), +(333,0,l) +); +}, +{ +closed = 1; +nodes = ( +(693,693,l), +(693,729,l), +(10,729,l), +(10,693,l) +); +} +); +width = 703; +}, +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = center; +pos = (355,324); +}, +{ +name = top; +pos = (358,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,0,l), +(469,564,l), +(241,564,l), +(241,0,l) +); +}, +{ +closed = 1; +nodes = ( +(716,548,l), +(716,729,l), +(0,729,l), +(0,548,l) +); +} +); +width = 716; +}, +{ +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = center; +pos = (324,365); +}, +{ +name = top; +pos = (324,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,703,l), +(305,703,l), +(305,0,l) +); +}, +{ +closed = 1; +nodes = ( +(617,693,l), +(617,729,l), +(31,729,l), +(31,693,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 647; +}, +{ +anchors = ( +{ +name = bottom; +pos = (321,0); +}, +{ +name = center; +pos = (318,324); +}, +{ +name = top; +pos = (321,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(418,0,l), +(418,571,l), +(217,571,l), +(217,0,l) +); +}, +{ +closed = 1; +nodes = ( +(622,555,l), +(622,729,l), +(17,729,l), +(17,555,l) +); +} +); +width = 639; +}, +{ +anchors = ( +{ +name = bottom; +pos = (102,0); +}, +{ +name = center; +pos = (178,365); +}, +{ +name = top; +pos = (253,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(117,0,l), +(265,708,l), +(234,708,l), +(87,0,l) +); +}, +{ +closed = 1; +nodes = ( +(403,700,l), +(409,729,l), +(98,729,l), +(92,700,l) +); +} +); +width = 311; +}, +{ +anchors = ( +{ +name = bottom; +pos = (135,0); +}, +{ +name = center; +pos = (207,346); +}, +{ +name = top; +pos = (286,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,0,l), +(348,586,l), +(166,586,l), +(44,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,570,l), +(470,729,l), +(108,729,l), +(75,570,l) +); +} +); +width = 388; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = center; +pos = (312,365); +}, +{ +name = top; +pos = (387,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,0,l), +(401,702,l), +(363,702,l), +(217,0,l) +); +}, +{ +closed = 1; +nodes = ( +(641,693,l), +(647,729,l), +(125,729,l), +(119,693,l) +); +} +); +width = 579; +}, +{ +anchors = ( +{ +name = bottom; +pos = (259,0); +}, +{ +name = center; +pos = (326,324); +}, +{ +name = top; +pos = (409,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,0,l), +(477,571,l), +(276,571,l), +(158,0,l) +); +}, +{ +closed = 1; +nodes = ( +(674,555,l), +(710,729,l), +(115,729,l), +(79,555,l) +); +} +); +width = 635; +}, +{ +anchors = ( +{ +name = bottom; +pos = (270,0); +}, +{ +name = center; +pos = (346,365); +}, +{ +name = top; +pos = (421,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,0,l), +(435,702,l), +(397,702,l), +(251,0,l) +); +}, +{ +closed = 1; +nodes = ( +(722,693,l), +(729,729,l), +(114,729,l), +(106,693,l) +); +} +); +width = 648; +}, +{ +anchors = ( +{ +name = bottom; +pos = (268,0); +}, +{ +name = center; +pos = (335,324); +}, +{ +name = top; +pos = (419,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(498,564,l), +(272,564,l), +(155,0,l) +); +}, +{ +closed = 1; +nodes = ( +(709,548,l), +(747,729,l), +(99,729,l), +(61,548,l) +); +} +); +width = 656; +} +); +unicode = 84; +userData = { +KernOnName = T; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/T_bar.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/T_bar.glyph new file mode 100644 index 00000000..1494bd86 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/T_bar.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Tbar; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = T; +}, +{ +pos = (-2,11); +ref = strokeshortcomb.case.T; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = T; +}, +{ +pos = (1,-1); +ref = strokeshortcomb.case.T; +} +); +width = 391; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = T; +}, +{ +pos = (62,10); +ref = strokeshortcomb.case.T; +} +); +width = 655; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = T; +}, +{ +pos = (53,-23); +ref = strokeshortcomb.case.T; +} +); +width = 684; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = T; +}, +{ +pos = (10,11); +ref = strokeshortcomb.case.T; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = T; +}, +{ +pos = (2,-1); +ref = strokeshortcomb.case.T; +} +); +width = 373; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = T; +}, +{ +pos = (62,11); +ref = strokeshortcomb.case.T; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = T; +}, +{ +alignment = -1; +pos = (61,-23); +ref = strokeshortcomb.case.T; +} +); +width = 619; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = T; +}, +{ +pos = (96,10); +ref = strokeshortcomb.case.T; +} +); +width = 703; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = T; +}, +{ +pos = (79,-23); +ref = strokeshortcomb.case.T; +} +); +width = 716; +}, +{ +layerId = m019; +shapes = ( +{ +ref = T; +}, +{ +pos = (101,11); +ref = strokeshortcomb.case.T; +} +); +width = 647; +}, +{ +layerId = m020; +shapes = ( +{ +ref = T; +}, +{ +pos = (70,-23); +ref = strokeshortcomb.case.T; +} +); +width = 639; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = T; +}, +{ +pos = (-2,11); +ref = strokeshortcomb.case.T; +} +); +width = 311; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = T; +}, +{ +pos = (-1,-1); +ref = strokeshortcomb.case.T; +} +); +width = 388; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = T; +}, +{ +pos = (62,11); +ref = strokeshortcomb.case.T; +} +); +width = 579; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = T; +}, +{ +pos = (49,-23); +ref = strokeshortcomb.case.T; +} +); +width = 635; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = T; +}, +{ +pos = (60,10); +ref = strokeshortcomb.case.T; +} +); +width = 648; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = T; +}, +{ +pos = (33,-23); +ref = strokeshortcomb.case.T; +} +); +width = 656; +} +); +unicode = 358; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/T_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/T_caron.glyph new file mode 100644 index 00000000..681ae435 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/T_caron.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Tcaron; +kernLeft = KO_T; +kernRight = KO_T; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = T; +}, +{ +pos = (29,57); +ref = caroncomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = T; +}, +{ +pos = (-21,51); +ref = caroncomb; +} +); +width = 391; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = T; +}, +{ +pos = (148,57); +ref = caroncomb; +} +); +width = 655; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = T; +}, +{ +pos = (51,56); +ref = caroncomb; +} +); +width = 684; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = T; +}, +{ +pos = (41,57); +ref = caroncomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = T; +}, +{ +pos = (-20,51); +ref = caroncomb; +} +); +width = 373; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = T; +}, +{ +pos = (128,57); +ref = caroncomb; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = T; +}, +{ +alignment = -1; +pos = (78,51); +ref = caroncomb; +} +); +width = 619; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = T; +}, +{ +pos = (182,57); +ref = caroncomb; +} +); +width = 703; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = T; +}, +{ +pos = (77,56); +ref = caroncomb; +} +); +width = 716; +}, +{ +layerId = m019; +shapes = ( +{ +ref = T; +}, +{ +pos = (161,57); +ref = caroncomb; +} +); +width = 647; +}, +{ +layerId = m020; +shapes = ( +{ +ref = T; +}, +{ +pos = (82,51); +ref = caroncomb; +} +); +width = 639; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = T; +}, +{ +pos = (39,57); +ref = caroncomb; +} +); +width = 311; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = T; +}, +{ +pos = (-10,51); +ref = caroncomb; +} +); +width = 388; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = T; +}, +{ +pos = (136,57); +ref = caroncomb; +} +); +width = 579; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = T; +}, +{ +pos = (75,51); +ref = caroncomb; +} +); +width = 635; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = T; +}, +{ +pos = (155,57); +ref = caroncomb; +} +); +width = 648; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = T; +}, +{ +pos = (45,56); +ref = caroncomb; +} +); +width = 656; +} +); +unicode = 356; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/T_cedilla.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/T_cedilla.glyph new file mode 100644 index 00000000..27bb20b0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/T_cedilla.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Tcedilla; +kernLeft = KO_T; +kernRight = KO_T; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = T; +}, +{ +pos = (27,0); +ref = cedillacomb.T; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = T; +}, +{ +pos = (-15,0); +ref = cedillacomb.T; +} +); +width = 391; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = T; +}, +{ +pos = (169,0); +ref = cedillacomb.T; +} +); +width = 655; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = T; +}, +{ +pos = (111,0); +ref = cedillacomb.T; +} +); +width = 684; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = T; +}, +{ +pos = (39,0); +ref = cedillacomb.T; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = T; +}, +{ +pos = (-14,0); +ref = cedillacomb.T; +} +); +width = 373; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = T; +}, +{ +pos = (148,0); +ref = cedillacomb.T; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = T; +}, +{ +alignment = -1; +pos = (107,0); +ref = cedillacomb.T; +} +); +width = 619; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = T; +}, +{ +pos = (203,0); +ref = cedillacomb.T; +} +); +width = 703; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = T; +}, +{ +pos = (137,0); +ref = cedillacomb.T; +} +); +width = 716; +}, +{ +layerId = m019; +shapes = ( +{ +ref = T; +}, +{ +pos = (185,0); +ref = cedillacomb.T; +} +); +width = 647; +}, +{ +layerId = m020; +shapes = ( +{ +ref = T; +}, +{ +pos = (115,0); +ref = cedillacomb.T; +} +); +width = 639; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = T; +}, +{ +pos = (28,0); +ref = cedillacomb.T; +} +); +width = 311; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = T; +}, +{ +pos = (-16,0); +ref = cedillacomb.T; +} +); +width = 388; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = T; +}, +{ +pos = (150,0); +ref = cedillacomb.T; +} +); +width = 579; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = T; +}, +{ +pos = (100,0); +ref = cedillacomb.T; +} +); +width = 635; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = T; +}, +{ +pos = (169,0); +ref = cedillacomb.T; +} +); +width = 648; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = T; +}, +{ +pos = (92,0); +ref = cedillacomb.T; +} +); +width = 656; +} +); +unicode = 354; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/T_commaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/T_commaaccent.glyph new file mode 100644 index 00000000..26568d10 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/T_commaaccent.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Tcommaaccent; +kernLeft = KO_T; +kernRight = KO_T; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = T; +}, +{ +pos = (61,0); +ref = commaaccentcomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = T; +}, +{ +pos = (14,0); +ref = commaaccentcomb; +} +); +width = 391; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = T; +}, +{ +pos = (226,0); +ref = commaaccentcomb; +} +); +width = 655; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = T; +}, +{ +pos = (158,0); +ref = commaaccentcomb; +} +); +width = 684; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = T; +}, +{ +pos = (73,0); +ref = commaaccentcomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = T; +}, +{ +pos = (15,0); +ref = commaaccentcomb; +} +); +width = 373; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = T; +}, +{ +pos = (186,0); +ref = commaaccentcomb; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = T; +}, +{ +alignment = -1; +pos = (155,0); +ref = commaaccentcomb; +} +); +width = 619; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = T; +}, +{ +pos = (260,0); +ref = commaaccentcomb; +} +); +width = 703; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = T; +}, +{ +pos = (184,0); +ref = commaaccentcomb; +} +); +width = 716; +}, +{ +layerId = m019; +shapes = ( +{ +ref = T; +}, +{ +pos = (217,0); +ref = commaaccentcomb; +} +); +width = 647; +}, +{ +layerId = m020; +shapes = ( +{ +ref = T; +}, +{ +pos = (158,0); +ref = commaaccentcomb; +} +); +width = 639; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = T; +}, +{ +pos = (59,0); +ref = commaaccentcomb; +} +); +width = 311; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = T; +}, +{ +pos = (11,0); +ref = commaaccentcomb; +} +); +width = 388; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = T; +}, +{ +pos = (184,0); +ref = commaaccentcomb; +} +); +width = 579; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = T; +}, +{ +pos = (144,0); +ref = commaaccentcomb; +} +); +width = 635; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = T; +}, +{ +pos = (222,0); +ref = commaaccentcomb; +} +); +width = 648; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = T; +}, +{ +pos = (145,0); +ref = commaaccentcomb; +} +); +width = 656; +} +); +unicode = 538; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/T_horn.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/T_horn.glyph new file mode 100644 index 00000000..74c83b6c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/T_horn.glyph @@ -0,0 +1,1234 @@ +{ +color = 7; +glyphname = Thorn; +kernLeft = KO_H; +layers = ( +{ +background = { +anchors = ( +{ +name = bottom; +pos = (81,0); +}, +{ +name = ogonek; +pos = (96,0); +}, +{ +name = top; +pos = (81,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(182,158,ls), +(300,158,o), +(349,241,o), +(349,365,cs), +(349,489,o), +(299,572,o), +(182,572,cs), +(83,572,l), +(83,544,l), +(180,544,ls), +(263,544,o), +(316,494,o), +(316,365,cs), +(316,234,o), +(262,186,o), +(180,186,cs), +(83,186,l), +(83,158,l) +); +}, +{ +closed = 1; +nodes = ( +(96,0,l), +(96,729,l), +(65,729,l), +(65,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (44,0); +ref = _Thorn.bowl; +} +); +width = 370; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (122,0); +}, +{ +name = ogonek; +pos = (215,0); +}, +{ +name = top; +pos = (122,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(234,106,ls), +(387,106,o), +(464,190,o), +(464,365,cs), +(464,538,o), +(387,623,o), +(234,623,cs), +(189,623,l), +(189,466,l), +(228,466,ls), +(265,466,o), +(283,444,o), +(283,367,cs), +(283,302,o), +(274,263,o), +(228,263,cs), +(189,263,l), +(189,106,l) +); +}, +{ +closed = 1; +nodes = ( +(215,0,l), +(215,729,l), +(28,729,l), +(28,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (150,0); +ref = _Thorn.bowl; +} +); +width = 478; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (90,0); +}, +{ +name = ogonek; +pos = (109,0); +}, +{ +name = top; +pos = (90,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(311,145,ls), +(470,145,o), +(566,231,o), +(566,365,cs), +(566,505,o), +(471,585,o), +(312,585,cs), +(98,585,l), +(98,548,l), +(309,548,ls), +(451,548,o), +(526,479,o), +(526,365,cs), +(526,254,o), +(452,181,o), +(309,181,cs), +(98,182,l), +(98,146,l) +); +}, +{ +closed = 1; +nodes = ( +(109,0,l), +(109,729,l), +(71,729,l), +(71,0,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (59,0); +ref = _Thorn.bowl; +} +); +width = 596; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (169,0); +}, +{ +name = ogonek; +pos = (283,0); +}, +{ +name = top; +pos = (169,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(420,104,ls), +(599,104,o), +(719,185,o), +(719,357,cs), +(719,509,o), +(623,610,o), +(420,610,cs), +(211,610,l), +(211,435,l), +(395,435,ls), +(448,435,o), +(489,419,o), +(489,357,cs), +(489,295,o), +(448,279,o), +(395,279,cs), +(211,279,l), +(211,104,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(283,729,l), +(54,729,l), +(54,0,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (164,0); +ref = _Thorn.bowl; +} +); +width = 719; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (81,0); +}, +{ +name = ogonek; +pos = (96,0); +}, +{ +name = top; +pos = (81,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(182,158,ls), +(300,158,o), +(349,241,o), +(349,365,cs), +(349,489,o), +(299,572,o), +(182,572,cs), +(83,572,l), +(83,544,l), +(180,544,ls), +(263,544,o), +(316,494,o), +(316,365,cs), +(316,234,o), +(262,186,o), +(180,186,cs), +(83,186,l), +(83,158,l) +); +}, +{ +closed = 1; +nodes = ( +(96,0,l), +(96,729,l), +(65,729,l), +(65,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (40,0); +ref = _Thorn.bowl; +} +); +width = 330; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (122,0); +}, +{ +name = ogonek; +pos = (215,0); +}, +{ +name = top; +pos = (122,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(234,106,ls), +(387,106,o), +(464,190,o), +(464,365,cs), +(464,538,o), +(387,623,o), +(234,623,cs), +(189,623,l), +(189,466,l), +(228,466,ls), +(265,466,o), +(283,444,o), +(283,367,cs), +(283,302,o), +(274,263,o), +(228,263,cs), +(189,263,l), +(189,106,l) +); +}, +{ +closed = 1; +nodes = ( +(215,0,l), +(215,729,l), +(28,729,l), +(28,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (149,0); +ref = _Thorn.bowl; +} +); +width = 458; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (122,0); +}, +{ +name = ogonek; +pos = (141,0); +}, +{ +name = top; +pos = (122,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(347,145,ls), +(497,144,o), +(593,231,o), +(593,365,cs), +(593,505,o), +(498,585,o), +(348,585,cs), +(123,585,l), +(123,548,l), +(345,548,ls), +(478,548,o), +(553,479,o), +(553,365,cs), +(553,254,o), +(479,180,o), +(345,181,cs), +(123,182,l), +(123,146,l) +); +}, +{ +closed = 1; +nodes = ( +(141,0,l), +(141,729,l), +(103,729,l), +(103,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (70,0); +ref = _Thorn.bowl; +} +); +width = 589; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (171,0); +}, +{ +name = ogonek; +pos = (272,0); +}, +{ +name = top; +pos = (171,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(381,111,ls), +(552,111,o), +(658,201,o), +(658,362,cs), +(658,523,o), +(552,613,o), +(381,613,cs), +(226,613,l), +(226,443,l), +(355,443,ls), +(413,443,o), +(452,420,o), +(452,362,cs), +(452,304,o), +(413,281,o), +(355,281,cs), +(226,281,l), +(226,111,l) +); +}, +{ +closed = 1; +nodes = ( +(272,0,l), +(272,729,l), +(69,729,l), +(69,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (168,0); +ref = _Thorn.bowl; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (90,0); +}, +{ +name = ogonek; +pos = (109,0); +}, +{ +name = top; +pos = (90,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(311,145,ls), +(470,145,o), +(566,231,o), +(566,365,cs), +(566,505,o), +(471,585,o), +(312,585,cs), +(98,585,l), +(98,548,l), +(309,548,ls), +(451,548,o), +(526,479,o), +(526,365,cs), +(526,254,o), +(452,181,o), +(309,181,cs), +(98,182,l), +(98,146,l) +); +}, +{ +closed = 1; +nodes = ( +(109,0,l), +(109,729,l), +(71,729,l), +(71,0,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (59,0); +ref = _Thorn.bowl; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (169,0); +}, +{ +name = ogonek; +pos = (283,0); +}, +{ +name = top; +pos = (169,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(420,104,ls), +(599,104,o), +(719,185,o), +(719,357,cs), +(719,509,o), +(623,610,o), +(420,610,cs), +(211,610,l), +(211,435,l), +(395,435,ls), +(448,435,o), +(489,419,o), +(489,357,cs), +(489,295,o), +(448,279,o), +(395,279,cs), +(211,279,l), +(211,104,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(283,729,l), +(54,729,l), +(54,0,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (159,0); +ref = _Thorn.bowl; +} +); +width = 689; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (122,0); +}, +{ +name = ogonek; +pos = (141,0); +}, +{ +name = top; +pos = (122,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(347,145,ls), +(497,144,o), +(593,231,o), +(593,365,cs), +(593,505,o), +(498,585,o), +(348,585,cs), +(123,585,l), +(123,548,l), +(345,548,ls), +(478,548,o), +(553,479,o), +(553,365,cs), +(553,254,o), +(479,180,o), +(345,181,cs), +(123,182,l), +(123,146,l) +); +}, +{ +closed = 1; +nodes = ( +(141,0,l), +(141,729,l), +(103,729,l), +(103,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (88,0); +ref = _Thorn.bowl; +} +); +width = 622; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (171,0); +}, +{ +name = ogonek; +pos = (272,0); +}, +{ +name = top; +pos = (171,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(381,111,ls), +(552,111,o), +(658,201,o), +(658,362,cs), +(658,523,o), +(552,613,o), +(381,613,cs), +(226,613,l), +(226,443,l), +(355,443,ls), +(413,443,o), +(452,420,o), +(452,362,cs), +(452,304,o), +(413,281,o), +(355,281,cs), +(226,281,l), +(226,111,l) +); +}, +{ +closed = 1; +nodes = ( +(272,0,l), +(272,729,l), +(69,729,l), +(69,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (183,0); +ref = _Thorn.bowl; +} +); +width = 660; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (28,0); +}, +{ +name = ogonek; +pos = (43,0); +}, +{ +name = top; +pos = (179,729); +}, +{ +name = topleft; +pos = (130,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(181,158,ls), +(301,158,o), +(362,235,o), +(387,348,cs), +(414,475,o), +(383,572,o), +(257,572,cs), +(128,572,l), +(124,544,l), +(249,544,ls), +(341,544,o), +(384,488,o), +(355,353,cs), +(328,225,o), +(267,186,o), +(185,186,cs), +(60,186,l), +(56,158,l) +); +}, +{ +closed = 1; +nodes = ( +(43,0,l), +(194,729,l), +(163,729,l), +(12,0,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (25,0); +ref = _Thorn.bowl; +} +); +width = 390; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (65,0); +}, +{ +name = ogonek; +pos = (157,0); +}, +{ +name = top; +pos = (215,729); +}, +{ +name = topleft; +pos = (124,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(206,106,ls), +(379,106,o), +(490,235,o), +(497,443,cs), +(502,563,o), +(438,623,o), +(313,623,cs), +(198,623,l), +(170,466,l), +(273,466,ls), +(301,466,o), +(316,452,o), +(315,416,cs), +(312,326,o), +(277,263,o), +(232,263,cs), +(135,263,l), +(107,106,l) +); +}, +{ +closed = 1; +nodes = ( +(157,0,l), +(309,729,l), +(124,729,l), +(-28,0,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (86,0); +ref = _Thorn.bowl; +} +); +width = 484; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (68,0); +}, +{ +name = ogonek; +pos = (86,0); +}, +{ +name = top; +pos = (219,729); +}, +{ +name = topleft; +pos = (127,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(357,145,ls), +(530,145,o), +(641,239,o), +(646,391,cs), +(650,504,o), +(585,584,o), +(452,584,cs), +(172,584,l), +(165,547,l), +(439,547,ls), +(544,547,o), +(610,497,o), +(607,389,cs), +(602,258,o), +(515,180,o), +(362,180,cs), +(100,180,l), +(94,145,l) +); +}, +{ +closed = 1; +nodes = ( +(86,0,l), +(238,729,l), +(200,729,l), +(49,0,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (56,0); +ref = _Thorn.bowl; +} +); +width = 658; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (114,0); +}, +{ +name = ogonek; +pos = (214,0); +}, +{ +name = top; +pos = (264,729); +}, +{ +name = topleft; +pos = (125,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(382,116,ls), +(556,116,o), +(681,220,o), +(687,390,cs), +(693,576,o), +(549,613,o), +(447,613,cs), +(282,613,l), +(251,436,l), +(415,436,ls), +(458,436,o), +(481,411,o), +(479,368,cs), +(477,312,o), +(442,277,o), +(380,277,cs), +(223,277,l), +(194,116,l) +); +}, +{ +closed = 1; +nodes = ( +(214,0,l), +(365,729,l), +(164,729,l), +(13,0,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (161,0); +ref = _Thorn.bowl; +} +); +width = 679; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (36,0); +}, +{ +name = ogonek; +pos = (55,0); +}, +{ +name = top; +pos = (187,729); +}, +{ +name = topleft; +pos = (127,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(414,145,ls), +(594,145,o), +(701,236,o), +(707,395,cs), +(711,511,o), +(635,584,o), +(481,584,cs), +(142,584,l), +(135,547,l), +(470,547,ls), +(595,547,o), +(671,502,o), +(667,392,cs), +(662,256,o), +(578,181,o), +(419,181,cs), +(71,181,l), +(64,145,l) +); +}, +{ +closed = 1; +nodes = ( +(55,0,l), +(206,729,l), +(168,729,l), +(17,0,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (36,0); +ref = _Thorn.bowl; +} +); +width = 714; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (112,0); +}, +{ +name = ogonek; +pos = (225,0); +}, +{ +name = top; +pos = (263,729); +}, +{ +name = topleft; +pos = (125,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(449,121,ls), +(637,121,o), +(765,207,o), +(771,391,cs), +(776,522,o), +(703,609,o), +(507,609,cs), +(293,609,l), +(263,436,l), +(454,436,ls), +(513,436,o), +(542,418,o), +(541,369,cs), +(539,306,o), +(501,278,o), +(425,278,cs), +(235,278,l), +(207,121,l) +); +}, +{ +closed = 1; +nodes = ( +(225,0,l), +(376,729,l), +(149,729,l), +(-2,0,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +ref = I; +}, +{ +pos = (176,0); +ref = _Thorn.bowl; +} +); +width = 752; +} +); +metricLeft = H; +metricRight = P; +unicode = 222; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_.glyph new file mode 100644 index 00000000..49f2333f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_.glyph @@ -0,0 +1,1032 @@ +{ +glyphname = U; +kernLeft = KO_U; +kernRight = KO_U; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (238,0); +}, +{ +name = ogonek; +pos = (345,0); +}, +{ +name = top; +pos = (238,729); +}, +{ +name = topright; +pos = (330,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(374,-10,o), +(451,64,o), +(451,244,cs), +(451,729,l), +(275,729,l), +(275,252,ls), +(275,214,o), +(275,153,o), +(239,153,cs), +(212,153,o), +(203,177,o), +(203,252,cs), +(203,729,l), +(25,729,l), +(25,244,ls), +(25,81,o), +(85,-10,o), +(237,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(365,-9,o), +(451,62,o), +(451,212,cs), +(451,729,l), +(275,729,l), +(275,209,ls), +(275,177,o), +(268,155,o), +(239,155,cs), +(217,155,o), +(203,166,o), +(203,209,cs), +(203,729,l), +(25,729,l), +(25,212,ls), +(25,79,o), +(93,-9,o), +(237,-9,cs) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = ogonek; +pos = (277,0); +}, +{ +name = top; +pos = (225,729); +}, +{ +name = topright; +pos = (376,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,-10,o), +(391,80,o), +(391,238,cs), +(391,729,l), +(360,729,l), +(360,241,ls), +(360,75,o), +(306,20,o), +(224,20,cs), +(144,20,o), +(89,75,o), +(89,241,cs), +(89,729,l), +(58,729,l), +(58,238,ls), +(58,81,o), +(111,-10,o), +(225,-10,cs) +); +} +); +width = 449; +}, +{ +anchors = ( +{ +name = bottom; +pos = (382,0); +}, +{ +name = ogonek; +pos = (455,0); +}, +{ +name = top; +pos = (382,729); +}, +{ +name = topright; +pos = (684,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(576,-8,o), +(703,75,o), +(703,294,cs), +(703,729,l), +(665,729,l), +(665,298,ls), +(665,125,o), +(585,29,o), +(381,29,cs), +(181,29,o), +(98,122,o), +(98,298,cs), +(98,729,l), +(60,729,l), +(60,294,ls), +(60,74,o), +(188,-8,o), +(381,-8,cs) +); +} +); +width = 763; +}, +{ +anchors = ( +{ +name = bottom; +pos = (400,0); +}, +{ +name = ogonek; +pos = (557,0); +}, +{ +name = top; +pos = (400,729); +}, +{ +name = topright; +pos = (569,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-10,o), +(766,122,o), +(766,319,cs), +(766,729,l), +(540,729,l), +(540,318,ls), +(540,206,o), +(482,176,o), +(399,176,cs), +(289,176,o), +(258,234,o), +(258,318,cs), +(258,729,l), +(33,729,l), +(33,319,ls), +(33,88,o), +(177,-10,o), +(399,-10,cs) +); +} +); +width = 799; +}, +{ +anchors = ( +{ +name = bottom; +pos = (182,0); +}, +{ +name = ogonek; +pos = (234,0); +}, +{ +name = top; +pos = (182,729); +}, +{ +name = topright; +pos = (321,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,-10,o), +(323,60,o), +(323,202,cs), +(323,729,l), +(292,729,l), +(292,202,ls), +(292,80,o), +(257,20,o), +(181,20,cs), +(106,20,o), +(71,80,o), +(71,202,cs), +(71,729,l), +(40,729,l), +(40,202,ls), +(40,60,o), +(86,-10,o), +(182,-10,cs) +); +} +); +width = 363; +}, +{ +anchors = ( +{ +name = bottom; +pos = (228,0); +}, +{ +name = ogonek; +pos = (335,0); +}, +{ +name = top; +pos = (228,729); +}, +{ +name = topright; +pos = (320,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(374,-10,o), +(451,64,o), +(451,244,cs), +(451,729,l), +(275,729,l), +(275,252,ls), +(275,214,o), +(275,153,o), +(239,153,cs), +(212,153,o), +(203,177,o), +(203,252,cs), +(203,729,l), +(25,729,l), +(25,244,ls), +(25,81,o), +(85,-10,o), +(237,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,-9,o), +(441,62,o), +(441,212,cs), +(441,729,l), +(265,729,l), +(265,209,ls), +(265,177,o), +(258,155,o), +(229,155,cs), +(207,155,o), +(193,166,o), +(193,209,cs), +(193,729,l), +(15,729,l), +(15,212,ls), +(15,79,o), +(83,-9,o), +(227,-9,cs) +); +} +); +width = 456; +}, +{ +anchors = ( +{ +name = bottom; +pos = (342,0); +}, +{ +name = ogonek; +pos = (424,0); +}, +{ +name = top; +pos = (342,729); +}, +{ +name = topright; +pos = (584,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-8,o), +(621,99,o), +(621,260,cs), +(621,729,l), +(584,729,l), +(584,264,ls), +(584,122,o), +(507,29,o), +(342,29,cs), +(194,29,o), +(100,105,o), +(100,264,cs), +(100,729,l), +(62,729,l), +(62,260,ls), +(62,90,o), +(169,-8,o), +(342,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 683; +}, +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = ogonek; +pos = (473,0); +}, +{ +name = top; +pos = (345,729); +}, +{ +name = topright; +pos = (502,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(547,-10,o), +(668,99,o), +(668,284,cs), +(668,729,l), +(465,729,l), +(465,283,ls), +(465,211,o), +(420,169,o), +(345,169,cs), +(271,169,o), +(224,213,o), +(224,283,cs), +(224,729,l), +(21,729,l), +(21,284,ls), +(21,104,o), +(146,-10,o), +(343,-10,cs) +); +} +); +width = 689; +}, +{ +anchors = ( +{ +name = bottom; +pos = (372,0); +}, +{ +name = ogonek; +pos = (445,0); +}, +{ +name = top; +pos = (372,729); +}, +{ +name = topright; +pos = (674,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(566,-8,o), +(693,75,o), +(693,294,cs), +(693,729,l), +(655,729,l), +(655,298,ls), +(655,125,o), +(575,29,o), +(371,29,cs), +(171,29,o), +(88,122,o), +(88,298,cs), +(88,729,l), +(50,729,l), +(50,294,ls), +(50,74,o), +(178,-8,o), +(371,-8,cs) +); +} +); +width = 743; +}, +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = ogonek; +pos = (542,0); +}, +{ +name = top; +pos = (385,729); +}, +{ +name = topright; +pos = (554,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(644,-10,o), +(751,122,o), +(751,319,cs), +(751,729,l), +(525,729,l), +(525,318,ls), +(525,206,o), +(467,176,o), +(384,176,cs), +(274,176,o), +(243,234,o), +(243,318,cs), +(243,729,l), +(18,729,l), +(18,319,ls), +(18,88,o), +(162,-10,o), +(384,-10,cs) +); +} +); +width = 769; +}, +{ +anchors = ( +{ +name = bottom; +pos = (361,0); +}, +{ +name = ogonek; +pos = (443,0); +}, +{ +name = top; +pos = (361,729); +}, +{ +name = topright; +pos = (599,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(540,-8,o), +(636,99,o), +(636,260,cs), +(636,729,l), +(599,729,l), +(599,264,ls), +(599,122,o), +(524,29,o), +(361,29,cs), +(217,29,o), +(125,105,o), +(125,264,cs), +(125,729,l), +(87,729,l), +(87,260,ls), +(87,90,o), +(192,-8,o), +(361,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 723; +}, +{ +anchors = ( +{ +name = bottom; +pos = (367,0); +}, +{ +name = ogonek; +pos = (493,0); +}, +{ +name = top; +pos = (367,729); +}, +{ +name = topright; +pos = (518,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(563,-10,o), +(682,99,o), +(682,284,cs), +(682,729,l), +(481,729,l), +(481,279,ls), +(481,207,o), +(438,165,o), +(367,165,cs), +(295,165,o), +(252,207,o), +(252,279,cs), +(252,729,l), +(51,729,l), +(51,284,ls), +(51,94,o), +(162,-10,o), +(365,-10,cs) +); +} +); +width = 734; +}, +{ +anchors = ( +{ +name = bottom; +pos = (182,0); +}, +{ +name = ogonek; +pos = (230,0); +}, +{ +name = top; +pos = (322,729); +}, +{ +name = topright; +pos = (472,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,-10,o), +(339,24,o), +(376,199,cs), +(488,729,l), +(456,729,l), +(349,209,ls), +(323,84,o), +(284,21,o), +(187,21,cs), +(96,21,o), +(48,62,o), +(88,251,cs), +(188,729,l), +(156,729,l), +(57,249,ls), +(22,77,o), +(56,-10,o), +(182,-10,cs) +); +} +); +width = 449; +}, +{ +anchors = ( +{ +name = bottom; +pos = (184,0); +}, +{ +name = ogonek; +pos = (300,0); +}, +{ +name = top; +pos = (333,729); +}, +{ +name = topright; +pos = (415,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,-10,o), +(404,59,o), +(438,225,cs), +(542,729,l), +(368,729,l), +(267,248,ls), +(252,176,o), +(240,153,o), +(216,153,cs), +(193,153,o), +(182,173,o), +(199,255,cs), +(297,729,l), +(120,729,l), +(22,259,ls), +(-14,86,o), +(35,-10,o), +(201,-10,cs) +); +} +); +width = 472; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = ogonek; +pos = (380,0); +}, +{ +name = top; +pos = (452,729); +}, +{ +name = topright; +pos = (689,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(500,-10,o), +(592,88,o), +(627,255,cs), +(726,729,l), +(689,729,l), +(590,260,ls), +(553,85,o), +(453,25,o), +(322,25,cs), +(169,25,o), +(89,125,o), +(120,274,cs), +(215,729,l), +(178,729,l), +(83,275,ls), +(47,104,o), +(140,-10,o), +(318,-10,cs) +); +} +); +width = 712; +}, +{ +anchors = ( +{ +name = bottom; +pos = (314,0); +}, +{ +name = ogonek; +pos = (437,0); +}, +{ +name = top; +pos = (455,729); +}, +{ +name = topright; +pos = (595,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(632,77,o), +(671,263,cs), +(769,729,l), +(572,729,l), +(483,302,ls), +(466,222,o), +(430,169,o), +(344,169,cs), +(272,169,o), +(231,211,o), +(249,300,cs), +(338,729,l), +(141,729,l), +(53,306,ls), +(15,121,o), +(107,-10,o), +(324,-10,cs) +); +} +); +width = 722; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = ogonek; +pos = (399,0); +}, +{ +name = top; +pos = (475,729); +}, +{ +name = topright; +pos = (755,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(528,-8,o), +(655,65,o), +(699,276,cs), +(793,729,l), +(755,729,l), +(663,289,ls), +(627,119,o), +(544,28,o), +(358,28,cs), +(171,28,o), +(68,122,o), +(107,308,cs), +(195,729,l), +(157,729,l), +(68,305,ls), +(27,109,o), +(137,-8,o), +(352,-8,cs) +); +} +); +width = 757; +}, +{ +anchors = ( +{ +name = bottom; +pos = (347,0); +}, +{ +name = ogonek; +pos = (505,0); +}, +{ +name = top; +pos = (490,729); +}, +{ +name = topright; +pos = (657,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(609,-10,o), +(719,94,o), +(759,283,cs), +(853,729,l), +(629,729,l), +(538,293,ls), +(523,223,o), +(480,176,o), +(383,176,cs), +(282,176,o), +(246,228,o), +(263,310,cs), +(350,729,l), +(127,729,l), +(43,325,ls), +(-1,112,o), +(116,-10,o), +(368,-10,cs) +); +} +); +width = 793; +} +); +unicode = 85; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_acute.glyph new file mode 100644 index 00000000..8308d6a7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_acute.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Uacute; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (169,57); +ref = acutecomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (126,51); +ref = acutecomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (324,57); +ref = acutecomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (283,56); +ref = acutecomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (146,57); +ref = acutecomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (126,51); +ref = acutecomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (307,57); +ref = acutecomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (254,51); +ref = acutecomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (324,57); +ref = acutecomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (278,56); +ref = acutecomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (305,57); +ref = acutecomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (257,51); +ref = acutecomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (181,57); +ref = acutecomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (138,51); +ref = acutecomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (310,57); +ref = acutecomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (260,51); +ref = acutecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (332,57); +ref = acutecomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (290,56); +ref = acutecomb; +} +); +width = 793; +} +); +unicode = 218; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_breve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_breve.glyph new file mode 100644 index 00000000..cbfacfe8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_breve.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Ubreve; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (101,57); +ref = brevecomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (43,51); +ref = brevecomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (208,57); +ref = brevecomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (161,56); +ref = brevecomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (78,57); +ref = brevecomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (43,51); +ref = brevecomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (194,51); +ref = brevecomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (147,51); +ref = brevecomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (208,57); +ref = brevecomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (156,56); +ref = brevecomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (194,51); +ref = brevecomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (156,51); +ref = brevecomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (108,57); +ref = brevecomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (53,51); +ref = brevecomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (196,57); +ref = brevecomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (143,51); +ref = brevecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (210,57); +ref = brevecomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (168,51); +ref = brevecomb; +} +); +width = 793; +} +); +unicode = 364; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_circumflex.glyph new file mode 100644 index 00000000..348f9dfd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_circumflex.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Ucircumflex; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,57); +ref = circumflexcomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (21,51); +ref = circumflexcomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (203,57); +ref = circumflexcomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (109,56); +ref = circumflexcomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (73,57); +ref = circumflexcomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (21,51); +ref = circumflexcomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (198,57); +ref = circumflexcomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (119,51); +ref = circumflexcomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (203,57); +ref = circumflexcomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (104,56); +ref = circumflexcomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (198,57); +ref = circumflexcomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (128,51); +ref = circumflexcomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (107,57); +ref = circumflexcomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (31,51); +ref = circumflexcomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (200,57); +ref = circumflexcomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (126,51); +ref = circumflexcomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (209,57); +ref = circumflexcomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (114,56); +ref = circumflexcomb; +} +); +width = 793; +} +); +unicode = 219; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_dieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_dieresis.glyph new file mode 100644 index 00000000..aca3f966 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_dieresis.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Udieresis; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (107,57); +ref = dieresiscomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (13,51); +ref = dieresiscomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (205,57); +ref = dieresiscomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (117,51); +ref = dieresiscomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (84,57); +ref = dieresiscomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (13,51); +ref = dieresiscomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (200,57); +ref = dieresiscomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (123,51); +ref = dieresiscomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (205,57); +ref = dieresiscomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (112,51); +ref = dieresiscomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (200,57); +ref = dieresiscomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (132,51); +ref = dieresiscomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (113,57); +ref = dieresiscomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (16,51); +ref = dieresiscomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (205,57); +ref = dieresiscomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (126,51); +ref = dieresiscomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (213,57); +ref = dieresiscomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (121,51); +ref = dieresiscomb; +} +); +width = 793; +} +); +unicode = 220; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_dieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_dieresis.ss01.glyph new file mode 100644 index 00000000..7377df02 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_dieresis.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Udieresis.ss01; +kernLeft = KO_U; +kernRight = KO_U; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (118,57); +ref = dieresiscomb.ss01; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (14,51); +ref = dieresiscomb.ss01; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (238,57); +ref = dieresiscomb.ss01; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (139,51); +ref = dieresiscomb.ss01; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (95,57); +ref = dieresiscomb.ss01; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (14,51); +ref = dieresiscomb.ss01; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (227,57); +ref = dieresiscomb.ss01; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = U; +}, +{ +pos = (135,51); +ref = dieresiscomb.ss01; +} +); +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = U; +}, +{ +pos = (238,57); +ref = dieresiscomb.ss01; +} +); +width = 743; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = U; +}, +{ +pos = (134,51); +ref = dieresiscomb.ss01; +} +); +width = 769; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (225,57); +ref = dieresiscomb.ss01; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (144,51); +ref = dieresiscomb.ss01; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (126,57); +ref = dieresiscomb.ss01; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (24,51); +ref = dieresiscomb.ss01; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (227,57); +ref = dieresiscomb.ss01; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (142,51); +ref = dieresiscomb.ss01; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (250,57); +ref = dieresiscomb.ss01; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (150,51); +ref = dieresiscomb.ss01; +} +); +width = 793; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_dotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_dotbelow.glyph new file mode 100644 index 00000000..8ac7d4a9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_dotbelow.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Udotbelow; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (162,0); +ref = dotbelowcomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (120,0); +ref = dotbelowcomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (310,0); +ref = dotbelowcomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (247,0); +ref = dotbelowcomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (139,0); +ref = dotbelowcomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (120,0); +ref = dotbelowcomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (290,0); +ref = dotbelowcomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (241,0); +ref = dotbelowcomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (310,0); +ref = dotbelowcomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (242,0); +ref = dotbelowcomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (288,0); +ref = dotbelowcomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (246,0); +ref = dotbelowcomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (172,0); +ref = dotbelowcomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (119,0); +ref = dotbelowcomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (299,0); +ref = dotbelowcomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (243,0); +ref = dotbelowcomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (335,0); +ref = dotbelowcomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (250,0); +ref = dotbelowcomb; +} +); +width = 793; +} +); +unicode = 7908; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_dotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_dotbelow.ss01.glyph new file mode 100644 index 00000000..8af86d92 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_dotbelow.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Udotbelow.ss01; +kernLeft = KO_U; +kernRight = KO_U; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (170,0); +ref = dotbelowcomb.ss01; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (109,0); +ref = dotbelowcomb.ss01; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (323,0); +ref = dotbelowcomb.ss01; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (259,0); +ref = dotbelowcomb.ss01; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (147,0); +ref = dotbelowcomb.ss01; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (109,0); +ref = dotbelowcomb.ss01; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (303,0); +ref = dotbelowcomb.ss01; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = U; +}, +{ +pos = (230,0); +ref = dotbelowcomb.ss01; +} +); +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = U; +}, +{ +pos = (323,0); +ref = dotbelowcomb.ss01; +} +); +width = 743; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = U; +}, +{ +pos = (254,0); +ref = dotbelowcomb.ss01; +} +); +width = 769; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (301,0); +ref = dotbelowcomb.ss01; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (233,0); +ref = dotbelowcomb.ss01; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (180,0); +ref = dotbelowcomb.ss01; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (110,0); +ref = dotbelowcomb.ss01; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (312,0); +ref = dotbelowcomb.ss01; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (234,0); +ref = dotbelowcomb.ss01; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (346,0); +ref = dotbelowcomb.ss01; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (264,0); +ref = dotbelowcomb.ss01; +} +); +width = 793; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_grave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_grave.glyph new file mode 100644 index 00000000..2c0128c6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_grave.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Ugrave; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (91,57); +ref = gravecomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (29,51); +ref = gravecomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (238,57); +ref = gravecomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (166,56); +ref = gravecomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (68,57); +ref = gravecomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (29,51); +ref = gravecomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (228,57); +ref = gravecomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (157,51); +ref = gravecomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (238,57); +ref = gravecomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (161,56); +ref = gravecomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (226,57); +ref = gravecomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (168,51); +ref = gravecomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (104,57); +ref = gravecomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (48,51); +ref = gravecomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (233,57); +ref = gravecomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (159,51); +ref = gravecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (245,57); +ref = gravecomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (173,56); +ref = gravecomb; +} +); +width = 793; +} +); +unicode = 217; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_hookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_hookabove.glyph new file mode 100644 index 00000000..11bdce8f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_hookabove.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Uhookabove; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (144,57); +ref = hookabovecomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (99,50); +ref = hookabovecomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (274,57); +ref = hookabovecomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (247,51); +ref = hookabovecomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (121,57); +ref = hookabovecomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (99,50); +ref = hookabovecomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (254,57); +ref = hookabovecomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (203,51); +ref = hookabovecomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (274,57); +ref = hookabovecomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (242,51); +ref = hookabovecomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (252,57); +ref = hookabovecomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (211,51); +ref = hookabovecomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (133,56); +ref = hookabovecomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (102,49); +ref = hookabovecomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (263,56); +ref = hookabovecomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (200,50); +ref = hookabovecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (287,56); +ref = hookabovecomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (238,48); +ref = hookabovecomb; +} +); +width = 793; +} +); +unicode = 7910; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_horn.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horn.glyph new file mode 100644 index 00000000..ac169aaa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horn.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Uhorn; +kernLeft = KO_U; +kernRight = KO_Uhorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (336,213); +ref = horncomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (290,187); +ref = horncomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (644,204); +ref = horncomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (529,119); +ref = horncomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (301,213); +ref = horncomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (290,187); +ref = horncomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (564,220); +ref = horncomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = U; +}, +{ +pos = (483,139); +ref = horncomb; +} +); +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = U; +}, +{ +pos = (644,204); +ref = horncomb; +} +); +width = 743; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = U; +}, +{ +pos = (524,119); +ref = horncomb; +} +); +width = 769; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (556,220); +ref = horncomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (479,139); +ref = horncomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (379,213); +ref = horncomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (319,187); +ref = horncomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (597,219); +ref = horncomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (489,139); +ref = horncomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (660,204); +ref = horncomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (545,107); +ref = horncomb; +} +); +width = 793; +} +); +unicode = 431; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_hornacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_hornacute.glyph new file mode 100644 index 00000000..d812f9b0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_hornacute.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Uhornacute; +kernLeft = KO_U; +kernRight = KO_Uhorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (169,57); +ref = acutecomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (126,51); +ref = acutecomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (324,57); +ref = acutecomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (283,56); +ref = acutecomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (146,57); +ref = acutecomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (126,51); +ref = acutecomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (307,57); +ref = acutecomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (254,51); +ref = acutecomb; +} +); +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (324,57); +ref = acutecomb; +} +); +width = 743; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (278,56); +ref = acutecomb; +} +); +width = 769; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (305,57); +ref = acutecomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (257,51); +ref = acutecomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (181,57); +ref = acutecomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (138,51); +ref = acutecomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (310,57); +ref = acutecomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (260,51); +ref = acutecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (332,57); +ref = acutecomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (290,56); +ref = acutecomb; +} +); +width = 793; +} +); +unicode = 7912; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_horndotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horndotbelow.glyph new file mode 100644 index 00000000..5be0f4a8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horndotbelow.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Uhorndotbelow; +kernLeft = KO_U; +kernRight = KO_Uhorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (162,0); +ref = dotbelowcomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (120,0); +ref = dotbelowcomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (310,0); +ref = dotbelowcomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (247,0); +ref = dotbelowcomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (139,0); +ref = dotbelowcomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (120,0); +ref = dotbelowcomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (290,0); +ref = dotbelowcomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (241,0); +ref = dotbelowcomb; +} +); +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (310,0); +ref = dotbelowcomb; +} +); +width = 743; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (242,0); +ref = dotbelowcomb; +} +); +width = 769; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (288,0); +ref = dotbelowcomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (246,0); +ref = dotbelowcomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (172,0); +ref = dotbelowcomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (119,0); +ref = dotbelowcomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (299,0); +ref = dotbelowcomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (243,0); +ref = dotbelowcomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (335,0); +ref = dotbelowcomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (250,0); +ref = dotbelowcomb; +} +); +width = 793; +} +); +unicode = 7920; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_horndotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horndotbelow.ss01.glyph new file mode 100644 index 00000000..50edb991 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horndotbelow.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = Uhorndotbelow.ss01; +kernLeft = KO_U; +kernRight = KO_Uhorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (170,0); +ref = dotbelowcomb.ss01; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (109,0); +ref = dotbelowcomb.ss01; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (323,0); +ref = dotbelowcomb.ss01; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (259,0); +ref = dotbelowcomb.ss01; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (147,0); +ref = dotbelowcomb.ss01; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (109,0); +ref = dotbelowcomb.ss01; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (303,0); +ref = dotbelowcomb.ss01; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (230,0); +ref = dotbelowcomb.ss01; +} +); +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (323,0); +ref = dotbelowcomb.ss01; +} +); +width = 743; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (254,0); +ref = dotbelowcomb.ss01; +} +); +width = 769; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (301,0); +ref = dotbelowcomb.ss01; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (233,0); +ref = dotbelowcomb.ss01; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (180,0); +ref = dotbelowcomb.ss01; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (110,0); +ref = dotbelowcomb.ss01; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (312,0); +ref = dotbelowcomb.ss01; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (234,0); +ref = dotbelowcomb.ss01; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (346,0); +ref = dotbelowcomb.ss01; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (264,0); +ref = dotbelowcomb.ss01; +} +); +width = 793; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_horngrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horngrave.glyph new file mode 100644 index 00000000..5b96c645 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horngrave.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Uhorngrave; +kernLeft = KO_U; +kernRight = KO_Uhorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (91,57); +ref = gravecomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (29,51); +ref = gravecomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (238,57); +ref = gravecomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (166,56); +ref = gravecomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (68,57); +ref = gravecomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (29,51); +ref = gravecomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (228,57); +ref = gravecomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (157,51); +ref = gravecomb; +} +); +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (238,57); +ref = gravecomb; +} +); +width = 743; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (161,56); +ref = gravecomb; +} +); +width = 769; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (226,57); +ref = gravecomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (168,51); +ref = gravecomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (104,57); +ref = gravecomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (48,51); +ref = gravecomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (233,57); +ref = gravecomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (159,51); +ref = gravecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (245,57); +ref = gravecomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (173,56); +ref = gravecomb; +} +); +width = 793; +} +); +unicode = 7914; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_hornhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_hornhookabove.glyph new file mode 100644 index 00000000..18d5422f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_hornhookabove.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Uhornhookabove; +kernLeft = KO_U; +kernRight = KO_Uhorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (144,57); +ref = hookabovecomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (99,50); +ref = hookabovecomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (274,57); +ref = hookabovecomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (247,51); +ref = hookabovecomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (121,57); +ref = hookabovecomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (99,50); +ref = hookabovecomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (254,57); +ref = hookabovecomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (203,51); +ref = hookabovecomb; +} +); +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (274,57); +ref = hookabovecomb; +} +); +width = 743; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (242,51); +ref = hookabovecomb; +} +); +width = 769; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (252,57); +ref = hookabovecomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (211,51); +ref = hookabovecomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (133,56); +ref = hookabovecomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (102,49); +ref = hookabovecomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (263,56); +ref = hookabovecomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (200,50); +ref = hookabovecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (287,56); +ref = hookabovecomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (238,48); +ref = hookabovecomb; +} +); +width = 793; +} +); +unicode = 7916; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_horntilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horntilde.glyph new file mode 100644 index 00000000..8006fe8e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_horntilde.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = Uhorntilde; +kernLeft = KO_U; +kernRight = KO_Uhorn; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (85,57); +ref = tildecomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (6,50); +ref = tildecomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (175,57); +ref = tildecomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (136,56); +ref = tildecomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (62,57); +ref = tildecomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (6,50); +ref = tildecomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Uhorn; +}, +{ +alignment = -1; +pos = (173,57); +ref = tildecomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (108,51); +ref = tildecomb; +} +); +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (175,57); +ref = tildecomb; +} +); +width = 743; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (131,56); +ref = tildecomb; +} +); +width = 769; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (173,57); +ref = tildecomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (117,51); +ref = tildecomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (97,57); +ref = tildecomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (15,50); +ref = tildecomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (178,57); +ref = tildecomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (111,51); +ref = tildecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (183,57); +ref = tildecomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (146,51); +ref = tildecomb; +} +); +width = 793; +} +); +unicode = 7918; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_hungarumlaut.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_hungarumlaut.glyph new file mode 100644 index 00000000..940d5fa9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_hungarumlaut.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Uhungarumlaut; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (128,57); +ref = hungarumlautcomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (55,51); +ref = hungarumlautcomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (253,57); +ref = hungarumlautcomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (183,56); +ref = hungarumlautcomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (105,57); +ref = hungarumlautcomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (55,51); +ref = hungarumlautcomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (241,57); +ref = hungarumlautcomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (153,51); +ref = hungarumlautcomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (253,57); +ref = hungarumlautcomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (178,56); +ref = hungarumlautcomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (239,57); +ref = hungarumlautcomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (160,51); +ref = hungarumlautcomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (139,57); +ref = hungarumlautcomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (57,51); +ref = hungarumlautcomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (244,57); +ref = hungarumlautcomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (160,51); +ref = hungarumlautcomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (260,57); +ref = hungarumlautcomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (185,56); +ref = hungarumlautcomb; +} +); +width = 793; +} +); +unicode = 368; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_macron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_macron.glyph new file mode 100644 index 00000000..ac00265e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_macron.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Umacron; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,58); +ref = macroncomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (44,49); +ref = macroncomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (154,58); +ref = macroncomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (136,56); +ref = macroncomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (65,58); +ref = macroncomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (44,49); +ref = macroncomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (162,57); +ref = macroncomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (124,51); +ref = macroncomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (154,58); +ref = macroncomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (131,56); +ref = macroncomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (162,57); +ref = macroncomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (133,51); +ref = macroncomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (99,58); +ref = macroncomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (54,49); +ref = macroncomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (166,57); +ref = macroncomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (147,51); +ref = macroncomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (161,58); +ref = macroncomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (142,56); +ref = macroncomb; +} +); +width = 793; +} +); +unicode = 362; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_ogonek.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_ogonek.glyph new file mode 100644 index 00000000..97a93efb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_ogonek.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Uogonek; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (156,0); +ref = ogonekcomb.e; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (142,0); +ref = ogonekcomb.e; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (326,0); +ref = ogonekcomb.e; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (289,0); +ref = ogonekcomb.e; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (133,0); +ref = ogonekcomb.e; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (142,0); +ref = ogonekcomb.e; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (309,2); +ref = ogonekcomb.e; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (248,0); +ref = ogonekcomb.e; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (326,0); +ref = ogonekcomb.e; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (284,0); +ref = ogonekcomb.e; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (313,2); +ref = ogonekcomb.e; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (259,0); +ref = ogonekcomb.e; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (164,0); +ref = ogonekcomb.e; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (157,0); +ref = ogonekcomb.e; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (307,2); +ref = ogonekcomb.e; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (262,0); +ref = ogonekcomb.e; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (320,0); +ref = ogonekcomb.e; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (282,0); +ref = ogonekcomb.e; +} +); +width = 793; +} +); +unicode = 370; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_ring.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_ring.glyph new file mode 100644 index 00000000..60dbaa36 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_ring.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Uring; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (122,57); +ref = ringcomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (84,51); +ref = ringcomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (234,57); +ref = ringcomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (216,56); +ref = ringcomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (99,57); +ref = ringcomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (84,51); +ref = ringcomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (229,57); +ref = ringcomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (197,51); +ref = ringcomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (234,57); +ref = ringcomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (211,56); +ref = ringcomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (227,57); +ref = ringcomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (206,51); +ref = ringcomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (134,57); +ref = ringcomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (95,51); +ref = ringcomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (233,57); +ref = ringcomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (200,51); +ref = ringcomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (239,57); +ref = ringcomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (220,51); +ref = ringcomb; +} +); +width = 793; +} +); +unicode = 366; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/U_tilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/U_tilde.glyph new file mode 100644 index 00000000..ec3234f3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/U_tilde.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = Utilde; +kernLeft = KO_U; +kernRight = KO_Uacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = U; +}, +{ +pos = (85,57); +ref = tildecomb; +} +); +width = 449; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = U; +}, +{ +pos = (6,50); +ref = tildecomb; +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = U; +}, +{ +pos = (175,57); +ref = tildecomb; +} +); +width = 763; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = U; +}, +{ +pos = (136,56); +ref = tildecomb; +} +); +width = 799; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (62,57); +ref = tildecomb; +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (6,50); +ref = tildecomb; +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (173,57); +ref = tildecomb; +} +); +width = 723; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (108,51); +ref = tildecomb; +} +); +width = 721; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (175,57); +ref = tildecomb; +} +); +width = 763; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = U; +}, +{ +alignment = -1; +pos = (131,56); +ref = tildecomb; +} +); +width = 799; +}, +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (173,57); +ref = tildecomb; +} +); +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (117,51); +ref = tildecomb; +} +); +width = 734; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = U; +}, +{ +pos = (97,57); +ref = tildecomb; +} +); +width = 449; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = U; +}, +{ +pos = (15,50); +ref = tildecomb; +} +); +width = 472; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = U; +}, +{ +pos = (178,57); +ref = tildecomb; +} +); +width = 712; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = U; +}, +{ +pos = (111,51); +ref = tildecomb; +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = U; +}, +{ +pos = (183,57); +ref = tildecomb; +} +); +width = 757; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = U; +}, +{ +pos = (146,51); +ref = tildecomb; +} +); +width = 793; +} +); +unicode = 360; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/V_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/V_.glyph new file mode 100644 index 00000000..19c4bd61 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/V_.glyph @@ -0,0 +1,865 @@ +{ +glyphname = V; +kernLeft = KO_V; +kernRight = KO_V; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (234,0); +}, +{ +name = top; +pos = (234,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(350,0,l), +(457,729,l), +(290,729,l), +(248,316,l), +(237,166,l), +(230,166,l), +(217,317,l), +(177,729,l), +(10,729,l), +(116,0,l) +); +}, +{ +closed = 1; +nodes = ( +(850,0,l), +(957,729,l), +(790,729,l), +(748,316,ls), +(744,273,o), +(741,229,o), +(737,166,c), +(730,166,l), +(726,230,o), +(721,273,o), +(717,317,cs), +(677,729,l), +(510,729,l), +(616,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,0,l), +(457,729,l), +(290,729,l), +(248,316,l), +(237,146,l), +(230,146,l), +(217,317,l), +(177,729,l), +(10,729,l), +(116,0,l) +); +} +); +width = 467; +}, +{ +anchors = ( +{ +name = bottom; +pos = (198,0); +}, +{ +name = top; +pos = (198,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(219,0,l), +(384,729,l), +(351,729,l), +(230,189,l), +(199,37,l), +(193,37,l), +(162,191,l), +(43,729,l), +(10,729,l), +(174,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,l), +(384,729,l), +(351,729,l), +(230,189,l), +(199,30,l), +(193,30,l), +(162,191,l), +(43,729,l), +(10,729,l), +(172,0,l) +); +} +); +width = 394; +}, +{ +anchors = ( +{ +name = bottom; +pos = (413,0); +}, +{ +name = top; +pos = (413,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(436,0,l), +(806,729,l), +(764,729,l), +(442,96,l), +(414,38,l), +(408,38,l), +(380,95,l), +(58,729,l), +(16,729,l), +(385,0,l) +); +} +); +width = 822; +}, +{ +anchors = ( +{ +name = bottom; +pos = (438,0); +}, +{ +name = top; +pos = (438,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(586,0,l), +(884,729,l), +(632,729,l), +(470,262,l), +(442,179,l), +(435,179,l), +(406,264,l), +(245,729,l), +(-7,729,l), +(291,0,l) +); +} +); +width = 877; +}, +{ +anchors = ( +{ +name = bottom; +pos = (175,0); +}, +{ +name = top; +pos = (175,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(369,729,l), +(336,729,l), +(215,189,l), +(184,37,l), +(178,37,l), +(147,191,l), +(28,729,l), +(-5,729,l), +(159,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,0,l), +(341,729,l), +(308,729,l), +(205,205,l), +(174,50,l), +(173,50,l), +(141,207,l), +(40,729,l), +(7,729,l), +(152,0,l) +); +} +); +width = 348; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (244,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(367,0,l), +(474,729,l), +(307,729,l), +(265,316,l), +(254,166,l), +(247,166,l), +(234,317,l), +(194,729,l), +(27,729,l), +(133,0,l) +); +}, +{ +closed = 1; +nodes = ( +(867,0,l), +(974,729,l), +(807,729,l), +(765,316,ls), +(761,273,o), +(758,229,o), +(754,166,c), +(747,166,l), +(743,230,o), +(738,273,o), +(734,317,cs), +(694,729,l), +(527,729,l), +(633,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,0,l), +(477,729,l), +(300,729,l), +(258,375,l), +(243,229,l), +(242,229,l), +(227,376,l), +(187,729,l), +(0,729,l), +(121,0,l) +); +} +); +width = 477; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = top; +pos = (316,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(368,0,l), +(651,729,l), +(611,729,l), +(382,135,l), +(344,35,l), +(338,35,l), +(300,135,l), +(73,729,l), +(31,729,l), +(314,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,0,l), +(626,729,l), +(586,729,l), +(431,333,l), +(317,40,l), +(316,40,l), +(202,333,l), +(48,729,l), +(6,729,l), +(292,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 632; +}, +{ +anchors = ( +{ +name = bottom; +pos = (382,0); +}, +{ +name = top; +pos = (382,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,0,l), +(778,729,l), +(551,729,l), +(442,336,l), +(403,193,l), +(395,193,l), +(355,337,l), +(247,729,l), +(20,729,l), +(263,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,0,l), +(765,729,l), +(536,729,l), +(412,315,l), +(383,219,l), +(382,219,l), +(352,315,l), +(228,729,l), +(-5,729,l), +(248,0,l) +); +} +); +width = 760; +}, +{ +anchors = ( +{ +name = bottom; +pos = (408,0); +}, +{ +name = top; +pos = (408,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(429,0,l), +(801,729,l), +(757,729,l), +(463,148,l), +(407,38,l), +(406,38,l), +(348,148,l), +(55,729,l), +(11,729,l), +(384,0,l) +); +} +); +width = 812; +}, +{ +anchors = ( +{ +name = bottom; +pos = (432,0); +}, +{ +name = top; +pos = (432,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(574,0,l), +(878,729,l), +(629,729,l), +(482,334,l), +(437,209,l), +(436,209,l), +(390,334,l), +(244,729,l), +(-10,729,l), +(295,0,l) +); +} +); +width = 868; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(371,0,l), +(654,729,l), +(614,729,l), +(385,135,l), +(347,35,l), +(341,35,l), +(303,135,l), +(76,729,l), +(34,729,l), +(317,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(359,0,l), +(617,729,l), +(576,729,l), +(396,210,l), +(337,36,l), +(331,36,l), +(268,210,l), +(81,729,l), +(41,729,l), +(309,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 657; +}, +{ +anchors = ( +{ +name = bottom; +pos = (380,0); +}, +{ +name = top; +pos = (380,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(527,0,l), +(769,729,l), +(542,729,l), +(433,336,l), +(394,193,l), +(386,193,l), +(346,337,l), +(238,729,l), +(11,729,l), +(254,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(516,0,l), +(750,729,l), +(529,729,l), +(411,277,l), +(389,169,l), +(377,169,l), +(354,277,l), +(236,729,l), +(10,729,l), +(246,0,l) +); +} +); +width = 760; +}, +{ +anchors = ( +{ +name = bottom; +pos = (153,0); +}, +{ +name = top; +pos = (304,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,0,l), +(478,729,l), +(444,729,l), +(212,189,l), +(149,27,l), +(143,27,l), +(145,191,l), +(140,729,l), +(108,729,l), +(119,0,l) +); +} +); +width = 389; +}, +{ +anchors = ( +{ +name = bottom; +pos = (198,0); +}, +{ +name = top; +pos = (335,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,0,l), +(587,729,l), +(421,729,l), +(297,316,l), +(252,166,l), +(245,166,l), +(266,317,l), +(310,729,l), +(145,729,l), +(99,0,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,0,l), +(582,729,l), +(398,729,l), +(275,320,l), +(230,152,l), +(222,152,l), +(237,323,l), +(271,729,l), +(104,729,l), +(77,0,l) +); +} +); +width = 497; +}, +{ +anchors = ( +{ +name = bottom; +pos = (288,0); +}, +{ +name = top; +pos = (439,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,0,l), +(731,729,l), +(688,729,l), +(335,124,l), +(284,36,l), +(279,36,l), +(264,124,l), +(166,729,l), +(128,729,l), +(248,0,l) +); +} +); +width = 665; +}, +{ +anchors = ( +{ +name = bottom; +pos = (334,0); +}, +{ +name = top; +pos = (485,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,0,l), +(846,729,l), +(618,729,l), +(422,317,l), +(368,195,l), +(360,195,l), +(349,314,l), +(316,729,l), +(106,729,l), +(200,0,l) +); +} +); +width = 762; +}, +{ +anchors = ( +{ +name = bottom; +pos = (363,0); +}, +{ +name = top; +pos = (514,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,0,l), +(894,729,l), +(848,729,l), +(397,94,l), +(358,36,l), +(352,36,l), +(337,93,l), +(151,729,l), +(113,729,l), +(325,0,l) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = bottom; +pos = (386,0); +}, +{ +name = top; +pos = (537,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(526,0,l), +(963,729,l), +(708,729,l), +(449,258,l), +(406,180,l), +(398,180,l), +(388,260,l), +(325,729,l), +(88,729,l), +(233,0,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(526,0,l), +(963,729,l), +(708,729,l), +(495,341,l), +(406,180,l), +(398,180,l), +(377,340,l), +(325,729,l), +(88,729,l), +(233,0,l) +); +} +); +width = 862; +} +); +unicode = 86; +userData = { +KernOnName = V; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/W_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/W_.glyph new file mode 100644 index 00000000..7264c7ec --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/W_.glyph @@ -0,0 +1,1168 @@ +{ +glyphname = W; +kernLeft = KO_W; +kernRight = KO_W; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (375,0); +}, +{ +name = top; +pos = (375,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(339,0,l), +(374,475,l), +(380,475,l), +(410,0,l), +(648,0,l), +(740,729,l), +(560,729,l), +(534,378,l), +(528,189,l), +(521,189,l), +(477,729,l), +(276,729,l), +(232,191,l), +(225,191,l), +(215,380,l), +(189,729,l), +(10,729,l), +(102,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,0,l), +(366,363,l), +(373,505,l), +(381,505,l), +(387,363,l), +(410,0,l), +(648,0,l), +(740,729,l), +(560,729,l), +(530,277,l), +(528,182,l), +(520,182,l), +(514,277,l), +(477,729,l), +(276,729,l), +(239,277,l), +(233,184,l), +(225,184,l), +(221,277,l), +(189,729,l), +(10,729,l), +(102,0,l) +); +} +); +width = 750; +}, +{ +anchors = ( +{ +name = bottom; +pos = (297,0); +}, +{ +name = top; +pos = (297,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(294,680,l), +(299,680,l), +(414,0,l), +(459,0,l), +(578,729,l), +(547,729,l), +(476,289,l), +(439,31,l), +(436,31,l), +(320,729,l), +(274,729,l), +(158,32,l), +(156,32,l), +(122,276,l), +(46,729,l), +(16,729,l), +(135,0,l) +); +} +); +}; +guides = ( +{ +pos = (157,33); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,0,l), +(269,511,l), +(294,691,l), +(300,691,l), +(325,511,l), +(413,0,l), +(462,0,l), +(578,729,l), +(546,729,l), +(464,211,l), +(441,33,l), +(435,33,l), +(410,211,l), +(321,729,l), +(273,729,l), +(184,211,l), +(159,33,l), +(154,33,l), +(131,211,l), +(48,729,l), +(16,729,l), +(133,0,l) +); +} +); +width = 594; +}, +{ +anchors = ( +{ +name = bottom; +pos = (538,0); +}, +{ +name = top; +pos = (538,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,0,l), +(475,511,l), +(535,691,l), +(540,691,l), +(597,515,l), +(765,0,l), +(818,0,l), +(1056,729,l), +(1016,729,l), +(842,195,l), +(795,42,l), +(787,42,l), +(738,194,l), +(564,729,l), +(512,729,l), +(334,201,l), +(281,43,l), +(274,43,l), +(228,196,l), +(60,729,l), +(19,729,l), +(250,0,l) +); +} +); +width = 1075; +}, +{ +anchors = ( +{ +name = bottom; +pos = (577,0); +}, +{ +name = top; +pos = (577,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(544,297,l), +(574,444,l), +(582,444,l), +(615,296,l), +(681,0,l), +(974,0,l), +(1156,729,l), +(913,729,l), +(851,400,l), +(822,220,l), +(813,220,l), +(776,395,l), +(704,729,l), +(460,729,l), +(390,389,l), +(356,222,l), +(345,222,l), +(316,392,l), +(248,729,l), +(-3,729,l), +(189,0,l) +); +} +); +width = 1153; +}, +{ +anchors = ( +{ +name = bottom; +pos = (262,0); +}, +{ +name = top; +pos = (262,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(269,680,l), +(274,680,l), +(389,0,l), +(434,0,l), +(553,729,l), +(522,729,l), +(451,289,l), +(414,31,l), +(411,31,l), +(295,729,l), +(249,729,l), +(133,32,l), +(131,32,l), +(97,276,l), +(21,729,l), +(-9,729,l), +(110,0,l) +); +} +); +}; +guides = ( +{ +pos = (122,33); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,0,l), +(236,511,l), +(262,691,l), +(263,691,l), +(288,511,l), +(370,0,l), +(416,0,l), +(524,729,l), +(493,729,l), +(417,211,l), +(393,33,l), +(393,33,l), +(366,211,l), +(283,729,l), +(242,729,l), +(159,211,l), +(133,33,l), +(132,33,l), +(109,211,l), +(32,729,l), +(1,729,l), +(110,0,l) +); +} +); +width = 525; +}, +{ +anchors = ( +{ +name = bottom; +pos = (373,0); +}, +{ +name = top; +pos = (373,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(344,0,l), +(379,475,l), +(385,475,l), +(415,0,l), +(653,0,l), +(745,729,l), +(565,729,l), +(539,378,l), +(533,189,l), +(526,189,l), +(482,729,l), +(281,729,l), +(237,191,l), +(230,191,l), +(220,380,l), +(194,729,l), +(15,729,l), +(107,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,l), +(363,336,l), +(375,440,l), +(376,440,l), +(387,336,l), +(430,0,l), +(646,0,l), +(748,729,l), +(571,729,l), +(543,365,l), +(537,285,l), +(536,285,l), +(525,365,l), +(474,729,l), +(292,729,l), +(242,365,l), +(231,287,l), +(230,287,l), +(222,365,l), +(194,729,l), +(0,729,l), +(102,0,l) +); +} +); +width = 748; +}, +{ +anchors = ( +{ +name = bottom; +pos = (464,0); +}, +{ +name = top; +pos = (464,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(481,692,l), +(486,692,l), +(697,0,l), +(754,0,l), +(926,729,l), +(885,729,l), +(778,271,l), +(727,42,l), +(721,42,l), +(512,729,l), +(456,729,l), +(247,43,l), +(242,43,l), +(190,270,l), +(83,729,l), +(42,729,l), +(214,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,0,l), +(397,456,l), +(463,687,l), +(464,687,l), +(529,456,l), +(665,0,l), +(715,0,l), +(920,729,l), +(878,729,l), +(747,257,l), +(692,44,l), +(690,44,l), +(630,257,l), +(489,729,l), +(437,729,l), +(296,257,l), +(237,44,l), +(236,44,l), +(179,257,l), +(48,729,l), +(6,729,l), +(211,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +} +); +}; +width = 926; +}, +{ +anchors = ( +{ +name = bottom; +pos = (514,0); +}, +{ +name = top; +pos = (514,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(448,0,l), +(528,450,l), +(536,450,l), +(613,0,l), +(889,0,l), +(1037,729,l), +(813,729,l), +(765,397,l), +(744,219,l), +(736,219,l), +(655,729,l), +(409,729,l), +(332,221,l), +(323,221,l), +(299,400,l), +(248,729,l), +(24,729,l), +(172,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(424,1,l), +(475,252,l), +(515,445,l), +(516,445,l), +(555,252,l), +(605,1,l), +(860,1,l), +(1029,730,l), +(810,730,l), +(760,436,l), +(729,268,l), +(726,268,l), +(690,436,l), +(627,730,l), +(403,730,l), +(344,436,l), +(310,270,l), +(307,270,l), +(278,436,l), +(226,730,l), +(-1,729,l), +(170,0,l) +); +} +); +width = 1028; +}, +{ +anchors = ( +{ +name = bottom; +pos = (549,0); +}, +{ +name = top; +pos = (549,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,0,l), +(480,506,l), +(544,686,l), +(545,686,l), +(605,510,l), +(781,0,l), +(833,0,l), +(1082,729,l), +(1041,729,l), +(860,195,l), +(807,42,l), +(806,42,l), +(754,194,l), +(570,729,l), +(520,729,l), +(332,201,l), +(276,43,l), +(275,43,l), +(225,196,l), +(50,729,l), +(9,729,l), +(250,0,l) +); +} +); +width = 1091; +}, +{ +anchors = ( +{ +name = bottom; +pos = (587,0); +}, +{ +name = top; +pos = (587,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(479,0,l), +(549,284,l), +(587,424,l), +(588,424,l), +(629,283,l), +(705,0,l), +(986,0,l), +(1187,729,l), +(935,729,l), +(871,424,l), +(837,257,l), +(836,257,l), +(791,420,l), +(706,729,l), +(480,729,l), +(395,414,l), +(353,259,l), +(352,259,l), +(317,416,l), +(246,729,l), +(-13,729,l), +(198,0,l) +); +} +); +width = 1174; +}, +{ +anchors = ( +{ +name = bottom; +pos = (490,0); +}, +{ +name = top; +pos = (490,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,0,l), +(494,692,l), +(499,692,l), +(710,0,l), +(767,0,l), +(939,729,l), +(898,729,l), +(791,271,l), +(740,42,l), +(734,42,l), +(525,729,l), +(469,729,l), +(260,43,l), +(255,43,l), +(203,270,l), +(96,729,l), +(55,729,l), +(227,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(428,459,l), +(487,692,l), +(493,692,l), +(552,459,l), +(677,0,l), +(735,0,l), +(924,729,l), +(883,729,l), +(758,248,l), +(709,33,l), +(703,33,l), +(649,248,l), +(518,729,l), +(462,729,l), +(332,248,l), +(277,33,l), +(271,33,l), +(222,248,l), +(97,729,l), +(57,729,l), +(247,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +} +); +}; +width = 979; +}, +{ +anchors = ( +{ +name = bottom; +pos = (512,0); +}, +{ +name = top; +pos = (512,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(440,0,l), +(520,450,l), +(528,450,l), +(605,0,l), +(881,0,l), +(1029,729,l), +(805,729,l), +(757,397,l), +(736,219,l), +(728,219,l), +(647,729,l), +(401,729,l), +(324,221,l), +(315,221,l), +(291,400,l), +(240,729,l), +(16,729,l), +(164,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,l), +(482,285,l), +(507,500,l), +(519,500,l), +(542,285,l), +(580,0,l), +(853,0,l), +(1008,729,l), +(786,729,l), +(744,410,l), +(722,195,l), +(710,195,l), +(683,410,l), +(635,729,l), +(391,729,l), +(342,391,l), +(319,197,l), +(307,197,l), +(285,391,l), +(237,729,l), +(15,729,l), +(169,0,l) +); +} +); +width = 1022; +}, +{ +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = top; +pos = (402,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(124,0,l), +(377,670,l), +(382,670,l), +(356,0,l), +(399,0,l), +(669,729,l), +(638,729,l), +(476,289,l), +(387,37,l), +(384,37,l), +(410,729,l), +(372,729,l), +(110,38,l), +(108,38,l), +(124,276,l), +(143,729,l), +(114,729,l), +(81,0,l) +); +}, +{ +closed = 1; +nodes = ( +(126,0,l), +(318,512,ls), +(338,565,o), +(358,617,o), +(380,691,c), +(385,691,l), +(379,617,o), +(377,565,o), +(375,512,cs), +(355,0,l), +(400,0,l), +(669,729,l), +(638,729,l), +(476,289,ls), +(445,205,o), +(417,121,o), +(388,37,c), +(382,37,l), +(387,123,o), +(392,210,o), +(395,296,cs), +(412,729,l), +(370,729,l), +(200,277,ls), +(170,197,o), +(140,118,o), +(114,38,c), +(108,38,l), +(115,117,o), +(121,197,o), +(124,276,cs), +(143,729,l), +(114,729,l), +(81,0,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(126,0,l), +(318,512,l), +(380,691,l), +(385,691,l), +(375,512,l), +(355,0,l), +(400,0,l), +(669,729,l), +(638,729,l), +(476,289,l), +(385,28,l), +(379,28,l), +(395,296,l), +(412,729,l), +(370,729,l), +(200,277,l), +(114,27,l), +(108,27,l), +(124,276,l), +(143,729,l), +(114,729,l), +(81,0,l) +); +} +); +width = 587; +}, +{ +anchors = ( +{ +name = bottom; +pos = (332,0); +}, +{ +name = top; +pos = (483,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(422,467,l), +(429,467,l), +(371,0,l), +(619,0,l), +(862,729,l), +(672,729,l), +(583,385,l), +(533,200,l), +(526,200,l), +(595,729,l), +(372,729,l), +(226,203,l), +(219,203,l), +(245,388,l), +(292,729,l), +(105,729,l), +(42,0,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(401,393,l), +(429,505,l), +(436,505,l), +(420,393,l), +(371,0,l), +(619,0,l), +(862,729,l), +(672,729,l), +(562,307,l), +(533,190,l), +(526,190,l), +(540,307,l), +(595,729,l), +(372,729,l), +(256,311,l), +(225,193,l), +(218,193,l), +(234,311,l), +(292,729,l), +(105,729,l), +(42,0,l) +); +} +); +width = 777; +}, +{ +anchors = ( +{ +name = bottom; +pos = (409,0); +}, +{ +name = top; +pos = (560,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,0,l), +(487,567,l), +(551,692,l), +(556,692,l), +(568,558,l), +(620,0,l), +(669,0,l), +(992,729,l), +(952,729,l), +(752,271,l), +(654,42,l), +(648,42,l), +(629,260,l), +(586,729,l), +(533,729,l), +(292,255,l), +(185,43,l), +(180,43,l), +(177,270,l), +(168,729,l), +(134,729,l), +(148,0,l) +); +} +); +width = 932; +}, +{ +anchors = ( +{ +name = bottom; +pos = (457,0); +}, +{ +name = top; +pos = (608,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(492,304,l), +(546,450,l), +(553,450,l), +(547,303,l), +(534,0,l), +(807,0,l), +(1103,729,l), +(881,729,l), +(764,397,l), +(708,219,l), +(700,219,l), +(711,398,l), +(730,729,l), +(486,729,l), +(368,393,l), +(307,221,l), +(298,221,l), +(313,400,l), +(332,729,l), +(110,729,l), +(103,0,l) +); +} +); +width = 1023; +}, +{ +anchors = ( +{ +name = bottom; +pos = (481,0); +}, +{ +name = top; +pos = (632,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(555,554,l), +(623,687,l), +(628,687,l), +(640,552,l), +(688,0,l), +(744,0,l), +(1157,729,l), +(1115,729,l), +(806,186,l), +(727,42,l), +(719,42,l), +(708,174,l), +(660,729,l), +(606,729,l), +(322,178,l), +(254,43,l), +(248,43,l), +(224,237,l), +(153,729,l), +(115,729,l), +(219,0,l) +); +} +); +width = 1078; +}, +{ +anchors = ( +{ +name = bottom; +pos = (501,0); +}, +{ +name = top; +pos = (652,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,0,l), +(507,219,l), +(570,376,l), +(578,376,l), +(579,214,l), +(581,0,l), +(876,0,l), +(1199,729,l), +(954,729,l), +(824,383,l), +(766,228,l), +(757,228,l), +(759,382,l), +(763,729,l), +(525,729,l), +(382,367,l), +(328,230,l), +(317,230,l), +(319,364,l), +(325,729,l), +(92,729,l), +(122,0,l) +); +} +); +width = 1102; +} +); +unicode = 87; +userData = { +KernOnName = W; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/W_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/W_acute.glyph new file mode 100644 index 00000000..8aaf0b3a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/W_acute.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Wacute; +kernLeft = KO_W; +kernRight = KO_W; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = W; +}, +{ +pos = (241,57); +ref = acutecomb; +} +); +width = 594; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = W; +}, +{ +pos = (263,51); +ref = acutecomb; +} +); +width = 750; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = W; +}, +{ +pos = (480,57); +ref = acutecomb; +} +); +width = 1075; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = W; +}, +{ +pos = (460,56); +ref = acutecomb; +} +); +width = 1153; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (226,57); +ref = acutecomb; +} +); +width = 525; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = W; +}, +{ +pos = (271,51); +ref = acutecomb; +} +); +width = 748; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = W; +}, +{ +alignment = -1; +pos = (422,57); +ref = acutecomb; +} +); +width = 954; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = W; +}, +{ +pos = (423,51); +ref = acutecomb; +} +); +width = 1028; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (501,57); +ref = acutecomb; +} +); +width = 1091; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (480,56); +ref = acutecomb; +} +); +width = 1174; +}, +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (434,57); +ref = acutecomb; +} +); +width = 979; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (402,51); +ref = acutecomb; +} +); +width = 1022; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = W; +}, +{ +pos = (261,57); +ref = acutecomb; +} +); +width = 587; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (288,51); +ref = acutecomb; +} +); +width = 777; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = W; +}, +{ +pos = (418,57); +ref = acutecomb; +} +); +width = 932; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = W; +}, +{ +pos = (413,51); +ref = acutecomb; +} +); +width = 1023; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = W; +}, +{ +pos = (489,57); +ref = acutecomb; +} +); +width = 1078; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = W; +}, +{ +pos = (452,56); +ref = acutecomb; +} +); +width = 1102; +} +); +unicode = 7810; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/W_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/W_circumflex.glyph new file mode 100644 index 00000000..cc1560fd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/W_circumflex.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Wcircumflex; +kernLeft = KO_W; +kernRight = KO_W; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = W; +}, +{ +pos = (168,57); +ref = circumflexcomb; +} +); +width = 594; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = W; +}, +{ +pos = (158,51); +ref = circumflexcomb; +} +); +width = 750; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = W; +}, +{ +pos = (359,57); +ref = circumflexcomb; +} +); +width = 1075; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = W; +}, +{ +pos = (286,56); +ref = circumflexcomb; +} +); +width = 1153; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (153,57); +ref = circumflexcomb; +} +); +width = 525; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = W; +}, +{ +pos = (166,51); +ref = circumflexcomb; +} +); +width = 748; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = W; +}, +{ +alignment = -1; +pos = (313,57); +ref = circumflexcomb; +} +); +width = 954; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = W; +}, +{ +pos = (288,51); +ref = circumflexcomb; +} +); +width = 1028; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (380,57); +ref = circumflexcomb; +} +); +width = 1091; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (306,56); +ref = circumflexcomb; +} +); +width = 1174; +}, +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (327,57); +ref = circumflexcomb; +} +); +width = 979; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (273,51); +ref = circumflexcomb; +} +); +width = 1022; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = W; +}, +{ +pos = (187,57); +ref = circumflexcomb; +} +); +width = 587; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (181,51); +ref = circumflexcomb; +} +); +width = 777; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = W; +}, +{ +pos = (308,57); +ref = circumflexcomb; +} +); +width = 932; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = W; +}, +{ +pos = (279,51); +ref = circumflexcomb; +} +); +width = 1023; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = W; +}, +{ +pos = (366,57); +ref = circumflexcomb; +} +); +width = 1078; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = W; +}, +{ +pos = (276,56); +ref = circumflexcomb; +} +); +width = 1102; +} +); +unicode = 372; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/W_dieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/W_dieresis.glyph new file mode 100644 index 00000000..5a639134 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/W_dieresis.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Wdieresis; +kernLeft = KO_W; +kernRight = KO_W; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = W; +}, +{ +pos = (179,57); +ref = dieresiscomb; +} +); +width = 594; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = W; +}, +{ +pos = (150,51); +ref = dieresiscomb; +} +); +width = 750; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = W; +}, +{ +pos = (361,57); +ref = dieresiscomb; +} +); +width = 1075; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = W; +}, +{ +pos = (294,51); +ref = dieresiscomb; +} +); +width = 1153; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (164,57); +ref = dieresiscomb; +} +); +width = 525; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = W; +}, +{ +pos = (158,51); +ref = dieresiscomb; +} +); +width = 748; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = W; +}, +{ +alignment = -1; +pos = (315,57); +ref = dieresiscomb; +} +); +width = 954; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = W; +}, +{ +pos = (292,51); +ref = dieresiscomb; +} +); +width = 1028; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (382,57); +ref = dieresiscomb; +} +); +width = 1091; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (314,51); +ref = dieresiscomb; +} +); +width = 1174; +}, +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (329,57); +ref = dieresiscomb; +} +); +width = 979; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (277,51); +ref = dieresiscomb; +} +); +width = 1022; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = W; +}, +{ +pos = (193,57); +ref = dieresiscomb; +} +); +width = 587; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (166,51); +ref = dieresiscomb; +} +); +width = 777; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = W; +}, +{ +pos = (313,57); +ref = dieresiscomb; +} +); +width = 932; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = W; +}, +{ +pos = (279,51); +ref = dieresiscomb; +} +); +width = 1023; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = W; +}, +{ +pos = (370,57); +ref = dieresiscomb; +} +); +width = 1078; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = W; +}, +{ +pos = (283,51); +ref = dieresiscomb; +} +); +width = 1102; +} +); +unicode = 7812; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/W_dieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/W_dieresis.ss01.glyph new file mode 100644 index 00000000..f6332b38 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/W_dieresis.ss01.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Wdieresis.ss01; +kernLeft = KO_W; +kernRight = KO_W; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = W; +}, +{ +pos = (190,57); +ref = dieresiscomb.ss01; +} +); +width = 594; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = W; +}, +{ +pos = (151,51); +ref = dieresiscomb.ss01; +} +); +width = 750; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = W; +}, +{ +pos = (394,57); +ref = dieresiscomb.ss01; +} +); +width = 1075; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = W; +}, +{ +pos = (316,51); +ref = dieresiscomb.ss01; +} +); +width = 1153; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (175,57); +ref = dieresiscomb.ss01; +} +); +width = 525; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = W; +}, +{ +pos = (159,51); +ref = dieresiscomb.ss01; +} +); +width = 748; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = W; +}, +{ +alignment = -1; +pos = (342,57); +ref = dieresiscomb.ss01; +} +); +width = 954; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = W; +}, +{ +pos = (304,51); +ref = dieresiscomb.ss01; +} +); +width = 1028; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (415,57); +ref = dieresiscomb.ss01; +} +); +width = 1091; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (336,51); +ref = dieresiscomb.ss01; +} +); +width = 1174; +}, +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (354,57); +ref = dieresiscomb.ss01; +} +); +width = 979; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (289,51); +ref = dieresiscomb.ss01; +} +); +width = 1022; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = W; +}, +{ +pos = (206,57); +ref = dieresiscomb.ss01; +} +); +width = 587; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (174,51); +ref = dieresiscomb.ss01; +} +); +width = 777; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = W; +}, +{ +pos = (335,57); +ref = dieresiscomb.ss01; +} +); +width = 932; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = W; +}, +{ +pos = (295,51); +ref = dieresiscomb.ss01; +} +); +width = 1023; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = W; +}, +{ +pos = (407,57); +ref = dieresiscomb.ss01; +} +); +width = 1078; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = W; +}, +{ +pos = (312,51); +ref = dieresiscomb.ss01; +} +); +width = 1102; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/W_grave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/W_grave.glyph new file mode 100644 index 00000000..aeaf9fda --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/W_grave.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Wgrave; +kernLeft = KO_W; +kernRight = KO_W; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = W; +}, +{ +pos = (163,57); +ref = gravecomb; +} +); +width = 594; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = W; +}, +{ +pos = (166,51); +ref = gravecomb; +} +); +width = 750; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = W; +}, +{ +pos = (394,57); +ref = gravecomb; +} +); +width = 1075; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = W; +}, +{ +pos = (343,56); +ref = gravecomb; +} +); +width = 1153; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (148,57); +ref = gravecomb; +} +); +width = 525; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = W; +}, +{ +pos = (174,51); +ref = gravecomb; +} +); +width = 748; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = W; +}, +{ +alignment = -1; +pos = (343,57); +ref = gravecomb; +} +); +width = 954; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = W; +}, +{ +pos = (326,51); +ref = gravecomb; +} +); +width = 1028; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (415,57); +ref = gravecomb; +} +); +width = 1091; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = W; +}, +{ +pos = (363,56); +ref = gravecomb; +} +); +width = 1174; +}, +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (355,57); +ref = gravecomb; +} +); +width = 979; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (313,51); +ref = gravecomb; +} +); +width = 1022; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = W; +}, +{ +pos = (184,57); +ref = gravecomb; +} +); +width = 587; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = W; +}, +{ +pos = (198,51); +ref = gravecomb; +} +); +width = 777; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = W; +}, +{ +pos = (341,57); +ref = gravecomb; +} +); +width = 932; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = W; +}, +{ +pos = (312,51); +ref = gravecomb; +} +); +width = 1023; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = W; +}, +{ +pos = (402,57); +ref = gravecomb; +} +); +width = 1078; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = W; +}, +{ +pos = (335,56); +ref = gravecomb; +} +); +width = 1102; +} +); +unicode = 7808; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/X_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/X_.glyph new file mode 100644 index 00000000..ca8c600d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/X_.glyph @@ -0,0 +1,1044 @@ +{ +glyphname = X; +kernLeft = KO_X; +kernRight = KO_X; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (244,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(241,247,l), +(244,247,l), +(298,0,l), +(480,0,l), +(370,382,l), +(475,729,l), +(297,729,l), +(247,498,l), +(243,498,l), +(197,729,l), +(15,729,l), +(120,377,l), +(9,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(225,191,l), +(240,275,l), +(245,275,l), +(259,191,l), +(298,0,l), +(480,0,l), +(370,382,l), +(475,729,l), +(297,729,l), +(262,555,l), +(248,470,l), +(242,470,l), +(230,555,l), +(197,729,l), +(15,729,l), +(120,377,l), +(9,0,l) +); +} +); +width = 489; +}, +{ +anchors = ( +{ +name = bottom; +pos = (192,0); +}, +{ +name = top; +pos = (192,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(44,0,l), +(190,354,l), +(192,354,l), +(338,0,l), +(374,0,l), +(213,377,l), +(365,729,l), +(330,729,l), +(193,397,l), +(190,397,l), +(53,729,l), +(18,729,l), +(170,376,l), +(8,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,0,l), +(137,218,l), +(189,350,l), +(193,350,l), +(245,218,l), +(338,0,l), +(374,0,l), +(213,377,l), +(365,729,l), +(330,729,l), +(236,508,l), +(194,400,l), +(189,400,l), +(147,508,l), +(53,729,l), +(18,729,l), +(170,376,l), +(8,0,l) +); +} +); +width = 383; +}, +{ +anchors = ( +{ +name = bottom; +pos = (350,0); +}, +{ +name = top; +pos = (350,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,0,l), +(286,274,l), +(348,350,l), +(350,350,l), +(411,274,l), +(635,0,l), +(684,0,l), +(374,375,l), +(665,729,l), +(620,729,l), +(403,466,l), +(351,400,l), +(347,399,l), +(294,466,l), +(80,729,l), +(35,729,l), +(324,375,l), +(15,0,l) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = bottom; +pos = (434,0); +}, +{ +name = top; +pos = (434,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(373,145,l), +(426,219,l), +(435,219,l), +(486,145,l), +(591,0,l), +(877,0,l), +(589,385,l), +(861,729,l), +(582,729,l), +(497,605,l), +(443,525,l), +(434,526,l), +(382,605,l), +(297,729,l), +(11,729,l), +(289,378,l), +(-8,0,l) +); +} +); +width = 870; +}, +{ +anchors = ( +{ +name = bottom; +pos = (179,0); +}, +{ +name = top; +pos = (179,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(39,0,l), +(185,354,l), +(187,354,l), +(333,0,l), +(369,0,l), +(208,377,l), +(360,729,l), +(325,729,l), +(188,397,l), +(185,397,l), +(48,729,l), +(13,729,l), +(165,376,l), +(3,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(41,0,l), +(127,219,l), +(178,350,l), +(179,350,l), +(229,219,l), +(315,0,l), +(348,0,l), +(198,382,l), +(334,729,l), +(301,729,l), +(220,516,l), +(179,412,l), +(178,412,l), +(137,516,l), +(56,729,l), +(23,729,l), +(159,381,l), +(8,0,l) +); +} +); +width = 356; +}, +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = top; +pos = (239,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(241,247,l), +(244,247,l), +(298,0,l), +(480,0,l), +(370,382,l), +(475,729,l), +(297,729,l), +(247,498,l), +(243,498,l), +(197,729,l), +(15,729,l), +(120,377,l), +(9,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,0,l), +(220,160,l), +(237,230,l), +(238,230,l), +(254,160,l), +(293,0,l), +(475,0,l), +(365,382,l), +(470,729,l), +(292,729,l), +(257,574,l), +(241,499,l), +(240,499,l), +(225,574,l), +(192,729,l), +(10,729,l), +(115,377,l), +(4,0,l) +); +} +); +width = 479; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = top; +pos = (316,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(82,0,l), +(340,368,l), +(342,368,l), +(600,0,l), +(646,0,l), +(368,397,l), +(601,729,l), +(558,729,l), +(343,422,l), +(340,422,l), +(125,729,l), +(82,729,l), +(315,396,l), +(37,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,0,l), +(222,236,l), +(315,368,l), +(317,368,l), +(410,236,l), +(580,0,l), +(627,0,l), +(343,397,l), +(581,729,l), +(537,729,l), +(394,531,l), +(317,422,l), +(315,422,l), +(238,531,l), +(97,729,l), +(52,729,l), +(290,396,l), +(7,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 634; +}, +{ +anchors = ( +{ +name = bottom; +pos = (387,0); +}, +{ +name = top; +pos = (387,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(244,0,l), +(398,243,l), +(403,243,l), +(557,0,l), +(797,0,l), +(536,389,l), +(770,729,l), +(531,729,l), +(403,518,l), +(398,518,l), +(270,729,l), +(31,729,l), +(270,388,l), +(9,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,0,l), +(346,187,l), +(383,245,l), +(384,245,l), +(421,187,l), +(540,0,l), +(780,0,l), +(519,389,l), +(753,729,l), +(514,729,l), +(423,581,l), +(384,519,l), +(383,519,l), +(344,581,l), +(253,729,l), +(14,729,l), +(253,388,l), +(-8,0,l) +); +} +); +width = 772; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (352,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(286,278,l), +(350,354,l), +(352,354,l), +(415,278,l), +(643,0,l), +(696,0,l), +(380,380,l), +(661,729,l), +(612,729,l), +(405,472,l), +(353,407,l), +(349,406,l), +(296,472,l), +(92,729,l), +(43,729,l), +(322,380,l), +(8,0,l) +); +} +); +width = 704; +}, +{ +anchors = ( +{ +name = bottom; +pos = (424,0); +}, +{ +name = top; +pos = (424,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,0,l), +(363,145,l), +(416,219,l), +(425,219,l), +(476,145,l), +(581,0,l), +(867,0,l), +(579,385,l), +(851,729,l), +(572,729,l), +(487,605,l), +(433,525,l), +(424,526,l), +(372,605,l), +(287,729,l), +(1,729,l), +(279,378,l), +(-18,0,l) +); +} +); +width = 850; +}, +{ +anchors = ( +{ +name = bottom; +pos = (328,0); +}, +{ +name = top; +pos = (328,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,l), +(330,368,l), +(332,368,l), +(590,0,l), +(636,0,l), +(358,397,l), +(591,729,l), +(548,729,l), +(333,422,l), +(330,422,l), +(115,729,l), +(72,729,l), +(305,396,l), +(27,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,l), +(238,236,l), +(325,368,l), +(331,368,l), +(418,236,l), +(581,0,l), +(627,0,l), +(353,397,l), +(582,729,l), +(541,729,l), +(403,531,l), +(331,422,l), +(325,422,l), +(251,531,l), +(116,729,l), +(73,729,l), +(302,396,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 655; +}, +{ +anchors = ( +{ +name = bottom; +pos = (394,0); +}, +{ +name = top; +pos = (394,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(244,0,l), +(398,243,l), +(403,243,l), +(557,0,l), +(797,0,l), +(536,389,l), +(770,729,l), +(531,729,l), +(403,518,l), +(398,518,l), +(270,729,l), +(31,729,l), +(270,388,l), +(9,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(245,0,l), +(343,171,l), +(385,261,l), +(397,261,l), +(437,171,l), +(537,0,l), +(769,0,l), +(522,389,l), +(744,729,l), +(513,729,l), +(443,597,l), +(397,501,l), +(385,501,l), +(340,597,l), +(268,729,l), +(37,729,l), +(264,388,l), +(17,0,l) +); +} +); +width = 785; +}, +{ +anchors = ( +{ +name = bottom; +pos = (148,0); +}, +{ +name = top; +pos = (299,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-7,0,l), +(208,354,l), +(210,354,l), +(284,0,l), +(317,0,l), +(235,371,l), +(459,729,l), +(421,729,l), +(220,397,l), +(218,397,l), +(148,729,l), +(116,729,l), +(194,383,l), +(-45,0,l) +); +} +); +}; +guides = ( +{ +pos = (205,400); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-9,0,l), +(143,244,l), +(207,352,l), +(211,352,l), +(234,244,l), +(286,0,l), +(317,0,l), +(235,373,l), +(459,729,l), +(424,729,l), +(284,504,l), +(221,398,l), +(217,398,l), +(195,504,l), +(147,729,l), +(116,729,l), +(194,379,l), +(-45,0,l) +); +} +); +width = 379; +}, +{ +anchors = ( +{ +name = bottom; +pos = (248,0); +}, +{ +name = top; +pos = (550,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,0,l), +(282,253,l), +(286,253,l), +(309,0,l), +(480,0,l), +(427,364,l), +(625,729,l), +(446,729,l), +(341,495,l), +(337,495,l), +(326,729,l), +(150,729,l), +(199,389,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(146,0,l), +(200,130,ls), +(217,172,o), +(235,221,o), +(252,275,c), +(256,275,l), +(255,210,o), +(256,168,o), +(257,127,cs), +(259,0,l), +(434,0,l), +(405,369,l), +(592,729,l), +(399,729,l), +(362,634,ls), +(340,579,o), +(316,513,o), +(302,471,c), +(296,471,l), +(298,500,o), +(299,570,o), +(298,648,cs), +(297,729,l), +(122,729,l), +(153,390,l), +(-47,0,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,0,l), +(228,209,l), +(251,275,l), +(257,275,l), +(257,209,l), +(258,0,l), +(434,0,l), +(408,367,l), +(592,729,l), +(398,729,l), +(327,539,l), +(302,470,l), +(296,470,l), +(297,539,l), +(298,729,l), +(122,729,l), +(150,392,l), +(-47,0,l) +); +} +); +width = 506; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (431,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(21,0,l), +(282,298,l), +(344,369,l), +(347,369,l), +(382,295,l), +(520,0,l), +(564,0,l), +(376,391,l), +(672,729,l), +(623,729,l), +(410,481,l), +(356,419,l), +(354,419,l), +(328,475,l), +(209,729,l), +(167,729,l), +(326,398,l), +(-27,0,l) +); +} +); +width = 646; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = top; +pos = (504,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,0,l), +(318,155,l), +(396,245,l), +(401,245,l), +(440,152,l), +(504,0,l), +(732,0,l), +(555,378,l), +(880,729,l), +(638,729,l), +(534,605,l), +(463,520,l), +(458,520,l), +(429,600,l), +(381,729,l), +(153,729,l), +(309,399,l), +(-48,0,l) +); +} +); +width = 799; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (453,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(10,0,l), +(305,290,l), +(364,348,l), +(366,348,l), +(404,285,l), +(576,0,l), +(621,0,l), +(393,373,l), +(753,729,l), +(704,729,l), +(445,472,l), +(374,402,l), +(370,401,l), +(326,473,l), +(173,729,l), +(131,729,l), +(344,377,l), +(-39,0,l) +); +} +); +width = 691; +}, +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = top; +pos = (536,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,0,l), +(352,149,l), +(417,218,l), +(425,218,l), +(457,158,l), +(541,0,l), +(813,0,l), +(602,370,l), +(945,729,l), +(662,729,l), +(558,607,l), +(487,525,l), +(479,525,l), +(439,605,l), +(378,729,l), +(107,729,l), +(309,384,l), +(-64,0,l) +); +} +); +width = 861; +} +); +unicode = 88; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_.glyph new file mode 100644 index 00000000..1e6d67f4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_.glyph @@ -0,0 +1,968 @@ +{ +glyphname = Y; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (248,0); +}, +{ +name = top; +pos = (248,729); +}, +{ +name = topleft; +pos = (20,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,273,l), +(488,729,l), +(293,729,l), +(250,455,l), +(244,455,l), +(205,729,l), +(9,729,l), +(154,273,l), +(154,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,273,l), +(488,729,l), +(293,729,l), +(258,504,l), +(250,425,l), +(244,425,l), +(236,504,l), +(205,729,l), +(9,729,l), +(154,273,l), +(154,0,l) +); +} +); +width = 497; +}, +{ +anchors = ( +{ +name = bottom; +pos = (180,0); +}, +{ +name = top; +pos = (180,729); +}, +{ +name = topleft; +pos = (11,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(195,0,l), +(195,302,l), +(356,729,l), +(323,729,l), +(183,355,l), +(177,355,l), +(37,729,l), +(3,729,l), +(165,302,l), +(165,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,0,l), +(195,302,l), +(356,729,l), +(323,729,l), +(200,395,l), +(183,337,l), +(177,337,l), +(160,395,l), +(37,729,l), +(3,729,l), +(164,302,l), +(164,0,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = bottom; +pos = (347,0); +}, +{ +name = top; +pos = (347,729); +}, +{ +name = topleft; +pos = (19,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(365,0,l), +(365,300,l), +(679,729,l), +(633,729,l), +(429,449,l), +(348,334,l), +(344,334,l), +(263,449,l), +(61,729,l), +(14,729,l), +(327,300,l), +(327,0,l) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = bottom; +pos = (417,0); +}, +{ +name = top; +pos = (417,729); +}, +{ +name = topleft; +pos = (16,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,0,l), +(530,266,l), +(843,729,l), +(587,729,l), +(475,545,l), +(420,446,l), +(412,446,l), +(358,545,l), +(249,729,l), +(-9,729,l), +(301,266,l), +(301,0,l) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = bottom; +pos = (171,0); +}, +{ +name = top; +pos = (171,729); +}, +{ +name = topleft; +pos = (2,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,0,l), +(194,302,l), +(355,729,l), +(322,729,l), +(182,355,l), +(176,355,l), +(36,729,l), +(2,729,l), +(164,302,l), +(164,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(186,316,l), +(340,729,l), +(307,729,l), +(201,439,l), +(172,360,l), +(171,360,l), +(141,439,l), +(36,729,l), +(2,729,l), +(155,316,l), +(155,0,l) +); +} +); +width = 341; +}, +{ +anchors = ( +{ +name = bottom; +pos = (243,0); +}, +{ +name = top; +pos = (243,729); +}, +{ +name = topleft; +pos = (15,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,273,l), +(488,729,l), +(293,729,l), +(250,455,l), +(244,455,l), +(205,729,l), +(9,729,l), +(154,273,l), +(154,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,0,l), +(337,279,l), +(483,729,l), +(295,729,l), +(260,581,l), +(242,505,l), +(241,505,l), +(225,581,l), +(194,729,l), +(4,729,l), +(150,279,l), +(150,0,l) +); +} +); +width = 487; +}, +{ +anchors = ( +{ +name = bottom; +pos = (293,0); +}, +{ +name = top; +pos = (293,729); +}, +{ +name = topleft; +pos = (17,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(335,300,l), +(607,729,l), +(564,729,l), +(319,337,l), +(315,337,l), +(71,729,l), +(27,729,l), +(297,300,l), +(297,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(310,0,l), +(310,307,l), +(582,729,l), +(537,729,l), +(401,514,l), +(292,348,l), +(291,348,l), +(183,514,l), +(48,729,l), +(2,729,l), +(272,307,l), +(272,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 584; +}, +{ +anchors = ( +{ +name = bottom; +pos = (364,0); +}, +{ +name = top; +pos = (364,729); +}, +{ +name = topleft; +pos = (11,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(481,0,l), +(481,269,l), +(752,729,l), +(522,729,l), +(383,467,l), +(375,467,l), +(239,729,l), +(8,729,l), +(278,269,l), +(278,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,0,l), +(464,274,l), +(735,729,l), +(510,729,l), +(418,559,l), +(362,461,l), +(361,461,l), +(307,559,l), +(218,729,l), +(-9,729,l), +(261,274,l), +(261,0,l) +); +} +); +width = 726; +}, +{ +anchors = ( +{ +name = bottom; +pos = (350,0); +}, +{ +name = top; +pos = (350,729); +}, +{ +name = topleft; +pos = (13,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,0,l), +(368,300,l), +(692,729,l), +(644,729,l), +(434,449,l), +(350,334,l), +(349,334,l), +(264,449,l), +(56,729,l), +(8,729,l), +(330,300,l), +(330,0,l) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = bottom; +pos = (417,0); +}, +{ +name = top; +pos = (417,729); +}, +{ +name = topleft; +pos = (16,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,0,l), +(530,266,l), +(851,729,l), +(593,729,l), +(479,551,l), +(419,457,l), +(416,457,l), +(355,551,l), +(244,729,l), +(-17,729,l), +(301,266,l), +(301,0,l) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = top; +pos = (315,729); +}, +{ +name = topleft; +pos = (45,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(335,300,l), +(607,729,l), +(564,729,l), +(319,337,l), +(315,337,l), +(71,729,l), +(27,729,l), +(297,300,l), +(297,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(332,0,l), +(332,320,l), +(603,729,l), +(557,729,l), +(425,523,l), +(316,358,l), +(311,358,l), +(203,523,l), +(70,729,l), +(25,729,l), +(294,320,l), +(294,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 627; +}, +{ +anchors = ( +{ +name = bottom; +pos = (371,0); +}, +{ +name = top; +pos = (371,729); +}, +{ +name = topleft; +pos = (26,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(481,0,l), +(481,269,l), +(752,729,l), +(522,729,l), +(383,467,l), +(375,467,l), +(239,729,l), +(8,729,l), +(278,269,l), +(278,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(470,0,l), +(470,280,l), +(734,729,l), +(506,729,l), +(421,566,l), +(375,464,l), +(363,464,l), +(319,566,l), +(236,729,l), +(7,729,l), +(269,280,l), +(269,0,l) +); +} +); +width = 740; +}, +{ +anchors = ( +{ +name = bottom; +pos = (125,0); +}, +{ +name = top; +pos = (276,729); +}, +{ +name = topleft; +pos = (119,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(140,0,l), +(203,302,l), +(450,729,l), +(416,729,l), +(196,344,l), +(192,344,l), +(132,729,l), +(101,729,l), +(172,302,l), +(110,0,l) +); +} +); +}; +guides = ( +{ +pos = (187,337); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,0,l), +(202,300,l), +(450,729,l), +(416,729,l), +(282,494,l), +(196,335,l), +(192,335,l), +(169,494,l), +(132,729,l), +(101,729,l), +(173,302,l), +(110,0,l) +); +} +); +width = 355; +}, +{ +anchors = ( +{ +name = bottom; +pos = (185,0); +}, +{ +name = top; +pos = (335,729); +}, +{ +name = topleft; +pos = (175,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(291,0,l), +(346,273,l), +(586,729,l), +(389,729,l), +(296,471,l), +(289,471,l), +(286,729,l), +(112,729,l), +(161,273,l), +(104,0,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(277,0,l), +(331,258,l), +(584,729,l), +(386,729,l), +(303,500,l), +(275,418,l), +(269,418,l), +(273,500,l), +(280,729,l), +(104,729,l), +(151,282,l), +(92,0,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = top; +pos = (402,729); +}, +{ +name = topleft; +pos = (148,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(331,296,l), +(688,729,l), +(640,729,l), +(398,431,l), +(321,335,l), +(317,335,l), +(281,431,l), +(163,729,l), +(124,729,l), +(295,301,l), +(232,0,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = top; +pos = (457,729); +}, +{ +name = topleft; +pos = (132,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,0,l), +(469,262,l), +(830,729,l), +(595,729,l), +(472,556,l), +(404,452,l), +(396,452,l), +(370,557,l), +(325,729,l), +(103,729,l), +(269,269,l), +(214,0,l) +); +} +); +width = 743; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = top; +pos = (435,729); +}, +{ +name = topleft; +pos = (123,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,0,l), +(364,296,l), +(766,729,l), +(717,729,l), +(466,457,l), +(353,334,l), +(348,334,l), +(287,456,l), +(151,729,l), +(111,729,l), +(327,299,l), +(265,0,l) +); +} +); +width = 683; +}, +{ +anchors = ( +{ +name = bottom; +pos = (354,0); +}, +{ +name = top; +pos = (504,729); +}, +{ +name = topleft; +pos = (119,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,0,l), +(520,259,l), +(928,729,l), +(663,729,l), +(547,584,l), +(440,447,l), +(431,447,l), +(383,584,l), +(328,729,l), +(86,729,l), +(296,274,l), +(240,0,l) +); +} +); +width = 824; +} +); +unicode = 89; +userData = { +KernOnName = Y; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_acute.glyph new file mode 100644 index 00000000..ceae04fb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_acute.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Yacute; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (124,57); +ref = acutecomb; +} +); +width = 359; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (136,51); +ref = acutecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (289,57); +ref = acutecomb; +} +); +width = 693; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (300,56); +ref = acutecomb; +} +); +width = 834; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (135,57); +ref = acutecomb; +} +); +width = 341; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (141,51); +ref = acutecomb; +} +); +width = 487; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (258,57); +ref = acutecomb; +} +); +width = 584; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (273,51); +ref = acutecomb; +} +); +width = 726; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (302,57); +ref = acutecomb; +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (310,56); +ref = acutecomb; +} +); +width = 834; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (259,57); +ref = acutecomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (261,51); +ref = acutecomb; +} +); +width = 740; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (135,57); +ref = acutecomb; +} +); +width = 355; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (140,51); +ref = acutecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (260,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (262,51); +ref = acutecomb; +} +); +width = 743; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (292,57); +ref = acutecomb; +} +); +width = 683; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (304,56); +ref = acutecomb; +} +); +width = 824; +} +); +unicode = 221; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_circumflex.glyph new file mode 100644 index 00000000..cbd56ead --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_circumflex.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Ycircumflex; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (51,57); +ref = circumflexcomb; +} +); +width = 359; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (31,51); +ref = circumflexcomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (168,57); +ref = circumflexcomb; +} +); +width = 693; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (126,56); +ref = circumflexcomb; +} +); +width = 834; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (62,57); +ref = circumflexcomb; +} +); +width = 341; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (36,51); +ref = circumflexcomb; +} +); +width = 487; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (149,57); +ref = circumflexcomb; +} +); +width = 584; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (138,51); +ref = circumflexcomb; +} +); +width = 726; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (181,57); +ref = circumflexcomb; +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (136,56); +ref = circumflexcomb; +} +); +width = 834; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (152,57); +ref = circumflexcomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (132,51); +ref = circumflexcomb; +} +); +width = 740; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (61,57); +ref = circumflexcomb; +} +); +width = 355; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (33,51); +ref = circumflexcomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (150,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (128,51); +ref = circumflexcomb; +} +); +width = 743; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (169,57); +ref = circumflexcomb; +} +); +width = 683; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (128,56); +ref = circumflexcomb; +} +); +width = 824; +} +); +unicode = 374; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dieresis.glyph new file mode 100644 index 00000000..34b8ed7d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dieresis.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Ydieresis; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (62,57); +ref = dieresiscomb; +} +); +width = 359; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (23,51); +ref = dieresiscomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (170,57); +ref = dieresiscomb; +} +); +width = 693; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (134,51); +ref = dieresiscomb; +} +); +width = 834; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (73,57); +ref = dieresiscomb; +} +); +width = 341; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (28,51); +ref = dieresiscomb; +} +); +width = 487; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (151,57); +ref = dieresiscomb; +} +); +width = 584; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (142,51); +ref = dieresiscomb; +} +); +width = 726; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (183,57); +ref = dieresiscomb; +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (144,51); +ref = dieresiscomb; +} +); +width = 834; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (154,57); +ref = dieresiscomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (136,51); +ref = dieresiscomb; +} +); +width = 740; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (67,57); +ref = dieresiscomb; +} +); +width = 355; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (18,51); +ref = dieresiscomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (155,57); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (128,51); +ref = dieresiscomb; +} +); +width = 743; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (173,57); +ref = dieresiscomb; +} +); +width = 683; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (135,51); +ref = dieresiscomb; +} +); +width = 824; +} +); +unicode = 376; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dieresis.ss01.glyph new file mode 100644 index 00000000..e0071a92 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dieresis.ss01.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Ydieresis.ss01; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (73,57); +ref = dieresiscomb.ss01; +} +); +width = 359; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (24,51); +ref = dieresiscomb.ss01; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (203,57); +ref = dieresiscomb.ss01; +} +); +width = 693; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (156,51); +ref = dieresiscomb.ss01; +} +); +width = 834; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (84,57); +ref = dieresiscomb.ss01; +} +); +width = 341; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (29,51); +ref = dieresiscomb.ss01; +} +); +width = 487; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (178,57); +ref = dieresiscomb.ss01; +} +); +width = 584; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (154,51); +ref = dieresiscomb.ss01; +} +); +width = 726; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (216,57); +ref = dieresiscomb.ss01; +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (166,51); +ref = dieresiscomb.ss01; +} +); +width = 834; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (179,57); +ref = dieresiscomb.ss01; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (148,51); +ref = dieresiscomb.ss01; +} +); +width = 740; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (80,57); +ref = dieresiscomb.ss01; +} +); +width = 355; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (26,51); +ref = dieresiscomb.ss01; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (177,57); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (144,51); +ref = dieresiscomb.ss01; +} +); +width = 743; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (210,57); +ref = dieresiscomb.ss01; +} +); +width = 683; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (164,51); +ref = dieresiscomb.ss01; +} +); +width = 824; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dotbelow.glyph new file mode 100644 index 00000000..832d729c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dotbelow.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Ydotbelow; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (117,0); +ref = dotbelowcomb; +} +); +width = 359; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (130,0); +ref = dotbelowcomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (275,0); +ref = dotbelowcomb; +} +); +width = 693; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (264,0); +ref = dotbelowcomb; +} +); +width = 834; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (128,0); +ref = dotbelowcomb; +} +); +width = 341; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (135,0); +ref = dotbelowcomb; +} +); +width = 487; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (241,0); +ref = dotbelowcomb; +} +); +width = 584; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (260,0); +ref = dotbelowcomb; +} +); +width = 726; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (288,0); +ref = dotbelowcomb; +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (274,0); +ref = dotbelowcomb; +} +); +width = 834; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (242,0); +ref = dotbelowcomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (250,0); +ref = dotbelowcomb; +} +); +width = 740; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (115,0); +ref = dotbelowcomb; +} +); +width = 355; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (120,0); +ref = dotbelowcomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (233,0); +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (244,0); +ref = dotbelowcomb; +} +); +width = 743; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (267,0); +ref = dotbelowcomb; +} +); +width = 683; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (257,0); +ref = dotbelowcomb; +} +); +width = 824; +} +); +unicode = 7924; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dotbelow.ss01.glyph new file mode 100644 index 00000000..c2a2345e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_dotbelow.ss01.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = Ydotbelow.ss01; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (125,0); +ref = dotbelowcomb.ss01; +} +); +width = 359; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (119,0); +ref = dotbelowcomb.ss01; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (288,0); +ref = dotbelowcomb.ss01; +} +); +width = 693; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (276,0); +ref = dotbelowcomb.ss01; +} +); +width = 834; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (136,0); +ref = dotbelowcomb.ss01; +} +); +width = 341; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (124,0); +ref = dotbelowcomb.ss01; +} +); +width = 487; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (254,0); +ref = dotbelowcomb.ss01; +} +); +width = 584; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (249,0); +ref = dotbelowcomb.ss01; +} +); +width = 726; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (301,0); +ref = dotbelowcomb.ss01; +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (286,0); +ref = dotbelowcomb.ss01; +} +); +width = 834; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (255,0); +ref = dotbelowcomb.ss01; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (237,0); +ref = dotbelowcomb.ss01; +} +); +width = 740; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (123,0); +ref = dotbelowcomb.ss01; +} +); +width = 355; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (111,0); +ref = dotbelowcomb.ss01; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (246,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (235,0); +ref = dotbelowcomb.ss01; +} +); +width = 743; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (278,0); +ref = dotbelowcomb.ss01; +} +); +width = 683; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (271,0); +ref = dotbelowcomb.ss01; +} +); +width = 824; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_grave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_grave.glyph new file mode 100644 index 00000000..7b5a016d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_grave.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Ygrave; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (46,57); +ref = gravecomb; +} +); +width = 359; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (39,51); +ref = gravecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (203,57); +ref = gravecomb; +} +); +width = 693; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (183,56); +ref = gravecomb; +} +); +width = 834; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (57,57); +ref = gravecomb; +} +); +width = 341; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (44,51); +ref = gravecomb; +} +); +width = 487; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (179,57); +ref = gravecomb; +} +); +width = 584; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (176,51); +ref = gravecomb; +} +); +width = 726; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (216,57); +ref = gravecomb; +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (193,56); +ref = gravecomb; +} +); +width = 834; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (180,57); +ref = gravecomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (172,51); +ref = gravecomb; +} +); +width = 740; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (58,57); +ref = gravecomb; +} +); +width = 355; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (50,51); +ref = gravecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (183,57); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (161,51); +ref = gravecomb; +} +); +width = 743; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (205,57); +ref = gravecomb; +} +); +width = 683; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (187,56); +ref = gravecomb; +} +); +width = 824; +} +); +unicode = 7922; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_hookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_hookabove.glyph new file mode 100644 index 00000000..98b43953 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_hookabove.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Yhookabove; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (99,57); +ref = hookabovecomb; +} +); +width = 359; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (109,50); +ref = hookabovecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (239,57); +ref = hookabovecomb; +} +); +width = 693; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (264,51); +ref = hookabovecomb; +} +); +width = 834; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (110,57); +ref = hookabovecomb; +} +); +width = 341; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (114,50); +ref = hookabovecomb; +} +); +width = 487; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (205,57); +ref = hookabovecomb; +} +); +width = 584; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (222,51); +ref = hookabovecomb; +} +); +width = 726; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (252,57); +ref = hookabovecomb; +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (274,51); +ref = hookabovecomb; +} +); +width = 834; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (206,57); +ref = hookabovecomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (215,51); +ref = hookabovecomb; +} +); +width = 740; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (87,56); +ref = hookabovecomb; +} +); +width = 355; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (104,49); +ref = hookabovecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (213,56); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (202,50); +ref = hookabovecomb; +} +); +width = 743; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (247,56); +ref = hookabovecomb; +} +); +width = 683; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (252,48); +ref = hookabovecomb; +} +); +width = 824; +} +); +unicode = 7926; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Y_tilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_tilde.glyph new file mode 100644 index 00000000..72969be0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Y_tilde.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = Ytilde; +kernLeft = KO_Y; +kernRight = KO_Y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (40,57); +ref = tildecomb; +} +); +width = 359; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (16,50); +ref = tildecomb; +} +); +width = 497; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (140,57); +ref = tildecomb; +} +); +width = 693; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (153,56); +ref = tildecomb; +} +); +width = 834; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (51,57); +ref = tildecomb; +} +); +width = 341; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (21,50); +ref = tildecomb; +} +); +width = 487; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (124,57); +ref = tildecomb; +} +); +width = 584; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (127,51); +ref = tildecomb; +} +); +width = 726; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (153,57); +ref = tildecomb; +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (163,56); +ref = tildecomb; +} +); +width = 834; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (127,57); +ref = tildecomb; +} +); +width = 627; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (121,51); +ref = tildecomb; +} +); +width = 740; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (51,57); +ref = tildecomb; +} +); +width = 355; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (17,50); +ref = tildecomb; +} +); +width = 498; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (128,57); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (113,51); +ref = tildecomb; +} +); +width = 743; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (143,57); +ref = tildecomb; +} +); +width = 683; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (160,51); +ref = tildecomb; +} +); +width = 824; +} +); +unicode = 7928; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Z_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_.glyph new file mode 100644 index 00000000..9011c787 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_.glyph @@ -0,0 +1,777 @@ +{ +glyphname = Z; +kernLeft = KO_Z; +kernRight = KO_Z; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = center; +pos = (218,365); +}, +{ +name = top; +pos = (218,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,0,l), +(417,157,l), +(214,157,l), +(214,161,l), +(251,233,l), +(417,589,l), +(417,729,l), +(27,729,l), +(27,571,l), +(216,571,l), +(216,566,l), +(177,490,l), +(14,139,l), +(14,0,l) +); +} +); +width = 434; +}, +{ +anchors = ( +{ +name = bottom; +pos = (165,0); +}, +{ +name = center; +pos = (165,365); +}, +{ +name = top; +pos = (165,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,0,l), +(320,30,l), +(45,30,l), +(45,34,l), +(87,136,l), +(312,707,l), +(312,729,l), +(21,729,l), +(21,700,l), +(277,700,l), +(277,696,l), +(244,617,l), +(10,23,l), +(10,0,l) +); +} +); +width = 329; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = center; +pos = (337,365); +}, +{ +name = top; +pos = (337,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,0,l), +(655,37,l), +(73,37,l), +(73,41,l), +(141,116,l), +(643,698,l), +(643,729,l), +(35,729,l), +(35,693,l), +(589,693,l), +(589,689,l), +(538,634,l), +(20,32,l), +(20,0,l) +); +} +); +width = 675; +}, +{ +anchors = ( +{ +name = bottom; +pos = (349,0); +}, +{ +name = center; +pos = (349,365); +}, +{ +name = top; +pos = (349,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(681,0,l), +(681,179,l), +(295,179,l), +(295,183,l), +(389,271,l), +(671,547,l), +(671,729,l), +(35,729,l), +(35,549,l), +(390,549,l), +(390,545,l), +(307,467,l), +(15,180,l), +(15,0,l) +); +} +); +width = 699; +}, +{ +anchors = ( +{ +name = bottom; +pos = (142,0); +}, +{ +name = center; +pos = (142,365); +}, +{ +name = top; +pos = (142,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,0,l), +(282,30,l), +(35,30,l), +(35,30,l), +(65,114,l), +(275,707,l), +(275,729,l), +(12,729,l), +(12,700,l), +(242,700,l), +(242,700,l), +(219,636,l), +(2,23,l), +(2,0,l) +); +} +); +width = 284; +}, +{ +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = center; +pos = (209,365); +}, +{ +name = top; +pos = (209,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,0,l), +(408,157,l), +(206,157,l), +(206,157,l), +(240,231,l), +(408,589,l), +(408,729,l), +(18,729,l), +(18,571,l), +(206,571,l), +(206,571,l), +(175,505,l), +(5,139,l), +(5,0,l) +); +} +); +width = 415; +}, +{ +anchors = ( +{ +name = bottom; +pos = (288,0); +}, +{ +name = center; +pos = (288,365); +}, +{ +name = top; +pos = (288,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(564,0,l), +(564,37,l), +(66,37,l), +(66,37,l), +(127,120,l), +(552,701,l), +(552,729,l), +(29,729,l), +(29,693,l), +(500,693,l), +(500,693,l), +(440,611,l), +(14,29,l), +(14,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 578; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = center; +pos = (295,365); +}, +{ +name = top; +pos = (295,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(584,0,l), +(584,172,l), +(250,172,l), +(250,172,l), +(317,251,l), +(575,554,l), +(575,729,l), +(22,729,l), +(22,556,l), +(326,556,l), +(326,556,l), +(266,485,l), +(4,173,l), +(4,0,l) +); +} +); +width = 590; +}, +{ +anchors = ( +{ +name = bottom; +pos = (327,0); +}, +{ +name = center; +pos = (327,365); +}, +{ +name = top; +pos = (327,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(645,37,l), +(63,37,l), +(63,37,l), +(141,128,l), +(633,698,l), +(633,729,l), +(25,729,l), +(25,693,l), +(579,693,l), +(579,693,l), +(513,617,l), +(10,32,l), +(10,0,l) +); +} +); +width = 655; +}, +{ +anchors = ( +{ +name = bottom; +pos = (334,0); +}, +{ +name = center; +pos = (334,365); +}, +{ +name = top; +pos = (334,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,0,l), +(666,179,l), +(280,179,l), +(280,184,l), +(370,267,l), +(656,547,l), +(656,729,l), +(20,729,l), +(20,549,l), +(375,549,l), +(375,545,l), +(301,476,l), +(0,180,l), +(0,0,l) +); +} +); +width = 669; +}, +{ +anchors = ( +{ +name = bottom; +pos = (290,0); +}, +{ +name = center; +pos = (290,365); +}, +{ +name = top; +pos = (290,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(564,0,l), +(564,37,l), +(86,37,l), +(86,41,l), +(152,134,l), +(542,701,l), +(542,729,l), +(47,729,l), +(47,693,l), +(492,693,l), +(492,689,l), +(431,603,l), +(37,29,l), +(37,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 596; +}, +{ +anchors = ( +{ +name = bottom; +pos = (314,0); +}, +{ +name = center; +pos = (314,365); +}, +{ +name = top; +pos = (314,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(605,0,l), +(605,172,l), +(262,172,l), +(262,184,l), +(342,260,l), +(597,554,l), +(597,729,l), +(40,729,l), +(40,556,l), +(346,556,l), +(346,544,l), +(279,479,l), +(21,173,l), +(21,0,l) +); +} +); +width = 627; +}, +{ +anchors = ( +{ +name = bottom; +pos = (111,0); +}, +{ +name = center; +pos = (186,365); +}, +{ +name = top; +pos = (262,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(270,30,l), +(-2,30,l), +(-2,33,l), +(63,139,l), +(403,705,l), +(408,729,l), +(119,729,l), +(113,700,l), +(367,700,l), +(367,697,l), +(317,616,l), +(-37,25,l), +(-43,0,l) +); +} +); +width = 326; +}, +{ +anchors = ( +{ +name = bottom; +pos = (161,0); +}, +{ +name = center; +pos = (236,365); +}, +{ +name = top; +pos = (312,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,0,l), +(390,157,l), +(189,157,l), +(189,161,l), +(237,229,l), +(481,589,l), +(509,729,l), +(123,729,l), +(90,571,l), +(276,571,l), +(276,567,l), +(223,492,l), +(-13,139,l), +(-41,0,l) +); +} +); +width = 432; +}, +{ +anchors = ( +{ +name = bottom; +pos = (247,0); +}, +{ +name = center; +pos = (323,365); +}, +{ +name = top; +pos = (398,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,0,l), +(522,37,l), +(43,37,l), +(43,41,l), +(143,146,l), +(648,699,l), +(654,729,l), +(147,729,l), +(140,693,l), +(593,693,l), +(593,689,l), +(514,606,l), +(-13,31,l), +(-20,0,l) +); +} +); +width = 603; +}, +{ +anchors = ( +{ +name = bottom; +pos = (261,0); +}, +{ +name = center; +pos = (336,365); +}, +{ +name = top; +pos = (411,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(547,0,l), +(582,172,l), +(266,172,l), +(266,177,l), +(347,255,l), +(657,574,l), +(689,729,l), +(142,729,l), +(107,556,l), +(393,556,l), +(393,552,l), +(328,489,l), +(5,157,l), +(-28,0,l) +); +} +); +width = 634; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = center; +pos = (355,365); +}, +{ +name = top; +pos = (431,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(594,0,l), +(601,37,l), +(32,37,l), +(32,41,l), +(127,127,l), +(726,697,l), +(733,729,l), +(133,729,l), +(126,693,l), +(669,693,l), +(669,689,l), +(592,620,l), +(-26,33,l), +(-33,0,l) +); +} +); +width = 668; +}, +{ +anchors = ( +{ +name = bottom; +pos = (290,0); +}, +{ +name = center; +pos = (365,365); +}, +{ +name = top; +pos = (441,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(619,0,l), +(656,179,l), +(288,179,l), +(288,183,l), +(383,260,l), +(723,550,l), +(760,729,l), +(130,729,l), +(93,549,l), +(430,549,l), +(430,545,l), +(350,481,l), +(-5,177,l), +(-41,0,l) +); +} +); +width = 693; +} +); +unicode = 90; +userData = { +KernOnName = Z; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Z_acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_acute.glyph new file mode 100644 index 00000000..968708b6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_acute.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Zacute; +kernLeft = KO_Z; +kernRight = KO_Z; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (109,57); +ref = acutecomb; +} +); +width = 329; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (106,51); +ref = acutecomb; +} +); +width = 434; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (279,57); +ref = acutecomb; +} +); +width = 675; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (232,56); +ref = acutecomb; +} +); +width = 699; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (106,57); +ref = acutecomb; +} +); +width = 284; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (107,51); +ref = acutecomb; +} +); +width = 415; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Z; +}, +{ +alignment = -1; +pos = (253,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (204,51); +ref = acutecomb; +} +); +width = 590; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (279,57); +ref = acutecomb; +} +); +width = 655; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (227,56); +ref = acutecomb; +} +); +width = 669; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Z; +}, +{ +pos = (234,57); +ref = acutecomb; +} +); +width = 596; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Z; +}, +{ +pos = (204,51); +ref = acutecomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (121,57); +ref = acutecomb; +} +); +width = 326; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (117,51); +ref = acutecomb; +} +); +width = 432; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (256,57); +ref = acutecomb; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (216,51); +ref = acutecomb; +} +); +width = 634; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (288,57); +ref = acutecomb; +} +); +width = 668; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (241,56); +ref = acutecomb; +} +); +width = 693; +} +); +unicode = 377; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Z_caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_caron.glyph new file mode 100644 index 00000000..39c102c4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_caron.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Zcaron; +kernLeft = KO_Z; +kernRight = KO_Z; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (36,57); +ref = caroncomb; +} +); +width = 329; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (1,51); +ref = caroncomb; +} +); +width = 434; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (158,57); +ref = caroncomb; +} +); +width = 675; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (58,56); +ref = caroncomb; +} +); +width = 699; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (33,57); +ref = caroncomb; +} +); +width = 284; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (2,51); +ref = caroncomb; +} +); +width = 415; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Z; +}, +{ +alignment = -1; +pos = (144,57); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (69,51); +ref = caroncomb; +} +); +width = 590; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (158,57); +ref = caroncomb; +} +); +width = 655; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (53,56); +ref = caroncomb; +} +); +width = 669; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Z; +}, +{ +pos = (127,57); +ref = caroncomb; +} +); +width = 596; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Z; +}, +{ +pos = (75,51); +ref = caroncomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (48,57); +ref = caroncomb; +} +); +width = 326; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (16,51); +ref = caroncomb; +} +); +width = 432; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (147,57); +ref = caroncomb; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (77,51); +ref = caroncomb; +} +); +width = 634; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (165,57); +ref = caroncomb; +} +); +width = 668; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (67,56); +ref = caroncomb; +} +); +width = 693; +} +); +unicode = 381; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Z_dotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_dotaccent.glyph new file mode 100644 index 00000000..ed2accab --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_dotaccent.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = Zdotaccent; +kernLeft = KO_Z; +kernRight = KO_Z; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (102,57); +ref = dotaccentcomb; +} +); +width = 329; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (84,51); +ref = dotaccentcomb; +} +); +width = 434; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (265,57); +ref = dotaccentcomb; +} +); +width = 675; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (191,56); +ref = dotaccentcomb; +} +); +width = 699; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (99,62); +ref = dotaccentcomb; +} +); +width = 284; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (85,51); +ref = dotaccentcomb; +} +); +width = 415; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Z; +}, +{ +alignment = -1; +pos = (236,57); +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (179,51); +ref = dotaccentcomb; +} +); +width = 590; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (265,57); +ref = dotaccentcomb; +} +); +width = 655; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (186,56); +ref = dotaccentcomb; +} +); +width = 669; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Z; +}, +{ +pos = (217,79); +ref = dotaccentcomb; +} +); +width = 596; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Z; +}, +{ +pos = (181,65); +ref = dotaccentcomb; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (108,57); +ref = dotaccentcomb; +} +); +width = 326; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (94,51); +ref = dotaccentcomb; +} +); +width = 432; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (241,57); +ref = dotaccentcomb; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (186,51); +ref = dotaccentcomb; +} +); +width = 634; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (274,57); +ref = dotaccentcomb; +} +); +width = 668; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (197,56); +ref = dotaccentcomb; +} +); +width = 693; +} +); +unicode = 379; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/Z_dotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_dotaccent.ss01.glyph new file mode 100644 index 00000000..9d528b78 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/Z_dotaccent.ss01.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = Zdotaccent.ss01; +kernLeft = KO_Z; +kernRight = KO_Z; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (110,57); +ref = dotaccentcomb.ss01; +} +); +width = 329; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (89,51); +ref = dotaccentcomb.ss01; +} +); +width = 434; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (278,57); +ref = dotaccentcomb.ss01; +} +); +width = 675; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (198,56); +ref = dotaccentcomb.ss01; +} +); +width = 699; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (107,57); +ref = dotaccentcomb.ss01; +} +); +width = 284; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (90,51); +ref = dotaccentcomb.ss01; +} +); +width = 415; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = Z; +}, +{ +alignment = -1; +pos = (249,57); +ref = dotaccentcomb.ss01; +} +); +width = 618; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (180,51); +ref = dotaccentcomb.ss01; +} +); +width = 590; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (278,57); +ref = dotaccentcomb.ss01; +} +); +width = 655; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (193,56); +ref = dotaccentcomb.ss01; +} +); +width = 669; +}, +{ +layerId = m019; +shapes = ( +{ +ref = Z; +}, +{ +pos = (230,57); +ref = dotaccentcomb.ss01; +} +); +width = 596; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Z; +}, +{ +pos = (180,51); +ref = dotaccentcomb.ss01; +} +); +width = 627; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (122,57); +ref = dotaccentcomb.ss01; +} +); +width = 326; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (100,51); +ref = dotaccentcomb.ss01; +} +); +width = 432; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (254,57); +ref = dotaccentcomb.ss01; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (191,51); +ref = dotaccentcomb.ss01; +} +); +width = 634; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (287,57); +ref = dotaccentcomb.ss01; +} +); +width = 668; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (206,51); +ref = dotaccentcomb.ss01; +} +); +width = 693; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_B_.currency.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_B_.currency.glyph new file mode 100644 index 00000000..4aae487e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_B_.currency.glyph @@ -0,0 +1,1106 @@ +{ +category = ""; +export = 0; +glyphname = _B.currency; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (213,0); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,0,ls), +(303,0,o), +(348,81,o), +(348,200,cs), +(348,279,o), +(318,355,o), +(253,374,c), +(253,376,l), +(299,392,o), +(335,456,o), +(335,543,cs), +(335,670,o), +(283,729,o), +(185,729,cs), +(78,729,l), +(78,0,l) +); +}, +{ +closed = 1; +nodes = ( +(109,359,l), +(195,359,ls), +(270,359,o), +(314,299,o), +(314,201,cs), +(314,77,o), +(270,29,o), +(184,29,cs), +(109,29,l) +); +}, +{ +closed = 1; +nodes = ( +(109,700,l), +(184,700,ls), +(272,700,o), +(304,635,o), +(304,539,cs), +(304,449,o), +(264,389,o), +(194,389,cs), +(109,389,l) +); +} +); +width = 397; +}, +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,0,ls), +(375,0,o), +(458,70,o), +(458,206,cs), +(458,296,o), +(425,360,o), +(362,381,c), +(362,387,l), +(411,404,o), +(443,465,o), +(443,537,cs), +(443,654,o), +(391,729,o), +(249,729,cs), +(34,729,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(213,309,l), +(230,309,ls), +(261,309,o), +(281,285,o), +(281,225,cs), +(281,172,o), +(268,141,o), +(229,141,cs), +(213,141,l) +); +}, +{ +closed = 1; +nodes = ( +(213,591,l), +(230,591,ls), +(260,591,o), +(276,568,o), +(276,513,cs), +(276,465,o), +(265,433,o), +(230,433,cs), +(213,433,l) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = bottom; +pos = (382,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,0,ls), +(588,0,o), +(679,78,o), +(679,200,cs), +(679,285,o), +(630,356,o), +(533,374,c), +(533,377,l), +(621,397,o), +(660,464,o), +(660,543,cs), +(660,654,o), +(581,729,o), +(446,729,cs), +(85,729,l), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(123,356,l), +(463,356,ls), +(575,356,o), +(639,298,o), +(639,202,cs), +(639,104,o), +(573,36,o), +(445,36,cs), +(123,36,l) +); +}, +{ +closed = 1; +nodes = ( +(123,694,l), +(445,694,ls), +(552,694,o), +(622,635,o), +(622,538,cs), +(622,450,o), +(566,391,o), +(461,391,cs), +(123,391,l) +); +} +); +width = 729; +}, +{ +anchors = ( +{ +name = bottom; +pos = (398,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,0,ls), +(656,0,o), +(740,86,o), +(740,206,cs), +(740,291,o), +(690,356,o), +(601,376,c), +(601,385,l), +(673,406,o), +(718,465,o), +(718,538,cs), +(718,667,o), +(625,729,o), +(458,729,cs), +(55,729,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,298,l), +(399,298,ls), +(465,298,o), +(498,279,o), +(498,228,cs), +(498,184,o), +(473,155,o), +(400,155,cs), +(283,155,l) +); +}, +{ +closed = 1; +nodes = ( +(283,573,l), +(390,573,ls), +(457,573,o), +(476,549,o), +(476,511,cs), +(476,472,o), +(453,447,o), +(389,447,cs), +(283,447,l) +); +} +); +width = 760; +}, +{ +anchors = ( +{ +name = bottom; +pos = (193,0); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,0,ls), +(283,0,o), +(328,81,o), +(328,200,cs), +(328,279,o), +(298,355,o), +(233,374,c), +(233,376,l), +(279,392,o), +(315,456,o), +(315,543,cs), +(315,670,o), +(263,729,o), +(165,729,cs), +(58,729,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(89,359,l), +(175,359,ls), +(250,359,o), +(294,299,o), +(294,201,cs), +(294,77,o), +(250,29,o), +(164,29,cs), +(89,29,l) +); +}, +{ +closed = 1; +nodes = ( +(89,700,l), +(164,700,ls), +(252,700,o), +(284,635,o), +(284,539,cs), +(284,449,o), +(244,389,o), +(174,389,cs), +(89,389,l) +); +} +); +width = 357; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,ls), +(365,0,o), +(448,70,o), +(448,206,cs), +(448,296,o), +(415,360,o), +(352,381,c), +(352,387,l), +(401,404,o), +(433,465,o), +(433,537,cs), +(433,654,o), +(381,729,o), +(239,729,cs), +(24,729,l), +(24,0,l) +); +}, +{ +closed = 1; +nodes = ( +(203,309,l), +(220,309,ls), +(251,309,o), +(271,285,o), +(271,225,cs), +(271,172,o), +(258,141,o), +(219,141,cs), +(203,141,l) +); +}, +{ +closed = 1; +nodes = ( +(203,591,l), +(220,591,ls), +(250,591,o), +(266,568,o), +(266,513,cs), +(266,465,o), +(255,433,o), +(220,433,cs), +(203,433,l) +); +} +); +width = 456; +}, +{ +anchors = ( +{ +name = bottom; +pos = (346,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,0,ls), +(514,0,o), +(605,78,o), +(605,200,cs), +(605,285,o), +(556,356,o), +(459,374,c), +(459,377,l), +(547,397,o), +(586,464,o), +(586,543,cs), +(586,654,o), +(507,729,o), +(372,729,cs), +(87,729,l), +(87,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,356,l), +(389,356,ls), +(501,356,o), +(565,298,o), +(565,202,cs), +(565,104,o), +(499,36,o), +(371,36,cs), +(125,36,l) +); +}, +{ +closed = 1; +nodes = ( +(125,694,l), +(371,694,ls), +(478,694,o), +(548,635,o), +(548,538,cs), +(548,450,o), +(492,391,o), +(387,391,cs), +(125,391,l) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,ls), +(569,0,o), +(658,85,o), +(658,212,cs), +(658,293,o), +(614,359,o), +(535,376,c), +(535,385,l), +(597,405,o), +(638,467,o), +(638,541,cs), +(638,654,o), +(565,729,o), +(410,729,cs), +(46,729,l), +(46,0,l) +); +}, +{ +closed = 1; +nodes = ( +(243,299,l), +(357,299,ls), +(416,299,o), +(442,273,o), +(442,226,cs), +(442,179,o), +(416,153,o), +(357,153,cs), +(243,153,l) +); +}, +{ +closed = 1; +nodes = ( +(243,576,l), +(348,576,ls), +(394,576,o), +(424,555,o), +(424,511,cs), +(424,472,o), +(400,446,o), +(348,446,cs), +(243,446,l) +); +} +); +width = 674; +}, +{ +anchors = ( +{ +name = bottom; +pos = (372,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,0,ls), +(578,0,o), +(669,78,o), +(669,200,cs), +(669,285,o), +(620,356,o), +(523,374,c), +(523,377,l), +(611,397,o), +(650,464,o), +(650,543,cs), +(650,654,o), +(571,729,o), +(436,729,cs), +(75,729,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(113,356,l), +(453,356,ls), +(565,356,o), +(629,298,o), +(629,202,cs), +(629,104,o), +(563,36,o), +(435,36,cs), +(113,36,l) +); +}, +{ +closed = 1; +nodes = ( +(113,694,l), +(435,694,ls), +(542,694,o), +(612,635,o), +(612,538,cs), +(612,450,o), +(556,391,o), +(451,391,cs), +(113,391,l) +); +} +); +width = 709; +}, +{ +anchors = ( +{ +name = bottom; +pos = (388,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,0,ls), +(646,0,o), +(730,86,o), +(730,206,cs), +(730,291,o), +(680,356,o), +(591,376,c), +(591,385,l), +(663,406,o), +(708,465,o), +(708,538,cs), +(708,667,o), +(615,729,o), +(448,729,cs), +(45,729,l), +(45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(273,298,l), +(389,298,ls), +(455,298,o), +(488,279,o), +(488,228,cs), +(488,184,o), +(463,155,o), +(390,155,cs), +(273,155,l) +); +}, +{ +closed = 1; +nodes = ( +(273,573,l), +(380,573,ls), +(447,573,o), +(466,549,o), +(466,511,cs), +(466,472,o), +(443,447,o), +(379,447,cs), +(273,447,l) +); +} +); +width = 740; +}, +{ +anchors = ( +{ +name = bottom; +pos = (359,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(384,0,ls), +(525,0,o), +(614,78,o), +(614,200,cs), +(614,285,o), +(565,356,o), +(470,374,c), +(470,377,l), +(556,397,o), +(595,464,o), +(595,543,cs), +(595,654,o), +(518,729,o), +(385,729,cs), +(106,729,l), +(106,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,356,l), +(402,356,ls), +(512,356,o), +(574,298,o), +(574,202,cs), +(574,104,o), +(510,36,o), +(384,36,cs), +(144,36,l) +); +}, +{ +closed = 1; +nodes = ( +(144,694,l), +(384,694,ls), +(489,694,o), +(557,635,o), +(557,538,cs), +(557,450,o), +(503,391,o), +(400,391,cs), +(144,391,l) +); +} +); +width = 682; +}, +{ +anchors = ( +{ +name = bottom; +pos = (362,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(391,0,ls), +(574,0,o), +(660,85,o), +(660,212,cs), +(660,293,o), +(618,359,o), +(542,376,c), +(542,385,l), +(601,405,o), +(641,467,o), +(641,541,cs), +(641,654,o), +(570,729,o), +(420,729,cs), +(64,729,l), +(64,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,299,l), +(366,299,ls), +(422,299,o), +(446,273,o), +(446,226,cs), +(446,179,o), +(422,153,o), +(366,153,cs), +(259,153,l) +); +}, +{ +closed = 1; +nodes = ( +(259,576,l), +(357,576,ls), +(401,576,o), +(429,555,o), +(429,511,cs), +(429,472,o), +(406,446,o), +(357,446,cs), +(259,446,l) +); +} +); +width = 692; +}, +{ +anchors = ( +{ +name = bottom; +pos = (211,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(130,0,ls), +(262,0,o), +(332,89,o), +(337,240,cs), +(339,301,o), +(315,351,o), +(272,369,c), +(272,372,l), +(347,398,o), +(398,490,o), +(398,596,cs), +(398,676,o), +(357,729,o), +(271,729,cs), +(176,729,l), +(24,0,l) +); +}, +{ +closed = 1; +nodes = ( +(129,359,l), +(204,359,ls), +(273,359,o), +(307,315,o), +(305,242,cs), +(300,106,o), +(239,29,o), +(136,29,cs), +(61,29,l) +); +}, +{ +closed = 1; +nodes = ( +(200,700,l), +(265,700,ls), +(327,700,o), +(366,670,o), +(366,596,cs), +(366,484,o), +(311,389,o), +(221,389,cs), +(137,389,l) +); +} +); +width = 395; +}, +{ +anchors = ( +{ +name = bottom; +pos = (241,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,0,ls), +(348,0,o), +(444,95,o), +(449,247,cs), +(451,303,o), +(432,353,o), +(386,375,c), +(388,380,l), +(452,401,o), +(501,474,o), +(504,569,cs), +(507,661,o), +(462,729,o), +(330,729,cs), +(130,729,l), +(-22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(222,309,l), +(236,309,ls), +(265,309,o), +(278,289,o), +(276,253,cs), +(274,189,o), +(245,141,o), +(204,141,cs), +(185,141,l) +); +}, +{ +closed = 1; +nodes = ( +(280,590,l), +(295,590,ls), +(319,590,o), +(334,572,o), +(333,538,cs), +(331,482,o), +(302,433,o), +(263,433,cs), +(246,433,l) +); +} +); +width = 477; +}, +{ +anchors = ( +{ +name = bottom; +pos = (368,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,0,ls), +(520,0,o), +(619,79,o), +(623,215,cs), +(626,291,o), +(586,356,o), +(516,371,c), +(516,374,l), +(607,393,o), +(676,468,o), +(679,566,cs), +(683,664,o), +(621,729,o), +(506,729,cs), +(208,729,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(168,356,l), +(442,356,ls), +(537,356,o), +(587,299,o), +(584,216,cs), +(580,102,o), +(498,36,o), +(358,36,cs), +(101,36,l) +); +}, +{ +closed = 1; +nodes = ( +(238,694,l), +(496,694,ls), +(585,694,o), +(641,650,o), +(637,559,cs), +(634,456,o), +(556,391,o), +(449,391,cs), +(177,391,l) +); +} +); +width = 709; +}, +{ +anchors = ( +{ +name = bottom; +pos = (367,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,0,ls), +(553,0,o), +(671,72,o), +(676,224,cs), +(679,296,o), +(643,355,o), +(589,370,c), +(591,379,l), +(658,398,o), +(717,464,o), +(720,555,cs), +(724,657,o), +(659,729,o), +(505,729,cs), +(165,729,l), +(14,0,l) +); +}, +{ +closed = 1; +nodes = ( +(272,300,l), +(404,300,ls), +(443,300,o), +(473,282,o), +(472,236,cs), +(470,182,o), +(435,153,o), +(377,153,cs), +(241,153,l) +); +}, +{ +closed = 1; +nodes = ( +(330,576,l), +(453,576,ls), +(493,576,o), +(516,557,o), +(514,522,cs), +(513,472,o), +(478,445,o), +(424,445,cs), +(303,445,l) +); +} +); +width = 725; +}, +{ +anchors = ( +{ +name = bottom; +pos = (388,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,0,ls), +(586,0,o), +(686,83,o), +(691,221,cs), +(694,295,o), +(648,357,o), +(580,372,c), +(580,375,l), +(674,395,o), +(741,468,o), +(745,564,cs), +(748,669,o), +(686,729,o), +(550,729,cs), +(182,729,l), +(31,0,l) +); +}, +{ +closed = 1; +nodes = ( +(142,356,l), +(498,356,ls), +(603,356,o), +(654,307,o), +(651,219,cs), +(647,104,o), +(563,36,o), +(422,36,cs), +(76,36,l) +); +}, +{ +closed = 1; +nodes = ( +(214,694,l), +(543,694,ls), +(652,694,o), +(708,647,o), +(705,562,cs), +(701,456,o), +(626,391,o), +(496,391,cs), +(151,391,l) +); +} +); +width = 753; +}, +{ +anchors = ( +{ +name = bottom; +pos = (397,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,0,ls), +(634,0,o), +(747,80,o), +(747,231,cs), +(747,303,o), +(708,354,o), +(641,372,c), +(642,381,l), +(737,397,o), +(795,465,o), +(795,564,cs), +(795,666,o), +(728,729,o), +(557,729,cs), +(151,729,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(289,297,l), +(432,297,ls), +(486,297,o), +(519,281,o), +(519,238,cs), +(519,181,o), +(482,155,o), +(405,155,cs), +(259,155,l) +); +}, +{ +closed = 1; +nodes = ( +(346,573,l), +(482,573,ls), +(530,573,o), +(558,558,o), +(558,520,cs), +(558,472,o), +(524,446,o), +(460,446,cs), +(321,446,l) +); +} +); +width = 781; +} +); +subCategory = ""; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_T_horn.bowl.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_T_horn.bowl.glyph new file mode 100644 index 00000000..65fda042 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_T_horn.bowl.glyph @@ -0,0 +1,640 @@ +{ +category = ""; +export = 0; +glyphname = _Thorn.bowl; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (38,0); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(139,158,ls), +(257,158,o), +(306,241,o), +(306,365,cs), +(306,489,o), +(256,572,o), +(139,572,cs), +(40,572,l), +(40,544,l), +(137,544,ls), +(220,544,o), +(273,494,o), +(273,365,cs), +(273,234,o), +(219,186,o), +(137,186,cs), +(40,186,l), +(40,158,l) +); +} +); +width = 346; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-27,0); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(85,106,ls), +(238,106,o), +(315,190,o), +(315,365,cs), +(315,538,o), +(238,623,o), +(85,623,cs), +(40,623,l), +(40,466,l), +(79,466,ls), +(116,466,o), +(134,444,o), +(134,367,cs), +(134,302,o), +(125,263,o), +(79,263,cs), +(40,263,l), +(40,106,l) +); +} +); +width = 355; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (32,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,145,ls), +(412,145,o), +(508,231,o), +(508,365,cs), +(508,505,o), +(413,585,o), +(254,585,cs), +(40,585,l), +(40,548,l), +(251,548,ls), +(393,548,o), +(468,479,o), +(468,365,cs), +(468,254,o), +(394,181,o), +(251,181,cs), +(40,181,l), +(40,145,l) +); +} +); +width = 548; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-2,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,104,ls), +(428,104,o), +(548,185,o), +(548,357,cs), +(548,509,o), +(452,610,o), +(249,610,cs), +(40,610,l), +(40,435,l), +(224,435,ls), +(277,435,o), +(318,419,o), +(318,357,cs), +(318,295,o), +(277,279,o), +(224,279,cs), +(40,279,l), +(40,104,l) +); +} +); +width = 588; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (18,0); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(119,158,ls), +(237,158,o), +(286,241,o), +(286,365,cs), +(286,489,o), +(236,572,o), +(119,572,cs), +(20,572,l), +(20,544,l), +(117,544,ls), +(200,544,o), +(253,494,o), +(253,365,cs), +(253,234,o), +(199,186,o), +(117,186,cs), +(20,186,l), +(20,158,l) +); +} +); +width = 306; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-37,0); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(75,106,ls), +(228,106,o), +(305,190,o), +(305,365,cs), +(305,538,o), +(228,623,o), +(75,623,cs), +(30,623,l), +(30,466,l), +(69,466,ls), +(106,466,o), +(124,444,o), +(124,367,cs), +(124,302,o), +(115,263,o), +(69,263,cs), +(30,263,l), +(30,106,l) +); +} +); +width = 335; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (19,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,145,ls), +(394,145,o), +(490,231,o), +(490,365,cs), +(490,505,o), +(395,585,o), +(245,585,cs), +(20,585,l), +(20,548,l), +(242,548,ls), +(375,548,o), +(450,479,o), +(450,365,cs), +(450,254,o), +(376,181,o), +(242,181,cs), +(20,181,l), +(20,145,l) +); +} +); +width = 510; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-36,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,111,ls), +(345,111,o), +(451,201,o), +(451,362,cs), +(451,523,o), +(345,613,o), +(174,613,cs), +(19,613,l), +(19,443,l), +(148,443,ls), +(206,443,o), +(245,420,o), +(245,362,cs), +(245,304,o), +(206,281,o), +(148,281,cs), +(19,281,l), +(19,111,l) +); +} +); +width = 470; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (22,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,145,ls), +(402,145,o), +(498,231,o), +(498,365,cs), +(498,505,o), +(403,585,o), +(244,585,cs), +(30,585,l), +(30,548,l), +(241,548,ls), +(383,548,o), +(458,479,o), +(458,365,cs), +(458,254,o), +(384,181,o), +(241,181,cs), +(30,181,l), +(30,145,l) +); +} +); +width = 528; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-12,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,104,ls), +(418,104,o), +(538,185,o), +(538,357,cs), +(538,509,o), +(442,610,o), +(239,610,cs), +(30,610,l), +(30,435,l), +(214,435,ls), +(267,435,o), +(308,419,o), +(308,357,cs), +(308,295,o), +(267,279,o), +(214,279,cs), +(30,279,l), +(30,104,l) +); +} +); +width = 568; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (36,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(255,145,ls), +(403,145,o), +(497,231,o), +(497,365,cs), +(497,505,o), +(404,585,o), +(256,585,cs), +(37,585,l), +(37,548,l), +(253,548,ls), +(384,548,o), +(457,479,o), +(457,365,cs), +(457,254,o), +(385,181,o), +(253,181,cs), +(37,181,l), +(37,145,l) +); +} +); +width = 534; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-20,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(183,111,ls), +(349,111,o), +(452,201,o), +(452,362,cs), +(452,523,o), +(349,613,o), +(183,613,cs), +(35,613,l), +(35,443,l), +(157,443,ls), +(212,443,o), +(248,420,o), +(248,362,cs), +(248,304,o), +(212,281,o), +(157,281,cs), +(35,281,l), +(35,111,l) +); +} +); +width = 487; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (3,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,158,ls), +(278,158,o), +(339,235,o), +(364,348,cs), +(391,475,o), +(360,572,o), +(234,572,cs), +(105,572,l), +(101,544,l), +(226,544,ls), +(318,544,o), +(361,488,o), +(332,353,cs), +(305,225,o), +(244,186,o), +(162,186,cs), +(37,186,l), +(33,158,l) +); +} +); +width = 385; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-20,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,106,ls), +(268,106,o), +(370,199,o), +(402,353,cs), +(429,498,o), +(412,623,o), +(228,623,cs), +(113,623,l), +(85,466,l), +(188,466,ls), +(233,466,o), +(238,426,o), +(223,361,cs), +(211,301,o), +(182,263,o), +(147,263,cs), +(50,263,l), +(22,106,l) +); +} +); +width = 425; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (3,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,145,ls), +(445,145,o), +(550,219,o), +(575,341,cs), +(600,450,o), +(559,584,o), +(387,584,cs), +(107,584,l), +(100,547,l), +(374,547,ls), +(521,547,o), +(558,449,o), +(537,344,cs), +(516,244,o), +(433,180,o), +(297,180,cs), +(35,180,l), +(29,145,l) +); +} +); +width = 598; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-57,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,116,ls), +(366,116,o), +(482,198,o), +(510,335,cs), +(536,467,o), +(490,613,o), +(276,613,cs), +(111,613,l), +(80,436,l), +(244,436,ls), +(293,436,o), +(317,400,o), +(306,348,cs), +(297,303,o), +(263,277,o), +(209,277,cs), +(52,277,l), +(23,116,l) +); +} +); +width = 537; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (1,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,145,ls), +(536,145,o), +(640,217,o), +(666,341,cs), +(694,471,o), +(636,584,o), +(446,584,cs), +(107,584,l), +(100,547,l), +(435,547,ls), +(618,547,o), +(648,449,o), +(626,343,cs), +(605,239,o), +(521,181,o), +(384,181,cs), +(36,181,l), +(29,145,l) +); +} +); +width = 689; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-71,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,121,ls), +(432,121,o), +(552,188,o), +(582,330,cs), +(609,480,o), +(559,609,o), +(324,609,cs), +(110,609,l), +(80,436,l), +(271,436,ls), +(352,436,o), +(367,392,o), +(356,345,cs), +(346,298,o), +(307,278,o), +(242,278,cs), +(52,278,l), +(24,121,l) +); +} +); +width = 610; +} +); +metricLeft = "=40"; +metricRight = "=40"; +script = ""; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_baht.bar.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_baht.bar.glyph new file mode 100644 index 00000000..4358ba96 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_baht.bar.glyph @@ -0,0 +1,1834 @@ +{ +category = ""; +export = 0; +glyphname = _baht.bar; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (87,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,ls), +(177,0,o), +(222,81,o), +(222,200,cs), +(222,279,o), +(192,355,o), +(127,374,c), +(127,376,l), +(173,392,o), +(209,456,o), +(209,543,cs), +(209,670,o), +(157,729,o), +(59,729,cs), +(-48,729,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(68,-85,l), +(68,12,l), +(40,12,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-17,359,l), +(69,359,ls), +(144,359,o), +(188,299,o), +(188,201,cs), +(188,77,o), +(144,29,o), +(58,29,cs), +(-17,29,l) +); +}, +{ +closed = 1; +nodes = ( +(-17,700,l), +(58,700,ls), +(146,700,o), +(178,635,o), +(178,539,cs), +(178,449,o), +(138,389,o), +(68,389,cs), +(-17,389,l) +); +}, +{ +closed = 1; +nodes = ( +(68,713,l), +(68,815,l), +(40,815,l), +(40,713,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(68,-85,l), +(68,12,l), +(40,12,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(68,713,l), +(68,815,l), +(40,815,l), +(40,713,l) +); +} +); +width = 108; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (127,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,ls), +(256,0,o), +(339,70,o), +(339,206,cs), +(339,296,o), +(306,360,o), +(243,381,c), +(243,387,l), +(292,404,o), +(324,465,o), +(324,537,cs), +(324,654,o), +(272,729,o), +(130,729,cs), +(-85,729,l), +(-85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,-85,l), +(120,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(94,309,l), +(111,309,ls), +(142,309,o), +(162,285,o), +(162,225,cs), +(162,172,o), +(149,141,o), +(110,141,cs), +(94,141,l) +); +}, +{ +closed = 1; +nodes = ( +(94,591,l), +(111,591,ls), +(141,591,o), +(157,568,o), +(157,513,cs), +(157,465,o), +(146,433,o), +(111,433,cs), +(94,433,l) +); +}, +{ +closed = 1; +nodes = ( +(120,689,l), +(120,815,l), +(41,815,l), +(41,689,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,-85,l), +(120,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(120,689,l), +(120,815,l), +(41,815,l), +(41,689,l) +); +} +); +width = 160; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (113,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(176,0,ls), +(319,0,o), +(410,78,o), +(410,200,cs), +(410,285,o), +(361,356,o), +(264,374,c), +(264,377,l), +(352,397,o), +(391,464,o), +(391,543,cs), +(391,654,o), +(312,729,o), +(177,729,cs), +(-184,729,l), +(-184,0,l) +); +}, +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-146,356,l), +(194,356,ls), +(306,356,o), +(370,298,o), +(370,202,cs), +(370,104,o), +(304,36,o), +(176,36,cs), +(-146,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-146,694,l), +(176,694,ls), +(283,694,o), +(353,635,o), +(353,538,cs), +(353,450,o), +(297,391,o), +(192,391,cs), +(-146,391,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +} +); +width = 112; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (162,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(209,0,ls), +(420,0,o), +(504,86,o), +(504,206,cs), +(504,291,o), +(454,356,o), +(365,376,c), +(365,385,l), +(437,406,o), +(482,465,o), +(482,538,cs), +(482,667,o), +(389,729,o), +(222,729,cs), +(-181,729,l), +(-181,0,l) +); +}, +{ +closed = 1; +nodes = ( +(201,-85,l), +(201,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(47,298,l), +(163,298,ls), +(229,298,o), +(262,279,o), +(262,228,cs), +(262,184,o), +(237,155,o), +(164,155,cs), +(47,155,l) +); +}, +{ +closed = 1; +nodes = ( +(47,573,l), +(154,573,ls), +(221,573,o), +(240,549,o), +(240,511,cs), +(240,472,o), +(217,447,o), +(153,447,cs), +(47,447,l) +); +}, +{ +closed = 1; +nodes = ( +(201,689,l), +(201,815,l), +(41,815,l), +(41,689,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-85,l), +(201,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(201,689,l), +(201,815,l), +(41,815,l), +(41,689,l) +); +} +); +width = 241; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (67,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,ls), +(177,0,o), +(222,81,o), +(222,200,cs), +(222,279,o), +(192,355,o), +(127,374,c), +(127,376,l), +(173,392,o), +(209,456,o), +(209,543,cs), +(209,670,o), +(157,729,o), +(59,729,cs), +(-48,729,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(68,-85,l), +(68,12,l), +(40,12,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-17,359,l), +(69,359,ls), +(144,359,o), +(188,299,o), +(188,201,cs), +(188,77,o), +(144,29,o), +(58,29,cs), +(-17,29,l) +); +}, +{ +closed = 1; +nodes = ( +(-17,700,l), +(58,700,ls), +(146,700,o), +(178,635,o), +(178,539,cs), +(178,449,o), +(138,389,o), +(68,389,cs), +(-17,389,l) +); +}, +{ +closed = 1; +nodes = ( +(68,713,l), +(68,815,l), +(40,815,l), +(40,713,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(48,-85,l), +(48,12,l), +(20,12,l), +(20,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(48,713,l), +(48,815,l), +(20,815,l), +(20,713,l) +); +} +); +width = 68; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (117,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,ls), +(256,0,o), +(339,70,o), +(339,206,cs), +(339,296,o), +(306,360,o), +(243,381,c), +(243,387,l), +(292,404,o), +(324,465,o), +(324,537,cs), +(324,654,o), +(272,729,o), +(130,729,cs), +(-85,729,l), +(-85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,-85,l), +(120,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(94,309,l), +(111,309,ls), +(142,309,o), +(162,285,o), +(162,225,cs), +(162,172,o), +(149,141,o), +(110,141,cs), +(94,141,l) +); +}, +{ +closed = 1; +nodes = ( +(94,591,l), +(111,591,ls), +(141,591,o), +(157,568,o), +(157,513,cs), +(157,465,o), +(146,433,o), +(111,433,cs), +(94,433,l) +); +}, +{ +closed = 1; +nodes = ( +(120,689,l), +(120,815,l), +(41,815,l), +(41,689,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,-85,l), +(110,90,l), +(30,90,l), +(30,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(110,689,l), +(110,815,l), +(31,815,l), +(31,689,l) +); +} +); +width = 140; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (80,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,ls), +(268,0,o), +(359,78,o), +(359,200,cs), +(359,285,o), +(310,356,o), +(213,374,c), +(213,377,l), +(301,397,o), +(340,464,o), +(340,543,cs), +(340,654,o), +(261,729,o), +(126,729,cs), +(-159,729,l), +(-159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-121,356,l), +(143,356,ls), +(255,356,o), +(319,298,o), +(319,202,cs), +(319,104,o), +(253,36,o), +(125,36,cs), +(-121,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-121,694,l), +(125,694,ls), +(232,694,o), +(302,635,o), +(302,538,cs), +(302,450,o), +(246,391,o), +(141,391,cs), +(-121,391,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,-85,l), +(52,22,l), +(20,22,l), +(20,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(52,714,l), +(52,814,l), +(20,814,l), +(20,714,l) +); +} +); +width = 72; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (106,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(156,0,ls), +(344,0,o), +(433,85,o), +(433,212,cs), +(433,293,o), +(389,359,o), +(310,376,c), +(310,385,l), +(372,405,o), +(413,467,o), +(413,541,cs), +(413,654,o), +(340,729,o), +(185,729,cs), +(-179,729,l), +(-179,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,-85,l), +(150,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(18,299,l), +(132,299,ls), +(191,299,o), +(217,273,o), +(217,226,cs), +(217,179,o), +(191,153,o), +(132,153,cs), +(18,153,l) +); +}, +{ +closed = 1; +nodes = ( +(18,576,l), +(123,576,ls), +(169,576,o), +(199,555,o), +(199,511,cs), +(199,472,o), +(175,446,o), +(123,446,cs), +(18,446,l) +); +}, +{ +closed = 1; +nodes = ( +(150,689,l), +(150,815,l), +(41,815,l), +(41,689,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,-85,l), +(129,90,l), +(19,90,l), +(19,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(129,689,l), +(129,815,l), +(20,815,l), +(20,689,l) +); +} +); +width = 148; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (103,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(176,0,ls), +(319,0,o), +(410,78,o), +(410,200,cs), +(410,285,o), +(361,356,o), +(264,374,c), +(264,377,l), +(352,397,o), +(391,464,o), +(391,543,cs), +(391,654,o), +(312,729,o), +(177,729,cs), +(-184,729,l), +(-184,0,l) +); +}, +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-146,356,l), +(194,356,ls), +(306,356,o), +(370,298,o), +(370,202,cs), +(370,104,o), +(304,36,o), +(176,36,cs), +(-146,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-146,694,l), +(176,694,ls), +(283,694,o), +(353,635,o), +(353,538,cs), +(353,450,o), +(297,391,o), +(192,391,cs), +(-146,391,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,-85,l), +(62,22,l), +(30,22,l), +(30,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(62,714,l), +(62,814,l), +(30,814,l), +(30,714,l) +); +} +); +width = 92; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (152,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(209,0,ls), +(420,0,o), +(504,86,o), +(504,206,cs), +(504,291,o), +(454,356,o), +(365,376,c), +(365,385,l), +(437,406,o), +(482,465,o), +(482,538,cs), +(482,667,o), +(389,729,o), +(222,729,cs), +(-181,729,l), +(-181,0,l) +); +}, +{ +closed = 1; +nodes = ( +(201,-85,l), +(201,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(47,298,l), +(163,298,ls), +(229,298,o), +(262,279,o), +(262,228,cs), +(262,184,o), +(237,155,o), +(164,155,cs), +(47,155,l) +); +}, +{ +closed = 1; +nodes = ( +(47,573,l), +(154,573,ls), +(221,573,o), +(240,549,o), +(240,511,cs), +(240,472,o), +(217,447,o), +(153,447,cs), +(47,447,l) +); +}, +{ +closed = 1; +nodes = ( +(201,689,l), +(201,815,l), +(41,815,l), +(41,689,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-85,l), +(191,90,l), +(30,90,l), +(30,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(191,689,l), +(191,815,l), +(31,815,l), +(31,689,l) +); +} +); +width = 221; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (95,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,ls), +(268,0,o), +(359,78,o), +(359,200,cs), +(359,285,o), +(310,356,o), +(213,374,c), +(213,377,l), +(301,397,o), +(340,464,o), +(340,543,cs), +(340,654,o), +(261,729,o), +(126,729,cs), +(-159,729,l), +(-159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-121,356,l), +(143,356,ls), +(255,356,o), +(319,298,o), +(319,202,cs), +(319,104,o), +(253,36,o), +(125,36,cs), +(-121,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-121,694,l), +(125,694,ls), +(232,694,o), +(302,635,o), +(302,538,cs), +(302,450,o), +(246,391,o), +(141,391,cs), +(-121,391,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(67,-85,l), +(67,22,l), +(37,22,l), +(37,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(67,714,l), +(67,814,l), +(37,814,l), +(37,714,l) +); +} +); +width = 104; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (113,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(156,0,ls), +(344,0,o), +(433,85,o), +(433,212,cs), +(433,293,o), +(389,359,o), +(310,376,c), +(310,385,l), +(372,405,o), +(413,467,o), +(413,541,cs), +(413,654,o), +(340,729,o), +(185,729,cs), +(-179,729,l), +(-179,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,-85,l), +(150,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(18,299,l), +(132,299,ls), +(191,299,o), +(217,273,o), +(217,226,cs), +(217,179,o), +(191,153,o), +(132,153,cs), +(18,153,l) +); +}, +{ +closed = 1; +nodes = ( +(18,576,l), +(123,576,ls), +(169,576,o), +(199,555,o), +(199,511,cs), +(199,472,o), +(175,446,o), +(123,446,cs), +(18,446,l) +); +}, +{ +closed = 1; +nodes = ( +(150,689,l), +(150,815,l), +(41,815,l), +(41,689,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(142,-85,l), +(142,90,l), +(35,90,l), +(35,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(142,689,l), +(142,815,l), +(36,815,l), +(36,689,l) +); +} +); +width = 176; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (86,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(5,0,ls), +(137,0,o), +(207,89,o), +(212,240,cs), +(214,301,o), +(190,351,o), +(147,369,c), +(147,372,l), +(220,397,o), +(269,485,o), +(273,587,cs), +(276,672,o), +(235,729,o), +(146,729,cs), +(51,729,l), +(-101,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-3,-85,l), +(17,12,l), +(-11,12,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(4,359,l), +(79,359,ls), +(148,359,o), +(182,315,o), +(180,242,cs), +(175,106,o), +(114,29,o), +(11,29,cs), +(-64,29,l) +); +}, +{ +closed = 1; +nodes = ( +(75,700,l), +(140,700,ls), +(204,700,o), +(244,668,o), +(241,588,cs), +(237,479,o), +(184,389,o), +(96,389,cs), +(12,389,l) +); +}, +{ +closed = 1; +nodes = ( +(162,713,l), +(183,815,l), +(155,815,l), +(134,713,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-85,l), +(17,12,l), +(-11,12,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(162,713,l), +(183,815,l), +(155,815,l), +(134,713,l) +); +} +); +width = 108; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (123,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(61,0,ls), +(230,0,o), +(326,95,o), +(331,247,cs), +(333,303,o), +(314,353,o), +(268,375,c), +(270,380,l), +(334,401,o), +(383,474,o), +(386,569,cs), +(389,661,o), +(344,729,o), +(212,729,cs), +(12,729,l), +(-140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(47,-85,l), +(83,90,l), +(3,90,l), +(-33,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(104,309,l), +(118,309,ls), +(147,309,o), +(160,289,o), +(158,253,cs), +(156,189,o), +(127,141,o), +(86,141,cs), +(67,141,l) +); +}, +{ +closed = 1; +nodes = ( +(162,590,l), +(177,590,ls), +(201,590,o), +(216,572,o), +(215,538,cs), +(213,482,o), +(184,433,o), +(145,433,cs), +(128,433,l) +); +}, +{ +closed = 1; +nodes = ( +(207,689,l), +(233,815,l), +(154,815,l), +(128,689,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(47,-85,l), +(83,90,l), +(3,90,l), +(-33,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(207,689,l), +(233,815,l), +(154,815,l), +(128,689,l) +); +} +); +width = 161; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (94,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(78,0,ls), +(246,0,o), +(345,79,o), +(349,215,cs), +(352,291,o), +(312,356,o), +(242,371,c), +(242,374,l), +(333,393,o), +(402,468,o), +(405,566,cs), +(409,664,o), +(347,729,o), +(232,729,cs), +(-66,729,l), +(-217,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1,-85,l), +(23,22,l), +(-9,22,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-106,356,l), +(168,356,ls), +(263,356,o), +(313,299,o), +(310,216,cs), +(306,102,o), +(224,36,o), +(84,36,cs), +(-173,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-36,694,l), +(222,694,ls), +(311,694,o), +(367,650,o), +(363,559,cs), +(360,456,o), +(282,391,o), +(175,391,cs), +(-97,391,l) +); +}, +{ +closed = 1; +nodes = ( +(166,714,l), +(187,814,l), +(155,814,l), +(134,714,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(1,-85,l), +(23,22,l), +(-9,22,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(166,714,l), +(187,814,l), +(155,814,l), +(134,714,l) +); +} +); +width = 112; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (127,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(139,0,ls), +(313,0,o), +(431,72,o), +(436,224,cs), +(439,296,o), +(403,355,o), +(349,370,c), +(351,379,l), +(418,398,o), +(477,464,o), +(480,555,cs), +(484,657,o), +(419,729,o), +(265,729,cs), +(-75,729,l), +(-226,0,l) +); +}, +{ +closed = 1; +nodes = ( +(76,-85,l), +(112,90,l), +(2,90,l), +(-34,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(32,300,l), +(164,300,ls), +(203,300,o), +(233,282,o), +(232,236,cs), +(230,182,o), +(195,153,o), +(137,153,cs), +(1,153,l) +); +}, +{ +closed = 1; +nodes = ( +(90,576,l), +(213,576,ls), +(253,576,o), +(276,557,o), +(274,522,cs), +(273,472,o), +(238,445,o), +(184,445,cs), +(63,445,l) +); +}, +{ +closed = 1; +nodes = ( +(236,689,l), +(262,815,l), +(153,815,l), +(127,689,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,-85,l), +(112,90,l), +(2,90,l), +(-34,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(236,689,l), +(262,815,l), +(153,815,l), +(127,689,l) +); +} +); +width = 190; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (91,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,ls), +(289,0,o), +(389,83,o), +(394,221,cs), +(397,295,o), +(351,357,o), +(283,372,c), +(283,375,l), +(377,395,o), +(444,468,o), +(448,564,cs), +(451,669,o), +(389,729,o), +(253,729,cs), +(-115,729,l), +(-266,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1,-85,l), +(23,22,l), +(-9,22,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-155,356,l), +(201,356,ls), +(306,356,o), +(357,307,o), +(354,219,cs), +(350,104,o), +(266,36,o), +(125,36,cs), +(-221,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-83,694,l), +(246,694,ls), +(355,694,o), +(411,647,o), +(408,562,cs), +(404,456,o), +(329,391,o), +(199,391,cs), +(-146,391,l) +); +}, +{ +closed = 1; +nodes = ( +(166,714,l), +(187,814,l), +(155,814,l), +(134,714,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(1,-85,l), +(23,22,l), +(-9,22,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(166,714,l), +(187,814,l), +(155,814,l), +(134,714,l) +); +} +); +width = 112; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (158,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,0,ls), +(395,0,o), +(508,80,o), +(508,231,cs), +(508,303,o), +(469,354,o), +(402,372,c), +(403,381,l), +(498,397,o), +(556,465,o), +(556,564,cs), +(556,666,o), +(489,729,o), +(318,729,cs), +(-88,729,l), +(-240,0,l) +); +}, +{ +closed = 1; +nodes = ( +(127,-85,l), +(163,90,l), +(2,90,l), +(-34,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(50,297,l), +(193,297,ls), +(247,297,o), +(280,281,o), +(280,238,cs), +(280,181,o), +(243,155,o), +(166,155,cs), +(20,155,l) +); +}, +{ +closed = 1; +nodes = ( +(107,573,l), +(243,573,ls), +(291,573,o), +(319,558,o), +(319,520,cs), +(319,472,o), +(285,446,o), +(221,446,cs), +(82,446,l) +); +}, +{ +closed = 1; +nodes = ( +(287,689,l), +(313,815,l), +(153,815,l), +(127,689,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(127,-85,l), +(163,90,l), +(2,90,l), +(-34,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(287,689,l), +(313,815,l), +(153,815,l), +(127,689,l) +); +} +); +width = 241; +} +); +metricLeft = "=40"; +metricRight = "=40"; +script = ""; +userData = { +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_bitcoin.bars.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_bitcoin.bars.glyph new file mode 100644 index 00000000..2fd792ea --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_bitcoin.bars.glyph @@ -0,0 +1,2654 @@ +{ +export = 0; +glyphname = _bitcoin.bars; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (187,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(172,0,ls), +(316,0,o), +(399,70,o), +(399,206,cs), +(399,296,o), +(366,360,o), +(303,381,c), +(303,387,l), +(352,404,o), +(384,465,o), +(384,537,cs), +(384,654,o), +(332,729,o), +(190,729,cs), +(-25,729,l), +(-25,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,-85,l), +(120,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(250,-85,l), +(250,90,l), +(170,90,l), +(170,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(154,309,l), +(171,309,ls), +(202,309,o), +(222,285,o), +(222,225,cs), +(222,172,o), +(209,141,o), +(170,141,cs), +(154,141,l) +); +}, +{ +closed = 1; +nodes = ( +(154,591,l), +(171,591,ls), +(201,591,o), +(217,568,o), +(217,513,cs), +(217,465,o), +(206,433,o), +(171,433,cs), +(154,433,l) +); +}, +{ +closed = 1; +nodes = ( +(120,689,l), +(120,815,l), +(41,815,l), +(41,689,l) +); +}, +{ +closed = 1; +nodes = ( +(250,689,l), +(250,815,l), +(171,815,l), +(171,689,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,-85,l), +(120,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(250,-85,l), +(250,90,l), +(170,90,l), +(170,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(120,689,l), +(120,815,l), +(41,815,l), +(41,689,l) +); +}, +{ +closed = 1; +nodes = ( +(250,689,l), +(250,815,l), +(171,815,l), +(171,689,l) +); +} +); +width = 290; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (127,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(98,0,ls), +(217,0,o), +(262,81,o), +(262,200,cs), +(262,279,o), +(232,355,o), +(167,374,c), +(167,376,l), +(213,392,o), +(249,456,o), +(249,543,cs), +(249,670,o), +(197,729,o), +(99,729,cs), +(-8,729,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(68,-85,l), +(68,12,l), +(40,12,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(145,-85,l), +(145,12,l), +(117,12,l), +(117,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(23,359,l), +(109,359,ls), +(184,359,o), +(228,299,o), +(228,201,cs), +(228,77,o), +(184,29,o), +(98,29,cs), +(23,29,l) +); +}, +{ +closed = 1; +nodes = ( +(23,700,l), +(98,700,ls), +(186,700,o), +(218,635,o), +(218,539,cs), +(218,449,o), +(178,389,o), +(108,389,cs), +(23,389,l) +); +}, +{ +closed = 1; +nodes = ( +(68,713,l), +(68,815,l), +(40,815,l), +(40,713,l) +); +}, +{ +closed = 1; +nodes = ( +(145,713,l), +(145,815,l), +(117,815,l), +(117,713,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(68,-85,l), +(68,12,l), +(40,12,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(145,-85,l), +(145,12,l), +(117,12,l), +(117,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(68,713,l), +(68,815,l), +(40,815,l), +(40,713,l) +); +}, +{ +closed = 1; +nodes = ( +(145,713,l), +(145,815,l), +(117,815,l), +(117,713,l) +); +} +); +width = 185; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (183,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(246,0,ls), +(389,0,o), +(480,78,o), +(480,200,cs), +(480,285,o), +(431,356,o), +(334,374,c), +(334,377,l), +(422,397,o), +(461,464,o), +(461,543,cs), +(461,654,o), +(382,729,o), +(247,729,cs), +(-114,729,l), +(-114,0,l) +); +}, +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(226,-85,l), +(226,22,l), +(194,22,l), +(194,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-76,356,l), +(264,356,ls), +(376,356,o), +(440,298,o), +(440,202,cs), +(440,104,o), +(374,36,o), +(246,36,cs), +(-76,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-76,694,l), +(246,694,ls), +(353,694,o), +(423,635,o), +(423,538,cs), +(423,450,o), +(367,391,o), +(262,391,cs), +(-76,391,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +}, +{ +closed = 1; +nodes = ( +(226,714,l), +(226,814,l), +(194,814,l), +(194,714,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(226,-85,l), +(226,22,l), +(194,22,l), +(194,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +}, +{ +closed = 1; +nodes = ( +(226,714,l), +(226,814,l), +(194,814,l), +(194,714,l) +); +} +); +width = 266; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (282,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,0,ls), +(540,0,o), +(624,86,o), +(624,206,cs), +(624,291,o), +(574,356,o), +(485,376,c), +(485,385,l), +(557,406,o), +(602,465,o), +(602,538,cs), +(602,667,o), +(509,729,o), +(342,729,cs), +(-61,729,l), +(-61,0,l) +); +}, +{ +closed = 1; +nodes = ( +(201,-85,l), +(201,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(431,-85,l), +(431,90,l), +(270,90,l), +(270,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(167,298,l), +(283,298,ls), +(349,298,o), +(382,279,o), +(382,228,cs), +(382,184,o), +(357,155,o), +(284,155,cs), +(167,155,l) +); +}, +{ +closed = 1; +nodes = ( +(167,573,l), +(274,573,ls), +(341,573,o), +(360,549,o), +(360,511,cs), +(360,472,o), +(337,447,o), +(273,447,cs), +(167,447,l) +); +}, +{ +closed = 1; +nodes = ( +(201,689,l), +(201,815,l), +(41,815,l), +(41,689,l) +); +}, +{ +closed = 1; +nodes = ( +(431,689,l), +(431,815,l), +(271,815,l), +(271,689,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-85,l), +(201,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(431,-85,l), +(431,90,l), +(270,90,l), +(270,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(201,689,l), +(201,815,l), +(41,815,l), +(41,689,l) +); +}, +{ +closed = 1; +nodes = ( +(431,689,l), +(431,815,l), +(271,815,l), +(271,689,l) +); +} +); +width = 471; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (107,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(98,0,ls), +(217,0,o), +(262,81,o), +(262,200,cs), +(262,279,o), +(232,355,o), +(167,374,c), +(167,376,l), +(213,392,o), +(249,456,o), +(249,543,cs), +(249,670,o), +(197,729,o), +(99,729,cs), +(-8,729,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(68,-85,l), +(68,12,l), +(40,12,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(145,-85,l), +(145,12,l), +(117,12,l), +(117,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(23,359,l), +(109,359,ls), +(184,359,o), +(228,299,o), +(228,201,cs), +(228,77,o), +(184,29,o), +(98,29,cs), +(23,29,l) +); +}, +{ +closed = 1; +nodes = ( +(23,700,l), +(98,700,ls), +(186,700,o), +(218,635,o), +(218,539,cs), +(218,449,o), +(178,389,o), +(108,389,cs), +(23,389,l) +); +}, +{ +closed = 1; +nodes = ( +(68,713,l), +(68,815,l), +(40,815,l), +(40,713,l) +); +}, +{ +closed = 1; +nodes = ( +(145,713,l), +(145,815,l), +(117,815,l), +(117,713,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(48,-85,l), +(48,12,l), +(20,12,l), +(20,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(125,-85,l), +(125,12,l), +(97,12,l), +(97,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(48,713,l), +(48,815,l), +(20,815,l), +(20,713,l) +); +}, +{ +closed = 1; +nodes = ( +(125,713,l), +(125,815,l), +(97,815,l), +(97,713,l) +); +} +); +width = 145; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(172,0,ls), +(316,0,o), +(399,70,o), +(399,206,cs), +(399,296,o), +(366,360,o), +(303,381,c), +(303,387,l), +(352,404,o), +(384,465,o), +(384,537,cs), +(384,654,o), +(332,729,o), +(190,729,cs), +(-25,729,l), +(-25,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,-85,l), +(120,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(250,-85,l), +(250,90,l), +(170,90,l), +(170,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(154,309,l), +(171,309,ls), +(202,309,o), +(222,285,o), +(222,225,cs), +(222,172,o), +(209,141,o), +(170,141,cs), +(154,141,l) +); +}, +{ +closed = 1; +nodes = ( +(154,591,l), +(171,591,ls), +(201,591,o), +(217,568,o), +(217,513,cs), +(217,465,o), +(206,433,o), +(171,433,cs), +(154,433,l) +); +}, +{ +closed = 1; +nodes = ( +(120,689,l), +(120,815,l), +(41,815,l), +(41,689,l) +); +}, +{ +closed = 1; +nodes = ( +(250,689,l), +(250,815,l), +(171,815,l), +(171,689,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,-85,l), +(110,90,l), +(30,90,l), +(30,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(240,-85,l), +(240,90,l), +(160,90,l), +(160,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(110,689,l), +(110,815,l), +(31,815,l), +(31,689,l) +); +}, +{ +closed = 1; +nodes = ( +(240,689,l), +(240,815,l), +(161,815,l), +(161,689,l) +); +} +); +width = 270; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (154,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(199,0,ls), +(342,0,o), +(433,78,o), +(433,200,cs), +(433,285,o), +(384,356,o), +(287,374,c), +(287,377,l), +(375,397,o), +(414,464,o), +(414,543,cs), +(414,654,o), +(335,729,o), +(200,729,cs), +(-85,729,l), +(-85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(222,-85,l), +(222,22,l), +(190,22,l), +(190,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-47,356,l), +(217,356,ls), +(329,356,o), +(393,298,o), +(393,202,cs), +(393,104,o), +(327,36,o), +(199,36,cs), +(-47,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-47,694,l), +(199,694,ls), +(306,694,o), +(376,635,o), +(376,538,cs), +(376,450,o), +(320,391,o), +(215,391,cs), +(-47,391,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +}, +{ +closed = 1; +nodes = ( +(222,714,l), +(222,814,l), +(190,814,l), +(190,714,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,-85,l), +(52,22,l), +(20,22,l), +(20,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(202,-85,l), +(202,22,l), +(170,22,l), +(170,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(52,714,l), +(52,814,l), +(20,814,l), +(20,714,l) +); +}, +{ +closed = 1; +nodes = ( +(202,714,l), +(202,814,l), +(170,814,l), +(170,714,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 222; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (206,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(256,0,ls), +(444,0,o), +(533,85,o), +(533,212,cs), +(533,293,o), +(489,359,o), +(410,376,c), +(410,385,l), +(472,405,o), +(513,467,o), +(513,541,cs), +(513,654,o), +(440,729,o), +(285,729,cs), +(-79,729,l), +(-79,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,-85,l), +(150,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(329,-85,l), +(329,90,l), +(219,90,l), +(219,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(118,299,l), +(232,299,ls), +(291,299,o), +(317,273,o), +(317,226,cs), +(317,179,o), +(291,153,o), +(232,153,cs), +(118,153,l) +); +}, +{ +closed = 1; +nodes = ( +(118,576,l), +(223,576,ls), +(269,576,o), +(299,555,o), +(299,511,cs), +(299,472,o), +(275,446,o), +(223,446,cs), +(118,446,l) +); +}, +{ +closed = 1; +nodes = ( +(150,689,l), +(150,815,l), +(41,815,l), +(41,689,l) +); +}, +{ +closed = 1; +nodes = ( +(329,689,l), +(329,815,l), +(220,815,l), +(220,689,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,-85,l), +(129,90,l), +(19,90,l), +(19,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(308,-85,l), +(308,90,l), +(198,90,l), +(198,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(129,689,l), +(129,815,l), +(20,815,l), +(20,689,l) +); +}, +{ +closed = 1; +nodes = ( +(308,689,l), +(308,815,l), +(199,815,l), +(199,689,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +}; +width = 327; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (173,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(246,0,ls), +(389,0,o), +(480,78,o), +(480,200,cs), +(480,285,o), +(431,356,o), +(334,374,c), +(334,377,l), +(422,397,o), +(461,464,o), +(461,543,cs), +(461,654,o), +(382,729,o), +(247,729,cs), +(-114,729,l), +(-114,0,l) +); +}, +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(226,-85,l), +(226,22,l), +(194,22,l), +(194,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-76,356,l), +(264,356,ls), +(376,356,o), +(440,298,o), +(440,202,cs), +(440,104,o), +(374,36,o), +(246,36,cs), +(-76,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-76,694,l), +(246,694,ls), +(353,694,o), +(423,635,o), +(423,538,cs), +(423,450,o), +(367,391,o), +(262,391,cs), +(-76,391,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +}, +{ +closed = 1; +nodes = ( +(226,714,l), +(226,814,l), +(194,814,l), +(194,714,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,-85,l), +(62,22,l), +(30,22,l), +(30,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(216,-85,l), +(216,22,l), +(184,22,l), +(184,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(62,714,l), +(62,814,l), +(30,814,l), +(30,714,l) +); +}, +{ +closed = 1; +nodes = ( +(216,714,l), +(216,814,l), +(184,814,l), +(184,714,l) +); +} +); +width = 246; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (272,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,0,ls), +(540,0,o), +(624,86,o), +(624,206,cs), +(624,291,o), +(574,356,o), +(485,376,c), +(485,385,l), +(557,406,o), +(602,465,o), +(602,538,cs), +(602,667,o), +(509,729,o), +(342,729,cs), +(-61,729,l), +(-61,0,l) +); +}, +{ +closed = 1; +nodes = ( +(201,-85,l), +(201,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(431,-85,l), +(431,90,l), +(270,90,l), +(270,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(167,298,l), +(283,298,ls), +(349,298,o), +(382,279,o), +(382,228,cs), +(382,184,o), +(357,155,o), +(284,155,cs), +(167,155,l) +); +}, +{ +closed = 1; +nodes = ( +(167,573,l), +(274,573,ls), +(341,573,o), +(360,549,o), +(360,511,cs), +(360,472,o), +(337,447,o), +(273,447,cs), +(167,447,l) +); +}, +{ +closed = 1; +nodes = ( +(201,689,l), +(201,815,l), +(41,815,l), +(41,689,l) +); +}, +{ +closed = 1; +nodes = ( +(431,689,l), +(431,815,l), +(271,815,l), +(271,689,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-85,l), +(191,90,l), +(30,90,l), +(30,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(421,-85,l), +(421,90,l), +(260,90,l), +(260,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(191,689,l), +(191,815,l), +(31,815,l), +(31,689,l) +); +}, +{ +closed = 1; +nodes = ( +(421,689,l), +(421,815,l), +(261,815,l), +(261,689,l) +); +} +); +width = 451; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (167,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(199,0,ls), +(342,0,o), +(433,78,o), +(433,200,cs), +(433,285,o), +(384,356,o), +(287,374,c), +(287,377,l), +(375,397,o), +(414,464,o), +(414,543,cs), +(414,654,o), +(335,729,o), +(200,729,cs), +(-85,729,l), +(-85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(72,-85,l), +(72,22,l), +(40,22,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(222,-85,l), +(222,22,l), +(190,22,l), +(190,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-47,356,l), +(217,356,ls), +(329,356,o), +(393,298,o), +(393,202,cs), +(393,104,o), +(327,36,o), +(199,36,cs), +(-47,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-47,694,l), +(199,694,ls), +(306,694,o), +(376,635,o), +(376,538,cs), +(376,450,o), +(320,391,o), +(215,391,cs), +(-47,391,l) +); +}, +{ +closed = 1; +nodes = ( +(72,714,l), +(72,814,l), +(40,814,l), +(40,714,l) +); +}, +{ +closed = 1; +nodes = ( +(222,714,l), +(222,814,l), +(190,814,l), +(190,714,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(67,-85,l), +(67,22,l), +(37,22,l), +(37,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(215,-85,l), +(215,22,l), +(183,22,l), +(183,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(67,714,l), +(67,814,l), +(37,814,l), +(37,714,l) +); +}, +{ +closed = 1; +nodes = ( +(215,714,l), +(215,814,l), +(183,814,l), +(183,714,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 251; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (212,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(256,0,ls), +(444,0,o), +(533,85,o), +(533,212,cs), +(533,293,o), +(489,359,o), +(410,376,c), +(410,385,l), +(472,405,o), +(513,467,o), +(513,541,cs), +(513,654,o), +(440,729,o), +(285,729,cs), +(-79,729,l), +(-79,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,-85,l), +(150,90,l), +(40,90,l), +(40,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(329,-85,l), +(329,90,l), +(219,90,l), +(219,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(118,299,l), +(232,299,ls), +(291,299,o), +(317,273,o), +(317,226,cs), +(317,179,o), +(291,153,o), +(232,153,cs), +(118,153,l) +); +}, +{ +closed = 1; +nodes = ( +(118,576,l), +(223,576,ls), +(269,576,o), +(299,555,o), +(299,511,cs), +(299,472,o), +(275,446,o), +(223,446,cs), +(118,446,l) +); +}, +{ +closed = 1; +nodes = ( +(150,689,l), +(150,815,l), +(41,815,l), +(41,689,l) +); +}, +{ +closed = 1; +nodes = ( +(329,689,l), +(329,815,l), +(220,815,l), +(220,689,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-85,l), +(143,90,l), +(35,90,l), +(35,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(311,-85,l), +(311,90,l), +(203,90,l), +(203,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(143,689,l), +(143,815,l), +(36,815,l), +(36,689,l) +); +}, +{ +closed = 1; +nodes = ( +(311,689,l), +(311,815,l), +(204,815,l), +(204,689,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +}; +width = 346; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (126,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(45,0,ls), +(177,0,o), +(247,89,o), +(252,240,cs), +(254,301,o), +(230,351,o), +(187,369,c), +(187,372,l), +(260,397,o), +(309,485,o), +(313,587,cs), +(316,672,o), +(275,729,o), +(186,729,cs), +(91,729,l), +(-61,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-3,-85,l), +(17,12,l), +(-11,12,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(74,-85,l), +(94,12,l), +(66,12,l), +(46,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(44,359,l), +(119,359,ls), +(188,359,o), +(222,315,o), +(220,242,cs), +(215,106,o), +(154,29,o), +(51,29,cs), +(-24,29,l) +); +}, +{ +closed = 1; +nodes = ( +(115,700,l), +(180,700,ls), +(244,700,o), +(284,668,o), +(281,588,cs), +(277,479,o), +(224,389,o), +(136,389,cs), +(52,389,l) +); +}, +{ +closed = 1; +nodes = ( +(162,713,l), +(183,815,l), +(155,815,l), +(134,713,l) +); +}, +{ +closed = 1; +nodes = ( +(239,713,l), +(260,815,l), +(232,815,l), +(211,713,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-85,l), +(17,12,l), +(-11,12,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(74,-85,l), +(94,12,l), +(66,12,l), +(46,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(162,713,l), +(183,815,l), +(155,815,l), +(134,713,l) +); +}, +{ +closed = 1; +nodes = ( +(239,713,l), +(260,815,l), +(232,815,l), +(211,713,l) +); +} +); +width = 185; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (183,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,ls), +(290,0,o), +(386,95,o), +(391,247,cs), +(393,303,o), +(374,353,o), +(328,375,c), +(330,380,l), +(394,401,o), +(443,474,o), +(446,569,cs), +(449,661,o), +(404,729,o), +(272,729,cs), +(72,729,l), +(-80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(47,-85,l), +(83,90,l), +(3,90,l), +(-33,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(177,-85,l), +(213,90,l), +(133,90,l), +(97,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(164,309,l), +(178,309,ls), +(207,309,o), +(220,289,o), +(218,253,cs), +(216,189,o), +(187,141,o), +(146,141,cs), +(127,141,l) +); +}, +{ +closed = 1; +nodes = ( +(222,590,l), +(237,590,ls), +(261,590,o), +(276,572,o), +(275,538,cs), +(273,482,o), +(244,433,o), +(205,433,cs), +(188,433,l) +); +}, +{ +closed = 1; +nodes = ( +(207,689,l), +(233,815,l), +(154,815,l), +(128,689,l) +); +}, +{ +closed = 1; +nodes = ( +(337,689,l), +(363,815,l), +(284,815,l), +(258,689,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(47,-85,l), +(83,90,l), +(3,90,l), +(-33,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(177,-85,l), +(213,90,l), +(133,90,l), +(97,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(207,689,l), +(233,815,l), +(154,815,l), +(128,689,l) +); +}, +{ +closed = 1; +nodes = ( +(337,689,l), +(363,815,l), +(284,815,l), +(258,689,l) +); +} +); +width = 291; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (174,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(158,0,ls), +(326,0,o), +(425,79,o), +(429,215,cs), +(432,291,o), +(392,356,o), +(322,371,c), +(322,374,l), +(413,393,o), +(482,468,o), +(485,566,cs), +(489,664,o), +(427,729,o), +(312,729,cs), +(14,729,l), +(-137,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1,-85,l), +(23,22,l), +(-9,22,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(141,-85,l), +(163,22,l), +(131,22,l), +(109,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-26,356,l), +(248,356,ls), +(343,356,o), +(393,299,o), +(390,216,cs), +(386,102,o), +(304,36,o), +(164,36,cs), +(-93,36,l) +); +}, +{ +closed = 1; +nodes = ( +(44,694,l), +(302,694,ls), +(391,694,o), +(447,650,o), +(443,559,cs), +(440,456,o), +(362,391,o), +(255,391,cs), +(-17,391,l) +); +}, +{ +closed = 1; +nodes = ( +(166,714,l), +(187,814,l), +(155,814,l), +(134,714,l) +); +}, +{ +closed = 1; +nodes = ( +(306,714,l), +(327,814,l), +(295,814,l), +(274,714,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(1,-85,l), +(23,22,l), +(-9,22,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(141,-85,l), +(163,22,l), +(131,22,l), +(109,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(166,714,l), +(187,814,l), +(155,814,l), +(134,714,l) +); +}, +{ +closed = 1; +nodes = ( +(306,714,l), +(327,814,l), +(295,814,l), +(274,714,l) +); +} +); +width = 252; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (227,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(239,0,ls), +(413,0,o), +(531,72,o), +(536,224,cs), +(539,296,o), +(503,355,o), +(449,370,c), +(451,379,l), +(518,398,o), +(577,464,o), +(580,555,cs), +(584,657,o), +(519,729,o), +(365,729,cs), +(25,729,l), +(-126,0,l) +); +}, +{ +closed = 1; +nodes = ( +(76,-85,l), +(112,90,l), +(2,90,l), +(-34,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(255,-85,l), +(291,90,l), +(181,90,l), +(145,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(132,300,l), +(264,300,ls), +(303,300,o), +(333,282,o), +(332,236,cs), +(330,182,o), +(295,153,o), +(237,153,cs), +(101,153,l) +); +}, +{ +closed = 1; +nodes = ( +(190,576,l), +(313,576,ls), +(353,576,o), +(376,557,o), +(374,522,cs), +(373,472,o), +(338,445,o), +(284,445,cs), +(163,445,l) +); +}, +{ +closed = 1; +nodes = ( +(236,689,l), +(262,815,l), +(153,815,l), +(127,689,l) +); +}, +{ +closed = 1; +nodes = ( +(415,689,l), +(441,815,l), +(332,815,l), +(306,689,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,-85,l), +(112,90,l), +(2,90,l), +(-34,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(255,-85,l), +(291,90,l), +(181,90,l), +(145,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(236,689,l), +(262,815,l), +(153,815,l), +(127,689,l) +); +}, +{ +closed = 1; +nodes = ( +(415,689,l), +(441,815,l), +(332,815,l), +(306,689,l) +); +} +); +width = 369; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (191,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,ls), +(389,0,o), +(489,83,o), +(494,221,cs), +(497,295,o), +(451,357,o), +(383,372,c), +(383,375,l), +(477,395,o), +(544,468,o), +(548,564,cs), +(551,669,o), +(489,729,o), +(353,729,cs), +(-15,729,l), +(-166,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1,-85,l), +(23,22,l), +(-9,22,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(165,-85,l), +(187,22,l), +(155,22,l), +(133,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(-55,356,l), +(301,356,ls), +(406,356,o), +(457,307,o), +(454,219,cs), +(450,104,o), +(366,36,o), +(225,36,cs), +(-121,36,l) +); +}, +{ +closed = 1; +nodes = ( +(17,694,l), +(346,694,ls), +(455,694,o), +(511,647,o), +(508,562,cs), +(504,456,o), +(429,391,o), +(299,391,cs), +(-46,391,l) +); +}, +{ +closed = 1; +nodes = ( +(166,714,l), +(187,814,l), +(155,814,l), +(134,714,l) +); +}, +{ +closed = 1; +nodes = ( +(330,714,l), +(351,814,l), +(319,814,l), +(298,714,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(1,-85,l), +(23,22,l), +(-9,22,l), +(-31,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(165,-85,l), +(187,22,l), +(155,22,l), +(133,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(166,714,l), +(187,814,l), +(155,814,l), +(134,714,l) +); +}, +{ +closed = 1; +nodes = ( +(330,714,l), +(351,814,l), +(319,814,l), +(298,714,l) +); +} +); +width = 276; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (278,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,ls), +(512,0,o), +(623,77,o), +(628,223,cs), +(631,299,o), +(592,353,o), +(522,372,c), +(523,381,l), +(616,397,o), +(672,462,o), +(676,557,cs), +(679,663,o), +(613,729,o), +(438,729,cs), +(32,729,l), +(-120,0,l) +); +}, +{ +closed = 1; +nodes = ( +(127,-85,l), +(163,90,l), +(2,90,l), +(-34,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(357,-85,l), +(393,90,l), +(232,90,l), +(196,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(170,297,l), +(313,297,ls), +(369,297,o), +(402,280,o), +(400,234,cs), +(398,180,o), +(361,155,o), +(286,155,cs), +(140,155,l) +); +}, +{ +closed = 1; +nodes = ( +(227,573,l), +(363,573,ls), +(412,573,o), +(440,557,o), +(439,518,cs), +(437,471,o), +(404,446,o), +(341,446,cs), +(202,446,l) +); +}, +{ +closed = 1; +nodes = ( +(287,689,l), +(313,815,l), +(153,815,l), +(127,689,l) +); +}, +{ +closed = 1; +nodes = ( +(517,689,l), +(543,815,l), +(383,815,l), +(357,689,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(127,-85,l), +(163,90,l), +(2,90,l), +(-34,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(357,-85,l), +(393,90,l), +(232,90,l), +(196,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(287,689,l), +(313,815,l), +(153,815,l), +(127,689,l) +); +}, +{ +closed = 1; +nodes = ( +(517,689,l), +(543,815,l), +(383,815,l), +(357,689,l) +); +} +); +width = 471; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_circle.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_circle.glyph new file mode 100644 index 00000000..8e3f2897 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_circle.glyph @@ -0,0 +1,954 @@ +{ +export = 0; +glyphname = _circle; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +} +); +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(550,-7,o), +(678,127,o), +(678,366,cs), +(678,605,o), +(550,739,o), +(359,739,cs), +(168,739,o), +(40,605,o), +(40,366,cs), +(40,127,o), +(168,-7,o), +(359,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(185,52,o), +(103,178,o), +(103,366,cs), +(103,554,o), +(185,680,o), +(359,680,cs), +(533,680,o), +(615,554,o), +(615,366,cs), +(615,179,o), +(533,52,o), +(359,52,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +} +); +width = 706; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(668,-10,o), +(826,140,o), +(826,365,cs), +(826,589,o), +(668,739,o), +(434,739,cs), +(200,739,o), +(42,589,o), +(42,365,cs), +(42,140,o), +(200,-10,o), +(434,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,60,o), +(117,182,o), +(117,365,cs), +(117,547,o), +(244,669,o), +(434,669,cs), +(624,669,o), +(751,547,o), +(751,365,cs), +(751,182,o), +(624,60,o), +(434,60,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(661,-11,o), +(822,135,o), +(822,364,cs), +(822,593,o), +(661,739,o), +(432,739,cs), +(204,739,o), +(42,593,o), +(42,364,cs), +(42,135,o), +(204,-11,o), +(432,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(252,67,o), +(124,181,o), +(124,364,cs), +(124,547,o), +(252,661,o), +(432,661,cs), +(613,661,o), +(740,547,o), +(740,364,cs), +(740,181,o), +(613,67,o), +(432,67,cs) +); +} +); +width = 872; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +} +); +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(550,-7,o), +(678,127,o), +(678,366,cs), +(678,605,o), +(550,739,o), +(359,739,cs), +(168,739,o), +(40,605,o), +(40,366,cs), +(40,127,o), +(168,-7,o), +(359,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(185,52,o), +(103,178,o), +(103,366,cs), +(103,554,o), +(185,680,o), +(359,680,cs), +(533,680,o), +(615,554,o), +(615,366,cs), +(615,179,o), +(533,52,o), +(359,52,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +} +); +width = 706; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +} +); +width = 871; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(650,-9,o), +(812,141,o), +(812,365,cs), +(812,589,o), +(650,739,o), +(426,739,cs), +(202,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(202,-9,o), +(426,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,62,o), +(118,183,o), +(118,365,cs), +(118,547,o), +(242,668,o), +(426,668,cs), +(610,668,o), +(734,547,o), +(734,365,cs), +(734,183,o), +(610,62,o), +(426,62,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +} +); +width = 855; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(668,-10,o), +(826,140,o), +(826,365,cs), +(826,589,o), +(668,739,o), +(434,739,cs), +(200,739,o), +(42,589,o), +(42,365,cs), +(42,140,o), +(200,-10,o), +(434,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,60,o), +(117,182,o), +(117,365,cs), +(117,547,o), +(244,669,o), +(434,669,cs), +(624,669,o), +(751,547,o), +(751,365,cs), +(751,182,o), +(624,60,o), +(434,60,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(661,-11,o), +(822,135,o), +(822,364,cs), +(822,593,o), +(661,739,o), +(432,739,cs), +(204,739,o), +(42,593,o), +(42,364,cs), +(42,135,o), +(204,-11,o), +(432,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(252,67,o), +(124,181,o), +(124,364,cs), +(124,547,o), +(252,661,o), +(432,661,cs), +(613,661,o), +(740,547,o), +(740,364,cs), +(740,181,o), +(613,67,o), +(432,67,cs) +); +} +); +width = 872; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(646,-10,o), +(795,140,o), +(795,363,cs), +(795,587,o), +(646,736,o), +(427,736,cs), +(207,736,o), +(58,587,o), +(58,363,cs), +(58,140,o), +(207,-10,o), +(427,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,21,o), +(92,159,o), +(92,363,cs), +(92,567,o), +(228,706,o), +(427,706,cs), +(627,706,o), +(761,567,o), +(761,363,cs), +(761,159,o), +(627,21,o), +(427,21,cs) +); +} +); +width = 853; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(650,-9,o), +(812,141,o), +(812,365,cs), +(812,589,o), +(650,739,o), +(426,739,cs), +(202,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(202,-9,o), +(426,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,62,o), +(118,183,o), +(118,365,cs), +(118,547,o), +(242,668,o), +(426,668,cs), +(610,668,o), +(734,547,o), +(734,365,cs), +(734,183,o), +(610,62,o), +(426,62,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(637,-9,o), +(797,141,o), +(797,365,cs), +(797,589,o), +(637,739,o), +(419,739,cs), +(200,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(200,-9,o), +(419,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,68,o), +(123,187,o), +(123,365,cs), +(123,544,o), +(243,663,o), +(419,663,cs), +(594,663,o), +(714,544,o), +(714,365,cs), +(714,187,o), +(595,68,o), +(419,68,cs) +); +} +); +width = 837; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +} +); +width = 727; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(582,-7,o), +(710,127,o), +(710,366,cs), +(710,605,o), +(582,739,o), +(391,739,cs), +(200,739,o), +(72,605,o), +(72,366,cs), +(72,127,o), +(200,-7,o), +(391,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,52,o), +(135,178,o), +(135,366,cs), +(135,554,o), +(217,680,o), +(391,680,cs), +(565,680,o), +(647,554,o), +(647,366,cs), +(647,179,o), +(565,52,o), +(391,52,cs) +); +} +); +width = 743; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +} +); +width = 891; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(841,141,o), +(841,365,cs), +(841,589,o), +(679,739,o), +(455,739,cs), +(231,739,o), +(69,589,o), +(69,365,cs), +(69,141,o), +(231,-9,o), +(455,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,62,o), +(147,183,o), +(147,365,cs), +(147,547,o), +(271,668,o), +(455,668,cs), +(639,668,o), +(763,547,o), +(763,365,cs), +(763,183,o), +(639,62,o), +(455,62,cs) +); +} +); +width = 871; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +} +); +width = 903; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(695,-10,o), +(853,140,o), +(853,365,cs), +(853,589,o), +(695,739,o), +(461,739,cs), +(227,739,o), +(69,589,o), +(69,365,cs), +(69,140,o), +(227,-10,o), +(461,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,60,o), +(144,182,o), +(144,365,cs), +(144,547,o), +(271,669,o), +(461,669,cs), +(651,669,o), +(778,547,o), +(778,365,cs), +(778,182,o), +(651,60,o), +(461,60,cs) +); +} +); +width = 883; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_copyright.C_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_copyright.C_.glyph new file mode 100644 index 00000000..e8658a04 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_copyright.C_.glyph @@ -0,0 +1,2201 @@ +{ +export = 0; +glyphname = _copyright.C; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (203,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(383,-7,o), +(516,122,o), +(516,366,cs), +(516,610,o), +(383,739,o), +(203,739,cs), +(23,739,o), +(-110,610,o), +(-110,366,cs), +(-110,122,o), +(23,-7,o), +(203,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(31,61,o), +(-38,192,o), +(-38,366,cs), +(-38,540,o), +(31,671,o), +(203,671,cs), +(375,671,o), +(444,540,o), +(444,366,cs), +(444,192,o), +(375,61,o), +(203,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,123,o), +(357,173,o), +(366,303,c), +(238,303,l), +(236,252,o), +(227,229,o), +(206,229,cs), +(182,229,o), +(174,263,o), +(174,365,cs), +(174,474,o), +(183,503,o), +(206,503,cs), +(227,503,o), +(236,485,o), +(238,429,c), +(366,429,l), +(358,556,o), +(302,610,o), +(206,610,cs), +(102,610,o), +(40,538,o), +(40,367,cs), +(40,193,o), +(105,123,o), +(206,123,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,123,o), +(357,173,o), +(366,303,c), +(238,303,l), +(236,252,o), +(227,229,o), +(206,229,cs), +(182,229,o), +(174,263,o), +(174,365,cs), +(174,474,o), +(183,503,o), +(206,503,cs), +(227,503,o), +(236,485,o), +(238,429,c), +(366,429,l), +(358,556,o), +(302,610,o), +(206,610,cs), +(102,610,o), +(40,538,o), +(40,367,cs), +(40,193,o), +(105,123,o), +(206,123,cs) +); +} +); +width = 406; +}, +{ +anchors = ( +{ +name = _center; +pos = (163,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(357,-9,o), +(452,141,o), +(452,365,cs), +(452,589,o), +(357,739,o), +(163,739,cs), +(-31,739,o), +(-126,588,o), +(-126,365,cs), +(-126,142,o), +(-31,-9,o), +(163,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,21,o), +(-93,132,o), +(-93,365,cs), +(-93,598,o), +(10,710,o), +(163,710,cs), +(317,710,o), +(419,599,o), +(419,365,cs), +(419,132,o), +(317,21,o), +(163,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,150,o), +(260,195,o), +(267,285,c), +(237,285,l), +(229,216,o), +(211,176,o), +(158,176,cs), +(105,176,o), +(70,215,o), +(70,365,cs), +(70,514,o), +(105,553,o), +(158,553,cs), +(203,553,o), +(228,525,o), +(237,443,c), +(267,443,l), +(259,552,o), +(210,581,o), +(158,581,cs), +(62,581,o), +(40,493,o), +(40,365,cs), +(40,237,o), +(62,150,o), +(158,150,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,150,o), +(260,195,o), +(267,285,c), +(237,285,l), +(229,216,o), +(211,176,o), +(158,176,cs), +(105,176,o), +(70,215,o), +(70,365,cs), +(70,514,o), +(105,553,o), +(158,553,cs), +(203,553,o), +(228,525,o), +(237,443,c), +(267,443,l), +(259,552,o), +(210,581,o), +(158,581,cs), +(62,581,o), +(40,493,o), +(40,365,cs), +(40,237,o), +(62,150,o), +(158,150,cs) +); +} +); +width = 307; +}, +{ +anchors = ( +{ +name = _center; +pos = (241,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,-10,o), +(623,139,o), +(623,363,cs), +(623,587,o), +(464,736,o), +(241,736,cs), +(18,736,o), +(-141,587,o), +(-141,363,cs), +(-141,139,o), +(18,-10,o), +(241,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(41,24,o), +(-104,160,o), +(-104,363,cs), +(-104,566,o), +(41,702,o), +(241,702,cs), +(441,702,o), +(586,566,o), +(586,363,cs), +(586,160,o), +(441,24,o), +(241,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,161,o), +(429,217,o), +(443,300,c), +(406,300,l), +(391,237,o), +(328,193,o), +(246,193,cs), +(138,193,o), +(76,260,o), +(76,362,cs), +(76,465,o), +(145,533,o), +(248,533,cs), +(324,533,o), +(384,500,o), +(403,434,c), +(439,434,l), +(427,513,o), +(350,565,o), +(248,565,cs), +(124,565,o), +(40,483,o), +(40,362,cs), +(40,238,o), +(120,161,o), +(245,161,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(345,161,o), +(429,217,o), +(443,300,c), +(406,300,l), +(391,237,o), +(328,193,o), +(246,193,cs), +(138,193,o), +(76,260,o), +(76,362,cs), +(76,465,o), +(145,533,o), +(248,533,cs), +(324,533,o), +(384,500,o), +(403,434,c), +(439,434,l), +(427,513,o), +(350,565,o), +(248,565,cs), +(124,565,o), +(40,483,o), +(40,362,cs), +(40,238,o), +(120,161,o), +(245,161,cs) +); +} +); +width = 483; +}, +{ +anchors = ( +{ +name = _center; +pos = (266,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(495,-11,o), +(656,135,o), +(656,364,cs), +(656,593,o), +(495,739,o), +(266,739,cs), +(38,739,o), +(-124,593,o), +(-124,364,cs), +(-124,135,o), +(38,-11,o), +(266,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(86,67,o), +(-42,181,o), +(-42,364,cs), +(-42,547,o), +(86,661,o), +(266,661,cs), +(447,661,o), +(574,547,o), +(574,364,cs), +(574,181,o), +(447,67,o), +(266,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(389,154,o), +(489,216,o), +(492,318,c), +(334,318,l), +(326,288,o), +(301,273,o), +(272,273,cs), +(228,273,o), +(199,303,o), +(199,365,cs), +(199,418,o), +(223,455,o), +(272,455,cs), +(303,455,o), +(329,439,o), +(333,410,c), +(491,410,l), +(488,507,o), +(406,574,o), +(273,574,cs), +(132,574,o), +(40,498,o), +(40,366,cs), +(40,238,o), +(125,154,o), +(265,154,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,154,o), +(489,216,o), +(492,318,c), +(334,318,l), +(326,288,o), +(301,273,o), +(272,273,cs), +(228,273,o), +(199,303,o), +(199,365,cs), +(199,418,o), +(223,455,o), +(272,455,cs), +(303,455,o), +(329,439,o), +(333,410,c), +(491,410,l), +(488,507,o), +(406,574,o), +(273,574,cs), +(132,574,o), +(40,498,o), +(40,366,cs), +(40,238,o), +(125,154,o), +(265,154,cs) +); +} +); +width = 532; +}, +{ +anchors = ( +{ +name = _center; +pos = (163,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(357,-9,o), +(452,141,o), +(452,365,cs), +(452,589,o), +(357,739,o), +(163,739,cs), +(-31,739,o), +(-126,588,o), +(-126,365,cs), +(-126,142,o), +(-31,-9,o), +(163,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,21,o), +(-93,132,o), +(-93,365,cs), +(-93,598,o), +(10,710,o), +(163,710,cs), +(317,710,o), +(419,599,o), +(419,365,cs), +(419,132,o), +(317,21,o), +(163,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,150,o), +(260,195,o), +(267,285,c), +(237,285,l), +(229,216,o), +(211,176,o), +(158,176,cs), +(105,176,o), +(70,215,o), +(70,365,cs), +(70,514,o), +(105,553,o), +(158,553,cs), +(203,553,o), +(228,525,o), +(237,443,c), +(267,443,l), +(259,552,o), +(210,581,o), +(158,581,cs), +(62,581,o), +(40,493,o), +(40,365,cs), +(40,237,o), +(62,150,o), +(158,150,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,150,o), +(260,195,o), +(267,285,c), +(237,285,l), +(229,216,o), +(211,176,o), +(158,176,cs), +(105,176,o), +(70,215,o), +(70,365,cs), +(70,514,o), +(105,553,o), +(158,553,cs), +(203,553,o), +(228,525,o), +(237,443,c), +(267,443,l), +(259,552,o), +(210,581,o), +(158,581,cs), +(62,581,o), +(40,493,o), +(40,365,cs), +(40,237,o), +(62,150,o), +(158,150,cs) +); +} +); +width = 307; +}, +{ +anchors = ( +{ +name = _center; +pos = (203,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(383,-7,o), +(516,122,o), +(516,366,cs), +(516,610,o), +(383,739,o), +(203,739,cs), +(23,739,o), +(-110,610,o), +(-110,366,cs), +(-110,122,o), +(23,-7,o), +(203,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(31,61,o), +(-38,192,o), +(-38,366,cs), +(-38,540,o), +(31,671,o), +(203,671,cs), +(375,671,o), +(444,540,o), +(444,366,cs), +(444,192,o), +(375,61,o), +(203,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,123,o), +(357,173,o), +(366,303,c), +(238,303,l), +(236,252,o), +(227,229,o), +(206,229,cs), +(182,229,o), +(174,263,o), +(174,365,cs), +(174,474,o), +(183,503,o), +(206,503,cs), +(227,503,o), +(236,485,o), +(238,429,c), +(366,429,l), +(358,556,o), +(302,610,o), +(206,610,cs), +(102,610,o), +(40,538,o), +(40,367,cs), +(40,193,o), +(105,123,o), +(206,123,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,123,o), +(357,173,o), +(366,303,c), +(238,303,l), +(236,252,o), +(227,229,o), +(206,229,cs), +(182,229,o), +(174,263,o), +(174,365,cs), +(174,474,o), +(183,503,o), +(206,503,cs), +(227,503,o), +(236,485,o), +(238,429,c), +(366,429,l), +(358,556,o), +(302,610,o), +(206,610,cs), +(102,610,o), +(40,538,o), +(40,367,cs), +(40,193,o), +(105,123,o), +(206,123,cs) +); +} +); +width = 406; +}, +{ +anchors = ( +{ +name = _center; +pos = (218,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(443,-10,o), +(594,140,o), +(594,363,cs), +(594,587,o), +(443,736,o), +(218,736,cs), +(-6,736,o), +(-157,587,o), +(-157,363,cs), +(-157,140,o), +(-6,-10,o), +(218,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(15,21,o), +(-123,159,o), +(-123,363,cs), +(-123,567,o), +(15,706,o), +(218,706,cs), +(422,706,o), +(560,567,o), +(560,363,cs), +(560,159,o), +(422,21,o), +(218,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(323,160,o), +(389,217,o), +(397,300,c), +(362,300,l), +(354,231,o), +(298,192,o), +(227,192,cs), +(136,192,o), +(75,257,o), +(75,362,cs), +(75,464,o), +(133,535,o), +(228,535,cs), +(290,535,o), +(348,503,o), +(361,435,c), +(395,435,l), +(386,513,o), +(319,567,o), +(230,567,cs), +(115,567,o), +(40,484,o), +(40,362,cs), +(40,241,o), +(115,160,o), +(227,160,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,160,o), +(389,217,o), +(397,300,c), +(362,300,l), +(354,231,o), +(298,192,o), +(227,192,cs), +(136,192,o), +(75,257,o), +(75,362,cs), +(75,464,o), +(133,535,o), +(228,535,cs), +(290,535,o), +(348,503,o), +(361,435,c), +(395,435,l), +(386,513,o), +(319,567,o), +(230,567,cs), +(115,567,o), +(40,484,o), +(40,362,cs), +(40,241,o), +(115,160,o), +(227,160,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 437; +}, +{ +anchors = ( +{ +name = _center; +pos = (242,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-9,o), +(629,141,o), +(629,365,cs), +(629,589,o), +(465,739,o), +(242,739,cs), +(18,739,o), +(-146,589,o), +(-146,365,cs), +(-146,141,o), +(18,-9,o), +(242,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(60,68,o), +(-62,187,o), +(-62,365,cs), +(-62,544,o), +(61,663,o), +(242,663,cs), +(422,663,o), +(545,544,o), +(545,365,cs), +(545,187,o), +(423,68,o), +(242,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(360,163,o), +(440,225,o), +(443,319,c), +(310,319,l), +(306,293,o), +(285,274,o), +(248,274,cs), +(207,274,o), +(180,301,o), +(180,365,cs), +(180,420,o), +(201,455,o), +(249,455,cs), +(279,455,o), +(303,441,o), +(309,410,c), +(443,410,l), +(441,499,o), +(366,567,o), +(252,567,cs), +(123,567,o), +(40,488,o), +(40,365,cs), +(40,243,o), +(122,163,o), +(248,163,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,163,o), +(440,225,o), +(443,319,c), +(310,319,l), +(306,293,o), +(285,274,o), +(248,274,cs), +(207,274,o), +(180,301,o), +(180,365,cs), +(180,420,o), +(201,455,o), +(249,455,cs), +(279,455,o), +(303,441,o), +(309,410,c), +(443,410,l), +(441,499,o), +(366,567,o), +(252,567,cs), +(123,567,o), +(40,488,o), +(40,365,cs), +(40,243,o), +(122,163,o), +(248,163,cs) +); +} +); +width = 483; +}, +{ +anchors = ( +{ +name = _center; +pos = (241,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,-10,o), +(623,139,o), +(623,363,cs), +(623,587,o), +(464,736,o), +(241,736,cs), +(18,736,o), +(-141,587,o), +(-141,363,cs), +(-141,139,o), +(18,-10,o), +(241,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(41,24,o), +(-104,160,o), +(-104,363,cs), +(-104,566,o), +(41,702,o), +(241,702,cs), +(441,702,o), +(586,566,o), +(586,363,cs), +(586,160,o), +(441,24,o), +(241,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,161,o), +(429,217,o), +(443,300,c), +(406,300,l), +(391,237,o), +(328,193,o), +(246,193,cs), +(138,193,o), +(76,260,o), +(76,362,cs), +(76,465,o), +(145,533,o), +(248,533,cs), +(324,533,o), +(384,500,o), +(403,434,c), +(439,434,l), +(427,513,o), +(350,565,o), +(248,565,cs), +(124,565,o), +(40,483,o), +(40,362,cs), +(40,238,o), +(120,161,o), +(245,161,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(345,161,o), +(429,217,o), +(443,300,c), +(406,300,l), +(391,237,o), +(328,193,o), +(246,193,cs), +(138,193,o), +(76,260,o), +(76,362,cs), +(76,465,o), +(145,533,o), +(248,533,cs), +(324,533,o), +(384,500,o), +(403,434,c), +(439,434,l), +(427,513,o), +(350,565,o), +(248,565,cs), +(124,565,o), +(40,483,o), +(40,362,cs), +(40,238,o), +(120,161,o), +(245,161,cs) +); +} +); +width = 483; +}, +{ +anchors = ( +{ +name = _center; +pos = (266,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(495,-11,o), +(656,135,o), +(656,364,cs), +(656,593,o), +(495,739,o), +(266,739,cs), +(38,739,o), +(-124,593,o), +(-124,364,cs), +(-124,135,o), +(38,-11,o), +(266,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(86,67,o), +(-42,181,o), +(-42,364,cs), +(-42,547,o), +(86,661,o), +(266,661,cs), +(447,661,o), +(574,547,o), +(574,364,cs), +(574,181,o), +(447,67,o), +(266,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(389,154,o), +(489,216,o), +(492,318,c), +(334,318,l), +(326,288,o), +(301,273,o), +(272,273,cs), +(228,273,o), +(199,303,o), +(199,365,cs), +(199,418,o), +(223,455,o), +(272,455,cs), +(303,455,o), +(329,439,o), +(333,410,c), +(491,410,l), +(488,507,o), +(406,574,o), +(273,574,cs), +(132,574,o), +(40,498,o), +(40,366,cs), +(40,238,o), +(125,154,o), +(265,154,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,154,o), +(489,216,o), +(492,318,c), +(334,318,l), +(326,288,o), +(301,273,o), +(272,273,cs), +(228,273,o), +(199,303,o), +(199,365,cs), +(199,418,o), +(223,455,o), +(272,455,cs), +(303,455,o), +(329,439,o), +(333,410,c), +(491,410,l), +(488,507,o), +(406,574,o), +(273,574,cs), +(132,574,o), +(40,498,o), +(40,366,cs), +(40,238,o), +(125,154,o), +(265,154,cs) +); +} +); +width = 532; +}, +{ +anchors = ( +{ +name = _center; +pos = (214,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(443,-10,o), +(594,140,o), +(594,363,cs), +(594,587,o), +(443,736,o), +(218,736,cs), +(-6,736,o), +(-157,587,o), +(-157,363,cs), +(-157,140,o), +(-6,-10,o), +(218,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(15,21,o), +(-123,159,o), +(-123,363,cs), +(-123,567,o), +(15,706,o), +(218,706,cs), +(422,706,o), +(560,567,o), +(560,363,cs), +(560,159,o), +(422,21,o), +(218,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(323,160,o), +(389,217,o), +(397,300,c), +(362,300,l), +(354,231,o), +(298,192,o), +(227,192,cs), +(136,192,o), +(75,257,o), +(75,362,cs), +(75,464,o), +(133,535,o), +(228,535,cs), +(290,535,o), +(348,503,o), +(361,435,c), +(395,435,l), +(386,513,o), +(319,567,o), +(230,567,cs), +(115,567,o), +(40,484,o), +(40,362,cs), +(40,241,o), +(115,160,o), +(227,160,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(317,160,o), +(381,217,o), +(389,300,c), +(354,300,l), +(347,231,o), +(292,192,o), +(223,192,cs), +(134,192,o), +(73,257,o), +(73,362,cs), +(73,464,o), +(131,535,o), +(224,535,cs), +(284,535,o), +(342,503,o), +(353,435,c), +(387,435,l), +(378,513,o), +(313,567,o), +(226,567,cs), +(113,567,o), +(40,484,o), +(40,362,cs), +(40,241,o), +(113,160,o), +(223,160,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 429; +}, +{ +anchors = ( +{ +name = _center; +pos = (235,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-9,o), +(629,141,o), +(629,365,cs), +(629,589,o), +(465,739,o), +(242,739,cs), +(18,739,o), +(-146,589,o), +(-146,365,cs), +(-146,141,o), +(18,-9,o), +(242,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(60,68,o), +(-62,187,o), +(-62,365,cs), +(-62,544,o), +(61,663,o), +(242,663,cs), +(422,663,o), +(545,544,o), +(545,365,cs), +(545,187,o), +(423,68,o), +(242,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(360,163,o), +(440,225,o), +(443,319,c), +(310,319,l), +(306,293,o), +(285,274,o), +(248,274,cs), +(207,274,o), +(180,301,o), +(180,365,cs), +(180,420,o), +(201,455,o), +(249,455,cs), +(279,455,o), +(303,441,o), +(309,410,c), +(443,410,l), +(441,499,o), +(366,567,o), +(252,567,cs), +(123,567,o), +(40,488,o), +(40,365,cs), +(40,243,o), +(122,163,o), +(248,163,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(348,163,o), +(426,225,o), +(429,319,c), +(297,319,l), +(293,293,o), +(275,274,o), +(241,274,cs), +(203,274,o), +(178,301,o), +(178,365,cs), +(178,420,o), +(197,455,o), +(242,455,cs), +(269,455,o), +(290,441,o), +(296,410,c), +(429,410,l), +(427,499,o), +(355,567,o), +(245,567,cs), +(120,567,o), +(40,488,o), +(40,365,cs), +(40,243,o), +(119,163,o), +(241,163,cs) +); +} +); +width = 468; +}, +{ +anchors = ( +{ +name = _center; +pos = (199,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(393,-9,o), +(488,141,o), +(488,365,cs), +(488,589,o), +(393,739,o), +(199,739,cs), +(5,739,o), +(-90,588,o), +(-90,365,cs), +(-90,142,o), +(5,-9,o), +(199,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(46,21,o), +(-57,132,o), +(-57,365,cs), +(-57,598,o), +(46,710,o), +(199,710,cs), +(353,710,o), +(455,599,o), +(455,365,cs), +(455,132,o), +(353,21,o), +(199,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,150,o), +(296,195,o), +(303,285,c), +(273,285,l), +(265,216,o), +(247,176,o), +(194,176,cs), +(141,176,o), +(106,215,o), +(106,365,cs), +(106,514,o), +(141,553,o), +(194,553,cs), +(239,553,o), +(264,525,o), +(273,443,c), +(303,443,l), +(295,552,o), +(246,581,o), +(194,581,cs), +(98,581,o), +(76,493,o), +(76,365,cs), +(76,237,o), +(98,150,o), +(194,150,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,150,o), +(296,195,o), +(303,285,c), +(273,285,l), +(265,216,o), +(247,176,o), +(194,176,cs), +(141,176,o), +(106,215,o), +(106,365,cs), +(106,514,o), +(141,553,o), +(194,553,cs), +(239,553,o), +(264,525,o), +(273,443,c), +(303,443,l), +(295,552,o), +(246,581,o), +(194,581,cs), +(98,581,o), +(76,493,o), +(76,365,cs), +(76,237,o), +(98,150,o), +(194,150,cs) +); +} +); +width = 340; +}, +{ +anchors = ( +{ +name = _center; +pos = (235,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-7,o), +(548,122,o), +(548,366,cs), +(548,610,o), +(415,739,o), +(235,739,cs), +(55,739,o), +(-78,610,o), +(-78,366,cs), +(-78,122,o), +(55,-7,o), +(235,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(63,61,o), +(-6,192,o), +(-6,366,cs), +(-6,540,o), +(63,671,o), +(235,671,cs), +(407,671,o), +(476,540,o), +(476,366,cs), +(476,192,o), +(407,61,o), +(235,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,123,o), +(389,173,o), +(398,303,c), +(270,303,l), +(268,252,o), +(259,229,o), +(238,229,cs), +(214,229,o), +(206,263,o), +(206,365,cs), +(206,474,o), +(215,503,o), +(238,503,cs), +(259,503,o), +(268,485,o), +(270,429,c), +(398,429,l), +(390,556,o), +(334,610,o), +(238,610,cs), +(134,610,o), +(72,538,o), +(72,367,cs), +(72,193,o), +(137,123,o), +(238,123,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,123,o), +(389,173,o), +(398,303,c), +(270,303,l), +(268,252,o), +(259,229,o), +(238,229,cs), +(214,229,o), +(206,263,o), +(206,365,cs), +(206,474,o), +(215,503,o), +(238,503,cs), +(259,503,o), +(268,485,o), +(270,429,c), +(398,429,l), +(390,556,o), +(334,610,o), +(238,610,cs), +(134,610,o), +(72,538,o), +(72,367,cs), +(72,193,o), +(137,123,o), +(238,123,cs) +); +} +); +width = 435; +}, +{ +anchors = ( +{ +name = _center; +pos = (245,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(470,-10,o), +(621,140,o), +(621,363,cs), +(621,587,o), +(470,736,o), +(245,736,cs), +(21,736,o), +(-130,587,o), +(-130,363,cs), +(-130,140,o), +(21,-10,o), +(245,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(42,21,o), +(-96,159,o), +(-96,363,cs), +(-96,567,o), +(42,706,o), +(245,706,cs), +(449,706,o), +(587,567,o), +(587,363,cs), +(587,159,o), +(449,21,o), +(245,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(350,160,o), +(416,217,o), +(424,300,c), +(389,300,l), +(381,231,o), +(325,192,o), +(254,192,cs), +(163,192,o), +(102,257,o), +(102,362,cs), +(102,464,o), +(160,535,o), +(255,535,cs), +(317,535,o), +(375,503,o), +(388,435,c), +(422,435,l), +(413,513,o), +(346,567,o), +(257,567,cs), +(142,567,o), +(67,484,o), +(67,362,cs), +(67,241,o), +(142,160,o), +(254,160,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,160,o), +(416,217,o), +(424,300,c), +(389,300,l), +(381,231,o), +(325,192,o), +(254,192,cs), +(163,192,o), +(102,257,o), +(102,362,cs), +(102,464,o), +(160,535,o), +(255,535,cs), +(317,535,o), +(375,503,o), +(388,435,c), +(422,435,l), +(413,513,o), +(346,567,o), +(257,567,cs), +(142,567,o), +(67,484,o), +(67,362,cs), +(67,241,o), +(142,160,o), +(254,160,cs) +); +} +); +width = 456; +}, +{ +anchors = ( +{ +name = _center; +pos = (267,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(490,-9,o), +(654,141,o), +(654,365,cs), +(654,589,o), +(490,739,o), +(267,739,cs), +(43,739,o), +(-121,589,o), +(-121,365,cs), +(-121,141,o), +(43,-9,o), +(267,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(85,68,o), +(-37,187,o), +(-37,365,cs), +(-37,544,o), +(86,663,o), +(267,663,cs), +(447,663,o), +(570,544,o), +(570,365,cs), +(570,187,o), +(448,68,o), +(267,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(385,163,o), +(465,225,o), +(468,319,c), +(335,319,l), +(331,293,o), +(310,274,o), +(273,274,cs), +(232,274,o), +(205,301,o), +(205,365,cs), +(205,420,o), +(226,455,o), +(274,455,cs), +(304,455,o), +(328,441,o), +(334,410,c), +(468,410,l), +(466,499,o), +(391,567,o), +(277,567,cs), +(148,567,o), +(65,488,o), +(65,365,cs), +(65,243,o), +(147,163,o), +(273,163,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,163,o), +(465,225,o), +(468,319,c), +(335,319,l), +(331,293,o), +(310,274,o), +(273,274,cs), +(232,274,o), +(205,301,o), +(205,365,cs), +(205,420,o), +(226,455,o), +(274,455,cs), +(304,455,o), +(328,441,o), +(334,410,c), +(468,410,l), +(466,499,o), +(391,567,o), +(277,567,cs), +(148,567,o), +(65,488,o), +(65,365,cs), +(65,243,o), +(147,163,o), +(273,163,cs) +); +} +); +width = 501; +}, +{ +anchors = ( +{ +name = _center; +pos = (268,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(491,-10,o), +(650,139,o), +(650,363,cs), +(650,587,o), +(491,736,o), +(268,736,cs), +(45,736,o), +(-114,587,o), +(-114,363,cs), +(-114,139,o), +(45,-10,o), +(268,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(68,24,o), +(-77,160,o), +(-77,363,cs), +(-77,566,o), +(68,702,o), +(268,702,cs), +(468,702,o), +(613,566,o), +(613,363,cs), +(613,160,o), +(468,24,o), +(268,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,161,o), +(456,217,o), +(470,300,c), +(433,300,l), +(418,237,o), +(355,193,o), +(273,193,cs), +(165,193,o), +(103,260,o), +(103,362,cs), +(103,465,o), +(172,533,o), +(275,533,cs), +(351,533,o), +(411,500,o), +(430,434,c), +(466,434,l), +(454,513,o), +(377,565,o), +(275,565,cs), +(151,565,o), +(67,483,o), +(67,362,cs), +(67,238,o), +(147,161,o), +(272,161,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(372,161,o), +(456,217,o), +(470,300,c), +(433,300,l), +(418,237,o), +(355,193,o), +(273,193,cs), +(165,193,o), +(103,260,o), +(103,362,cs), +(103,465,o), +(172,533,o), +(275,533,cs), +(351,533,o), +(411,500,o), +(430,434,c), +(466,434,l), +(454,513,o), +(377,565,o), +(275,565,cs), +(151,565,o), +(67,483,o), +(67,362,cs), +(67,238,o), +(147,161,o), +(272,161,cs) +); +} +); +width = 502; +}, +{ +anchors = ( +{ +name = _center; +pos = (291,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(520,-11,o), +(681,135,o), +(681,364,cs), +(681,593,o), +(520,739,o), +(291,739,cs), +(63,739,o), +(-99,593,o), +(-99,364,cs), +(-99,135,o), +(63,-11,o), +(291,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,67,o), +(-17,181,o), +(-17,364,cs), +(-17,547,o), +(111,661,o), +(291,661,cs), +(472,661,o), +(599,547,o), +(599,364,cs), +(599,181,o), +(472,67,o), +(291,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(414,154,o), +(514,216,o), +(517,318,c), +(359,318,l), +(351,288,o), +(326,273,o), +(297,273,cs), +(253,273,o), +(224,303,o), +(224,365,cs), +(224,418,o), +(248,455,o), +(297,455,cs), +(328,455,o), +(354,439,o), +(358,410,c), +(516,410,l), +(513,507,o), +(431,574,o), +(298,574,cs), +(157,574,o), +(65,498,o), +(65,366,cs), +(65,238,o), +(150,154,o), +(290,154,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,154,o), +(514,216,o), +(517,318,c), +(359,318,l), +(351,288,o), +(326,273,o), +(297,273,cs), +(253,273,o), +(224,303,o), +(224,365,cs), +(224,418,o), +(248,455,o), +(297,455,cs), +(328,455,o), +(354,439,o), +(358,410,c), +(516,410,l), +(513,507,o), +(431,574,o), +(298,574,cs), +(157,574,o), +(65,498,o), +(65,366,cs), +(65,238,o), +(150,154,o), +(290,154,cs) +); +} +); +width = 550; +} +); +metricLeft = "=40"; +metricRight = "=40"; +userData = { +KernOnSpecialSpacing = { +R = dashes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_f.longarm.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_f.longarm.glyph new file mode 100644 index 00000000..52e3bc5e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_f.longarm.glyph @@ -0,0 +1,440 @@ +{ +export = 0; +glyphname = _f.longarm; +layers = ( +{ +anchors = ( +{ +name = "#exit"; +pos = (199,0); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(235,489,l), +(235,516,l), +(185,516,l), +(185,489,l) +); +} +); +width = 239; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (335,0); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(388,398,l), +(388,541,l), +(298,541,l), +(298,398,l) +); +} +); +width = 395; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (339,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(399,485,l), +(399,517,l), +(279,517,l), +(279,485,l) +); +} +); +width = 409; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (434,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(495,391,l), +(495,544,l), +(372,544,l), +(372,391,l) +); +} +); +width = 494; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (373,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(434,485,l), +(434,517,l), +(287,517,l), +(287,485,l) +); +} +); +width = 443; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (467,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(527,379,l), +(527,544,l), +(422,544,l), +(422,379,l) +); +} +); +width = 527; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (124,0); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(196,489,l), +(196,516,l), +(142,516,l), +(142,489,l) +); +} +); +width = 194; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (307,0); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(363,398,l), +(363,541,l), +(293,541,l), +(293,398,l) +); +} +); +width = 367; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (293,0); +} +); +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(377,485,l), +(377,517,l), +(288,517,l), +(288,485,l) +); +} +); +width = 368; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (385,0); +} +); +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(448,391,l), +(448,544,l), +(375,544,l), +(375,391,l) +); +} +); +width = 455; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (302,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(374,485,l), +(374,517,l), +(292,517,l), +(292,485,l) +); +} +); +width = 362; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (440,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(508,379,l), +(508,544,l), +(428,544,l), +(428,379,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (113,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(223,489,l), +(228,516,l), +(198,516,l), +(192,489,l) +); +} +); +width = 183; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (303,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(386,399,l), +(414,541,l), +(344,541,l), +(316,399,l) +); +} +); +width = 363; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (281,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(418,485,l), +(425,517,l), +(335,517,l), +(328,485,l) +); +} +); +width = 361; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (398,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(487,391,l), +(518,544,l), +(445,544,l), +(414,391,l) +); +} +); +width = 468; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (291,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(407,485,l), +(414,517,l), +(332,517,l), +(326,485,l) +); +} +); +width = 356; +}, +{ +anchors = ( +{ +name = "#exit"; +pos = (442,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = f; +}, +{ +closed = 1; +nodes = ( +(526,379,l), +(560,544,l), +(480,544,l), +(445,379,l) +); +} +); +width = 502; +} +); +metricLeft = f; +metricRight = f; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_notdef.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_notdef.glyph new file mode 100644 index 00000000..24d238a8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_notdef.glyph @@ -0,0 +1,3851 @@ +{ +glyphname = .notdef; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-12,o), +(337,-6,o), +(337,10,cs), +(337,80,l), +(322,77,o), +(310,76,o), +(298,76,cs), +(226,76,o), +(216,122,o), +(194,156,cs), +(179,180,o), +(153,186,o), +(153,199,cs), +(153,205,o), +(158,209,o), +(167,209,cs), +(226,209,o), +(230,124,o), +(294,124,cs), +(310,124,o), +(327,128,o), +(338,134,c), +(342,159,o), +(353,177,o), +(373,186,c), +(258,198,o), +(188,264,o), +(188,366,cs), +(188,416,o), +(203,451,o), +(228,477,c), +(218,509,o), +(219,550,o), +(232,579,c), +(270,581,o), +(312,565,o), +(336,539,c), +(368,549,o), +(400,553,o), +(433,553,cs), +(466,553,o), +(498,549,o), +(530,539,c), +(554,565,o), +(596,581,o), +(634,579,c), +(647,550,o), +(648,509,o), +(638,477,c), +(663,451,o), +(678,416,o), +(678,366,cs), +(678,264,o), +(608,198,o), +(493,186,c), +(516,175,o), +(529,150,o), +(529,115,cs), +(529,10,ls), +(529,-6,o), +(543,-12,o), +(556,-8,cs), +(712,42,o), +(816,177,o), +(816,356,cs), +(816,585,o), +(663,738,o), +(433,738,cs), +(203,738,o), +(50,585,o), +(50,356,cs), +(50,177,o), +(154,42,o), +(310,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,150,o), +(228,152,o), +(228,155,cs), +(228,158,o), +(225,160,o), +(221,160,cs), +(217,160,o), +(215,158,o), +(215,155,cs), +(215,152,o), +(218,150,o), +(222,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,185,o), +(196,187,o), +(196,189,cs), +(196,192,o), +(194,193,o), +(190,193,cs), +(187,193,o), +(185,191,o), +(185,189,cs), +(185,186,o), +(187,185,o), +(191,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,171,o), +(211,173,o), +(211,175,cs), +(211,178,o), +(209,179,o), +(205,179,cs), +(202,179,o), +(200,177,o), +(200,175,cs), +(200,172,o), +(202,171,o), +(206,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,109,o), +(273,111,o), +(273,115,cs), +(273,119,o), +(270,121,o), +(265,121,cs), +(261,121,o), +(258,119,o), +(258,115,cs), +(258,111,o), +(261,109,o), +(266,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,104,o), +(304,106,o), +(304,110,cs), +(304,114,o), +(301,116,o), +(296,116,cs), +(292,116,o), +(289,114,o), +(289,110,cs), +(289,106,o), +(292,104,o), +(297,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,110,o), +(335,112,o), +(335,116,cs), +(335,120,o), +(332,122,o), +(327,122,cs), +(323,122,o), +(320,120,o), +(320,116,cs), +(320,112,o), +(323,110,o), +(328,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,127,o), +(247,129,o), +(247,133,cs), +(247,137,o), +(244,139,o), +(239,139,cs), +(235,139,o), +(232,137,o), +(232,133,cs), +(232,129,o), +(235,127,o), +(240,127,cs) +); +} +); +width = 866; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-12,o), +(336,-6,o), +(336,10,cs), +(336,80,l), +(321,77,o), +(309,76,o), +(297,76,cs), +(225,76,o), +(215,122,o), +(193,156,cs), +(178,180,o), +(152,186,o), +(152,199,cs), +(152,205,o), +(157,209,o), +(166,209,cs), +(225,209,o), +(229,124,o), +(293,124,cs), +(309,124,o), +(326,128,o), +(337,134,c), +(341,159,o), +(352,177,o), +(372,186,c), +(257,198,o), +(187,264,o), +(187,366,cs), +(187,416,o), +(202,451,o), +(227,477,c), +(217,509,o), +(218,550,o), +(231,579,c), +(269,581,o), +(311,565,o), +(335,539,c), +(367,549,o), +(399,553,o), +(432,553,cs), +(465,553,o), +(497,549,o), +(529,539,c), +(553,565,o), +(595,581,o), +(633,579,c), +(646,550,o), +(647,509,o), +(637,477,c), +(662,451,o), +(677,416,o), +(677,366,cs), +(677,264,o), +(607,198,o), +(492,186,c), +(515,175,o), +(528,150,o), +(528,115,cs), +(528,10,ls), +(528,-6,o), +(542,-12,o), +(555,-8,cs), +(711,42,o), +(815,177,o), +(815,356,cs), +(815,585,o), +(662,738,o), +(432,738,cs), +(202,738,o), +(49,585,o), +(49,356,cs), +(49,177,o), +(153,42,o), +(309,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(225,150,o), +(227,152,o), +(227,155,cs), +(227,158,o), +(224,160,o), +(220,160,cs), +(216,160,o), +(214,158,o), +(214,155,cs), +(214,152,o), +(217,150,o), +(221,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(193,185,o), +(195,187,o), +(195,189,cs), +(195,192,o), +(193,193,o), +(189,193,cs), +(186,193,o), +(184,191,o), +(184,189,cs), +(184,186,o), +(186,185,o), +(190,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,171,o), +(210,173,o), +(210,175,cs), +(210,178,o), +(208,179,o), +(204,179,cs), +(201,179,o), +(199,177,o), +(199,175,cs), +(199,172,o), +(201,171,o), +(205,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(269,109,o), +(272,111,o), +(272,115,cs), +(272,119,o), +(269,121,o), +(264,121,cs), +(260,121,o), +(257,119,o), +(257,115,cs), +(257,111,o), +(260,109,o), +(265,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,104,o), +(303,106,o), +(303,110,cs), +(303,114,o), +(300,116,o), +(295,116,cs), +(291,116,o), +(288,114,o), +(288,110,cs), +(288,106,o), +(291,104,o), +(296,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,110,o), +(334,112,o), +(334,116,cs), +(334,120,o), +(331,122,o), +(326,122,cs), +(322,122,o), +(319,120,o), +(319,116,cs), +(319,112,o), +(322,110,o), +(327,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,127,o), +(246,129,o), +(246,133,cs), +(246,137,o), +(243,139,o), +(238,139,cs), +(234,139,o), +(231,137,o), +(231,133,cs), +(231,129,o), +(234,127,o), +(239,127,cs) +); +} +); +width = 865; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-12,o), +(337,-6,o), +(337,10,cs), +(337,80,l), +(322,77,o), +(310,76,o), +(298,76,cs), +(226,76,o), +(216,122,o), +(194,156,cs), +(179,180,o), +(153,186,o), +(153,199,cs), +(153,205,o), +(158,209,o), +(167,209,cs), +(226,209,o), +(230,124,o), +(294,124,cs), +(310,124,o), +(327,128,o), +(338,134,c), +(342,159,o), +(353,177,o), +(373,186,c), +(258,198,o), +(188,264,o), +(188,366,cs), +(188,416,o), +(203,451,o), +(228,477,c), +(218,509,o), +(219,550,o), +(232,579,c), +(270,581,o), +(312,565,o), +(336,539,c), +(368,549,o), +(400,553,o), +(433,553,cs), +(466,553,o), +(498,549,o), +(530,539,c), +(554,565,o), +(596,581,o), +(634,579,c), +(647,550,o), +(648,509,o), +(638,477,c), +(663,451,o), +(678,416,o), +(678,366,cs), +(678,264,o), +(608,198,o), +(493,186,c), +(516,175,o), +(529,150,o), +(529,115,cs), +(529,10,ls), +(529,-6,o), +(543,-12,o), +(556,-8,cs), +(712,42,o), +(816,177,o), +(816,356,cs), +(816,585,o), +(663,738,o), +(433,738,cs), +(203,738,o), +(50,585,o), +(50,356,cs), +(50,177,o), +(154,42,o), +(310,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,150,o), +(228,152,o), +(228,155,cs), +(228,158,o), +(225,160,o), +(221,160,cs), +(217,160,o), +(215,158,o), +(215,155,cs), +(215,152,o), +(218,150,o), +(222,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,185,o), +(196,187,o), +(196,189,cs), +(196,192,o), +(194,193,o), +(190,193,cs), +(187,193,o), +(185,191,o), +(185,189,cs), +(185,186,o), +(187,185,o), +(191,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,171,o), +(211,173,o), +(211,175,cs), +(211,178,o), +(209,179,o), +(205,179,cs), +(202,179,o), +(200,177,o), +(200,175,cs), +(200,172,o), +(202,171,o), +(206,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,109,o), +(273,111,o), +(273,115,cs), +(273,119,o), +(270,121,o), +(265,121,cs), +(261,121,o), +(258,119,o), +(258,115,cs), +(258,111,o), +(261,109,o), +(266,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,104,o), +(304,106,o), +(304,110,cs), +(304,114,o), +(301,116,o), +(296,116,cs), +(292,116,o), +(289,114,o), +(289,110,cs), +(289,106,o), +(292,104,o), +(297,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,110,o), +(335,112,o), +(335,116,cs), +(335,120,o), +(332,122,o), +(327,122,cs), +(323,122,o), +(320,120,o), +(320,116,cs), +(320,112,o), +(323,110,o), +(328,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,127,o), +(247,129,o), +(247,133,cs), +(247,137,o), +(244,139,o), +(239,139,cs), +(235,139,o), +(232,137,o), +(232,133,cs), +(232,129,o), +(235,127,o), +(240,127,cs) +); +} +); +width = 866; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-12,o), +(337,-6,o), +(337,10,cs), +(337,80,l), +(322,77,o), +(310,76,o), +(298,76,cs), +(226,76,o), +(216,122,o), +(194,156,cs), +(179,180,o), +(153,186,o), +(153,199,cs), +(153,205,o), +(158,209,o), +(167,209,cs), +(226,209,o), +(230,124,o), +(294,124,cs), +(310,124,o), +(327,128,o), +(338,134,c), +(342,159,o), +(353,177,o), +(373,186,c), +(258,198,o), +(188,264,o), +(188,366,cs), +(188,416,o), +(203,451,o), +(228,477,c), +(218,509,o), +(219,550,o), +(232,579,c), +(270,581,o), +(312,565,o), +(336,539,c), +(368,549,o), +(400,553,o), +(433,553,cs), +(466,553,o), +(498,549,o), +(530,539,c), +(554,565,o), +(596,581,o), +(634,579,c), +(647,550,o), +(648,509,o), +(638,477,c), +(663,451,o), +(678,416,o), +(678,366,cs), +(678,264,o), +(608,198,o), +(493,186,c), +(516,175,o), +(529,150,o), +(529,115,cs), +(529,10,ls), +(529,-6,o), +(543,-12,o), +(556,-8,cs), +(712,42,o), +(816,177,o), +(816,356,cs), +(816,585,o), +(663,738,o), +(433,738,cs), +(203,738,o), +(50,585,o), +(50,356,cs), +(50,177,o), +(154,42,o), +(310,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,150,o), +(228,152,o), +(228,155,cs), +(228,158,o), +(225,160,o), +(221,160,cs), +(217,160,o), +(215,158,o), +(215,155,cs), +(215,152,o), +(218,150,o), +(222,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,185,o), +(196,187,o), +(196,189,cs), +(196,192,o), +(194,193,o), +(190,193,cs), +(187,193,o), +(185,191,o), +(185,189,cs), +(185,186,o), +(187,185,o), +(191,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,171,o), +(211,173,o), +(211,175,cs), +(211,178,o), +(209,179,o), +(205,179,cs), +(202,179,o), +(200,177,o), +(200,175,cs), +(200,172,o), +(202,171,o), +(206,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,109,o), +(273,111,o), +(273,115,cs), +(273,119,o), +(270,121,o), +(265,121,cs), +(261,121,o), +(258,119,o), +(258,115,cs), +(258,111,o), +(261,109,o), +(266,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,104,o), +(304,106,o), +(304,110,cs), +(304,114,o), +(301,116,o), +(296,116,cs), +(292,116,o), +(289,114,o), +(289,110,cs), +(289,106,o), +(292,104,o), +(297,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,110,o), +(335,112,o), +(335,116,cs), +(335,120,o), +(332,122,o), +(327,122,cs), +(323,122,o), +(320,120,o), +(320,116,cs), +(320,112,o), +(323,110,o), +(328,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,127,o), +(247,129,o), +(247,133,cs), +(247,137,o), +(244,139,o), +(239,139,cs), +(235,139,o), +(232,137,o), +(232,133,cs), +(232,129,o), +(235,127,o), +(240,127,cs) +); +} +); +width = 866; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-12,o), +(316,-6,o), +(316,10,cs), +(316,80,l), +(301,77,o), +(289,76,o), +(277,76,cs), +(205,76,o), +(195,122,o), +(173,156,cs), +(158,180,o), +(132,186,o), +(132,199,cs), +(132,205,o), +(137,209,o), +(146,209,cs), +(205,209,o), +(209,124,o), +(273,124,cs), +(289,124,o), +(306,128,o), +(317,134,c), +(321,159,o), +(332,177,o), +(352,186,c), +(237,198,o), +(167,264,o), +(167,366,cs), +(167,416,o), +(182,451,o), +(207,477,c), +(197,509,o), +(198,550,o), +(211,579,c), +(249,581,o), +(291,565,o), +(315,539,c), +(347,549,o), +(379,553,o), +(412,553,cs), +(445,553,o), +(477,549,o), +(509,539,c), +(533,565,o), +(575,581,o), +(613,579,c), +(626,550,o), +(627,509,o), +(617,477,c), +(642,451,o), +(657,416,o), +(657,366,cs), +(657,264,o), +(587,198,o), +(472,186,c), +(495,175,o), +(508,150,o), +(508,115,cs), +(508,10,ls), +(508,-6,o), +(522,-12,o), +(535,-8,cs), +(691,42,o), +(795,177,o), +(795,356,cs), +(795,585,o), +(642,738,o), +(412,738,cs), +(182,738,o), +(29,585,o), +(29,356,cs), +(29,177,o), +(133,42,o), +(289,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,150,o), +(207,152,o), +(207,155,cs), +(207,158,o), +(204,160,o), +(200,160,cs), +(196,160,o), +(194,158,o), +(194,155,cs), +(194,152,o), +(197,150,o), +(201,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,185,o), +(175,187,o), +(175,189,cs), +(175,192,o), +(173,193,o), +(169,193,cs), +(166,193,o), +(164,191,o), +(164,189,cs), +(164,186,o), +(166,185,o), +(170,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,171,o), +(190,173,o), +(190,175,cs), +(190,178,o), +(188,179,o), +(184,179,cs), +(181,179,o), +(179,177,o), +(179,175,cs), +(179,172,o), +(181,171,o), +(185,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(249,109,o), +(252,111,o), +(252,115,cs), +(252,119,o), +(249,121,o), +(244,121,cs), +(240,121,o), +(237,119,o), +(237,115,cs), +(237,111,o), +(240,109,o), +(245,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(280,104,o), +(283,106,o), +(283,110,cs), +(283,114,o), +(280,116,o), +(275,116,cs), +(271,116,o), +(268,114,o), +(268,110,cs), +(268,106,o), +(271,104,o), +(276,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,110,o), +(314,112,o), +(314,116,cs), +(314,120,o), +(311,122,o), +(306,122,cs), +(302,122,o), +(299,120,o), +(299,116,cs), +(299,112,o), +(302,110,o), +(307,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,127,o), +(226,129,o), +(226,133,cs), +(226,137,o), +(223,139,o), +(218,139,cs), +(214,139,o), +(211,137,o), +(211,133,cs), +(211,129,o), +(214,127,o), +(219,127,cs) +); +} +); +width = 825; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-12,o), +(327,-6,o), +(327,10,cs), +(327,80,l), +(312,77,o), +(300,76,o), +(288,76,cs), +(216,76,o), +(206,122,o), +(184,156,cs), +(169,180,o), +(143,186,o), +(143,199,cs), +(143,205,o), +(148,209,o), +(157,209,cs), +(216,209,o), +(220,124,o), +(284,124,cs), +(300,124,o), +(317,128,o), +(328,134,c), +(332,159,o), +(343,177,o), +(363,186,c), +(248,198,o), +(178,264,o), +(178,366,cs), +(178,416,o), +(193,451,o), +(218,477,c), +(208,509,o), +(209,550,o), +(222,579,c), +(260,581,o), +(302,565,o), +(326,539,c), +(358,549,o), +(390,553,o), +(423,553,cs), +(456,553,o), +(488,549,o), +(520,539,c), +(544,565,o), +(586,581,o), +(624,579,c), +(637,550,o), +(638,509,o), +(628,477,c), +(653,451,o), +(668,416,o), +(668,366,cs), +(668,264,o), +(598,198,o), +(483,186,c), +(506,175,o), +(519,150,o), +(519,115,cs), +(519,10,ls), +(519,-6,o), +(533,-12,o), +(546,-8,cs), +(702,42,o), +(806,177,o), +(806,356,cs), +(806,585,o), +(653,738,o), +(423,738,cs), +(193,738,o), +(40,585,o), +(40,356,cs), +(40,177,o), +(144,42,o), +(300,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,150,o), +(218,152,o), +(218,155,cs), +(218,158,o), +(215,160,o), +(211,160,cs), +(207,160,o), +(205,158,o), +(205,155,cs), +(205,152,o), +(208,150,o), +(212,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,185,o), +(186,187,o), +(186,189,cs), +(186,192,o), +(184,193,o), +(180,193,cs), +(177,193,o), +(175,191,o), +(175,189,cs), +(175,186,o), +(177,185,o), +(181,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,171,o), +(201,173,o), +(201,175,cs), +(201,178,o), +(199,179,o), +(195,179,cs), +(192,179,o), +(190,177,o), +(190,175,cs), +(190,172,o), +(192,171,o), +(196,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,109,o), +(263,111,o), +(263,115,cs), +(263,119,o), +(260,121,o), +(255,121,cs), +(251,121,o), +(248,119,o), +(248,115,cs), +(248,111,o), +(251,109,o), +(256,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(291,104,o), +(294,106,o), +(294,110,cs), +(294,114,o), +(291,116,o), +(286,116,cs), +(282,116,o), +(279,114,o), +(279,110,cs), +(279,106,o), +(282,104,o), +(287,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,110,o), +(325,112,o), +(325,116,cs), +(325,120,o), +(322,122,o), +(317,122,cs), +(313,122,o), +(310,120,o), +(310,116,cs), +(310,112,o), +(313,110,o), +(318,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(234,127,o), +(237,129,o), +(237,133,cs), +(237,137,o), +(234,139,o), +(229,139,cs), +(225,139,o), +(222,137,o), +(222,133,cs), +(222,129,o), +(225,127,o), +(230,127,cs) +); +} +); +width = 846; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,-12,o), +(317,-6,o), +(317,10,cs), +(317,80,l), +(302,77,o), +(290,76,o), +(278,76,cs), +(206,76,o), +(196,122,o), +(174,156,cs), +(159,180,o), +(133,186,o), +(133,199,cs), +(133,205,o), +(138,209,o), +(147,209,cs), +(206,209,o), +(210,124,o), +(274,124,cs), +(290,124,o), +(307,128,o), +(318,134,c), +(322,159,o), +(333,177,o), +(353,186,c), +(238,198,o), +(168,264,o), +(168,366,cs), +(168,416,o), +(183,451,o), +(208,477,c), +(198,509,o), +(199,550,o), +(212,579,c), +(250,581,o), +(292,565,o), +(316,539,c), +(348,549,o), +(380,553,o), +(413,553,cs), +(446,553,o), +(478,549,o), +(510,539,c), +(534,565,o), +(576,581,o), +(614,579,c), +(627,550,o), +(628,509,o), +(618,477,c), +(643,451,o), +(658,416,o), +(658,366,cs), +(658,264,o), +(588,198,o), +(473,186,c), +(496,175,o), +(509,150,o), +(509,115,cs), +(509,10,ls), +(509,-6,o), +(523,-12,o), +(536,-8,cs), +(692,42,o), +(796,177,o), +(796,356,cs), +(796,585,o), +(643,738,o), +(413,738,cs), +(183,738,o), +(30,585,o), +(30,356,cs), +(30,177,o), +(134,42,o), +(290,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(206,150,o), +(208,152,o), +(208,155,cs), +(208,158,o), +(205,160,o), +(201,160,cs), +(197,160,o), +(195,158,o), +(195,155,cs), +(195,152,o), +(198,150,o), +(202,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,185,o), +(176,187,o), +(176,189,cs), +(176,192,o), +(174,193,o), +(170,193,cs), +(167,193,o), +(165,191,o), +(165,189,cs), +(165,186,o), +(167,185,o), +(171,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(189,171,o), +(191,173,o), +(191,175,cs), +(191,178,o), +(189,179,o), +(185,179,cs), +(182,179,o), +(180,177,o), +(180,175,cs), +(180,172,o), +(182,171,o), +(186,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,109,o), +(253,111,o), +(253,115,cs), +(253,119,o), +(250,121,o), +(245,121,cs), +(241,121,o), +(238,119,o), +(238,115,cs), +(238,111,o), +(241,109,o), +(246,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,104,o), +(284,106,o), +(284,110,cs), +(284,114,o), +(281,116,o), +(276,116,cs), +(272,116,o), +(269,114,o), +(269,110,cs), +(269,106,o), +(272,104,o), +(277,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,110,o), +(315,112,o), +(315,116,cs), +(315,120,o), +(312,122,o), +(307,122,cs), +(303,122,o), +(300,120,o), +(300,116,cs), +(300,112,o), +(303,110,o), +(308,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,127,o), +(227,129,o), +(227,133,cs), +(227,137,o), +(224,139,o), +(219,139,cs), +(215,139,o), +(212,137,o), +(212,133,cs), +(212,129,o), +(215,127,o), +(220,127,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 826; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-12,o), +(316,-6,o), +(316,10,cs), +(316,80,l), +(301,77,o), +(289,76,o), +(277,76,cs), +(205,76,o), +(195,122,o), +(173,156,cs), +(158,180,o), +(132,186,o), +(132,199,cs), +(132,205,o), +(137,209,o), +(146,209,cs), +(205,209,o), +(209,124,o), +(273,124,cs), +(289,124,o), +(306,128,o), +(317,134,c), +(321,159,o), +(332,177,o), +(352,186,c), +(237,198,o), +(167,264,o), +(167,366,cs), +(167,416,o), +(182,451,o), +(207,477,c), +(197,509,o), +(198,550,o), +(211,579,c), +(249,581,o), +(291,565,o), +(315,539,c), +(347,549,o), +(379,553,o), +(412,553,cs), +(445,553,o), +(477,549,o), +(509,539,c), +(533,565,o), +(575,581,o), +(613,579,c), +(626,550,o), +(627,509,o), +(617,477,c), +(642,451,o), +(657,416,o), +(657,366,cs), +(657,264,o), +(587,198,o), +(472,186,c), +(495,175,o), +(508,150,o), +(508,115,cs), +(508,10,ls), +(508,-6,o), +(522,-12,o), +(535,-8,cs), +(691,42,o), +(795,177,o), +(795,356,cs), +(795,585,o), +(642,738,o), +(412,738,cs), +(182,738,o), +(29,585,o), +(29,356,cs), +(29,177,o), +(133,42,o), +(289,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,150,o), +(207,152,o), +(207,155,cs), +(207,158,o), +(204,160,o), +(200,160,cs), +(196,160,o), +(194,158,o), +(194,155,cs), +(194,152,o), +(197,150,o), +(201,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,185,o), +(175,187,o), +(175,189,cs), +(175,192,o), +(173,193,o), +(169,193,cs), +(166,193,o), +(164,191,o), +(164,189,cs), +(164,186,o), +(166,185,o), +(170,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,171,o), +(190,173,o), +(190,175,cs), +(190,178,o), +(188,179,o), +(184,179,cs), +(181,179,o), +(179,177,o), +(179,175,cs), +(179,172,o), +(181,171,o), +(185,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(249,109,o), +(252,111,o), +(252,115,cs), +(252,119,o), +(249,121,o), +(244,121,cs), +(240,121,o), +(237,119,o), +(237,115,cs), +(237,111,o), +(240,109,o), +(245,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(280,104,o), +(283,106,o), +(283,110,cs), +(283,114,o), +(280,116,o), +(275,116,cs), +(271,116,o), +(268,114,o), +(268,110,cs), +(268,106,o), +(271,104,o), +(276,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,110,o), +(314,112,o), +(314,116,cs), +(314,120,o), +(311,122,o), +(306,122,cs), +(302,122,o), +(299,120,o), +(299,116,cs), +(299,112,o), +(302,110,o), +(307,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,127,o), +(226,129,o), +(226,133,cs), +(226,137,o), +(223,139,o), +(218,139,cs), +(214,139,o), +(211,137,o), +(211,133,cs), +(211,129,o), +(214,127,o), +(219,127,cs) +); +} +); +width = 824; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-12,o), +(327,-6,o), +(327,10,cs), +(327,80,l), +(312,77,o), +(300,76,o), +(288,76,cs), +(216,76,o), +(206,122,o), +(184,156,cs), +(169,180,o), +(143,186,o), +(143,199,cs), +(143,205,o), +(148,209,o), +(157,209,cs), +(216,209,o), +(220,124,o), +(284,124,cs), +(300,124,o), +(317,128,o), +(328,134,c), +(332,159,o), +(343,177,o), +(363,186,c), +(248,198,o), +(178,264,o), +(178,366,cs), +(178,416,o), +(193,451,o), +(218,477,c), +(208,509,o), +(209,550,o), +(222,579,c), +(260,581,o), +(302,565,o), +(326,539,c), +(358,549,o), +(390,553,o), +(423,553,cs), +(456,553,o), +(488,549,o), +(520,539,c), +(544,565,o), +(586,581,o), +(624,579,c), +(637,550,o), +(638,509,o), +(628,477,c), +(653,451,o), +(668,416,o), +(668,366,cs), +(668,264,o), +(598,198,o), +(483,186,c), +(506,175,o), +(519,150,o), +(519,115,cs), +(519,10,ls), +(519,-6,o), +(533,-12,o), +(546,-8,cs), +(702,42,o), +(806,177,o), +(806,356,cs), +(806,585,o), +(653,738,o), +(423,738,cs), +(193,738,o), +(40,585,o), +(40,356,cs), +(40,177,o), +(144,42,o), +(300,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,150,o), +(218,152,o), +(218,155,cs), +(218,158,o), +(215,160,o), +(211,160,cs), +(207,160,o), +(205,158,o), +(205,155,cs), +(205,152,o), +(208,150,o), +(212,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,185,o), +(186,187,o), +(186,189,cs), +(186,192,o), +(184,193,o), +(180,193,cs), +(177,193,o), +(175,191,o), +(175,189,cs), +(175,186,o), +(177,185,o), +(181,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,171,o), +(201,173,o), +(201,175,cs), +(201,178,o), +(199,179,o), +(195,179,cs), +(192,179,o), +(190,177,o), +(190,175,cs), +(190,172,o), +(192,171,o), +(196,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,109,o), +(263,111,o), +(263,115,cs), +(263,119,o), +(260,121,o), +(255,121,cs), +(251,121,o), +(248,119,o), +(248,115,cs), +(248,111,o), +(251,109,o), +(256,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(291,104,o), +(294,106,o), +(294,110,cs), +(294,114,o), +(291,116,o), +(286,116,cs), +(282,116,o), +(279,114,o), +(279,110,cs), +(279,106,o), +(282,104,o), +(287,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,110,o), +(325,112,o), +(325,116,cs), +(325,120,o), +(322,122,o), +(317,122,cs), +(313,122,o), +(310,120,o), +(310,116,cs), +(310,112,o), +(313,110,o), +(318,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(234,127,o), +(237,129,o), +(237,133,cs), +(237,137,o), +(234,139,o), +(229,139,cs), +(225,139,o), +(222,137,o), +(222,133,cs), +(222,129,o), +(225,127,o), +(230,127,cs) +); +} +); +width = 846; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-12,o), +(327,-6,o), +(327,10,cs), +(327,80,l), +(312,77,o), +(300,76,o), +(288,76,cs), +(216,76,o), +(206,122,o), +(184,156,cs), +(169,180,o), +(143,186,o), +(143,199,cs), +(143,205,o), +(148,209,o), +(157,209,cs), +(216,209,o), +(220,124,o), +(284,124,cs), +(300,124,o), +(317,128,o), +(328,134,c), +(332,159,o), +(343,177,o), +(363,186,c), +(248,198,o), +(178,264,o), +(178,366,cs), +(178,416,o), +(193,451,o), +(218,477,c), +(208,509,o), +(209,550,o), +(222,579,c), +(260,581,o), +(302,565,o), +(326,539,c), +(358,549,o), +(390,553,o), +(423,553,cs), +(456,553,o), +(488,549,o), +(520,539,c), +(544,565,o), +(586,581,o), +(624,579,c), +(637,550,o), +(638,509,o), +(628,477,c), +(653,451,o), +(668,416,o), +(668,366,cs), +(668,264,o), +(598,198,o), +(483,186,c), +(506,175,o), +(519,150,o), +(519,115,cs), +(519,10,ls), +(519,-6,o), +(533,-12,o), +(546,-8,cs), +(702,42,o), +(806,177,o), +(806,356,cs), +(806,585,o), +(653,738,o), +(423,738,cs), +(193,738,o), +(40,585,o), +(40,356,cs), +(40,177,o), +(144,42,o), +(300,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,150,o), +(218,152,o), +(218,155,cs), +(218,158,o), +(215,160,o), +(211,160,cs), +(207,160,o), +(205,158,o), +(205,155,cs), +(205,152,o), +(208,150,o), +(212,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,185,o), +(186,187,o), +(186,189,cs), +(186,192,o), +(184,193,o), +(180,193,cs), +(177,193,o), +(175,191,o), +(175,189,cs), +(175,186,o), +(177,185,o), +(181,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,171,o), +(201,173,o), +(201,175,cs), +(201,178,o), +(199,179,o), +(195,179,cs), +(192,179,o), +(190,177,o), +(190,175,cs), +(190,172,o), +(192,171,o), +(196,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,109,o), +(263,111,o), +(263,115,cs), +(263,119,o), +(260,121,o), +(255,121,cs), +(251,121,o), +(248,119,o), +(248,115,cs), +(248,111,o), +(251,109,o), +(256,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(291,104,o), +(294,106,o), +(294,110,cs), +(294,114,o), +(291,116,o), +(286,116,cs), +(282,116,o), +(279,114,o), +(279,110,cs), +(279,106,o), +(282,104,o), +(287,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,110,o), +(325,112,o), +(325,116,cs), +(325,120,o), +(322,122,o), +(317,122,cs), +(313,122,o), +(310,120,o), +(310,116,cs), +(310,112,o), +(313,110,o), +(318,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(234,127,o), +(237,129,o), +(237,133,cs), +(237,137,o), +(234,139,o), +(229,139,cs), +(225,139,o), +(222,137,o), +(222,133,cs), +(222,129,o), +(225,127,o), +(230,127,cs) +); +} +); +width = 846; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(320,-12,o), +(334,-6,o), +(334,10,cs), +(334,80,l), +(319,77,o), +(307,76,o), +(295,76,cs), +(225,76,o), +(215,122,o), +(193,156,cs), +(178,180,o), +(152,186,o), +(152,199,cs), +(152,205,o), +(157,209,o), +(166,209,cs), +(225,209,o), +(229,124,o), +(291,124,cs), +(307,124,o), +(324,128,o), +(335,134,c), +(339,159,o), +(349,177,o), +(368,186,c), +(255,198,o), +(187,264,o), +(187,366,cs), +(187,416,o), +(202,451,o), +(227,477,c), +(217,509,o), +(218,550,o), +(231,579,c), +(267,581,o), +(309,565,o), +(333,539,c), +(363,549,o), +(395,553,o), +(428,553,cs), +(459,553,o), +(491,549,o), +(523,539,c), +(546,565,o), +(587,581,o), +(625,579,c), +(638,550,o), +(639,509,o), +(629,477,c), +(652,451,o), +(667,416,o), +(667,366,cs), +(667,264,o), +(599,198,o), +(486,186,c), +(509,175,o), +(522,150,o), +(522,115,cs), +(522,10,ls), +(522,-6,o), +(536,-12,o), +(547,-8,cs), +(701,42,o), +(803,177,o), +(803,356,cs), +(803,585,o), +(652,738,o), +(428,738,cs), +(202,738,o), +(52,585,o), +(52,356,cs), +(52,177,o), +(153,42,o), +(307,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(225,150,o), +(227,152,o), +(227,155,cs), +(227,158,o), +(224,160,o), +(220,160,cs), +(216,160,o), +(214,158,o), +(214,155,cs), +(214,152,o), +(217,150,o), +(221,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(193,185,o), +(195,187,o), +(195,189,cs), +(195,192,o), +(193,193,o), +(189,193,cs), +(186,193,o), +(184,191,o), +(184,189,cs), +(184,186,o), +(186,185,o), +(190,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,171,o), +(210,173,o), +(210,175,cs), +(210,178,o), +(208,179,o), +(204,179,cs), +(201,179,o), +(199,177,o), +(199,175,cs), +(199,172,o), +(201,171,o), +(205,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,109,o), +(270,111,o), +(270,115,cs), +(270,119,o), +(267,121,o), +(262,121,cs), +(258,121,o), +(255,119,o), +(255,115,cs), +(255,111,o), +(258,109,o), +(263,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,104,o), +(301,106,o), +(301,110,cs), +(301,114,o), +(298,116,o), +(293,116,cs), +(289,116,o), +(286,114,o), +(286,110,cs), +(286,106,o), +(289,104,o), +(294,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,110,o), +(332,112,o), +(332,116,cs), +(332,120,o), +(329,122,o), +(324,122,cs), +(320,122,o), +(317,120,o), +(317,116,cs), +(317,112,o), +(320,110,o), +(325,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,127,o), +(246,129,o), +(246,133,cs), +(246,137,o), +(243,139,o), +(238,139,cs), +(234,139,o), +(231,137,o), +(231,133,cs), +(231,129,o), +(234,127,o), +(239,127,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 853; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(316,-12,o), +(329,-6,o), +(329,10,cs), +(329,80,l), +(314,77,o), +(303,76,o), +(291,76,cs), +(221,76,o), +(211,121,o), +(190,155,cs), +(175,180,o), +(149,186,o), +(149,199,cs), +(149,205,o), +(154,209,o), +(162,209,cs), +(221,209,o), +(225,124,o), +(287,124,cs), +(303,124,o), +(319,128,o), +(330,134,c), +(334,159,o), +(345,177,o), +(364,186,c), +(251,198,o), +(183,264,o), +(183,366,cs), +(183,416,o), +(198,451,o), +(223,477,c), +(213,509,o), +(214,550,o), +(227,579,c), +(263,581,o), +(304,565,o), +(328,539,c), +(359,549,o), +(390,553,o), +(423,553,cs), +(455,553,o), +(486,549,o), +(518,539,c), +(542,565,o), +(582,581,o), +(619,579,c), +(632,550,o), +(633,509,o), +(623,477,c), +(647,451,o), +(662,416,o), +(662,366,cs), +(662,264,o), +(594,198,o), +(481,186,c), +(504,175,o), +(517,150,o), +(517,115,cs), +(517,10,ls), +(517,-6,o), +(530,-12,o), +(543,-8,cs), +(693,39,o), +(797,177,o), +(797,356,cs), +(797,585,o), +(647,738,o), +(423,738,cs), +(198,738,o), +(49,585,o), +(49,356,cs), +(49,177,o), +(152,39,o), +(303,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,150,o), +(223,152,o), +(223,155,cs), +(223,158,o), +(220,160,o), +(216,160,cs), +(212,160,o), +(210,158,o), +(210,155,cs), +(210,152,o), +(213,150,o), +(217,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(189,185,o), +(191,187,o), +(191,189,cs), +(191,192,o), +(189,193,o), +(185,193,cs), +(182,193,o), +(180,191,o), +(180,189,cs), +(180,186,o), +(182,185,o), +(186,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,171,o), +(206,173,o), +(206,175,cs), +(206,178,o), +(204,179,o), +(200,179,cs), +(197,179,o), +(195,177,o), +(195,175,cs), +(195,172,o), +(197,171,o), +(201,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(263,109,o), +(266,111,o), +(266,115,cs), +(266,119,o), +(263,121,o), +(258,121,cs), +(254,121,o), +(251,119,o), +(251,115,cs), +(251,111,o), +(254,109,o), +(259,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,104,o), +(297,106,o), +(297,110,cs), +(297,114,o), +(294,116,o), +(289,116,cs), +(285,116,o), +(282,114,o), +(282,110,cs), +(282,106,o), +(285,104,o), +(290,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(324,110,o), +(327,112,o), +(327,116,cs), +(327,120,o), +(324,122,o), +(319,122,cs), +(315,122,o), +(312,120,o), +(312,116,cs), +(312,112,o), +(315,110,o), +(320,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(238,127,o), +(241,129,o), +(241,133,cs), +(241,137,o), +(238,139,o), +(234,139,cs), +(230,139,o), +(227,137,o), +(227,133,cs), +(227,129,o), +(230,127,o), +(235,127,cs) +); +} +); +width = 844; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,-12,o), +(367,-6,o), +(367,10,cs), +(367,80,l), +(352,77,o), +(340,76,o), +(328,76,cs), +(256,76,o), +(246,122,o), +(224,156,cs), +(209,180,o), +(183,186,o), +(183,199,cs), +(183,205,o), +(188,209,o), +(197,209,cs), +(256,209,o), +(260,124,o), +(324,124,cs), +(340,124,o), +(357,128,o), +(368,134,c), +(372,159,o), +(383,177,o), +(403,186,c), +(288,198,o), +(218,264,o), +(218,366,cs), +(218,416,o), +(233,451,o), +(258,477,c), +(248,509,o), +(249,550,o), +(262,579,c), +(300,581,o), +(342,565,o), +(366,539,c), +(398,549,o), +(430,553,o), +(463,553,cs), +(496,553,o), +(528,549,o), +(560,539,c), +(584,565,o), +(626,581,o), +(664,579,c), +(677,550,o), +(678,509,o), +(668,477,c), +(693,451,o), +(708,416,o), +(708,366,cs), +(708,264,o), +(638,198,o), +(523,186,c), +(546,175,o), +(559,150,o), +(559,115,cs), +(559,10,ls), +(559,-6,o), +(573,-12,o), +(586,-8,cs), +(742,42,o), +(846,177,o), +(846,356,cs), +(846,585,o), +(693,738,o), +(463,738,cs), +(233,738,o), +(80,585,o), +(80,356,cs), +(80,177,o), +(184,42,o), +(340,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,150,o), +(258,152,o), +(258,155,cs), +(258,158,o), +(255,160,o), +(251,160,cs), +(247,160,o), +(245,158,o), +(245,155,cs), +(245,152,o), +(248,150,o), +(252,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,185,o), +(226,187,o), +(226,189,cs), +(226,192,o), +(224,193,o), +(220,193,cs), +(217,193,o), +(215,191,o), +(215,189,cs), +(215,186,o), +(217,185,o), +(221,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,171,o), +(241,173,o), +(241,175,cs), +(241,178,o), +(239,179,o), +(235,179,cs), +(232,179,o), +(230,177,o), +(230,175,cs), +(230,172,o), +(232,171,o), +(236,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,109,o), +(303,111,o), +(303,115,cs), +(303,119,o), +(300,121,o), +(295,121,cs), +(291,121,o), +(288,119,o), +(288,115,cs), +(288,111,o), +(291,109,o), +(296,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,104,o), +(334,106,o), +(334,110,cs), +(334,114,o), +(331,116,o), +(326,116,cs), +(322,116,o), +(319,114,o), +(319,110,cs), +(319,106,o), +(322,104,o), +(327,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(362,110,o), +(365,112,o), +(365,116,cs), +(365,120,o), +(362,122,o), +(357,122,cs), +(353,122,o), +(350,120,o), +(350,116,cs), +(350,112,o), +(353,110,o), +(358,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,127,o), +(277,129,o), +(277,133,cs), +(277,137,o), +(274,139,o), +(269,139,cs), +(265,139,o), +(262,137,o), +(262,133,cs), +(262,129,o), +(265,127,o), +(270,127,cs) +); +} +); +width = 885; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-12,o), +(365,-6,o), +(365,10,cs), +(365,80,l), +(350,77,o), +(338,76,o), +(326,76,cs), +(254,76,o), +(244,122,o), +(222,156,cs), +(207,180,o), +(181,186,o), +(181,199,cs), +(181,205,o), +(186,209,o), +(195,209,cs), +(254,209,o), +(258,124,o), +(322,124,cs), +(338,124,o), +(355,128,o), +(366,134,c), +(370,159,o), +(381,177,o), +(401,186,c), +(286,198,o), +(216,264,o), +(216,366,cs), +(216,416,o), +(231,451,o), +(256,477,c), +(246,509,o), +(247,550,o), +(260,579,c), +(298,581,o), +(340,565,o), +(364,539,c), +(396,549,o), +(428,553,o), +(461,553,cs), +(494,553,o), +(526,549,o), +(558,539,c), +(582,565,o), +(624,581,o), +(662,579,c), +(675,550,o), +(676,509,o), +(666,477,c), +(691,451,o), +(706,416,o), +(706,366,cs), +(706,264,o), +(636,198,o), +(521,186,c), +(544,175,o), +(557,150,o), +(557,115,cs), +(557,10,ls), +(557,-6,o), +(571,-12,o), +(584,-8,cs), +(740,42,o), +(844,177,o), +(844,356,cs), +(844,585,o), +(691,738,o), +(461,738,cs), +(231,738,o), +(78,585,o), +(78,356,cs), +(78,177,o), +(182,42,o), +(338,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,150,o), +(256,152,o), +(256,155,cs), +(256,158,o), +(253,160,o), +(249,160,cs), +(245,160,o), +(243,158,o), +(243,155,cs), +(243,152,o), +(246,150,o), +(250,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,185,o), +(224,187,o), +(224,189,cs), +(224,192,o), +(222,193,o), +(218,193,cs), +(215,193,o), +(213,191,o), +(213,189,cs), +(213,186,o), +(215,185,o), +(219,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,171,o), +(239,173,o), +(239,175,cs), +(239,178,o), +(237,179,o), +(233,179,cs), +(230,179,o), +(228,177,o), +(228,175,cs), +(228,172,o), +(230,171,o), +(234,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,109,o), +(301,111,o), +(301,115,cs), +(301,119,o), +(298,121,o), +(293,121,cs), +(289,121,o), +(286,119,o), +(286,115,cs), +(286,111,o), +(289,109,o), +(294,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,104,o), +(332,106,o), +(332,110,cs), +(332,114,o), +(329,116,o), +(324,116,cs), +(320,116,o), +(317,114,o), +(317,110,cs), +(317,106,o), +(320,104,o), +(325,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(360,110,o), +(363,112,o), +(363,116,cs), +(363,120,o), +(360,122,o), +(355,122,cs), +(351,122,o), +(348,120,o), +(348,116,cs), +(348,112,o), +(351,110,o), +(356,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,127,o), +(275,129,o), +(275,133,cs), +(275,137,o), +(272,139,o), +(267,139,cs), +(263,139,o), +(260,137,o), +(260,133,cs), +(260,129,o), +(263,127,o), +(268,127,cs) +); +} +); +width = 886; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,-12,o), +(367,-6,o), +(367,10,cs), +(367,80,l), +(352,77,o), +(340,76,o), +(328,76,cs), +(256,76,o), +(246,122,o), +(224,156,cs), +(209,180,o), +(183,186,o), +(183,199,cs), +(183,205,o), +(188,209,o), +(197,209,cs), +(256,209,o), +(260,124,o), +(324,124,cs), +(340,124,o), +(357,128,o), +(368,134,c), +(372,159,o), +(383,177,o), +(403,186,c), +(288,198,o), +(218,264,o), +(218,366,cs), +(218,416,o), +(233,451,o), +(258,477,c), +(248,509,o), +(249,550,o), +(262,579,c), +(300,581,o), +(342,565,o), +(366,539,c), +(398,549,o), +(430,553,o), +(463,553,cs), +(496,553,o), +(528,549,o), +(560,539,c), +(584,565,o), +(626,581,o), +(664,579,c), +(677,550,o), +(678,509,o), +(668,477,c), +(693,451,o), +(708,416,o), +(708,366,cs), +(708,264,o), +(638,198,o), +(523,186,c), +(546,175,o), +(559,150,o), +(559,115,cs), +(559,10,ls), +(559,-6,o), +(573,-12,o), +(586,-8,cs), +(742,42,o), +(846,177,o), +(846,356,cs), +(846,585,o), +(693,738,o), +(463,738,cs), +(233,738,o), +(80,585,o), +(80,356,cs), +(80,177,o), +(184,42,o), +(340,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,150,o), +(258,152,o), +(258,155,cs), +(258,158,o), +(255,160,o), +(251,160,cs), +(247,160,o), +(245,158,o), +(245,155,cs), +(245,152,o), +(248,150,o), +(252,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,185,o), +(226,187,o), +(226,189,cs), +(226,192,o), +(224,193,o), +(220,193,cs), +(217,193,o), +(215,191,o), +(215,189,cs), +(215,186,o), +(217,185,o), +(221,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,171,o), +(241,173,o), +(241,175,cs), +(241,178,o), +(239,179,o), +(235,179,cs), +(232,179,o), +(230,177,o), +(230,175,cs), +(230,172,o), +(232,171,o), +(236,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,109,o), +(303,111,o), +(303,115,cs), +(303,119,o), +(300,121,o), +(295,121,cs), +(291,121,o), +(288,119,o), +(288,115,cs), +(288,111,o), +(291,109,o), +(296,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,104,o), +(334,106,o), +(334,110,cs), +(334,114,o), +(331,116,o), +(326,116,cs), +(322,116,o), +(319,114,o), +(319,110,cs), +(319,106,o), +(322,104,o), +(327,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(362,110,o), +(365,112,o), +(365,116,cs), +(365,120,o), +(362,122,o), +(357,122,cs), +(353,122,o), +(350,120,o), +(350,116,cs), +(350,112,o), +(353,110,o), +(358,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,127,o), +(277,129,o), +(277,133,cs), +(277,137,o), +(274,139,o), +(269,139,cs), +(265,139,o), +(262,137,o), +(262,133,cs), +(262,129,o), +(265,127,o), +(270,127,cs) +); +} +); +width = 885; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-12,o), +(365,-6,o), +(365,10,cs), +(365,80,l), +(350,77,o), +(338,76,o), +(326,76,cs), +(254,76,o), +(244,122,o), +(222,156,cs), +(207,180,o), +(181,186,o), +(181,199,cs), +(181,205,o), +(186,209,o), +(195,209,cs), +(254,209,o), +(258,124,o), +(322,124,cs), +(338,124,o), +(355,128,o), +(366,134,c), +(370,159,o), +(381,177,o), +(401,186,c), +(286,198,o), +(216,264,o), +(216,366,cs), +(216,416,o), +(231,451,o), +(256,477,c), +(246,509,o), +(247,550,o), +(260,579,c), +(298,581,o), +(340,565,o), +(364,539,c), +(396,549,o), +(428,553,o), +(461,553,cs), +(494,553,o), +(526,549,o), +(558,539,c), +(582,565,o), +(624,581,o), +(662,579,c), +(675,550,o), +(676,509,o), +(666,477,c), +(691,451,o), +(706,416,o), +(706,366,cs), +(706,264,o), +(636,198,o), +(521,186,c), +(544,175,o), +(557,150,o), +(557,115,cs), +(557,10,ls), +(557,-6,o), +(571,-12,o), +(584,-8,cs), +(740,42,o), +(844,177,o), +(844,356,cs), +(844,585,o), +(691,738,o), +(461,738,cs), +(231,738,o), +(78,585,o), +(78,356,cs), +(78,177,o), +(182,42,o), +(338,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,150,o), +(256,152,o), +(256,155,cs), +(256,158,o), +(253,160,o), +(249,160,cs), +(245,160,o), +(243,158,o), +(243,155,cs), +(243,152,o), +(246,150,o), +(250,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,185,o), +(224,187,o), +(224,189,cs), +(224,192,o), +(222,193,o), +(218,193,cs), +(215,193,o), +(213,191,o), +(213,189,cs), +(213,186,o), +(215,185,o), +(219,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,171,o), +(239,173,o), +(239,175,cs), +(239,178,o), +(237,179,o), +(233,179,cs), +(230,179,o), +(228,177,o), +(228,175,cs), +(228,172,o), +(230,171,o), +(234,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,109,o), +(301,111,o), +(301,115,cs), +(301,119,o), +(298,121,o), +(293,121,cs), +(289,121,o), +(286,119,o), +(286,115,cs), +(286,111,o), +(289,109,o), +(294,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,104,o), +(332,106,o), +(332,110,cs), +(332,114,o), +(329,116,o), +(324,116,cs), +(320,116,o), +(317,114,o), +(317,110,cs), +(317,106,o), +(320,104,o), +(325,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(360,110,o), +(363,112,o), +(363,116,cs), +(363,120,o), +(360,122,o), +(355,122,cs), +(351,122,o), +(348,120,o), +(348,116,cs), +(348,112,o), +(351,110,o), +(356,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,127,o), +(275,129,o), +(275,133,cs), +(275,137,o), +(272,139,o), +(267,139,cs), +(263,139,o), +(260,137,o), +(260,133,cs), +(260,129,o), +(263,127,o), +(268,127,cs) +); +} +); +width = 886; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,-12,o), +(367,-6,o), +(367,10,cs), +(367,80,l), +(352,77,o), +(340,76,o), +(328,76,cs), +(256,76,o), +(246,122,o), +(224,156,cs), +(209,180,o), +(183,186,o), +(183,199,cs), +(183,205,o), +(188,209,o), +(197,209,cs), +(256,209,o), +(260,124,o), +(324,124,cs), +(340,124,o), +(357,128,o), +(368,134,c), +(372,159,o), +(383,177,o), +(403,186,c), +(288,198,o), +(218,264,o), +(218,366,cs), +(218,416,o), +(233,451,o), +(258,477,c), +(248,509,o), +(249,550,o), +(262,579,c), +(300,581,o), +(342,565,o), +(366,539,c), +(398,549,o), +(430,553,o), +(463,553,cs), +(496,553,o), +(528,549,o), +(560,539,c), +(584,565,o), +(626,581,o), +(664,579,c), +(677,550,o), +(678,509,o), +(668,477,c), +(693,451,o), +(708,416,o), +(708,366,cs), +(708,264,o), +(638,198,o), +(523,186,c), +(546,175,o), +(559,150,o), +(559,115,cs), +(559,10,ls), +(559,-6,o), +(573,-12,o), +(586,-8,cs), +(742,42,o), +(846,177,o), +(846,356,cs), +(846,585,o), +(693,738,o), +(463,738,cs), +(233,738,o), +(80,585,o), +(80,356,cs), +(80,177,o), +(184,42,o), +(340,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,150,o), +(258,152,o), +(258,155,cs), +(258,158,o), +(255,160,o), +(251,160,cs), +(247,160,o), +(245,158,o), +(245,155,cs), +(245,152,o), +(248,150,o), +(252,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,185,o), +(226,187,o), +(226,189,cs), +(226,192,o), +(224,193,o), +(220,193,cs), +(217,193,o), +(215,191,o), +(215,189,cs), +(215,186,o), +(217,185,o), +(221,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,171,o), +(241,173,o), +(241,175,cs), +(241,178,o), +(239,179,o), +(235,179,cs), +(232,179,o), +(230,177,o), +(230,175,cs), +(230,172,o), +(232,171,o), +(236,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,109,o), +(303,111,o), +(303,115,cs), +(303,119,o), +(300,121,o), +(295,121,cs), +(291,121,o), +(288,119,o), +(288,115,cs), +(288,111,o), +(291,109,o), +(296,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,104,o), +(334,106,o), +(334,110,cs), +(334,114,o), +(331,116,o), +(326,116,cs), +(322,116,o), +(319,114,o), +(319,110,cs), +(319,106,o), +(322,104,o), +(327,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(362,110,o), +(365,112,o), +(365,116,cs), +(365,120,o), +(362,122,o), +(357,122,cs), +(353,122,o), +(350,120,o), +(350,116,cs), +(350,112,o), +(353,110,o), +(358,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,127,o), +(277,129,o), +(277,133,cs), +(277,137,o), +(274,139,o), +(269,139,cs), +(265,139,o), +(262,137,o), +(262,133,cs), +(262,129,o), +(265,127,o), +(270,127,cs) +); +} +); +width = 885; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-12,o), +(365,-6,o), +(365,10,cs), +(365,80,l), +(350,77,o), +(338,76,o), +(326,76,cs), +(254,76,o), +(244,122,o), +(222,156,cs), +(207,180,o), +(181,186,o), +(181,199,cs), +(181,205,o), +(186,209,o), +(195,209,cs), +(254,209,o), +(258,124,o), +(322,124,cs), +(338,124,o), +(355,128,o), +(366,134,c), +(370,159,o), +(381,177,o), +(401,186,c), +(286,198,o), +(216,264,o), +(216,366,cs), +(216,416,o), +(231,451,o), +(256,477,c), +(246,509,o), +(247,550,o), +(260,579,c), +(298,581,o), +(340,565,o), +(364,539,c), +(396,549,o), +(428,553,o), +(461,553,cs), +(494,553,o), +(526,549,o), +(558,539,c), +(582,565,o), +(624,581,o), +(662,579,c), +(675,550,o), +(676,509,o), +(666,477,c), +(691,451,o), +(706,416,o), +(706,366,cs), +(706,264,o), +(636,198,o), +(521,186,c), +(544,175,o), +(557,150,o), +(557,115,cs), +(557,10,ls), +(557,-6,o), +(571,-12,o), +(584,-8,cs), +(740,42,o), +(844,177,o), +(844,356,cs), +(844,585,o), +(691,738,o), +(461,738,cs), +(231,738,o), +(78,585,o), +(78,356,cs), +(78,177,o), +(182,42,o), +(338,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,150,o), +(256,152,o), +(256,155,cs), +(256,158,o), +(253,160,o), +(249,160,cs), +(245,160,o), +(243,158,o), +(243,155,cs), +(243,152,o), +(246,150,o), +(250,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,185,o), +(224,187,o), +(224,189,cs), +(224,192,o), +(222,193,o), +(218,193,cs), +(215,193,o), +(213,191,o), +(213,189,cs), +(213,186,o), +(215,185,o), +(219,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,171,o), +(239,173,o), +(239,175,cs), +(239,178,o), +(237,179,o), +(233,179,cs), +(230,179,o), +(228,177,o), +(228,175,cs), +(228,172,o), +(230,171,o), +(234,171,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,109,o), +(301,111,o), +(301,115,cs), +(301,119,o), +(298,121,o), +(293,121,cs), +(289,121,o), +(286,119,o), +(286,115,cs), +(286,111,o), +(289,109,o), +(294,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,104,o), +(332,106,o), +(332,110,cs), +(332,114,o), +(329,116,o), +(324,116,cs), +(320,116,o), +(317,114,o), +(317,110,cs), +(317,106,o), +(320,104,o), +(325,104,cs) +); +}, +{ +closed = 1; +nodes = ( +(360,110,o), +(363,112,o), +(363,116,cs), +(363,120,o), +(360,122,o), +(355,122,cs), +(351,122,o), +(348,120,o), +(348,116,cs), +(348,112,o), +(351,110,o), +(356,110,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,127,o), +(275,129,o), +(275,133,cs), +(275,137,o), +(272,139,o), +(267,139,cs), +(263,139,o), +(260,137,o), +(260,133,cs), +(260,129,o), +(263,127,o), +(268,127,cs) +); +} +); +width = 886; +} +); +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_published.P_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_published.P_.glyph new file mode 100644 index 00000000..5bba616a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_published.P_.glyph @@ -0,0 +1,886 @@ +{ +export = 0; +glyphname = _published.P; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (160,366); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,132,l), +(158,514,l), +(176,514,ls), +(200,514,o), +(212,496,o), +(212,442,cs), +(212,393,o), +(204,367,o), +(176,367,cs), +(148,367,l), +(148,279,l), +(180,279,ls), +(283,279,o), +(331,334,o), +(331,440,cs), +(331,546,o), +(283,601,o), +(180,601,cs), +(40,601,l), +(40,132,l) +); +} +); +width = 371; +}, +{ +anchors = ( +{ +name = _center; +pos = (106,365); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(70,160,l), +(70,546,l), +(117,546,ls), +(167,546,o), +(196,515,o), +(196,450,cs), +(196,386,o), +(166,357,o), +(117,357,cs), +(62,357,l), +(62,330,l), +(118,330,ls), +(193,330,o), +(227,378,o), +(227,450,cs), +(227,524,o), +(192,571,o), +(118,571,cs), +(40,571,l), +(40,160,l) +); +} +); +width = 267; +}, +{ +anchors = ( +{ +name = _center; +pos = (176,363); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,165,l), +(76,532,l), +(227,532,ls), +(298,532,o), +(337,498,o), +(337,440,cs), +(337,384,o), +(297,349,o), +(227,349,cs), +(68,349,l), +(68,319,l), +(230,319,ls), +(316,319,o), +(372,364,o), +(372,441,cs), +(372,517,o), +(319,562,o), +(230,562,cs), +(40,562,l), +(40,165,l) +); +} +); +width = 412; +}, +{ +anchors = ( +{ +name = _center; +pos = (218,364); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,167,l), +(196,463,l), +(239,463,ls), +(279,463,o), +(299,455,o), +(299,425,cs), +(299,403,o), +(289,387,o), +(239,387,cs), +(180,387,l), +(180,297,l), +(271,297,ls), +(392,297,o), +(455,340,o), +(455,430,cs), +(455,516,o), +(399,564,o), +(271,564,cs), +(40,564,l), +(40,167,l) +); +} +); +width = 495; +}, +{ +anchors = ( +{ +name = _center; +pos = (86,365); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(50,160,l), +(50,546,l), +(97,546,ls), +(147,546,o), +(176,515,o), +(176,450,cs), +(176,386,o), +(146,357,o), +(97,357,cs), +(42,357,l), +(42,330,l), +(98,330,ls), +(173,330,o), +(207,378,o), +(207,450,cs), +(207,524,o), +(172,571,o), +(98,571,cs), +(20,571,l), +(20,160,l) +); +} +); +width = 227; +}, +{ +anchors = ( +{ +name = _center; +pos = (150,366); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,132,l), +(148,514,l), +(166,514,ls), +(190,514,o), +(202,496,o), +(202,442,cs), +(202,393,o), +(194,367,o), +(166,367,cs), +(138,367,l), +(138,279,l), +(170,279,ls), +(273,279,o), +(321,334,o), +(321,440,cs), +(321,546,o), +(273,601,o), +(170,601,cs), +(30,601,l), +(30,132,l) +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = _center; +pos = (122,363); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,165,l), +(52,532,l), +(166,532,ls), +(231,532,o), +(271,499,o), +(271,440,cs), +(271,382,o), +(232,347,o), +(166,347,cs), +(45,347,l), +(45,319,l), +(170,319,ls), +(253,319,o), +(305,367,o), +(305,441,cs), +(305,517,o), +(253,562,o), +(171,562,cs), +(20,562,l), +(20,165,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 325; +}, +{ +anchors = ( +{ +name = _center; +pos = (183,365); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,167,l), +(158,471,l), +(188,471,ls), +(221,471,o), +(250,466,o), +(250,426,cs), +(250,382,o), +(221,378,o), +(188,378,cs), +(142,378,l), +(142,293,l), +(223,293,ls), +(340,293,o), +(389,349,o), +(389,429,cs), +(389,515,o), +(334,564,o), +(223,564,cs), +(19,564,l), +(19,167,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 408; +}, +{ +anchors = ( +{ +name = _center; +pos = (166,363); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,165,l), +(66,532,l), +(217,532,ls), +(288,532,o), +(327,498,o), +(327,440,cs), +(327,384,o), +(287,349,o), +(217,349,cs), +(58,349,l), +(58,319,l), +(220,319,ls), +(306,319,o), +(362,364,o), +(362,441,cs), +(362,517,o), +(309,562,o), +(220,562,cs), +(30,562,l), +(30,165,l) +); +} +); +width = 392; +}, +{ +anchors = ( +{ +name = _center; +pos = (208,364); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,167,l), +(186,463,l), +(229,463,ls), +(269,463,o), +(289,455,o), +(289,425,cs), +(289,403,o), +(279,387,o), +(229,387,cs), +(170,387,l), +(170,297,l), +(261,297,ls), +(382,297,o), +(445,340,o), +(445,430,cs), +(445,516,o), +(389,564,o), +(261,564,cs), +(30,564,l), +(30,167,l) +); +} +); +width = 475; +}, +{ +anchors = ( +{ +name = _center; +pos = (137,363); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(67,165,l), +(67,532,l), +(179,532,ls), +(244,532,o), +(282,499,o), +(282,440,cs), +(282,382,o), +(245,347,o), +(179,347,cs), +(60,347,l), +(60,319,l), +(183,319,ls), +(264,319,o), +(316,367,o), +(316,441,cs), +(316,517,o), +(264,562,o), +(184,562,cs), +(37,562,l), +(37,165,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 351; +}, +{ +anchors = ( +{ +name = _center; +pos = (194,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(172,167,l), +(172,471,l), +(197,471,ls), +(227,471,o), +(253,466,o), +(253,426,cs), +(253,382,o), +(227,378,o), +(197,378,cs), +(156,378,l), +(156,293,l), +(232,293,ls), +(345,293,o), +(391,349,o), +(391,429,cs), +(391,515,o), +(339,564,o), +(232,564,cs), +(35,564,l), +(35,167,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 426; +}, +{ +anchors = ( +{ +name = _center; +pos = (171,365); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,160,l), +(135,546,l), +(182,546,ls), +(232,546,o), +(261,515,o), +(261,450,cs), +(261,386,o), +(231,357,o), +(182,357,cs), +(127,357,l), +(127,330,l), +(183,330,ls), +(258,330,o), +(292,378,o), +(292,450,cs), +(292,524,o), +(257,571,o), +(183,571,cs), +(105,571,l), +(105,160,l) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = _center; +pos = (228,366); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,132,l), +(226,514,l), +(244,514,ls), +(268,514,o), +(280,496,o), +(280,442,cs), +(280,393,o), +(272,367,o), +(244,367,cs), +(216,367,l), +(216,279,l), +(248,279,ls), +(351,279,o), +(399,334,o), +(399,440,cs), +(399,546,o), +(351,601,o), +(248,601,cs), +(108,601,l), +(108,132,l) +); +} +); +width = 410; +}, +{ +anchors = ( +{ +name = _center; +pos = (205,363); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,165,l), +(135,532,l), +(249,532,ls), +(314,532,o), +(354,499,o), +(354,440,cs), +(354,382,o), +(315,347,o), +(249,347,cs), +(128,347,l), +(128,319,l), +(253,319,ls), +(336,319,o), +(388,367,o), +(388,441,cs), +(388,517,o), +(336,562,o), +(254,562,cs), +(103,562,l), +(103,165,l) +); +} +); +width = 393; +}, +{ +anchors = ( +{ +name = _center; +pos = (264,365); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,167,l), +(239,471,l), +(269,471,ls), +(302,471,o), +(331,466,o), +(331,426,cs), +(331,382,o), +(302,378,o), +(269,378,cs), +(223,378,l), +(223,293,l), +(304,293,ls), +(421,293,o), +(470,349,o), +(470,429,cs), +(470,515,o), +(415,564,o), +(304,564,cs), +(100,564,l), +(100,167,l) +); +} +); +width = 481; +}, +{ +anchors = ( +{ +name = _center; +pos = (239,363); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(139,165,l), +(139,532,l), +(290,532,ls), +(361,532,o), +(400,498,o), +(400,440,cs), +(400,384,o), +(360,349,o), +(290,349,cs), +(131,349,l), +(131,319,l), +(293,319,ls), +(379,319,o), +(435,364,o), +(435,441,cs), +(435,517,o), +(382,562,o), +(293,562,cs), +(103,562,l), +(103,165,l) +); +} +); +width = 440; +}, +{ +anchors = ( +{ +name = _center; +pos = (278,364); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(256,167,l), +(256,463,l), +(299,463,ls), +(339,463,o), +(359,455,o), +(359,425,cs), +(359,403,o), +(349,387,o), +(299,387,cs), +(240,387,l), +(240,297,l), +(331,297,ls), +(452,297,o), +(515,340,o), +(515,430,cs), +(515,516,o), +(459,564,o), +(331,564,cs), +(100,564,l), +(100,167,l) +); +} +); +width = 526; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_slash.equal.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_slash.equal.glyph new file mode 100644 index 00000000..afd018c5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_slash.equal.glyph @@ -0,0 +1,386 @@ +{ +export = 0; +glyphname = _slash.equal; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (194,365); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,l), +(347,729,l), +(317,729,l), +(40,0,l) +); +} +); +width = 387; +}, +{ +anchors = ( +{ +name = _center; +pos = (239,365); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(437,729,l), +(317,729,l), +(40,0,l) +); +} +); +width = 477; +}, +{ +anchors = ( +{ +name = _center; +pos = (227,365); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,0,l), +(412,729,l), +(377,729,l), +(40,0,l) +); +} +); +width = 452; +}, +{ +anchors = ( +{ +name = _center; +pos = (269,365); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(497,729,l), +(377,729,l), +(40,0,l) +); +} +); +width = 537; +}, +{ +anchors = ( +{ +name = _center; +pos = (174,365); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,0,l), +(327,729,l), +(297,729,l), +(20,0,l) +); +} +); +width = 347; +}, +{ +anchors = ( +{ +name = _center; +pos = (229,365); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,0,l), +(427,729,l), +(307,729,l), +(30,0,l) +); +} +); +width = 457; +}, +{ +anchors = ( +{ +name = _center; +pos = (207,365); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(392,729,l), +(357,729,l), +(20,0,l) +); +} +); +width = 412; +}, +{ +anchors = ( +{ +name = _center; +pos = (248,365); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,0,l), +(476,729,l), +(356,729,l), +(19,0,l) +); +} +); +width = 495; +}, +{ +anchors = ( +{ +name = _center; +pos = (217,365); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(67,0,l), +(402,729,l), +(367,729,l), +(30,0,l) +); +} +); +width = 432; +}, +{ +anchors = ( +{ +name = _center; +pos = (259,365); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,0,l), +(487,729,l), +(367,729,l), +(30,0,l) +); +} +); +width = 517; +}, +{ +anchors = ( +{ +name = _center; +pos = (220,365); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,l), +(401,729,l), +(366,729,l), +(37,0,l) +); +} +); +width = 438; +}, +{ +anchors = ( +{ +name = _center; +pos = (256,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(477,729,l), +(358,729,l), +(35,0,l) +); +} +); +width = 512; +}, +{ +anchors = ( +{ +name = _center; +pos = (216,365); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(19,0,l), +(444,729,l), +(414,729,l), +(-13,0,l) +); +} +); +width = 386; +}, +{ +anchors = ( +{ +name = _center; +pos = (258,365); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(531,729,l), +(411,729,l), +(-16,0,l) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = _center; +pos = (248,365); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(23,0,l), +(508,729,l), +(473,729,l), +(-14,0,l) +); +} +); +width = 451; +}, +{ +anchors = ( +{ +name = _center; +pos = (288,365); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(591,729,l), +(471,729,l), +(-16,0,l) +); +} +); +width = 536; +}, +{ +anchors = ( +{ +name = _center; +pos = (248,365); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(23,0,l), +(508,729,l), +(473,729,l), +(-14,0,l) +); +} +); +width = 451; +}, +{ +anchors = ( +{ +name = _center; +pos = (288,365); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(591,729,l), +(471,729,l), +(-16,0,l) +); +} +); +width = 536; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_tail-diagonal.Q_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_tail-diagonal.Q_.glyph new file mode 100644 index 00000000..a20c552d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_tail-diagonal.Q_.glyph @@ -0,0 +1,402 @@ +{ +export = 0; +glyphname = "_tail-diagonal.Q"; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (451,10); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,0,l), +(504,0,l), +(510,137,l), +(485,137,l), +(234,92,l) +); +} +); +width = 521; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (373,10); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-10,l), +(403,0,l), +(403,28,l), +(330,23,l), +(211,6,l) +); +} +); +width = 432; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (354,10); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(0,176,l), +(424,-50,l), +(442,-15,l), +(320,46,l), +(17,211,l) +); +} +); +width = 442; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (449,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(0,209,l), +(438,-67,l), +(525,67,l), +(349,179,l), +(86,344,l) +); +} +); +width = 525; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (246,10); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,-10,l), +(360,0,l), +(360,28,l), +(310,25,l), +(179,9,l) +); +} +); +width = 392; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (444,10); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,-10,l), +(490,0,l), +(490,137,l), +(455,136,l), +(233,99,l) +); +} +); +width = 501; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (348,10); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(-15,195,l), +(390,-48,l), +(409,-15,l), +(296,50,l), +(3,227,l) +); +} +); +width = 409; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (324,10); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(-75,218,l), +(307,-63,l), +(405,64,l), +(261,169,l), +(21,345,l) +); +} +); +width = 420; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (337,10); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(-17,176,l), +(407,-50,l), +(425,-15,l), +(303,46,l), +(0,211,l) +); +} +); +width = 425; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (356,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(-93,209,l), +(345,-67,l), +(432,67,l), +(256,179,l), +(-7,344,l) +); +} +); +width = 446; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (326,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(-4,169,l), +(390,-49,l), +(407,-17,l), +(295,43,l), +(12,202,l) +); +} +); +width = 402; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (339,10); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(-37,218,l), +(332,-61,l), +(429,66,l), +(287,173,l), +(58,345,l) +); +} +); +width = 409; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (330,10); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,l), +(368,0,l), +(374,28,l), +(323,28,l), +(196,22,l) +); +} +); +width = 434; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (399,10); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,0,l), +(451,0,l), +(485,137,l), +(460,137,l), +(200,92,l) +); +} +); +width = 523; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (625,10); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,0,l), +(723,0,l), +(731,34,l), +(605,34,l), +(357,23,l) +); +} +); +width = 807; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (653,10); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,0,l), +(784,0,l), +(816,155,l), +(766,155,l), +(371,78,l) +); +} +); +width = 858; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (709,10); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(393,-9,l), +(821,-9,l), +(829,25,l), +(714,25,l), +(399,19,l) +); +} +); +width = 892; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (745,10); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,0,l), +(896,0,l), +(930,168,l), +(901,168,l), +(474,141,l) +); +} +); +width = 955; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_tail.Q_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_tail.Q_.glyph new file mode 100644 index 00000000..e71c22b7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_tail.Q_.glyph @@ -0,0 +1,750 @@ +{ +export = 0; +glyphname = _tail.Q; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (37,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,-136,l), +(166,-100,l), +(60,4,l), +(23,4,l), +(159,-136,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(37,-10,l), +(229,0,l), +(229,28,l), +(156,23,l), +(37,6,l) +); +} +); +width = 189; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (84,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (84,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(275,-176,l), +(275,-33,l), +(153,28,l), +(15,28,l), +(261,-176,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(71,-9,l), +(341,0,l), +(347,137,l), +(322,137,l), +(71,83,l) +); +} +); +width = 290; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (37,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (45,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(313,-167,l), +(313,-128,l), +(102,3,l), +(45,3,l), +(306,-167,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(37,-7,l), +(465,0,l), +(465,34,l), +(350,33,l), +(37,21,l) +); +} +); +width = 237; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (71,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (315,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(641,-178,l), +(641,-14,l), +(456,38,l), +(173,38,l), +(608,-178,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(71,-9,l), +(547,0,l), +(547,168,l), +(518,168,l), +(117,132,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (17,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,-136,l), +(166,-100,l), +(60,4,l), +(23,4,l), +(159,-136,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(17,-10,l), +(198,0,l), +(198,28,l), +(148,25,l), +(17,9,l) +); +} +); +width = 151; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (74,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (84,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(275,-176,l), +(275,-33,l), +(153,28,l), +(15,28,l), +(261,-176,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(67,-10,l), +(324,0,l), +(324,137,l), +(289,136,l), +(67,99,l) +); +} +); +width = 275; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (17,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (45,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(308,-167,l), +(308,-127,l), +(107,2,l), +(45,2,l), +(301,-167,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(17,-8,l), +(388,0,l), +(388,34,l), +(262,31,l), +(17,15,l) +); +} +); +width = 316; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (47,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (158,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(454,-177,l), +(454,-4,l), +(270,28,l), +(45,28,l), +(422,-177,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(47,-10,l), +(459,0,l), +(459,155,l), +(414,154,l), +(45,108,l) +); +} +); +width = 463; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (27,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (45,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(313,-167,l), +(313,-128,l), +(102,3,l), +(45,3,l), +(306,-167,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(27,-9,l), +(455,0,l), +(455,36,l), +(340,34,l), +(27,19,l) +); +} +); +width = 222; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (61,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (315,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(641,-178,l), +(641,-14,l), +(456,38,l), +(173,38,l), +(608,-178,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(61,-10,l), +(537,0,l), +(537,168,l), +(477,166,l), +(61,131,l) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (34,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (45,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(308,-167,l), +(308,-127,l), +(107,2,l), +(45,2,l), +(301,-167,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(34,-8,l), +(397,0,l), +(397,34,l), +(273,29,l), +(34,15,l) +); +} +); +width = 341; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (65,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (158,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(454,-177,l), +(454,-4,l), +(270,28,l), +(45,28,l), +(422,-177,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(65,-10,l), +(478,0,l), +(478,155,l), +(433,153,l), +(63,68,l) +); +} +); +width = 474; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (34,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (6,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(128,-166,l), +(136,-137,l), +(18,11,l), +(-11,11,l), +(123,-166,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,-9,l), +(223,0,l), +(229,28,l), +(178,26,l), +(44,13,l) +); +} +); +width = 263; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (70,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (46,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(200,-176,l), +(229,-34,l), +(127,25,l), +(-9,8,l), +(176,-176,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,-10,l), +(327,0,l), +(361,137,l), +(336,137,l), +(95,82,l) +); +} +); +width = 337; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (33,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (6,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(212,-167,l), +(219,-132,l), +(43,-1,l), +(-9,-1,l), +(204,-167,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(33,-10,l), +(404,0,l), +(412,35,l), +(286,31,l), +(38,13,l) +); +} +); +width = 345; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (55,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (30,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(336,-8,l), +(158,28,l), +(-11,2,l), +(278,-181,l), +(300,-182,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,-9,l), +(482,0,l), +(514,155,l), +(464,154,l), +(74,69,l) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (33,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (17,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(245,-167,l), +(252,-131,l), +(45,4,l), +(-9,4,l), +(238,-167,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(33,-1,l), +(461,0,l), +(469,34,l), +(354,34,l), +(39,27,l) +); +} +); +width = 226; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (54,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (42,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(397,-15,l), +(222,37,l), +(-11,0,l), +(345,-178,l), +(359,-179,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(54,-10,l), +(551,0,l), +(585,168,l), +(546,168,l), +(129,131,l) +); +} +); +width = 390; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_zero.tf.base.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_zero.tf.base.glyph new file mode 100644 index 00000000..3e6c5e48 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_zero.tf.base.glyph @@ -0,0 +1,849 @@ +{ +category = Number; +export = 0; +glyphname = _zero.tf.base; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (240,369.5); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +metricWidth = "=480"; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(470,79,o), +(470,360,cs), +(470,640,o), +(378,729,o), +(240,729,cs), +(102,729,o), +(10,640,o), +(10,360,cs), +(10,79,o), +(102,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,139,o), +(190,194,o), +(190,360,cs), +(190,525,o), +(199,580,o), +(240,580,cs), +(281,580,o), +(290,525,o), +(290,360,cs), +(290,194,o), +(281,139,o), +(240,139,cs) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = center; +pos = (240,370); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +metricWidth = "=480"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,-10,o), +(398,137,o), +(398,360,cs), +(398,583,o), +(359,730,o), +(240,730,cs), +(121,730,o), +(82,583,o), +(82,360,cs), +(82,137,o), +(121,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,19,o), +(114,86,o), +(114,360,cs), +(114,634,o), +(165,701,o), +(240,701,cs), +(316,701,o), +(366,631,o), +(366,360,cs), +(366,89,o), +(316,19,o), +(240,19,cs) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = center; +pos = (360.5,369.5); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +metricWidth = "=720"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,-10,o), +(647,117,o), +(647,360,cs), +(647,604,o), +(529,729,o), +(362,729,cs), +(189,729,o), +(74,603,o), +(74,360,cs), +(74,115,o), +(194,-10,o), +(364,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,24,o), +(114,149,o), +(114,360,cs), +(114,572,o), +(203,695,o), +(362,695,cs), +(522,695,o), +(609,570,o), +(609,360,cs), +(609,149,o), +(519,24,o), +(363,24,cs) +); +} +); +width = 720; +}, +{ +anchors = ( +{ +name = center; +pos = (360,369); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +metricWidth = "=720"; +shapes = ( +{ +closed = 1; +nodes = ( +(562,-9,o), +(697,112,o), +(697,360,cs), +(697,581,o), +(588,729,o), +(361,729,cs), +(158,729,o), +(23,609,o), +(23,361,cs), +(23,139,o), +(133,-9,o), +(360,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,169,o), +(247,218,o), +(247,360,cs), +(247,484,o), +(281,551,o), +(360,551,cs), +(427,551,o), +(473,502,o), +(473,360,cs), +(473,237,o), +(439,169,o), +(360,169,cs) +); +} +); +width = 720; +}, +{ +anchors = ( +{ +name = center; +pos = (220,370); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +metricWidth = "=480"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,-10,o), +(378,137,o), +(378,360,cs), +(378,583,o), +(339,730,o), +(220,730,cs), +(101,730,o), +(62,583,o), +(62,360,cs), +(62,137,o), +(101,-10,o), +(220,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(145,19,o), +(94,86,o), +(94,360,cs), +(94,634,o), +(145,701,o), +(220,701,cs), +(296,701,o), +(346,631,o), +(346,360,cs), +(346,89,o), +(296,19,o), +(220,19,cs) +); +} +); +width = 440; +}, +{ +anchors = ( +{ +name = center; +pos = (233,370); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +metricWidth = "=480"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,-10,o), +(463,80,o), +(463,364,cs), +(463,647,o), +(371,737,o), +(233,737,cs), +(95,737,o), +(3,647,o), +(3,364,cs), +(3,80,o), +(95,-10,o), +(233,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,145,o), +(190,200,o), +(190,364,cs), +(190,527,o), +(198,581,o), +(233,581,cs), +(269,581,o), +(277,527,o), +(277,364,cs), +(277,200,o), +(269,145,o), +(233,145,cs) +); +} +); +width = 466; +}, +{ +anchors = ( +{ +name = center; +pos = (280,370); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(425,-10,o), +(523,117,o), +(523,360,cs), +(523,604,o), +(424,729,o), +(281,729,cs), +(134,729,o), +(37,603,o), +(37,360,cs), +(37,115,o), +(137,-10,o), +(282,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,24,o), +(76,149,o), +(76,360,cs), +(76,572,o), +(148,695,o), +(281,695,cs), +(412,695,o), +(485,571,o), +(485,360,cs), +(485,149,o), +(412,24,o), +(281,24,cs) +); +} +); +width = 560; +}, +{ +anchors = ( +{ +name = center; +pos = (283,368); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(454,-6,o), +(569,126,o), +(569,362,cs), +(569,583,o), +(467,730,o), +(286,730,cs), +(113,730,o), +(-3,598,o), +(-3,364,cs), +(-3,142,o), +(100,-6,o), +(282,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,154,o), +(187,181,o), +(187,363,cs), +(187,544,o), +(231,571,o), +(283,571,cs), +(335,571,o), +(379,544,o), +(379,363,cs), +(379,181,o), +(335,154,o), +(283,154,cs) +); +} +); +width = 566; +}, +{ +anchors = ( +{ +name = center; +pos = (351,370); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +metricWidth = "=720"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,-10,o), +(637,117,o), +(637,360,cs), +(637,604,o), +(519,729,o), +(352,729,cs), +(179,729,o), +(64,603,o), +(64,360,cs), +(64,115,o), +(184,-10,o), +(354,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,24,o), +(104,149,o), +(104,360,cs), +(104,572,o), +(193,695,o), +(352,695,cs), +(512,695,o), +(599,570,o), +(599,360,cs), +(599,149,o), +(509,24,o), +(353,24,cs) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = center; +pos = (350,369); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +metricWidth = "=720"; +shapes = ( +{ +closed = 1; +nodes = ( +(552,-9,o), +(687,112,o), +(687,360,cs), +(687,581,o), +(578,729,o), +(351,729,cs), +(148,729,o), +(13,609,o), +(13,361,cs), +(13,139,o), +(123,-9,o), +(350,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,169,o), +(237,218,o), +(237,360,cs), +(237,484,o), +(271,551,o), +(350,551,cs), +(417,551,o), +(463,502,o), +(463,360,cs), +(463,237,o), +(429,169,o), +(350,169,cs) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = center; +pos = (291,370); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(434,-10,o), +(530,117,o), +(530,360,cs), +(530,604,o), +(433,729,o), +(292,729,cs), +(149,729,o), +(52,603,o), +(52,360,cs), +(52,115,o), +(151,-10,o), +(293,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,24,o), +(91,149,o), +(91,360,cs), +(91,572,o), +(161,695,o), +(292,695,cs), +(421,695,o), +(492,571,o), +(492,360,cs), +(492,149,o), +(421,24,o), +(292,24,cs) +); +} +); +width = 582; +}, +{ +anchors = ( +{ +name = center; +pos = (287,368); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(453,-6,o), +(565,126,o), +(565,362,cs), +(565,583,o), +(466,730,o), +(290,730,cs), +(122,730,o), +(9,598,o), +(9,364,cs), +(9,142,o), +(109,-6,o), +(286,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,154,o), +(197,182,o), +(197,363,cs), +(197,543,o), +(239,571,o), +(287,571,cs), +(336,571,o), +(377,543,o), +(377,363,cs), +(377,182,o), +(336,154,o), +(287,154,cs) +); +} +); +width = 574; +}, +{ +anchors = ( +{ +name = center; +pos = (260.67,369); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +metricWidth = "=480"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-9,o), +(370,133,o), +(416,347,cs), +(456,539,o), +(468,729,o), +(326,729,cs), +(216,729,o), +(151,589,o), +(106,375,cs), +(64,177,o), +(55,-9,o), +(195,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(78,29,o), +(103,208,o), +(136,369,cs), +(191,635,o), +(252,700,o), +(322,700,cs), +(442,700,o), +(422,527,o), +(385,351,cs), +(328,76,o), +(264,14,o), +(189,20,cs) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = center; +pos = (257.812,369.5); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +metricWidth = "=480"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,-10,o), +(428,78,o), +(483,342,cs), +(529,563,o), +(506,729,o), +(310,729,cs), +(179,729,o), +(85,628,o), +(34,381,cs), +(-14,159,o), +(8,-10,o), +(207,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,140,o), +(181,228,o), +(210,365,cs), +(243,525,o), +(263,579,o), +(300,579,cs), +(352,579,o), +(335,492,o), +(307,357,cs), +(274,197,o), +(254,140,o), +(217,140,cs) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = center; +pos = (321.502,369.5); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,-10,o), +(559,178,o), +(569,477,cs), +(575,639,o), +(500,729,o), +(383,729,cs), +(204,729,o), +(85,540,o), +(74,242,cs), +(68,80,o), +(144,-10,o), +(260,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,24,o), +(107,111,o), +(112,243,cs), +(121,517,o), +(226,695,o), +(377,695,cs), +(487,695,o), +(536,607,o), +(532,475,cs), +(522,202,o), +(418,24,o), +(265,24,cs) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = center; +pos = (318.503,368); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-6,o), +(596,176,o), +(606,450,cs), +(612,619,o), +(530,730,o), +(377,730,cs), +(178,730,o), +(41,549,o), +(31,276,cs), +(25,106,o), +(109,-6,o), +(262,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,160,o), +(212,193,o), +(215,275,cs), +(220,440,o), +(280,564,o), +(356,564,cs), +(398,564,o), +(424,531,o), +(422,452,cs), +(416,287,o), +(356,160,o), +(283,160,cs) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = center; +pos = (381,369); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +metricWidth = "=720"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,-9,o), +(673,153,o), +(682,428,cs), +(688,608,o), +(600,729,o), +(435,729,cs), +(230,729,o), +(90,567,o), +(80,292,cs), +(74,112,o), +(162,-9,o), +(327,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,25,o), +(119,121,o), +(117,269,cs), +(117,497,o), +(220,695,o), +(431,695,cs), +(577,695,o), +(646,591,o), +(646,427,cs), +(637,187,o), +(521,25,o), +(332,25,cs) +); +} +); +width = 720; +}, +{ +anchors = ( +{ +name = center; +pos = (378.657,365.5); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +metricWidth = "=720"; +shapes = ( +{ +closed = 1; +nodes = ( +(560,-5,o), +(708,156,o), +(717,402,cs), +(724,596,o), +(614,726,o), +(413,726,cs), +(192,726,o), +(40,557,o), +(40,302,cs), +(40,117,o), +(148,-5,o), +(344,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(295,176,o), +(256,213,o), +(256,313,cs), +(256,467,o), +(321,550,o), +(405,547,cs), +(463,545,o), +(502,508,o), +(502,408,cs), +(502,254,o), +(437,171,o), +(353,174,cs) +); +} +); +width = 720; +} +); +metricWidth = "=600"; +subCategory = "Decimal Digit"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_zero.tf.slash.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_zero.tf.slash.glyph new file mode 100644 index 00000000..c5405db9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_zero.tf.slash.glyph @@ -0,0 +1,700 @@ +{ +export = 0; +glyphname = _zero.tf.slash; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (157,370); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,220,l), +(426,405,l), +(374,505,l), +(40,320,l) +); +}, +{ +closed = 1; +nodes = ( +(404,-6,o), +(519,126,o), +(519,362,cs), +(519,583,o), +(417,730,o), +(236,730,cs), +(63,730,o), +(-53,598,o), +(-53,364,cs), +(-53,142,o), +(50,-6,o), +(232,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,160,o), +(146,191,o), +(146,371,cs), +(146,480,o), +(156,566,o), +(235,566,cs), +(280,566,o), +(320,539,o), +(320,355,cs), +(320,244,o), +(310,160,o), +(232,160,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,382,l), +(275,501,l), +(40,337,l), +(40,219,l) +); +} +); +width = 315; +}, +{ +anchors = ( +{ +name = _center; +pos = (176,370); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,439,l), +(313,472,l), +(40,280,l), +(40,248,l) +); +} +); +width = 353; +}, +{ +anchors = ( +{ +name = _center; +pos = (280,370); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,520,l), +(521,557,l), +(40,199,l), +(40,163,l) +); +} +); +width = 561; +}, +{ +anchors = ( +{ +name = _center; +pos = (174,369); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(310,386,l), +(310,526,l), +(40,334,l), +(40,194,l) +); +} +); +width = 350; +}, +{ +anchors = ( +{ +name = _center; +pos = (156,370); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(293,439,l), +(293,472,l), +(20,280,l), +(20,248,l) +); +} +); +width = 313; +}, +{ +anchors = ( +{ +name = _center; +pos = (147,370); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,220,l), +(426,405,l), +(374,505,l), +(40,320,l) +); +}, +{ +closed = 1; +nodes = ( +(404,-6,o), +(519,126,o), +(519,362,cs), +(519,583,o), +(417,730,o), +(236,730,cs), +(63,730,o), +(-53,598,o), +(-53,364,cs), +(-53,142,o), +(50,-6,o), +(232,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,160,o), +(146,191,o), +(146,371,cs), +(146,480,o), +(156,566,o), +(235,566,cs), +(280,566,o), +(320,539,o), +(320,355,cs), +(320,244,o), +(310,160,o), +(232,160,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(265,382,l), +(265,501,l), +(30,337,l), +(30,219,l) +); +} +); +width = 295; +}, +{ +anchors = ( +{ +name = _center; +pos = (239,370); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,494,l), +(459,531,l), +(20,224,l), +(20,188,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 479; +}, +{ +anchors = ( +{ +name = _center; +pos = (148,368); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,220,l), +(427,405,l), +(375,505,l), +(41,320,l) +); +}, +{ +closed = 1; +nodes = ( +(405,-6,o), +(520,126,o), +(520,362,cs), +(520,583,o), +(418,730,o), +(237,730,cs), +(64,730,o), +(-52,598,o), +(-52,364,cs), +(-52,142,o), +(51,-6,o), +(233,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(187,160,o), +(147,191,o), +(147,371,cs), +(147,480,o), +(157,566,o), +(236,566,cs), +(281,566,o), +(321,539,o), +(321,355,cs), +(321,244,o), +(311,160,o), +(233,160,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,386,l), +(278,517,l), +(19,337,l), +(19,207,l) +); +} +); +width = 297; +}, +{ +anchors = ( +{ +name = _center; +pos = (270,370); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,520,l), +(511,557,l), +(30,199,l), +(30,163,l) +); +} +); +width = 541; +}, +{ +anchors = ( +{ +name = _center; +pos = (164,369); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,386,l), +(300,526,l), +(30,334,l), +(30,194,l) +); +} +); +width = 330; +}, +{ +anchors = ( +{ +name = _center; +pos = (250,370); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(466,494,l), +(466,531,l), +(37,224,l), +(37,188,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 503; +}, +{ +anchors = ( +{ +name = _center; +pos = (156,368); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,220,l), +(427,405,l), +(375,505,l), +(41,320,l) +); +}, +{ +closed = 1; +nodes = ( +(405,-6,o), +(520,126,o), +(520,362,cs), +(520,583,o), +(418,730,o), +(237,730,cs), +(64,730,o), +(-52,598,o), +(-52,364,cs), +(-52,142,o), +(51,-6,o), +(233,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(187,160,o), +(147,191,o), +(147,371,cs), +(147,480,o), +(157,566,o), +(236,566,cs), +(281,566,o), +(321,539,o), +(321,355,cs), +(321,244,o), +(311,160,o), +(233,160,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(279,386,l), +(279,517,l), +(35,337,l), +(35,207,l) +); +} +); +width = 314; +}, +{ +anchors = ( +{ +name = _center; +pos = (192,369); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,410,l), +(340,442,l), +(50,308,l), +(44,278,l) +); +} +); +width = 343; +}, +{ +anchors = ( +{ +name = _center; +pos = (120,370); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,333,l), +(202,449,l), +(64,386,l), +(40,270,l) +); +} +); +width = 206; +}, +{ +anchors = ( +{ +name = _center; +pos = (259,370); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(474,443,l), +(476,477,l), +(44,276,l), +(41,243,l) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = _center; +pos = (169,368); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,352,l), +(287,475,l), +(61,371,l), +(50,250,l) +); +} +); +width = 298; +}, +{ +anchors = ( +{ +name = _center; +pos = (309,369); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,472,l), +(577,500,l), +(39,252,l), +(42,221,l) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = _center; +pos = (200,366); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(341,386,l), +(370,526,l), +(53,334,l), +(24,194,l) +); +} +); +width = 357; +} +); +metricLeft = "=40"; +metricRight = "=40"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/_zero.tf.slash.ss08.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/_zero.tf.slash.ss08.glyph new file mode 100644 index 00000000..8cb2f0d2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/_zero.tf.slash.ss08.glyph @@ -0,0 +1,617 @@ +{ +export = 0; +glyphname = _zero.tf.slash.ss08; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (167,370); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,302,l), +(295,418,l), +(40,418,l), +(40,302,l) +); +} +); +width = 335; +}, +{ +anchors = ( +{ +name = _center; +pos = (176,370); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,346,l), +(312,375,l), +(40,375,l), +(40,346,l) +); +} +); +width = 352; +}, +{ +anchors = ( +{ +name = _center; +pos = (299,370); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(559,343,l), +(559,376,l), +(40,376,l), +(40,343,l) +); +} +); +width = 599; +}, +{ +anchors = ( +{ +name = _center; +pos = (206,369); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,302,l), +(373,418,l), +(40,418,l), +(40,302,l) +); +} +); +width = 413; +}, +{ +anchors = ( +{ +name = _center; +pos = (156,370); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,346,l), +(292,375,l), +(20,375,l), +(20,346,l) +); +} +); +width = 312; +}, +{ +anchors = ( +{ +name = _center; +pos = (157,370); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,302,l), +(285,418,l), +(30,418,l), +(30,302,l) +); +} +); +width = 315; +}, +{ +anchors = ( +{ +name = _center; +pos = (245,370); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,343,l), +(471,376,l), +(20,376,l), +(20,343,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +} +); +}; +width = 491; +}, +{ +anchors = ( +{ +name = _center; +pos = (190,368); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,304,l), +(362,420,l), +(19,420,l), +(19,304,l) +); +} +); +width = 381; +}, +{ +anchors = ( +{ +name = _center; +pos = (289,370); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(549,343,l), +(549,376,l), +(30,376,l), +(30,343,l) +); +} +); +width = 579; +}, +{ +anchors = ( +{ +name = _center; +pos = (196,369); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,302,l), +(363,418,l), +(30,418,l), +(30,302,l) +); +} +); +width = 393; +}, +{ +anchors = ( +{ +name = _center; +pos = (256,370); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(478,343,l), +(478,376,l), +(37,376,l), +(37,343,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +} +); +}; +width = 515; +}, +{ +anchors = ( +{ +name = _center; +pos = (199,368); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(364,304,l), +(364,420,l), +(35,420,l), +(35,304,l) +); +} +); +width = 399; +}, +{ +anchors = ( +{ +name = _center; +pos = (194,369); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,346,l), +(330,375,l), +(64,375,l), +(58,346,l) +); +} +); +width = 346; +}, +{ +anchors = ( +{ +name = _center; +pos = (120,370); +} +); +background = { +shapes = ( +{ +pos = (-149,0); +ref = zero.tf; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,302,l), +(201,418,l), +(71,418,l), +(47,302,l) +); +} +); +width = 211; +}, +{ +anchors = ( +{ +name = _center; +pos = (269,370); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,343,l), +(478,376,l), +(64,376,l), +(59,343,l) +); +} +); +width = 496; +}, +{ +anchors = ( +{ +name = _center; +pos = (174,368); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(267,304,l), +(287,420,l), +(71,420,l), +(52,304,l) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _center; +pos = (329,369); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(594,344,l), +(598,377,l), +(65,377,l), +(61,344,l) +); +} +); +width = 616; +}, +{ +anchors = ( +{ +name = _center; +pos = (198,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(16,726,o), +(-132,565,o), +(-141,319,cs), +(-148,125,o), +(-38,-5,o), +(163,-5,cs), +(384,-5,o), +(536,164,o), +(536,419,cs), +(536,604,o), +(428,726,o), +(232,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,547,o), +(320,510,o), +(320,408,cs), +(320,257,o), +(257,174,o), +(175,174,cs), +(115,174,o), +(74,211,o), +(74,313,cs), +(74,464,o), +(137,547,o), +(219,547,cs) +); +}, +{ +closed = 1; +nodes = ( +(70,419,l), +(54,303,l), +(325,303,l), +(341,419,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,302,l), +(341,418,l), +(70,418,l), +(54,302,l) +); +} +); +width = 359; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/a.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/a.glyph new file mode 100644 index 00000000..04fc87a2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/a.glyph @@ -0,0 +1,1401 @@ +{ +glyphname = a; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = ogonek; +pos = (443,0); +}, +{ +name = top; +pos = (235,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-10,o), +(241,13,o), +(260,64,c), +(267,64,l), +(267,0,l), +(443,0,l), +(443,541,l), +(271,541,l), +(267,477,l), +(260,477,l), +(242,526,o), +(208,551,o), +(156,551,cs), +(74,551,o), +(16,493,o), +(16,271,cs), +(16,97,o), +(46,-10,o), +(156,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,128,o), +(194,160,o), +(194,271,cs), +(194,365,o), +(199,415,o), +(231,415,cs), +(255,415,o), +(267,385,o), +(267,285,cs), +(267,256,ls), +(267,171,o), +(259,128,o), +(231,128,cs) +); +} +); +width = 470; +}, +{ +anchors = ( +{ +name = bottom; +pos = (176,0); +}, +{ +name = ogonek; +pos = (284,0); +}, +{ +name = top; +pos = (176,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-10,o), +(237,25,o), +(253,77,c), +(255,77,l), +(255,0,l), +(284,0,l), +(284,516,l), +(256,516,l), +(255,439,l), +(253,439,l), +(237,491,o), +(211,526,o), +(159,526,cs), +(90,526,o), +(45,461,o), +(45,257,cs), +(45,50,o), +(92,-10,o), +(159,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(93,16,o), +(75,104,o), +(75,257,cs), +(75,415,o), +(94,500,o), +(167,500,cs), +(220,500,o), +(255,436,o), +(255,309,cs), +(255,206,ls), +(255,77,o), +(219,16,o), +(167,16,cs) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = ogonek; +pos = (574,0); +}, +{ +name = top; +pos = (317,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,-9,o), +(501,47,o), +(533,130,c), +(537,130,l), +(537,0,l), +(574,0,l), +(574,517,l), +(539,517,l), +(537,398,l), +(533,398,l), +(501,474,o), +(414,526,o), +(297,526,cs), +(141,526,o), +(35,424,o), +(35,259,cs), +(35,97,o), +(140,-9,o), +(297,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,25,o), +(73,118,o), +(73,259,cs), +(73,407,o), +(165,492,o), +(301,492,cs), +(450,492,o), +(537,396,o), +(537,294,cs), +(537,234,ls), +(537,126,o), +(450,25,o), +(301,25,cs) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (360,0); +}, +{ +name = ogonek; +pos = (687,0); +}, +{ +name = top; +pos = (360,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,-10,o), +(424,19,o), +(458,69,c), +(466,69,l), +(466,0,l), +(687,0,l), +(687,544,l), +(477,544,l), +(471,473,l), +(463,473,l), +(432,520,o), +(373,552,o), +(276,552,cs), +(118,552,o), +(12,444,o), +(12,271,cs), +(12,99,o), +(118,-10,o), +(276,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,155,o), +(234,195,o), +(234,271,cs), +(234,347,o), +(280,387,o), +(347,387,cs), +(421,387,o), +(465,342,o), +(465,277,cs), +(465,265,ls), +(465,200,o), +(421,155,o), +(347,155,cs) +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +pos = (155,0); +}, +{ +name = ogonek; +pos = (263,0); +}, +{ +name = top; +pos = (155,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(190,-10,o), +(216,25,o), +(232,77,c), +(234,77,l), +(234,0,l), +(264,0,l), +(264,516,l), +(235,516,l), +(234,439,l), +(232,439,l), +(216,491,o), +(190,526,o), +(138,526,cs), +(60,526,o), +(24,440,o), +(24,257,cs), +(24,75,o), +(60,-10,o), +(138,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(84,17,o), +(55,83,o), +(55,257,cs), +(55,432,o), +(84,499,o), +(146,499,cs), +(197,499,o), +(234,419,o), +(234,309,cs), +(234,206,ls), +(234,96,o), +(197,17,o), +(146,17,cs) +); +} +); +width = 299; +}, +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = ogonek; +pos = (434,0); +}, +{ +name = top; +pos = (226,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,-10,o), +(234,13,o), +(257,73,c), +(258,73,l), +(258,0,l), +(434,0,l), +(434,541,l), +(262,541,l), +(258,470,l), +(257,470,l), +(234,526,o), +(199,551,o), +(147,551,cs), +(65,551,o), +(7,493,o), +(7,271,cs), +(7,97,o), +(37,-10,o), +(147,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,128,o), +(185,160,o), +(185,271,cs), +(185,365,o), +(190,415,o), +(222,415,cs), +(246,415,o), +(258,385,o), +(258,285,cs), +(258,256,ls), +(258,171,o), +(250,128,o), +(222,128,cs) +); +} +); +width = 450; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = ogonek; +pos = (486,0); +}, +{ +name = top; +pos = (280,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(369,-8,o), +(440,44,o), +(467,121,c), +(470,121,l), +(470,0,l), +(507,0,l), +(507,517,l), +(472,517,l), +(470,398,l), +(467,398,l), +(440,475,o), +(369,526,o), +(271,526,cs), +(142,526,o), +(54,425,o), +(54,259,cs), +(54,94,o), +(142,-8,o), +(271,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(167,26,o), +(92,112,o), +(92,259,cs), +(92,408,o), +(167,493,o), +(279,493,cs), +(399,493,o), +(469,397,o), +(469,295,cs), +(469,224,ls), +(469,122,o), +(399,26,o), +(279,26,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(345,-8,o), +(419,41,o), +(449,124,c), +(450,124,l), +(452,0,l), +(486,0,l), +(486,517,l), +(452,517,l), +(450,395,l), +(449,395,l), +(419,477,o), +(346,526,o), +(251,526,cs), +(122,526,o), +(34,425,o), +(34,259,cs), +(34,94,o), +(122,-8,o), +(251,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,26,o), +(72,112,o), +(72,259,cs), +(72,408,o), +(147,493,o), +(259,493,cs), +(379,493,o), +(449,384,o), +(449,282,cs), +(449,231,ls), +(449,129,o), +(379,26,o), +(259,26,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = a; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +1, +10 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +463, +37 +); +stem = -2; +type = Stem; +} +); +}; +width = 545; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = ogonek; +pos = (579,0); +}, +{ +name = top; +pos = (308,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(315,-10,o), +(374,27,o), +(398,83,c), +(408,83,l), +(408,0,l), +(599,0,l), +(599,544,l), +(415,544,l), +(408,461,l), +(398,461,l), +(374,517,o), +(315,554,o), +(238,554,cs), +(110,554,o), +(25,464,o), +(25,272,cs), +(25,80,o), +(110,-10,o), +(238,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,143,o), +(220,179,o), +(220,272,cs), +(220,365,o), +(257,401,o), +(313,401,cs), +(380,401,o), +(406,349,o), +(406,294,cs), +(406,250,ls), +(406,195,o), +(380,143,o), +(313,143,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-10,o), +(360,26,o), +(389,93,c), +(390,93,l), +(397,0,l), +(579,0,l), +(579,544,l), +(397,544,l), +(390,449,l), +(389,449,l), +(361,517,o), +(303,554,o), +(226,554,cs), +(88,554,o), +(7,449,o), +(7,272,cs), +(7,95,o), +(88,-10,o), +(226,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,143,o), +(202,186,o), +(202,272,cs), +(202,358,o), +(233,401,o), +(295,401,cs), +(350,401,o), +(388,354,o), +(388,285,cs), +(388,259,ls), +(388,190,o), +(350,143,o), +(295,143,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = a; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +}; +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (334,0); +}, +{ +name = ogonek; +pos = (591,0); +}, +{ +name = top; +pos = (334,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,-9,o), +(519,49,o), +(553,136,c), +(554,136,l), +(554,0,l), +(591,0,l), +(591,517,l), +(556,517,l), +(554,392,l), +(553,392,l), +(519,472,o), +(424,526,o), +(300,526,cs), +(136,526,o), +(24,424,o), +(24,259,cs), +(24,97,o), +(135,-9,o), +(300,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,25,o), +(62,118,o), +(62,259,cs), +(62,407,o), +(160,492,o), +(304,492,cs), +(462,492,o), +(554,390,o), +(554,288,cs), +(554,240,ls), +(554,132,o), +(462,25,o), +(304,25,cs) +); +} +); +width = 647; +}, +{ +anchors = ( +{ +name = bottom; +pos = (363,0); +}, +{ +name = ogonek; +pos = (690,0); +}, +{ +name = top; +pos = (363,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,-10,o), +(434,19,o), +(468,69,c), +(469,69,l), +(469,0,l), +(690,0,l), +(690,544,l), +(480,544,l), +(474,473,l), +(473,473,l), +(442,520,o), +(376,552,o), +(279,552,cs), +(121,552,o), +(15,444,o), +(15,271,cs), +(15,99,o), +(121,-10,o), +(279,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,155,o), +(237,195,o), +(237,271,cs), +(237,347,o), +(283,387,o), +(350,387,cs), +(424,387,o), +(468,342,o), +(468,277,cs), +(468,265,ls), +(468,200,o), +(424,155,o), +(350,155,cs) +); +} +); +width = 720; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = ogonek; +pos = (570,0); +}, +{ +name = top; +pos = (315,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(306,-10,o), +(361,27,o), +(379,79,c), +(387,79,l), +(394,0,l), +(574,0,l), +(574,544,l), +(394,544,l), +(387,465,l), +(379,465,l), +(361,517,o), +(306,554,o), +(238,554,cs), +(114,554,o), +(34,451,o), +(34,272,cs), +(34,93,o), +(114,-10,o), +(238,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,147,o), +(227,197,o), +(227,272,cs), +(227,347,o), +(250,397,o), +(313,397,cs), +(359,397,o), +(386,355,o), +(386,285,cs), +(386,259,ls), +(386,189,o), +(357,147,o), +(308,147,cs) +); +} +); +width = 631; +}, +{ +anchors = ( +{ +name = bottom; +pos = (298,0); +}, +{ +name = ogonek; +pos = (500,0); +}, +{ +name = top; +pos = (298,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(365,-8,o), +(433,44,o), +(457,121,c), +(460,121,l), +(462,0,l), +(496,0,l), +(496,517,l), +(462,517,l), +(460,398,l), +(457,398,l), +(433,475,o), +(365,526,o), +(273,526,cs), +(151,526,o), +(68,425,o), +(68,259,cs), +(68,94,o), +(151,-8,o), +(273,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,26,o), +(106,112,o), +(106,259,cs), +(106,408,o), +(176,493,o), +(281,493,cs), +(394,493,o), +(459,397,o), +(459,295,cs), +(459,224,ls), +(459,122,o), +(394,26,o), +(281,26,cs) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (118,0); +}, +{ +name = ogonek; +pos = (227,0); +}, +{ +name = top; +pos = (224,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-10,o), +(185,17,o), +(211,70,c), +(212,70,l), +(198,0,l), +(227,0,l), +(334,516,l), +(307,516,l), +(289,431,l), +(287,431,l), +(282,489,o), +(261,525,o), +(205,525,cs), +(143,525,o), +(87,463,o), +(45,262,cs), +(16,126,o), +(8,-10,o), +(110,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(41,15,o), +(45,117,o), +(75,263,cs), +(107,421,o), +(145,498,o), +(210,498,cs), +(279,498,o), +(282,403,o), +(261,302,cs), +(240,199,ls), +(214,73,o), +(167,15,o), +(119,15,cs) +); +} +); +width = 341; +}, +{ +anchors = ( +{ +name = bottom; +pos = (186,0); +}, +{ +name = ogonek; +pos = (384,0); +}, +{ +name = top; +pos = (298,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,-10,o), +(189,15,o), +(212,57,c), +(219,57,l), +(213,0,l), +(384,0,l), +(497,541,l), +(326,541,l), +(305,470,l), +(299,470,l), +(287,523,o), +(255,551,o), +(200,551,cs), +(122,551,o), +(61,486,o), +(18,279,cs), +(-13,131,o), +(-23,-10,o), +(105,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,122,o), +(167,151,o), +(192,269,cs), +(212,366,o), +(227,409,o), +(256,409,cs), +(280,409,o), +(287,383,o), +(265,277,cs), +(259,248,ls), +(241,159,o), +(225,122,o), +(198,122,cs) +); +} +); +width = 467; +}, +{ +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = ogonek; +pos = (447,0); +}, +{ +name = top; +pos = (364,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(316,-10,o), +(390,34,o), +(431,103,c), +(433,103,l), +(412,0,l), +(449,0,l), +(556,517,l), +(522,517,l), +(493,383,l), +(490,383,l), +(478,465,o), +(414,526,o), +(315,526,cs), +(169,526,o), +(60,393,o), +(54,210,cs), +(49,75,o), +(121,-10,o), +(233,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(149,23,o), +(88,91,o), +(92,211,cs), +(97,374,o), +(192,492,o), +(317,492,cs), +(425,492,o), +(492,400,o), +(469,279,cs), +(456,209,ls), +(437,109,o), +(353,23,o), +(244,23,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,-10,o), +(389,26,o), +(431,103,c), +(434,103,l), +(414,0,l), +(447,0,l), +(555,517,l), +(522,517,l), +(494,391,l), +(488,391,l), +(468,472,o), +(403,526,o), +(312,526,cs), +(158,526,o), +(54,405,o), +(54,201,cs), +(54,74,o), +(128,-10,o), +(239,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(149,24,o), +(94,96,o), +(94,205,cs), +(94,375,o), +(175,492,o), +(313,492,cs), +(434,492,o), +(496,399,o), +(467,259,cs), +(455,202,ls), +(432,95,o), +(355,24,o), +(246,24,cs) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = ogonek; +pos = (546,0); +}, +{ +name = top; +pos = (378,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(263,-10,o), +(323,20,o), +(348,67,c), +(354,66,l), +(347,0,l), +(529,0,l), +(641,544,l), +(459,544,l), +(434,457,l), +(429,457,l), +(411,515,o), +(348,554,o), +(278,554,cs), +(123,554,o), +(31,431,o), +(12,276,cs), +(-9,105,o), +(64,-10,o), +(195,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,143,o), +(195,193,o), +(208,281,cs), +(219,353,o), +(261,401,o), +(321,401,cs), +(383,401,o), +(410,351,o), +(398,287,cs), +(389,241,ls), +(377,181,o), +(345,143,o), +(288,143,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,-10,o), +(336,20,o), +(361,67,c), +(369,66,l), +(360,0,l), +(546,0,l), +(659,544,l), +(477,544,l), +(450,457,l), +(444,457,l), +(425,515,o), +(361,554,o), +(291,554,cs), +(138,554,o), +(48,431,o), +(29,276,cs), +(8,105,o), +(80,-10,o), +(208,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,143,o), +(211,193,o), +(224,281,cs), +(235,353,o), +(276,401,o), +(337,401,cs), +(399,401,o), +(428,351,o), +(414,287,cs), +(405,241,ls), +(392,182,o), +(361,143,o), +(304,143,cs) +); +} +); +width = 657; +}, +{ +anchors = ( +{ +name = bottom; +pos = (274,0); +}, +{ +name = ogonek; +pos = (518,0); +}, +{ +name = top; +pos = (382,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-10,o), +(453,37,o), +(501,109,c), +(504,109,l), +(481,0,l), +(518,0,l), +(625,517,l), +(595,517,l), +(560,370,l), +(557,370,l), +(542,463,o), +(454,527,o), +(336,527,cs), +(165,527,o), +(39,399,o), +(33,221,cs), +(28,80,o), +(121,-10,o), +(261,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,24,o), +(66,101,o), +(70,223,cs), +(76,381,o), +(186,493,o), +(332,493,cs), +(483,493,o), +(561,394,o), +(532,247,cs), +(526,217,ls), +(503,102,o), +(399,24,o), +(269,24,cs) +); +} +); +width = 638; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = ogonek; +pos = (622,0); +}, +{ +name = top; +pos = (422,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,-10,o), +(372,14,o), +(407,52,c), +(415,52,l), +(411,0,l), +(622,0,l), +(736,544,l), +(521,544,l), +(494,457,l), +(486,457,l), +(463,519,o), +(384,554,o), +(303,554,cs), +(137,554,o), +(21,434,o), +(13,248,cs), +(5,93,o), +(100,-10,o), +(248,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(275,154,o), +(231,193,o), +(234,256,cs), +(236,337,o), +(286,389,o), +(358,387,cs), +(429,384,o), +(472,333,o), +(455,264,cs), +(451,248,ls), +(437,192,o), +(403,154,o), +(334,154,cs) +); +} +); +width = 723; +} +); +metricLeft = d; +unicode = 97; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/a.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/a.ss05.glyph new file mode 100644 index 00000000..241f1486 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/a.ss05.glyph @@ -0,0 +1,2529 @@ +{ +glyphname = a.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_a.ss05; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (234,0); +}, +{ +name = ogonek; +pos = (460,0); +}, +{ +name = top; +pos = (246,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(204,-10,o), +(248,20,o), +(259,66,c), +(262,66,l), +(272,4,o), +(330,-10,o), +(371,-10,cs), +(420,-10,o), +(449,1,o), +(460,13,c), +(460,118,l), +(454,113,o), +(451,111,o), +(448,111,cs), +(438,111,o), +(436,124,o), +(436,139,cs), +(436,352,ls), +(436,473,o), +(384,551,o), +(230,551,cs), +(103,551,o), +(38,494,o), +(26,358,c), +(190,358,l), +(191,393,o), +(199,417,o), +(224,417,cs), +(251,417,o), +(258,390,o), +(258,353,cs), +(258,169,ls), +(258,136,o), +(244,118,o), +(223,118,cs), +(199,118,o), +(187,137,o), +(187,163,cs), +(187,190,o), +(202,212,o), +(230,212,cs), +(274,212,l), +(274,315,l), +(201,315,ls), +(97,315,o), +(10,265,o), +(10,143,cs), +(10,52,o), +(60,-10,o), +(145,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(199,-6,o), +(244,20,o), +(263,66,c), +(268,66,l), +(278,26,o), +(313,0,o), +(371,0,cs), +(460,0,l), +(460,131,l), +(448,131,ls), +(438,131,o), +(436,139,o), +(436,148,cs), +(436,364,ls), +(436,491,o), +(365,551,o), +(238,551,cs), +(115,551,o), +(30,482,o), +(26,358,c), +(190,358,l), +(191,393,o), +(199,417,o), +(224,417,cs), +(247,417,o), +(258,402,o), +(258,371,cs), +(258,169,ls), +(258,136,o), +(244,118,o), +(223,118,cs), +(199,118,o), +(187,137,o), +(187,163,cs), +(187,190,o), +(202,212,o), +(230,212,cs), +(274,212,l), +(274,315,l), +(201,315,ls), +(97,315,o), +(10,265,o), +(10,143,cs), +(10,54,o), +(60,-6,o), +(146,-6,cs) +); +} +); +width = 471; +}, +{ +anchors = ( +{ +name = bottom; +pos = (149,0); +}, +{ +name = ogonek; +pos = (294,0); +}, +{ +name = top; +pos = (149,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(177,-10,o), +(212,17,o), +(227,65,c), +(228,65,l), +(228,19,o), +(243,-8,o), +(272,-8,cs), +(279,-8,o), +(288,-7,o), +(294,-4,c), +(294,26,l), +(289,23,o), +(283,22,o), +(276,22,cs), +(260,22,o), +(255,35,o), +(255,85,cs), +(255,359,ls), +(255,494,o), +(211,526,o), +(152,526,cs), +(70,526,o), +(45,465,o), +(42,375,c), +(72,375,l), +(73,479,o), +(108,499,o), +(150,499,cs), +(211,499,o), +(226,443,o), +(226,359,cs), +(226,140,ls), +(226,59,o), +(190,15,o), +(136,15,cs), +(92,15,o), +(63,46,o), +(63,126,cs), +(63,198,o), +(95,253,o), +(181,253,cs), +(233,253,l), +(233,279,l), +(184,279,ls), +(94,279,o), +(34,232,o), +(34,122,cs), +(34,44,o), +(65,-10,o), +(131,-10,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,-10,o), +(212,17,o), +(227,65,c), +(228,65,l), +(228,24,o), +(243,0,o), +(272,0,cs), +(294,0,l), +(294,30,l), +(276,30,ls), +(260,30,o), +(255,43,o), +(255,93,cs), +(255,359,ls), +(255,494,o), +(211,526,o), +(152,526,cs), +(70,526,o), +(45,465,o), +(42,375,c), +(72,375,l), +(73,479,o), +(108,499,o), +(150,499,cs), +(211,499,o), +(226,443,o), +(226,359,cs), +(226,140,ls), +(226,59,o), +(190,15,o), +(136,15,cs), +(92,15,o), +(63,46,o), +(63,126,cs), +(63,198,o), +(95,253,o), +(181,253,cs), +(233,253,l), +(233,279,l), +(184,279,ls), +(94,279,o), +(34,232,o), +(34,122,cs), +(34,44,o), +(65,-10,o), +(131,-10,cs) +); +} +); +width = 315; +}, +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = ogonek; +pos = (574,0); +}, +{ +name = top; +pos = (285,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(332,-10,o), +(415,26,o), +(461,84,c), +(464,84,l), +(463,22,o), +(488,-7,o), +(534,-7,cs), +(551,-7,o), +(563,-4,o), +(574,1,c), +(574,31,l), +(564,27,o), +(553,25,o), +(540,25,cs), +(510,25,o), +(499,38,o), +(499,89,cs), +(499,353,ls), +(499,465,o), +(417,526,o), +(276,526,cs), +(146,526,o), +(59,471,o), +(46,373,c), +(84,373,l), +(97,453,o), +(165,492,o), +(274,492,cs), +(400,492,o), +(462,442,o), +(462,347,cs), +(462,128,l), +(431,71,o), +(349,24,o), +(233,24,cs), +(129,24,o), +(71,64,o), +(71,137,cs), +(71,216,o), +(119,268,o), +(272,268,cs), +(470,268,l), +(470,300,l), +(270,300,ls), +(118,300,o), +(33,247,o), +(33,134,cs), +(33,39,o), +(114,-10,o), +(228,-10,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,-10,o), +(415,26,o), +(461,84,c), +(464,84,l), +(466,34,o), +(489,0,o), +(540,0,cs), +(574,0,l), +(574,36,l), +(550,36,ls), +(515,36,o), +(499,49,o), +(499,99,cs), +(499,353,ls), +(499,465,o), +(417,526,o), +(276,526,cs), +(146,526,o), +(59,471,o), +(46,373,c), +(84,373,l), +(97,453,o), +(165,492,o), +(274,492,cs), +(400,492,o), +(462,442,o), +(462,347,cs), +(462,128,l), +(431,71,o), +(349,24,o), +(233,24,cs), +(129,24,o), +(71,64,o), +(71,137,cs), +(71,216,o), +(119,268,o), +(272,268,cs), +(470,268,l), +(470,300,l), +(270,300,ls), +(118,300,o), +(33,247,o), +(33,134,cs), +(33,39,o), +(114,-10,o), +(228,-10,cs) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (322,0); +}, +{ +name = ogonek; +pos = (647,0); +}, +{ +name = top; +pos = (325,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(286,-10,o), +(362,21,o), +(393,64,c), +(400,64,l), +(418,18,o), +(467,-10,o), +(543,-10,cs), +(583,-10,o), +(626,-3,o), +(647,11,c), +(647,137,l), +(640,133,o), +(635,131,o), +(625,131,cs), +(611,131,o), +(600,139,o), +(600,159,cs), +(600,344,ls), +(600,476,o), +(499,555,o), +(310,554,cs), +(146,553,o), +(33,481,o), +(24,355,c), +(233,355,l), +(235,396,o), +(270,405,o), +(309,405,cs), +(360,405,o), +(380,386,o), +(380,351,cs), +(380,196,ls), +(380,153,o), +(348,124,o), +(291,124,cs), +(253,124,o), +(231,139,o), +(231,166,cs), +(231,198,o), +(259,211,o), +(300,211,cs), +(396,211,l), +(396,321,l), +(253,321,ls), +(107,321,o), +(10,256,o), +(10,143,cs), +(10,48,o), +(86,-10,o), +(198,-10,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-10,o), +(362,21,o), +(393,73,c), +(400,73,l), +(421,23,o), +(468,0,o), +(539,0,cs), +(647,0,l), +(647,140,l), +(625,140,ls), +(611,140,o), +(600,148,o), +(600,168,cs), +(600,344,ls), +(600,476,o), +(499,555,o), +(310,554,cs), +(146,553,o), +(33,481,o), +(24,355,c), +(233,355,l), +(235,396,o), +(270,405,o), +(309,405,cs), +(360,405,o), +(380,386,o), +(380,351,cs), +(380,196,ls), +(380,153,o), +(348,124,o), +(291,124,cs), +(253,124,o), +(231,139,o), +(231,166,cs), +(231,198,o), +(259,211,o), +(300,211,cs), +(396,211,l), +(396,321,l), +(253,321,ls), +(107,321,o), +(10,256,o), +(10,143,cs), +(10,48,o), +(86,-10,o), +(198,-10,cs) +); +} +); +width = 653; +}, +{ +anchors = ( +{ +name = bottom; +pos = (129,0); +}, +{ +name = ogonek; +pos = (274,0); +}, +{ +name = top; +pos = (129,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(177,-10,o), +(212,17,o), +(227,65,c), +(228,65,l), +(228,19,o), +(243,-8,o), +(272,-8,cs), +(279,-8,o), +(288,-7,o), +(294,-4,c), +(294,26,l), +(289,23,o), +(283,22,o), +(276,22,cs), +(260,22,o), +(255,35,o), +(255,85,cs), +(255,359,ls), +(255,494,o), +(211,526,o), +(152,526,cs), +(70,526,o), +(45,465,o), +(42,375,c), +(72,375,l), +(73,479,o), +(108,499,o), +(150,499,cs), +(211,499,o), +(226,443,o), +(226,359,cs), +(226,140,ls), +(226,59,o), +(190,15,o), +(136,15,cs), +(92,15,o), +(63,46,o), +(63,126,cs), +(63,198,o), +(95,253,o), +(181,253,cs), +(233,253,l), +(233,279,l), +(184,279,ls), +(94,279,o), +(34,232,o), +(34,122,cs), +(34,44,o), +(65,-10,o), +(131,-10,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,-10,o), +(192,18,o), +(207,65,c), +(208,65,l), +(208,24,o), +(223,0,o), +(252,0,cs), +(274,0,l), +(274,30,l), +(256,30,ls), +(240,30,o), +(235,43,o), +(235,93,cs), +(235,359,ls), +(235,494,o), +(191,526,o), +(132,526,cs), +(61,526,o), +(25,478,o), +(22,375,c), +(52,375,l), +(53,459,o), +(77,499,o), +(130,499,cs), +(191,499,o), +(206,443,o), +(206,359,cs), +(206,155,ls), +(206,74,o), +(168,15,o), +(116,15,cs), +(72,15,o), +(43,46,o), +(43,126,cs), +(43,212,o), +(81,260,o), +(151,263,cs), +(213,265,l), +(213,291,l), +(154,288,ls), +(61,283,o), +(14,227,o), +(14,122,cs), +(14,44,o), +(45,-10,o), +(111,-10,cs) +); +} +); +width = 275; +}, +{ +anchors = ( +{ +name = bottom; +pos = (227,0); +}, +{ +name = ogonek; +pos = (453,0); +}, +{ +name = top; +pos = (239,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(204,-10,o), +(248,20,o), +(259,66,c), +(262,66,l), +(272,4,o), +(330,-10,o), +(371,-10,cs), +(420,-10,o), +(449,1,o), +(460,13,c), +(460,118,l), +(454,113,o), +(451,111,o), +(448,111,cs), +(438,111,o), +(436,124,o), +(436,139,cs), +(436,352,ls), +(436,473,o), +(384,551,o), +(230,551,cs), +(103,551,o), +(38,494,o), +(26,358,c), +(190,358,l), +(191,393,o), +(199,417,o), +(224,417,cs), +(251,417,o), +(258,390,o), +(258,353,cs), +(258,169,ls), +(258,136,o), +(244,118,o), +(223,118,cs), +(199,118,o), +(187,137,o), +(187,163,cs), +(187,190,o), +(202,212,o), +(230,212,cs), +(274,212,l), +(274,315,l), +(201,315,ls), +(97,315,o), +(10,265,o), +(10,143,cs), +(10,52,o), +(60,-10,o), +(145,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,-6,o), +(239,20,o), +(258,66,c), +(259,66,l), +(269,26,o), +(306,0,o), +(364,0,cs), +(453,0,l), +(453,131,l), +(443,131,ls), +(433,131,o), +(429,139,o), +(429,150,cs), +(429,364,ls), +(429,491,o), +(357,551,o), +(230,551,cs), +(95,551,o), +(19,483,o), +(15,358,c), +(183,358,l), +(184,398,o), +(195,417,o), +(217,417,cs), +(240,417,o), +(251,402,o), +(251,371,cs), +(251,169,ls), +(251,136,o), +(237,118,o), +(216,118,cs), +(192,118,o), +(180,137,o), +(180,163,cs), +(180,190,o), +(195,211,o), +(223,212,cs), +(267,213,l), +(267,316,l), +(194,315,ls), +(90,314,o), +(3,265,o), +(3,143,cs), +(3,54,o), +(53,-6,o), +(139,-6,cs) +); +} +); +width = 457; +}, +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = ogonek; +pos = (496,0); +}, +{ +name = top; +pos = (239,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,-9,o), +(371,27,o), +(402,87,c), +(404,87,l), +(407,23,o), +(428,-9,o), +(484,-9,cs), +(494,-9,o), +(507,-7,o), +(516,-3,c), +(516,32,l), +(507,27,o), +(498,26,o), +(486,26,cs), +(452,26,o), +(437,46,o), +(437,94,cs), +(437,360,ls), +(437,468,o), +(373,527,o), +(258,527,cs), +(148,527,o), +(70,469,o), +(66,383,c), +(104,383,l), +(107,449,o), +(168,493,o), +(258,493,cs), +(353,493,o), +(400,449,o), +(400,360,cs), +(400,129,l), +(371,62,o), +(305,23,o), +(221,23,cs), +(139,23,o), +(87,68,o), +(87,138,cs), +(87,219,o), +(148,264,o), +(260,264,cs), +(408,264,l), +(408,296,l), +(260,296,ls), +(128,296,o), +(49,237,o), +(49,138,cs), +(49,50,o), +(119,-9,o), +(221,-9,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-9,o), +(363,32,o), +(382,96,c), +(385,96,l), +(389,28,o), +(413,0,o), +(471,0,cs), +(496,0,l), +(496,35,l), +(473,35,ls), +(434,35,o), +(417,54,o), +(417,112,cs), +(417,360,ls), +(417,471,o), +(357,527,o), +(238,527,cs), +(124,527,o), +(52,474,o), +(46,383,c), +(84,383,l), +(89,452,o), +(146,493,o), +(238,493,cs), +(332,493,o), +(380,448,o), +(380,360,cs), +(380,199,ls), +(380,89,o), +(314,23,o), +(201,23,cs), +(119,23,o), +(67,68,o), +(67,138,cs), +(67,217,o), +(124,260,o), +(231,261,cs), +(396,263,l), +(396,295,l), +(231,293,ls), +(104,291,o), +(29,235,o), +(29,138,cs), +(29,50,o), +(99,-9,o), +(201,-9,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 499; +}, +{ +anchors = ( +{ +name = bottom; +pos = (278,0); +}, +{ +name = ogonek; +pos = (560,0); +}, +{ +name = top; +pos = (293,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(266,-10,o), +(328,20,o), +(352,63,c), +(358,63,l), +(372,19,o), +(416,-10,o), +(489,-10,cs), +(520,-10,o), +(560,-4,o), +(581,8,c), +(581,128,l), +(572,124,o), +(566,123,o), +(560,123,cs), +(547,123,o), +(539,130,o), +(539,149,cs), +(539,347,ls), +(539,477,o), +(460,554,o), +(299,554,cs), +(139,554,o), +(38,475,o), +(38,357,c), +(224,357,l), +(224,388,o), +(247,408,o), +(287,408,cs), +(319,408,o), +(348,398,o), +(348,356,cs), +(348,178,ls), +(348,136,o), +(317,114,o), +(274,114,cs), +(240,114,o), +(218,130,o), +(218,159,cs), +(218,191,o), +(243,211,o), +(295,211,cs), +(362,211,l), +(362,321,l), +(254,321,ls), +(115,321,o), +(24,258,o), +(24,142,cs), +(24,51,o), +(92,-10,o), +(200,-10,cs) +); +} +); +}; +guides = ( +{ +pos = (343,211); +}, +{ +pos = (205,120); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,-7,o), +(314,34,o), +(332,85,c), +(333,85,l), +(341,33,o), +(389,0,o), +(458,0,cs), +(560,0,l), +(560,153,l), +(542,153,ls), +(527,153,o), +(518,161,o), +(518,183,cs), +(518,347,ls), +(518,477,o), +(439,554,o), +(278,554,cs), +(118,554,o), +(17,477,o), +(17,357,c), +(203,357,l), +(203,389,o), +(226,408,o), +(266,408,cs), +(298,408,o), +(327,398,o), +(327,356,cs), +(327,209,ls), +(327,163,o), +(296,130,o), +(253,130,cs), +(218,130,o), +(197,146,o), +(197,172,cs), +(197,199,o), +(222,215,o), +(264,216,cs), +(343,219,l), +(343,323,l), +(223,321,ls), +(85,319,o), +(3,255,o), +(3,146,cs), +(3,50,o), +(70,-7,o), +(184,-7,cs) +); +} +); +width = 564; +}, +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = ogonek; +pos = (564,0); +}, +{ +name = top; +pos = (275,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(332,-10,o), +(415,26,o), +(461,84,c), +(464,84,l), +(463,22,o), +(488,-7,o), +(534,-7,cs), +(551,-7,o), +(563,-4,o), +(574,1,c), +(574,31,l), +(564,27,o), +(553,25,o), +(540,25,cs), +(510,25,o), +(499,38,o), +(499,89,cs), +(499,353,ls), +(499,465,o), +(417,526,o), +(276,526,cs), +(146,526,o), +(59,471,o), +(46,373,c), +(84,373,l), +(97,453,o), +(165,492,o), +(274,492,cs), +(400,492,o), +(462,442,o), +(462,347,cs), +(462,128,l), +(431,71,o), +(349,24,o), +(233,24,cs), +(129,24,o), +(71,64,o), +(71,137,cs), +(71,216,o), +(119,268,o), +(272,268,cs), +(470,268,l), +(470,300,l), +(270,300,ls), +(118,300,o), +(33,247,o), +(33,134,cs), +(33,39,o), +(114,-10,o), +(228,-10,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-10,o), +(406,26,o), +(452,84,c), +(454,84,l), +(456,34,o), +(479,0,o), +(530,0,cs), +(564,0,l), +(564,36,l), +(540,36,ls), +(505,36,o), +(489,49,o), +(489,99,cs), +(489,353,ls), +(489,465,o), +(410,526,o), +(266,526,cs), +(131,526,o), +(49,472,o), +(36,373,c), +(74,373,l), +(87,451,o), +(152,492,o), +(264,492,cs), +(390,492,o), +(452,442,o), +(452,347,cs), +(452,128,l), +(421,71,o), +(339,24,o), +(223,24,cs), +(119,24,o), +(61,64,o), +(61,137,cs), +(61,216,o), +(109,268,o), +(262,268,cs), +(460,268,l), +(460,300,l), +(260,300,ls), +(108,300,o), +(23,247,o), +(23,134,cs), +(23,39,o), +(104,-10,o), +(218,-10,cs) +); +} +); +width = 571; +}, +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = ogonek; +pos = (637,0); +}, +{ +name = top; +pos = (315,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(286,-10,o), +(362,21,o), +(393,64,c), +(400,64,l), +(418,18,o), +(467,-10,o), +(543,-10,cs), +(583,-10,o), +(626,-3,o), +(647,11,c), +(647,137,l), +(640,133,o), +(635,131,o), +(625,131,cs), +(611,131,o), +(600,139,o), +(600,159,cs), +(600,344,ls), +(600,476,o), +(499,555,o), +(310,554,cs), +(146,553,o), +(33,481,o), +(24,355,c), +(233,355,l), +(235,396,o), +(270,405,o), +(309,405,cs), +(360,405,o), +(380,386,o), +(380,351,cs), +(380,196,ls), +(380,153,o), +(348,124,o), +(291,124,cs), +(253,124,o), +(231,139,o), +(231,166,cs), +(231,198,o), +(259,211,o), +(300,211,cs), +(396,211,l), +(396,321,l), +(253,321,ls), +(107,321,o), +(10,256,o), +(10,143,cs), +(10,48,o), +(86,-10,o), +(198,-10,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,-10,o), +(355,21,o), +(386,73,c), +(387,73,l), +(408,23,o), +(458,0,o), +(529,0,cs), +(637,0,l), +(637,140,l), +(615,140,ls), +(601,140,o), +(590,148,o), +(590,168,cs), +(590,344,ls), +(590,481,o), +(487,555,o), +(300,554,cs), +(129,553,o), +(23,479,o), +(14,355,c), +(223,355,l), +(225,386,o), +(254,405,o), +(299,405,cs), +(346,405,o), +(370,387,o), +(370,351,cs), +(370,206,ls), +(370,156,o), +(333,124,o), +(286,124,cs), +(243,124,o), +(221,139,o), +(221,166,cs), +(221,194,o), +(247,211,o), +(290,211,cs), +(386,211,l), +(386,321,l), +(243,321,ls), +(94,321,o), +(0,252,o), +(0,143,cs), +(0,49,o), +(73,-10,o), +(198,-10,cs) +); +} +); +width = 638; +}, +{ +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = ogonek; +pos = (499,0); +}, +{ +name = top; +pos = (251,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,-9,o), +(371,27,o), +(402,87,c), +(404,87,l), +(407,23,o), +(428,-9,o), +(484,-9,cs), +(494,-9,o), +(507,-7,o), +(516,-3,c), +(516,32,l), +(507,27,o), +(498,26,o), +(486,26,cs), +(452,26,o), +(437,46,o), +(437,94,cs), +(437,360,ls), +(437,468,o), +(373,527,o), +(258,527,cs), +(148,527,o), +(70,469,o), +(66,383,c), +(104,383,l), +(107,449,o), +(168,493,o), +(258,493,cs), +(353,493,o), +(400,449,o), +(400,360,cs), +(400,129,l), +(371,62,o), +(305,23,o), +(221,23,cs), +(139,23,o), +(87,68,o), +(87,138,cs), +(87,219,o), +(148,264,o), +(260,264,cs), +(408,264,l), +(408,296,l), +(260,296,ls), +(128,296,o), +(49,237,o), +(49,138,cs), +(49,50,o), +(119,-9,o), +(221,-9,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(290,-9,o), +(361,44,o), +(387,107,c), +(391,107,l), +(391,43,o), +(422,0,o), +(474,0,cs), +(490,0,l), +(490,35,l), +(476,35,ls), +(442,35,o), +(427,61,o), +(427,113,cs), +(427,352,ls), +(427,460,o), +(368,527,o), +(251,527,cs), +(143,527,o), +(71,476,o), +(59,391,c), +(96,391,l), +(107,455,o), +(164,493,o), +(251,493,cs), +(344,493,o), +(391,438,o), +(391,352,cs), +(391,229,ls), +(391,107,o), +(311,24,o), +(214,24,cs), +(131,24,o), +(82,64,o), +(82,131,cs), +(82,203,o), +(124,242,o), +(212,254,cs), +(402,280,l), +(402,311,l), +(211,285,ls), +(102,270,o), +(47,219,o), +(47,131,cs), +(47,43,o), +(109,-9,o), +(214,-9,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 523; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = ogonek; +pos = (554,0); +}, +{ +name = top; +pos = (300,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(267,-10,o), +(329,20,o), +(353,63,c), +(359,63,l), +(373,19,o), +(417,-10,o), +(490,-10,cs), +(521,-10,o), +(561,-4,o), +(582,8,c), +(582,128,l), +(573,124,o), +(567,123,o), +(561,123,cs), +(548,123,o), +(540,130,o), +(540,149,cs), +(540,347,ls), +(540,477,o), +(461,554,o), +(300,554,cs), +(140,554,o), +(39,475,o), +(39,357,c), +(225,357,l), +(225,388,o), +(248,408,o), +(288,408,cs), +(320,408,o), +(349,398,o), +(349,356,cs), +(349,178,ls), +(349,136,o), +(318,114,o), +(275,114,cs), +(241,114,o), +(219,130,o), +(219,159,cs), +(219,191,o), +(244,211,o), +(296,211,cs), +(363,211,l), +(363,321,l), +(255,321,ls), +(116,321,o), +(25,258,o), +(25,142,cs), +(25,51,o), +(93,-10,o), +(201,-10,cs) +); +} +); +}; +guides = ( +{ +pos = (364,211); +}, +{ +pos = (226,120); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(265,-7,o), +(319,31,o), +(338,88,c), +(350,88,l), +(357,37,o), +(404,0,o), +(472,0,cs), +(555,0,l), +(555,148,l), +(551,148,ls), +(532,148,o), +(521,161,o), +(521,196,cs), +(521,347,ls), +(521,488,o), +(445,554,o), +(285,554,cs), +(139,554,o), +(42,485,o), +(36,377,c), +(220,377,l), +(225,405,o), +(248,421,o), +(281,421,cs), +(324,421,o), +(340,397,o), +(340,357,cs), +(340,221,ls), +(340,166,o), +(303,123,o), +(256,123,cs), +(224,123,o), +(205,135,o), +(205,161,cs), +(205,181,o), +(218,197,o), +(238,205,cs), +(344,249,l), +(344,363,l), +(170,311,ls), +(73,282,o), +(25,224,o), +(25,142,cs), +(25,50,o), +(88,-7,o), +(189,-7,cs) +); +} +); +width = 572; +}, +{ +anchors = ( +{ +name = bottom; +pos = (106,0); +}, +{ +name = ogonek; +pos = (236,0); +}, +{ +name = top; +pos = (198,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-7,o), +(158,9,o), +(183,56,c), +(185,56,l), +(182,23,o), +(191,0,o), +(221,0,cs), +(236,0,l), +(243,29,l), +(228,29,ls), +(205,29,o), +(211,52,o), +(220,94,cs), +(274,353,ls), +(295,452,o), +(289,526,o), +(197,526,cs), +(125,526,o), +(88,467,o), +(68,377,c), +(98,377,l), +(118,471,o), +(150,499,o), +(194,499,cs), +(261,499,o), +(262,440,o), +(245,355,cs), +(200,136,ls), +(184,60,o), +(140,18,o), +(92,18,cs), +(57,18,o), +(33,43,o), +(33,95,cs), +(33,190,o), +(86,253,o), +(179,253,cs), +(231,253,l), +(236,279,l), +(184,279,ls), +(70,279,o), +(3,205,o), +(3,93,cs), +(3,33,o), +(32,-7,o), +(83,-7,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(119,-7,o), +(158,9,o), +(183,56,c), +(185,56,l), +(182,23,o), +(191,0,o), +(221,0,cs), +(236,0,l), +(243,29,l), +(228,29,ls), +(208,29,o), +(209,44,o), +(220,94,cs), +(274,353,ls), +(295,452,o), +(289,526,o), +(197,526,cs), +(125,526,o), +(88,467,o), +(68,377,c), +(98,377,l), +(118,471,o), +(150,499,o), +(194,499,cs), +(261,499,o), +(262,440,o), +(245,355,cs), +(200,136,ls), +(184,60,o), +(140,18,o), +(92,18,cs), +(57,18,o), +(33,43,o), +(33,95,cs), +(33,190,o), +(86,253,o), +(179,253,cs), +(231,253,l), +(236,279,l), +(184,279,ls), +(70,279,o), +(3,205,o), +(3,93,cs), +(3,33,o), +(32,-7,o), +(83,-7,cs) +); +} +); +width = 313; +}, +{ +anchors = ( +{ +name = bottom; +pos = (216,0); +}, +{ +name = ogonek; +pos = (410,0); +}, +{ +name = top; +pos = (263,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(161,-6,o), +(210,17,o), +(235,59,c), +(239,59,l), +(251,20,o), +(288,0,o), +(339,0,cs), +(414,0,l), +(435,120,l), +(422,120,ls), +(409,120,o), +(405,129,o), +(408,141,cs), +(449,339,ls), +(477,475,o), +(405,551,o), +(269,551,cs), +(142,551,o), +(66,484,o), +(45,357,c), +(210,357,l), +(216,393,o), +(228,417,o), +(254,417,cs), +(283,417,o), +(284,392,o), +(278,361,cs), +(237,162,ls), +(232,136,o), +(219,118,o), +(195,118,cs), +(177,118,o), +(165,130,o), +(165,154,cs), +(165,189,o), +(185,212,o), +(228,212,cs), +(263,212,l), +(284,315,l), +(205,315,ls), +(67,315,o), +(-15,237,o), +(-15,122,cs), +(-15,45,o), +(29,-6,o), +(107,-6,cs) +); +} +); +}; +guides = ( +{ +pos = (290,315); +}, +{ +pos = (239,118); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,-6,o), +(206,17,o), +(231,59,c), +(235,59,l), +(247,20,o), +(284,0,o), +(335,0,cs), +(410,0,l), +(431,120,l), +(418,120,ls), +(405,120,o), +(401,129,o), +(404,141,cs), +(445,339,ls), +(473,475,o), +(401,551,o), +(265,551,cs), +(138,551,o), +(62,484,o), +(41,357,c), +(206,357,l), +(212,393,o), +(224,417,o), +(250,417,cs), +(279,417,o), +(280,392,o), +(274,361,cs), +(234,166,ls), +(227,133,o), +(214,118,o), +(190,118,cs), +(170,118,o), +(156,130,o), +(156,156,cs), +(156,190,o), +(178,212,o), +(210,212,cs), +(259,212,l), +(281,315,l), +(206,315,ls), +(61,315,o), +(-15,237,o), +(-15,121,cs), +(-15,45,o), +(33,-6,o), +(107,-6,cs) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = bottom; +pos = (203,0); +}, +{ +name = ogonek; +pos = (446,0); +}, +{ +name = top; +pos = (284,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(256,-10,o), +(322,24,o), +(353,75,c), +(363,75,l), +(359,80,l), +(356,67,o), +(354,54,o), +(354,47,cs), +(353,8,o), +(374,-10,o), +(412,-10,cs), +(423,-10,o), +(436,-7,o), +(442,-4,c), +(449,27,l), +(439,23,o), +(431,21,o), +(419,21,cs), +(396,21,o), +(385,31,o), +(394,77,cs), +(447,335,ls), +(471,450,o), +(421,527,o), +(279,527,cs), +(178,527,o), +(100,472,o), +(77,374,c), +(114,374,l), +(130,445,o), +(187,493,o), +(283,493,cs), +(380,493,o), +(435,451,o), +(413,342,cs), +(404,297,l), +(244,297,ls), +(109,297,o), +(25,237,o), +(22,133,cs), +(19,47,o), +(76,-10,o), +(181,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(106,23,o), +(56,60,o), +(58,127,cs), +(61,214,o), +(124,265,o), +(243,265,cs), +(397,265,l), +(378,174,ls), +(359,83,o), +(294,23,o), +(182,23,cs) +); +} +); +}; +guides = ( +{ +pos = (267,264); +}, +{ +pos = (267,296); +}, +{ +pos = (111,383); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,-10,o), +(321,16,o), +(353,61,c), +(357,61,l), +(358,25,o), +(380,0,o), +(421,0,cs), +(446,0,l), +(453,31,l), +(433,31,ls), +(399,31,o), +(387,44,o), +(396,87,cs), +(447,335,ls), +(472,458,o), +(395,527,o), +(279,527,cs), +(179,527,o), +(100,475,o), +(77,383,c), +(114,383,l), +(130,450,o), +(185,494,o), +(279,494,cs), +(378,494,o), +(434,442,o), +(411,332,cs), +(364,104,l), +(330,53,o), +(272,22,o), +(194,22,cs), +(119,22,o), +(68,58,o), +(68,131,cs), +(68,216,o), +(136,264,o), +(253,264,cs), +(405,264,l), +(412,296,l), +(259,296,ls), +(123,296,o), +(32,242,o), +(32,126,cs), +(32,44,o), +(90,-10,o), +(189,-10,cs) +); +} +); +width = 524; +}, +{ +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = ogonek; +pos = (523,0); +}, +{ +name = top; +pos = (322,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,-10,o), +(307,22,o), +(329,69,c), +(359,69,l), +(341,101,l), +(340,99,o), +(340,96,o), +(339,94,cs), +(332,67,o), +(332,-10,o), +(441,-10,cs), +(470,-10,o), +(494,-7,o), +(515,0,c), +(538,107,l), +(532,105,o), +(527,104,o), +(521,104,cs), +(508,104,o), +(504,114,o), +(509,140,cs), +(547,323,ls), +(578,475,o), +(485,554,o), +(324,554,cs), +(157,554,o), +(70,474,o), +(53,354,c), +(228,354,l), +(236,390,o), +(260,406,o), +(300,406,cs), +(345,406,o), +(372,388,o), +(361,340,cs), +(356,319,l), +(225,319,ls), +(89,319,o), +(3,247,o), +(3,131,cs), +(3,47,o), +(66,-10,o), +(168,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(214,127,o), +(195,141,o), +(195,164,cs), +(195,202,o), +(220,218,o), +(274,218,cs), +(334,218,l), +(327,182,ls), +(320,148,o), +(293,127,o), +(251,127,cs) +); +} +); +}; +guides = ( +{ +pos = (320,211); +}, +{ +pos = (249,357); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,-10,o), +(309,19,o), +(335,62,c), +(343,62,l), +(353,32,o), +(378,0,o), +(448,0,cs), +(523,0,l), +(549,134,l), +(527,134,ls), +(514,134,o), +(510,144,o), +(514,162,cs), +(548,323,ls), +(577,462,o), +(487,554,o), +(324,554,cs), +(175,554,o), +(68,483,o), +(54,358,c), +(229,358,l), +(235,393,o), +(261,408,o), +(301,408,cs), +(345,408,o), +(371,389,o), +(361,340,cs), +(327,175,ls), +(320,141,o), +(293,120,o), +(251,120,cs), +(217,120,o), +(195,133,o), +(195,161,cs), +(195,195,o), +(220,211,o), +(274,211,cs), +(350,211,l), +(373,321,l), +(251,321,ls), +(85,321,o), +(3,247,o), +(3,134,cs), +(3,46,o), +(69,-10,o), +(167,-10,cs) +); +} +); +width = 599; +}, +{ +anchors = ( +{ +name = bottom; +pos = (270,0); +}, +{ +name = ogonek; +pos = (515,0); +}, +{ +name = top; +pos = (296,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(289,-10,o), +(376,24,o), +(415,70,c), +(419,70,l), +(413,31,o), +(431,0,o), +(479,0,cs), +(515,0,l), +(522,31,l), +(486,31,ls), +(460,31,o), +(448,41,o), +(456,80,cs), +(508,332,ls), +(533,453,o), +(461,527,o), +(296,527,cs), +(182,527,o), +(89,476,o), +(67,373,c), +(104,373,l), +(122,444,o), +(186,493,o), +(291,493,cs), +(408,493,o), +(497,451,o), +(473,336,cs), +(466,302,l), +(277,302,ls), +(121,302,o), +(18,262,o), +(13,133,cs), +(10,44,o), +(80,-10,o), +(202,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(105,21,o), +(48,69,o), +(51,134,cs), +(55,250,o), +(158,270,o), +(277,270,cs), +(460,270,l), +(428,113,l), +(387,59,o), +(298,21,o), +(206,21,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-10,o), +(377,26,o), +(416,80,c), +(422,80,l), +(414,34,o), +(429,0,o), +(479,0,cs), +(515,0,l), +(522,31,l), +(486,31,ls), +(459,31,o), +(448,43,o), +(456,80,cs), +(508,332,ls), +(535,463,o), +(448,527,o), +(296,527,cs), +(182,527,o), +(89,476,o), +(67,373,c), +(104,373,l), +(122,444,o), +(186,493,o), +(291,493,cs), +(409,493,o), +(496,451,o), +(473,336,cs), +(431,127,l), +(392,63,o), +(300,21,o), +(199,21,cs), +(109,21,o), +(51,60,o), +(51,132,cs), +(51,249,o), +(156,270,o), +(277,270,cs), +(468,270,l), +(474,302,l), +(275,302,ls), +(121,302,o), +(18,262,o), +(13,133,cs), +(10,47,o), +(80,-10,o), +(189,-10,cs) +); +} +); +width = 587; +}, +{ +anchors = ( +{ +name = bottom; +pos = (265,0); +}, +{ +name = ogonek; +pos = (585,0); +}, +{ +name = top; +pos = (357,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(256,-10,o), +(330,23,o), +(355,61,c), +(363,61,l), +(375,18,o), +(420,-10,o), +(486,-10,cs), +(526,-10,o), +(561,-3,o), +(582,8,c), +(607,125,l), +(599,121,o), +(590,121,o), +(584,121,cs), +(568,121,o), +(566,134,o), +(570,152,cs), +(607,329,ls), +(640,488,o), +(504,554,o), +(329,554,cs), +(169,554,o), +(54,488,o), +(36,358,c), +(245,358,l), +(251,387,o), +(273,404,o), +(319,404,cs), +(368,404,o), +(402,389,o), +(392,343,cs), +(359,183,ls), +(352,148,o), +(322,124,o), +(273,124,cs), +(238,124,o), +(215,139,o), +(216,167,cs), +(217,200,o), +(240,214,o), +(291,214,cs), +(381,214,l), +(403,320,l), +(258,320,ls), +(129,320,o), +(-7,288,o), +(-7,139,cs), +(-7,50,o), +(65,-10,o), +(174,-10,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,-10,o), +(330,20,o), +(361,65,c), +(369,65,l), +(382,25,o), +(424,0,o), +(487,0,cs), +(585,0,l), +(610,131,l), +(587,131,ls), +(571,131,o), +(569,144,o), +(573,162,cs), +(607,329,ls), +(639,488,o), +(504,554,o), +(329,554,cs), +(169,554,o), +(54,488,o), +(36,358,c), +(245,358,l), +(251,387,o), +(273,404,o), +(319,404,cs), +(368,404,o), +(402,389,o), +(392,343,cs), +(359,183,ls), +(352,148,o), +(322,124,o), +(273,124,cs), +(238,124,o), +(215,139,o), +(216,167,cs), +(217,200,o), +(243,214,o), +(296,214,cs), +(381,214,l), +(403,320,l), +(258,320,ls), +(129,320,o), +(-7,288,o), +(-7,139,cs), +(-7,50,o), +(65,-10,o), +(171,-10,cs) +); +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/aacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/aacute.glyph new file mode 100644 index 00000000..43af71f4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/aacute.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = aacute; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (120,-156); +ref = acutecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (123,-137); +ref = acutecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (259,-155); +ref = acutecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (243,-129); +ref = acutecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (119,-156); +ref = acutecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (124,-137); +ref = acutecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (245,-155); +ref = acutecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (217,-134); +ref = acutecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (286,-155); +ref = acutecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (256,-129); +ref = acutecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (242,-155); +ref = acutecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (205,-134); +ref = acutecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (83,-156); +ref = acutecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (103,-137); +ref = acutecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (222,-155); +ref = acutecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (183,-134); +ref = acutecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (239,-155); +ref = acutecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (222,-129); +ref = acutecomb; +} +); +width = 723; +} +); +unicode = 225; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/aacute.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/aacute.ss05.glyph new file mode 100644 index 00000000..65a19867 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/aacute.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = aacute.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (93,-156); +ref = acutecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (134,-137); +ref = acutecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (227,-155); +ref = acutecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (208,-129); +ref = acutecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (93,-156); +ref = acutecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (137,-137); +ref = acutecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (204,-155); +ref = acutecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (202,-134); +ref = acutecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (227,-155); +ref = acutecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (208,-129); +ref = acutecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (195,-155); +ref = acutecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (190,-134); +ref = acutecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (57,-156); +ref = acutecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (68,-137); +ref = acutecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (142,-155); +ref = acutecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (127,-134); +ref = acutecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (153,-155); +ref = acutecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (157,-129); +ref = acutecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abreve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abreve.glyph new file mode 100644 index 00000000..65f20d35 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abreve.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = abreve; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (52,-156); +ref = brevecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (40,-137); +ref = brevecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (143,-155); +ref = brevecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (121,-129); +ref = brevecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (51,-156); +ref = brevecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,-137); +ref = brevecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (132,-161); +ref = brevecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (110,-134); +ref = brevecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (170,-155); +ref = brevecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (134,-129); +ref = brevecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (131,-161); +ref = brevecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (104,-134); +ref = brevecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (10,-156); +ref = brevecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (18,-137); +ref = brevecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (108,-155); +ref = brevecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (66,-134); +ref = brevecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (117,-155); +ref = brevecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (100,-134); +ref = brevecomb; +} +); +width = 723; +} +); +unicode = 259; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abreve.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abreve.ss05.glyph new file mode 100644 index 00000000..56eef742 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abreve.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = abreve.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (25,-156); +ref = brevecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (51,-137); +ref = brevecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (111,-155); +ref = brevecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (86,-129); +ref = brevecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (25,-156); +ref = brevecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (54,-137); +ref = brevecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (91,-161); +ref = brevecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (95,-134); +ref = brevecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (111,-155); +ref = brevecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (86,-129); +ref = brevecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (84,-161); +ref = brevecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (89,-134); +ref = brevecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-16,-156); +ref = brevecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-17,-137); +ref = brevecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (28,-155); +ref = brevecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (10,-134); +ref = brevecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (31,-155); +ref = brevecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (35,-134); +ref = brevecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abreveacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abreveacute.glyph new file mode 100644 index 00000000..1ad4e16c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abreveacute.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = abreveacute; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (52,-156); +ref = brevecomb_acutecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,-137); +ref = brevecomb_acutecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (144,-155); +ref = brevecomb_acutecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (120,-129); +ref = brevecomb_acutecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (51,-156); +ref = brevecomb_acutecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (42,-137); +ref = brevecomb_acutecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (132,-161); +ref = brevecomb_acutecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (110,-134); +ref = brevecomb_acutecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (171,-155); +ref = brevecomb_acutecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (133,-129); +ref = brevecomb_acutecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (131,-161); +ref = brevecomb_acutecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (104,-134); +ref = brevecomb_acutecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (13,-157); +ref = brevecomb_acutecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (18,-137); +ref = brevecomb_acutecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (102,-161); +ref = brevecomb_acutecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (68,-134); +ref = brevecomb_acutecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (114,-155); +ref = brevecomb_acutecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (91,-129); +ref = brevecomb_acutecomb; +} +); +width = 723; +} +); +unicode = 7855; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abreveacute.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abreveacute.ss05.glyph new file mode 100644 index 00000000..8f6c469b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abreveacute.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = abreveacute.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (25,-156); +ref = brevecomb_acutecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (52,-137); +ref = brevecomb_acutecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (112,-155); +ref = brevecomb_acutecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (85,-129); +ref = brevecomb_acutecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (25,-156); +ref = brevecomb_acutecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (55,-137); +ref = brevecomb_acutecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (91,-161); +ref = brevecomb_acutecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (95,-134); +ref = brevecomb_acutecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (112,-155); +ref = brevecomb_acutecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (85,-129); +ref = brevecomb_acutecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (84,-161); +ref = brevecomb_acutecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (89,-134); +ref = brevecomb_acutecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-13,-157); +ref = brevecomb_acutecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-17,-137); +ref = brevecomb_acutecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (22,-161); +ref = brevecomb_acutecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (12,-134); +ref = brevecomb_acutecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (28,-155); +ref = brevecomb_acutecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (26,-129); +ref = brevecomb_acutecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abrevedotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevedotbelow.glyph new file mode 100644 index 00000000..b5ed48ee --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevedotbelow.glyph @@ -0,0 +1,314 @@ +{ +color = 6; +glyphname = abrevedotbelow; +kernLeft = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (113,0); +ref = dotbelowcomb; +}, +{ +pos = (52,-156); +ref = brevecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (117,0); +ref = dotbelowcomb; +}, +{ +pos = (40,-137); +ref = brevecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (245,0); +ref = dotbelowcomb; +}, +{ +pos = (143,-155); +ref = brevecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (207,0); +ref = dotbelowcomb; +}, +{ +pos = (121,-129); +ref = brevecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,0); +ref = dotbelowcomb; +}, +{ +pos = (51,-156); +ref = brevecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (118,0); +ref = dotbelowcomb; +}, +{ +pos = (41,-137); +ref = brevecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (228,0); +ref = dotbelowcomb; +}, +{ +pos = (132,-161); +ref = brevecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (204,0); +ref = dotbelowcomb; +}, +{ +pos = (110,-134); +ref = brevecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (272,0); +ref = dotbelowcomb; +}, +{ +pos = (170,-155); +ref = brevecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (220,0); +ref = dotbelowcomb; +}, +{ +pos = (134,-129); +ref = brevecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (225,0); +ref = dotbelowcomb; +}, +{ +pos = (131,-161); +ref = brevecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (194,0); +ref = dotbelowcomb; +}, +{ +pos = (104,-134); +ref = brevecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (108,0); +ref = dotbelowcomb; +}, +{ +pos = (10,-156); +ref = brevecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (121,0); +ref = dotbelowcomb; +}, +{ +pos = (18,-137); +ref = brevecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (238,0); +ref = dotbelowcomb; +}, +{ +pos = (108,-155); +ref = brevecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (195,0); +ref = dotbelowcomb; +}, +{ +pos = (66,-134); +ref = brevecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (257,0); +ref = dotbelowcomb; +}, +{ +pos = (117,-155); +ref = brevecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (213,0); +ref = dotbelowcomb; +}, +{ +pos = (100,-134); +ref = brevecomb; +} +); +width = 723; +} +); +unicode = 7863; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abrevedotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevedotbelow.ss01.glyph new file mode 100644 index 00000000..03d4f670 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevedotbelow.ss01.glyph @@ -0,0 +1,319 @@ +{ +color = 6; +glyphname = abrevedotbelow.ss01; +kernLeft = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (121,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (52,-156); +ref = brevecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (106,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (40,-137); +ref = brevecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (258,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (143,-155); +ref = brevecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (219,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (121,-129); +ref = brevecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (51,-156); +ref = brevecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (107,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (41,-137); +ref = brevecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (241,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (132,-161); +ref = brevecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (193,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (110,-134); +ref = brevecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = a; +}, +{ +alignment = -1; +pos = (258,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (143,-155); +ref = brevecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = a; +}, +{ +alignment = -1; +pos = (219,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (121,-129); +ref = brevecomb; +} +); +width = 730; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (238,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (131,-161); +ref = brevecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (104,-134); +ref = brevecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (10,-156); +ref = brevecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (18,-137); +ref = brevecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (251,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (108,-155); +ref = brevecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (186,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (66,-134); +ref = brevecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (268,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (117,-155); +ref = brevecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (227,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (100,-134); +ref = brevecomb; +} +); +width = 723; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abrevedotbelow.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevedotbelow.ss05.glyph new file mode 100644 index 00000000..ed0a9368 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevedotbelow.ss05.glyph @@ -0,0 +1,320 @@ +{ +color = 6; +glyphname = abrevedotbelow.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (94,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (25,-156); +ref = brevecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (105,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (51,-137); +ref = brevecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (226,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (111,-155); +ref = brevecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (86,-129); +ref = brevecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (94,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (25,-156); +ref = brevecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (108,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (54,-137); +ref = brevecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (200,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (91,-161); +ref = brevecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (163,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (95,-134); +ref = brevecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (226,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (111,-155); +ref = brevecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (86,-129); +ref = brevecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (191,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (84,-161); +ref = brevecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (152,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (89,-134); +ref = brevecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (104,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-16,-156); +ref = brevecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (142,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-17,-137); +ref = brevecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (198,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (28,-155); +ref = brevecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (178,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (10,-134); +ref = brevecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (264,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (31,-155); +ref = brevecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (182,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (35,-134); +ref = brevecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abrevegrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevegrave.glyph new file mode 100644 index 00000000..c7f3dbd8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevegrave.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = abrevegrave; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (53,-156); +ref = brevecomb_gravecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (37,-137); +ref = brevecomb_gravecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (143,-155); +ref = brevecomb_gravecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (122,-129); +ref = brevecomb_gravecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (52,-156); +ref = brevecomb_gravecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (38,-137); +ref = brevecomb_gravecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (132,-161); +ref = brevecomb_gravecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (110,-134); +ref = brevecomb_gravecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (170,-155); +ref = brevecomb_gravecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (135,-129); +ref = brevecomb_gravecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (131,-161); +ref = brevecomb_gravecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (104,-134); +ref = brevecomb_gravecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (19,-157); +ref = brevecomb_gravecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (5,-137); +ref = brevecomb_gravecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (103,-155); +ref = brevecomb_gravecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (68,-134); +ref = brevecomb_gravecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (114,-155); +ref = brevecomb_gravecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (91,-129); +ref = brevecomb_gravecomb; +} +); +width = 723; +} +); +unicode = 7857; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abrevegrave.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevegrave.ss05.glyph new file mode 100644 index 00000000..86253925 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevegrave.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = abrevegrave.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (26,-156); +ref = brevecomb_gravecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (48,-137); +ref = brevecomb_gravecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (111,-155); +ref = brevecomb_gravecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (87,-129); +ref = brevecomb_gravecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (26,-156); +ref = brevecomb_gravecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (51,-137); +ref = brevecomb_gravecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (91,-161); +ref = brevecomb_gravecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (95,-134); +ref = brevecomb_gravecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (111,-155); +ref = brevecomb_gravecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (87,-129); +ref = brevecomb_gravecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (84,-161); +ref = brevecomb_gravecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (89,-134); +ref = brevecomb_gravecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-7,-157); +ref = brevecomb_gravecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-30,-137); +ref = brevecomb_gravecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (23,-155); +ref = brevecomb_gravecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (12,-134); +ref = brevecomb_gravecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (28,-155); +ref = brevecomb_gravecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (26,-129); +ref = brevecomb_gravecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abrevehookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevehookabove.glyph new file mode 100644 index 00000000..188b44bd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevehookabove.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = abrevehookabove; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (53,-156); +ref = brevecomb_hookabovecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,-137); +ref = brevecomb_hookabovecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (143,-155); +ref = brevecomb_hookabovecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (122,-129); +ref = brevecomb_hookabovecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (52,-156); +ref = brevecomb_hookabovecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (42,-137); +ref = brevecomb_hookabovecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (132,-161); +ref = brevecomb_hookabovecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (113,-134); +ref = brevecomb_hookabovecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (170,-155); +ref = brevecomb_hookabovecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (135,-129); +ref = brevecomb_hookabovecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (131,-161); +ref = brevecomb_hookabovecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (107,-134); +ref = brevecomb_hookabovecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (19,-157); +ref = brevecomb_hookabovecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (17,-137); +ref = brevecomb_hookabovecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (103,-155); +ref = brevecomb_hookabovecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (68,-134); +ref = brevecomb_hookabovecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (115,-155); +ref = brevecomb_hookabovecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (91,-129); +ref = brevecomb_hookabovecomb; +} +); +width = 723; +} +); +unicode = 7859; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abrevehookabove.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevehookabove.ss05.glyph new file mode 100644 index 00000000..66394094 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevehookabove.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = abrevehookabove.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (26,-156); +ref = brevecomb_hookabovecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (52,-137); +ref = brevecomb_hookabovecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (111,-155); +ref = brevecomb_hookabovecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (87,-129); +ref = brevecomb_hookabovecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (26,-156); +ref = brevecomb_hookabovecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (55,-137); +ref = brevecomb_hookabovecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (91,-161); +ref = brevecomb_hookabovecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (98,-134); +ref = brevecomb_hookabovecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (111,-155); +ref = brevecomb_hookabovecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (87,-129); +ref = brevecomb_hookabovecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (84,-161); +ref = brevecomb_hookabovecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (92,-134); +ref = brevecomb_hookabovecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-7,-157); +ref = brevecomb_hookabovecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-18,-137); +ref = brevecomb_hookabovecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (23,-155); +ref = brevecomb_hookabovecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (12,-134); +ref = brevecomb_hookabovecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (29,-155); +ref = brevecomb_hookabovecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (26,-129); +ref = brevecomb_hookabovecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abrevetilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevetilde.glyph new file mode 100644 index 00000000..93523129 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevetilde.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = abrevetilde; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,-156); +ref = brevecomb_tildecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,-137); +ref = brevecomb_tildecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (141,-155); +ref = brevecomb_tildecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (110,-129); +ref = brevecomb_tildecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (43,-156); +ref = brevecomb_tildecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (42,-137); +ref = brevecomb_tildecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (127,-155); +ref = brevecomb_tildecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (101,-134); +ref = brevecomb_tildecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (168,-155); +ref = brevecomb_tildecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (123,-129); +ref = brevecomb_tildecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (126,-155); +ref = brevecomb_tildecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (95,-134); +ref = brevecomb_tildecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-157); +ref = brevecomb_tildecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (6,-137); +ref = brevecomb_tildecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (95,-155); +ref = brevecomb_tildecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (54,-134); +ref = brevecomb_tildecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (98,-155); +ref = brevecomb_tildecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (81,-129); +ref = brevecomb_tildecomb; +} +); +width = 723; +} +); +unicode = 7861; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/abrevetilde.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevetilde.ss05.glyph new file mode 100644 index 00000000..7659b46d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/abrevetilde.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = abrevetilde.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (17,-156); +ref = brevecomb_tildecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (52,-137); +ref = brevecomb_tildecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (109,-155); +ref = brevecomb_tildecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (75,-129); +ref = brevecomb_tildecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (17,-156); +ref = brevecomb_tildecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (55,-137); +ref = brevecomb_tildecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (86,-155); +ref = brevecomb_tildecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (86,-134); +ref = brevecomb_tildecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (109,-155); +ref = brevecomb_tildecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (75,-129); +ref = brevecomb_tildecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (79,-155); +ref = brevecomb_tildecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (80,-134); +ref = brevecomb_tildecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-25,-157); +ref = brevecomb_tildecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-29,-137); +ref = brevecomb_tildecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (15,-155); +ref = brevecomb_tildecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-2,-134); +ref = brevecomb_tildecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (12,-155); +ref = brevecomb_tildecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (16,-129); +ref = brevecomb_tildecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflex.glyph new file mode 100644 index 00000000..d0ba136f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflex.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = acircumflex; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (47,-156); +ref = circumflexcomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (18,-137); +ref = circumflexcomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (138,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (69,-129); +ref = circumflexcomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (46,-156); +ref = circumflexcomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (19,-137); +ref = circumflexcomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (136,-155); +ref = circumflexcomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (82,-134); +ref = circumflexcomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (165,-155); +ref = circumflexcomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (82,-129); +ref = circumflexcomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (135,-155); +ref = circumflexcomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (76,-134); +ref = circumflexcomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (9,-156); +ref = circumflexcomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (-4,-137); +ref = circumflexcomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,-155); +ref = circumflexcomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (49,-134); +ref = circumflexcomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,-155); +ref = circumflexcomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (46,-129); +ref = circumflexcomb; +} +); +width = 723; +} +); +unicode = 226; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflex.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflex.ss05.glyph new file mode 100644 index 00000000..bc8fd6f3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflex.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = acircumflex.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (20,-156); +ref = circumflexcomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (29,-137); +ref = circumflexcomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (34,-129); +ref = circumflexcomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (20,-156); +ref = circumflexcomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (32,-137); +ref = circumflexcomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (95,-155); +ref = circumflexcomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (67,-134); +ref = circumflexcomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (34,-129); +ref = circumflexcomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (88,-155); +ref = circumflexcomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (61,-134); +ref = circumflexcomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-17,-156); +ref = circumflexcomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-39,-137); +ref = circumflexcomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (32,-155); +ref = circumflexcomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-7,-134); +ref = circumflexcomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (30,-155); +ref = circumflexcomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-19,-129); +ref = circumflexcomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexacute.glyph new file mode 100644 index 00000000..6e7c3093 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexacute.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = acircumflexacute; +kernLeft = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (47,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (29,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (138,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (93,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (46,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (30,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (136,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (82,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (165,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (106,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (135,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (75,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (9,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (8,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (51,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (69,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 723; +} +); +unicode = 7845; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexacute.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexacute.ss05.glyph new file mode 100644 index 00000000..5c6c9325 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexacute.ss05.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = acircumflexacute.ss05; +kernLeft = KO_a.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (20,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (40,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (58,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (20,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (43,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (95,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (67,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (58,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (88,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (60,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-17,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-27,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (32,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-5,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (30,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (4,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexdotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexdotbelow.glyph new file mode 100644 index 00000000..a12e35a5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexdotbelow.glyph @@ -0,0 +1,315 @@ +{ +color = 6; +glyphname = acircumflexdotbelow; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (113,0); +ref = dotbelowcomb; +}, +{ +pos = (47,-156); +ref = circumflexcomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (117,0); +ref = dotbelowcomb; +}, +{ +pos = (18,-137); +ref = circumflexcomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (245,0); +ref = dotbelowcomb; +}, +{ +pos = (138,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (207,0); +ref = dotbelowcomb; +}, +{ +pos = (69,-129); +ref = circumflexcomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,0); +ref = dotbelowcomb; +}, +{ +pos = (46,-156); +ref = circumflexcomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (118,0); +ref = dotbelowcomb; +}, +{ +pos = (19,-137); +ref = circumflexcomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (228,0); +ref = dotbelowcomb; +}, +{ +pos = (136,-155); +ref = circumflexcomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (204,0); +ref = dotbelowcomb; +}, +{ +pos = (82,-134); +ref = circumflexcomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (272,0); +ref = dotbelowcomb; +}, +{ +pos = (165,-155); +ref = circumflexcomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (220,0); +ref = dotbelowcomb; +}, +{ +pos = (82,-129); +ref = circumflexcomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (225,0); +ref = dotbelowcomb; +}, +{ +pos = (135,-155); +ref = circumflexcomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (194,0); +ref = dotbelowcomb; +}, +{ +pos = (76,-134); +ref = circumflexcomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (108,0); +ref = dotbelowcomb; +}, +{ +pos = (9,-156); +ref = circumflexcomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (121,0); +ref = dotbelowcomb; +}, +{ +pos = (-4,-137); +ref = circumflexcomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (238,0); +ref = dotbelowcomb; +}, +{ +pos = (112,-155); +ref = circumflexcomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (195,0); +ref = dotbelowcomb; +}, +{ +pos = (49,-134); +ref = circumflexcomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (257,0); +ref = dotbelowcomb; +}, +{ +pos = (116,-155); +ref = circumflexcomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (213,0); +ref = dotbelowcomb; +}, +{ +pos = (46,-129); +ref = circumflexcomb; +} +); +width = 723; +} +); +unicode = 7853; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexdotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..9fcbcb5c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexdotbelow.ss01.glyph @@ -0,0 +1,319 @@ +{ +color = 6; +glyphname = acircumflexdotbelow.ss01; +kernLeft = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (121,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (47,-156); +ref = circumflexcomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (106,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (18,-137); +ref = circumflexcomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (258,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (138,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (219,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (69,-129); +ref = circumflexcomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (46,-156); +ref = circumflexcomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (107,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (19,-137); +ref = circumflexcomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (241,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (136,-155); +ref = circumflexcomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (193,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (82,-134); +ref = circumflexcomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = a; +}, +{ +alignment = -1; +pos = (258,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (138,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = a; +}, +{ +alignment = -1; +pos = (219,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (69,-129); +ref = circumflexcomb; +} +); +width = 730; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (238,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (135,-155); +ref = circumflexcomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (76,-134); +ref = circumflexcomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (9,-156); +ref = circumflexcomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-4,-137); +ref = circumflexcomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (251,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (112,-155); +ref = circumflexcomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (186,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (49,-134); +ref = circumflexcomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (268,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (116,-155); +ref = circumflexcomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (227,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (46,-129); +ref = circumflexcomb; +} +); +width = 723; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexdotbelow.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexdotbelow.ss05.glyph new file mode 100644 index 00000000..05472a87 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexdotbelow.ss05.glyph @@ -0,0 +1,320 @@ +{ +color = 6; +glyphname = acircumflexdotbelow.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (94,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (20,-156); +ref = circumflexcomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (105,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (29,-137); +ref = circumflexcomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (226,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (106,-155); +ref = circumflexcomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (34,-129); +ref = circumflexcomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (94,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (20,-156); +ref = circumflexcomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (108,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (32,-137); +ref = circumflexcomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (200,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (95,-155); +ref = circumflexcomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (163,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (67,-134); +ref = circumflexcomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (226,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (106,-155); +ref = circumflexcomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (34,-129); +ref = circumflexcomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (191,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (88,-155); +ref = circumflexcomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (152,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (61,-134); +ref = circumflexcomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (104,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-17,-156); +ref = circumflexcomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (142,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-39,-137); +ref = circumflexcomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (198,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (32,-155); +ref = circumflexcomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (178,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-7,-134); +ref = circumflexcomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (264,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (30,-155); +ref = circumflexcomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (182,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-19,-129); +ref = circumflexcomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexgrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexgrave.glyph new file mode 100644 index 00000000..ff4d4a70 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexgrave.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = acircumflexgrave; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (47,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (29,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (138,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (93,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (46,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (30,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (136,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (82,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (165,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (106,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (135,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (75,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (9,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (8,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (51,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (69,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 723; +} +); +unicode = 7847; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexgrave.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexgrave.ss05.glyph new file mode 100644 index 00000000..e8405cbb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexgrave.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = acircumflexgrave.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (20,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (40,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (58,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (20,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (43,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (95,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (67,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (58,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (88,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (60,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-17,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-27,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (32,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-5,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (30,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (4,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexhookabove.glyph new file mode 100644 index 00000000..13cfbcd2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexhookabove.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = acircumflexhookabove; +kernLeft = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (47,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (29,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (138,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (93,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (46,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (30,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (136,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (82,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (165,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (106,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (135,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (75,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (9,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (8,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (51,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (69,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 723; +} +); +unicode = 7849; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexhookabove.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexhookabove.ss05.glyph new file mode 100644 index 00000000..09612825 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflexhookabove.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = acircumflexhookabove.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (20,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (40,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (58,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (20,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (43,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (95,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (67,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (58,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (88,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (60,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-17,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-27,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (32,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-5,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (30,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (4,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflextilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflextilde.glyph new file mode 100644 index 00000000..a575b2b6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflextilde.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = acircumflextilde; +kernLeft = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (47,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (29,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (138,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (93,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (46,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (30,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (136,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (82,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (165,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (106,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (135,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (76,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (9,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (7,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (105,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (51,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (77,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 723; +} +); +unicode = 7851; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflextilde.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflextilde.ss05.glyph new file mode 100644 index 00000000..c0bf4b8c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acircumflextilde.ss05.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = acircumflextilde.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (20,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (40,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (58,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (20,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (43,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (95,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (67,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (106,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (58,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (88,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (61,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-17,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-28,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (25,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-5,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (30,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (12,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acute.glyph new file mode 100644 index 00000000..1fdbc710 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acute.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = acute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 189; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 321; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 203; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 351; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = acutecomb; +} +); +width = 189; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = acutecomb; +} +); +width = 321; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = acutecomb; +} +); +width = 189; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = acutecomb; +} +); +width = 301; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = acutecomb; +} +); +width = 203; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = acutecomb; +} +); +width = 351; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 190; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 308; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 190; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 318; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 191; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 313; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 203; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 351; +} +); +unicode = 180; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/acutecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/acutecomb.glyph new file mode 100644 index 00000000..66b61da2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/acutecomb.glyph @@ -0,0 +1,430 @@ +{ +glyphname = acutecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (56,672); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (91,672); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(103,746,l), +(182,882,l), +(140,882,l), +(75,746,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(71,746,l), +(149,882,l), +(114,882,l), +(40,746,l) +); +} +); +width = 189; +}, +{ +anchors = ( +{ +name = _top; +pos = (112,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,735,l), +(281,884,l), +(93,884,l), +(40,735,l) +); +} +); +width = 321; +}, +{ +anchors = ( +{ +name = _top; +pos = (58,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(75,746,l), +(163,882,l), +(118,882,l), +(40,746,l) +); +} +); +width = 203; +}, +{ +anchors = ( +{ +name = _top; +pos = (117,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,729,l), +(311,878,l), +(103,878,l), +(40,729,l) +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = _top; +pos = (36,672); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (91,672); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(103,746,l), +(182,882,l), +(140,882,l), +(75,746,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,746,l), +(129,882,l), +(94,882,l), +(20,746,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = _top; +pos = (102,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,735,l), +(271,884,l), +(83,884,l), +(30,735,l) +); +} +); +width = 301; +}, +{ +anchors = ( +{ +name = _top; +pos = (35,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,746,l), +(129,882,l), +(88,882,l), +(20,746,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = _top; +pos = (91,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,735,l), +(260,884,l), +(72,884,l), +(19,735,l) +); +} +); +width = 279; +}, +{ +anchors = ( +{ +name = _top; +pos = (48,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(65,746,l), +(153,882,l), +(108,882,l), +(30,746,l) +); +} +); +width = 183; +}, +{ +anchors = ( +{ +name = _top; +pos = (107,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,729,l), +(301,878,l), +(93,878,l), +(30,729,l) +); +} +); +width = 331; +}, +{ +anchors = ( +{ +name = _top; +pos = (56,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(72,746,l), +(150,882,l), +(109,882,l), +(43,746,l) +); +} +); +width = 190; +}, +{ +anchors = ( +{ +name = _top; +pos = (110,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(181,735,l), +(270,884,l), +(84,884,l), +(39,735,l) +); +} +); +width = 308; +}, +{ +anchors = ( +{ +name = _top; +pos = (141,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,746,l), +(279,882,l), +(242,882,l), +(141,746,l) +); +} +); +width = 190; +}, +{ +anchors = ( +{ +name = _top; +pos = (195,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,735,l), +(405,884,l), +(219,884,l), +(136,735,l) +); +} +); +width = 318; +}, +{ +anchors = ( +{ +name = _top; +pos = (142,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,746,l), +(280,882,l), +(237,882,l), +(141,746,l) +); +} +); +width = 191; +}, +{ +anchors = ( +{ +name = _top; +pos = (195,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,735,l), +(400,884,l), +(214,884,l), +(136,735,l) +); +} +); +width = 313; +}, +{ +anchors = ( +{ +name = _top; +pos = (143,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,746,l), +(292,882,l), +(247,882,l), +(141,746,l) +); +} +); +width = 203; +}, +{ +anchors = ( +{ +name = _top; +pos = (200,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,729,l), +(436,878,l), +(228,878,l), +(135,729,l) +); +} +); +width = 351; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 769; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/adieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/adieresis.glyph new file mode 100644 index 00000000..0b5ca749 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/adieresis.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = adieresis; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (58,-156); +ref = dieresiscomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (10,-137); +ref = dieresiscomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (140,-155); +ref = dieresiscomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (77,-134); +ref = dieresiscomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (57,-156); +ref = dieresiscomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (11,-137); +ref = dieresiscomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (138,-155); +ref = dieresiscomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (86,-134); +ref = dieresiscomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (167,-155); +ref = dieresiscomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (90,-134); +ref = dieresiscomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (137,-155); +ref = dieresiscomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (80,-134); +ref = dieresiscomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (15,-156); +ref = dieresiscomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (-19,-137); +ref = dieresiscomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (117,-155); +ref = dieresiscomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (49,-134); +ref = dieresiscomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (120,-155); +ref = dieresiscomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (53,-134); +ref = dieresiscomb; +} +); +width = 723; +} +); +unicode = 228; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/adieresis.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/adieresis.ss05.glyph new file mode 100644 index 00000000..167c114e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/adieresis.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = adieresis.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (31,-156); +ref = dieresiscomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (21,-137); +ref = dieresiscomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (108,-155); +ref = dieresiscomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (42,-134); +ref = dieresiscomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (31,-156); +ref = dieresiscomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (24,-137); +ref = dieresiscomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (97,-155); +ref = dieresiscomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (71,-134); +ref = dieresiscomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (108,-155); +ref = dieresiscomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (42,-134); +ref = dieresiscomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (90,-155); +ref = dieresiscomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (65,-134); +ref = dieresiscomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-11,-156); +ref = dieresiscomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-54,-137); +ref = dieresiscomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (37,-155); +ref = dieresiscomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-7,-134); +ref = dieresiscomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (34,-155); +ref = dieresiscomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-12,-134); +ref = dieresiscomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/adieresis.ss05.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/adieresis.ss05.ss01.glyph new file mode 100644 index 00000000..8969510f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/adieresis.ss05.ss01.glyph @@ -0,0 +1,243 @@ +{ +glyphname = adieresis.ss05.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (42,-156); +ref = dieresiscomb.ss01; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (22,-137); +ref = dieresiscomb.ss01; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (141,-155); +ref = dieresiscomb.ss01; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (64,-134); +ref = dieresiscomb.ss01; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (42,-156); +ref = dieresiscomb.ss01; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (25,-137); +ref = dieresiscomb.ss01; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (124,-155); +ref = dieresiscomb.ss01; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (83,-134); +ref = dieresiscomb.ss01; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (141,-155); +ref = dieresiscomb.ss01; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (64,-134); +ref = dieresiscomb.ss01; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (115,-155); +ref = dieresiscomb.ss01; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (77,-134); +ref = dieresiscomb.ss01; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (2,-156); +ref = dieresiscomb.ss01; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-46,-137); +ref = dieresiscomb.ss01; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (59,-155); +ref = dieresiscomb.ss01; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (9,-134); +ref = dieresiscomb.ss01; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (71,-155); +ref = dieresiscomb.ss01; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (17,-134); +ref = dieresiscomb.ss01; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.glyph new file mode 100644 index 00000000..2394ec59 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = adotbelow; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (113,0); +ref = dotbelowcomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (117,0); +ref = dotbelowcomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (245,0); +ref = dotbelowcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (207,0); +ref = dotbelowcomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,0); +ref = dotbelowcomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (118,0); +ref = dotbelowcomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (228,0); +ref = dotbelowcomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (204,0); +ref = dotbelowcomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (272,0); +ref = dotbelowcomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (220,0); +ref = dotbelowcomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (225,0); +ref = dotbelowcomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (194,0); +ref = dotbelowcomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (108,0); +ref = dotbelowcomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (121,0); +ref = dotbelowcomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (238,0); +ref = dotbelowcomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (195,0); +ref = dotbelowcomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (257,0); +ref = dotbelowcomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (213,0); +ref = dotbelowcomb; +} +); +width = 723; +} +); +unicode = 7841; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.ss01.glyph new file mode 100644 index 00000000..2947433f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.ss01.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = adotbelow.ss01; +kernLeft = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (121,0); +ref = dotbelowcomb.ss01; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (106,0); +ref = dotbelowcomb.ss01; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (258,0); +ref = dotbelowcomb.ss01; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (219,0); +ref = dotbelowcomb.ss01; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (107,0); +ref = dotbelowcomb.ss01; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (241,0); +ref = dotbelowcomb.ss01; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (193,0); +ref = dotbelowcomb.ss01; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = a; +}, +{ +alignment = -1; +pos = (258,0); +ref = dotbelowcomb.ss01; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = a; +}, +{ +alignment = -1; +pos = (219,0); +ref = dotbelowcomb.ss01; +} +); +width = 730; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (238,0); +ref = dotbelowcomb.ss01; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,0); +ref = dotbelowcomb.ss01; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (112,0); +ref = dotbelowcomb.ss01; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (251,0); +ref = dotbelowcomb.ss01; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (186,0); +ref = dotbelowcomb.ss01; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (268,0); +ref = dotbelowcomb.ss01; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (227,0); +ref = dotbelowcomb.ss01; +} +); +width = 723; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.ss05.glyph new file mode 100644 index 00000000..f2612f02 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = adotbelow.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (86,0); +ref = dotbelowcomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (116,0); +ref = dotbelowcomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (213,0); +ref = dotbelowcomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (169,0); +ref = dotbelowcomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (86,0); +ref = dotbelowcomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (119,0); +ref = dotbelowcomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (187,0); +ref = dotbelowcomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (174,0); +ref = dotbelowcomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (213,0); +ref = dotbelowcomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (169,0); +ref = dotbelowcomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (178,0); +ref = dotbelowcomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (165,0); +ref = dotbelowcomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (96,0); +ref = dotbelowcomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (151,0); +ref = dotbelowcomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (185,0); +ref = dotbelowcomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (187,0); +ref = dotbelowcomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (253,0); +ref = dotbelowcomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (168,0); +ref = dotbelowcomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.ss05.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.ss05.ss01.glyph new file mode 100644 index 00000000..4aad100b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/adotbelow.ss05.ss01.glyph @@ -0,0 +1,243 @@ +{ +glyphname = adotbelow.ss05.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (94,0); +ref = dotbelowcomb.ss01; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (105,0); +ref = dotbelowcomb.ss01; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (226,0); +ref = dotbelowcomb.ss01; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (94,0); +ref = dotbelowcomb.ss01; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (108,0); +ref = dotbelowcomb.ss01; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (200,0); +ref = dotbelowcomb.ss01; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (163,0); +ref = dotbelowcomb.ss01; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (226,0); +ref = dotbelowcomb.ss01; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (181,0); +ref = dotbelowcomb.ss01; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (191,0); +ref = dotbelowcomb.ss01; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (152,0); +ref = dotbelowcomb.ss01; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (104,0); +ref = dotbelowcomb.ss01; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (142,0); +ref = dotbelowcomb.ss01; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (198,0); +ref = dotbelowcomb.ss01; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (178,0); +ref = dotbelowcomb.ss01; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (264,0); +ref = dotbelowcomb.ss01; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (182,0); +ref = dotbelowcomb.ss01; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ae.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ae.glyph new file mode 100644 index 00000000..a984479d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ae.glyph @@ -0,0 +1,2734 @@ +{ +glyphname = ae; +kernLeft = KO_a.ss05; +kernRight = KO_e; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(208,-10,o), +(234,25,o), +(250,77,c), +(252,77,l), +(252,0,l), +(280,0,l), +(280,77,l), +(282,77,l), +(298,25,o), +(324,-10,o), +(376,-10,cs), +(437,-10,o), +(483,27,o), +(493,148,c), +(463,148,l), +(455,70,o), +(437,18,o), +(376,18,cs), +(304,16,o), +(281,88,o), +(281,260,c), +(491,260,l), +(490,419,o), +(467,526,o), +(376,526,cs), +(324,526,o), +(298,491,o), +(282,439,c), +(280,439,l), +(280,516,l), +(253,516,l), +(252,439,l), +(250,439,l), +(234,491,o), +(208,526,o), +(156,526,cs), +(87,526,o), +(42,461,o), +(42,257,cs), +(42,50,o), +(89,-10,o), +(156,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,16,o), +(72,104,o), +(72,257,cs), +(72,415,o), +(91,500,o), +(164,500,cs), +(217,500,o), +(252,436,o), +(252,309,cs), +(252,206,ls), +(252,77,o), +(216,16,o), +(164,16,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,429,o), +(308,500,o), +(376,498,cs), +(420,498,o), +(457,463,o), +(461,289,c), +(281,289,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-10,o), +(220,17,o), +(241,82,c), +(243,82,l), +(260,24,o), +(293,-10,o), +(349,-10,cs), +(410,-10,o), +(456,27,o), +(466,148,c), +(436,148,l), +(428,70,o), +(410,18,o), +(349,18,cs), +(297,18,o), +(255,58,o), +(255,209,cs), +(255,281,ls), +(255,453,o), +(294,498,o), +(349,498,cs), +(393,498,o), +(430,463,o), +(434,279,c), +(250,279,l), +(250,253,l), +(464,253,l), +(464,416,o), +(442,526,o), +(349,526,cs), +(299,526,o), +(266,497,o), +(250,439,c), +(248,439,l), +(235,501,o), +(195,526,o), +(152,526,cs), +(70,526,o), +(45,465,o), +(42,375,c), +(72,375,l), +(73,479,o), +(108,499,o), +(150,499,cs), +(211,499,o), +(226,443,o), +(226,359,cs), +(226,140,ls), +(226,59,o), +(190,15,o), +(136,15,cs), +(92,15,o), +(63,46,o), +(63,126,cs), +(63,198,o), +(95,253,o), +(181,253,cs), +(233,253,l), +(233,279,l), +(184,279,ls), +(94,279,o), +(34,232,o), +(34,122,cs), +(34,44,o), +(65,-10,o), +(134,-10,cs) +); +} +); +width = 505; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(197,-10,o), +(237,13,o), +(256,64,c), +(263,64,l), +(263,0,l), +(372,0,l), +(372,64,l), +(379,64,l), +(404,3,o), +(460,-10,o), +(515,-10,cs), +(628,-10,o), +(705,40,o), +(717,185,c), +(550,185,l), +(547,135,o), +(536,118,o), +(515,118,cs), +(491,118,o), +(480,147,o), +(480,235,c), +(717,235,l), +(727,441,o), +(671,551,o), +(517,551,cs), +(452,551,o), +(398,521,o), +(380,477,c), +(373,477,l), +(373,541,l), +(267,541,l), +(263,477,l), +(256,477,l), +(238,526,o), +(204,551,o), +(152,551,cs), +(70,551,o), +(12,493,o), +(12,271,cs), +(12,97,o), +(42,-10,o), +(152,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,128,o), +(190,160,o), +(190,271,cs), +(190,365,o), +(195,415,o), +(227,415,cs), +(251,415,o), +(263,385,o), +(263,285,cs), +(263,256,ls), +(263,171,o), +(255,128,o), +(227,128,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,401,o), +(493,422,o), +(515,422,cs), +(537,422,o), +(548,397,o), +(550,333,c), +(480,333,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(224,-10,o), +(278,24,o), +(299,74,c), +(302,74,l), +(325,24,o), +(381,-10,o), +(455,-10,cs), +(571,-10,o), +(653,52,o), +(663,185,c), +(496,185,l), +(493,135,o), +(482,118,o), +(461,118,cs), +(436,118,o), +(426,149,o), +(426,228,cs), +(426,297,ls), +(426,382,o), +(431,422,o), +(461,422,cs), +(483,422,o), +(494,396,o), +(496,328,c), +(410,328,l), +(410,225,l), +(662,225,l), +(675,437,o), +(620,551,o), +(461,551,cs), +(420,551,o), +(379,539,o), +(355,519,c), +(350,519,l), +(328,538,o), +(285,551,o), +(237,551,cs), +(114,551,o), +(29,482,o), +(25,358,c), +(189,358,l), +(190,393,o), +(198,417,o), +(223,417,cs), +(246,417,o), +(257,402,o), +(257,371,cs), +(257,165,ls), +(257,132,o), +(243,114,o), +(222,114,cs), +(198,114,o), +(186,133,o), +(186,159,cs), +(186,192,o), +(201,218,o), +(239,218,cs), +(273,218,l), +(273,321,l), +(210,321,ls), +(97,321,o), +(10,268,o), +(10,142,cs), +(10,50,o), +(67,-10,o), +(153,-10,cs) +); +} +); +width = 678; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1008,256,l), +(1018,423,o), +(912,525,o), +(741,525,cs), +(626,525,o), +(541,478,o), +(496,399,c), +(493,399,l), +(470,480,o), +(399,526,o), +(276,526,cs), +(146,526,o), +(59,471,o), +(46,373,c), +(84,373,l), +(97,453,o), +(165,492,o), +(274,492,cs), +(400,492,o), +(462,442,o), +(462,337,cs), +(462,216,ls), +(462,101,o), +(370,24,o), +(233,24,cs), +(129,24,o), +(71,64,o), +(71,137,cs), +(71,216,o), +(119,268,o), +(272,268,cs), +(470,268,l), +(470,300,l), +(270,300,ls), +(118,300,o), +(33,247,o), +(33,134,cs), +(33,39,o), +(114,-10,o), +(228,-10,cs), +(350,-10,o), +(452,52,o), +(484,145,c), +(487,145,l), +(530,46,o), +(622,-8,o), +(744,-8,cs), +(875,-8,o), +(981,55,o), +(1001,152,c), +(964,152,l), +(943,76,o), +(855,26,o), +(744,26,cs), +(595,26,o), +(500,114,o), +(498,262,cs), +(498,263,o), +(498,265,o), +(498,266,c), +(499,280,ls), +(507,405,o), +(596,491,o), +(741,491,cs), +(875,491,o), +(968,419,o), +(969,289,c), +(492,289,l), +(490,256,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,-10,o), +(447,48,o), +(481,145,c), +(484,145,l), +(528,46,o), +(621,-8,o), +(744,-8,cs), +(875,-8,o), +(981,55,o), +(1001,152,c), +(964,152,l), +(943,76,o), +(855,26,o), +(744,26,cs), +(595,26,o), +(498,114,o), +(498,262,cs), +(498,266,ls), +(498,401,o), +(595,491,o), +(741,491,cs), +(875,491,o), +(968,419,o), +(969,290,c), +(490,290,l), +(490,256,l), +(1008,256,l), +(1018,423,o), +(912,525,o), +(741,525,cs), +(626,525,o), +(541,478,o), +(496,399,c), +(493,399,l), +(469,478,o), +(389,526,o), +(276,526,cs), +(150,526,o), +(58,465,o), +(46,373,c), +(84,373,l), +(96,444,o), +(165,492,o), +(274,492,cs), +(387,492,o), +(462,442,o), +(462,337,cs), +(462,216,ls), +(462,101,o), +(366,24,o), +(223,24,cs), +(136,24,o), +(71,59,o), +(71,133,cs), +(71,231,o), +(150,256,o), +(292,256,cs), +(480,256,l), +(482,290,l), +(281,290,ls), +(147,290,o), +(33,262,o), +(33,133,cs), +(33,47,o), +(103,-10,o), +(224,-10,cs) +); +} +); +width = 1042; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1039,219,l), +(1062,419,o), +(945,553,o), +(709,553,cs), +(632,553,o), +(564,538,o), +(510,509,c), +(462,539,o), +(394,555,o), +(310,554,cs), +(146,553,o), +(33,481,o), +(24,355,c), +(233,355,l), +(235,396,o), +(270,405,o), +(309,405,cs), +(360,405,o), +(380,386,o), +(380,351,cs), +(380,196,ls), +(380,153,o), +(348,124,o), +(291,124,cs), +(253,124,o), +(231,139,o), +(231,166,cs), +(231,198,o), +(259,211,o), +(300,211,cs), +(396,211,l), +(396,321,l), +(253,321,ls), +(107,321,o), +(10,256,o), +(10,143,cs), +(10,48,o), +(86,-10,o), +(198,-10,cs), +(296,-10,o), +(382,15,o), +(438,79,c), +(445,79,l), +(502,23,o), +(590,-10,o), +(705,-10,cs), +(882,-10,o), +(1013,58,o), +(1035,180,c), +(817,180,l), +(806,158,o), +(765,142,o), +(718,142,cs), +(644,142,o), +(596,172,o), +(605,236,c), +(597,318,l), +(597,376,o), +(637,409,o), +(709,409,cs), +(777,409,o), +(812,382,o), +(817,334,c), +(582,334,l), +(588,219,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,-10,o), +(385,15,o), +(442,76,c), +(447,76,l), +(509,15,o), +(596,-10,o), +(705,-10,cs), +(882,-10,o), +(1013,58,o), +(1035,180,c), +(817,180,l), +(806,158,o), +(765,142,o), +(718,142,cs), +(644,142,o), +(597,172,o), +(597,246,cs), +(597,308,ls), +(597,369,o), +(637,409,o), +(709,409,cs), +(777,409,o), +(812,382,o), +(817,334,c), +(532,334,l), +(532,219,l), +(1039,219,l), +(1062,419,o), +(945,553,o), +(712,553,cs), +(638,553,o), +(564,535,o), +(516,503,c), +(509,503,l), +(467,534,o), +(393,555,o), +(310,554,cs), +(146,553,o), +(33,481,o), +(24,355,c), +(233,355,l), +(235,396,o), +(270,405,o), +(309,405,cs), +(360,405,o), +(380,386,o), +(380,351,cs), +(380,196,ls), +(380,153,o), +(348,124,o), +(291,124,cs), +(253,124,o), +(231,139,o), +(231,166,cs), +(231,198,o), +(259,211,o), +(300,211,cs), +(437,211,l), +(437,321,l), +(253,321,ls), +(107,321,o), +(10,256,o), +(10,144,cs), +(10,52,o), +(82,-10,o), +(207,-10,cs) +); +} +); +width = 1054; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(208,-10,o), +(234,25,o), +(250,77,c), +(252,77,l), +(252,0,l), +(280,0,l), +(280,77,l), +(282,77,l), +(298,25,o), +(324,-10,o), +(376,-10,cs), +(437,-10,o), +(483,27,o), +(493,148,c), +(463,148,l), +(455,70,o), +(437,18,o), +(376,18,cs), +(304,16,o), +(281,88,o), +(281,260,c), +(491,260,l), +(490,419,o), +(467,526,o), +(376,526,cs), +(324,526,o), +(298,491,o), +(282,439,c), +(280,439,l), +(280,516,l), +(253,516,l), +(252,439,l), +(250,439,l), +(234,491,o), +(208,526,o), +(156,526,cs), +(87,526,o), +(42,461,o), +(42,257,cs), +(42,50,o), +(89,-10,o), +(156,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,16,o), +(72,104,o), +(72,257,cs), +(72,415,o), +(91,500,o), +(164,500,cs), +(217,500,o), +(252,436,o), +(252,309,cs), +(252,206,ls), +(252,77,o), +(216,16,o), +(164,16,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,429,o), +(308,500,o), +(376,498,cs), +(420,498,o), +(457,463,o), +(461,289,c), +(281,289,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(160,-10,o), +(200,17,o), +(221,82,c), +(223,82,l), +(240,24,o), +(273,-10,o), +(329,-10,cs), +(390,-10,o), +(436,27,o), +(446,148,c), +(416,148,l), +(408,70,o), +(390,18,o), +(329,18,cs), +(277,18,o), +(235,58,o), +(235,209,cs), +(235,281,ls), +(235,453,o), +(274,498,o), +(329,498,cs), +(373,498,o), +(410,463,o), +(414,279,c), +(230,279,l), +(230,253,l), +(444,253,l), +(444,416,o), +(422,526,o), +(329,526,cs), +(279,526,o), +(246,497,o), +(230,439,c), +(228,439,l), +(215,501,o), +(175,526,o), +(132,526,cs), +(50,526,o), +(25,465,o), +(22,375,c), +(52,375,l), +(53,479,o), +(88,499,o), +(130,499,cs), +(191,499,o), +(206,443,o), +(206,359,cs), +(206,140,ls), +(206,59,o), +(170,15,o), +(116,15,cs), +(72,15,o), +(43,46,o), +(43,126,cs), +(43,198,o), +(75,253,o), +(161,253,cs), +(213,253,l), +(213,279,l), +(164,279,ls), +(74,279,o), +(14,232,o), +(14,122,cs), +(14,44,o), +(45,-10,o), +(114,-10,cs) +); +} +); +width = 465; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(197,-10,o), +(237,13,o), +(256,64,c), +(263,64,l), +(263,0,l), +(372,0,l), +(372,64,l), +(379,64,l), +(404,3,o), +(460,-10,o), +(515,-10,cs), +(628,-10,o), +(705,40,o), +(717,185,c), +(550,185,l), +(547,135,o), +(536,118,o), +(515,118,cs), +(491,118,o), +(480,147,o), +(480,235,c), +(717,235,l), +(727,441,o), +(671,551,o), +(517,551,cs), +(452,551,o), +(398,521,o), +(380,477,c), +(373,477,l), +(373,541,l), +(267,541,l), +(263,477,l), +(256,477,l), +(238,526,o), +(204,551,o), +(152,551,cs), +(70,551,o), +(12,493,o), +(12,271,cs), +(12,97,o), +(42,-10,o), +(152,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,128,o), +(190,160,o), +(190,271,cs), +(190,365,o), +(195,415,o), +(227,415,cs), +(251,415,o), +(263,385,o), +(263,285,cs), +(263,256,ls), +(263,171,o), +(255,128,o), +(227,128,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,401,o), +(493,422,o), +(515,422,cs), +(537,422,o), +(548,397,o), +(550,333,c), +(480,333,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,-10,o), +(271,24,o), +(292,74,c), +(295,74,l), +(318,24,o), +(374,-10,o), +(448,-10,cs), +(564,-10,o), +(646,52,o), +(656,185,c), +(489,185,l), +(486,135,o), +(475,118,o), +(454,118,cs), +(429,118,o), +(419,149,o), +(419,228,cs), +(419,297,ls), +(419,382,o), +(424,422,o), +(454,422,cs), +(476,422,o), +(487,396,o), +(489,328,c), +(403,328,l), +(403,225,l), +(655,225,l), +(668,437,o), +(613,551,o), +(454,551,cs), +(413,551,o), +(372,539,o), +(348,519,c), +(343,519,l), +(321,538,o), +(278,551,o), +(230,551,cs), +(107,551,o), +(22,482,o), +(18,358,c), +(182,358,l), +(183,393,o), +(191,417,o), +(216,417,cs), +(239,417,o), +(250,402,o), +(250,371,cs), +(250,165,ls), +(250,132,o), +(236,114,o), +(215,114,cs), +(191,114,o), +(179,133,o), +(179,159,cs), +(179,192,o), +(194,218,o), +(232,218,cs), +(266,218,l), +(266,321,l), +(203,321,ls), +(90,321,o), +(3,268,o), +(3,142,cs), +(3,50,o), +(60,-10,o), +(146,-10,cs) +); +} +); +width = 662; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(49,94,o), +(137,-8,o), +(266,-8,cs), +(364,-8,o), +(435,44,o), +(462,121,c), +(465,121,l), +(465,0,l), +(502,0,l), +(502,121,l), +(505,121,l), +(539,35,o), +(614,-8,o), +(702,-8,cs), +(814,-8,o), +(903,55,o), +(920,152,c), +(882,152,l), +(865,76,o), +(797,28,o), +(702,28,cs), +(583,28,o), +(506,111,o), +(502,256,c), +(921,256,l), +(935,407,o), +(858,525,o), +(700,525,cs), +(611,525,o), +(537,478,o), +(505,398,c), +(502,398,l), +(502,517,l), +(467,517,l), +(465,398,l), +(462,398,l), +(435,475,o), +(364,526,o), +(266,526,cs), +(137,526,o), +(49,425,o), +(49,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(87,408,o), +(162,493,o), +(274,493,cs), +(394,493,o), +(464,397,o), +(464,295,cs), +(464,224,ls), +(464,122,o), +(394,26,o), +(274,26,cs), +(162,26,o), +(87,112,o), +(87,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(512,414,o), +(586,489,o), +(699,489,cs), +(803,489,o), +(886,433,o), +(886,289,c), +(503,289,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-9,o), +(375,49,o), +(399,129,c), +(402,129,l), +(441,41,o), +(516,-8,o), +(616,-8,cs), +(726,-8,o), +(814,53,o), +(833,147,c), +(795,147,l), +(776,74,o), +(711,26,o), +(616,26,cs), +(494,26,o), +(416,114,o), +(416,267,cs), +(416,280,ls), +(416,411,o), +(498,491,o), +(613,491,cs), +(723,491,o), +(798,427,o), +(800,293,c), +(408,293,l), +(408,260,l), +(838,260,l), +(847,412,o), +(771,525,o), +(614,525,cs), +(524,525,o), +(452,484,o), +(413,415,c), +(408,415,l), +(388,482,o), +(331,527,o), +(238,527,cs), +(128,527,o), +(50,469,o), +(46,383,c), +(84,383,l), +(87,449,o), +(148,493,o), +(238,493,cs), +(323,493,o), +(380,450,o), +(380,340,cs), +(380,194,ls), +(380,68,o), +(279,23,o), +(195,23,cs), +(113,23,o), +(67,68,o), +(67,138,cs), +(67,229,o), +(142,261,o), +(246,261,cs), +(394,261,l), +(394,294,l), +(250,294,ls), +(131,294,o), +(29,254,o), +(29,137,cs), +(29,50,o), +(90,-9,o), +(192,-9,cs) +); +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-10,o), +(349,10,o), +(399,67,c), +(446,18,o), +(516,-10,o), +(605,-10,cs), +(747,-10,o), +(851,64,o), +(864,175,c), +(684,175,l), +(675,149,o), +(644,132,o), +(605,132,cs), +(549,132,o), +(511,166,o), +(513,227,c), +(868,227,l), +(888,415,o), +(795,554,o), +(598,554,cs), +(541,554,o), +(490,541,o), +(449,516,c), +(410,541,o), +(357,554,o), +(290,554,cs), +(130,554,o), +(29,475,o), +(29,357,c), +(215,357,l), +(215,388,o), +(238,408,o), +(278,408,cs), +(310,408,o), +(339,398,o), +(339,356,cs), +(339,324,l), +(265,324,ls), +(106,324,o), +(15,260,o), +(15,142,cs), +(15,51,o), +(87,-10,o), +(198,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,114,o), +(208,130,o), +(209,159,cs), +(210,193,o), +(234,214,o), +(296,214,cs), +(334,214,l), +(336,191,o), +(341,169,o), +(348,149,c), +(332,127,o), +(300,114,o), +(263,114,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,383,o), +(549,413,o), +(598,413,cs), +(645,413,o), +(678,386,o), +(680,338,c), +(514,338,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,-10,o), +(352,27,o), +(383,75,c), +(389,75,l), +(426,24,o), +(497,-10,o), +(595,-10,cs), +(740,-10,o), +(848,58,o), +(861,172,c), +(681,172,l), +(671,148,o), +(647,132,o), +(603,132,cs), +(549,132,o), +(511,164,o), +(511,222,cs), +(511,332,l), +(516,379,o), +(552,410,o), +(600,410,cs), +(647,410,o), +(680,385,o), +(683,331,c), +(496,331,l), +(496,221,l), +(865,221,l), +(890,421,o), +(793,554,o), +(608,554,cs), +(549,554,o), +(486,536,o), +(451,505,c), +(442,505,l), +(411,534,o), +(347,554,o), +(278,554,cs), +(118,554,o), +(17,475,o), +(17,357,c), +(203,357,l), +(203,388,o), +(226,408,o), +(266,408,cs), +(298,408,o), +(327,398,o), +(327,346,cs), +(327,183,ls), +(327,145,o), +(294,120,o), +(250,120,cs), +(218,120,o), +(197,136,o), +(197,165,cs), +(197,199,o), +(222,221,o), +(284,221,cs), +(423,221,l), +(423,331,l), +(238,331,ls), +(94,331,o), +(3,264,o), +(3,147,cs), +(3,53,o), +(74,-10,o), +(185,-10,cs) +); +} +); +width = 874; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1008,256,l), +(1018,423,o), +(912,525,o), +(741,525,cs), +(626,525,o), +(541,478,o), +(496,399,c), +(493,399,l), +(470,480,o), +(399,526,o), +(276,526,cs), +(146,526,o), +(59,471,o), +(46,373,c), +(84,373,l), +(97,453,o), +(165,492,o), +(274,492,cs), +(400,492,o), +(462,442,o), +(462,337,cs), +(462,216,ls), +(462,101,o), +(370,24,o), +(233,24,cs), +(129,24,o), +(71,64,o), +(71,137,cs), +(71,216,o), +(119,268,o), +(272,268,cs), +(470,268,l), +(470,300,l), +(270,300,ls), +(118,300,o), +(33,247,o), +(33,134,cs), +(33,39,o), +(114,-10,o), +(228,-10,cs), +(350,-10,o), +(452,52,o), +(484,145,c), +(487,145,l), +(530,46,o), +(622,-8,o), +(744,-8,cs), +(875,-8,o), +(981,55,o), +(1001,152,c), +(964,152,l), +(943,76,o), +(855,26,o), +(744,26,cs), +(595,26,o), +(500,114,o), +(498,262,cs), +(498,263,o), +(498,265,o), +(498,266,c), +(499,280,ls), +(507,405,o), +(596,491,o), +(741,491,cs), +(875,491,o), +(968,419,o), +(969,289,c), +(492,289,l), +(490,256,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,-10,o), +(437,48,o), +(471,145,c), +(474,145,l), +(518,46,o), +(611,-8,o), +(734,-8,cs), +(865,-8,o), +(971,55,o), +(991,152,c), +(954,152,l), +(933,76,o), +(845,26,o), +(734,26,cs), +(585,26,o), +(488,114,o), +(488,262,cs), +(488,266,ls), +(488,401,o), +(585,491,o), +(731,491,cs), +(865,491,o), +(958,419,o), +(959,290,c), +(480,290,l), +(480,256,l), +(998,256,l), +(1008,423,o), +(902,525,o), +(731,525,cs), +(616,525,o), +(531,478,o), +(486,399,c), +(483,399,l), +(459,478,o), +(379,526,o), +(266,526,cs), +(140,526,o), +(48,465,o), +(36,373,c), +(74,373,l), +(86,444,o), +(155,492,o), +(264,492,cs), +(377,492,o), +(452,442,o), +(452,337,cs), +(452,216,ls), +(452,101,o), +(356,24,o), +(213,24,cs), +(126,24,o), +(61,59,o), +(61,133,cs), +(61,231,o), +(140,256,o), +(282,256,cs), +(470,256,l), +(472,290,l), +(271,290,ls), +(137,290,o), +(23,262,o), +(23,133,cs), +(23,47,o), +(93,-10,o), +(214,-10,cs) +); +} +); +width = 1022; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1039,219,l), +(1062,419,o), +(945,553,o), +(709,553,cs), +(632,553,o), +(564,538,o), +(510,509,c), +(462,539,o), +(394,555,o), +(310,554,cs), +(146,553,o), +(33,481,o), +(24,355,c), +(233,355,l), +(235,396,o), +(270,405,o), +(309,405,cs), +(360,405,o), +(380,386,o), +(380,351,cs), +(380,196,ls), +(380,153,o), +(348,124,o), +(291,124,cs), +(253,124,o), +(231,139,o), +(231,166,cs), +(231,198,o), +(259,211,o), +(300,211,cs), +(396,211,l), +(396,321,l), +(253,321,ls), +(107,321,o), +(10,256,o), +(10,143,cs), +(10,48,o), +(86,-10,o), +(198,-10,cs), +(296,-10,o), +(382,15,o), +(438,79,c), +(445,79,l), +(502,23,o), +(590,-10,o), +(705,-10,cs), +(882,-10,o), +(1013,58,o), +(1035,180,c), +(817,180,l), +(806,158,o), +(765,142,o), +(718,142,cs), +(644,142,o), +(596,172,o), +(605,236,c), +(597,318,l), +(597,376,o), +(637,409,o), +(709,409,cs), +(777,409,o), +(812,382,o), +(817,334,c), +(582,334,l), +(588,219,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-10,o), +(375,15,o), +(432,76,c), +(437,76,l), +(499,15,o), +(586,-10,o), +(695,-10,cs), +(872,-10,o), +(1003,58,o), +(1025,180,c), +(807,180,l), +(796,158,o), +(755,142,o), +(708,142,cs), +(634,142,o), +(587,172,o), +(587,246,cs), +(587,308,ls), +(587,369,o), +(627,409,o), +(699,409,cs), +(767,409,o), +(802,382,o), +(807,334,c), +(522,334,l), +(522,219,l), +(1029,219,l), +(1052,419,o), +(935,553,o), +(702,553,cs), +(628,553,o), +(554,535,o), +(506,503,c), +(499,503,l), +(457,534,o), +(383,555,o), +(300,554,cs), +(136,553,o), +(23,481,o), +(14,355,c), +(223,355,l), +(225,396,o), +(260,405,o), +(299,405,cs), +(350,405,o), +(370,386,o), +(370,351,cs), +(370,196,ls), +(370,153,o), +(338,124,o), +(281,124,cs), +(243,124,o), +(221,139,o), +(221,166,cs), +(221,198,o), +(249,211,o), +(290,211,cs), +(427,211,l), +(427,321,l), +(243,321,ls), +(97,321,o), +(0,256,o), +(0,144,cs), +(0,52,o), +(72,-10,o), +(197,-10,cs) +); +} +); +width = 1034; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(49,94,o), +(137,-8,o), +(266,-8,cs), +(364,-8,o), +(435,44,o), +(462,121,c), +(465,121,l), +(465,0,l), +(502,0,l), +(502,121,l), +(505,121,l), +(539,35,o), +(614,-8,o), +(702,-8,cs), +(814,-8,o), +(903,55,o), +(920,152,c), +(882,152,l), +(865,76,o), +(797,28,o), +(702,28,cs), +(583,28,o), +(506,111,o), +(502,256,c), +(921,256,l), +(935,407,o), +(858,525,o), +(700,525,cs), +(611,525,o), +(537,478,o), +(505,398,c), +(502,398,l), +(502,517,l), +(467,517,l), +(465,398,l), +(462,398,l), +(435,475,o), +(364,526,o), +(266,526,cs), +(137,526,o), +(49,425,o), +(49,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(87,408,o), +(162,493,o), +(274,493,cs), +(394,493,o), +(464,397,o), +(464,295,cs), +(464,224,ls), +(464,122,o), +(394,26,o), +(274,26,cs), +(162,26,o), +(87,112,o), +(87,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(512,414,o), +(586,489,o), +(699,489,cs), +(803,489,o), +(886,433,o), +(886,289,c), +(503,289,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(309,-9,o), +(390,49,o), +(414,129,c), +(417,129,l), +(454,41,o), +(529,-8,o), +(627,-8,cs), +(735,-8,o), +(821,53,o), +(839,147,c), +(802,147,l), +(783,74,o), +(720,26,o), +(627,26,cs), +(507,26,o), +(431,114,o), +(431,267,cs), +(431,280,ls), +(431,411,o), +(511,491,o), +(624,491,cs), +(732,491,o), +(805,427,o), +(807,293,c), +(423,293,l), +(423,260,l), +(844,260,l), +(852,412,o), +(778,525,o), +(625,525,cs), +(537,525,o), +(465,484,o), +(428,415,c), +(423,415,l), +(403,482,o), +(347,527,o), +(255,527,cs), +(149,527,o), +(71,469,o), +(67,383,c), +(105,383,l), +(108,449,o), +(167,493,o), +(255,493,cs), +(340,493,o), +(395,450,o), +(395,340,cs), +(395,194,ls), +(395,68,o), +(296,23,o), +(214,23,cs), +(134,23,o), +(88,68,o), +(88,138,cs), +(88,229,o), +(161,261,o), +(263,261,cs), +(409,261,l), +(409,294,l), +(267,294,ls), +(151,294,o), +(52,254,o), +(52,137,cs), +(52,50,o), +(111,-9,o), +(211,-9,cs) +); +} +); +width = 900; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-10,o), +(349,10,o), +(399,67,c), +(446,18,o), +(516,-10,o), +(605,-10,cs), +(747,-10,o), +(851,64,o), +(864,175,c), +(684,175,l), +(675,149,o), +(644,132,o), +(605,132,cs), +(549,132,o), +(511,166,o), +(513,227,c), +(868,227,l), +(888,415,o), +(795,554,o), +(598,554,cs), +(541,554,o), +(490,541,o), +(449,516,c), +(410,541,o), +(357,554,o), +(290,554,cs), +(130,554,o), +(29,475,o), +(29,357,c), +(215,357,l), +(215,388,o), +(238,408,o), +(278,408,cs), +(310,408,o), +(339,398,o), +(339,356,cs), +(339,324,l), +(265,324,ls), +(106,324,o), +(15,260,o), +(15,142,cs), +(15,51,o), +(87,-10,o), +(198,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,114,o), +(208,130,o), +(209,159,cs), +(210,193,o), +(234,214,o), +(296,214,cs), +(334,214,l), +(336,191,o), +(341,169,o), +(348,149,c), +(332,127,o), +(300,114,o), +(263,114,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,383,o), +(549,413,o), +(598,413,cs), +(645,413,o), +(678,386,o), +(680,338,c), +(514,338,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(364,28,o), +(394,75,c), +(400,75,l), +(436,25,o), +(504,-10,o), +(602,-10,cs), +(744,-10,o), +(849,58,o), +(862,172,c), +(684,172,l), +(674,147,o), +(650,132,o), +(610,132,cs), +(558,132,o), +(522,164,o), +(522,222,cs), +(522,332,l), +(527,379,o), +(561,410,o), +(607,410,cs), +(651,410,o), +(683,385,o), +(686,331,c), +(507,331,l), +(507,221,l), +(866,221,l), +(891,421,o), +(796,554,o), +(615,554,cs), +(556,554,o), +(496,536,o), +(461,505,c), +(452,505,l), +(422,534,o), +(360,554,o), +(293,554,cs), +(136,554,o), +(37,475,o), +(37,357,c), +(221,357,l), +(221,388,o), +(243,408,o), +(281,408,cs), +(311,408,o), +(339,398,o), +(339,346,cs), +(339,183,ls), +(339,145,o), +(307,120,o), +(265,120,cs), +(236,120,o), +(215,136,o), +(215,165,cs), +(215,199,o), +(239,221,o), +(298,221,cs), +(435,221,l), +(435,331,l), +(252,331,ls), +(112,331,o), +(23,264,o), +(23,147,cs), +(23,53,o), +(93,-10,o), +(201,-10,cs) +); +} +); +width = 894; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,260,l), +(492,405,o), +(496,525,o), +(396,525,cs), +(347,525,o), +(311,496,o), +(284,445,c), +(280,494,o), +(257,526,o), +(197,526,cs), +(125,526,o), +(88,467,o), +(68,377,c), +(98,377,l), +(118,471,o), +(150,499,o), +(194,499,cs), +(261,499,o), +(262,440,o), +(245,355,cs), +(229,279,l), +(184,279,ls), +(70,279,o), +(3,205,o), +(3,93,cs), +(3,33,o), +(35,-7,o), +(86,-7,cs), +(124,-7,o), +(177,12,o), +(211,96,c), +(217,29,o), +(244,-10,o), +(303,-10,cs), +(356,-10,o), +(410,25,o), +(442,148,c), +(412,148,l), +(391,70,o), +(360,18,o), +(307,18,cs), +(222,18,o), +(227,129,o), +(257,270,c), +(257,274,l), +(296,450,o), +(341,497,o), +(392,497,cs), +(465,497,o), +(457,398,o), +(439,288,c), +(253,288,l), +(248,260,l) +); +}, +{ +closed = 1; +nodes = ( +(33,190,o), +(86,253,o), +(179,253,cs), +(224,253,l), +(200,136,ls), +(184,60,o), +(140,18,o), +(92,18,cs), +(57,18,o), +(33,43,o), +(33,95,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-10,o), +(179,18,o), +(208,90,c), +(210,90,l), +(215,30,o), +(247,-10,o), +(302,-10,cs), +(355,-10,o), +(409,25,o), +(441,148,c), +(411,148,l), +(390,70,o), +(359,18,o), +(306,18,cs), +(221,18,o), +(226,129,o), +(250,241,cs), +(262,298,ls), +(293,447,o), +(340,497,o), +(391,497,cs), +(466,497,o), +(456,393,o), +(437,280,c), +(252,280,l), +(247,252,l), +(461,252,l), +(491,401,o), +(497,525,o), +(395,525,cs), +(346,525,o), +(310,496,o), +(283,445,c), +(281,445,l), +(273,498,o), +(245,526,o), +(197,526,cs), +(125,526,o), +(88,467,o), +(68,377,c), +(98,377,l), +(118,471,o), +(150,499,o), +(194,499,cs), +(242,499,o), +(266,459,o), +(245,355,cs), +(200,136,ls), +(184,58,o), +(140,15,o), +(92,15,cs), +(57,15,o), +(33,40,o), +(33,95,cs), +(33,190,o), +(86,252,o), +(179,252,cs), +(231,252,l), +(236,280,l), +(184,280,ls), +(70,280,o), +(3,205,o), +(3,93,cs), +(3,31,o), +(36,-10,o), +(86,-10,cs) +); +} +); +width = 504; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,-10,o), +(232,13,o), +(263,59,c), +(266,59,l), +(289,19,o), +(342,-10,o), +(411,-10,cs), +(521,-10,o), +(605,42,o), +(640,186,c), +(474,186,l), +(461,135,o), +(447,119,o), +(427,119,cs), +(406,119,o), +(398,141,o), +(415,229,cs), +(429,301,ls), +(447,395,o), +(465,421,o), +(487,421,cs), +(515,421,o), +(513,379,o), +(503,328,c), +(420,328,l), +(399,225,l), +(648,225,l), +(697,420,o), +(653,551,o), +(493,551,cs), +(451,551,o), +(414,542,o), +(383,521,c), +(381,521,l), +(351,542,o), +(312,551,o), +(266,551,cs), +(139,551,o), +(63,484,o), +(42,357,c), +(207,357,l), +(213,393,o), +(225,417,o), +(251,417,cs), +(280,417,o), +(281,392,o), +(275,361,cs), +(235,162,ls), +(228,129,o), +(215,114,o), +(191,114,cs), +(171,114,o), +(157,126,o), +(157,152,cs), +(157,190,o), +(179,214,o), +(221,214,cs), +(267,214,l), +(289,317,l), +(217,317,ls), +(62,317,o), +(-14,237,o), +(-14,126,cs), +(-14,44,o), +(38,-10,o), +(117,-10,cs) +); +} +); +width = 672; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(32,44,o), +(90,-10,o), +(189,-10,cs), +(283,-10,o), +(371,39,o), +(407,135,c), +(408,135,l), +(431,45,o), +(500,-10,o), +(595,-10,cs), +(706,-10,o), +(802,55,o), +(828,153,c), +(791,153,l), +(766,75,o), +(691,24,o), +(598,24,cs), +(484,24,o), +(419,121,o), +(440,269,c), +(443,280,ls), +(472,424,o), +(562,494,o), +(660,494,cs), +(766,494,o), +(832,420,o), +(813,293,c), +(477,293,l), +(471,261,l), +(844,261,l), +(874,417,o), +(810,527,o), +(666,527,cs), +(580,527,o), +(503,485,o), +(458,413,c), +(455,413,l), +(437,488,o), +(371,527,o), +(279,527,cs), +(179,527,o), +(100,475,o), +(77,383,c), +(114,383,l), +(130,450,o), +(185,494,o), +(279,494,cs), +(368,494,o), +(444,454,o), +(418,318,cs), +(393,188,ls), +(374,88,o), +(301,22,o), +(194,22,cs), +(119,22,o), +(68,58,o), +(68,131,cs), +(68,214,o), +(136,261,o), +(253,261,cs), +(376,261,l), +(382,294,l), +(259,294,ls), +(123,294,o), +(32,241,o), +(32,126,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,-10,o), +(369,38,o), +(405,131,c), +(409,131,l), +(431,46,o), +(501,-10,o), +(595,-10,cs), +(709,-10,o), +(802,55,o), +(828,153,c), +(791,153,l), +(766,76,o), +(695,24,o), +(598,24,cs), +(480,24,o), +(416,119,o), +(440,262,cs), +(443,280,ls), +(467,425,o), +(562,494,o), +(665,494,cs), +(772,494,o), +(832,422,o), +(813,293,c), +(437,293,l), +(431,261,l), +(844,261,l), +(875,421,o), +(804,527,o), +(666,527,cs), +(580,527,o), +(503,485,o), +(458,413,c), +(455,413,l), +(437,479,o), +(377,527,o), +(279,527,cs), +(179,527,o), +(100,475,o), +(77,383,c), +(114,383,l), +(130,450,o), +(185,494,o), +(279,494,cs), +(378,494,o), +(441,438,o), +(418,318,cs), +(393,188,ls), +(374,88,o), +(301,22,o), +(194,22,cs), +(119,22,o), +(68,58,o), +(68,131,cs), +(68,214,o), +(136,261,o), +(253,261,cs), +(416,261,l), +(422,294,l), +(259,294,ls), +(123,294,o), +(32,241,o), +(32,126,cs), +(32,44,o), +(90,-10,o), +(189,-10,cs) +); +} +); +width = 901; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(276,-10,o), +(364,27,o), +(400,97,c), +(340,74,l), +(391,74,l), +(434,17,o), +(509,-10,o), +(604,-10,cs), +(740,-10,o), +(846,63,o), +(871,173,c), +(687,175,l), +(677,149,o), +(651,132,o), +(613,132,cs), +(555,132,o), +(521,165,o), +(534,251,cs), +(547,335,ls), +(554,377,o), +(580,413,o), +(637,413,cs), +(687,413,o), +(717,381,o), +(710,331,c), +(532,331,l), +(515,221,l), +(880,221,l), +(926,421,o), +(825,554,o), +(645,554,cs), +(584,554,o), +(528,539,o), +(487,514,c), +(481,514,l), +(442,540,o), +(390,554,o), +(326,554,cs), +(177,554,o), +(70,483,o), +(56,358,c), +(231,358,l), +(237,393,o), +(263,408,o), +(303,408,cs), +(347,408,o), +(373,389,o), +(363,340,cs), +(331,185,ls), +(323,146,o), +(297,120,o), +(248,120,cs), +(217,120,o), +(197,136,o), +(197,161,cs), +(197,202,o), +(222,222,o), +(296,222,cs), +(342,222,l), +(365,331,l), +(273,331,ls), +(87,331,o), +(5,253,o), +(5,139,cs), +(5,48,o), +(75,-10,o), +(182,-10,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-10,o), +(343,19,o), +(384,73,c), +(389,73,l), +(431,16,o), +(507,-10,o), +(601,-10,cs), +(737,-10,o), +(843,65,o), +(868,175,c), +(684,175,l), +(674,149,o), +(648,132,o), +(610,132,cs), +(552,132,o), +(518,165,o), +(531,251,cs), +(544,335,ls), +(551,377,o), +(577,413,o), +(634,413,cs), +(684,413,o), +(714,381,o), +(707,331,c), +(519,331,l), +(502,221,l), +(877,221,l), +(923,421,o), +(822,554,o), +(642,554,cs), +(582,554,o), +(527,539,o), +(486,515,c), +(479,515,l), +(444,538,o), +(387,554,o), +(326,554,cs), +(177,554,o), +(70,483,o), +(56,358,c), +(231,358,l), +(237,393,o), +(263,408,o), +(303,408,cs), +(347,408,o), +(373,389,o), +(363,340,cs), +(331,185,ls), +(323,146,o), +(297,120,o), +(248,120,cs), +(217,120,o), +(197,136,o), +(197,166,cs), +(197,199,o), +(223,221,o), +(278,221,cs), +(362,221,l), +(385,331,l), +(258,331,ls), +(106,331,o), +(5,269,o), +(5,143,cs), +(5,48,o), +(75,-10,o), +(182,-10,cs) +); +} +); +width = 913; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(994,256,l), +(1029,418,o), +(934,527,o), +(762,527,cs), +(656,527,o), +(566,481,o), +(511,405,c), +(496,487,o), +(417,527,o), +(296,527,cs), +(182,527,o), +(89,476,o), +(67,373,c), +(104,373,l), +(122,444,o), +(186,493,o), +(291,493,cs), +(409,493,o), +(496,451,o), +(473,336,cs), +(447,205,ls), +(425,95,o), +(334,21,o), +(199,21,cs), +(109,21,o), +(51,60,o), +(51,132,cs), +(51,237,o), +(156,256,o), +(277,256,cs), +(468,256,l), +(474,290,l), +(275,290,ls), +(121,290,o), +(18,253,o), +(13,133,cs), +(10,47,o), +(80,-10,o), +(189,-10,cs), +(310,-10,o), +(411,38,o), +(458,140,c), +(462,140,l), +(494,48,o), +(584,-9,o), +(701,-9,cs), +(832,-9,o), +(943,57,o), +(974,152,c), +(937,152,l), +(905,76,o), +(818,25,o), +(707,25,cs), +(557,25,o), +(470,121,o), +(491,266,c), +(495,280,l), +(519,408,o), +(622,493,o), +(759,493,cs), +(898,493,o), +(978,413,o), +(962,289,c), +(488,289,l), +(482,256,l) +); +} +); +}; +guides = ( +{ +pos = (307,256); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,-10,o), +(415,46,o), +(458,140,c), +(462,140,l), +(493,51,o), +(581,-9,o), +(704,-9,cs), +(834,-9,o), +(942,55,o), +(974,152,c), +(937,152,l), +(905,76,o), +(820,25,o), +(707,25,cs), +(557,25,o), +(465,121,o), +(491,266,cs), +(493,277,ls), +(516,406,o), +(622,493,o), +(759,493,cs), +(898,493,o), +(978,414,o), +(962,290,c), +(488,290,l), +(482,256,l), +(994,256,l), +(1029,418,o), +(934,527,o), +(762,527,cs), +(657,527,o), +(568,482,o), +(513,408,c), +(510,408,l), +(487,482,o), +(416,527,o), +(296,527,cs), +(182,527,o), +(89,476,o), +(67,373,c), +(104,373,l), +(122,444,o), +(186,493,o), +(291,493,cs), +(409,493,o), +(496,451,o), +(469,316,cs), +(446,199,ls), +(425,92,o), +(334,21,o), +(199,21,cs), +(109,21,o), +(51,60,o), +(51,132,cs), +(51,237,o), +(156,256,o), +(277,256,cs), +(473,256,l), +(478,290,l), +(279,290,ls), +(125,290,o), +(18,253,o), +(13,133,cs), +(10,47,o), +(80,-10,o), +(189,-10,cs) +); +} +); +width = 1030; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(596,374,o), +(642,409,o), +(709,409,cs), +(773,409,o), +(806,377,o), +(811,334,c), +(578,334,l), +(563,219,l), +(1022,219,l), +(1054,422,o), +(929,554,o), +(713,554,cs), +(641,554,o), +(577,540,o), +(524,514,c), +(474,541,o), +(405,554,o), +(329,554,cs), +(169,554,o), +(54,488,o), +(36,358,c), +(245,358,l), +(251,387,o), +(273,404,o), +(319,404,cs), +(368,404,o), +(401,389,o), +(392,343,cs), +(359,183,ls), +(351,148,o), +(322,124,o), +(273,124,cs), +(238,124,o), +(215,139,o), +(216,167,cs), +(217,200,o), +(246,215,o), +(309,215,cs), +(382,215,l), +(405,327,l), +(288,327,ls), +(144,327,o), +(-7,294,o), +(-7,139,cs), +(-7,50,o), +(65,-10,o), +(191,-10,cs), +(269,-10,o), +(380,16,o), +(431,72,c), +(438,72,l), +(492,20,o), +(575,-9,o), +(683,-9,cs), +(854,-9,o), +(987,64,o), +(1013,180,c), +(791,180,l), +(775,157,o), +(737,140,o), +(685,140,cs), +(616,140,o), +(568,178,o), +(581,235,c), +(593,324,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,-10,o), +(384,26,o), +(425,73,c), +(435,73,l), +(484,20,o), +(573,-9,o), +(679,-9,cs), +(854,-9,o), +(988,67,o), +(1013,180,c), +(791,180,l), +(775,157,o), +(737,140,o), +(685,140,cs), +(616,140,o), +(572,174,o), +(580,232,cs), +(593,327,ls), +(600,377,o), +(642,409,o), +(709,409,cs), +(773,409,o), +(806,377,o), +(811,334,c), +(568,334,l), +(553,219,l), +(1022,219,l), +(1054,422,o), +(929,554,o), +(716,554,cs), +(640,554,o), +(572,539,o), +(522,513,c), +(515,513,l), +(466,543,o), +(400,554,o), +(329,554,cs), +(169,554,o), +(54,488,o), +(36,358,c), +(245,358,l), +(251,387,o), +(273,404,o), +(319,404,cs), +(368,404,o), +(401,389,o), +(392,343,cs), +(359,183,ls), +(352,148,o), +(322,124,o), +(273,124,cs), +(238,124,o), +(215,139,o), +(216,167,cs), +(217,197,o), +(247,211,o), +(313,211,cs), +(382,211,l), +(403,321,l), +(269,321,ls), +(135,321,o), +(-7,289,o), +(-7,140,cs), +(-7,46,o), +(72,-10,o), +(191,-10,cs) +); +} +); +width = 1042; +} +); +metricLeft = a.ss04; +metricRight = e; +unicode = 230; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/agrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/agrave.glyph new file mode 100644 index 00000000..c2051719 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/agrave.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = agrave; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (42,-156); +ref = gravecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (26,-137); +ref = gravecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (173,-155); +ref = gravecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (126,-129); +ref = gravecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,-156); +ref = gravecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (27,-137); +ref = gravecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (166,-155); +ref = gravecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (120,-134); +ref = gravecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (200,-155); +ref = gravecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (139,-129); +ref = gravecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (163,-155); +ref = gravecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,-134); +ref = gravecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (6,-156); +ref = gravecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (13,-137); +ref = gravecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (145,-155); +ref = gravecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (82,-134); +ref = gravecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (152,-155); +ref = gravecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (105,-129); +ref = gravecomb; +} +); +width = 723; +} +); +unicode = 224; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/agrave.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/agrave.ss05.glyph new file mode 100644 index 00000000..64a49e3c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/agrave.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = agrave.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (15,-156); +ref = gravecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (37,-137); +ref = gravecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (141,-155); +ref = gravecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (91,-129); +ref = gravecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (15,-156); +ref = gravecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (40,-137); +ref = gravecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (125,-155); +ref = gravecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (105,-134); +ref = gravecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (141,-155); +ref = gravecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (91,-129); +ref = gravecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (116,-155); +ref = gravecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (101,-134); +ref = gravecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-20,-156); +ref = gravecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-22,-137); +ref = gravecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (65,-155); +ref = gravecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (26,-134); +ref = gravecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (66,-155); +ref = gravecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (40,-129); +ref = gravecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ahookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ahookabove.glyph new file mode 100644 index 00000000..65712fe8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ahookabove.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = ahookabove; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (95,-156); +ref = hookabovecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (96,-138); +ref = hookabovecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (209,-155); +ref = hookabovecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (207,-134); +ref = hookabovecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (94,-156); +ref = hookabovecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (97,-138); +ref = hookabovecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (192,-155); +ref = hookabovecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (166,-134); +ref = hookabovecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (236,-155); +ref = hookabovecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (220,-134); +ref = hookabovecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (189,-155); +ref = hookabovecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (159,-134); +ref = hookabovecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (35,-157); +ref = hookabovecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (67,-139); +ref = hookabovecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (175,-156); +ref = hookabovecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (123,-135); +ref = hookabovecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (194,-156); +ref = hookabovecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (170,-137); +ref = hookabovecomb; +} +); +width = 723; +} +); +unicode = 7843; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ahookabove.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ahookabove.ss05.glyph new file mode 100644 index 00000000..c587c89f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ahookabove.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = ahookabove.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (68,-156); +ref = hookabovecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (107,-138); +ref = hookabovecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (177,-155); +ref = hookabovecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (172,-134); +ref = hookabovecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (68,-156); +ref = hookabovecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (110,-138); +ref = hookabovecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (151,-155); +ref = hookabovecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (151,-134); +ref = hookabovecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (177,-155); +ref = hookabovecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (172,-134); +ref = hookabovecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (142,-155); +ref = hookabovecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (144,-134); +ref = hookabovecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (9,-157); +ref = hookabovecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (32,-139); +ref = hookabovecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (95,-156); +ref = hookabovecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (67,-135); +ref = hookabovecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (108,-156); +ref = hookabovecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (105,-137); +ref = hookabovecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/amacron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/amacron.glyph new file mode 100644 index 00000000..66dd1394 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/amacron.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = amacron; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (39,-155); +ref = macroncomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,-139); +ref = macroncomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (89,-154); +ref = macroncomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (96,-129); +ref = macroncomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (38,-155); +ref = macroncomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (42,-139); +ref = macroncomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (100,-155); +ref = macroncomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (87,-134); +ref = macroncomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,-154); +ref = macroncomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (109,-129); +ref = macroncomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (99,-155); +ref = macroncomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (81,-134); +ref = macroncomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-155); +ref = macroncomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (19,-139); +ref = macroncomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (78,-155); +ref = macroncomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (70,-134); +ref = macroncomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (68,-154); +ref = macroncomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (74,-129); +ref = macroncomb; +} +); +width = 723; +} +); +unicode = 257; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/amacron.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/amacron.ss05.glyph new file mode 100644 index 00000000..57e7e100 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/amacron.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = amacron.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (12,-155); +ref = macroncomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (52,-139); +ref = macroncomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (57,-154); +ref = macroncomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (61,-129); +ref = macroncomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (12,-155); +ref = macroncomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (55,-139); +ref = macroncomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (59,-155); +ref = macroncomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (72,-134); +ref = macroncomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (57,-154); +ref = macroncomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (61,-129); +ref = macroncomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (52,-155); +ref = macroncomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (66,-134); +ref = macroncomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-25,-155); +ref = macroncomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-16,-139); +ref = macroncomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-2,-155); +ref = macroncomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (14,-134); +ref = macroncomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-18,-154); +ref = macroncomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (9,-129); +ref = macroncomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ampersand.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ampersand.glyph new file mode 100644 index 00000000..300643f8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ampersand.glyph @@ -0,0 +1,3890 @@ +{ +glyphname = ampersand; +kernRight = KO_ampersand; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(286,-10,o), +(353,15,o), +(383,53,c), +(390,53,l), +(422,15,o), +(465,-10,o), +(525,-10,cs), +(560,-10,o), +(590,-7,o), +(612,-1,c), +(612,131,l), +(597,127,o), +(582,126,o), +(568,126,cs), +(528,126,o), +(505,152,o), +(490,170,c), +(509,199,o), +(527,235,o), +(536,265,c), +(590,264,l), +(608,393,l), +(429,393,l), +(430,361,l), +(424,332,o), +(418,304,o), +(411,282,c), +(345,376,l), +(429,424,o), +(469,494,o), +(469,566,cs), +(469,670,o), +(394,739,o), +(281,739,cs), +(166,739,o), +(79,670,o), +(79,546,cs), +(79,488,o), +(102,433,o), +(139,385,c), +(59,341,o), +(24,257,o), +(24,184,cs), +(24,68,o), +(100,-10,o), +(216,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,135,o), +(197,160,o), +(197,212,cs), +(197,239,o), +(205,265,o), +(219,279,c), +(309,153,l), +(300,142,o), +(281,135,o), +(261,135,cs) +); +}, +{ +closed = 1; +nodes = ( +(263,489,o), +(252,520,o), +(252,549,cs), +(252,575,o), +(260,597,o), +(283,597,cs), +(298,597,o), +(314,588,o), +(314,552,cs), +(314,522,o), +(301,486,o), +(280,464,c) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(573,-7,o), +(606,-2,o), +(622,5,c), +(622,151,l), +(607,147,o), +(592,145,o), +(578,145,cs), +(530,145,o), +(500,160,o), +(457,219,cs), +(303,432,ls), +(275,471,o), +(251,510,o), +(251,550,cs), +(251,575,o), +(259,597,o), +(283,597,cs), +(298,597,o), +(314,588,o), +(314,552,cs), +(314,517,o), +(296,474,o), +(269,454,c), +(327,367,l), +(424,415,o), +(469,489,o), +(469,566,cs), +(469,670,o), +(394,739,o), +(281,739,cs), +(166,739,o), +(79,670,o), +(79,546,cs), +(79,476,o), +(107,412,o), +(155,347,cs), +(329,109,ls), +(395,19,o), +(455,-7,o), +(541,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,-10,o), +(357,19,o), +(388,63,c), +(307,164,l), +(304,147,o), +(280,135,o), +(254,135,cs), +(216,135,o), +(190,160,o), +(190,212,cs), +(190,245,o), +(202,276,o), +(222,286,c), +(148,393,l), +(57,352,o), +(17,262,o), +(17,184,cs), +(17,68,o), +(93,-10,o), +(209,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(503,188,o), +(524,230,o), +(536,265,c), +(587,264,l), +(605,393,l), +(429,393,l), +(430,361,l), +(423,326,o), +(416,293,o), +(407,270,c), +(481,157,l) +); +} +); +width = 640; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(233,-10,o), +(291,23,o), +(320,96,c), +(323,96,l), +(368,15,o), +(402,-7,o), +(440,-7,cs), +(448,-7,o), +(456,-6,o), +(461,-4,c), +(461,23,l), +(458,22,o), +(451,21,o), +(446,21,cs), +(408,21,o), +(383,46,o), +(335,132,c), +(352,193,o), +(365,279,o), +(368,353,c), +(439,350,l), +(444,376,l), +(337,376,l), +(339,360,l), +(338,301,o), +(330,229,o), +(317,165,c), +(187,399,l), +(252,450,o), +(300,535,o), +(300,615,cs), +(300,690,o), +(262,739,o), +(197,739,cs), +(135,739,o), +(89,689,o), +(89,599,cs), +(89,528,o), +(112,476,o), +(150,405,c), +(88,355,o), +(32,270,o), +(32,161,cs), +(32,58,o), +(86,-10,o), +(177,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,19,o), +(65,65,o), +(65,163,cs), +(65,259,o), +(108,339,o), +(163,383,c), +(306,126,l), +(284,60,o), +(241,19,o), +(178,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(139,489,o), +(121,530,o), +(121,599,cs), +(121,666,o), +(145,711,o), +(197,711,cs), +(240,711,o), +(268,679,o), +(268,613,cs), +(268,540,o), +(226,466,o), +(173,422,c) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-7,o), +(456,-6,o), +(461,-4,c), +(461,25,l), +(458,24,o), +(451,23,o), +(446,23,cs), +(406,23,o), +(381,49,o), +(327,147,cs), +(184,405,ls), +(134,496,o), +(121,530,o), +(121,599,cs), +(121,666,o), +(145,711,o), +(197,711,cs), +(240,711,o), +(268,679,o), +(268,613,cs), +(268,538,o), +(223,461,o), +(168,418,c), +(182,395,l), +(250,445,o), +(300,533,o), +(300,615,cs), +(300,690,o), +(262,739,o), +(197,739,cs), +(135,739,o), +(89,689,o), +(89,599,cs), +(89,526,o), +(111,473,o), +(153,398,cs), +(309,119,ls), +(359,30,o), +(390,-7,o), +(440,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,-10,o), +(296,26,o), +(324,106,c), +(309,135,l), +(288,64,o), +(244,19,o), +(178,19,cs), +(111,19,o), +(65,65,o), +(65,163,cs), +(65,261,o), +(110,343,o), +(167,386,c), +(154,408,l), +(91,359,o), +(32,272,o), +(32,161,cs), +(32,58,o), +(86,-10,o), +(177,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(351,186,o), +(365,276,o), +(368,353,c), +(439,350,l), +(444,376,l), +(339,376,l), +(340,358,l), +(339,297,o), +(329,221,o), +(315,156,c), +(333,124,l) +); +} +); +width = 478; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-169,-4,o), +(-158,-2,o), +(-151,0,c), +(-151,39,l), +(-161,36,o), +(-170,35,o), +(-182,35,cs), +(-236,35,o), +(-295,60,o), +(-387,159,cs), +(-574,362,ls), +(-696,494,o), +(-720,526,o), +(-720,583,cs), +(-720,656,o), +(-660,706,o), +(-579,706,cs), +(-509,706,o), +(-446,657,o), +(-446,585,cs), +(-446,506,o), +(-501,457,o), +(-632,405,c), +(-607,383,l), +(-468,437,o), +(-409,500,o), +(-409,582,cs), +(-409,673,o), +(-484,739,o), +(-580,739,cs), +(-685,739,o), +(-757,674,o), +(-757,584,cs), +(-757,519,o), +(-722,470,o), +(-622,360,cs), +(-411,130,ls), +(-319,29,o), +(-254,-4,o), +(-185,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(-560,-10,o), +(-453,29,o), +(-390,124,c), +(-417,149,l), +(-465,74,o), +(-547,24,o), +(-656,24,cs), +(-754,24,o), +(-820,85,o), +(-820,172,cs), +(-820,259,o), +(-760,336,o), +(-623,377,c), +(-646,401,l), +(-779,360,o), +(-860,281,o), +(-860,174,cs), +(-860,65,o), +(-777,-10,o), +(-651,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-347,203,o), +(-326,259,o), +(-318,321,c), +(-200,319,l), +(-201,360,l), +(-357,360,l), +(-357,327,l), +(-367,270,o), +(-383,219,o), +(-406,167,c), +(-376,142,l) +); +}, +{ +closed = 1; +nodes = ( +(726,-6,o), +(743,-4,o), +(756,0,c), +(756,43,l), +(748,39,o), +(731,36,o), +(708,36,cs), +(642,36,o), +(585,82,o), +(515,154,cs), +(346,326,ls), +(208,467,o), +(184,519,o), +(184,576,cs), +(184,653,o), +(241,706,o), +(325,706,cs), +(402,706,o), +(452,655,o), +(452,584,cs), +(452,507,o), +(404,452,o), +(263,401,c), +(285,378,l), +(431,430,o), +(490,497,o), +(490,583,cs), +(490,678,o), +(420,739,o), +(325,739,cs), +(216,739,o), +(146,666,o), +(146,577,cs), +(146,516,o), +(175,446,o), +(313,305,cs), +(485,130,ls), +(588,25,o), +(640,-6,o), +(714,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,-10,o), +(449,29,o), +(510,126,c), +(485,151,l), +(436,67,o), +(349,24,o), +(242,24,cs), +(146,24,o), +(80,84,o), +(80,173,cs), +(80,263,o), +(134,330,o), +(277,377,c), +(254,401,l), +(126,360,o), +(40,281,o), +(40,173,cs), +(40,64,o), +(121,-10,o), +(244,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(548,186,o), +(572,258,o), +(580,317,c), +(698,315,l), +(695,356,l), +(542,356,l), +(542,324,l), +(534,271,o), +(522,222,o), +(494,166,c), +(519,138,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(729,-6,o), +(748,-3,o), +(756,1,c), +(756,43,l), +(748,39,o), +(731,36,o), +(708,36,cs), +(638,36,o), +(577,82,o), +(492,170,cs), +(361,305,ls), +(208,462,o), +(186,519,o), +(186,576,cs), +(186,653,o), +(241,706,o), +(325,706,cs), +(402,706,o), +(452,655,o), +(452,584,cs), +(452,507,o), +(404,452,o), +(263,401,c), +(285,378,l), +(431,430,o), +(490,497,o), +(490,583,cs), +(490,678,o), +(420,739,o), +(325,739,cs), +(216,739,o), +(147,666,o), +(147,578,cs), +(147,516,o), +(174,443,o), +(328,285,cs), +(471,138,ls), +(563,44,o), +(624,-6,o), +(709,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,-10,o), +(449,29,o), +(510,126,c), +(485,151,l), +(436,67,o), +(349,24,o), +(242,24,cs), +(146,24,o), +(80,84,o), +(80,173,cs), +(80,263,o), +(134,330,o), +(277,377,c), +(254,401,l), +(126,360,o), +(40,281,o), +(40,173,cs), +(40,64,o), +(121,-10,o), +(244,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(548,186,o), +(571,258,o), +(580,317,c), +(698,315,l), +(695,356,l), +(542,356,l), +(542,324,l), +(534,271,o), +(523,222,o), +(494,166,c), +(519,138,l) +); +} +); +width = 786; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,-10,o), +(422,8,o), +(479,66,c), +(486,66,l), +(544,16,o), +(607,-12,o), +(680,-12,cs), +(711,-12,o), +(753,-7,o), +(779,5,c), +(779,158,l), +(765,154,o), +(751,152,o), +(736,152,cs), +(700,152,o), +(661,161,o), +(627,187,c), +(646,207,o), +(663,231,o), +(681,260,c), +(757,258,l), +(767,400,l), +(552,400,l), +(549,368,l), +(537,339,o), +(525,311,o), +(509,291,c), +(431,368,l), +(523,397,o), +(583,457,o), +(583,553,cs), +(583,663,o), +(482,739,o), +(339,739,cs), +(198,739,o), +(95,659,o), +(95,537,cs), +(95,480,o), +(119,438,o), +(169,384,c), +(74,354,o), +(11,275,o), +(11,183,cs), +(11,67,o), +(107,-10,o), +(251,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,155,o), +(231,184,o), +(231,217,cs), +(231,242,o), +(243,266,o), +(261,279,c), +(368,177,l), +(356,164,o), +(336,155,o), +(300,155,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,480,o), +(301,502,o), +(301,529,cs), +(301,560,o), +(319,579,o), +(349,579,cs), +(380,579,o), +(401,561,o), +(401,531,cs), +(401,500,o), +(378,472,o), +(342,452,c) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(711,-12,o), +(753,-7,o), +(779,5,c), +(779,158,l), +(765,154,o), +(751,152,o), +(736,152,cs), +(695,152,o), +(650,164,o), +(577,232,cs), +(360,433,ls), +(320,470,o), +(301,497,o), +(301,529,cs), +(301,560,o), +(319,579,o), +(349,579,cs), +(380,579,o), +(401,561,o), +(401,531,cs), +(401,495,o), +(370,463,o), +(324,443,c), +(414,363,l), +(515,390,o), +(583,451,o), +(583,553,cs), +(583,663,o), +(482,739,o), +(339,739,cs), +(198,739,o), +(95,659,o), +(95,536,cs), +(95,454,o), +(132,394,o), +(249,286,cs), +(458,93,ls), +(536,21,o), +(602,-12,o), +(680,-12,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,-10,o), +(442,10,o), +(496,77,c), +(375,186,l), +(364,168,o), +(344,155,o), +(300,155,cs), +(261,155,o), +(231,184,o), +(231,217,cs), +(231,248,o), +(249,277,o), +(274,286,c), +(186,389,l), +(82,363,o), +(11,280,o), +(11,183,cs), +(11,67,o), +(107,-10,o), +(251,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(640,199,o), +(660,226,o), +(681,260,c), +(757,258,l), +(767,400,l), +(552,400,l), +(549,368,l), +(535,334,o), +(521,301,o), +(500,281,c), +(617,177,l) +); +} +); +width = 801; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(233,-10,o), +(291,23,o), +(320,96,c), +(323,96,l), +(368,15,o), +(402,-7,o), +(440,-7,cs), +(448,-7,o), +(456,-6,o), +(461,-4,c), +(461,23,l), +(458,22,o), +(451,21,o), +(446,21,cs), +(408,21,o), +(383,46,o), +(335,132,c), +(352,193,o), +(365,279,o), +(368,353,c), +(439,350,l), +(444,376,l), +(337,376,l), +(339,360,l), +(338,301,o), +(330,229,o), +(317,165,c), +(187,399,l), +(252,450,o), +(300,535,o), +(300,615,cs), +(300,690,o), +(262,739,o), +(197,739,cs), +(135,739,o), +(89,689,o), +(89,599,cs), +(89,528,o), +(112,476,o), +(150,405,c), +(88,355,o), +(32,270,o), +(32,161,cs), +(32,58,o), +(86,-10,o), +(177,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,19,o), +(65,65,o), +(65,163,cs), +(65,259,o), +(108,339,o), +(163,383,c), +(306,126,l), +(284,60,o), +(241,19,o), +(178,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(139,489,o), +(121,530,o), +(121,599,cs), +(121,666,o), +(145,711,o), +(197,711,cs), +(240,711,o), +(268,679,o), +(268,613,cs), +(268,540,o), +(226,466,o), +(173,422,c) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(428,-7,o), +(436,-6,o), +(441,-4,c), +(441,25,l), +(438,24,o), +(431,23,o), +(426,23,cs), +(386,23,o), +(361,49,o), +(307,147,cs), +(164,405,ls), +(114,496,o), +(101,530,o), +(101,599,cs), +(101,666,o), +(125,711,o), +(177,711,cs), +(220,711,o), +(248,679,o), +(248,613,cs), +(248,538,o), +(203,461,o), +(148,418,c), +(162,395,l), +(230,445,o), +(280,533,o), +(280,615,cs), +(280,690,o), +(242,739,o), +(177,739,cs), +(115,739,o), +(69,689,o), +(69,599,cs), +(69,526,o), +(91,473,o), +(133,398,cs), +(289,119,ls), +(339,30,o), +(370,-7,o), +(420,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(215,-10,o), +(276,26,o), +(304,106,c), +(289,135,l), +(268,64,o), +(224,19,o), +(158,19,cs), +(91,19,o), +(45,65,o), +(45,163,cs), +(45,261,o), +(90,343,o), +(147,386,c), +(134,408,l), +(71,359,o), +(12,272,o), +(12,161,cs), +(12,58,o), +(66,-10,o), +(157,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,186,o), +(345,276,o), +(348,353,c), +(419,350,l), +(424,376,l), +(319,376,l), +(320,358,l), +(319,297,o), +(309,221,o), +(295,156,c), +(313,124,l) +); +} +); +width = 448; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(286,-10,o), +(353,15,o), +(383,53,c), +(390,53,l), +(422,15,o), +(465,-10,o), +(525,-10,cs), +(560,-10,o), +(590,-7,o), +(612,-1,c), +(612,131,l), +(597,127,o), +(582,126,o), +(568,126,cs), +(528,126,o), +(505,152,o), +(490,170,c), +(509,199,o), +(527,235,o), +(536,265,c), +(590,264,l), +(608,393,l), +(429,393,l), +(430,361,l), +(424,332,o), +(418,304,o), +(411,282,c), +(345,376,l), +(429,424,o), +(469,494,o), +(469,566,cs), +(469,670,o), +(394,739,o), +(281,739,cs), +(166,739,o), +(79,670,o), +(79,546,cs), +(79,488,o), +(102,433,o), +(139,385,c), +(59,341,o), +(24,257,o), +(24,184,cs), +(24,68,o), +(100,-10,o), +(216,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,135,o), +(197,160,o), +(197,212,cs), +(197,239,o), +(205,265,o), +(219,279,c), +(309,153,l), +(300,142,o), +(281,135,o), +(261,135,cs) +); +}, +{ +closed = 1; +nodes = ( +(263,489,o), +(252,520,o), +(252,549,cs), +(252,575,o), +(260,597,o), +(283,597,cs), +(298,597,o), +(314,588,o), +(314,552,cs), +(314,522,o), +(301,486,o), +(280,464,c) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(563,-7,o), +(596,-2,o), +(612,5,c), +(612,151,l), +(597,147,o), +(582,145,o), +(568,145,cs), +(520,145,o), +(490,160,o), +(447,219,cs), +(293,432,ls), +(265,471,o), +(241,510,o), +(241,550,cs), +(241,575,o), +(249,597,o), +(273,597,cs), +(288,597,o), +(304,588,o), +(304,552,cs), +(304,517,o), +(286,474,o), +(259,454,c), +(317,367,l), +(414,415,o), +(459,489,o), +(459,566,cs), +(459,670,o), +(384,739,o), +(271,739,cs), +(156,739,o), +(69,670,o), +(69,546,cs), +(69,476,o), +(97,412,o), +(145,347,cs), +(319,109,ls), +(385,19,o), +(445,-7,o), +(531,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(275,-10,o), +(347,19,o), +(378,63,c), +(297,164,l), +(294,147,o), +(270,135,o), +(244,135,cs), +(206,135,o), +(180,160,o), +(180,212,cs), +(180,245,o), +(192,276,o), +(212,286,c), +(138,393,l), +(47,352,o), +(7,262,o), +(7,184,cs), +(7,68,o), +(83,-10,o), +(199,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(493,188,o), +(514,230,o), +(526,265,c), +(577,264,l), +(595,393,l), +(419,393,l), +(420,361,l), +(413,326,o), +(406,293,o), +(397,270,c), +(471,157,l) +); +} +); +width = 620; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(723,-5,o), +(739,-1,o), +(749,3,c), +(749,44,l), +(739,39,o), +(725,35,o), +(708,35,cs), +(660,35,o), +(627,41,o), +(542,134,cs), +(314,382,ls), +(234,470,o), +(207,521,o), +(207,586,cs), +(207,656,o), +(258,705,o), +(335,705,cs), +(404,705,o), +(450,663,o), +(450,590,cs), +(450,517,o), +(401,463,o), +(278,405,c), +(301,383,l), +(425,442,o), +(487,507,o), +(487,592,cs), +(487,680,o), +(427,739,o), +(336,739,cs), +(240,739,o), +(169,677,o), +(169,582,cs), +(169,528,o), +(184,469,o), +(280,364,cs), +(512,110,ls), +(586,28,o), +(632,-5,o), +(703,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,-10,o), +(450,38,o), +(509,139,c), +(479,157,l), +(432,73,o), +(357,23,o), +(249,23,cs), +(160,23,o), +(97,82,o), +(97,173,cs), +(97,261,o), +(157,323,o), +(283,376,c), +(262,402,l), +(135,347,o), +(59,274,o), +(59,172,cs), +(59,65,o), +(136,-10,o), +(247,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(541,201,o), +(561,259,o), +(568,319,c), +(681,318,l), +(676,355,l), +(529,355,l), +(529,326,l), +(522,270,o), +(508,218,o), +(487,175,c), +(518,155,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(698,-5,o), +(711,-3,o), +(721,0,c), +(721,41,l), +(712,37,o), +(701,35,o), +(688,35,cs), +(619,35,o), +(569,67,o), +(477,170,cs), +(308,359,ls), +(215,464,o), +(187,521,o), +(187,586,cs), +(187,656,o), +(238,705,o), +(315,705,cs), +(384,705,o), +(430,663,o), +(430,590,cs), +(430,517,o), +(381,463,o), +(258,405,c), +(281,383,l), +(405,442,o), +(467,507,o), +(467,592,cs), +(467,680,o), +(406,739,o), +(316,739,cs), +(220,739,o), +(149,677,o), +(149,582,cs), +(149,528,o), +(166,463,o), +(273,343,cs), +(448,146,ls), +(514,72,o), +(585,-5,o), +(683,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,-10,o), +(430,38,o), +(489,139,c), +(459,157,l), +(412,73,o), +(337,23,o), +(229,23,cs), +(140,23,o), +(77,82,o), +(77,173,cs), +(77,261,o), +(137,323,o), +(263,376,c), +(242,402,l), +(115,347,o), +(39,274,o), +(39,172,cs), +(39,65,o), +(116,-10,o), +(227,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,197,o), +(542,267,o), +(548,319,c), +(671,318,l), +(666,355,l), +(509,355,l), +(509,326,l), +(502,267,o), +(486,212,o), +(463,168,c), +(494,147,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +} +); +}; +width = 749; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-481,-10,o), +(-399,9,o), +(-340,64,c), +(-331,64,l), +(-271,10,o), +(-214,-8,o), +(-148,-8,cs), +(-126,-8,o), +(-103,-6,o), +(-79,-1,c), +(-73,147,l), +(-85,143,o), +(-97,141,o), +(-111,141,cs), +(-145,141,o), +(-180,157,o), +(-221,192,c), +(-203,216,o), +(-190,236,o), +(-178,256,c), +(-99,253,l), +(-80,396,l), +(-281,396,l), +(-284,365,l), +(-290,344,o), +(-304,318,o), +(-322,291,c), +(-392,368,l), +(-302,410,o), +(-252,478,o), +(-252,557,cs), +(-252,667,o), +(-338,739,o), +(-459,739,cs), +(-595,739,o), +(-693,659,o), +(-693,542,cs), +(-693,486,o), +(-673,431,o), +(-629,384,c), +(-711,351,o), +(-771,275,o), +(-771,187,cs), +(-771,65,o), +(-681,-10,o), +(-560,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-552,147,o), +(-580,173,o), +(-580,211,cs), +(-580,244,o), +(-564,267,o), +(-541,280,c), +(-439,170,l), +(-456,154,o), +(-482,147,o), +(-513,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(-496,480,o), +(-513,511,o), +(-513,537,cs), +(-513,568,o), +(-491,587,o), +(-463,587,cs), +(-434,587,o), +(-416,567,o), +(-416,538,cs), +(-416,506,o), +(-436,476,o), +(-468,454,c) +); +}, +{ +closed = 1; +nodes = ( +(327,-10,o), +(415,19,o), +(460,63,c), +(469,63,l), +(529,10,o), +(586,-8,o), +(652,-8,cs), +(674,-8,o), +(697,-6,o), +(721,-1,c), +(728,148,l), +(714,143,o), +(701,141,o), +(688,141,cs), +(658,141,o), +(624,155,o), +(581,190,c), +(597,213,o), +(613,236,o), +(625,256,c), +(701,253,l), +(720,397,l), +(512,398,l), +(510,366,l), +(505,350,o), +(496,327,o), +(475,294,c), +(408,368,l), +(493,407,o), +(549,475,o), +(549,558,cs), +(549,667,o), +(461,739,o), +(341,739,cs), +(205,739,o), +(106,659,o), +(106,541,cs), +(106,482,o), +(129,429,o), +(170,385,c), +(90,351,o), +(29,276,o), +(29,187,cs), +(29,65,o), +(120,-10,o), +(239,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,145,o), +(220,171,o), +(220,211,cs), +(220,239,o), +(236,266,o), +(259,280,c), +(361,170,l), +(345,155,o), +(315,145,o), +(285,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,479,o), +(287,510,o), +(287,536,cs), +(287,566,o), +(310,587,o), +(337,587,cs), +(366,587,o), +(384,565,o), +(384,538,cs), +(384,507,o), +(364,476,o), +(333,455,c) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(653,-8,o), +(676,-6,o), +(700,-1,c), +(707,152,l), +(693,147,o), +(680,145,o), +(667,145,cs), +(633,145,o), +(588,156,o), +(542,205,cs), +(347,411,ls), +(269,493,o), +(266,509,o), +(266,538,cs), +(266,569,o), +(289,587,o), +(316,587,cs), +(345,587,o), +(363,568,o), +(363,538,cs), +(363,502,o), +(336,466,o), +(297,446,c), +(370,361,l), +(465,398,o), +(528,470,o), +(528,558,cs), +(528,667,o), +(440,739,o), +(320,739,cs), +(184,739,o), +(85,659,o), +(85,536,cs), +(85,480,o), +(104,423,o), +(181,342,cs), +(434,76,ls), +(496,11,o), +(560,-8,o), +(631,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,-10,o), +(424,30,o), +(468,97,c), +(367,193,l), +(348,164,o), +(314,144,o), +(270,144,cs), +(227,144,o), +(199,171,o), +(199,211,cs), +(199,244,o), +(222,276,o), +(252,287,c), +(165,390,l), +(78,361,o), +(8,281,o), +(8,187,cs), +(8,65,o), +(99,-10,o), +(221,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(573,196,o), +(596,230,o), +(612,256,c), +(684,253,l), +(669,398,l), +(491,398,l), +(489,366,l), +(483,346,o), +(469,315,o), +(435,265,c), +(547,166,l) +); +} +); +width = 720; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-169,-4,o), +(-158,-2,o), +(-151,0,c), +(-151,39,l), +(-161,36,o), +(-170,35,o), +(-182,35,cs), +(-236,35,o), +(-295,60,o), +(-387,159,cs), +(-574,362,ls), +(-696,494,o), +(-720,526,o), +(-720,583,cs), +(-720,656,o), +(-660,706,o), +(-579,706,cs), +(-509,706,o), +(-446,657,o), +(-446,585,cs), +(-446,506,o), +(-501,457,o), +(-632,405,c), +(-607,383,l), +(-468,437,o), +(-409,500,o), +(-409,582,cs), +(-409,673,o), +(-484,739,o), +(-580,739,cs), +(-685,739,o), +(-757,674,o), +(-757,584,cs), +(-757,519,o), +(-722,470,o), +(-622,360,cs), +(-411,130,ls), +(-319,29,o), +(-254,-4,o), +(-185,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(-560,-10,o), +(-453,29,o), +(-390,124,c), +(-417,149,l), +(-465,74,o), +(-547,24,o), +(-656,24,cs), +(-754,24,o), +(-820,85,o), +(-820,172,cs), +(-820,259,o), +(-760,336,o), +(-623,377,c), +(-646,401,l), +(-779,360,o), +(-860,281,o), +(-860,174,cs), +(-860,65,o), +(-777,-10,o), +(-651,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-347,203,o), +(-326,259,o), +(-318,321,c), +(-200,319,l), +(-201,360,l), +(-357,360,l), +(-357,327,l), +(-367,270,o), +(-383,219,o), +(-406,167,c), +(-376,142,l) +); +}, +{ +closed = 1; +nodes = ( +(726,-6,o), +(743,-4,o), +(756,0,c), +(756,43,l), +(748,39,o), +(731,36,o), +(708,36,cs), +(642,36,o), +(585,82,o), +(515,154,cs), +(346,326,ls), +(208,467,o), +(184,519,o), +(184,576,cs), +(184,653,o), +(241,706,o), +(325,706,cs), +(402,706,o), +(452,655,o), +(452,584,cs), +(452,507,o), +(404,452,o), +(263,401,c), +(285,378,l), +(431,430,o), +(490,497,o), +(490,583,cs), +(490,678,o), +(420,739,o), +(325,739,cs), +(216,739,o), +(146,666,o), +(146,577,cs), +(146,516,o), +(175,446,o), +(313,305,cs), +(485,130,ls), +(588,25,o), +(640,-6,o), +(714,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,-10,o), +(449,29,o), +(510,126,c), +(485,151,l), +(436,67,o), +(349,24,o), +(242,24,cs), +(146,24,o), +(80,84,o), +(80,173,cs), +(80,263,o), +(134,330,o), +(277,377,c), +(254,401,l), +(126,360,o), +(40,281,o), +(40,173,cs), +(40,64,o), +(121,-10,o), +(244,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(548,186,o), +(572,258,o), +(580,317,c), +(698,315,l), +(695,356,l), +(542,356,l), +(542,324,l), +(534,271,o), +(522,222,o), +(494,166,c), +(519,138,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(719,-6,o), +(738,-3,o), +(746,1,c), +(746,43,l), +(738,39,o), +(721,36,o), +(698,36,cs), +(628,36,o), +(567,82,o), +(482,170,cs), +(351,305,ls), +(198,462,o), +(176,519,o), +(176,576,cs), +(176,653,o), +(231,706,o), +(315,706,cs), +(392,706,o), +(442,655,o), +(442,584,cs), +(442,507,o), +(394,452,o), +(253,401,c), +(275,378,l), +(421,430,o), +(480,497,o), +(480,583,cs), +(480,678,o), +(410,739,o), +(315,739,cs), +(206,739,o), +(137,666,o), +(137,578,cs), +(137,516,o), +(164,443,o), +(318,285,cs), +(461,138,ls), +(553,44,o), +(614,-6,o), +(699,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,-10,o), +(439,29,o), +(500,126,c), +(475,151,l), +(426,67,o), +(339,24,o), +(232,24,cs), +(136,24,o), +(70,84,o), +(70,173,cs), +(70,263,o), +(124,330,o), +(267,377,c), +(244,401,l), +(116,360,o), +(30,281,o), +(30,173,cs), +(30,64,o), +(111,-10,o), +(234,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(538,186,o), +(561,258,o), +(570,317,c), +(688,315,l), +(685,356,l), +(532,356,l), +(532,324,l), +(524,271,o), +(513,222,o), +(484,166,c), +(509,138,l) +); +} +); +width = 766; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,-10,o), +(422,8,o), +(479,66,c), +(486,66,l), +(544,16,o), +(607,-12,o), +(680,-12,cs), +(711,-12,o), +(753,-7,o), +(779,5,c), +(779,158,l), +(765,154,o), +(751,152,o), +(736,152,cs), +(700,152,o), +(661,161,o), +(627,187,c), +(646,207,o), +(663,231,o), +(681,260,c), +(757,258,l), +(767,400,l), +(552,400,l), +(549,368,l), +(537,339,o), +(525,311,o), +(509,291,c), +(431,368,l), +(523,397,o), +(583,457,o), +(583,553,cs), +(583,663,o), +(482,739,o), +(339,739,cs), +(198,739,o), +(95,659,o), +(95,537,cs), +(95,480,o), +(119,438,o), +(169,384,c), +(74,354,o), +(11,275,o), +(11,183,cs), +(11,67,o), +(107,-10,o), +(251,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,155,o), +(231,184,o), +(231,217,cs), +(231,242,o), +(243,266,o), +(261,279,c), +(368,177,l), +(356,164,o), +(336,155,o), +(300,155,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,480,o), +(301,502,o), +(301,529,cs), +(301,560,o), +(319,579,o), +(349,579,cs), +(380,579,o), +(401,561,o), +(401,531,cs), +(401,500,o), +(378,472,o), +(342,452,c) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(701,-12,o), +(743,-7,o), +(769,5,c), +(769,158,l), +(755,154,o), +(741,152,o), +(726,152,cs), +(685,152,o), +(640,164,o), +(567,232,cs), +(350,433,ls), +(310,470,o), +(291,497,o), +(291,529,cs), +(291,560,o), +(309,579,o), +(339,579,cs), +(370,579,o), +(391,561,o), +(391,531,cs), +(391,495,o), +(360,463,o), +(314,443,c), +(404,363,l), +(505,390,o), +(573,451,o), +(573,553,cs), +(573,663,o), +(472,739,o), +(329,739,cs), +(188,739,o), +(85,659,o), +(85,536,cs), +(85,454,o), +(122,394,o), +(239,286,cs), +(448,93,ls), +(526,21,o), +(592,-12,o), +(670,-12,cs) +); +}, +{ +closed = 1; +nodes = ( +(324,-10,o), +(432,10,o), +(486,77,c), +(365,186,l), +(354,168,o), +(334,155,o), +(290,155,cs), +(251,155,o), +(221,184,o), +(221,217,cs), +(221,248,o), +(239,277,o), +(264,286,c), +(176,389,l), +(72,363,o), +(1,280,o), +(1,183,cs), +(1,67,o), +(97,-10,o), +(241,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(630,199,o), +(650,226,o), +(671,260,c), +(747,258,l), +(757,400,l), +(542,400,l), +(539,368,l), +(525,334,o), +(511,301,o), +(490,281,c), +(607,177,l) +); +} +); +width = 781; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(723,-5,o), +(739,-1,o), +(749,3,c), +(749,44,l), +(739,39,o), +(725,35,o), +(708,35,cs), +(660,35,o), +(627,41,o), +(542,134,cs), +(314,382,ls), +(234,470,o), +(207,521,o), +(207,586,cs), +(207,656,o), +(258,705,o), +(335,705,cs), +(404,705,o), +(450,663,o), +(450,590,cs), +(450,517,o), +(401,463,o), +(278,405,c), +(301,383,l), +(425,442,o), +(487,507,o), +(487,592,cs), +(487,680,o), +(427,739,o), +(336,739,cs), +(240,739,o), +(169,677,o), +(169,582,cs), +(169,528,o), +(184,469,o), +(280,364,cs), +(512,110,ls), +(586,28,o), +(632,-5,o), +(703,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,-10,o), +(450,38,o), +(509,139,c), +(479,157,l), +(432,73,o), +(357,23,o), +(249,23,cs), +(160,23,o), +(97,82,o), +(97,173,cs), +(97,261,o), +(157,323,o), +(283,376,c), +(262,402,l), +(135,347,o), +(59,274,o), +(59,172,cs), +(59,65,o), +(136,-10,o), +(247,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(541,201,o), +(561,259,o), +(568,319,c), +(681,318,l), +(676,355,l), +(529,355,l), +(529,326,l), +(522,270,o), +(508,218,o), +(487,175,c), +(518,155,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(707,-5,o), +(720,-3,o), +(730,0,c), +(730,41,l), +(721,37,o), +(710,35,o), +(697,35,cs), +(630,35,o), +(580,67,o), +(490,170,cs), +(325,359,ls), +(234,464,o), +(206,521,o), +(206,586,cs), +(206,656,o), +(255,705,o), +(332,705,cs), +(399,705,o), +(444,663,o), +(444,590,cs), +(444,517,o), +(396,463,o), +(275,405,c), +(298,383,l), +(420,442,o), +(480,507,o), +(480,592,cs), +(480,680,o), +(421,739,o), +(333,739,cs), +(239,739,o), +(168,677,o), +(168,582,cs), +(168,528,o), +(185,463,o), +(290,343,cs), +(461,146,ls), +(527,72,o), +(596,-5,o), +(692,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(354,-10,o), +(444,38,o), +(502,139,c), +(472,157,l), +(427,73,o), +(352,23,o), +(248,23,cs), +(159,23,o), +(98,82,o), +(98,173,cs), +(98,261,o), +(156,323,o), +(280,376,c), +(259,402,l), +(136,347,o), +(60,274,o), +(60,172,cs), +(60,65,o), +(137,-10,o), +(246,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(533,197,o), +(553,267,o), +(559,319,c), +(680,318,l), +(675,355,l), +(522,355,l), +(522,326,l), +(515,267,o), +(499,212,o), +(476,168,c), +(507,147,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +} +); +}; +width = 778; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-481,-10,o), +(-399,9,o), +(-340,64,c), +(-331,64,l), +(-271,10,o), +(-214,-8,o), +(-148,-8,cs), +(-126,-8,o), +(-103,-6,o), +(-79,-1,c), +(-73,147,l), +(-85,143,o), +(-97,141,o), +(-111,141,cs), +(-145,141,o), +(-180,157,o), +(-221,192,c), +(-203,216,o), +(-190,236,o), +(-178,256,c), +(-99,253,l), +(-80,396,l), +(-281,396,l), +(-284,365,l), +(-290,344,o), +(-304,318,o), +(-322,291,c), +(-392,368,l), +(-302,410,o), +(-252,478,o), +(-252,557,cs), +(-252,667,o), +(-338,739,o), +(-459,739,cs), +(-595,739,o), +(-693,659,o), +(-693,542,cs), +(-693,486,o), +(-673,431,o), +(-629,384,c), +(-711,351,o), +(-771,275,o), +(-771,187,cs), +(-771,65,o), +(-681,-10,o), +(-560,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-552,147,o), +(-580,173,o), +(-580,211,cs), +(-580,244,o), +(-564,267,o), +(-541,280,c), +(-439,170,l), +(-456,154,o), +(-482,147,o), +(-513,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(-496,480,o), +(-513,511,o), +(-513,537,cs), +(-513,568,o), +(-491,587,o), +(-463,587,cs), +(-434,587,o), +(-416,567,o), +(-416,538,cs), +(-416,506,o), +(-436,476,o), +(-468,454,c) +); +}, +{ +closed = 1; +nodes = ( +(327,-10,o), +(415,19,o), +(460,63,c), +(469,63,l), +(529,10,o), +(586,-8,o), +(652,-8,cs), +(674,-8,o), +(697,-6,o), +(721,-1,c), +(728,148,l), +(714,143,o), +(701,141,o), +(688,141,cs), +(658,141,o), +(624,155,o), +(581,190,c), +(597,213,o), +(613,236,o), +(625,256,c), +(701,253,l), +(720,397,l), +(512,398,l), +(510,366,l), +(505,350,o), +(496,327,o), +(475,294,c), +(408,368,l), +(493,407,o), +(549,475,o), +(549,558,cs), +(549,667,o), +(461,739,o), +(341,739,cs), +(205,739,o), +(106,659,o), +(106,541,cs), +(106,482,o), +(129,429,o), +(170,385,c), +(90,351,o), +(29,276,o), +(29,187,cs), +(29,65,o), +(120,-10,o), +(239,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,145,o), +(220,171,o), +(220,211,cs), +(220,239,o), +(236,266,o), +(259,280,c), +(361,170,l), +(345,155,o), +(315,145,o), +(285,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,479,o), +(287,510,o), +(287,536,cs), +(287,566,o), +(310,587,o), +(337,587,cs), +(366,587,o), +(384,565,o), +(384,538,cs), +(384,507,o), +(364,476,o), +(333,455,c) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(656,-8,o), +(679,-6,o), +(703,-1,c), +(710,152,l), +(696,147,o), +(683,145,o), +(670,145,cs), +(639,145,o), +(595,157,o), +(550,205,cs), +(360,410,ls), +(284,492,o), +(281,509,o), +(281,538,cs), +(281,569,o), +(304,587,o), +(329,587,cs), +(356,587,o), +(373,568,o), +(373,538,cs), +(373,502,o), +(347,466,o), +(311,446,c), +(383,361,l), +(475,398,o), +(537,470,o), +(537,558,cs), +(537,667,o), +(450,739,o), +(333,739,cs), +(199,739,o), +(102,659,o), +(102,536,cs), +(102,479,o), +(120,423,o), +(196,341,cs), +(444,76,ls), +(504,11,o), +(567,-8,o), +(635,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,-10,o), +(434,30,o), +(476,97,c), +(377,193,l), +(358,163,o), +(326,144,o), +(284,144,cs), +(244,144,o), +(217,171,o), +(217,211,cs), +(217,244,o), +(239,276,o), +(266,287,c), +(180,390,l), +(96,361,o), +(28,281,o), +(28,187,cs), +(28,65,o), +(117,-10,o), +(236,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(581,196,o), +(603,230,o), +(619,256,c), +(688,253,l), +(673,398,l), +(499,398,l), +(497,366,l), +(491,346,o), +(477,315,o), +(445,265,c), +(555,166,l) +); +} +); +width = 742; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(187,-7,o), +(249,29,o), +(286,103,c), +(273,134,l), +(249,67,o), +(198,23,o), +(137,23,cs), +(76,23,o), +(38,59,o), +(41,132,cs), +(44,226,o), +(102,334,o), +(188,387,c), +(312,0,l), +(344,0,l), +(298,141,l), +(298,119,l), +(328,175,o), +(360,264,o), +(376,342,c), +(446,342,l), +(451,369,l), +(355,369,l), +(342,302,o), +(315,216,o), +(291,162,c), +(212,399,l), +(213,402,l), +(290,449,o), +(364,546,o), +(368,640,cs), +(370,700,o), +(341,739,o), +(283,739,cs), +(201,739,o), +(157,653,o), +(154,555,cs), +(152,502,o), +(165,454,o), +(180,399,c), +(185,415,l), +(88,357,o), +(12,244,o), +(8,133,cs), +(5,49,o), +(53,-6,o), +(133,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,472,o), +(181,511,o), +(183,556,cs), +(185,626,o), +(214,711,o), +(279,711,cs), +(317,711,o), +(341,689,o), +(339,639,cs), +(336,559,o), +(276,472,o), +(206,425,c), +(203,425,l) +); +} +); +}; +guides = ( +{ +pos = (349,376); +}, +{ +pos = (378,353); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(402,-4,o), +(408,-4,o), +(414,-3,c), +(420,26,l), +(412,24,o), +(406,24,o), +(400,24,cs), +(351,24,o), +(323,57,o), +(290,159,cs), +(223,367,ls), +(186,481,o), +(186,514,o), +(186,571,cs), +(186,655,o), +(223,711,o), +(279,711,cs), +(315,711,o), +(339,687,o), +(339,635,cs), +(339,562,o), +(277,476,o), +(202,424,c), +(210,400,l), +(290,453,o), +(368,548,o), +(368,636,cs), +(368,703,o), +(335,739,o), +(283,739,cs), +(196,739,o), +(157,646,o), +(157,563,cs), +(157,497,o), +(164,465,o), +(203,339,cs), +(260,157,ls), +(302,24,o), +(344,-4,o), +(397,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,-7,o), +(259,34,o), +(290,112,c), +(274,137,l), +(251,68,o), +(200,22,o), +(136,22,cs), +(79,22,o), +(41,58,o), +(41,134,cs), +(41,218,o), +(98,319,o), +(194,388,c), +(182,411,l), +(86,342,o), +(10,237,o), +(10,134,cs), +(10,47,o), +(59,-7,o), +(130,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(326,176,o), +(359,275,o), +(378,352,c), +(450,350,l), +(460,376,l), +(353,376,l), +(352,369,l), +(340,299,o), +(308,209,o), +(281,141,c), +(293,113,l) +); +} +); +width = 483; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-181,0,l), +(-365,382,ls), +(-405,465,o), +(-420,506,o), +(-419,543,cs), +(-418,575,o), +(-404,596,o), +(-379,596,cs), +(-362,596,o), +(-352,581,o), +(-353,559,cs), +(-354,518,o), +(-378,482,o), +(-421,456,c), +(-378,370,l), +(-276,394,o), +(-206,475,o), +(-203,567,cs), +(-200,667,o), +(-262,739,o), +(-369,739,cs), +(-494,739,o), +(-571,648,o), +(-574,539,cs), +(-576,486,o), +(-565,441,o), +(-501,302,cs), +(-362,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-426,144,o), +(-442,132,o), +(-473,132,cs), +(-507,132,o), +(-529,156,o), +(-528,198,cs), +(-527,241,o), +(-500,286,o), +(-473,301,c), +(-521,416,l), +(-627,372,o), +(-702,271,o), +(-705,173,cs), +(-709,63,o), +(-640,-10,o), +(-533,-10,cs), +(-472,-10,o), +(-401,5,o), +(-360,64,c), +(-412,164,l) +); +}, +{ +closed = 1; +nodes = ( +(-233,182,o), +(-208,219,o), +(-189,261,c), +(-137,261,l), +(-109,393,l), +(-269,393,l), +(-277,353,o), +(-294,309,o), +(-322,263,c), +(-265,144,l) +); +}, +{ +closed = 1; +nodes = ( +(486,-7,o), +(515,-2,o), +(534,5,c), +(564,151,l), +(548,147,o), +(533,145,o), +(519,145,cs), +(471,145,o), +(441,160,o), +(402,243,cs), +(305,448,ls), +(286,487,o), +(281,515,o), +(281,540,cs), +(281,573,o), +(295,596,o), +(320,596,cs), +(337,596,o), +(348,583,o), +(347,558,cs), +(346,521,o), +(324,484,o), +(281,458,c), +(322,370,l), +(425,402,o), +(493,485,o), +(493,581,cs), +(493,676,o), +(427,739,o), +(329,739,cs), +(211,739,o), +(131,659,o), +(128,542,cs), +(126,486,o), +(136,442,o), +(199,302,cs), +(261,165,ls), +(327,19,o), +(380,-7,o), +(458,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,-10,o), +(315,17,o), +(350,66,c), +(288,164,l), +(274,144,o), +(258,132,o), +(227,132,cs), +(193,132,o), +(171,156,o), +(172,198,cs), +(173,241,o), +(200,286,o), +(227,301,c), +(179,416,l), +(75,372,o), +(2,271,o), +(-1,173,cs), +(-5,63,o), +(62,-10,o), +(167,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(460,180,o), +(492,223,o), +(511,265,c), +(559,263,l), +(591,393,l), +(430,393,l), +(422,357,l), +(412,324,o), +(395,289,o), +(373,253,c), +(428,142,l) +); +} +); +}; +guides = ( +{ +angle = 180; +pos = (524,265); +}, +{ +pos = (593,393); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(486,-7,o), +(515,-2,o), +(534,5,c), +(564,151,l), +(548,147,o), +(533,145,o), +(519,145,cs), +(471,145,o), +(441,160,o), +(402,243,cs), +(305,448,ls), +(286,487,o), +(281,515,o), +(281,540,cs), +(281,573,o), +(295,596,o), +(320,596,cs), +(336,596,o), +(347,584,o), +(347,561,cs), +(347,523,o), +(325,485,o), +(281,458,c), +(322,370,l), +(425,402,o), +(493,485,o), +(493,581,cs), +(493,676,o), +(427,739,o), +(329,739,cs), +(207,739,o), +(128,654,o), +(128,531,cs), +(128,474,o), +(143,403,o), +(189,302,cs), +(251,165,ls), +(304,48,o), +(360,-7,o), +(458,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,-10,o), +(315,17,o), +(350,66,c), +(288,164,l), +(274,144,o), +(258,132,o), +(227,132,cs), +(194,132,o), +(172,155,o), +(172,195,cs), +(172,239,o), +(199,286,o), +(227,301,c), +(179,416,l), +(72,371,o), +(-1,264,o), +(-1,164,cs), +(-1,59,o), +(65,-10,o), +(167,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(460,180,o), +(492,223,o), +(511,265,c), +(559,263,l), +(591,393,l), +(430,393,l), +(422,357,l), +(412,324,o), +(395,289,o), +(373,253,c), +(428,142,l) +); +} +); +width = 606; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(671,-6,o), +(684,-4,o), +(695,0,c), +(704,38,l), +(693,33,o), +(679,31,o), +(665,31,cs), +(598,31,o), +(556,65,o), +(486,170,cs), +(356,366,ls), +(276,487,o), +(269,532,o), +(269,571,cs), +(269,655,o), +(322,706,o), +(397,706,cs), +(460,706,o), +(502,664,o), +(502,600,cs), +(502,511,o), +(436,458,o), +(309,407,c), +(326,381,l), +(465,435,o), +(538,505,o), +(538,601,cs), +(538,684,o), +(481,739,o), +(397,739,cs), +(302,739,o), +(233,670,o), +(233,572,cs), +(233,519,o), +(247,464,o), +(337,330,cs), +(460,146,ls), +(533,37,o), +(582,-6,o), +(656,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(355,-9,o), +(446,27,o), +(506,112,c), +(482,135,l), +(431,63,o), +(357,24,o), +(263,24,cs), +(172,24,o), +(110,72,o), +(110,166,cs), +(110,252,o), +(160,320,o), +(320,382,c), +(304,411,l), +(159,356,o), +(73,280,o), +(73,165,cs), +(73,58,o), +(147,-9,o), +(259,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(553,175,o), +(589,259,o), +(605,320,c), +(722,318,l), +(725,355,l), +(575,355,l), +(570,326,l), +(552,256,o), +(520,189,o), +(485,138,c), +(510,118,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(651,-6,o), +(665,-4,o), +(676,0,c), +(685,38,l), +(674,33,o), +(659,31,o), +(645,31,cs), +(578,31,o), +(534,65,o), +(463,170,cs), +(330,366,ls), +(248,487,o), +(240,532,o), +(240,572,cs), +(240,655,o), +(294,706,o), +(370,706,cs), +(434,706,o), +(478,664,o), +(478,599,cs), +(478,511,o), +(411,458,o), +(282,407,c), +(299,381,l), +(440,435,o), +(514,505,o), +(514,600,cs), +(514,684,o), +(455,739,o), +(370,739,cs), +(274,739,o), +(204,670,o), +(204,573,cs), +(204,522,o), +(217,467,o), +(311,330,cs), +(437,146,ls), +(510,40,o), +(559,-6,o), +(636,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(325,-9,o), +(416,27,o), +(476,112,c), +(452,135,l), +(401,63,o), +(327,24,o), +(233,24,cs), +(142,24,o), +(80,72,o), +(80,166,cs), +(80,252,o), +(130,320,o), +(290,382,c), +(274,411,l), +(129,356,o), +(43,280,o), +(43,165,cs), +(43,58,o), +(117,-9,o), +(229,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,175,o), +(559,259,o), +(575,320,c), +(692,318,l), +(695,355,l), +(545,355,l), +(540,326,l), +(522,256,o), +(490,189,o), +(455,138,c), +(480,118,l) +); +} +); +width = 778; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(592,-8,o), +(615,-6,o), +(640,-1,c), +(679,152,l), +(664,147,o), +(651,145,o), +(638,145,cs), +(604,145,o), +(561,156,o), +(506,232,cs), +(355,440,ls), +(330,474,o), +(315,507,o), +(315,536,cs), +(315,566,o), +(335,587,o), +(368,587,cs), +(394,587,o), +(411,569,o), +(411,543,cs), +(411,506,o), +(379,473,o), +(325,446,c), +(390,355,l), +(505,400,o), +(565,473,o), +(565,562,cs), +(565,664,o), +(496,739,o), +(374,739,cs), +(240,739,o), +(136,652,o), +(136,525,cs), +(136,469,o), +(150,408,o), +(227,302,cs), +(377,96,ls), +(439,11,o), +(499,-8,o), +(570,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,-10,o), +(423,34,o), +(465,111,c), +(364,186,l), +(338,156,o), +(307,143,o), +(267,143,cs), +(229,143,o), +(200,168,o), +(200,212,cs), +(200,256,o), +(233,283,o), +(278,297,c), +(202,399,l), +(93,367,o), +(16,288,o), +(16,178,cs), +(16,60,o), +(100,-10,o), +(224,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(558,179,o), +(591,220,o), +(614,256,c), +(690,253,l), +(685,398,l), +(517,398,l), +(513,366,l), +(493,325,o), +(468,293,o), +(433,245,c), +(520,143,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(597,-8,o), +(619,-6,o), +(644,-1,c), +(683,152,l), +(669,148,o), +(650,145,o), +(631,145,cs), +(584,145,o), +(560,162,o), +(509,232,cs), +(356,440,ls), +(330,475,o), +(316,509,o), +(316,537,cs), +(316,567,o), +(336,589,o), +(368,589,cs), +(395,589,o), +(413,570,o), +(413,543,cs), +(413,506,o), +(381,473,o), +(326,446,c), +(391,355,l), +(507,400,o), +(567,471,o), +(567,560,cs), +(567,663,o), +(491,739,o), +(367,739,cs), +(230,739,o), +(137,653,o), +(137,524,cs), +(137,469,o), +(151,408,o), +(229,302,cs), +(366,115,ls), +(432,25,o), +(483,-8,o), +(568,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,-10,o), +(423,34,o), +(466,115,c), +(362,195,l), +(337,157,o), +(306,142,o), +(268,142,cs), +(226,142,o), +(198,167,o), +(198,209,cs), +(198,256,o), +(231,283,o), +(276,297,c), +(200,399,l), +(91,367,o), +(14,288,o), +(14,178,cs), +(14,60,o), +(98,-10,o), +(222,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(556,179,o), +(589,220,o), +(612,256,c), +(688,253,l), +(683,398,l), +(515,398,l), +(511,366,l), +(491,325,o), +(468,293,o), +(431,245,c), +(518,143,l) +); +} +); +width = 741; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(661,-9,o), +(677,-8,o), +(682,-6,c), +(691,36,l), +(685,34,o), +(672,32,o), +(659,32,cs), +(581,32,o), +(534,78,o), +(453,183,cs), +(396,257,ls), +(252,444,o), +(233,514,o), +(233,567,cs), +(233,645,o), +(293,712,o), +(383,712,cs), +(458,712,o), +(503,667,o), +(503,604,cs), +(503,500,o), +(406,452,o), +(282,411,c), +(298,385,l), +(437,428,o), +(541,489,o), +(541,607,cs), +(541,689,o), +(479,745,o), +(385,745,cs), +(279,745,o), +(195,671,o), +(195,567,cs), +(195,507,o), +(220,423,o), +(363,237,cs), +(426,155,ls), +(506,51,o), +(558,-9,o), +(649,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,-9,o), +(396,23,o), +(466,103,c), +(445,131,l), +(389,59,o), +(310,25,o), +(215,25,cs), +(127,25,o), +(64,72,o), +(64,164,cs), +(64,268,o), +(138,338,o), +(271,380,c), +(254,407,l), +(127,366,o), +(25,287,o), +(25,161,cs), +(25,52,o), +(103,-9,o), +(212,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,175,o), +(564,251,o), +(586,318,c), +(702,315,l), +(703,356,l), +(553,356,l), +(549,324,l), +(528,265,o), +(506,214,o), +(461,151,c), +(482,124,l) +); +}, +{ +closed = 1; +nodes = ( +(1468,-7,o), +(1488,-6,o), +(1494,-2,c), +(1501,40,l), +(1495,38,o), +(1480,35,o), +(1463,35,cs), +(1390,35,o), +(1338,77,o), +(1257,175,cs), +(1198,246,ls), +(1059,414,o), +(1023,499,o), +(1023,565,cs), +(1023,649,o), +(1076,706,o), +(1168,706,cs), +(1245,706,o), +(1292,652,o), +(1292,587,cs), +(1292,477,o), +(1199,435,o), +(1080,395,c), +(1097,370,l), +(1230,410,o), +(1330,469,o), +(1330,591,cs), +(1330,674,o), +(1266,739,o), +(1169,739,cs), +(1060,739,o), +(985,668,o), +(985,564,cs), +(985,503,o), +(1012,410,o), +(1166,225,cs), +(1231,147,ls), +(1313,49,o), +(1369,-7,o), +(1454,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(1105,-10,o), +(1203,21,o), +(1272,104,c), +(1251,132,l), +(1196,58,o), +(1113,24,o), +(1016,26,cs), +(928,27,o), +(864,74,o), +(864,164,cs), +(864,267,o), +(942,332,o), +(1070,369,c), +(1053,396,l), +(926,358,o), +(825,283,o), +(825,162,cs), +(825,55,o), +(904,-7,o), +(1013,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(1327,175,o), +(1368,251,o), +(1390,318,c), +(1502,315,l), +(1503,356,l), +(1357,356,l), +(1353,324,l), +(1332,265,o), +(1310,214,o), +(1265,151,c), +(1286,124,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(668,-5,o), +(686,-4,o), +(692,0,c), +(699,39,l), +(693,37,o), +(678,34,o), +(661,34,cs), +(589,34,o), +(536,76,o), +(456,174,cs), +(398,245,ls), +(259,415,o), +(225,500,o), +(225,564,cs), +(225,649,o), +(279,707,o), +(372,707,cs), +(445,707,o), +(494,660,o), +(494,589,cs), +(494,483,o), +(398,441,o), +(277,401,c), +(294,375,l), +(428,415,o), +(531,474,o), +(531,589,cs), +(531,680,o), +(466,739,o), +(371,739,cs), +(263,739,o), +(188,668,o), +(188,563,cs), +(188,504,o), +(215,410,o), +(366,225,cs), +(424,154,ls), +(499,63,o), +(560,-5,o), +(652,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,-9,o), +(412,28,o), +(474,105,c), +(451,130,l), +(404,64,o), +(324,25,o), +(220,25,cs), +(130,25,o), +(64,75,o), +(64,169,cs), +(64,271,o), +(140,334,o), +(265,370,c), +(248,397,l), +(123,360,o), +(25,287,o), +(25,168,cs), +(25,55,o), +(108,-9,o), +(222,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(529,176,o), +(568,248,o), +(590,315,c), +(702,313,l), +(703,354,l), +(556,354,l), +(552,322,l), +(532,264,o), +(509,211,o), +(465,149,c), +(489,123,l) +); +} +); +width = 776; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(638,-12,o), +(682,-7,o), +(710,5,c), +(742,158,l), +(727,154,o), +(713,152,o), +(698,152,cs), +(657,152,o), +(614,164,o), +(555,232,cs), +(380,433,ls), +(353,464,o), +(339,489,o), +(339,519,cs), +(339,555,o), +(363,579,o), +(399,579,cs), +(425,579,o), +(443,561,o), +(443,534,cs), +(443,495,o), +(402,465,o), +(346,443,c), +(419,353,l), +(549,391,o), +(624,462,o), +(624,561,cs), +(624,662,o), +(547,739,o), +(412,739,cs), +(244,739,o), +(139,644,o), +(139,506,cs), +(139,438,o), +(165,372,o), +(260,263,cs), +(388,116,ls), +(471,21,o), +(530,-12,o), +(608,-12,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,-10,o), +(395,26,o), +(447,79,c), +(348,185,l), +(331,166,o), +(302,154,o), +(270,154,cs), +(236,154,o), +(213,177,o), +(213,211,cs), +(213,247,o), +(237,273,o), +(272,290,c), +(197,391,l), +(75,359,o), +(-6,277,o), +(-6,170,cs), +(-6,59,o), +(76,-10,o), +(197,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(606,199,o), +(632,228,o), +(658,258,c), +(741,258,l), +(750,400,l), +(565,400,l), +(556,368,l), +(530,328,o), +(506,294,o), +(489,281,c), +(575,175,l) +); +} +); +width = 784; +} +); +unicode = 38; +userData = { +KernOnName = ampersand; +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/aogonek.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/aogonek.glyph new file mode 100644 index 00000000..ef9bc50e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/aogonek.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = aogonek; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (149,0); +ref = ogonekcomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (246,0); +ref = ogonekcomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (391,0); +ref = ogonekcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (380,0); +ref = ogonekcomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (148,0); +ref = ogonekcomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (247,0); +ref = ogonekcomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (345,0); +ref = ogonekcomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (319,0); +ref = ogonekcomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (418,0); +ref = ogonekcomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (393,0); +ref = ogonekcomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (340,0); +ref = ogonekcomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (300,0); +ref = ogonekcomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (149,0); +ref = ogonekcomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (243,0); +ref = ogonekcomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (344,0); +ref = ogonekcomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (323,0); +ref = ogonekcomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (393,0); +ref = ogonekcomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (373,0); +ref = ogonekcomb; +} +); +width = 723; +} +); +unicode = 261; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/aogonek.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/aogonek.ss05.glyph new file mode 100644 index 00000000..0b1e29d3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/aogonek.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = aogonek.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (159,0); +ref = ogonekcomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (263,0); +ref = ogonekcomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (391,0); +ref = ogonekcomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (340,0); +ref = ogonekcomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (159,0); +ref = ogonekcomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (266,0); +ref = ogonekcomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (355,0); +ref = ogonekcomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (300,0); +ref = ogonekcomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (391,0); +ref = ogonekcomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (340,0); +ref = ogonekcomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (339,0); +ref = ogonekcomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (284,0); +ref = ogonekcomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (158,0); +ref = ogonekcomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (269,0); +ref = ogonekcomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (343,0); +ref = ogonekcomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (300,0); +ref = ogonekcomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (390,0); +ref = ogonekcomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (336,0); +ref = ogonekcomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/apple.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/apple.glyph new file mode 100644 index 00000000..bca87d6c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/apple.glyph @@ -0,0 +1,361 @@ +{ +color = 6; +glyphname = apple; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 866; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 865; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 866; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 866; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = .notdef; +} +); +width = 865; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = .notdef; +} +); +width = 866; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = .notdef; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 866; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = .notdef; +} +); +width = 846; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = .notdef; +} +); +width = 866; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = .notdef; +} +); +width = 866; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 853; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 844; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 885; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 886; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 885; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 886; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 885; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 886; +} +); +unicode = 63743; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/approxequal.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/approxequal.glyph new file mode 100644 index 00000000..f04b29e2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/approxequal.glyph @@ -0,0 +1,1181 @@ +{ +glyphname = approxequal; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(393,154,o), +(465,202,o), +(456,353,c), +(375,353,l), +(374,321,o), +(357,293,o), +(319,293,cs), +(258,293,o), +(223,356,o), +(146,356,cs), +(82,356,o), +(15,306,o), +(24,161,c), +(106,161,l), +(103,184,o), +(115,220,o), +(150,220,cs), +(201,220,o), +(240,154,o), +(330,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,374,o), +(465,422,o), +(456,573,c), +(375,573,l), +(374,541,o), +(357,513,o), +(319,513,cs), +(258,513,o), +(223,576,o), +(146,576,cs), +(82,576,o), +(15,526,o), +(24,381,c), +(106,381,l), +(103,404,o), +(115,440,o), +(150,440,cs), +(201,440,o), +(240,374,o), +(330,374,cs) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,217,o), +(394,243,o), +(389,317,c), +(359,317,l), +(360,274,o), +(342,253,o), +(311,253,cs), +(263,253,o), +(212,301,o), +(163,301,cs), +(131,301,o), +(86,284,o), +(92,205,c), +(123,205,l), +(120,241,o), +(134,266,o), +(161,266,cs), +(200,266,o), +(257,217,o), +(311,217,cs) +); +}, +{ +closed = 1; +nodes = ( +(361,424,o), +(394,455,o), +(389,523,c), +(359,523,l), +(360,481,o), +(342,460,o), +(311,460,cs), +(263,460,o), +(212,508,o), +(163,508,cs), +(131,508,o), +(86,490,o), +(92,411,c), +(123,411,l), +(120,448,o), +(134,473,o), +(161,473,cs), +(200,473,o), +(257,424,o), +(311,424,cs) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(500,218,o), +(538,253,o), +(534,320,c), +(502,320,l), +(503,276,o), +(481,256,o), +(445,256,cs), +(380,256,o), +(324,304,o), +(266,304,cs), +(217,304,o), +(183,270,o), +(188,202,c), +(220,202,l), +(216,243,o), +(234,266,o), +(266,266,cs), +(320,266,o), +(381,218,o), +(443,218,cs) +); +}, +{ +closed = 1; +nodes = ( +(502,418,o), +(538,455,o), +(534,520,c), +(502,520,l), +(503,476,o), +(481,456,o), +(445,456,cs), +(380,456,o), +(324,504,o), +(266,504,cs), +(216,504,o), +(183,469,o), +(188,402,c), +(220,402,l), +(216,444,o), +(234,465,o), +(266,465,cs), +(320,465,o), +(380,418,o), +(443,418,cs) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,129,o), +(629,177,o), +(618,351,c), +(516,351,l), +(515,324,o), +(497,293,o), +(452,293,cs), +(380,293,o), +(342,358,o), +(250,358,cs), +(163,358,o), +(91,291,o), +(102,141,c), +(204,141,l), +(201,162,o), +(216,199,o), +(257,199,cs), +(315,199,o), +(357,129,o), +(466,129,cs) +); +}, +{ +closed = 1; +nodes = ( +(537,373,o), +(629,421,o), +(618,595,c), +(516,595,l), +(515,568,o), +(497,537,o), +(452,537,cs), +(380,537,o), +(342,602,o), +(250,602,cs), +(163,602,o), +(91,535,o), +(102,385,c), +(204,385,l), +(201,406,o), +(216,443,o), +(257,443,cs), +(315,443,o), +(357,373,o), +(466,373,cs) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(336,217,o), +(374,243,o), +(369,317,c), +(339,317,l), +(340,274,o), +(322,253,o), +(291,253,cs), +(243,253,o), +(192,301,o), +(143,301,cs), +(111,301,o), +(66,284,o), +(72,205,c), +(103,205,l), +(100,241,o), +(114,266,o), +(141,266,cs), +(180,266,o), +(237,217,o), +(291,217,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,424,o), +(374,455,o), +(369,523,c), +(339,523,l), +(340,481,o), +(322,460,o), +(291,460,cs), +(243,460,o), +(192,508,o), +(143,508,cs), +(111,508,o), +(66,490,o), +(72,411,c), +(103,411,l), +(100,448,o), +(114,473,o), +(141,473,cs), +(180,473,o), +(237,424,o), +(291,424,cs) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(383,154,o), +(455,202,o), +(446,353,c), +(365,353,l), +(364,321,o), +(347,293,o), +(309,293,cs), +(248,293,o), +(213,356,o), +(136,356,cs), +(72,356,o), +(5,306,o), +(14,161,c), +(96,161,l), +(93,184,o), +(105,220,o), +(140,220,cs), +(191,220,o), +(230,154,o), +(320,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,374,o), +(455,422,o), +(446,573,c), +(365,573,l), +(364,541,o), +(347,513,o), +(309,513,cs), +(248,513,o), +(213,576,o), +(136,576,cs), +(72,576,o), +(5,526,o), +(14,381,c), +(96,381,l), +(93,404,o), +(105,440,o), +(140,440,cs), +(191,440,o), +(230,374,o), +(320,374,cs) +); +} +); +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(402,215,o), +(442,243,o), +(437,321,c), +(407,321,l), +(408,278,o), +(389,257,o), +(354,257,cs), +(302,257,o), +(244,305,o), +(191,305,cs), +(158,305,o), +(111,289,o), +(117,201,c), +(147,201,l), +(143,240,o), +(162,263,o), +(190,263,cs), +(232,263,o), +(296,215,o), +(353,215,cs) +); +}, +{ +closed = 1; +nodes = ( +(412,418,o), +(441,452,o), +(437,520,c), +(407,520,l), +(408,478,o), +(389,456,o), +(354,456,cs), +(302,456,o), +(244,504,o), +(190,504,cs), +(148,504,o), +(112,477,o), +(117,402,c), +(147,402,l), +(143,441,o), +(160,462,o), +(190,462,cs), +(232,462,o), +(295,418,o), +(353,418,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +76, +76 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +76, +76 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 552; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,143,o), +(522,205,o), +(513,346,c), +(423,346,l), +(422,314,o), +(403,286,o), +(362,286,cs), +(296,286,o), +(259,350,o), +(174,350,cs), +(105,350,o), +(31,299,o), +(41,151,c), +(131,151,l), +(129,173,o), +(141,210,o), +(180,210,cs), +(235,210,o), +(276,143,o), +(375,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(455,381,o), +(522,443,o), +(513,584,c), +(423,584,l), +(422,552,o), +(403,524,o), +(362,524,cs), +(296,524,o), +(259,588,o), +(174,588,cs), +(104,588,o), +(31,536,o), +(41,389,c), +(131,389,l), +(129,410,o), +(140,448,o), +(180,448,cs), +(235,448,o), +(276,381,o), +(375,381,cs) +); +} +); +width = 552; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(490,218,o), +(528,253,o), +(524,320,c), +(492,320,l), +(493,276,o), +(471,256,o), +(435,256,cs), +(370,256,o), +(314,304,o), +(256,304,cs), +(207,304,o), +(173,270,o), +(178,202,c), +(210,202,l), +(206,243,o), +(224,266,o), +(256,266,cs), +(310,266,o), +(371,218,o), +(433,218,cs) +); +}, +{ +closed = 1; +nodes = ( +(492,418,o), +(528,455,o), +(524,520,c), +(492,520,l), +(493,476,o), +(471,456,o), +(435,456,cs), +(370,456,o), +(314,504,o), +(256,504,cs), +(206,504,o), +(173,469,o), +(178,402,c), +(210,402,l), +(206,444,o), +(224,465,o), +(256,465,cs), +(310,465,o), +(370,418,o), +(433,418,cs) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(527,129,o), +(619,177,o), +(608,351,c), +(506,351,l), +(505,324,o), +(487,293,o), +(442,293,cs), +(370,293,o), +(332,358,o), +(240,358,cs), +(153,358,o), +(81,291,o), +(92,141,c), +(194,141,l), +(191,162,o), +(206,199,o), +(247,199,cs), +(305,199,o), +(347,129,o), +(456,129,cs) +); +}, +{ +closed = 1; +nodes = ( +(527,373,o), +(619,421,o), +(608,595,c), +(506,595,l), +(505,568,o), +(487,537,o), +(442,537,cs), +(370,537,o), +(332,602,o), +(240,602,cs), +(153,602,o), +(81,535,o), +(92,385,c), +(194,385,l), +(191,406,o), +(206,443,o), +(247,443,cs), +(305,443,o), +(347,373,o), +(456,373,cs) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(421,215,o), +(459,243,o), +(454,321,c), +(426,321,l), +(427,278,o), +(408,257,o), +(373,257,cs), +(323,257,o), +(265,305,o), +(214,305,cs), +(181,305,o), +(136,289,o), +(142,201,c), +(170,201,l), +(166,240,o), +(185,263,o), +(213,263,cs), +(253,263,o), +(317,215,o), +(372,215,cs) +); +}, +{ +closed = 1; +nodes = ( +(431,418,o), +(458,452,o), +(454,520,c), +(426,520,l), +(427,478,o), +(408,456,o), +(373,456,cs), +(323,456,o), +(265,504,o), +(213,504,cs), +(171,504,o), +(137,477,o), +(142,402,c), +(170,402,l), +(166,441,o), +(183,462,o), +(213,462,cs), +(253,462,o), +(316,418,o), +(372,418,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +76, +76 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +76, +76 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(464,143,o), +(530,205,o), +(521,346,c), +(432,346,l), +(431,314,o), +(413,286,o), +(373,286,cs), +(310,286,o), +(275,350,o), +(193,350,cs), +(126,350,o), +(53,299,o), +(63,151,c), +(152,151,l), +(150,173,o), +(162,210,o), +(199,210,cs), +(252,210,o), +(290,143,o), +(386,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(463,381,o), +(530,442,o), +(521,584,c), +(432,584,l), +(431,552,o), +(413,524,o), +(373,524,cs), +(310,524,o), +(275,588,o), +(193,588,cs), +(125,588,o), +(53,536,o), +(63,389,c), +(152,389,l), +(150,410,o), +(161,448,o), +(199,448,cs), +(252,448,o), +(290,381,o), +(386,381,cs) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,217,o), +(389,243,o), +(399,317,c), +(369,317,l), +(361,274,o), +(339,253,o), +(308,253,cs), +(260,253,o), +(220,301,o), +(172,301,cs), +(140,301,o), +(92,284,o), +(81,205,c), +(112,205,l), +(116,238,o), +(134,266,o), +(163,266,cs), +(201,266,o), +(247,217,o), +(301,217,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,424,o), +(433,455,o), +(442,523,c), +(412,523,l), +(405,481,o), +(381,460,o), +(352,460,cs), +(304,460,o), +(263,508,o), +(215,508,cs), +(184,508,o), +(135,490,o), +(124,411,c), +(155,411,l), +(160,448,o), +(179,473,o), +(206,473,cs), +(244,473,o), +(291,424,o), +(344,424,cs) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(369,162,o), +(449,204,o), +(468,336,c), +(388,336,l), +(381,308,o), +(358,284,o), +(321,284,cs), +(260,284,o), +(237,339,o), +(161,339,cs), +(99,339,o), +(22,295,o), +(5,168,c), +(86,168,l), +(88,192,o), +(109,220,o), +(140,220,cs), +(191,220,o), +(217,162,o), +(307,162,cs) +); +}, +{ +closed = 1; +nodes = ( +(415,382,o), +(495,424,o), +(513,556,c), +(433,556,l), +(427,530,o), +(407,504,o), +(367,504,cs), +(307,504,o), +(284,559,o), +(208,559,cs), +(145,559,o), +(68,515,o), +(51,388,c), +(132,388,l), +(133,408,o), +(152,440,o), +(187,440,cs), +(237,440,o), +(264,382,o), +(353,382,cs) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,215,o), +(460,243,o), +(471,321,c), +(442,321,l), +(434,278,o), +(410,257,o), +(376,257,cs), +(325,257,o), +(277,305,o), +(224,305,cs), +(181,305,o), +(140,277,o), +(130,201,c), +(159,201,l), +(164,240,o), +(187,263,o), +(215,263,cs), +(257,263,o), +(309,215,o), +(366,215,cs) +); +}, +{ +closed = 1; +nodes = ( +(467,418,o), +(503,452,o), +(513,520,c), +(483,520,l), +(476,478,o), +(451,456,o), +(418,456,cs), +(366,456,o), +(318,504,o), +(265,504,cs), +(223,504,o), +(183,477,o), +(171,402,c), +(201,402,l), +(205,441,o), +(228,462,o), +(257,462,cs), +(298,462,o), +(351,418,o), +(409,418,cs) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(426,147,o), +(506,189,o), +(526,331,c), +(446,331,l), +(440,306,o), +(421,279,o), +(380,279,cs), +(320,279,o), +(297,334,o), +(221,334,cs), +(158,334,o), +(81,290,o), +(62,153,c), +(143,153,l), +(145,177,o), +(166,205,o), +(197,205,cs), +(248,205,o), +(274,147,o), +(363,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(476,387,o), +(557,432,o), +(577,572,c), +(497,572,l), +(489,541,o), +(468,518,o), +(430,518,cs), +(369,518,o), +(347,575,o), +(271,575,cs), +(210,575,o), +(131,528,o), +(112,391,c), +(193,391,l), +(193,410,o), +(211,443,o), +(247,443,cs), +(298,443,o), +(324,387,o), +(413,387,cs) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(489,218,o), +(535,253,o), +(545,320,c), +(513,320,l), +(505,276,o), +(478,256,o), +(444,256,cs), +(379,256,o), +(334,304,o), +(276,304,cs), +(228,304,o), +(187,270,o), +(178,202,c), +(209,202,l), +(214,243,o), +(237,266,o), +(268,266,cs), +(321,266,o), +(372,218,o), +(434,218,cs) +); +}, +{ +closed = 1; +nodes = ( +(533,418,o), +(577,455,o), +(587,520,c), +(555,520,l), +(547,476,o), +(521,456,o), +(485,456,cs), +(421,456,o), +(375,504,o), +(318,504,cs), +(268,504,o), +(229,469,o), +(219,402,c), +(251,402,l), +(256,444,o), +(278,465,o), +(310,465,cs), +(363,465,o), +(413,418,o), +(475,418,cs) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(489,149,o), +(570,195,o), +(592,345,c), +(507,345,l), +(502,320,o), +(482,294,o), +(441,294,cs), +(382,294,o), +(360,349,o), +(283,349,cs), +(221,349,o), +(142,307,o), +(119,156,c), +(204,156,l), +(205,174,o), +(223,208,o), +(257,208,cs), +(308,208,o), +(333,149,o), +(423,149,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,372,o), +(616,418,o), +(639,569,c), +(555,569,l), +(548,541,o), +(526,517,o), +(489,517,cs), +(429,517,o), +(407,572,o), +(329,572,cs), +(268,572,o), +(188,530,o), +(165,379,c), +(250,379,l), +(251,397,o), +(270,430,o), +(304,430,cs), +(354,430,o), +(380,372,o), +(470,372,cs) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 8776; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/aring.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/aring.glyph new file mode 100644 index 00000000..6fbfe64a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/aring.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = aring; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (73,-156); +ref = ringcomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (81,-137); +ref = ringcomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (169,-155); +ref = ringcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (176,-129); +ref = ringcomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (72,-156); +ref = ringcomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (82,-137); +ref = ringcomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (167,-155); +ref = ringcomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (160,-134); +ref = ringcomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (196,-155); +ref = ringcomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (189,-129); +ref = ringcomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (164,-155); +ref = ringcomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (154,-134); +ref = ringcomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (36,-156); +ref = ringcomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (60,-137); +ref = ringcomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (145,-155); +ref = ringcomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (123,-134); +ref = ringcomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (146,-155); +ref = ringcomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (152,-134); +ref = ringcomb; +} +); +width = 723; +} +); +unicode = 229; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/aring.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/aring.ss05.glyph new file mode 100644 index 00000000..42ddab44 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/aring.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = aring.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (46,-156); +ref = ringcomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (92,-137); +ref = ringcomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (137,-155); +ref = ringcomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (141,-129); +ref = ringcomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (46,-156); +ref = ringcomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (95,-137); +ref = ringcomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (126,-155); +ref = ringcomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (145,-134); +ref = ringcomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (137,-155); +ref = ringcomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (141,-129); +ref = ringcomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (117,-155); +ref = ringcomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (139,-134); +ref = ringcomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (10,-156); +ref = ringcomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (25,-137); +ref = ringcomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (65,-155); +ref = ringcomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (67,-134); +ref = ringcomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (60,-155); +ref = ringcomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (87,-134); +ref = ringcomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/asciicircum.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/asciicircum.glyph new file mode 100644 index 00000000..661f7ad6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/asciicircum.glyph @@ -0,0 +1,407 @@ +{ +glyphname = asciicircum; +kernLeft = KO_asciicircum; +kernRight = KO_asciicircum; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,468,l), +(242,586,l), +(313,468,l), +(477,468,l), +(331,729,l), +(152,729,l), +(5,468,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,475,l), +(240,695,l), +(345,475,l), +(378,475,l), +(254,729,l), +(226,729,l), +(102,475,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,476,l), +(360,694,l), +(498,476,l), +(543,476,l), +(379,729,l), +(341,729,l), +(178,476,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,467,l), +(361,579,l), +(449,467,l), +(634,467,l), +(457,729,l), +(265,729,l), +(87,467,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(115,475,l), +(220,695,l), +(325,475,l), +(358,475,l), +(234,729,l), +(206,729,l), +(82,475,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,468,l), +(237,586,l), +(308,468,l), +(472,468,l), +(326,729,l), +(147,729,l), +(0,468,l) +); +} +); +width = 470; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,475,l), +(276,691,l), +(386,475,l), +(427,475,l), +(295,729,l), +(257,729,l), +(126,475,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 552; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,468,l), +(278,586,l), +(349,468,l), +(523,468,l), +(377,729,l), +(178,729,l), +(31,468,l) +); +} +); +width = 555; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,476,l), +(350,694,l), +(488,476,l), +(533,476,l), +(369,729,l), +(331,729,l), +(168,476,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,467,l), +(351,579,l), +(439,467,l), +(624,467,l), +(447,729,l), +(255,729,l), +(77,467,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(188,475,l), +(297,691,l), +(405,475,l), +(445,475,l), +(316,729,l), +(278,729,l), +(150,475,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(226,468,l), +(293,586,l), +(358,468,l), +(531,468,l), +(391,729,l), +(194,729,l), +(53,468,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,475,l), +(334,695,l), +(391,475,l), +(422,475,l), +(353,729,l), +(325,729,l), +(149,475,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,468,l), +(308,586,l), +(353,468,l), +(506,468,l), +(406,729,l), +(268,729,l), +(58,468,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,475,l), +(393,692,l), +(457,475,l), +(495,475,l), +(417,729,l), +(379,729,l), +(196,475,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,468,l), +(368,586,l), +(413,468,l), +(566,468,l), +(466,729,l), +(328,729,l), +(118,468,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,476,l), +(450,694,l), +(542,476,l), +(586,476,l), +(477,729,l), +(440,729,l), +(225,476,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,467,l), +(425,579,l), +(489,467,l), +(642,467,l), +(522,729,l), +(391,729,l), +(160,467,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 94; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/asciitilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/asciitilde.glyph new file mode 100644 index 00000000..3ec6aafc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/asciitilde.glyph @@ -0,0 +1,692 @@ +{ +glyphname = asciitilde; +kernRight = KO_asciitilde; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,271,l), +(103,294,o), +(115,330,o), +(150,330,cs), +(201,330,o), +(240,264,o), +(330,264,cs), +(393,264,o), +(465,312,o), +(456,463,c), +(375,463,l), +(374,431,o), +(357,403,o), +(319,403,cs), +(258,403,o), +(223,466,o), +(146,466,cs), +(82,466,o), +(15,416,o), +(24,271,c) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,305,l), +(86,341,o), +(100,366,o), +(127,366,cs), +(166,366,o), +(223,317,o), +(277,317,cs), +(322,317,o), +(360,343,o), +(355,417,c), +(325,417,l), +(326,374,o), +(308,353,o), +(277,353,cs), +(229,353,o), +(178,401,o), +(129,401,cs), +(97,401,o), +(52,384,o), +(58,305,c) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,302,l), +(133,343,o), +(151,366,o), +(183,366,cs), +(237,366,o), +(298,318,o), +(360,318,cs), +(417,318,o), +(455,353,o), +(451,420,c), +(419,420,l), +(420,376,o), +(398,356,o), +(362,356,cs), +(297,356,o), +(241,404,o), +(183,404,cs), +(134,404,o), +(100,370,o), +(105,302,c) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,263,l), +(202,284,o), +(217,321,o), +(258,321,cs), +(316,321,o), +(358,251,o), +(467,251,cs), +(538,251,o), +(630,299,o), +(619,473,c), +(517,473,l), +(516,446,o), +(498,415,o), +(453,415,cs), +(381,415,o), +(343,480,o), +(251,480,cs), +(164,480,o), +(92,413,o), +(103,263,c) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,305,l), +(66,341,o), +(80,366,o), +(107,366,cs), +(146,366,o), +(203,317,o), +(257,317,cs), +(302,317,o), +(340,343,o), +(335,417,c), +(305,417,l), +(306,374,o), +(288,353,o), +(257,353,cs), +(209,353,o), +(158,401,o), +(109,401,cs), +(77,401,o), +(32,384,o), +(38,305,c) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(96,271,l), +(93,294,o), +(105,330,o), +(140,330,cs), +(191,330,o), +(230,264,o), +(320,264,cs), +(383,264,o), +(455,312,o), +(446,463,c), +(365,463,l), +(364,431,o), +(347,403,o), +(309,403,cs), +(248,403,o), +(213,466,o), +(136,466,cs), +(72,466,o), +(5,416,o), +(14,271,c) +); +} +); +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,301,l), +(99,340,o), +(118,363,o), +(146,363,cs), +(188,363,o), +(252,315,o), +(309,315,cs), +(358,315,o), +(398,343,o), +(393,421,c), +(363,421,l), +(364,378,o), +(345,357,o), +(310,357,cs), +(258,357,o), +(200,405,o), +(147,405,cs), +(114,405,o), +(67,389,o), +(73,301,c) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 552; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,269,l), +(159,292,o), +(173,328,o), +(211,328,cs), +(266,328,o), +(307,261,o), +(406,261,cs), +(472,261,o), +(555,307,o), +(545,465,c), +(454,465,l), +(453,433,o), +(434,406,o), +(394,406,cs), +(327,406,o), +(290,469,o), +(205,469,cs), +(126,469,o), +(61,407,o), +(71,269,c) +); +} +); +width = 555; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(127,302,l), +(123,343,o), +(141,366,o), +(173,366,cs), +(227,366,o), +(288,318,o), +(350,318,cs), +(407,318,o), +(445,353,o), +(441,420,c), +(409,420,l), +(410,376,o), +(388,356,o), +(352,356,cs), +(287,356,o), +(231,404,o), +(173,404,cs), +(124,404,o), +(90,370,o), +(95,302,c) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,263,l), +(192,284,o), +(207,321,o), +(248,321,cs), +(306,321,o), +(348,251,o), +(457,251,cs), +(528,251,o), +(620,299,o), +(609,473,c), +(507,473,l), +(506,446,o), +(488,415,o), +(443,415,cs), +(371,415,o), +(333,480,o), +(241,480,cs), +(154,480,o), +(82,413,o), +(93,263,c) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(128,301,l), +(124,340,o), +(143,363,o), +(169,363,cs), +(211,363,o), +(273,315,o), +(330,315,cs), +(377,315,o), +(417,343,o), +(412,421,c), +(382,421,l), +(383,378,o), +(364,357,o), +(331,357,cs), +(279,357,o), +(223,405,o), +(170,405,cs), +(139,405,o), +(92,389,o), +(98,301,c) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(183,269,l), +(180,293,o), +(194,328,o), +(230,328,cs), +(283,328,o), +(321,261,o), +(417,261,cs), +(481,261,o), +(562,307,o), +(552,465,c), +(462,465,l), +(461,433,o), +(444,406,o), +(405,406,cs), +(341,406,o), +(306,469,o), +(224,469,cs), +(147,469,o), +(83,407,o), +(93,269,c) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(98,305,l), +(102,338,o), +(120,366,o), +(149,366,cs), +(187,366,o), +(233,317,o), +(286,317,cs), +(330,317,o), +(374,343,o), +(385,417,c), +(355,417,l), +(347,374,o), +(324,353,o), +(294,353,cs), +(246,353,o), +(206,401,o), +(158,401,cs), +(126,401,o), +(78,384,o), +(67,305,c) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(115,278,l), +(117,302,o), +(137,330,o), +(169,330,cs), +(220,330,o), +(246,272,o), +(335,272,cs), +(398,272,o), +(477,314,o), +(497,446,c), +(417,446,l), +(410,418,o), +(387,394,o), +(349,394,cs), +(289,394,o), +(266,449,o), +(190,449,cs), +(127,449,o), +(51,405,o), +(34,278,c) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,301,l), +(138,340,o), +(161,363,o), +(189,363,cs), +(231,363,o), +(283,315,o), +(340,315,cs), +(389,315,o), +(434,343,o), +(445,421,c), +(416,421,l), +(408,378,o), +(385,357,o), +(350,357,cs), +(299,357,o), +(251,405,o), +(198,405,cs), +(155,405,o), +(114,377,o), +(104,301,c) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,273,l), +(178,297,o), +(199,325,o), +(230,325,cs), +(281,325,o), +(307,267,o), +(397,267,cs), +(459,267,o), +(539,309,o), +(559,451,c), +(479,451,l), +(473,426,o), +(454,399,o), +(413,399,cs), +(353,399,o), +(330,454,o), +(254,454,cs), +(191,454,o), +(114,410,o), +(95,273,c) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,302,l), +(152,343,o), +(174,366,o), +(206,366,cs), +(259,366,o), +(310,318,o), +(372,318,cs), +(427,318,o), +(473,353,o), +(483,420,c), +(451,420,l), +(443,376,o), +(417,356,o), +(382,356,cs), +(317,356,o), +(272,404,o), +(214,404,cs), +(166,404,o), +(125,370,o), +(116,302,c) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,268,l), +(187,286,o), +(205,319,o), +(240,319,cs), +(290,319,o), +(317,260,o), +(406,260,cs), +(472,260,o), +(552,306,o), +(574,457,c), +(491,457,l), +(485,431,o), +(464,406,o), +(425,406,cs), +(365,406,o), +(343,461,o), +(266,461,cs), +(203,461,o), +(126,419,o), +(103,268,c) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 126; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/asterisk.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/asterisk.glyph new file mode 100644 index 00000000..bd5d3160 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/asterisk.glyph @@ -0,0 +1,752 @@ +{ +glyphname = asterisk; +kernLeft = KO_asterisk; +kernRight = KO_asterisk; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,471,l), +(163,510,l), +(149,565,l), +(192,525,l), +(226,506,l), +(258,563,l), +(225,582,l), +(169,600,l), +(225,617,l), +(258,636,l), +(226,693,l), +(192,674,l), +(149,634,l), +(163,690,l), +(163,729,l), +(97,729,l), +(97,690,l), +(111,634,l), +(68,674,l), +(34,693,l), +(2,636,l), +(35,617,l), +(91,600,l), +(35,582,l), +(2,563,l), +(34,506,l), +(68,525,l), +(111,565,l), +(97,510,l), +(97,471,l) +); +} +); +width = 260; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(142,482,l), +(142,535,l), +(134,596,l), +(184,560,l), +(230,533,l), +(243,556,l), +(197,582,l), +(144,606,l), +(197,631,l), +(242,656,l), +(230,678,l), +(184,653,l), +(134,618,l), +(142,678,l), +(142,729,l), +(116,729,l), +(116,678,l), +(124,618,l), +(74,653,l), +(29,678,l), +(16,656,l), +(61,631,l), +(115,606,l), +(61,582,l), +(15,556,l), +(29,533,l), +(74,560,l), +(124,596,l), +(116,535,l), +(116,482,l) +); +} +); +width = 258; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,444,l), +(161,504,l), +(152,575,l), +(211,533,l), +(264,502,l), +(278,528,l), +(225,559,l), +(164,587,l), +(225,616,l), +(277,644,l), +(264,670,l), +(211,641,l), +(152,601,l), +(161,670,l), +(161,729,l), +(131,729,l), +(131,670,l), +(140,601,l), +(84,641,l), +(30,670,l), +(16,644,l), +(68,616,l), +(130,587,l), +(68,559,l), +(15,528,l), +(30,502,l), +(84,533,l), +(140,575,l), +(131,504,l), +(131,444,l) +); +} +); +width = 293; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,407,l), +(204,455,l), +(185,523,l), +(238,473,l), +(280,450,l), +(321,524,l), +(281,547,l), +(211,568,l), +(281,589,l), +(321,612,l), +(280,685,l), +(238,662,l), +(185,612,l), +(204,682,l), +(204,729,l), +(117,729,l), +(117,682,l), +(136,612,l), +(84,662,l), +(41,685,l), +(0,612,l), +(40,589,l), +(110,568,l), +(40,547,l), +(0,524,l), +(41,450,l), +(84,473,l), +(136,523,l), +(117,455,l), +(117,407,l) +); +} +); +width = 321; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(132,482,l), +(132,535,l), +(124,596,l), +(174,560,l), +(220,533,l), +(233,556,l), +(187,582,l), +(134,606,l), +(187,631,l), +(232,656,l), +(220,678,l), +(174,653,l), +(124,618,l), +(132,678,l), +(132,729,l), +(106,729,l), +(106,678,l), +(114,618,l), +(64,653,l), +(19,678,l), +(6,656,l), +(51,631,l), +(105,606,l), +(51,582,l), +(5,556,l), +(19,533,l), +(64,560,l), +(114,596,l), +(106,535,l), +(106,482,l) +); +} +); +width = 238; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,471,l), +(158,510,l), +(144,565,l), +(187,525,l), +(221,506,l), +(253,563,l), +(220,582,l), +(164,600,l), +(220,617,l), +(253,636,l), +(221,693,l), +(187,674,l), +(144,634,l), +(158,690,l), +(158,729,l), +(92,729,l), +(92,690,l), +(106,634,l), +(63,674,l), +(29,693,l), +(-3,636,l), +(30,617,l), +(86,600,l), +(30,582,l), +(-3,563,l), +(29,506,l), +(63,525,l), +(106,565,l), +(92,510,l), +(92,471,l) +); +} +); +width = 250; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(145,453,l), +(145,512,l), +(137,580,l), +(193,540,l), +(244,510,l), +(258,535,l), +(207,565,l), +(148,592,l), +(207,619,l), +(257,647,l), +(244,672,l), +(193,644,l), +(137,605,l), +(145,672,l), +(145,729,l), +(116,729,l), +(116,672,l), +(125,605,l), +(70,644,l), +(19,672,l), +(5,647,l), +(55,619,l), +(115,592,l), +(55,565,l), +(4,535,l), +(19,510,l), +(70,540,l), +(125,580,l), +(116,512,l), +(116,453,l) +); +} +); +width = 262; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,444,l), +(173,487,l), +(157,548,l), +(204,504,l), +(242,483,l), +(278,546,l), +(241,567,l), +(179,586,l), +(241,605,l), +(278,626,l), +(242,689,l), +(204,668,l), +(157,624,l), +(173,686,l), +(173,729,l), +(99,729,l), +(99,686,l), +(115,624,l), +(68,668,l), +(30,689,l), +(-6,626,l), +(31,605,l), +(93,586,l), +(31,567,l), +(-6,546,l), +(30,483,l), +(68,504,l), +(115,548,l), +(99,487,l), +(99,444,l) +); +} +); +width = 272; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(156,444,l), +(156,504,l), +(147,575,l), +(206,533,l), +(259,502,l), +(273,528,l), +(220,559,l), +(159,587,l), +(220,616,l), +(272,644,l), +(259,670,l), +(206,641,l), +(147,601,l), +(156,670,l), +(156,729,l), +(126,729,l), +(126,670,l), +(135,601,l), +(79,641,l), +(25,670,l), +(11,644,l), +(63,616,l), +(125,587,l), +(63,559,l), +(10,528,l), +(25,502,l), +(79,533,l), +(135,575,l), +(126,504,l), +(126,444,l) +); +} +); +width = 283; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(199,407,l), +(199,455,l), +(180,523,l), +(233,473,l), +(275,450,l), +(316,524,l), +(276,547,l), +(206,568,l), +(276,589,l), +(316,612,l), +(275,685,l), +(233,662,l), +(180,612,l), +(199,682,l), +(199,729,l), +(112,729,l), +(112,682,l), +(131,612,l), +(79,662,l), +(36,685,l), +(-5,612,l), +(35,589,l), +(105,568,l), +(35,547,l), +(-5,524,l), +(36,450,l), +(79,473,l), +(131,523,l), +(112,455,l), +(112,407,l) +); +} +); +width = 311; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(169,453,l), +(169,512,l), +(161,580,l), +(217,540,l), +(266,510,l), +(280,535,l), +(231,565,l), +(172,592,l), +(231,619,l), +(279,647,l), +(266,672,l), +(217,644,l), +(161,605,l), +(169,672,l), +(169,729,l), +(142,729,l), +(142,672,l), +(150,605,l), +(96,644,l), +(47,672,l), +(33,647,l), +(81,619,l), +(141,592,l), +(81,565,l), +(32,535,l), +(47,510,l), +(96,540,l), +(150,580,l), +(142,512,l), +(142,453,l) +); +} +); +width = 311; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(182,444,l), +(182,487,l), +(166,548,l), +(211,504,l), +(246,483,l), +(281,546,l), +(247,567,l), +(188,586,l), +(247,605,l), +(281,626,l), +(246,689,l), +(211,668,l), +(166,624,l), +(182,686,l), +(182,729,l), +(109,729,l), +(109,686,l), +(125,624,l), +(80,668,l), +(46,689,l), +(10,626,l), +(45,605,l), +(103,586,l), +(45,567,l), +(10,546,l), +(46,483,l), +(80,504,l), +(125,548,l), +(109,487,l), +(109,444,l) +); +} +); +width = 290; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,453,l), +(218,512,l), +(213,580,l), +(267,540,l), +(316,510,l), +(331,535,l), +(281,565,l), +(224,592,l), +(283,619,l), +(334,647,l), +(322,672,l), +(270,644,l), +(214,605,l), +(224,672,l), +(226,729,l), +(197,729,l), +(195,672,l), +(202,605,l), +(149,644,l), +(99,672,l), +(84,647,l), +(133,619,l), +(191,592,l), +(131,565,l), +(79,535,l), +(93,510,l), +(145,540,l), +(201,580,l), +(190,512,l), +(187,453,l) +); +} +); +width = 277; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(245,444,l), +(246,487,l), +(233,548,l), +(278,504,l), +(315,483,l), +(352,546,l), +(317,567,l), +(256,586,l), +(318,605,l), +(355,626,l), +(322,689,l), +(283,668,l), +(235,624,l), +(253,686,l), +(255,729,l), +(182,729,l), +(180,686,l), +(194,624,l), +(149,668,l), +(112,689,l), +(74,626,l), +(110,605,l), +(171,586,l), +(109,567,l), +(71,546,l), +(105,483,l), +(143,504,l), +(191,548,l), +(173,487,l), +(172,444,l) +); +} +); +width = 295; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(213,453,l), +(223,512,l), +(226,580,l), +(275,540,l), +(321,510,l), +(338,535,l), +(293,565,l), +(239,592,l), +(303,619,l), +(357,647,l), +(348,672,l), +(293,644,l), +(231,605,l), +(250,672,l), +(260,729,l), +(231,729,l), +(221,672,l), +(219,605,l), +(171,644,l), +(125,672,l), +(108,647,l), +(152,619,l), +(207,592,l), +(143,565,l), +(87,535,l), +(98,510,l), +(154,540,l), +(214,580,l), +(194,512,l), +(184,453,l) +); +} +); +width = 309; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,444,l), +(236,487,l), +(231,548,l), +(269,504,l), +(303,483,l), +(350,546,l), +(317,567,l), +(259,586,l), +(324,605,l), +(364,626,l), +(339,689,l), +(298,668,l), +(244,624,l), +(270,686,l), +(278,729,l), +(205,729,l), +(197,686,l), +(202,624,l), +(163,668,l), +(129,689,l), +(83,626,l), +(116,605,l), +(174,586,l), +(109,567,l), +(69,546,l), +(93,483,l), +(134,504,l), +(189,548,l), +(163,487,l), +(155,444,l) +); +} +); +width = 303; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,453,l), +(208,512,l), +(213,580,l), +(261,540,l), +(306,510,l), +(324,535,l), +(279,565,l), +(226,592,l), +(291,619,l), +(346,647,l), +(338,672,l), +(282,644,l), +(218,605,l), +(240,672,l), +(252,729,l), +(223,729,l), +(211,672,l), +(206,605,l), +(160,644,l), +(115,672,l), +(97,647,l), +(140,619,l), +(194,592,l), +(128,565,l), +(73,535,l), +(83,510,l), +(139,540,l), +(201,580,l), +(179,512,l), +(167,453,l) +); +} +); +width = 283; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,443,l), +(226,485,l), +(222,546,l), +(259,501,l), +(292,481,l), +(342,547,l), +(311,567,l), +(253,586,l), +(318,604,l), +(358,625,l), +(334,690,l), +(294,670,l), +(238,625,l), +(268,687,l), +(276,729,l), +(200,729,l), +(191,687,l), +(195,625,l), +(158,670,l), +(125,690,l), +(75,625,l), +(106,604,l), +(164,586,l), +(99,567,l), +(59,547,l), +(82,481,l), +(123,501,l), +(178,546,l), +(151,485,l), +(142,443,l) +); +} +); +width = 287; +} +); +unicode = 42; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/at.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/at.glyph new file mode 100644 index 00000000..44da7876 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/at.glyph @@ -0,0 +1,1779 @@ +{ +glyphname = at; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,-101,o), +(524,-70,o), +(567,-19,c), +(524,68,l), +(490,31,o), +(444,6,o), +(376,6,cs), +(244,6,o), +(140,103,o), +(140,317,cs), +(140,493,o), +(208,631,o), +(356,631,cs), +(469,631,o), +(564,548,o), +(564,350,cs), +(564,270,o), +(550,209,o), +(514,209,cs), +(493,209,o), +(479,233,o), +(484,311,cs), +(496,504,l), +(425,504,l), +(413,458,l), +(406,458,l), +(393,492,o), +(370,514,o), +(327,514,cs), +(250,514,o), +(194,441,o), +(194,303,cs), +(194,195,o), +(227,108,o), +(314,108,cs), +(367,108,o), +(395,141,o), +(403,175,c), +(412,175,l), +(422,135,o), +(460,103,o), +(516,103,cs), +(613,103,o), +(678,208,o), +(678,366,cs), +(678,588,o), +(545,738,o), +(356,738,cs), +(159,738,o), +(19,571,o), +(19,310,cs), +(19,70,o), +(137,-101,o), +(354,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(318,209,o), +(305,238,o), +(305,307,cs), +(305,367,o), +(314,412,o), +(344,412,cs), +(370,412,o), +(382,378,o), +(387,310,c), +(382,248,o), +(371,209,o), +(342,209,cs) +); +} +); +width = 696; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-101,o), +(446,-80,o), +(488,-32,c), +(477,-8,l), +(441,-51,o), +(385,-76,o), +(321,-76,cs), +(160,-76,o), +(69,98,o), +(69,314,cs), +(69,552,o), +(169,713,o), +(325,713,cs), +(468,713,o), +(564,569,o), +(564,365,cs), +(564,229,o), +(525,129,o), +(468,129,cs), +(432,129,o), +(416,167,o), +(419,245,cs), +(430,504,l), +(408,504,l), +(402,408,l), +(399,408,l), +(388,478,o), +(356,516,o), +(316,516,cs), +(250,516,o), +(206,423,o), +(206,293,cs), +(206,163,o), +(253,106,o), +(305,106,cs), +(341,106,o), +(380,140,o), +(397,225,c), +(399,225,l), +(399,150,o), +(423,105,o), +(469,105,cs), +(543,105,o), +(591,217,o), +(591,367,cs), +(591,589,o), +(481,738,o), +(326,738,cs), +(155,738,o), +(41,566,o), +(41,312,cs), +(41,64,o), +(155,-101,o), +(322,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,132,o), +(232,186,o), +(232,296,cs), +(232,411,o), +(264,493,o), +(320,493,cs), +(366,493,o), +(396,433,o), +(398,323,c), +(395,211,o), +(361,132,o), +(308,132,cs) +); +} +); +width = 628; +}, +{ +guides = ( +{ +pos = (667,504); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(577,-101,o), +(690,-78,o), +(755,-30,c), +(740,-3,l), +(681,-45,o), +(592,-70,o), +(489,-70,cs), +(245,-70,o), +(83,68,o), +(83,314,cs), +(83,548,o), +(247,707,o), +(496,707,cs), +(736,707,o), +(903,568,o), +(903,365,cs), +(903,226,o), +(839,133,o), +(744,133,cs), +(680,133,o), +(641,165,o), +(649,268,cs), +(667,504,l), +(634,504,l), +(625,410,l), +(622,410,l), +(604,474,o), +(542,516,o), +(466,516,cs), +(351,516,o), +(274,427,o), +(274,297,cs), +(274,164,o), +(361,106,o), +(450,106,cs), +(519,106,o), +(590,141,o), +(618,223,c), +(621,223,l), +(621,152,o), +(665,105,o), +(744,105,cs), +(860,105,o), +(938,210,o), +(938,367,cs), +(938,589,o), +(749,738,o), +(498,738,cs), +(229,738,o), +(47,567,o), +(47,312,cs), +(47,64,o), +(210,-101,o), +(493,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,136,o), +(309,194,o), +(309,296,cs), +(309,412,o), +(368,489,o), +(473,489,cs), +(559,489,o), +(619,423,o), +(622,323,c), +(616,211,o), +(561,136,o), +(453,136,cs) +); +} +); +width = 982; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(607,-101,o), +(717,-59,o), +(765,-17,c), +(713,85,l), +(665,52,o), +(595,25,o), +(496,25,cs), +(297,25,o), +(165,120,o), +(165,321,cs), +(165,481,o), +(278,612,o), +(485,612,cs), +(665,612,o), +(785,509,o), +(785,356,cs), +(785,277,o), +(757,227,o), +(704,227,cs), +(668,227,o), +(645,252,o), +(653,333,cs), +(669,504,l), +(583,504,l), +(568,468,l), +(560,468,l), +(541,495,o), +(499,513,o), +(446,513,cs), +(333,513,o), +(258,427,o), +(258,298,cs), +(258,187,o), +(324,109,o), +(431,109,cs), +(488,109,o), +(536,131,o), +(556,164,c), +(565,164,l), +(588,130,o), +(639,105,o), +(699,105,cs), +(833,105,o), +(923,209,o), +(923,366,cs), +(923,589,o), +(746,738,o), +(480,738,cs), +(211,738,o), +(18,565,o), +(18,320,cs), +(18,67,o), +(187,-101,o), +(485,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(421,226,o), +(395,256,o), +(395,305,cs), +(395,356,o), +(415,394,o), +(466,394,cs), +(504,394,o), +(532,367,o), +(536,310,c), +(530,260,o), +(507,226,o), +(460,226,cs) +); +} +); +width = 938; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,-101,o), +(426,-80,o), +(468,-32,c), +(457,-8,l), +(421,-51,o), +(365,-76,o), +(301,-76,cs), +(140,-76,o), +(49,98,o), +(49,314,cs), +(49,552,o), +(149,713,o), +(305,713,cs), +(448,713,o), +(544,569,o), +(544,365,cs), +(544,229,o), +(505,129,o), +(448,129,cs), +(412,129,o), +(396,167,o), +(399,245,cs), +(410,504,l), +(388,504,l), +(382,408,l), +(379,408,l), +(368,478,o), +(336,516,o), +(296,516,cs), +(230,516,o), +(186,423,o), +(186,293,cs), +(186,163,o), +(233,106,o), +(285,106,cs), +(321,106,o), +(360,140,o), +(377,225,c), +(379,225,l), +(379,150,o), +(403,105,o), +(449,105,cs), +(523,105,o), +(571,217,o), +(571,367,cs), +(571,589,o), +(461,738,o), +(306,738,cs), +(135,738,o), +(21,566,o), +(21,312,cs), +(21,64,o), +(135,-101,o), +(302,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,132,o), +(212,186,o), +(212,296,cs), +(212,411,o), +(244,493,o), +(300,493,cs), +(346,493,o), +(376,433,o), +(378,323,c), +(375,211,o), +(341,132,o), +(288,132,cs) +); +} +); +width = 588; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-101,o), +(514,-70,o), +(557,-19,c), +(514,68,l), +(480,31,o), +(434,6,o), +(366,6,cs), +(234,6,o), +(130,103,o), +(130,317,cs), +(130,493,o), +(198,631,o), +(346,631,cs), +(459,631,o), +(554,548,o), +(554,350,cs), +(554,270,o), +(540,209,o), +(504,209,cs), +(483,209,o), +(469,233,o), +(474,311,cs), +(486,504,l), +(415,504,l), +(403,458,l), +(396,458,l), +(383,492,o), +(360,514,o), +(317,514,cs), +(240,514,o), +(184,441,o), +(184,303,cs), +(184,195,o), +(217,108,o), +(304,108,cs), +(357,108,o), +(385,141,o), +(393,175,c), +(402,175,l), +(412,135,o), +(450,103,o), +(506,103,cs), +(603,103,o), +(668,208,o), +(668,366,cs), +(668,588,o), +(535,738,o), +(346,738,cs), +(149,738,o), +(9,571,o), +(9,310,cs), +(9,70,o), +(127,-101,o), +(344,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,209,o), +(295,238,o), +(295,307,cs), +(295,367,o), +(304,412,o), +(334,412,cs), +(360,412,o), +(372,378,o), +(377,310,c), +(372,248,o), +(361,209,o), +(332,209,cs) +); +} +); +width = 676; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,-101,o), +(638,-79,o), +(698,-31,c), +(686,-4,l), +(632,-47,o), +(550,-72,o), +(456,-72,cs), +(218,-72,o), +(84,97,o), +(84,314,cs), +(84,549,o), +(233,709,o), +(462,709,cs), +(674,709,o), +(816,569,o), +(816,365,cs), +(816,229,o), +(756,133,o), +(672,133,cs), +(620,133,o), +(594,170,o), +(599,248,cs), +(616,504,l), +(585,504,l), +(577,410,l), +(574,410,l), +(558,479,o), +(509,516,o), +(450,516,cs), +(356,516,o), +(291,424,o), +(291,294,cs), +(291,164,o), +(361,106,o), +(435,106,cs), +(488,106,o), +(546,141,o), +(570,223,c), +(573,223,l), +(572,149,o), +(606,105,o), +(673,105,cs), +(781,105,o), +(850,217,o), +(850,367,cs), +(850,589,o), +(690,738,o), +(464,738,cs), +(216,738,o), +(49,567,o), +(49,312,cs), +(49,64,o), +(217,-101,o), +(459,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(369,136,o), +(325,189,o), +(325,296,cs), +(325,408,o), +(372,489,o), +(456,489,cs), +(526,489,o), +(571,431,o), +(574,323,c), +(569,213,o), +(517,136,o), +(438,136,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +44 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +50 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +26 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +37 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +53 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +47 +); +type = Stem; +} +); +}; +width = 895; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(546,-101,o), +(646,-63,o), +(693,-18,c), +(645,77,l), +(598,41,o), +(533,16,o), +(448,16,cs), +(268,16,o), +(148,115,o), +(148,325,cs), +(148,487,o), +(242,621,o), +(437,621,cs), +(587,621,o), +(708,538,o), +(708,357,cs), +(708,271,o), +(683,218,o), +(636,218,cs), +(604,218,o), +(584,244,o), +(590,318,cs), +(605,504,l), +(526,504,l), +(512,464,l), +(504,464,l), +(489,490,o), +(453,513,o), +(411,513,cs), +(306,513,o), +(236,439,o), +(236,298,cs), +(236,185,o), +(292,109,o), +(392,109,cs), +(450,109,o), +(486,137,o), +(501,169,c), +(510,169,l), +(531,130,o), +(577,102,o), +(637,102,cs), +(745,102,o), +(833,201,o), +(833,366,cs), +(833,589,o), +(665,738,o), +(433,738,cs), +(187,738,o), +(15,565,o), +(15,319,cs), +(15,67,o), +(167,-101,o), +(437,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,218,o), +(358,250,o), +(358,304,cs), +(358,363,o), +(376,403,o), +(422,403,cs), +(457,403,o), +(478,377,o), +(482,313,c), +(478,255,o), +(459,218,o), +(415,218,cs) +); +} +); +width = 845; +}, +{ +guides = ( +{ +pos = (657,504); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(567,-101,o), +(680,-78,o), +(745,-30,c), +(730,-3,l), +(671,-45,o), +(582,-70,o), +(479,-70,cs), +(235,-70,o), +(73,68,o), +(73,314,cs), +(73,548,o), +(237,707,o), +(486,707,cs), +(726,707,o), +(893,568,o), +(893,365,cs), +(893,226,o), +(829,133,o), +(734,133,cs), +(670,133,o), +(631,165,o), +(639,268,cs), +(657,504,l), +(624,504,l), +(615,410,l), +(612,410,l), +(594,474,o), +(532,516,o), +(456,516,cs), +(341,516,o), +(264,427,o), +(264,297,cs), +(264,164,o), +(351,106,o), +(440,106,cs), +(509,106,o), +(580,141,o), +(608,223,c), +(611,223,l), +(611,152,o), +(655,105,o), +(734,105,cs), +(850,105,o), +(928,210,o), +(928,367,cs), +(928,589,o), +(739,738,o), +(488,738,cs), +(219,738,o), +(37,567,o), +(37,312,cs), +(37,64,o), +(200,-101,o), +(483,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,136,o), +(299,194,o), +(299,296,cs), +(299,412,o), +(358,489,o), +(463,489,cs), +(549,489,o), +(609,423,o), +(612,323,c), +(606,211,o), +(551,136,o), +(443,136,cs) +); +} +); +width = 962; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(597,-101,o), +(707,-59,o), +(755,-17,c), +(703,85,l), +(655,52,o), +(585,25,o), +(486,25,cs), +(287,25,o), +(155,120,o), +(155,321,cs), +(155,481,o), +(268,612,o), +(475,612,cs), +(655,612,o), +(775,509,o), +(775,356,cs), +(775,277,o), +(747,227,o), +(694,227,cs), +(658,227,o), +(635,252,o), +(643,333,cs), +(659,504,l), +(573,504,l), +(558,468,l), +(550,468,l), +(531,495,o), +(489,513,o), +(436,513,cs), +(323,513,o), +(248,427,o), +(248,298,cs), +(248,187,o), +(314,109,o), +(421,109,cs), +(478,109,o), +(526,131,o), +(546,164,c), +(555,164,l), +(578,130,o), +(629,105,o), +(689,105,cs), +(823,105,o), +(913,209,o), +(913,366,cs), +(913,589,o), +(736,738,o), +(470,738,cs), +(201,738,o), +(8,565,o), +(8,320,cs), +(8,67,o), +(177,-101,o), +(475,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(411,226,o), +(385,256,o), +(385,305,cs), +(385,356,o), +(405,394,o), +(456,394,cs), +(494,394,o), +(522,367,o), +(526,310,c), +(520,260,o), +(497,226,o), +(450,226,cs) +); +} +); +width = 918; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(548,-101,o), +(647,-79,o), +(707,-31,c), +(695,-4,l), +(642,-47,o), +(561,-72,o), +(469,-72,cs), +(237,-72,o), +(105,97,o), +(105,314,cs), +(105,549,o), +(250,709,o), +(475,709,cs), +(683,709,o), +(823,569,o), +(823,365,cs), +(823,229,o), +(763,133,o), +(681,133,cs), +(631,133,o), +(605,170,o), +(610,248,cs), +(627,504,l), +(596,504,l), +(588,410,l), +(585,410,l), +(569,479,o), +(522,516,o), +(463,516,cs), +(371,516,o), +(308,424,o), +(308,294,cs), +(308,164,o), +(376,106,o), +(448,106,cs), +(501,106,o), +(557,141,o), +(581,223,c), +(584,223,l), +(583,149,o), +(617,105,o), +(682,105,cs), +(788,105,o), +(855,217,o), +(855,367,cs), +(855,589,o), +(699,738,o), +(477,738,cs), +(235,738,o), +(70,567,o), +(70,312,cs), +(70,64,o), +(236,-101,o), +(472,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(384,136,o), +(342,189,o), +(342,296,cs), +(342,408,o), +(387,489,o), +(469,489,cs), +(539,489,o), +(582,431,o), +(585,323,c), +(580,213,o), +(530,136,o), +(451,136,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +44 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +50 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +26 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +37 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +53 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +47 +); +type = Stem; +} +); +}; +width = 922; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(554,-101,o), +(652,-63,o), +(698,-18,c), +(650,77,l), +(606,42,o), +(543,16,o), +(458,16,cs), +(283,16,o), +(166,115,o), +(166,325,cs), +(166,487,o), +(257,621,o), +(447,621,cs), +(593,621,o), +(711,538,o), +(711,357,cs), +(711,271,o), +(687,218,o), +(642,218,cs), +(611,218,o), +(591,244,o), +(597,316,cs), +(612,504,l), +(534,504,l), +(520,464,l), +(512,464,l), +(497,490,o), +(462,513,o), +(422,513,cs), +(319,513,o), +(250,439,o), +(250,298,cs), +(250,185,o), +(305,109,o), +(403,109,cs), +(458,109,o), +(494,136,o), +(509,169,c), +(518,169,l), +(539,130,o), +(584,102,o), +(643,102,cs), +(748,102,o), +(835,202,o), +(835,366,cs), +(835,589,o), +(670,738,o), +(444,738,cs), +(203,738,o), +(35,565,o), +(35,319,cs), +(35,67,o), +(183,-101,o), +(447,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,218,o), +(371,251,o), +(371,304,cs), +(371,362,o), +(388,403,o), +(433,403,cs), +(466,403,o), +(486,377,o), +(490,313,c), +(486,255,o), +(468,218,o), +(426,218,cs) +); +} +); +width = 865; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,-101,o), +(379,-84,o), +(422,-46,c), +(416,-21,l), +(379,-54,o), +(325,-76,o), +(272,-76,cs), +(108,-76,o), +(30,73,o), +(85,337,cs), +(132,562,o), +(259,712,o), +(402,712,cs), +(553,712,o), +(628,580,o), +(578,345,cs), +(551,211,o), +(494,116,o), +(440,116,cs), +(394,116,o), +(395,172,o), +(411,236,cs), +(477,493,l), +(455,495,l), +(429,400,l), +(426,400,l), +(431,475,o), +(403,515,o), +(362,515,cs), +(298,515,o), +(240,429,o), +(214,301,cs), +(195,210,o), +(202,108,o), +(277,108,cs), +(311,108,o), +(352,139,o), +(387,218,c), +(389,218,l), +(374,151,o), +(382,92,o), +(438,92,cs), +(508,92,o), +(572,197,o), +(603,344,cs), +(654,580,o), +(574,737,o), +(405,737,cs), +(249,737,o), +(113,593,o), +(58,337,cs), +(3,73,o), +(85,-101,o), +(266,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(225,133,o), +(222,216,o), +(239,302,cs), +(262,415,o), +(308,492,o), +(362,492,cs), +(422,492,o), +(424,403,o), +(407,316,cs), +(383,210,o), +(334,133,o), +(285,133,cs) +); +} +); +width = 623; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,-102,o), +(453,-78,o), +(499,-37,c), +(474,54,l), +(438,24,o), +(395,4,o), +(340,4,cs), +(170,4,o), +(112,146,o), +(151,332,cs), +(187,503,o), +(274,630,o), +(408,630,cs), +(561,630,o), +(606,498,o), +(572,329,cs), +(556,256,o), +(531,195,o), +(497,195,cs), +(462,195,o), +(473,251,o), +(486,299,cs), +(538,490,l), +(469,497,l), +(447,452,l), +(441,452,l), +(434,490,o), +(414,515,o), +(364,515,cs), +(293,515,o), +(229,448,o), +(201,316,cs), +(179,206,o), +(192,111,o), +(289,111,cs), +(336,111,o), +(364,140,o), +(378,171,c), +(387,170,l), +(389,128,o), +(424,89,o), +(485,89,cs), +(574,89,o), +(655,185,o), +(687,338,cs), +(732,560,o), +(633,737,o), +(421,737,cs), +(241,737,o), +(84,585,o), +(33,340,cs), +(-20,91,o), +(69,-102,o), +(308,-102,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,210,o), +(299,258,o), +(310,308,cs), +(323,371,o), +(340,412,o), +(368,412,cs), +(402,412,o), +(397,358,o), +(389,306,c), +(374,247,o), +(355,210,o), +(328,210,cs) +); +} +); +width = 691; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(520,-98,o), +(609,-77,o), +(658,-40,c), +(644,-14,l), +(601,-46,o), +(525,-67,o), +(440,-67,cs), +(246,-67,o), +(118,65,o), +(118,274,cs), +(118,517,o), +(270,703,o), +(523,703,cs), +(713,703,o), +(837,580,o), +(837,392,cs), +(837,234,o), +(764,125,o), +(668,125,cs), +(612,125,o), +(584,168,o), +(611,278,cs), +(663,492,l), +(631,493,l), +(611,407,l), +(607,407,l), +(603,472,o), +(558,511,o), +(499,511,cs), +(400,511,o), +(312,400,o), +(312,257,cs), +(312,157,o), +(365,116,o), +(427,116,cs), +(486,116,o), +(542,150,o), +(572,221,c), +(576,221,l), +(568,142,o), +(601,96,o), +(667,96,cs), +(779,96,o), +(871,215,o), +(871,394,cs), +(871,598,o), +(731,734,o), +(524,734,cs), +(261,734,o), +(83,540,o), +(83,273,cs), +(83,47,o), +(228,-98,o), +(437,-98,cs) +); +}, +{ +closed = 1; +nodes = ( +(382,143,o), +(345,176,o), +(345,258,cs), +(345,378,o), +(416,484,o), +(503,484,cs), +(571,484,o), +(604,421,o), +(588,318,cs), +(571,213,o), +(510,143,o), +(436,143,cs) +); +} +); +width = 917; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,-98,o), +(597,-74,o), +(648,-37,c), +(623,45,l), +(573,13,o), +(503,-6,o), +(432,-6,cs), +(267,-6,o), +(154,92,o), +(154,270,cs), +(154,476,o), +(294,640,o), +(498,640,cs), +(655,640,o), +(757,549,o), +(757,387,cs), +(757,273,o), +(708,184,o), +(637,184,cs), +(586,184,o), +(581,230,o), +(596,289,cs), +(648,492,l), +(582,496,l), +(560,443,l), +(553,443,l), +(543,486,o), +(503,515,o), +(450,515,cs), +(350,515,o), +(259,403,o), +(259,264,cs), +(259,167,o), +(304,112,o), +(383,112,cs), +(438,112,o), +(482,139,o), +(504,178,c), +(511,178,l), +(518,128,o), +(560,91,o), +(629,91,cs), +(758,91,o), +(861,217,o), +(861,396,cs), +(861,600,o), +(718,735,o), +(501,735,cs), +(243,735,o), +(45,538,o), +(45,267,cs), +(45,41,o), +(195,-98,o), +(413,-98,cs) +); +}, +{ +closed = 1; +nodes = ( +(379,202,o), +(360,229,o), +(360,278,cs), +(360,361,o), +(403,424,o), +(457,424,cs), +(496,424,o), +(514,393,o), +(514,346,cs), +(514,268,o), +(471,202,o), +(415,202,cs) +); +} +); +width = 877; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(540,-101,o), +(626,-86,o), +(686,-52,c), +(677,-23,l), +(622,-53,o), +(551,-70,o), +(470,-70,cs), +(240,-70,o), +(91,58,o), +(91,251,cs), +(91,509,o), +(278,707,o), +(538,707,cs), +(769,707,o), +(920,586,o), +(920,402,cs), +(920,274,o), +(862,111,o), +(721,111,cs), +(650,111,o), +(619,163,o), +(645,255,cs), +(716,504,l), +(683,504,l), +(651,398,l), +(648,398,l), +(637,471,o), +(581,519,o), +(498,519,cs), +(372,519,o), +(279,396,o), +(279,265,cs), +(279,173,o), +(336,110,o), +(435,110,cs), +(506,110,o), +(568,146,o), +(606,212,c), +(609,212,l), +(594,145,o), +(637,83,o), +(719,83,cs), +(857,83,o), +(953,213,o), +(953,406,cs), +(953,606,o), +(783,738,o), +(543,738,cs), +(264,738,o), +(57,529,o), +(57,248,cs), +(57,38,o), +(216,-101,o), +(464,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(360,139,o), +(314,186,o), +(314,264,cs), +(314,380,o), +(386,491,o), +(501,491,cs), +(599,491,o), +(647,413,o), +(630,312,c), +(602,207,o), +(539,139,o), +(444,139,cs) +); +} +); +width = 979; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(553,-103,o), +(643,-75,o), +(695,-41,c), +(665,65,l), +(619,41,o), +(564,22,o), +(478,22,cs), +(292,22,o), +(171,114,o), +(171,283,cs), +(171,479,o), +(311,612,o), +(517,612,cs), +(679,612,o), +(796,527,o), +(796,381,cs), +(796,305,o), +(764,207,o), +(690,207,cs), +(641,207,o), +(638,252,o), +(658,317,cs), +(711,497,l), +(622,497,l), +(597,459,l), +(589,460,l), +(574,493,o), +(529,515,o), +(475,515,cs), +(349,515,o), +(259,417,o), +(259,274,cs), +(259,177,o), +(315,112,o), +(411,112,cs), +(462,112,o), +(506,129,o), +(529,160,c), +(538,159,l), +(556,115,o), +(609,85,o), +(681,85,cs), +(833,85,o), +(938,209,o), +(938,390,cs), +(938,600,o), +(776,738,o), +(528,738,cs), +(236,738,o), +(28,551,o), +(28,273,cs), +(28,43,o), +(191,-103,o), +(442,-103,cs) +); +}, +{ +closed = 1; +nodes = ( +(419,227,o), +(397,249,o), +(397,291,cs), +(397,336,o), +(425,394,o), +(483,394,cs), +(531,394,o), +(545,357,o), +(539,303,c), +(526,257,o), +(497,227,o), +(455,227,cs) +); +} +); +width = 937; +} +); +unicode = 64; +userData = { +KernOnName = at; +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/atilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/atilde.glyph new file mode 100644 index 00000000..5011f9aa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/atilde.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = atilde; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a; +}, +{ +pos = (36,-156); +ref = tildecomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a; +}, +{ +pos = (3,-138); +ref = tildecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a; +}, +{ +pos = (110,-155); +ref = tildecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a; +}, +{ +pos = (96,-129); +ref = tildecomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (35,-156); +ref = tildecomb; +} +); +width = 299; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-138); +ref = tildecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a; +}, +{ +pos = (111,-155); +ref = tildecomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = a; +}, +{ +pos = (71,-134); +ref = tildecomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (137,-155); +ref = tildecomb; +} +); +width = 647; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a; +}, +{ +pos = (109,-129); +ref = tildecomb; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (110,-155); +ref = tildecomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (65,-134); +ref = tildecomb; +} +); +width = 631; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a; +}, +{ +pos = (-1,-156); +ref = tildecomb; +} +); +width = 341; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a; +}, +{ +pos = (-20,-138); +ref = tildecomb; +} +); +width = 467; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a; +}, +{ +pos = (90,-155); +ref = tildecomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a; +}, +{ +pos = (34,-134); +ref = tildecomb; +} +); +width = 657; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a; +}, +{ +pos = (90,-155); +ref = tildecomb; +} +); +width = 638; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a; +}, +{ +pos = (78,-134); +ref = tildecomb; +} +); +width = 723; +} +); +unicode = 227; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/atilde.ss05.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/atilde.ss05.glyph new file mode 100644 index 00000000..151ab700 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/atilde.ss05.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = atilde.ss05; +kernLeft = KO_a.ss05; +kernRight = KO_aacute.ss05; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (9,-156); +ref = tildecomb; +} +); +width = 315; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (14,-138); +ref = tildecomb; +} +); +width = 471; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (78,-155); +ref = tildecomb; +} +); +width = 586; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (61,-129); +ref = tildecomb; +} +); +width = 653; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (9,-156); +ref = tildecomb; +} +); +width = 315; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (17,-138); +ref = tildecomb; +} +); +width = 457; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (70,-155); +ref = tildecomb; +} +); +width = 499; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = a.ss05; +}, +{ +alignment = -1; +pos = (56,-134); +ref = tildecomb; +} +); +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (78,-155); +ref = tildecomb; +} +); +width = 571; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (61,-129); +ref = tildecomb; +} +); +width = 638; +}, +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (63,-155); +ref = tildecomb; +} +); +width = 523; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (50,-134); +ref = tildecomb; +} +); +width = 572; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-27,-156); +ref = tildecomb; +} +); +width = 313; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-55,-138); +ref = tildecomb; +} +); +width = 476; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (10,-155); +ref = tildecomb; +} +); +width = 524; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-22,-134); +ref = tildecomb; +} +); +width = 599; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (4,-155); +ref = tildecomb; +} +); +width = 587; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (13,-134); +ref = tildecomb; +} +); +width = 646; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/b.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/b.glyph new file mode 100644 index 00000000..550f311b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/b.glyph @@ -0,0 +1,1649 @@ +{ +glyphname = b; +kernLeft = KO_i; +kernRight = KO_o; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = top; +pos = (236,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,l), +(222,331,ls), +(222,378,o), +(232,400,o), +(262,400,cs), +(287,400,o), +(299,383,o), +(299,331,cs), +(299,0,l), +(485,0,l), +(485,343,ls), +(485,500,o), +(442,554,o), +(350,554,cs), +(289,554,o), +(251,525,o), +(229,481,c), +(222,481,l), +(222,729,l), +(36,729,l), +(36,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,-10,o), +(454,51,o), +(454,271,cs), +(454,441,o), +(426,551,o), +(315,551,cs), +(267,551,o), +(228,525,o), +(210,477,c), +(204,477,l), +(204,729,l), +(27,729,l), +(27,0,l), +(201,0,l), +(204,64,l), +(210,64,l), +(229,15,o), +(262,-10,o), +(315,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(215,128,o), +(204,159,o), +(204,256,cs), +(204,285,ls), +(204,367,o), +(211,415,o), +(240,415,cs), +(267,415,o), +(278,380,o), +(278,271,cs), +(278,173,o), +(271,128,o), +(240,128,cs) +); +} +); +width = 470; +}, +{ +anchors = ( +{ +name = bottom; +pos = (169,0); +}, +{ +name = top; +pos = (169,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-9,o), +(476,93,o), +(476,258,cs), +(476,424,o), +(388,526,o), +(258,526,cs), +(161,526,o), +(90,474,o), +(63,398,c), +(60,398,l), +(60,729,l), +(23,729,l), +(23,0,l), +(58,0,l), +(60,119,l), +(63,119,l), +(90,43,o), +(161,-9,o), +(258,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,25,o), +(60,121,o), +(60,223,cs), +(60,294,ls), +(60,396,o), +(130,492,o), +(251,492,cs), +(363,492,o), +(438,407,o), +(438,258,cs), +(438,110,o), +(363,25,o), +(251,25,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,-10,o), +(299,53,o), +(299,258,cs), +(299,466,o), +(252,526,o), +(185,526,cs), +(133,526,o), +(107,491,o), +(91,439,c), +(89,439,l), +(89,729,l), +(60,729,l), +(60,0,l), +(88,0,l), +(89,77,l), +(91,77,l), +(108,19,o), +(138,-10,o), +(185,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,16,o), +(89,79,o), +(89,206,cs), +(89,309,ls), +(89,439,o), +(125,500,o), +(177,500,cs), +(250,500,o), +(269,414,o), +(269,258,cs), +(269,101,o), +(250,16,o), +(177,16,cs) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = bottom; +pos = (323,0); +}, +{ +name = top; +pos = (323,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-9,o), +(605,93,o), +(605,258,cs), +(605,420,o), +(500,526,o), +(343,526,cs), +(232,526,o), +(139,471,o), +(107,387,c), +(103,387,l), +(103,729,l), +(66,729,l), +(66,0,l), +(101,0,l), +(103,119,l), +(107,119,l), +(139,43,o), +(226,-9,o), +(343,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,25,o), +(103,121,o), +(103,223,cs), +(103,283,ls), +(103,391,o), +(190,492,o), +(339,492,cs), +(476,492,o), +(567,399,o), +(567,258,cs), +(567,110,o), +(475,25,o), +(339,25,cs) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (370,0); +}, +{ +name = top; +pos = (370,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(612,-8,o), +(717,101,o), +(717,273,cs), +(717,445,o), +(612,554,o), +(453,554,cs), +(376,554,o), +(306,526,o), +(271,475,c), +(264,475,l), +(264,729,l), +(43,729,l), +(43,0,l), +(252,0,l), +(259,71,l), +(266,71,l), +(298,24,o), +(358,-8,o), +(453,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,157,o), +(264,203,o), +(264,268,cs), +(264,279,ls), +(264,344,o), +(308,389,o), +(383,389,cs), +(451,389,o), +(496,349,o), +(496,273,cs), +(496,198,o), +(451,157,o), +(383,157,cs) +); +} +); +width = 729; +}, +{ +anchors = ( +{ +name = bottom; +pos = (146,0); +}, +{ +name = top; +pos = (146,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(389,-9,o), +(477,93,o), +(477,258,cs), +(477,424,o), +(389,526,o), +(259,526,cs), +(162,526,o), +(91,474,o), +(64,398,c), +(61,398,l), +(61,729,l), +(24,729,l), +(24,0,l), +(59,0,l), +(61,119,l), +(64,119,l), +(91,43,o), +(162,-9,o), +(259,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,25,o), +(61,121,o), +(61,223,cs), +(61,294,ls), +(61,396,o), +(131,492,o), +(252,492,cs), +(364,492,o), +(439,407,o), +(439,258,cs), +(439,110,o), +(364,25,o), +(252,25,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,-10,o), +(287,70,o), +(287,258,cs), +(287,446,o), +(250,526,o), +(169,526,cs), +(119,526,o), +(87,498,o), +(68,439,c), +(66,439,l), +(66,729,l), +(36,729,l), +(36,0,l), +(65,0,l), +(66,77,l), +(68,77,l), +(86,18,o), +(119,-10,o), +(169,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(107,17,o), +(66,96,o), +(66,206,cs), +(66,309,ls), +(66,419,o), +(107,499,o), +(161,499,cs), +(226,499,o), +(256,429,o), +(256,258,cs), +(256,87,o), +(226,17,o), +(161,17,cs) +); +} +); +width = 311; +}, +{ +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = top; +pos = (225,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,l), +(222,331,ls), +(222,378,o), +(232,400,o), +(262,400,cs), +(287,400,o), +(299,383,o), +(299,331,cs), +(299,0,l), +(485,0,l), +(485,343,ls), +(485,500,o), +(442,554,o), +(350,554,cs), +(289,554,o), +(251,525,o), +(229,481,c), +(222,481,l), +(222,729,l), +(36,729,l), +(36,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(443,51,o), +(443,271,cs), +(443,441,o), +(415,551,o), +(304,551,cs), +(256,551,o), +(217,525,o), +(194,468,c), +(193,468,l), +(193,729,l), +(16,729,l), +(16,0,l), +(190,0,l), +(194,64,l), +(195,64,l), +(217,15,o), +(251,-10,o), +(304,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,128,o), +(193,159,o), +(193,256,cs), +(193,285,ls), +(193,367,o), +(200,415,o), +(229,415,cs), +(256,415,o), +(267,380,o), +(267,271,cs), +(267,173,o), +(260,128,o), +(229,128,cs) +); +} +); +width = 450; +}, +{ +anchors = ( +{ +name = bottom; +pos = (265,0); +}, +{ +name = top; +pos = (265,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(449,-9,o), +(537,93,o), +(537,258,cs), +(537,424,o), +(449,526,o), +(319,526,cs), +(222,526,o), +(151,474,o), +(124,398,c), +(121,398,l), +(121,729,l), +(84,729,l), +(84,0,l), +(119,0,l), +(121,119,l), +(124,119,l), +(151,43,o), +(222,-9,o), +(319,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,25,o), +(121,121,o), +(121,223,cs), +(121,294,ls), +(121,396,o), +(191,492,o), +(312,492,cs), +(424,492,o), +(499,407,o), +(499,258,cs), +(499,110,o), +(424,25,o), +(312,25,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-9,o), +(511,92,o), +(511,258,cs), +(511,423,o), +(423,525,o), +(294,525,cs), +(196,525,o), +(125,473,o), +(98,396,c), +(96,396,l), +(96,729,l), +(59,729,l), +(59,0,l), +(93,0,l), +(95,119,l), +(98,119,l), +(125,42,o), +(196,-9,o), +(294,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,24,o), +(96,120,o), +(96,222,cs), +(96,293,ls), +(96,395,o), +(166,491,o), +(286,491,cs), +(398,491,o), +(473,405,o), +(473,258,cs), +(473,109,o), +(398,24,o), +(286,24,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +9 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 545; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (302,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(539,-10,o), +(626,93,o), +(626,272,cs), +(626,452,o), +(541,554,o), +(412,554,cs), +(338,554,o), +(274,519,o), +(253,466,c), +(227,466,l), +(245,296,l), +(245,366,o), +(281,401,o), +(335,401,cs), +(390,401,o), +(431,364,o), +(431,272,cs), +(431,181,o), +(390,143,o), +(335,143,cs), +(281,143,o), +(245,179,o), +(245,249,c), +(227,79,l), +(253,79,l), +(273,26,o), +(334,-10,o), +(407,-10,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,-10,o), +(602,95,o), +(602,272,cs), +(602,449,o), +(521,554,o), +(383,554,cs), +(309,554,o), +(246,513,o), +(222,448,c), +(221,448,l), +(221,729,l), +(30,729,l), +(30,0,l), +(212,0,l), +(219,93,l), +(220,93,l), +(248,26,o), +(310,-10,o), +(383,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,143,o), +(221,186,o), +(221,253,cs), +(221,291,ls), +(221,358,o), +(256,401,o), +(312,401,cs), +(382,401,o), +(407,349,o), +(407,272,cs), +(407,195,o), +(379,143,o), +(307,143,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +}; +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = top; +pos = (313,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,-9,o), +(623,93,o), +(623,258,cs), +(623,420,o), +(512,526,o), +(347,526,cs), +(228,526,o), +(129,470,o), +(94,382,c), +(93,382,l), +(93,729,l), +(56,729,l), +(56,0,l), +(91,0,l), +(93,126,l), +(94,126,l), +(131,43,o), +(229,-9,o), +(347,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,25,o), +(93,112,o), +(93,230,cs), +(93,278,ls), +(93,402,o), +(199,492,o), +(343,492,cs), +(488,492,o), +(585,399,o), +(585,258,cs), +(585,110,o), +(487,25,o), +(343,25,cs) +); +} +); +width = 651; +}, +{ +anchors = ( +{ +name = bottom; +pos = (357,0); +}, +{ +name = top; +pos = (357,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(599,-8,o), +(704,101,o), +(704,273,cs), +(704,445,o), +(599,554,o), +(440,554,cs), +(363,554,o), +(287,526,o), +(252,475,c), +(251,475,l), +(251,729,l), +(30,729,l), +(30,0,l), +(239,0,l), +(246,71,l), +(247,71,l), +(279,24,o), +(345,-8,o), +(440,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(295,157,o), +(251,203,o), +(251,268,cs), +(251,279,ls), +(251,344,o), +(295,389,o), +(370,389,cs), +(438,389,o), +(483,349,o), +(483,273,cs), +(483,198,o), +(438,157,o), +(370,157,cs) +); +} +); +width = 722; +}, +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +}, +{ +name = top; +pos = (283,759); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(444,-9,o), +(532,93,o), +(532,258,cs), +(532,424,o), +(444,526,o), +(314,526,cs), +(217,526,o), +(146,474,o), +(119,398,c), +(116,398,l), +(116,729,l), +(79,729,l), +(79,0,l), +(114,0,l), +(116,119,l), +(119,119,l), +(146,43,o), +(217,-9,o), +(314,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,25,o), +(116,121,o), +(116,223,cs), +(116,294,ls), +(116,396,o), +(186,492,o), +(307,492,cs), +(419,492,o), +(494,407,o), +(494,258,cs), +(494,110,o), +(419,25,o), +(307,25,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-9,o), +(513,92,o), +(513,258,cs), +(513,423,o), +(430,525,o), +(308,525,cs), +(216,525,o), +(150,473,o), +(124,396,c), +(122,396,l), +(122,759,l), +(85,759,l), +(85,0,l), +(119,0,l), +(121,119,l), +(124,119,l), +(150,42,o), +(216,-9,o), +(308,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(187,24,o), +(122,120,o), +(122,222,cs), +(122,293,ls), +(122,395,o), +(187,491,o), +(300,491,cs), +(405,491,o), +(475,405,o), +(475,258,cs), +(475,109,o), +(405,24,o), +(300,24,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +9 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (317,759); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(539,-10,o), +(626,93,o), +(626,272,cs), +(626,452,o), +(541,554,o), +(412,554,cs), +(338,554,o), +(274,519,o), +(253,466,c), +(227,466,l), +(245,296,l), +(245,366,o), +(281,401,o), +(335,401,cs), +(390,401,o), +(431,364,o), +(431,272,cs), +(431,181,o), +(390,143,o), +(335,143,cs), +(281,143,o), +(245,179,o), +(245,249,c), +(227,79,l), +(253,79,l), +(273,26,o), +(334,-10,o), +(407,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(520,-10,o), +(601,93,o), +(601,272,cs), +(601,451,o), +(520,554,o), +(397,554,cs), +(330,554,o), +(277,517,o), +(260,465,c), +(248,465,l), +(249,759,l), +(60,759,l), +(60,0,l), +(241,0,l), +(246,79,l), +(259,79,l), +(277,27,o), +(330,-10,o), +(397,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(275,148,o), +(249,187,o), +(249,259,cs), +(249,285,ls), +(249,357,o), +(276,397,o), +(327,397,cs), +(387,397,o), +(408,347,o), +(408,272,cs), +(408,198,o), +(384,148,o), +(322,148,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +}; +width = 635; +}, +{ +anchors = ( +{ +name = bottom; +pos = (126,0); +}, +{ +name = top; +pos = (277,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,-9,o), +(258,67,o), +(297,255,cs), +(332,419,o), +(322,526,o), +(231,526,cs), +(186,526,o), +(152,494,o), +(129,446,c), +(128,446,l), +(187,729,l), +(158,729,l), +(7,0,l), +(35,0,l), +(53,85,l), +(55,85,l), +(60,25,o), +(82,-9,o), +(137,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(61,18,o), +(60,116,o), +(80,213,cs), +(101,316,ls), +(126,439,o), +(172,500,o), +(222,500,cs), +(306,500,o), +(294,385,o), +(267,256,cs), +(236,103,o), +(200,18,o), +(132,18,cs) +); +} +); +width = 342; +}, +{ +anchors = ( +{ +name = bottom; +pos = (189,0); +}, +{ +name = top; +pos = (340,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,-10,o), +(409,63,o), +(450,258,cs), +(484,422,o), +(487,551,o), +(363,551,cs), +(317,551,o), +(281,528,o), +(255,484,c), +(248,484,l), +(299,729,l), +(122,729,l), +(-30,0,l), +(144,0,l), +(162,72,l), +(167,72,l), +(176,20,o), +(207,-10,o), +(264,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(178,133,o), +(185,182,o), +(202,264,cs), +(209,298,ls), +(228,391,o), +(243,419,o), +(269,419,cs), +(303,419,o), +(296,367,o), +(277,274,cs), +(257,175,o), +(241,133,o), +(214,133,cs) +); +} +); +width = 469; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (395,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(420,-9,o), +(532,130,o), +(532,320,cs), +(532,447,o), +(458,527,o), +(351,527,cs), +(270,527,o), +(196,483,o), +(155,414,c), +(153,414,l), +(219,729,l), +(183,729,l), +(31,0,l), +(64,0,l), +(94,134,l), +(96,134,l), +(108,52,o), +(172,-9,o), +(271,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,25,o), +(90,110,o), +(121,258,cs), +(133,315,ls), +(156,422,o), +(239,494,o), +(342,494,cs), +(434,494,o), +(494,430,o), +(494,317,cs), +(494,148,o), +(397,25,o), +(269,25,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(428,-9,o), +(532,112,o), +(532,316,cs), +(532,443,o), +(458,527,o), +(347,527,cs), +(269,527,o), +(197,491,o), +(155,414,c), +(154,414,l), +(219,729,l), +(183,729,l), +(31,0,l), +(64,0,l), +(94,126,l), +(98,126,l), +(118,45,o), +(183,-9,o), +(274,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,25,o), +(90,118,o), +(119,258,cs), +(131,315,ls), +(154,422,o), +(231,493,o), +(340,493,cs), +(437,493,o), +(492,421,o), +(492,312,cs), +(492,142,o), +(411,25,o), +(273,25,cs) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (32,22); +}, +{ +name = top; +pos = (395,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(521,-10,o), +(612,113,o), +(631,268,cs), +(652,439,o), +(579,554,o), +(448,554,cs), +(381,554,o), +(321,524,o), +(295,477,c), +(288,478,l), +(340,729,l), +(149,729,l), +(-2,0,l), +(180,0,l), +(207,87,l), +(213,87,l), +(231,29,o), +(295,-10,o), +(365,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,143,o), +(231,193,o), +(243,257,cs), +(252,303,ls), +(263,363,o), +(295,401,o), +(353,401,cs), +(413,401,o), +(445,351,o), +(432,263,cs), +(421,191,o), +(380,143,o), +(319,143,cs) +); +} +); +}; +guides = ( +{ +angle = 78.3; +pos = (-250,205); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(518,-10,o), +(608,113,o), +(627,268,cs), +(648,439,o), +(576,554,o), +(448,554,cs), +(381,554,o), +(321,524,o), +(295,477,c), +(288,478,l), +(340,729,l), +(149,729,l), +(-2,0,l), +(180,0,l), +(207,87,l), +(213,87,l), +(231,29,o), +(295,-10,o), +(365,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,143,o), +(228,193,o), +(242,257,cs), +(252,303,ls), +(264,362,o), +(295,401,o), +(353,401,cs), +(413,401,o), +(445,351,o), +(432,263,cs), +(421,191,o), +(380,143,o), +(319,143,cs) +); +} +); +width = 656; +}, +{ +anchors = ( +{ +name = bottom; +pos = (278,0); +}, +{ +name = top; +pos = (429,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-10,o), +(604,124,o), +(604,307,cs), +(604,442,o), +(512,527,o), +(377,527,cs), +(273,527,o), +(185,480,o), +(136,408,c), +(133,408,l), +(200,729,l), +(163,729,l), +(12,0,l), +(43,0,l), +(77,147,l), +(80,147,l), +(95,54,o), +(183,-10,o), +(301,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(154,24,o), +(75,123,o), +(105,270,cs), +(111,300,ls), +(133,415,o), +(238,493,o), +(368,493,cs), +(490,493,o), +(567,420,o), +(567,303,cs), +(567,157,o), +(467,24,o), +(305,24,cs) +); +} +); +width = 637; +}, +{ +anchors = ( +{ +name = bottom; +pos = (322,0); +}, +{ +name = top; +pos = (473,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(592,-10,o), +(711,119,o), +(711,314,cs), +(711,459,o), +(618,554,o), +(475,554,cs), +(403,554,o), +(351,530,o), +(316,492,c), +(309,492,l), +(358,729,l), +(139,729,l), +(-13,0,l), +(202,0,l), +(229,87,l), +(237,87,l), +(260,25,o), +(339,-10,o), +(420,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(295,157,o), +(255,209,o), +(269,280,cs), +(272,296,ls), +(284,353,o), +(321,390,o), +(389,390,cs), +(447,390,o), +(489,354,o), +(489,294,cs), +(489,212,o), +(441,157,o), +(369,157,cs) +); +} +); +width = 724; +} +); +metricLeft = l; +unicode = 98; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/backslash.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/backslash.glyph new file mode 100644 index 00000000..6abe787d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/backslash.glyph @@ -0,0 +1,350 @@ +{ +glyphname = backslash; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,-82,l), +(161,729,l), +(-2,729,l), +(207,-82,l) +); +} +); +width = 366; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,-82,l), +(12,729,l), +(-17,729,l), +(188,-82,l) +); +} +); +width = 200; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-81,l), +(25,729,l), +(-11,729,l), +(398,-81,l) +); +} +); +width = 426; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,-82,l), +(187,729,l), +(-24,729,l), +(322,-82,l) +); +} +); +width = 507; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-82,l), +(4,729,l), +(-25,729,l), +(180,-82,l) +); +} +); +width = 184; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,-82,l), +(156,729,l), +(-7,729,l), +(202,-82,l) +); +} +); +width = 356; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-81,l), +(15,729,l), +(-21,729,l), +(303,-81,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 321; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,-82,l), +(160,729,l), +(-23,729,l), +(266,-82,l) +); +} +); +width = 424; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,-81,l), +(20,729,l), +(-16,729,l), +(393,-81,l) +); +} +); +width = 416; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(526,-82,l), +(182,729,l), +(-29,729,l), +(317,-82,l) +); +} +); +width = 497; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(354,-81,l), +(35,729,l), +(-1,729,l), +(317,-81,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 352; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-82,l), +(169,729,l), +(-12,729,l), +(264,-82,l) +); +} +); +width = 431; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,-82,l), +(108,729,l), +(81,729,l), +(113,-82,l) +); +} +); +width = 193; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,-82,l), +(250,729,l), +(93,729,l), +(129,-82,l) +); +} +); +width = 355; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,-81,l), +(127,729,l), +(93,729,l), +(245,-81,l) +); +} +); +width = 348; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,-82,l), +(258,729,l), +(84,729,l), +(200,-82,l) +); +} +); +width = 433; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,-81,l), +(118,729,l), +(86,729,l), +(322,-81,l) +); +} +); +width = 416; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,-82,l), +(269,729,l), +(71,729,l), +(242,-82,l) +); +} +); +width = 488; +} +); +unicode = 92; +userData = { +KernOnSpecialSpacing = { +L = slash; +R = slash; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/baht.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/baht.glyph new file mode 100644 index 00000000..973ce51b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/baht.glyph @@ -0,0 +1,1671 @@ +{ +color = 6; +glyphname = baht; +layers = ( +{ +background = { +anchors = ( +{ +name = bottom; +pos = (56,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(37,-85,l), +(37,12,l), +(9,12,l), +(9,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(37,713,l), +(37,815,l), +(9,815,l), +(9,713,l) +); +}, +{ +closed = 1; +nodes = ( +(27,0,ls), +(146,0,o), +(191,81,o), +(191,200,cs), +(191,279,o), +(161,355,o), +(96,374,c), +(96,376,l), +(142,392,o), +(178,456,o), +(178,543,cs), +(178,670,o), +(126,729,o), +(28,729,cs), +(-79,729,l), +(-79,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-48,359,l), +(38,359,ls), +(113,359,o), +(157,299,o), +(157,201,cs), +(157,77,o), +(113,29,o), +(27,29,cs), +(-48,29,l) +); +}, +{ +closed = 1; +nodes = ( +(-48,700,l), +(27,700,ls), +(115,700,o), +(147,635,o), +(147,539,cs), +(147,449,o), +(107,389,o), +(37,389,cs), +(-48,389,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (126,0); +ref = _baht.bar; +} +); +width = 397; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (180,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(173,-85,l), +(173,90,l), +(93,90,l), +(93,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(173,689,l), +(173,815,l), +(94,815,l), +(94,689,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,ls), +(309,0,o), +(392,70,o), +(392,206,cs), +(392,296,o), +(359,360,o), +(296,381,c), +(296,387,l), +(345,404,o), +(377,465,o), +(377,537,cs), +(377,654,o), +(325,729,o), +(183,729,cs), +(-32,729,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(147,309,l), +(164,309,ls), +(195,309,o), +(215,285,o), +(215,225,cs), +(215,172,o), +(202,141,o), +(163,141,cs), +(147,141,l) +); +}, +{ +closed = 1; +nodes = ( +(147,591,l), +(164,591,ls), +(194,591,o), +(210,568,o), +(210,513,cs), +(210,465,o), +(199,433,o), +(164,433,cs), +(147,433,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (119,0); +ref = _baht.bar; +} +); +width = 476; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (212,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(171,-85,l), +(171,22,l), +(139,22,l), +(139,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(171,714,l), +(171,814,l), +(139,814,l), +(139,714,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,ls), +(418,0,o), +(509,78,o), +(509,200,cs), +(509,285,o), +(460,356,o), +(363,374,c), +(363,377,l), +(451,397,o), +(490,464,o), +(490,543,cs), +(490,654,o), +(411,729,o), +(276,729,cs), +(-85,729,l), +(-85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-47,356,l), +(293,356,ls), +(405,356,o), +(469,298,o), +(469,202,cs), +(469,104,o), +(403,36,o), +(275,36,cs), +(-47,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-47,694,l), +(275,694,ls), +(382,694,o), +(452,635,o), +(452,538,cs), +(452,450,o), +(396,391,o), +(291,391,cs), +(-47,391,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (269,0); +ref = _baht.bar; +} +); +width = 729; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (295,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(334,-85,l), +(334,90,l), +(173,90,l), +(173,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(334,689,l), +(334,815,l), +(174,815,l), +(174,689,l) +); +}, +{ +closed = 1; +nodes = ( +(342,0,ls), +(553,0,o), +(637,86,o), +(637,206,cs), +(637,291,o), +(587,356,o), +(498,376,c), +(498,385,l), +(570,406,o), +(615,465,o), +(615,538,cs), +(615,667,o), +(522,729,o), +(355,729,cs), +(-48,729,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,298,l), +(296,298,ls), +(362,298,o), +(395,279,o), +(395,228,cs), +(395,184,o), +(370,155,o), +(297,155,cs), +(180,155,l) +); +}, +{ +closed = 1; +nodes = ( +(180,573,l), +(287,573,ls), +(354,573,o), +(373,549,o), +(373,511,cs), +(373,472,o), +(350,447,o), +(286,447,cs), +(180,447,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (236,0); +ref = _baht.bar; +} +); +width = 760; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (56,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(37,-85,l), +(37,12,l), +(9,12,l), +(9,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(37,713,l), +(37,815,l), +(9,815,l), +(9,713,l) +); +}, +{ +closed = 1; +nodes = ( +(27,0,ls), +(146,0,o), +(191,81,o), +(191,200,cs), +(191,279,o), +(161,355,o), +(96,374,c), +(96,376,l), +(142,392,o), +(178,456,o), +(178,543,cs), +(178,670,o), +(126,729,o), +(28,729,cs), +(-79,729,l), +(-79,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-48,359,l), +(38,359,ls), +(113,359,o), +(157,299,o), +(157,201,cs), +(157,77,o), +(113,29,o), +(27,29,cs), +(-48,29,l) +); +}, +{ +closed = 1; +nodes = ( +(-48,700,l), +(27,700,ls), +(115,700,o), +(147,635,o), +(147,539,cs), +(147,449,o), +(107,389,o), +(37,389,cs), +(-48,389,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = _B.currency; +}, +{ +alignment = -1; +pos = (126,0); +ref = _baht.bar; +} +); +width = 397; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (180,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(173,-85,l), +(173,90,l), +(93,90,l), +(93,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(173,689,l), +(173,815,l), +(94,815,l), +(94,689,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,ls), +(309,0,o), +(392,70,o), +(392,206,cs), +(392,296,o), +(359,360,o), +(296,381,c), +(296,387,l), +(345,404,o), +(377,465,o), +(377,537,cs), +(377,654,o), +(325,729,o), +(183,729,cs), +(-32,729,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(147,309,l), +(164,309,ls), +(195,309,o), +(215,285,o), +(215,225,cs), +(215,172,o), +(202,141,o), +(163,141,cs), +(147,141,l) +); +}, +{ +closed = 1; +nodes = ( +(147,591,l), +(164,591,ls), +(194,591,o), +(210,568,o), +(210,513,cs), +(210,465,o), +(199,433,o), +(164,433,cs), +(147,433,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = _B.currency; +}, +{ +alignment = -1; +pos = (119,0); +ref = _baht.bar; +} +); +width = 476; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (158,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(130,-85,l), +(130,22,l), +(98,22,l), +(98,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(130,714,l), +(130,814,l), +(98,814,l), +(98,714,l) +); +}, +{ +closed = 1; +nodes = ( +(183,0,ls), +(326,0,o), +(417,78,o), +(417,200,cs), +(417,285,o), +(368,356,o), +(271,374,c), +(271,377,l), +(359,397,o), +(398,464,o), +(398,543,cs), +(398,654,o), +(319,729,o), +(184,729,cs), +(-101,729,l), +(-101,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-63,356,l), +(201,356,ls), +(313,356,o), +(377,298,o), +(377,202,cs), +(377,104,o), +(311,36,o), +(183,36,cs), +(-63,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-63,694,l), +(183,694,ls), +(290,694,o), +(360,635,o), +(360,538,cs), +(360,450,o), +(304,391,o), +(199,391,cs), +(-63,391,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (266,0); +ref = _baht.bar; +} +); +width = 658; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (243,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(266,-85,l), +(266,90,l), +(156,90,l), +(156,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(266,689,l), +(266,815,l), +(157,815,l), +(157,689,l) +); +}, +{ +closed = 1; +nodes = ( +(272,0,ls), +(460,0,o), +(549,85,o), +(549,212,cs), +(549,293,o), +(505,359,o), +(426,376,c), +(426,385,l), +(488,405,o), +(529,467,o), +(529,541,cs), +(529,654,o), +(456,729,o), +(301,729,cs), +(-63,729,l), +(-63,0,l) +); +}, +{ +closed = 1; +nodes = ( +(134,299,l), +(248,299,ls), +(307,299,o), +(333,273,o), +(333,226,cs), +(333,179,o), +(307,153,o), +(248,153,cs), +(134,153,l) +); +}, +{ +closed = 1; +nodes = ( +(134,576,l), +(239,576,ls), +(285,576,o), +(315,555,o), +(315,511,cs), +(315,472,o), +(291,446,o), +(239,446,cs), +(134,446,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (246,0); +ref = _baht.bar; +} +); +width = 674; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (212,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(171,-85,l), +(171,22,l), +(139,22,l), +(139,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(171,714,l), +(171,814,l), +(139,814,l), +(139,714,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,ls), +(418,0,o), +(509,78,o), +(509,200,cs), +(509,285,o), +(460,356,o), +(363,374,c), +(363,377,l), +(451,397,o), +(490,464,o), +(490,543,cs), +(490,654,o), +(411,729,o), +(276,729,cs), +(-85,729,l), +(-85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-47,356,l), +(293,356,ls), +(405,356,o), +(469,298,o), +(469,202,cs), +(469,104,o), +(403,36,o), +(275,36,cs), +(-47,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-47,694,l), +(275,694,ls), +(382,694,o), +(452,635,o), +(452,538,cs), +(452,450,o), +(396,391,o), +(291,391,cs), +(-47,391,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = _B.currency; +}, +{ +alignment = -1; +pos = (269,0); +ref = _baht.bar; +} +); +width = 729; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (295,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(334,-85,l), +(334,90,l), +(173,90,l), +(173,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(334,689,l), +(334,815,l), +(174,815,l), +(174,689,l) +); +}, +{ +closed = 1; +nodes = ( +(342,0,ls), +(553,0,o), +(637,86,o), +(637,206,cs), +(637,291,o), +(587,356,o), +(498,376,c), +(498,385,l), +(570,406,o), +(615,465,o), +(615,538,cs), +(615,667,o), +(522,729,o), +(355,729,cs), +(-48,729,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,298,l), +(296,298,ls), +(362,298,o), +(395,279,o), +(395,228,cs), +(395,184,o), +(370,155,o), +(297,155,cs), +(180,155,l) +); +}, +{ +closed = 1; +nodes = ( +(180,573,l), +(287,573,ls), +(354,573,o), +(373,549,o), +(373,511,cs), +(373,472,o), +(350,447,o), +(286,447,cs), +(180,447,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = _B.currency; +}, +{ +alignment = -1; +pos = (236,0); +ref = _baht.bar; +} +); +width = 760; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (158,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(130,-85,l), +(130,22,l), +(98,22,l), +(98,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(130,714,l), +(130,814,l), +(98,814,l), +(98,714,l) +); +}, +{ +closed = 1; +nodes = ( +(183,0,ls), +(326,0,o), +(417,78,o), +(417,200,cs), +(417,285,o), +(368,356,o), +(271,374,c), +(271,377,l), +(359,397,o), +(398,464,o), +(398,543,cs), +(398,654,o), +(319,729,o), +(184,729,cs), +(-101,729,l), +(-101,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-63,356,l), +(201,356,ls), +(313,356,o), +(377,298,o), +(377,202,cs), +(377,104,o), +(311,36,o), +(183,36,cs), +(-63,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-63,694,l), +(183,694,ls), +(290,694,o), +(360,635,o), +(360,538,cs), +(360,450,o), +(304,391,o), +(199,391,cs), +(-63,391,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (264,0); +ref = _baht.bar; +} +); +width = 682; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (243,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(266,-85,l), +(266,90,l), +(156,90,l), +(156,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(266,689,l), +(266,815,l), +(157,815,l), +(157,689,l) +); +}, +{ +closed = 1; +nodes = ( +(272,0,ls), +(460,0,o), +(549,85,o), +(549,212,cs), +(549,293,o), +(505,359,o), +(426,376,c), +(426,385,l), +(488,405,o), +(529,467,o), +(529,541,cs), +(529,654,o), +(456,729,o), +(301,729,cs), +(-63,729,l), +(-63,0,l) +); +}, +{ +closed = 1; +nodes = ( +(134,299,l), +(248,299,ls), +(307,299,o), +(333,273,o), +(333,226,cs), +(333,179,o), +(307,153,o), +(248,153,cs), +(134,153,l) +); +}, +{ +closed = 1; +nodes = ( +(134,576,l), +(239,576,ls), +(285,576,o), +(315,555,o), +(315,511,cs), +(315,472,o), +(291,446,o), +(239,446,cs), +(134,446,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (249,0); +ref = _baht.bar; +} +); +width = 692; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (55,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(-34,-85,l), +(-14,12,l), +(-42,12,l), +(-62,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(131,713,l), +(152,815,l), +(124,815,l), +(103,713,l) +); +}, +{ +closed = 1; +nodes = ( +(-26,0,ls), +(106,0,o), +(176,89,o), +(181,240,cs), +(183,301,o), +(159,351,o), +(116,369,c), +(116,372,l), +(191,398,o), +(242,490,o), +(242,596,cs), +(242,676,o), +(201,729,o), +(115,729,cs), +(20,729,l), +(-132,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-27,359,l), +(48,359,ls), +(117,359,o), +(151,315,o), +(149,242,cs), +(144,106,o), +(83,29,o), +(-20,29,cs), +(-95,29,l) +); +}, +{ +closed = 1; +nodes = ( +(44,700,l), +(109,700,ls), +(171,700,o), +(210,670,o), +(210,596,cs), +(210,484,o), +(155,389,o), +(65,389,cs), +(-19,389,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (125,0); +ref = _baht.bar; +} +); +width = 395; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (169,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(93,-85,l), +(129,90,l), +(49,90,l), +(13,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(253,689,l), +(279,815,l), +(200,815,l), +(174,689,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,ls), +(276,0,o), +(372,95,o), +(377,247,cs), +(379,303,o), +(360,353,o), +(314,375,c), +(316,380,l), +(380,401,o), +(429,474,o), +(432,569,cs), +(435,661,o), +(390,729,o), +(258,729,cs), +(58,729,l), +(-94,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,309,l), +(164,309,ls), +(193,309,o), +(206,289,o), +(204,253,cs), +(202,189,o), +(173,141,o), +(132,141,cs), +(113,141,l) +); +}, +{ +closed = 1; +nodes = ( +(208,590,l), +(223,590,ls), +(247,590,o), +(262,572,o), +(261,538,cs), +(259,482,o), +(230,433,o), +(191,433,cs), +(174,433,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (118,0); +ref = _baht.bar; +} +); +width = 477; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (120,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(27,-85,l), +(49,22,l), +(17,22,l), +(-5,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(192,714,l), +(213,814,l), +(181,814,l), +(160,714,l) +); +}, +{ +closed = 1; +nodes = ( +(104,0,ls), +(272,0,o), +(371,79,o), +(375,215,cs), +(378,291,o), +(338,356,o), +(268,371,c), +(268,374,l), +(359,393,o), +(428,468,o), +(431,566,cs), +(435,664,o), +(373,729,o), +(258,729,cs), +(-40,729,l), +(-191,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-80,356,l), +(194,356,ls), +(289,356,o), +(339,299,o), +(336,216,cs), +(332,102,o), +(250,36,o), +(110,36,cs), +(-147,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-10,694,l), +(248,694,ls), +(337,694,o), +(393,650,o), +(389,559,cs), +(386,456,o), +(308,391,o), +(201,391,cs), +(-71,391,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (274,0); +ref = _baht.bar; +} +); +width = 709; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (228,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(177,-85,l), +(213,90,l), +(103,90,l), +(67,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(337,689,l), +(363,815,l), +(254,815,l), +(228,689,l) +); +}, +{ +closed = 1; +nodes = ( +(240,0,ls), +(414,0,o), +(532,72,o), +(537,224,cs), +(540,296,o), +(504,355,o), +(450,370,c), +(452,379,l), +(519,398,o), +(578,464,o), +(581,555,cs), +(585,657,o), +(520,729,o), +(366,729,cs), +(26,729,l), +(-125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(133,300,l), +(265,300,ls), +(304,300,o), +(334,282,o), +(333,236,cs), +(331,182,o), +(296,153,o), +(238,153,cs), +(102,153,l) +); +}, +{ +closed = 1; +nodes = ( +(191,576,l), +(314,576,ls), +(354,576,o), +(377,557,o), +(375,522,cs), +(374,472,o), +(339,445,o), +(285,445,cs), +(164,445,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (240,0); +ref = _baht.bar; +} +); +width = 725; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (218,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(128,-85,l), +(150,22,l), +(118,22,l), +(96,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(293,714,l), +(314,814,l), +(282,814,l), +(261,714,l) +); +}, +{ +closed = 1; +nodes = ( +(245,0,ls), +(416,0,o), +(516,83,o), +(521,221,cs), +(524,295,o), +(478,357,o), +(410,372,c), +(410,375,l), +(504,395,o), +(571,468,o), +(575,564,cs), +(578,669,o), +(516,729,o), +(380,729,cs), +(12,729,l), +(-139,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-28,356,l), +(328,356,ls), +(433,356,o), +(484,307,o), +(481,219,cs), +(477,104,o), +(393,36,o), +(252,36,cs), +(-94,36,l) +); +}, +{ +closed = 1; +nodes = ( +(44,694,l), +(373,694,ls), +(482,694,o), +(538,647,o), +(535,562,cs), +(531,456,o), +(456,391,o), +(326,391,cs), +(-19,391,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (297,0); +ref = _baht.bar; +} +); +width = 753; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (282,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(251,-85,l), +(287,90,l), +(126,90,l), +(90,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(411,689,l), +(437,815,l), +(277,815,l), +(251,689,l) +); +}, +{ +closed = 1; +nodes = ( +(318,0,ls), +(519,0,o), +(632,80,o), +(632,231,cs), +(632,303,o), +(593,354,o), +(526,372,c), +(527,381,l), +(622,397,o), +(680,465,o), +(680,564,cs), +(680,666,o), +(613,729,o), +(442,729,cs), +(36,729,l), +(-116,0,l) +); +}, +{ +closed = 1; +nodes = ( +(174,297,l), +(317,297,ls), +(371,297,o), +(404,281,o), +(404,238,cs), +(404,181,o), +(367,155,o), +(290,155,cs), +(144,155,l) +); +}, +{ +closed = 1; +nodes = ( +(231,573,l), +(367,573,ls), +(415,573,o), +(443,558,o), +(443,520,cs), +(443,472,o), +(409,446,o), +(345,446,cs), +(206,446,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (239,0); +ref = _baht.bar; +} +); +width = 781; +} +); +metricLeft = B; +metricRight = B; +unicode = 3647; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/bar.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/bar.glyph new file mode 100644 index 00000000..38c27bcc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/bar.glyph @@ -0,0 +1,350 @@ +{ +glyphname = bar; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(190,-67,l), +(190,729,l), +(34,729,l), +(34,-67,l) +); +} +); +width = 224; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,-67,l), +(108,729,l), +(78,729,l), +(78,-67,l) +); +} +); +width = 186; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-67,l), +(121,729,l), +(85,729,l), +(85,-67,l) +); +} +); +width = 206; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(256,-67,l), +(256,729,l), +(55,729,l), +(55,-67,l) +); +} +); +width = 311; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(88,-67,l), +(88,729,l), +(58,729,l), +(58,-67,l) +); +} +); +width = 146; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-67,l), +(180,729,l), +(24,729,l), +(24,-67,l) +); +} +); +width = 204; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,-67,l), +(123,729,l), +(87,729,l), +(87,-67,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 210; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,-67,l), +(217,729,l), +(46,729,l), +(46,-67,l) +); +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,-67,l), +(111,729,l), +(75,729,l), +(75,-67,l) +); +} +); +width = 186; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,-67,l), +(246,729,l), +(45,729,l), +(45,-67,l) +); +} +); +width = 291; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-67,l), +(148,729,l), +(112,729,l), +(112,-67,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 257; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(238,-67,l), +(238,729,l), +(68,729,l), +(68,-67,l) +); +} +); +width = 305; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(40,-67,l), +(206,729,l), +(177,729,l), +(10,-67,l) +); +} +); +width = 185; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,-67,l), +(285,729,l), +(130,729,l), +(-36,-67,l) +); +} +); +width = 223; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(79,-67,l), +(245,729,l), +(210,729,l), +(43,-67,l) +); +} +); +width = 258; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,-67,l), +(334,729,l), +(165,729,l), +(-1,-67,l) +); +} +); +width = 308; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(53,-67,l), +(220,729,l), +(184,729,l), +(18,-67,l) +); +} +); +width = 207; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,-67,l), +(350,729,l), +(151,729,l), +(-15,-67,l) +); +} +); +width = 310; +} +); +unicode = 124; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/bitcoin.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/bitcoin.glyph new file mode 100644 index 00000000..477fc795 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/bitcoin.glyph @@ -0,0 +1,2231 @@ +{ +color = 6; +glyphname = bitcoin; +layers = ( +{ +background = { +anchors = ( +{ +name = bottom; +pos = (240,0); +}, +{ +name = center; +pos = (240,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(173,-85,l), +(173,90,l), +(93,90,l), +(93,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(303,-85,l), +(303,90,l), +(223,90,l), +(223,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(173,689,l), +(173,815,l), +(94,815,l), +(94,689,l) +); +}, +{ +closed = 1; +nodes = ( +(303,689,l), +(303,815,l), +(224,815,l), +(224,689,l) +); +}, +{ +closed = 1; +nodes = ( +(225,0,ls), +(369,0,o), +(452,70,o), +(452,206,cs), +(452,296,o), +(419,360,o), +(356,381,c), +(356,387,l), +(405,404,o), +(437,465,o), +(437,537,cs), +(437,654,o), +(385,729,o), +(243,729,cs), +(28,729,l), +(28,0,l) +); +}, +{ +closed = 1; +nodes = ( +(207,309,l), +(224,309,ls), +(255,309,o), +(275,285,o), +(275,225,cs), +(275,172,o), +(262,141,o), +(223,141,cs), +(207,141,l) +); +}, +{ +closed = 1; +nodes = ( +(207,591,l), +(224,591,ls), +(254,591,o), +(270,568,o), +(270,513,cs), +(270,465,o), +(259,433,o), +(224,433,cs), +(207,433,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (59,0); +ref = _bitcoin.bars; +} +); +width = 476; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (200,0); +}, +{ +name = center; +pos = (200,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(141,-85,l), +(141,12,l), +(113,12,l), +(113,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(218,-85,l), +(218,12,l), +(190,12,l), +(190,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(141,713,l), +(141,815,l), +(113,815,l), +(113,713,l) +); +}, +{ +closed = 1; +nodes = ( +(218,713,l), +(218,815,l), +(190,815,l), +(190,713,l) +); +}, +{ +closed = 1; +nodes = ( +(171,0,ls), +(290,0,o), +(335,81,o), +(335,200,cs), +(335,279,o), +(305,355,o), +(240,374,c), +(240,376,l), +(286,392,o), +(322,456,o), +(322,543,cs), +(322,670,o), +(270,729,o), +(172,729,cs), +(65,729,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(96,359,l), +(182,359,ls), +(257,359,o), +(301,299,o), +(301,201,cs), +(301,77,o), +(257,29,o), +(171,29,cs), +(96,29,l) +); +}, +{ +closed = 1; +nodes = ( +(96,700,l), +(171,700,ls), +(259,700,o), +(291,635,o), +(291,539,cs), +(291,449,o), +(251,389,o), +(181,389,cs), +(96,389,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (86,0); +ref = _bitcoin.bars; +} +); +width = 397; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (368,0); +}, +{ +name = center; +pos = (368,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(257,-85,l), +(257,22,l), +(225,22,l), +(225,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(411,-85,l), +(411,22,l), +(379,22,l), +(379,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(257,714,l), +(257,814,l), +(225,814,l), +(225,714,l) +); +}, +{ +closed = 1; +nodes = ( +(411,714,l), +(411,814,l), +(379,814,l), +(379,714,l) +); +}, +{ +closed = 1; +nodes = ( +(431,0,ls), +(574,0,o), +(665,78,o), +(665,200,cs), +(665,285,o), +(616,356,o), +(519,374,c), +(519,377,l), +(607,397,o), +(646,464,o), +(646,543,cs), +(646,654,o), +(567,729,o), +(432,729,cs), +(71,729,l), +(71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(109,356,l), +(449,356,ls), +(561,356,o), +(625,298,o), +(625,202,cs), +(625,104,o), +(559,36,o), +(431,36,cs), +(109,36,l) +); +}, +{ +closed = 1; +nodes = ( +(109,694,l), +(431,694,ls), +(538,694,o), +(608,635,o), +(608,538,cs), +(608,450,o), +(552,391,o), +(447,391,cs), +(109,391,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (199,0); +ref = _bitcoin.bars; +} +); +width = 729; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (396.5,0); +}, +{ +name = center; +pos = (396.5,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(316,-85,l), +(316,90,l), +(155,90,l), +(155,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(546,-85,l), +(546,90,l), +(385,90,l), +(385,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(316,689,l), +(316,815,l), +(156,815,l), +(156,689,l) +); +}, +{ +closed = 1; +nodes = ( +(546,689,l), +(546,815,l), +(386,815,l), +(386,689,l) +); +}, +{ +closed = 1; +nodes = ( +(444,0,ls), +(655,0,o), +(739,86,o), +(739,206,cs), +(739,291,o), +(689,356,o), +(600,376,c), +(600,385,l), +(672,406,o), +(717,465,o), +(717,538,cs), +(717,667,o), +(624,729,o), +(457,729,cs), +(54,729,l), +(54,0,l) +); +}, +{ +closed = 1; +nodes = ( +(282,298,l), +(398,298,ls), +(464,298,o), +(497,279,o), +(497,228,cs), +(497,184,o), +(472,155,o), +(399,155,cs), +(282,155,l) +); +}, +{ +closed = 1; +nodes = ( +(282,573,l), +(389,573,ls), +(456,573,o), +(475,549,o), +(475,511,cs), +(475,472,o), +(452,447,o), +(388,447,cs), +(282,447,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (116,0); +ref = _bitcoin.bars; +} +); +width = 760; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (200,0); +}, +{ +name = center; +pos = (200,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(141,-85,l), +(141,12,l), +(113,12,l), +(113,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(218,-85,l), +(218,12,l), +(190,12,l), +(190,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(141,713,l), +(141,815,l), +(113,815,l), +(113,713,l) +); +}, +{ +closed = 1; +nodes = ( +(218,713,l), +(218,815,l), +(190,815,l), +(190,713,l) +); +}, +{ +closed = 1; +nodes = ( +(171,0,ls), +(290,0,o), +(335,81,o), +(335,200,cs), +(335,279,o), +(305,355,o), +(240,374,c), +(240,376,l), +(286,392,o), +(322,456,o), +(322,543,cs), +(322,670,o), +(270,729,o), +(172,729,cs), +(65,729,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(96,359,l), +(182,359,ls), +(257,359,o), +(301,299,o), +(301,201,cs), +(301,77,o), +(257,29,o), +(171,29,cs), +(96,29,l) +); +}, +{ +closed = 1; +nodes = ( +(96,700,l), +(171,700,ls), +(259,700,o), +(291,635,o), +(291,539,cs), +(291,449,o), +(251,389,o), +(181,389,cs), +(96,389,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = _B.currency; +}, +{ +alignment = -1; +pos = (86,0); +ref = _bitcoin.bars; +} +); +width = 397; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (240,0); +}, +{ +name = center; +pos = (240,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(173,-85,l), +(173,90,l), +(93,90,l), +(93,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(303,-85,l), +(303,90,l), +(223,90,l), +(223,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(173,689,l), +(173,815,l), +(94,815,l), +(94,689,l) +); +}, +{ +closed = 1; +nodes = ( +(303,689,l), +(303,815,l), +(224,815,l), +(224,689,l) +); +}, +{ +closed = 1; +nodes = ( +(225,0,ls), +(369,0,o), +(452,70,o), +(452,206,cs), +(452,296,o), +(419,360,o), +(356,381,c), +(356,387,l), +(405,404,o), +(437,465,o), +(437,537,cs), +(437,654,o), +(385,729,o), +(243,729,cs), +(28,729,l), +(28,0,l) +); +}, +{ +closed = 1; +nodes = ( +(207,309,l), +(224,309,ls), +(255,309,o), +(275,285,o), +(275,225,cs), +(275,172,o), +(262,141,o), +(223,141,cs), +(207,141,l) +); +}, +{ +closed = 1; +nodes = ( +(207,591,l), +(224,591,ls), +(254,591,o), +(270,568,o), +(270,513,cs), +(270,465,o), +(259,433,o), +(224,433,cs), +(207,433,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = _B.currency; +}, +{ +alignment = -1; +pos = (59,0); +ref = _bitcoin.bars; +} +); +width = 476; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (362,0); +}, +{ +name = center; +pos = (362,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(260,-85,l), +(260,22,l), +(228,22,l), +(228,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(410,-85,l), +(410,22,l), +(378,22,l), +(378,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(260,714,l), +(260,814,l), +(228,814,l), +(228,714,l) +); +}, +{ +closed = 1; +nodes = ( +(410,714,l), +(410,814,l), +(378,814,l), +(378,714,l) +); +}, +{ +closed = 1; +nodes = ( +(387,0,ls), +(530,0,o), +(621,78,o), +(621,200,cs), +(621,285,o), +(572,356,o), +(475,374,c), +(475,377,l), +(563,397,o), +(602,464,o), +(602,543,cs), +(602,654,o), +(523,729,o), +(388,729,cs), +(103,729,l), +(103,0,l) +); +}, +{ +closed = 1; +nodes = ( +(141,356,l), +(405,356,ls), +(517,356,o), +(581,298,o), +(581,202,cs), +(581,104,o), +(515,36,o), +(387,36,cs), +(141,36,l) +); +}, +{ +closed = 1; +nodes = ( +(141,694,l), +(387,694,ls), +(494,694,o), +(564,635,o), +(564,538,cs), +(564,450,o), +(508,391,o), +(403,391,cs), +(141,391,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (192,0); +ref = _bitcoin.bars; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 658; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (375,0); +}, +{ +name = center; +pos = (375,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(298,-85,l), +(298,90,l), +(188,90,l), +(188,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(477,-85,l), +(477,90,l), +(367,90,l), +(367,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(298,689,l), +(298,815,l), +(189,815,l), +(189,689,l) +); +}, +{ +closed = 1; +nodes = ( +(477,689,l), +(477,815,l), +(368,815,l), +(368,689,l) +); +}, +{ +closed = 1; +nodes = ( +(404,0,ls), +(592,0,o), +(681,85,o), +(681,212,cs), +(681,293,o), +(637,359,o), +(558,376,c), +(558,385,l), +(620,405,o), +(661,467,o), +(661,541,cs), +(661,654,o), +(588,729,o), +(433,729,cs), +(69,729,l), +(69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(266,299,l), +(380,299,ls), +(439,299,o), +(465,273,o), +(465,226,cs), +(465,179,o), +(439,153,o), +(380,153,cs), +(266,153,l) +); +}, +{ +closed = 1; +nodes = ( +(266,576,l), +(371,576,ls), +(417,576,o), +(447,555,o), +(447,511,cs), +(447,472,o), +(423,446,o), +(371,446,cs), +(266,446,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (146,0); +ref = _bitcoin.bars; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +}; +width = 674; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (368,0); +}, +{ +name = center; +pos = (368,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(257,-85,l), +(257,22,l), +(225,22,l), +(225,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(411,-85,l), +(411,22,l), +(379,22,l), +(379,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(257,714,l), +(257,814,l), +(225,814,l), +(225,714,l) +); +}, +{ +closed = 1; +nodes = ( +(411,714,l), +(411,814,l), +(379,814,l), +(379,714,l) +); +}, +{ +closed = 1; +nodes = ( +(431,0,ls), +(574,0,o), +(665,78,o), +(665,200,cs), +(665,285,o), +(616,356,o), +(519,374,c), +(519,377,l), +(607,397,o), +(646,464,o), +(646,543,cs), +(646,654,o), +(567,729,o), +(432,729,cs), +(71,729,l), +(71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(109,356,l), +(449,356,ls), +(561,356,o), +(625,298,o), +(625,202,cs), +(625,104,o), +(559,36,o), +(431,36,cs), +(109,36,l) +); +}, +{ +closed = 1; +nodes = ( +(109,694,l), +(431,694,ls), +(538,694,o), +(608,635,o), +(608,538,cs), +(608,450,o), +(552,391,o), +(447,391,cs), +(109,391,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = _B.currency; +}, +{ +alignment = -1; +pos = (199,0); +ref = _bitcoin.bars; +} +); +width = 729; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (396.5,0); +}, +{ +name = center; +pos = (396.5,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(316,-85,l), +(316,90,l), +(155,90,l), +(155,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(546,-85,l), +(546,90,l), +(385,90,l), +(385,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(316,689,l), +(316,815,l), +(156,815,l), +(156,689,l) +); +}, +{ +closed = 1; +nodes = ( +(546,689,l), +(546,815,l), +(386,815,l), +(386,689,l) +); +}, +{ +closed = 1; +nodes = ( +(444,0,ls), +(655,0,o), +(739,86,o), +(739,206,cs), +(739,291,o), +(689,356,o), +(600,376,c), +(600,385,l), +(672,406,o), +(717,465,o), +(717,538,cs), +(717,667,o), +(624,729,o), +(457,729,cs), +(54,729,l), +(54,0,l) +); +}, +{ +closed = 1; +nodes = ( +(282,298,l), +(398,298,ls), +(464,298,o), +(497,279,o), +(497,228,cs), +(497,184,o), +(472,155,o), +(399,155,cs), +(282,155,l) +); +}, +{ +closed = 1; +nodes = ( +(282,573,l), +(389,573,ls), +(456,573,o), +(475,549,o), +(475,511,cs), +(475,472,o), +(452,447,o), +(388,447,cs), +(282,447,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = _B.currency; +}, +{ +alignment = -1; +pos = (116,0); +ref = _bitcoin.bars; +} +); +width = 760; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (362,0); +}, +{ +name = center; +pos = (362,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(260,-85,l), +(260,22,l), +(228,22,l), +(228,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(410,-85,l), +(410,22,l), +(378,22,l), +(378,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(260,714,l), +(260,814,l), +(228,814,l), +(228,714,l) +); +}, +{ +closed = 1; +nodes = ( +(410,714,l), +(410,814,l), +(378,814,l), +(378,714,l) +); +}, +{ +closed = 1; +nodes = ( +(387,0,ls), +(530,0,o), +(621,78,o), +(621,200,cs), +(621,285,o), +(572,356,o), +(475,374,c), +(475,377,l), +(563,397,o), +(602,464,o), +(602,543,cs), +(602,654,o), +(523,729,o), +(388,729,cs), +(103,729,l), +(103,0,l) +); +}, +{ +closed = 1; +nodes = ( +(141,356,l), +(405,356,ls), +(517,356,o), +(581,298,o), +(581,202,cs), +(581,104,o), +(515,36,o), +(387,36,cs), +(141,36,l) +); +}, +{ +closed = 1; +nodes = ( +(141,694,l), +(387,694,ls), +(494,694,o), +(564,635,o), +(564,538,cs), +(564,450,o), +(508,391,o), +(403,391,cs), +(141,391,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (192,0); +ref = _bitcoin.bars; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 682; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (375,0); +}, +{ +name = center; +pos = (375,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(298,-85,l), +(298,90,l), +(188,90,l), +(188,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(477,-85,l), +(477,90,l), +(367,90,l), +(367,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(298,689,l), +(298,815,l), +(189,815,l), +(189,689,l) +); +}, +{ +closed = 1; +nodes = ( +(477,689,l), +(477,815,l), +(368,815,l), +(368,689,l) +); +}, +{ +closed = 1; +nodes = ( +(404,0,ls), +(592,0,o), +(681,85,o), +(681,212,cs), +(681,293,o), +(637,359,o), +(558,376,c), +(558,385,l), +(620,405,o), +(661,467,o), +(661,541,cs), +(661,654,o), +(588,729,o), +(433,729,cs), +(69,729,l), +(69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(266,299,l), +(380,299,ls), +(439,299,o), +(465,273,o), +(465,226,cs), +(465,179,o), +(439,153,o), +(380,153,cs), +(266,153,l) +); +}, +{ +closed = 1; +nodes = ( +(266,576,l), +(371,576,ls), +(417,576,o), +(447,555,o), +(447,511,cs), +(447,472,o), +(423,446,o), +(371,446,cs), +(266,446,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (150,0); +ref = _bitcoin.bars; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +}; +width = 692; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (199,0); +}, +{ +name = center; +pos = (199,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(70,-85,l), +(90,12,l), +(62,12,l), +(42,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(147,-85,l), +(167,12,l), +(139,12,l), +(119,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(235,713,l), +(256,815,l), +(228,815,l), +(207,713,l) +); +}, +{ +closed = 1; +nodes = ( +(312,713,l), +(333,815,l), +(305,815,l), +(284,713,l) +); +}, +{ +closed = 1; +nodes = ( +(118,0,ls), +(250,0,o), +(320,89,o), +(325,240,cs), +(327,301,o), +(303,351,o), +(260,369,c), +(260,372,l), +(335,398,o), +(386,490,o), +(386,596,cs), +(386,676,o), +(345,729,o), +(259,729,cs), +(164,729,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(117,359,l), +(192,359,ls), +(261,359,o), +(295,315,o), +(293,242,cs), +(288,106,o), +(227,29,o), +(124,29,cs), +(49,29,l) +); +}, +{ +closed = 1; +nodes = ( +(188,700,l), +(253,700,ls), +(315,700,o), +(354,670,o), +(354,596,cs), +(354,484,o), +(299,389,o), +(209,389,cs), +(125,389,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (85,0); +ref = _bitcoin.bars; +} +); +width = 395; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (235.07,0); +}, +{ +name = center; +pos = (235.07,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(99,-85,l), +(135,90,l), +(55,90,l), +(19,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(229,-85,l), +(265,90,l), +(185,90,l), +(149,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(259,689,l), +(285,815,l), +(206,815,l), +(180,689,l) +); +}, +{ +closed = 1; +nodes = ( +(389,689,l), +(415,815,l), +(336,815,l), +(310,689,l) +); +}, +{ +closed = 1; +nodes = ( +(173,0,ls), +(342,0,o), +(438,95,o), +(443,247,cs), +(445,303,o), +(426,353,o), +(380,375,c), +(382,380,l), +(446,401,o), +(495,474,o), +(498,569,cs), +(501,661,o), +(456,729,o), +(324,729,cs), +(124,729,l), +(-28,0,l) +); +}, +{ +closed = 1; +nodes = ( +(216,309,l), +(230,309,ls), +(259,309,o), +(272,289,o), +(270,253,cs), +(268,189,o), +(239,141,o), +(198,141,cs), +(179,141,l) +); +}, +{ +closed = 1; +nodes = ( +(274,590,l), +(289,590,ls), +(313,590,o), +(328,572,o), +(327,538,cs), +(325,482,o), +(296,433,o), +(257,433,cs), +(240,433,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (58,0); +ref = _bitcoin.bars; +} +); +width = 477; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (360.091,0); +}, +{ +name = center; +pos = (360.091,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(187,-85,l), +(209,22,l), +(177,22,l), +(155,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(327,-85,l), +(349,22,l), +(317,22,l), +(295,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(352,714,l), +(373,814,l), +(341,814,l), +(320,714,l) +); +}, +{ +closed = 1; +nodes = ( +(492,714,l), +(513,814,l), +(481,814,l), +(460,714,l) +); +}, +{ +closed = 1; +nodes = ( +(344,0,ls), +(512,0,o), +(611,79,o), +(615,215,cs), +(618,291,o), +(578,356,o), +(508,371,c), +(508,374,l), +(599,393,o), +(668,468,o), +(671,566,cs), +(675,664,o), +(613,729,o), +(498,729,cs), +(200,729,l), +(49,0,l) +); +}, +{ +closed = 1; +nodes = ( +(160,356,l), +(434,356,ls), +(529,356,o), +(579,299,o), +(576,216,cs), +(572,102,o), +(490,36,o), +(350,36,cs), +(93,36,l) +); +}, +{ +closed = 1; +nodes = ( +(230,694,l), +(488,694,ls), +(577,694,o), +(633,650,o), +(629,559,cs), +(626,456,o), +(548,391,o), +(441,391,cs), +(169,391,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (194,0); +ref = _bitcoin.bars; +} +); +width = 709; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (366.087,0); +}, +{ +name = center; +pos = (366.087,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(215,-85,l), +(251,90,l), +(141,90,l), +(105,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(394,-85,l), +(430,90,l), +(320,90,l), +(284,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(375,689,l), +(401,815,l), +(292,815,l), +(266,689,l) +); +}, +{ +closed = 1; +nodes = ( +(554,689,l), +(580,815,l), +(471,815,l), +(445,689,l) +); +}, +{ +closed = 1; +nodes = ( +(378,0,ls), +(552,0,o), +(670,72,o), +(675,224,cs), +(678,296,o), +(642,355,o), +(588,370,c), +(590,379,l), +(657,398,o), +(716,464,o), +(719,555,cs), +(723,657,o), +(658,729,o), +(504,729,cs), +(164,729,l), +(13,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,300,l), +(403,300,ls), +(442,300,o), +(472,282,o), +(471,236,cs), +(469,182,o), +(434,153,o), +(376,153,cs), +(240,153,l) +); +}, +{ +closed = 1; +nodes = ( +(329,576,l), +(452,576,ls), +(492,576,o), +(515,557,o), +(513,522,cs), +(512,472,o), +(477,445,o), +(423,445,cs), +(302,445,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (140,0); +ref = _bitcoin.bars; +} +); +width = 725; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (374.052,0); +}, +{ +name = center; +pos = (374.052,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(184,-85,l), +(206,22,l), +(174,22,l), +(152,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(348,-85,l), +(370,22,l), +(338,22,l), +(316,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(349,714,l), +(370,814,l), +(338,814,l), +(317,714,l) +); +}, +{ +closed = 1; +nodes = ( +(513,714,l), +(534,814,l), +(502,814,l), +(481,714,l) +); +}, +{ +closed = 1; +nodes = ( +(401,0,ls), +(572,0,o), +(672,83,o), +(677,221,cs), +(680,295,o), +(634,357,o), +(566,372,c), +(566,375,l), +(660,395,o), +(727,468,o), +(731,564,cs), +(734,669,o), +(672,729,o), +(536,729,cs), +(168,729,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(128,356,l), +(484,356,ls), +(589,356,o), +(640,307,o), +(637,219,cs), +(633,104,o), +(549,36,o), +(408,36,cs), +(62,36,l) +); +}, +{ +closed = 1; +nodes = ( +(200,694,l), +(529,694,ls), +(638,694,o), +(694,647,o), +(691,562,cs), +(687,456,o), +(612,391,o), +(482,391,cs), +(137,391,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (197,0); +ref = _bitcoin.bars; +} +); +width = 753; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (396,0); +}, +{ +name = center; +pos = (396,364.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(245,-85,l), +(281,90,l), +(120,90,l), +(84,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(475,-85,l), +(511,90,l), +(350,90,l), +(314,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(405,689,l), +(431,815,l), +(271,815,l), +(245,689,l) +); +}, +{ +closed = 1; +nodes = ( +(635,689,l), +(661,815,l), +(501,815,l), +(475,689,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,ls), +(633,0,o), +(746,80,o), +(746,231,cs), +(746,303,o), +(707,354,o), +(640,372,c), +(641,381,l), +(736,397,o), +(794,465,o), +(794,564,cs), +(794,666,o), +(727,729,o), +(556,729,cs), +(150,729,l), +(-2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(288,297,l), +(431,297,ls), +(485,297,o), +(518,281,o), +(518,238,cs), +(518,181,o), +(481,155,o), +(404,155,cs), +(258,155,l) +); +}, +{ +closed = 1; +nodes = ( +(345,573,l), +(481,573,ls), +(529,573,o), +(557,558,o), +(557,520,cs), +(557,472,o), +(523,446,o), +(459,446,cs), +(320,446,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (119,0); +ref = _bitcoin.bars; +} +); +width = 781; +} +); +unicode = 8383; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/blackC_ircle.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/blackC_ircle.glyph new file mode 100644 index 00000000..7de5a71d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/blackC_ircle.glyph @@ -0,0 +1,528 @@ +{ +glyphname = blackCircle; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +} +); +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +} +); +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +} +); +width = 880; +} +); +unicode = 9679; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/braceleft.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/braceleft.case.glyph new file mode 100644 index 00000000..8b168145 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/braceleft.case.glyph @@ -0,0 +1,973 @@ +{ +glyphname = braceleft.case; +kernRight = KO_bracketleft.case; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,-63,l), +(329,62,l), +(250,62,l), +(250,230,ls), +(250,291,o), +(233,341,o), +(160,368,c), +(160,371,l), +(230,387,o), +(250,439,o), +(250,505,cs), +(250,668,l), +(329,668,l), +(329,793,l), +(219,793,ls), +(131,793,o), +(90,738,o), +(90,666,cs), +(90,505,ls), +(90,458,o), +(67,427,o), +(27,427,cs), +(14,427,l), +(14,300,l), +(27,300,ls), +(65,300,o), +(90,273,o), +(90,225,cs), +(90,64,ls), +(90,-8,o), +(131,-63,o), +(219,-63,cs) +); +} +); +width = 346; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,-63,l), +(229,-35,l), +(122,-35,l), +(122,262,ls), +(122,321,o), +(88,362,o), +(53,363,c), +(53,367,l), +(88,368,o), +(122,409,o), +(122,468,cs), +(122,765,l), +(229,765,l), +(229,793,l), +(129,793,ls), +(104,793,o), +(92,777,o), +(92,754,cs), +(92,467,ls), +(92,411,o), +(60,381,o), +(29,381,cs), +(8,381,l), +(8,349,l), +(29,349,ls), +(60,349,o), +(92,319,o), +(92,263,cs), +(92,-24,ls), +(92,-47,o), +(104,-63,o), +(129,-63,cs) +); +} +); +width = 239; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,-63,l), +(347,-31,l), +(163,-31,l), +(163,262,ls), +(163,320,o), +(130,362,o), +(93,364,c), +(93,368,l), +(128,369,o), +(163,409,o), +(163,470,cs), +(163,761,l), +(347,761,l), +(347,793,l), +(168,793,ls), +(140,793,o), +(127,775,o), +(127,750,cs), +(127,470,ls), +(127,414,o), +(95,384,o), +(64,384,cs), +(24,384,l), +(24,347,l), +(64,347,ls), +(95,347,o), +(127,317,o), +(127,262,cs), +(127,-20,ls), +(127,-45,o), +(140,-63,o), +(168,-63,cs) +); +} +); +width = 373; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-63,l), +(430,81,l), +(299,81,l), +(299,216,ls), +(299,290,o), +(280,341,o), +(209,369,c), +(209,372,l), +(263,385,o), +(299,420,o), +(299,515,cs), +(299,648,l), +(430,648,l), +(430,793,l), +(244,793,ls), +(151,793,o), +(108,734,o), +(108,659,cs), +(108,525,ls), +(108,478,o), +(85,447,o), +(45,447,cs), +(7,447,l), +(7,281,l), +(45,281,ls), +(83,281,o), +(108,253,o), +(108,205,cs), +(108,72,ls), +(108,-4,o), +(151,-63,o), +(244,-63,cs) +); +} +); +width = 446; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-63,l), +(221,-35,l), +(114,-35,l), +(114,262,ls), +(114,321,o), +(80,362,o), +(45,363,c), +(45,367,l), +(80,368,o), +(114,409,o), +(114,468,cs), +(114,765,l), +(221,765,l), +(221,793,l), +(121,793,ls), +(96,793,o), +(84,777,o), +(84,754,cs), +(84,467,ls), +(84,411,o), +(52,381,o), +(21,381,cs), +(0,381,l), +(0,349,l), +(21,349,ls), +(52,349,o), +(84,319,o), +(84,263,cs), +(84,-24,ls), +(84,-47,o), +(96,-63,o), +(121,-63,cs) +); +} +); +width = 223; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,-63,l), +(320,62,l), +(241,62,l), +(241,230,ls), +(241,291,o), +(224,341,o), +(151,368,c), +(151,371,l), +(221,387,o), +(241,439,o), +(241,505,cs), +(241,668,l), +(320,668,l), +(320,793,l), +(210,793,ls), +(122,793,o), +(81,738,o), +(81,666,cs), +(81,505,ls), +(81,458,o), +(58,427,o), +(18,427,cs), +(5,427,l), +(5,300,l), +(18,300,ls), +(56,300,o), +(81,273,o), +(81,225,cs), +(81,64,ls), +(81,-8,o), +(122,-63,o), +(210,-63,cs) +); +} +); +width = 327; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,-63,l), +(316,-31,l), +(149,-31,l), +(149,262,ls), +(149,320,o), +(116,362,o), +(79,364,c), +(79,368,l), +(114,369,o), +(149,409,o), +(149,470,cs), +(149,761,l), +(316,761,l), +(316,793,l), +(154,793,ls), +(126,793,o), +(113,775,o), +(113,750,cs), +(113,470,ls), +(113,414,o), +(81,384,o), +(50,384,cs), +(19,384,l), +(19,347,l), +(50,347,ls), +(81,347,o), +(113,317,o), +(113,262,cs), +(113,-20,ls), +(113,-45,o), +(126,-63,o), +(154,-63,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +22 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 337; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,-63,l), +(385,70,l), +(265,70,l), +(265,231,ls), +(265,294,o), +(244,344,o), +(176,369,c), +(176,372,l), +(229,384,o), +(265,419,o), +(265,505,cs), +(265,659,l), +(385,659,l), +(385,793,l), +(215,793,ls), +(128,793,o), +(87,738,o), +(87,667,cs), +(87,512,ls), +(87,465,o), +(64,434,o), +(24,434,cs), +(1,434,l), +(1,295,l), +(24,295,ls), +(62,295,o), +(87,267,o), +(87,219,cs), +(87,63,ls), +(87,-8,o), +(128,-63,o), +(215,-63,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft; +}; +width = 394; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,-63,l), +(337,-31,l), +(153,-31,l), +(153,262,ls), +(153,320,o), +(120,362,o), +(83,364,c), +(83,368,l), +(118,369,o), +(153,409,o), +(153,470,cs), +(153,761,l), +(337,761,l), +(337,793,l), +(158,793,ls), +(130,793,o), +(117,775,o), +(117,750,cs), +(117,470,ls), +(117,414,o), +(85,384,o), +(54,384,cs), +(14,384,l), +(14,347,l), +(54,347,ls), +(85,347,o), +(117,317,o), +(117,262,cs), +(117,-20,ls), +(117,-45,o), +(130,-63,o), +(158,-63,cs) +); +} +); +width = 353; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(425,-63,l), +(425,81,l), +(294,81,l), +(294,216,ls), +(294,290,o), +(275,341,o), +(204,369,c), +(204,372,l), +(258,385,o), +(294,420,o), +(294,515,cs), +(294,648,l), +(425,648,l), +(425,793,l), +(239,793,ls), +(146,793,o), +(103,734,o), +(103,659,cs), +(103,525,ls), +(103,478,o), +(80,447,o), +(40,447,cs), +(2,447,l), +(2,281,l), +(40,281,ls), +(78,281,o), +(103,253,o), +(103,205,cs), +(103,72,ls), +(103,-4,o), +(146,-63,o), +(239,-63,cs) +); +} +); +width = 431; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(333,-63,l), +(333,-31,l), +(168,-31,l), +(168,262,ls), +(168,320,o), +(137,362,o), +(100,364,c), +(100,368,l), +(135,369,o), +(168,409,o), +(168,470,cs), +(168,761,l), +(333,761,l), +(333,793,l), +(173,793,ls), +(147,793,o), +(134,775,o), +(134,750,cs), +(134,470,ls), +(134,414,o), +(102,384,o), +(71,384,cs), +(42,384,l), +(42,347,l), +(71,347,ls), +(102,347,o), +(134,317,o), +(134,262,cs), +(134,-20,ls), +(134,-45,o), +(147,-63,o), +(173,-63,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +22 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 374; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(391,-63,l), +(391,70,l), +(279,70,l), +(279,231,ls), +(279,295,o), +(259,344,o), +(193,369,c), +(193,372,l), +(245,384,o), +(279,419,o), +(279,505,cs), +(279,659,l), +(391,659,l), +(391,793,l), +(229,793,ls), +(143,793,o), +(102,738,o), +(102,667,cs), +(102,512,ls), +(102,465,o), +(81,434,o), +(43,434,cs), +(21,434,l), +(21,295,l), +(43,295,ls), +(79,295,o), +(102,267,o), +(102,219,cs), +(102,63,ls), +(102,-8,o), +(143,-63,o), +(229,-63,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft; +}; +width = 419; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(160,-63,l), +(165,-35,l), +(59,-35,l), +(122,262,ls), +(134,321,o), +(108,362,o), +(75,363,c), +(75,367,l), +(111,368,o), +(153,409,o), +(165,468,cs), +(227,765,l), +(333,765,l), +(338,793,l), +(239,793,ls), +(215,793,o), +(200,777,o), +(195,754,cs), +(135,467,ls), +(123,411,o), +(85,381,o), +(55,381,cs), +(34,381,l), +(27,349,l), +(48,349,ls), +(78,349,o), +(104,319,o), +(92,263,cs), +(32,-24,ls), +(27,-47,o), +(36,-63,o), +(61,-63,cs) +); +} +); +width = 238; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(256,-63,l), +(282,62,l), +(204,62,l), +(239,230,ls), +(252,291,o), +(246,341,o), +(179,368,c), +(179,371,l), +(252,387,o), +(283,439,o), +(297,505,cs), +(330,668,l), +(408,668,l), +(435,793,l), +(326,793,ls), +(239,793,o), +(187,738,o), +(172,666,cs), +(138,505,ls), +(128,458,o), +(99,427,o), +(59,427,cs), +(47,427,l), +(20,300,l), +(33,300,ls), +(71,300,o), +(90,273,o), +(79,225,cs), +(46,64,ls), +(30,-8,o), +(60,-63,o), +(147,-63,cs) +); +} +); +width = 344; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,-63,l), +(272,-31,l), +(107,-31,l), +(169,262,ls), +(181,320,o), +(156,362,o), +(121,364,c), +(122,368,l), +(157,369,o), +(200,409,o), +(213,470,cs), +(273,761,l), +(439,761,l), +(445,793,l), +(284,793,ls), +(256,793,o), +(240,775,o), +(235,750,cs), +(177,470,ls), +(165,414,o), +(126,384,o), +(96,384,cs), +(65,384,l), +(58,347,l), +(88,347,ls), +(119,347,o), +(145,317,o), +(133,262,cs), +(74,-20,ls), +(69,-45,o), +(78,-63,o), +(106,-63,cs) +); +} +); +width = 376; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,-63,l), +(360,70,l), +(241,70,l), +(274,231,ls), +(287,294,o), +(277,344,o), +(216,369,c), +(216,372,l), +(271,384,o), +(315,419,o), +(332,505,cs), +(364,659,l), +(483,659,l), +(511,793,l), +(342,793,ls), +(256,793,o), +(205,738,o), +(190,667,cs), +(157,512,ls), +(148,465,o), +(118,434,o), +(78,434,cs), +(56,434,l), +(27,295,l), +(50,295,ls), +(87,295,o), +(106,267,o), +(96,219,cs), +(64,63,ls), +(48,-8,o), +(78,-63,o), +(164,-63,cs) +); +} +); +width = 433; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(277,-63,l), +(283,-31,l), +(101,-31,l), +(162,262,ls), +(174,320,o), +(150,362,o), +(115,364,c), +(116,368,l), +(150,369,o), +(193,409,o), +(206,470,cs), +(267,761,l), +(449,761,l), +(455,793,l), +(278,793,ls), +(250,793,o), +(234,775,o), +(229,750,cs), +(171,470,ls), +(159,414,o), +(120,384,o), +(89,384,cs), +(50,384,l), +(43,347,l), +(82,347,ls), +(113,347,o), +(139,317,o), +(127,262,cs), +(67,-20,ls), +(63,-45,o), +(72,-63,o), +(100,-63,cs) +); +} +); +width = 371; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,-63,l), +(386,81,l), +(256,81,l), +(285,216,ls), +(300,290,o), +(292,341,o), +(228,369,c), +(228,372,l), +(285,385,o), +(327,420,o), +(348,515,cs), +(376,648,l), +(506,648,l), +(535,793,l), +(350,793,ls), +(258,793,o), +(204,734,o), +(187,659,cs), +(160,525,ls), +(150,478,o), +(120,447,o), +(81,447,cs), +(43,447,l), +(9,281,l), +(46,281,ls), +(84,281,o), +(103,253,o), +(92,205,cs), +(66,72,ls), +(49,-4,o), +(80,-63,o), +(172,-63,cs) +); +} +); +width = 443; +} +); +userData = { +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/braceleft.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/braceleft.glyph new file mode 100644 index 00000000..81fa2272 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/braceleft.glyph @@ -0,0 +1,934 @@ +{ +glyphname = braceleft; +kernRight = KO_bracketleft; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(328,-167,l), +(328,-42,l), +(249,-42,l), +(249,171,ls), +(249,232,o), +(232,282,o), +(159,309,c), +(159,312,l), +(229,328,o), +(249,380,o), +(249,446,cs), +(249,668,l), +(328,668,l), +(328,793,l), +(218,793,ls), +(130,793,o), +(89,738,o), +(89,666,cs), +(89,446,ls), +(89,399,o), +(66,368,o), +(26,368,cs), +(13,368,l), +(13,241,l), +(26,241,ls), +(64,241,o), +(89,214,o), +(89,166,cs), +(89,-40,ls), +(89,-112,o), +(130,-167,o), +(218,-167,cs) +); +} +); +width = 344; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,-167,l), +(228,-140,l), +(121,-140,l), +(121,210,ls), +(121,269,o), +(87,310,o), +(52,311,c), +(52,315,l), +(87,316,o), +(121,357,o), +(121,416,cs), +(121,766,l), +(228,766,l), +(228,793,l), +(128,793,ls), +(103,793,o), +(91,777,o), +(91,754,cs), +(91,415,ls), +(91,359,o), +(59,329,o), +(28,329,cs), +(7,329,l), +(7,297,l), +(28,297,ls), +(59,297,o), +(91,267,o), +(91,211,cs), +(91,-128,ls), +(91,-151,o), +(103,-167,o), +(128,-167,cs) +); +} +); +width = 236; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(354,-167,l), +(354,-135,l), +(170,-135,l), +(170,208,ls), +(170,267,o), +(137,309,o), +(100,311,c), +(100,315,l), +(135,316,o), +(170,356,o), +(170,417,cs), +(170,761,l), +(354,761,l), +(354,793,l), +(175,793,ls), +(147,793,o), +(134,775,o), +(134,750,cs), +(134,417,ls), +(134,361,o), +(102,331,o), +(71,331,cs), +(23,331,l), +(23,294,l), +(71,294,ls), +(102,294,o), +(134,264,o), +(134,209,cs), +(134,-124,ls), +(134,-149,o), +(147,-167,o), +(175,-167,cs) +); +} +); +width = 379; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-167,l), +(437,-13,l), +(297,-13,l), +(297,167,ls), +(297,230,o), +(278,281,o), +(207,309,c), +(207,312,l), +(261,325,o), +(297,360,o), +(297,448,cs), +(297,638,l), +(437,638,l), +(437,793,l), +(242,793,ls), +(149,793,o), +(106,734,o), +(106,659,cs), +(106,465,ls), +(106,418,o), +(83,387,o), +(43,387,cs), +(5,387,l), +(5,221,l), +(43,221,ls), +(81,221,o), +(106,193,o), +(106,145,cs), +(106,-33,ls), +(106,-108,o), +(149,-167,o), +(242,-167,cs) +); +} +); +width = 451; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,-167,l), +(220,-140,l), +(113,-140,l), +(113,210,ls), +(113,269,o), +(79,310,o), +(44,311,c), +(44,315,l), +(79,316,o), +(113,357,o), +(113,416,cs), +(113,766,l), +(220,766,l), +(220,793,l), +(120,793,ls), +(95,793,o), +(83,777,o), +(83,754,cs), +(83,415,ls), +(83,359,o), +(51,329,o), +(20,329,cs), +(-1,329,l), +(-1,297,l), +(20,297,ls), +(51,297,o), +(83,267,o), +(83,211,cs), +(83,-128,ls), +(83,-151,o), +(95,-167,o), +(120,-167,cs) +); +} +); +width = 220; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-167,l), +(319,-42,l), +(240,-42,l), +(240,171,ls), +(240,232,o), +(223,282,o), +(150,309,c), +(150,312,l), +(220,328,o), +(240,380,o), +(240,446,cs), +(240,668,l), +(319,668,l), +(319,793,l), +(209,793,ls), +(121,793,o), +(80,738,o), +(80,666,cs), +(80,446,ls), +(80,399,o), +(57,368,o), +(17,368,cs), +(4,368,l), +(4,241,l), +(17,241,ls), +(55,241,o), +(80,214,o), +(80,166,cs), +(80,-40,ls), +(80,-112,o), +(121,-167,o), +(209,-167,cs) +); +} +); +width = 326; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,-167,l), +(315,-135,l), +(148,-135,l), +(148,208,ls), +(148,267,o), +(115,309,o), +(78,311,c), +(78,315,l), +(113,316,o), +(148,356,o), +(148,417,cs), +(148,761,l), +(315,761,l), +(315,793,l), +(153,793,ls), +(125,793,o), +(112,775,o), +(112,750,cs), +(112,417,ls), +(112,361,o), +(80,331,o), +(49,331,cs), +(18,331,l), +(18,294,l), +(49,294,ls), +(80,294,o), +(112,264,o), +(112,209,cs), +(112,-124,ls), +(112,-149,o), +(125,-167,o), +(153,-167,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 335; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,-167,l), +(388,-24,l), +(268,-24,l), +(268,171,ls), +(268,234,o), +(247,284,o), +(179,309,c), +(179,312,l), +(232,324,o), +(268,359,o), +(268,445,cs), +(268,649,l), +(388,649,l), +(388,793,l), +(218,793,ls), +(131,793,o), +(90,738,o), +(90,667,cs), +(90,452,ls), +(90,405,o), +(67,374,o), +(27,374,cs), +(4,374,l), +(4,235,l), +(27,235,ls), +(65,235,o), +(90,207,o), +(90,159,cs), +(90,-41,ls), +(90,-112,o), +(131,-167,o), +(218,-167,cs) +); +} +); +width = 396; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,-167,l), +(344,-135,l), +(160,-135,l), +(160,208,ls), +(160,267,o), +(127,309,o), +(90,311,c), +(90,315,l), +(125,316,o), +(160,356,o), +(160,417,cs), +(160,761,l), +(344,761,l), +(344,793,l), +(165,793,ls), +(137,793,o), +(124,775,o), +(124,750,cs), +(124,417,ls), +(124,361,o), +(92,331,o), +(61,331,cs), +(13,331,l), +(13,294,l), +(61,294,ls), +(92,294,o), +(124,264,o), +(124,209,cs), +(124,-124,ls), +(124,-149,o), +(137,-167,o), +(165,-167,cs) +); +} +); +width = 359; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,-167,l), +(432,-13,l), +(292,-13,l), +(292,167,ls), +(292,230,o), +(273,281,o), +(202,309,c), +(202,312,l), +(256,325,o), +(292,360,o), +(292,448,cs), +(292,638,l), +(432,638,l), +(432,793,l), +(237,793,ls), +(144,793,o), +(101,734,o), +(101,659,cs), +(101,465,ls), +(101,418,o), +(78,387,o), +(38,387,cs), +(0,387,l), +(0,221,l), +(38,221,ls), +(76,221,o), +(101,193,o), +(101,145,cs), +(101,-33,ls), +(101,-108,o), +(144,-167,o), +(237,-167,cs) +); +} +); +width = 436; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(332,-167,l), +(332,-135,l), +(167,-135,l), +(167,208,ls), +(167,267,o), +(136,309,o), +(99,311,c), +(99,315,l), +(134,316,o), +(167,356,o), +(167,417,cs), +(167,761,l), +(332,761,l), +(332,793,l), +(172,793,ls), +(146,793,o), +(133,775,o), +(133,750,cs), +(133,417,ls), +(133,361,o), +(101,331,o), +(70,331,cs), +(41,331,l), +(41,294,l), +(70,294,ls), +(101,294,o), +(133,264,o), +(133,209,cs), +(133,-124,ls), +(133,-149,o), +(146,-167,o), +(172,-167,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 372; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(390,-167,l), +(390,-24,l), +(278,-24,l), +(278,171,ls), +(278,235,o), +(258,284,o), +(192,309,c), +(192,312,l), +(244,324,o), +(278,359,o), +(278,445,cs), +(278,649,l), +(390,649,l), +(390,793,l), +(228,793,ls), +(142,793,o), +(101,738,o), +(101,667,cs), +(101,452,ls), +(101,405,o), +(80,374,o), +(42,374,cs), +(20,374,l), +(20,235,l), +(42,235,ls), +(78,235,o), +(101,207,o), +(101,159,cs), +(101,-41,ls), +(101,-112,o), +(142,-167,o), +(228,-167,cs) +); +} +); +width = 417; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-167,l), +(142,-140,l), +(36,-140,l), +(110,210,ls), +(122,269,o), +(97,310,o), +(63,311,c), +(63,315,l), +(99,316,o), +(141,357,o), +(153,416,cs), +(226,766,l), +(332,766,l), +(338,793,l), +(239,793,ls), +(215,793,o), +(199,777,o), +(194,754,cs), +(123,415,ls), +(111,359,o), +(74,329,o), +(43,329,cs), +(22,329,l), +(15,297,l), +(36,297,ls), +(67,297,o), +(92,267,o), +(80,211,cs), +(9,-128,ls), +(4,-151,o), +(13,-167,o), +(37,-167,cs) +); +} +); +width = 235; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,-167,l), +(260,-42,l), +(182,-42,l), +(227,171,ls), +(240,232,o), +(234,282,o), +(166,309,c), +(167,312,l), +(240,328,o), +(271,380,o), +(284,446,cs), +(331,668,l), +(409,668,l), +(436,793,l), +(327,793,ls), +(240,793,o), +(187,738,o), +(172,666,cs), +(125,446,ls), +(116,399,o), +(87,368,o), +(47,368,cs), +(35,368,l), +(7,241,l), +(20,241,ls), +(58,241,o), +(78,214,o), +(67,166,cs), +(24,-40,ls), +(9,-112,o), +(38,-167,o), +(125,-167,cs) +); +} +); +width = 344; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,-167,l), +(250,-135,l), +(84,-135,l), +(156,208,ls), +(169,267,o), +(145,309,o), +(109,311,c), +(109,315,l), +(145,316,o), +(188,356,o), +(200,417,cs), +(272,761,l), +(438,761,l), +(445,793,l), +(284,793,ls), +(256,793,o), +(239,775,o), +(234,750,cs), +(164,417,ls), +(152,361,o), +(115,331,o), +(84,331,cs), +(53,331,l), +(46,294,l), +(77,294,ls), +(107,294,o), +(132,264,o), +(121,209,cs), +(51,-124,ls), +(46,-149,o), +(55,-167,o), +(82,-167,cs) +); +} +); +width = 373; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,-167,l), +(340,-24,l), +(221,-24,l), +(261,171,ls), +(274,234,o), +(264,284,o), +(202,309,c), +(203,312,l), +(258,324,o), +(301,359,o), +(318,445,cs), +(361,649,l), +(480,649,l), +(511,793,l), +(342,793,ls), +(256,793,o), +(204,738,o), +(189,667,cs), +(144,452,ls), +(134,405,o), +(105,374,o), +(65,374,cs), +(43,374,l), +(13,235,l), +(36,235,ls), +(73,235,o), +(92,207,o), +(83,159,cs), +(41,-41,ls), +(26,-112,o), +(54,-167,o), +(141,-167,cs) +); +} +); +width = 431; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,-167,l), +(268,-135,l), +(86,-135,l), +(158,208,ls), +(171,267,o), +(146,309,o), +(111,311,c), +(111,315,l), +(146,316,o), +(189,356,o), +(201,417,cs), +(274,761,l), +(456,761,l), +(463,793,l), +(286,793,ls), +(258,793,o), +(241,775,o), +(236,750,cs), +(166,417,ls), +(154,361,o), +(116,331,o), +(86,331,cs), +(38,331,l), +(31,294,l), +(78,294,ls), +(109,294,o), +(134,264,o), +(123,209,cs), +(53,-124,ls), +(48,-149,o), +(56,-167,o), +(84,-167,cs) +); +} +); +width = 376; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-167,l), +(374,-13,l), +(236,-13,l), +(273,167,ls), +(286,230,o), +(278,281,o), +(213,309,c), +(214,312,l), +(271,325,o), +(313,360,o), +(332,448,cs), +(372,638,l), +(510,638,l), +(543,793,l), +(350,793,ls), +(258,793,o), +(203,734,o), +(187,659,cs), +(146,465,ls), +(136,418,o), +(106,387,o), +(67,387,cs), +(29,387,l), +(-5,221,l), +(32,221,ls), +(70,221,o), +(89,193,o), +(79,145,cs), +(41,-33,ls), +(26,-108,o), +(56,-167,o), +(148,-167,cs) +); +} +); +width = 448; +} +); +unicode = 123; +userData = { +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/braceright.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/braceright.case.glyph new file mode 100644 index 00000000..00716ad4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/braceright.case.glyph @@ -0,0 +1,402 @@ +{ +color = 6; +glyphname = braceright.case; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +angle = 180; +pos = (346,729); +ref = braceleft.case; +} +); +width = 346; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +angle = 180; +pos = (239,729); +ref = braceleft.case; +} +); +width = 239; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +angle = 180; +pos = (373,729); +ref = braceleft.case; +} +); +width = 373; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +angle = 180; +pos = (446,729); +ref = braceleft.case; +} +); +width = 446; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +angle = 180; +pos = (223,729); +ref = braceleft.case; +} +); +width = 223; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +angle = 180; +pos = (327,729); +ref = braceleft.case; +} +); +width = 327; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (377,729); +ref = braceleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +30 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 377; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (416,729); +ref = braceleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceright; +}; +width = 416; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (373,729); +ref = braceleft.case; +} +); +width = 373; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +angle = 180; +pos = (431,729); +ref = braceleft.case; +} +); +width = 431; +}, +{ +layerId = m019; +shapes = ( +{ +angle = 180; +pos = (374,729); +ref = braceleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +30 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 374; +}, +{ +layerId = m020; +shapes = ( +{ +angle = 180; +pos = (419,729); +ref = braceleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceright; +}; +width = 419; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +angle = 180; +pos = (282,729); +ref = braceleft.case; +} +); +width = 238; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +angle = 180; +pos = (383,729); +ref = braceleft.case; +} +); +width = 344; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +angle = 180; +pos = (420,729); +ref = braceleft.case; +} +); +width = 376; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +angle = 180; +pos = (471,729); +ref = braceleft.case; +} +); +width = 433; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +angle = 180; +pos = (415,729); +ref = braceleft.case; +} +); +width = 371; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +angle = 180; +pos = (481,729); +ref = braceleft.case; +} +); +width = 443; +} +); +metricLeft = braceright; +metricRight = braceright; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/braceright.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/braceright.glyph new file mode 100644 index 00000000..31f3dd86 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/braceright.glyph @@ -0,0 +1,338 @@ +{ +color = 6; +glyphname = braceright; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (344,626); +ref = braceleft; +} +); +width = 344; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (236,626); +ref = braceleft; +} +); +width = 236; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (379,626); +ref = braceleft; +} +); +width = 379; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (451,626); +ref = braceleft; +} +); +width = 451; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (220,626); +ref = braceleft; +} +); +width = 220; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (326,626); +ref = braceleft; +} +); +width = 326; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (375,626); +ref = braceleft; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 375; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (408,626); +ref = braceleft; +} +); +width = 408; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (379,626); +ref = braceleft; +} +); +width = 379; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (436,626); +ref = braceleft; +} +); +width = 436; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (372,626); +ref = braceleft; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 372; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (417,626); +ref = braceleft; +} +); +width = 417; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (258,626); +ref = braceleft; +} +); +width = 235; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (362,626); +ref = braceleft; +} +); +width = 344; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (396,626); +ref = braceleft; +} +); +width = 373; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (448,626); +ref = braceleft; +} +); +width = 431; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (399,626); +ref = braceleft; +} +); +width = 376; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (465,626); +ref = braceleft; +} +); +width = 448; +} +); +metricLeft = "=|braceleft"; +metricRight = "=|braceleft"; +unicode = 125; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/bracketleft.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/bracketleft.case.glyph new file mode 100644 index 00000000..a06c4525 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/bracketleft.case.glyph @@ -0,0 +1,457 @@ +{ +glyphname = bracketleft.case; +kernRight = KO_bracketleft.case; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-63,l), +(302,62,l), +(192,62,l), +(192,668,l), +(302,668,l), +(302,793,l), +(32,793,l), +(32,-63,l) +); +} +); +width = 319; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-63,l), +(209,-35,l), +(102,-35,l), +(102,765,l), +(209,765,l), +(209,793,l), +(72,793,l), +(72,-63,l) +); +} +); +width = 219; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,-63,l), +(308,-31,l), +(115,-31,l), +(115,761,l), +(308,761,l), +(308,793,l), +(79,793,l), +(79,-63,l) +); +} +); +width = 334; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(382,-63,l), +(382,90,l), +(243,90,l), +(243,639,l), +(382,639,l), +(382,793,l), +(51,793,l), +(51,-63,l) +); +} +); +width = 399; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,-63,l), +(189,-35,l), +(82,-35,l), +(82,765,l), +(189,765,l), +(189,793,l), +(52,793,l), +(52,-63,l) +); +} +); +width = 191; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-63,l), +(292,62,l), +(182,62,l), +(182,668,l), +(292,668,l), +(292,793,l), +(22,793,l), +(22,-63,l) +); +} +); +width = 299; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,-63,l), +(281,-31,l), +(114,-31,l), +(114,761,l), +(281,761,l), +(281,793,l), +(78,793,l), +(78,-63,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = bracketleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft.case; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 302; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-63,l), +(338,70,l), +(218,70,l), +(218,659,l), +(338,659,l), +(338,793,l), +(40,793,l), +(40,-63,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = bracketleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft.case; +}; +width = 347; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,-63,l), +(298,-31,l), +(105,-31,l), +(105,761,l), +(298,761,l), +(298,793,l), +(69,793,l), +(69,-63,l) +); +} +); +width = 314; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(372,-63,l), +(372,90,l), +(233,90,l), +(233,639,l), +(372,639,l), +(372,793,l), +(41,793,l), +(41,-63,l) +); +} +); +width = 379; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-63,l), +(302,-31,l), +(139,-31,l), +(139,761,l), +(302,761,l), +(302,793,l), +(103,793,l), +(103,-63,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = bracketleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft.case; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 345; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(347,-63,l), +(347,70,l), +(239,70,l), +(239,659,l), +(347,659,l), +(347,793,l), +(62,793,l), +(62,-63,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = bracketleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft.case; +}; +width = 375; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,-63,l), +(145,-35,l), +(40,-35,l), +(208,765,l), +(314,765,l), +(319,793,l), +(183,793,l), +(5,-63,l) +); +} +); +width = 219; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,-63,l), +(285,70,l), +(166,70,l), +(289,659,l), +(408,659,l), +(436,793,l), +(141,793,l), +(-38,-63,l) +); +} +); +width = 345; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,-63,l), +(242,-31,l), +(76,-31,l), +(242,761,l), +(408,761,l), +(414,793,l), +(213,793,l), +(35,-63,l) +); +} +); +width = 345; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,-63,l), +(317,70,l), +(199,70,l), +(322,659,l), +(441,659,l), +(468,793,l), +(173,793,l), +(-5,-63,l) +); +} +); +width = 391; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,-63,l), +(245,-31,l), +(54,-31,l), +(220,761,l), +(411,761,l), +(417,793,l), +(190,793,l), +(12,-63,l) +); +} +); +width = 333; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(310,-63,l), +(342,90,l), +(203,90,l), +(318,639,l), +(457,639,l), +(488,793,l), +(160,793,l), +(-18,-63,l) +); +} +); +width = 397; +} +); +userData = { +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/bracketleft.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/bracketleft.glyph new file mode 100644 index 00000000..35bd769d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/bracketleft.glyph @@ -0,0 +1,448 @@ +{ +glyphname = bracketleft; +kernRight = KO_bracketleft; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-167,l), +(302,-42,l), +(193,-42,l), +(193,660,l), +(302,660,l), +(302,793,l), +(32,793,l), +(32,-167,l) +); +} +); +width = 318; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-167,l), +(209,-140,l), +(102,-140,l), +(102,766,l), +(209,766,l), +(209,793,l), +(72,793,l), +(72,-167,l) +); +} +); +width = 217; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,-167,l), +(308,-135,l), +(115,-135,l), +(115,761,l), +(308,761,l), +(308,793,l), +(79,793,l), +(79,-167,l) +); +} +); +width = 333; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(382,-167,l), +(382,-12,l), +(243,-12,l), +(243,638,l), +(382,638,l), +(382,793,l), +(51,793,l), +(51,-167,l) +); +} +); +width = 396; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,-167,l), +(189,-140,l), +(82,-140,l), +(82,766,l), +(189,766,l), +(189,793,l), +(52,793,l), +(52,-167,l) +); +} +); +width = 189; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-167,l), +(292,-42,l), +(183,-42,l), +(183,660,l), +(292,660,l), +(292,793,l), +(22,793,l), +(22,-167,l) +); +} +); +width = 299; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,-167,l), +(281,-135,l), +(114,-135,l), +(114,761,l), +(281,761,l), +(281,793,l), +(78,793,l), +(78,-167,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 301; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-167,l), +(338,-24,l), +(218,-24,l), +(218,649,l), +(338,649,l), +(338,793,l), +(40,793,l), +(40,-167,l) +); +} +); +width = 346; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,-167,l), +(298,-135,l), +(105,-135,l), +(105,761,l), +(298,761,l), +(298,793,l), +(69,793,l), +(69,-167,l) +); +} +); +width = 313; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(372,-167,l), +(372,-12,l), +(233,-12,l), +(233,638,l), +(372,638,l), +(372,793,l), +(41,793,l), +(41,-167,l) +); +} +); +width = 376; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-167,l), +(302,-135,l), +(139,-135,l), +(139,761,l), +(302,761,l), +(302,793,l), +(103,793,l), +(103,-167,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 344; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(347,-167,l), +(347,-24,l), +(239,-24,l), +(239,649,l), +(347,649,l), +(347,793,l), +(62,793,l), +(62,-167,l) +); +} +); +width = 374; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,-167,l), +(124,-140,l), +(18,-140,l), +(208,766,l), +(314,766,l), +(320,793,l), +(184,793,l), +(-18,-167,l) +); +} +); +width = 217; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,-167,l), +(232,-42,l), +(124,-42,l), +(272,660,l), +(380,660,l), +(408,793,l), +(141,793,l), +(-61,-167,l) +); +} +); +width = 316; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(214,-167,l), +(221,-135,l), +(56,-135,l), +(243,761,l), +(409,761,l), +(416,793,l), +(215,793,l), +(13,-167,l) +); +} +); +width = 344; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(267,-167,l), +(298,-24,l), +(179,-24,l), +(320,649,l), +(439,649,l), +(469,793,l), +(174,793,l), +(-28,-167,l) +); +} +); +width = 390; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,-167,l), +(223,-135,l), +(32,-135,l), +(220,761,l), +(411,761,l), +(418,793,l), +(191,793,l), +(-11,-167,l) +); +} +); +width = 331; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-167,l), +(319,-12,l), +(182,-12,l), +(317,638,l), +(456,638,l), +(488,793,l), +(160,793,l), +(-41,-167,l) +); +} +); +width = 393; +} +); +unicode = 91; +userData = { +KernOnName = bracketleft; +KernOnSpecialSpacing = { +L = NoKerning; +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/bracketright.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/bracketright.case.glyph new file mode 100644 index 00000000..36b75ff0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/bracketright.case.glyph @@ -0,0 +1,295 @@ +{ +color = 6; +glyphname = bracketright.case; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +angle = 180; +pos = (319,729); +ref = bracketleft.case; +} +); +width = 319; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +angle = 180; +pos = (219,729); +ref = bracketleft.case; +} +); +width = 219; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +angle = 180; +pos = (334,729); +ref = bracketleft.case; +} +); +width = 334; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +angle = 180; +pos = (399,729); +ref = bracketleft.case; +} +); +width = 399; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +angle = 180; +pos = (191,729); +ref = bracketleft.case; +} +); +width = 191; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (319,729); +ref = bracketleft.case; +} +); +width = 319; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +angle = 180; +pos = (302,729); +ref = bracketleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright.case; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = bracketright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 302; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +angle = 180; +pos = (347,729); +ref = bracketleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright.case; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = bracketright; +}; +width = 347; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (334,729); +ref = bracketleft.case; +} +); +width = 334; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (399,729); +ref = bracketleft.case; +} +); +width = 399; +}, +{ +layerId = m019; +shapes = ( +{ +angle = 180; +pos = (345,729); +ref = bracketleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright.case; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = bracketright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 345; +}, +{ +layerId = m020; +shapes = ( +{ +angle = 180; +pos = (375,729); +ref = bracketleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright.case; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = bracketright; +}; +width = 375; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +angle = 180; +pos = (263,729); +ref = bracketleft.case; +} +); +width = 219; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +angle = 180; +pos = (384,729); +ref = bracketleft.case; +} +); +width = 345; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +angle = 180; +pos = (389,729); +ref = bracketleft.case; +} +); +width = 345; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +angle = 180; +pos = (429,729); +ref = bracketleft.case; +} +); +width = 391; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +angle = 180; +pos = (377,729); +ref = bracketleft.case; +} +); +width = 333; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +angle = 180; +pos = (435,729); +ref = bracketleft.case; +} +); +width = 397; +} +); +metricLeft = braceright.case; +metricRight = bracketright; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/bracketright.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/bracketright.glyph new file mode 100644 index 00000000..4c6f8513 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/bracketright.glyph @@ -0,0 +1,324 @@ +{ +color = 6; +glyphname = bracketright; +kernLeft = KO_bracketright; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (318,626); +ref = bracketleft; +} +); +width = 318; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (217,626); +ref = bracketleft; +} +); +width = 217; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (333,626); +ref = bracketleft; +} +); +width = 333; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (396,626); +ref = bracketleft; +} +); +width = 396; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (189,626); +ref = bracketleft; +} +); +width = 189; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (299,626); +ref = bracketleft; +} +); +width = 299; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (301,626); +ref = bracketleft; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 301; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (346,626); +ref = bracketleft; +} +); +width = 346; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (333,626); +ref = bracketleft; +} +); +width = 333; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (396,626); +ref = bracketleft; +} +); +width = 396; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (344,626); +ref = bracketleft; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 344; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (374,626); +ref = bracketleft; +} +); +width = 374; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (240,626); +ref = bracketleft; +} +); +width = 217; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (334,626); +ref = bracketleft; +} +); +width = 316; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (367,626); +ref = bracketleft; +} +); +width = 344; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (407,626); +ref = bracketleft; +} +); +width = 390; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (354,626); +ref = bracketleft; +} +); +width = 331; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (410,626); +ref = bracketleft; +} +); +width = 393; +} +); +metricLeft = "=|bracketleft"; +metricRight = "=|bracketleft"; +unicode = 93; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/breve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/breve.glyph new file mode 100644 index 00000000..5f648dc1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/breve.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = breve; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 247; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 388; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 347; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 478; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = brevecomb; +} +); +width = 247; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = brevecomb; +} +); +width = 388; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = brevecomb; +} +); +width = 336; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = brevecomb; +} +); +width = 418; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = brevecomb; +} +); +width = 347; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = brevecomb; +} +); +width = 478; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 335; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 421; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 249; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 383; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 334; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 439; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 345; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 457; +} +); +unicode = 728; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb.glyph new file mode 100644 index 00000000..75072c3f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb.glyph @@ -0,0 +1,626 @@ +{ +glyphname = brevecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (195,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,721,o), +(348,773,o), +(348,884,c), +(229,884,l), +(228,849,o), +(221,825,o), +(194,825,cs), +(173,825,o), +(159,837,o), +(159,884,c), +(40,884,l), +(39,786,o), +(88,721,o), +(194,721,cs) +); +} +); +width = 388; +}, +{ +anchors = ( +{ +name = _top; +pos = (124,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,741,o), +(207,790,o), +(207,882,c), +(180,882,l), +(181,808,o), +(160,769,o), +(124,769,cs), +(87,769,o), +(68,807,o), +(68,882,c), +(40,882,l), +(41,790,o), +(69,741,o), +(124,741,cs) +); +} +); +width = 247; +}, +{ +anchors = ( +{ +name = _top; +pos = (174,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,742,o), +(307,790,o), +(307,882,c), +(270,882,l), +(271,811,o), +(236,773,o), +(174,773,cs), +(111,773,o), +(78,810,o), +(78,882,c), +(40,882,l), +(41,790,o), +(87,742,o), +(174,742,cs) +); +} +); +width = 347; +}, +{ +anchors = ( +{ +name = _top; +pos = (239,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,725,o), +(438,786,o), +(438,878,c), +(293,878,l), +(294,840,o), +(271,822,o), +(239,822,cs), +(207,822,o), +(184,840,o), +(185,878,c), +(40,878,l), +(40,786,o), +(119,725,o), +(239,725,cs) +); +} +); +width = 478; +}, +{ +anchors = ( +{ +name = _top; +pos = (104,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,741,o), +(187,790,o), +(187,882,c), +(160,882,l), +(161,808,o), +(140,769,o), +(104,769,cs), +(67,769,o), +(48,807,o), +(48,882,c), +(20,882,l), +(21,790,o), +(49,741,o), +(104,741,cs) +); +} +); +width = 207; +}, +{ +anchors = ( +{ +name = _top; +pos = (185,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,721,o), +(338,773,o), +(338,884,c), +(219,884,l), +(218,849,o), +(211,825,o), +(184,825,cs), +(163,825,o), +(149,837,o), +(149,884,c), +(30,884,l), +(29,786,o), +(78,721,o), +(184,721,cs) +); +} +); +width = 368; +}, +{ +anchors = ( +{ +name = _top; +pos = (148,678); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,742,o), +(275,790,o), +(276,882,c), +(240,882,l), +(240,810,o), +(208,773,o), +(148,773,cs), +(88,773,o), +(56,810,o), +(56,882,c), +(20,882,l), +(21,790,o), +(66,742,o), +(148,742,cs) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = _top; +pos = (198,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,729,o), +(377,791,o), +(377,884,c), +(257,884,l), +(257,846,o), +(232,828,o), +(198,828,cs), +(164,828,o), +(139,846,o), +(139,884,c), +(19,884,l), +(19,791,o), +(91,729,o), +(198,729,cs) +); +} +); +width = 396; +}, +{ +anchors = ( +{ +name = _top; +pos = (164,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,742,o), +(297,790,o), +(297,882,c), +(260,882,l), +(261,811,o), +(226,773,o), +(164,773,cs), +(101,773,o), +(68,810,o), +(68,882,c), +(30,882,l), +(31,790,o), +(77,742,o), +(164,742,cs) +); +} +); +width = 327; +}, +{ +anchors = ( +{ +name = _top; +pos = (229,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(349,725,o), +(428,786,o), +(428,878,c), +(283,878,l), +(284,840,o), +(261,822,o), +(229,822,cs), +(197,822,o), +(174,840,o), +(175,878,c), +(30,878,l), +(30,786,o), +(109,725,o), +(229,725,cs) +); +} +); +width = 458; +}, +{ +anchors = ( +{ +name = _top; +pos = (167,678); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(248,742,o), +(292,790,o), +(293,882,c), +(257,882,l), +(257,810,o), +(227,773,o), +(167,773,cs), +(109,773,o), +(77,810,o), +(77,882,c), +(43,882,l), +(44,790,o), +(87,742,o), +(167,742,cs) +); +} +); +width = 335; +}, +{ +anchors = ( +{ +name = _top; +pos = (211,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(314,729,o), +(383,791,o), +(383,884,c), +(265,884,l), +(265,846,o), +(242,828,o), +(211,828,cs), +(180,828,o), +(156,846,o), +(156,884,c), +(39,884,l), +(39,791,o), +(108,729,o), +(211,729,cs) +); +} +); +width = 421; +}, +{ +anchors = ( +{ +name = _top; +pos = (214,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(291,740,o), +(330,785,o), +(345,882,c), +(318,882,l), +(304,810,o), +(283,769,o), +(242,769,cs), +(196,770,o), +(196,823,o), +(207,882,c), +(180,882,l), +(165,806,o), +(177,742,o), +(243,741,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,739,o), +(323,783,o), +(337,882,c), +(308,882,l), +(296,800,o), +(272,766,o), +(235,768,cs), +(198,770,o), +(186,810,o), +(197,882,c), +(169,882,l), +(158,800,o), +(173,743,o), +(233,741,cs) +); +} +); +width = 249; +}, +{ +anchors = ( +{ +name = _top; +pos = (280,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,721,o), +(455,774,o), +(469,886,c), +(355,886,l), +(348,846,o), +(335,825,o), +(310,825,cs), +(288,825,o), +(277,840,o), +(284,886,c), +(167,886,l), +(149,784,o), +(194,721,o), +(296,721,cs) +); +} +); +width = 383; +}, +{ +anchors = ( +{ +name = _top; +pos = (256,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(357,743,o), +(419,783,o), +(430,877,c), +(394,877,l), +(387,814,o), +(350,773,o), +(284,773,cs), +(228,773,o), +(191,801,o), +(205,877,c), +(169,877,l), +(155,796,o), +(204,743,o), +(278,743,cs) +); +} +); +}; +guides = ( +{ +pos = (48,882); +}, +{ +pos = (176,742); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,742,o), +(411,798,o), +(423,882,c), +(387,882,l), +(379,816,o), +(338,772,o), +(275,772,cs), +(217,772,o), +(188,812,o), +(205,882,c), +(169,882,l), +(153,798,o), +(195,742,o), +(273,742,cs) +); +} +); +width = 334; +}, +{ +anchors = ( +{ +name = _top; +pos = (312,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,720,o), +(516,779,o), +(524,884,c), +(405,884,l), +(403,849,o), +(380,825,o), +(343,825,cs), +(305,825,o), +(282,846,o), +(286,884,c), +(167,884,l), +(156,786,o), +(226,720,o), +(333,720,cs) +); +} +); +width = 439; +}, +{ +anchors = ( +{ +name = _top; +pos = (265,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,742,o), +(422,791,o), +(433,882,c), +(397,882,l), +(390,818,o), +(354,774,o), +(288,774,cs), +(229,774,o), +(197,809,o), +(207,882,c), +(169,882,l), +(159,793,o), +(201,742,o), +(285,742,cs) +); +} +); +width = 345; +}, +{ +anchors = ( +{ +name = _top; +pos = (322,678); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,729,o), +(535,785,o), +(542,884,c), +(421,884,l), +(418,847,o), +(391,828,o), +(351,828,cs), +(312,828,o), +(287,849,o), +(289,884,c), +(167,884,l), +(162,791,o), +(235,729,o), +(343,729,cs) +); +} +); +width = 457; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 774; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_acutecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_acutecomb.glyph new file mode 100644 index 00000000..15ff5ccd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_acutecomb.glyph @@ -0,0 +1,759 @@ +{ +glyphname = brevecomb_acutecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (124,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,726,o), +(207,775,o), +(207,867,c), +(180,867,l), +(181,793,o), +(160,754,o), +(124,754,cs), +(87,754,o), +(68,792,o), +(68,867,c), +(40,867,l), +(41,775,o), +(69,726,o), +(124,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,880,l), +(182,982,l), +(149,982,l), +(107,880,l) +); +} +); +width = 247; +}, +{ +anchors = ( +{ +name = _top; +pos = (194,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,709,o), +(348,752,o), +(348,845,c), +(229,845,l), +(228,816,o), +(221,796,o), +(194,796,cs), +(173,796,o), +(159,806,o), +(159,845,c), +(40,845,l), +(39,763,o), +(88,709,o), +(194,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,874,l), +(352,984,l), +(203,984,l), +(146,874,l) +); +} +); +width = 392; +}, +{ +anchors = ( +{ +name = _top; +pos = (173,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,741,o), +(306,791,o), +(307,866,c), +(269,866,l), +(269,806,o), +(231,772,o), +(173,772,cs), +(111,772,o), +(76,810,o), +(77,866,c), +(40,866,l), +(40,791,o), +(93,741,o), +(173,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(189,866,l), +(257,982,l), +(212,982,l), +(154,866,l) +); +} +); +width = 347; +}, +{ +anchors = ( +{ +name = _top; +pos = (240,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,709,o), +(433,763,o), +(438,845,c), +(283,845,l), +(282,822,o), +(265,808,o), +(239,808,cs), +(214,808,o), +(196,822,o), +(195,845,c), +(40,845,l), +(45,758,o), +(124,709,o), +(239,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,869,l), +(408,984,l), +(222,984,l), +(166,869,l) +); +} +); +width = 478; +}, +{ +anchors = ( +{ +name = _top; +pos = (104,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,726,o), +(187,775,o), +(187,867,c), +(160,867,l), +(161,793,o), +(140,754,o), +(104,754,cs), +(67,754,o), +(48,792,o), +(48,867,c), +(20,867,l), +(21,775,o), +(49,726,o), +(104,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,880,l), +(162,982,l), +(129,982,l), +(87,880,l) +); +} +); +width = 207; +}, +{ +anchors = ( +{ +name = _top; +pos = (184,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,709,o), +(338,752,o), +(338,845,c), +(219,845,l), +(218,816,o), +(211,796,o), +(184,796,cs), +(163,796,o), +(149,806,o), +(149,845,c), +(30,845,l), +(29,763,o), +(78,709,o), +(184,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(245,874,l), +(342,984,l), +(193,984,l), +(136,874,l) +); +} +); +width = 372; +}, +{ +anchors = ( +{ +name = _top; +pos = (148,678); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(224,741,o), +(275,791,o), +(276,867,c), +(240,867,l), +(240,806,o), +(203,772,o), +(148,772,cs), +(89,772,o), +(56,810,o), +(56,867,c), +(20,867,l), +(21,791,o), +(72,741,o), +(148,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,867,l), +(227,982,l), +(186,982,l), +(128,867,l) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = _top; +pos = (198,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,709,o), +(377,764,o), +(377,845,c), +(247,845,l), +(247,819,o), +(229,802,o), +(198,802,cs), +(167,802,o), +(149,819,o), +(149,845,c), +(19,845,l), +(19,764,o), +(91,709,o), +(198,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,875,l), +(355,984,l), +(198,984,l), +(141,875,l) +); +} +); +width = 396; +}, +{ +anchors = ( +{ +name = _top; +pos = (163,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,741,o), +(296,791,o), +(297,866,c), +(259,866,l), +(259,806,o), +(221,772,o), +(163,772,cs), +(101,772,o), +(66,810,o), +(67,866,c), +(30,866,l), +(30,791,o), +(83,741,o), +(163,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(179,866,l), +(247,982,l), +(202,982,l), +(144,866,l) +); +} +); +width = 327; +}, +{ +anchors = ( +{ +name = _top; +pos = (230,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,709,o), +(423,763,o), +(428,845,c), +(273,845,l), +(272,822,o), +(255,808,o), +(229,808,cs), +(204,808,o), +(186,822,o), +(185,845,c), +(30,845,l), +(35,758,o), +(114,709,o), +(229,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,869,l), +(398,984,l), +(212,984,l), +(156,869,l) +); +} +); +width = 458; +}, +{ +anchors = ( +{ +name = _top; +pos = (167,678); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(243,741,o), +(292,791,o), +(293,867,c), +(257,867,l), +(257,806,o), +(222,772,o), +(167,772,cs), +(110,772,o), +(77,810,o), +(77,867,c), +(43,867,l), +(44,791,o), +(93,741,o), +(167,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(178,867,l), +(246,982,l), +(205,982,l), +(149,867,l) +); +} +); +width = 335; +}, +{ +anchors = ( +{ +name = _top; +pos = (211,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(314,709,o), +(383,764,o), +(383,845,c), +(254,845,l), +(254,819,o), +(239,802,o), +(211,802,cs), +(183,802,o), +(167,819,o), +(167,845,c), +(39,845,l), +(39,764,o), +(108,709,o), +(211,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,875,l), +(364,984,l), +(209,984,l), +(154,875,l) +); +} +); +width = 421; +}, +{ +anchors = ( +{ +name = _top; +pos = (211,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(277,726,o), +(313,776,o), +(330,867,c), +(302,867,l), +(289,794,o), +(263,754,o), +(229,754,cs), +(182,754,o), +(179,809,o), +(190,867,c), +(163,867,l), +(150,790,o), +(160,726,o), +(226,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(324,971,l), +(292,974,l), +(231,881,l), +(260,879,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,726,o), +(320,775,o), +(331,867,c), +(302,867,l), +(293,790,o), +(263,752,o), +(229,752,cs), +(189,752,o), +(179,790,o), +(194,867,c), +(166,867,l), +(148,776,o), +(170,726,o), +(229,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,880,l), +(324,982,l), +(292,982,l), +(231,880,l) +); +} +); +width = 246; +}, +{ +anchors = ( +{ +name = _top; +pos = (280,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,709,o), +(451,752,o), +(461,845,c), +(345,845,l), +(342,813,o), +(328,796,o), +(303,796,cs), +(281,796,o), +(269,814,o), +(273,845,c), +(159,845,l), +(155,763,o), +(209,709,o), +(293,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,874,l), +(476,998,l), +(311,998,l), +(242,874,l) +); +} +); +width = 383; +}, +{ +anchors = ( +{ +name = _top; +pos = (262,678); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,741,o), +(414,786,o), +(421,867,c), +(387,867,l), +(381,809,o), +(346,770,o), +(281,770,cs), +(227,770,o), +(191,801,o), +(200,867,c), +(166,867,l), +(160,791,o), +(205,741,o), +(279,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(303,867,l), +(385,982,l), +(345,982,l), +(271,867,l) +); +} +); +width = 336; +}, +{ +anchors = ( +{ +name = _top; +pos = (310,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(431,709,o), +(505,763,o), +(516,845,c), +(387,845,l), +(384,816,o), +(363,802,o), +(334,802,cs), +(306,802,o), +(288,819,o), +(288,845,c), +(159,845,l), +(157,763,o), +(223,709,o), +(323,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(402,875,l), +(520,984,l), +(363,984,l), +(284,875,l) +); +} +); +width = 438; +}, +{ +anchors = ( +{ +name = _top; +pos = (268,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(369,740,o), +(430,789,o), +(435,866,c), +(399,866,l), +(394,809,o), +(354,771,o), +(288,771,cs), +(230,771,o), +(196,809,o), +(202,866,c), +(166,866,l), +(161,791,o), +(209,740,o), +(285,740,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,867,l), +(404,982,l), +(357,982,l), +(269,867,l) +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = _top; +pos = (331,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(474,709,o), +(550,771,o), +(557,845,c), +(402,845,l), +(400,822,o), +(379,808,o), +(354,808,cs), +(329,808,o), +(313,823,o), +(313,845,c), +(159,845,l), +(167,758,o), +(237,709,o), +(349,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(428,869,l), +(556,984,l), +(370,984,l), +(290,869,l) +); +} +); +width = 479; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_gravecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_gravecomb.glyph new file mode 100644 index 00000000..5ef1cc8a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_gravecomb.glyph @@ -0,0 +1,727 @@ +{ +glyphname = brevecomb_gravecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (123,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,726,o), +(207,775,o), +(207,867,c), +(180,867,l), +(181,793,o), +(160,754,o), +(124,754,cs), +(87,754,o), +(68,792,o), +(68,867,c), +(40,867,l), +(41,775,o), +(69,726,o), +(124,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(141,880,l), +(99,982,l), +(66,982,l), +(112,880,l) +); +} +); +width = 247; +}, +{ +anchors = ( +{ +name = _top; +pos = (198,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,709,o), +(353,763,o), +(352,845,c), +(233,845,l), +(233,806,o), +(219,796,o), +(198,796,cs), +(171,796,o), +(164,816,o), +(163,845,c), +(44,845,l), +(44,752,o), +(106,709,o), +(198,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,874,l), +(189,984,l), +(40,984,l), +(137,874,l) +); +} +); +width = 392; +}, +{ +anchors = ( +{ +name = _top; +pos = (174,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,741,o), +(307,791,o), +(307,866,c), +(270,866,l), +(271,810,o), +(236,772,o), +(174,772,cs), +(116,772,o), +(78,806,o), +(78,866,c), +(40,866,l), +(41,791,o), +(95,741,o), +(174,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(193,866,l), +(135,982,l), +(90,982,l), +(158,866,l) +); +} +); +width = 347; +}, +{ +anchors = ( +{ +name = _top; +pos = (238,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(354,709,o), +(433,758,o), +(438,845,c), +(283,845,l), +(282,822,o), +(264,808,o), +(239,808,cs), +(213,808,o), +(196,822,o), +(195,845,c), +(40,845,l), +(45,763,o), +(116,709,o), +(239,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,869,l), +(256,984,l), +(70,984,l), +(174,869,l) +); +} +); +width = 478; +}, +{ +anchors = ( +{ +name = _top; +pos = (103,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,726,o), +(187,775,o), +(187,867,c), +(160,867,l), +(161,793,o), +(140,754,o), +(104,754,cs), +(67,754,o), +(48,792,o), +(48,867,c), +(20,867,l), +(21,775,o), +(49,726,o), +(104,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,880,l), +(79,982,l), +(46,982,l), +(92,880,l) +); +} +); +width = 207; +}, +{ +anchors = ( +{ +name = _top; +pos = (188,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,709,o), +(343,763,o), +(342,845,c), +(223,845,l), +(223,806,o), +(209,796,o), +(188,796,cs), +(161,796,o), +(154,816,o), +(153,845,c), +(34,845,l), +(34,752,o), +(96,709,o), +(188,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,874,l), +(179,984,l), +(30,984,l), +(127,874,l) +); +} +); +width = 372; +}, +{ +anchors = ( +{ +name = _top; +pos = (148,678); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(224,741,o), +(275,791,o), +(276,867,c), +(240,867,l), +(240,810,o), +(207,772,o), +(148,772,cs), +(93,772,o), +(56,806,o), +(56,867,c), +(20,867,l), +(21,791,o), +(72,741,o), +(148,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,867,l), +(110,982,l), +(69,982,l), +(137,867,l) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = _top; +pos = (198,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,709,o), +(377,764,o), +(377,845,c), +(247,845,l), +(247,819,o), +(229,802,o), +(198,802,cs), +(167,802,o), +(149,819,o), +(149,845,c), +(19,845,l), +(19,764,o), +(91,709,o), +(198,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,875,l), +(198,984,l), +(41,984,l), +(137,875,l) +); +} +); +width = 396; +}, +{ +anchors = ( +{ +name = _top; +pos = (164,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,741,o), +(297,791,o), +(297,866,c), +(260,866,l), +(261,810,o), +(226,772,o), +(164,772,cs), +(106,772,o), +(68,806,o), +(68,866,c), +(30,866,l), +(31,791,o), +(85,741,o), +(164,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(183,866,l), +(125,982,l), +(80,982,l), +(148,866,l) +); +} +); +width = 327; +}, +{ +anchors = ( +{ +name = _top; +pos = (228,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,709,o), +(423,758,o), +(428,845,c), +(273,845,l), +(272,822,o), +(254,808,o), +(229,808,cs), +(203,808,o), +(186,822,o), +(185,845,c), +(30,845,l), +(35,763,o), +(106,709,o), +(229,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,869,l), +(246,984,l), +(60,984,l), +(164,869,l) +); +} +); +width = 458; +}, +{ +anchors = ( +{ +name = _top; +pos = (167,678); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(243,741,o), +(292,791,o), +(293,867,c), +(257,867,l), +(257,810,o), +(226,772,o), +(167,772,cs), +(114,772,o), +(77,806,o), +(77,867,c), +(43,867,l), +(44,791,o), +(93,741,o), +(167,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(187,867,l), +(131,982,l), +(90,982,l), +(156,867,l) +); +} +); +width = 335; +}, +{ +anchors = ( +{ +name = _top; +pos = (211,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(314,709,o), +(383,764,o), +(383,845,c), +(254,845,l), +(254,819,o), +(239,802,o), +(211,802,cs), +(183,802,o), +(167,819,o), +(167,845,c), +(39,845,l), +(39,764,o), +(108,709,o), +(211,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,875,l), +(213,984,l), +(58,984,l), +(150,875,l) +); +} +); +width = 421; +}, +{ +anchors = ( +{ +name = _top; +pos = (205,673); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,726,o), +(320,775,o), +(331,867,c), +(302,867,l), +(293,790,o), +(263,752,o), +(229,752,cs), +(189,752,o), +(179,790,o), +(194,867,c), +(166,867,l), +(148,776,o), +(170,726,o), +(229,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,880,l), +(239,982,l), +(209,982,l), +(235,880,l) +); +} +); +width = 246; +}, +{ +anchors = ( +{ +name = _top; +pos = (293,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,709,o), +(464,752,o), +(474,845,c), +(358,845,l), +(355,813,o), +(341,796,o), +(316,796,cs), +(294,796,o), +(282,814,o), +(286,845,c), +(172,845,l), +(168,763,o), +(222,709,o), +(306,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(385,874,l), +(355,998,l), +(191,998,l), +(258,874,l) +); +} +); +width = 396; +}, +{ +anchors = ( +{ +name = _top; +pos = (261,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,741,o), +(414,786,o), +(421,867,c), +(387,867,l), +(381,809,o), +(346,770,o), +(281,770,cs), +(227,770,o), +(191,801,o), +(200,867,c), +(166,867,l), +(160,791,o), +(205,741,o), +(279,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(307,867,l), +(266,983,l), +(230,983,l), +(278,867,l) +); +} +); +width = 336; +}, +{ +anchors = ( +{ +name = _top; +pos = (310,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(431,709,o), +(505,763,o), +(516,845,c), +(387,845,l), +(384,816,o), +(363,802,o), +(334,802,cs), +(306,802,o), +(288,819,o), +(288,845,c), +(159,845,l), +(157,763,o), +(223,709,o), +(323,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(405,875,l), +(370,984,l), +(213,984,l), +(287,875,l) +); +} +); +width = 438; +}, +{ +anchors = ( +{ +name = _top; +pos = (268,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(369,740,o), +(430,789,o), +(435,866,c), +(399,866,l), +(394,809,o), +(354,771,o), +(288,771,cs), +(230,771,o), +(196,809,o), +(202,866,c), +(166,866,l), +(161,791,o), +(209,740,o), +(285,740,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,867,l), +(260,982,l), +(218,982,l), +(277,867,l) +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = _top; +pos = (331,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(474,709,o), +(550,771,o), +(557,845,c), +(402,845,l), +(400,822,o), +(379,808,o), +(354,808,cs), +(329,808,o), +(313,823,o), +(313,845,c), +(159,845,l), +(167,758,o), +(237,709,o), +(349,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(433,869,l), +(401,984,l), +(217,984,l), +(297,869,l) +); +} +); +width = 479; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_hookabovecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_hookabovecomb.glyph new file mode 100644 index 00000000..f277e5a2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_hookabovecomb.glyph @@ -0,0 +1,1303 @@ +{ +glyphname = brevecomb_hookabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (123,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,726,o), +(207,775,o), +(207,867,c), +(180,867,l), +(181,793,o), +(160,754,o), +(124,754,cs), +(87,754,o), +(68,792,o), +(68,867,c), +(40,867,l), +(41,775,o), +(69,726,o), +(124,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,884,o), +(168,906,o), +(168,932,cs), +(168,962,o), +(147,982,o), +(114,982,cs), +(103,982,o), +(88,980,o), +(76,975,c), +(76,949,l), +(85,954,o), +(97,956,o), +(107,956,cs), +(124,956,o), +(136,946,o), +(136,929,cs), +(136,910,o), +(125,899,o), +(104,884,c), +(119,866,l) +); +} +); +width = 247; +}, +{ +anchors = ( +{ +name = _top; +pos = (194,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(286,709,o), +(348,752,o), +(348,845,c), +(229,845,l), +(228,816,o), +(221,796,o), +(194,796,cs), +(173,796,o), +(159,806,o), +(159,845,c), +(40,845,l), +(39,763,o), +(88,709,o), +(194,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,880,o), +(281,909,o), +(281,943,cs), +(281,989,o), +(232,1008,o), +(178,1008,cs), +(161,1008,o), +(140,1006,o), +(121,1001,c), +(121,948,l), +(127,950,o), +(137,951,o), +(145,951,cs), +(160,951,o), +(176,946,o), +(176,932,cs), +(176,921,o), +(168,913,o), +(155,905,c), +(189,855,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,709,o), +(348,752,o), +(348,845,c), +(229,845,l), +(228,816,o), +(221,796,o), +(194,796,cs), +(173,796,o), +(159,806,o), +(159,845,c), +(40,845,l), +(39,763,o), +(88,709,o), +(194,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(269,871,o), +(301,902,o), +(301,940,cs), +(301,986,o), +(252,1005,o), +(198,1005,cs), +(175,1005,o), +(144,1001,o), +(121,991,c), +(121,938,l), +(127,940,o), +(137,941,o), +(145,941,cs), +(160,941,o), +(176,936,o), +(176,922,cs), +(176,911,o), +(168,903,o), +(155,895,c), +(189,845,l) +); +} +); +width = 388; +}, +{ +anchors = ( +{ +name = _top; +pos = (174,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,741,o), +(307,791,o), +(307,866,c), +(270,866,l), +(271,810,o), +(236,772,o), +(174,772,cs), +(116,772,o), +(78,806,o), +(78,866,c), +(40,866,l), +(41,791,o), +(95,741,o), +(174,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,868,o), +(238,895,o), +(238,927,cs), +(238,963,o), +(209,986,o), +(165,986,cs), +(150,986,o), +(129,984,o), +(112,977,c), +(114,949,l), +(126,955,o), +(144,957,o), +(158,957,cs), +(184,957,o), +(202,945,o), +(202,924,cs), +(202,900,o), +(185,886,o), +(155,868,c), +(173,845,l) +); +} +); +width = 347; +}, +{ +anchors = ( +{ +name = _top; +pos = (238,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(354,709,o), +(433,758,o), +(438,845,c), +(283,845,l), +(282,822,o), +(264,808,o), +(239,808,cs), +(213,808,o), +(196,822,o), +(195,845,c), +(40,845,l), +(45,763,o), +(116,709,o), +(239,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,868,o), +(365,901,o), +(365,955,cs), +(365,1012,o), +(313,1037,o), +(228,1037,cs), +(202,1037,o), +(176,1035,o), +(152,1030,c), +(152,958,l), +(164,960,o), +(177,961,o), +(188,961,cs), +(207,961,o), +(224,958,o), +(224,941,cs), +(224,930,o), +(215,919,o), +(183,907,c), +(232,846,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,709,o), +(433,759,o), +(438,835,c), +(283,835,l), +(282,812,o), +(264,798,o), +(239,798,cs), +(213,798,o), +(196,812,o), +(195,835,c), +(40,835,l), +(45,759,o), +(125,709,o), +(239,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,852,o), +(365,885,o), +(365,939,cs), +(365,996,o), +(313,1021,o), +(228,1021,cs), +(202,1021,o), +(176,1019,o), +(152,1014,c), +(152,942,l), +(164,944,o), +(177,945,o), +(188,945,cs), +(207,945,o), +(224,942,o), +(224,925,cs), +(224,914,o), +(215,903,o), +(183,891,c), +(232,830,l) +); +} +); +width = 478; +}, +{ +anchors = ( +{ +name = _top; +pos = (103,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,726,o), +(187,775,o), +(187,867,c), +(160,867,l), +(161,793,o), +(140,754,o), +(104,754,cs), +(67,754,o), +(48,792,o), +(48,867,c), +(20,867,l), +(21,775,o), +(49,726,o), +(104,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,884,o), +(148,906,o), +(148,932,cs), +(148,962,o), +(127,982,o), +(94,982,cs), +(83,982,o), +(68,980,o), +(56,975,c), +(56,949,l), +(65,954,o), +(77,956,o), +(87,956,cs), +(104,956,o), +(116,946,o), +(116,929,cs), +(116,910,o), +(105,899,o), +(84,884,c), +(99,866,l) +); +} +); +width = 207; +}, +{ +anchors = ( +{ +name = _top; +pos = (184,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(286,709,o), +(348,752,o), +(348,845,c), +(229,845,l), +(228,816,o), +(221,796,o), +(194,796,cs), +(173,796,o), +(159,806,o), +(159,845,c), +(40,845,l), +(39,763,o), +(88,709,o), +(194,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,880,o), +(281,909,o), +(281,943,cs), +(281,989,o), +(232,1008,o), +(178,1008,cs), +(161,1008,o), +(140,1006,o), +(121,1001,c), +(121,948,l), +(127,950,o), +(137,951,o), +(145,951,cs), +(160,951,o), +(176,946,o), +(176,932,cs), +(176,921,o), +(168,913,o), +(155,905,c), +(189,855,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,709,o), +(338,752,o), +(338,845,c), +(219,845,l), +(218,816,o), +(211,796,o), +(184,796,cs), +(163,796,o), +(149,806,o), +(149,845,c), +(30,845,l), +(29,763,o), +(78,709,o), +(184,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,871,o), +(291,902,o), +(291,940,cs), +(291,986,o), +(242,1005,o), +(188,1005,cs), +(165,1005,o), +(134,1001,o), +(111,991,c), +(111,938,l), +(117,940,o), +(127,941,o), +(135,941,cs), +(150,941,o), +(166,936,o), +(166,922,cs), +(166,911,o), +(158,903,o), +(145,895,c), +(179,845,l) +); +} +); +width = 368; +}, +{ +anchors = ( +{ +name = _top; +pos = (148,678); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(224,741,o), +(275,791,o), +(276,867,c), +(240,867,l), +(240,810,o), +(207,772,o), +(148,772,cs), +(93,772,o), +(56,806,o), +(56,867,c), +(20,867,l), +(21,791,o), +(72,741,o), +(148,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,868,o), +(204,895,o), +(204,927,cs), +(204,963,o), +(177,986,o), +(137,986,cs), +(123,986,o), +(104,984,o), +(89,977,c), +(90,949,l), +(102,955,o), +(117,957,o), +(130,957,cs), +(153,957,o), +(168,945,o), +(168,924,cs), +(168,900,o), +(154,886,o), +(127,868,c), +(144,845,l) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = _top; +pos = (195,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(326,709,o), +(398,764,o), +(398,845,c), +(268,845,l), +(268,819,o), +(250,802,o), +(219,802,cs), +(188,802,o), +(170,819,o), +(170,845,c), +(40,845,l), +(40,764,o), +(112,709,o), +(219,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,865,o), +(314,892,o), +(314,932,cs), +(314,973,o), +(278,996,o), +(215,996,cs), +(195,996,o), +(170,994,o), +(148,988,c), +(148,928,l), +(159,930,o), +(168,931,o), +(176,931,cs), +(194,931,o), +(205,926,o), +(205,913,cs), +(205,903,o), +(198,896,o), +(172,888,c), +(202,843,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,709,o), +(377,764,o), +(377,845,c), +(247,845,l), +(247,819,o), +(229,802,o), +(198,802,cs), +(167,802,o), +(149,819,o), +(149,845,c), +(19,845,l), +(19,764,o), +(91,709,o), +(198,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,869,o), +(316,900,o), +(316,947,cs), +(316,994,o), +(273,1021,o), +(200,1021,cs), +(177,1021,o), +(148,1019,o), +(122,1012,c), +(122,942,l), +(135,944,o), +(146,945,o), +(155,945,cs), +(176,945,o), +(189,940,o), +(189,924,cs), +(189,913,o), +(181,905,o), +(150,895,c), +(185,843,l) +); +} +); +width = 396; +}, +{ +anchors = ( +{ +name = _top; +pos = (164,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,741,o), +(297,791,o), +(297,866,c), +(260,866,l), +(261,810,o), +(226,772,o), +(164,772,cs), +(106,772,o), +(68,806,o), +(68,866,c), +(30,866,l), +(31,791,o), +(85,741,o), +(164,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(203,868,o), +(228,895,o), +(228,927,cs), +(228,963,o), +(199,986,o), +(155,986,cs), +(140,986,o), +(119,984,o), +(102,977,c), +(104,949,l), +(116,955,o), +(134,957,o), +(148,957,cs), +(174,957,o), +(192,945,o), +(192,924,cs), +(192,900,o), +(175,886,o), +(145,868,c), +(163,845,l) +); +} +); +width = 327; +}, +{ +anchors = ( +{ +name = _top; +pos = (228,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(354,709,o), +(433,758,o), +(438,845,c), +(283,845,l), +(282,822,o), +(264,808,o), +(239,808,cs), +(213,808,o), +(196,822,o), +(195,845,c), +(40,845,l), +(45,763,o), +(116,709,o), +(239,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,868,o), +(365,901,o), +(365,955,cs), +(365,1012,o), +(313,1037,o), +(228,1037,cs), +(202,1037,o), +(176,1035,o), +(152,1030,c), +(152,958,l), +(164,960,o), +(177,961,o), +(188,961,cs), +(207,961,o), +(224,958,o), +(224,941,cs), +(224,930,o), +(215,919,o), +(183,907,c), +(232,846,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,709,o), +(423,759,o), +(428,835,c), +(273,835,l), +(272,812,o), +(254,798,o), +(229,798,cs), +(203,798,o), +(186,812,o), +(185,835,c), +(30,835,l), +(35,759,o), +(115,709,o), +(229,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,852,o), +(355,885,o), +(355,939,cs), +(355,996,o), +(303,1021,o), +(218,1021,cs), +(192,1021,o), +(166,1019,o), +(142,1014,c), +(142,942,l), +(154,944,o), +(167,945,o), +(178,945,cs), +(197,945,o), +(214,942,o), +(214,925,cs), +(214,914,o), +(205,903,o), +(173,891,c), +(222,830,l) +); +} +); +width = 458; +}, +{ +anchors = ( +{ +name = _top; +pos = (167,678); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(243,741,o), +(292,791,o), +(293,867,c), +(257,867,l), +(257,810,o), +(226,772,o), +(167,772,cs), +(114,772,o), +(77,806,o), +(77,867,c), +(43,867,l), +(44,791,o), +(93,741,o), +(167,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,868,o), +(223,895,o), +(223,927,cs), +(223,963,o), +(196,986,o), +(156,986,cs), +(144,986,o), +(125,984,o), +(110,977,c), +(111,949,l), +(123,955,o), +(138,957,o), +(150,957,cs), +(172,957,o), +(187,945,o), +(187,924,cs), +(187,900,o), +(173,886,o), +(148,868,c), +(163,845,l) +); +} +); +width = 335; +}, +{ +anchors = ( +{ +name = _top; +pos = (208,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(326,709,o), +(398,764,o), +(398,845,c), +(268,845,l), +(268,819,o), +(250,802,o), +(219,802,cs), +(188,802,o), +(170,819,o), +(170,845,c), +(40,845,l), +(40,764,o), +(112,709,o), +(219,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,865,o), +(314,892,o), +(314,932,cs), +(314,973,o), +(278,996,o), +(215,996,cs), +(195,996,o), +(170,994,o), +(148,988,c), +(148,928,l), +(159,930,o), +(168,931,o), +(176,931,cs), +(194,931,o), +(205,926,o), +(205,913,cs), +(205,903,o), +(198,896,o), +(172,888,c), +(202,843,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(314,709,o), +(383,764,o), +(383,845,c), +(254,845,l), +(254,819,o), +(239,802,o), +(211,802,cs), +(183,802,o), +(167,819,o), +(167,845,c), +(39,845,l), +(39,764,o), +(108,709,o), +(211,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(288,869,o), +(326,900,o), +(326,947,cs), +(326,994,o), +(284,1021,o), +(214,1021,cs), +(191,1021,o), +(163,1019,o), +(138,1012,c), +(138,942,l), +(150,944,o), +(160,945,o), +(168,945,cs), +(188,945,o), +(201,940,o), +(201,924,cs), +(201,913,o), +(194,905,o), +(164,895,c), +(198,843,l) +); +} +); +width = 421; +}, +{ +anchors = ( +{ +name = _top; +pos = (205,673); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,726,o), +(320,775,o), +(331,867,c), +(302,867,l), +(293,790,o), +(263,752,o), +(229,752,cs), +(189,752,o), +(179,790,o), +(194,867,c), +(166,867,l), +(148,776,o), +(170,726,o), +(229,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(278,885,o), +(303,910,o), +(303,940,cs), +(303,967,o), +(280,982,o), +(250,982,cs), +(240,982,o), +(229,981,o), +(218,978,c), +(215,955,l), +(222,958,o), +(231,959,o), +(239,959,cs), +(253,959,o), +(271,956,o), +(271,936,cs), +(271,915,o), +(256,903,o), +(230,888,c), +(241,869,l) +); +} +); +width = 246; +}, +{ +anchors = ( +{ +name = _top; +pos = (281,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,709,o), +(451,752,o), +(461,845,c), +(345,845,l), +(342,813,o), +(328,796,o), +(303,796,cs), +(281,796,o), +(269,814,o), +(273,845,c), +(159,845,l), +(155,763,o), +(209,709,o), +(293,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(392,874,o), +(423,909,o), +(423,947,cs), +(423,988,o), +(385,1011,o), +(318,1011,cs), +(294,1011,o), +(276,1009,o), +(256,1004,c), +(246,955,l), +(252,956,o), +(261,956,o), +(270,956,cs), +(287,956,o), +(297,949,o), +(297,937,cs), +(297,926,o), +(286,916,o), +(271,909,c), +(298,852,l) +); +} +); +width = 383; +}, +{ +anchors = ( +{ +name = _top; +pos = (261,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,741,o), +(414,786,o), +(421,867,c), +(387,867,l), +(381,809,o), +(346,770,o), +(281,770,cs), +(227,770,o), +(191,801,o), +(200,867,c), +(166,867,l), +(160,791,o), +(205,741,o), +(279,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,866,o), +(352,895,o), +(352,933,cs), +(352,962,o), +(330,987,o), +(285,987,cs), +(274,987,o), +(259,986,o), +(247,982,c), +(243,954,l), +(252,957,o), +(265,959,o), +(276,959,cs), +(300,959,o), +(315,947,o), +(315,929,cs), +(315,900,o), +(298,888,o), +(263,870,c), +(276,846,l) +); +} +); +width = 336; +}, +{ +anchors = ( +{ +name = _top; +pos = (310,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(431,709,o), +(505,763,o), +(516,845,c), +(387,845,l), +(384,816,o), +(363,802,o), +(334,802,cs), +(306,802,o), +(288,819,o), +(288,845,c), +(159,845,l), +(157,763,o), +(223,709,o), +(323,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(399,860,o), +(474,886,o), +(474,952,cs), +(474,1004,o), +(410,1024,o), +(337,1024,cs), +(323,1024,o), +(308,1023,o), +(293,1020,c), +(280,950,l), +(287,951,o), +(294,951,o), +(301,951,cs), +(327,951,o), +(347,946,o), +(343,928,cs), +(340,915,o), +(331,908,o), +(299,901,c), +(323,846,l) +); +} +); +width = 438; +}, +{ +anchors = ( +{ +name = _top; +pos = (267,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(369,740,o), +(430,789,o), +(435,866,c), +(399,866,l), +(394,809,o), +(354,771,o), +(288,771,cs), +(230,771,o), +(196,809,o), +(202,866,c), +(166,866,l), +(161,791,o), +(209,740,o), +(285,740,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,867,o), +(363,897,o), +(363,933,cs), +(363,966,o), +(336,988,o), +(288,988,cs), +(274,988,o), +(259,986,o), +(247,983,c), +(243,955,l), +(251,958,o), +(269,959,o), +(282,959,cs), +(308,959,o), +(326,949,o), +(326,929,cs), +(326,901,o), +(305,887,o), +(268,870,c), +(282,846,l) +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = _top; +pos = (331,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(474,709,o), +(550,771,o), +(557,845,c), +(402,845,l), +(400,822,o), +(379,808,o), +(354,808,cs), +(329,808,o), +(313,823,o), +(313,845,c), +(159,845,l), +(167,758,o), +(237,709,o), +(349,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(431,861,o), +(491,891,o), +(491,949,cs), +(491,999,o), +(442,1025,o), +(349,1025,cs), +(331,1025,o), +(312,1024,o), +(301,1023,c), +(286,953,l), +(295,954,o), +(310,955,o), +(322,955,cs), +(344,955,o), +(352,946,o), +(352,937,cs), +(352,923,o), +(343,913,o), +(307,903,c), +(343,840,l) +); +} +); +width = 479; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_tildecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_tildecomb.glyph new file mode 100644 index 00000000..70ade703 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/brevecomb_tildecomb.glyph @@ -0,0 +1,1400 @@ +{ +glyphname = brevecomb_tildecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (132,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,726,o), +(216,775,o), +(216,867,c), +(189,867,l), +(190,793,o), +(169,754,o), +(133,754,cs), +(96,754,o), +(77,792,o), +(77,867,c), +(49,867,l), +(50,775,o), +(78,726,o), +(133,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(187,908,o), +(207,917,o), +(225,955,c), +(209,968,l), +(199,949,o), +(187,938,o), +(170,938,cs), +(144,938,o), +(123,966,o), +(95,966,cs), +(75,966,o), +(58,952,o), +(40,917,c), +(56,906,l), +(68,928,o), +(81,935,o), +(93,935,cs), +(119,935,o), +(136,908,o), +(167,908,cs) +); +} +); +width = 265; +}, +{ +anchors = ( +{ +name = _top; +pos = (194,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,709,o), +(348,752,o), +(348,845,c), +(229,845,l), +(228,816,o), +(221,796,o), +(194,796,cs), +(173,796,o), +(159,806,o), +(159,845,c), +(40,845,l), +(39,763,o), +(88,709,o), +(194,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,870,o), +(326,888,o), +(348,956,c), +(287,990,l), +(277,969,o), +(267,962,o), +(243,962,cs), +(208,962,o), +(189,987,o), +(137,987,cs), +(97,987,o), +(62,970,o), +(40,900,c), +(101,866,l), +(113,886,o), +(126,895,o), +(149,895,cs), +(180,895,o), +(200,870,o), +(255,870,cs) +); +} +); +width = 388; +}, +{ +anchors = ( +{ +name = _top; +pos = (176,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,726,o), +(310,774,o), +(310,866,c), +(273,866,l), +(274,795,o), +(239,757,o), +(177,757,cs), +(114,757,o), +(81,794,o), +(81,866,c), +(43,866,l), +(44,774,o), +(90,726,o), +(177,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,905,o), +(291,919,o), +(313,954,c), +(295,967,l), +(280,946,o), +(260,937,o), +(240,937,cs), +(199,937,o), +(153,965,o), +(116,965,cs), +(82,965,o), +(63,951,o), +(40,915,c), +(57,903,l), +(73,926,o), +(90,932,o), +(110,932,cs), +(150,932,o), +(178,905,o), +(233,905,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,741,o), +(310,791,o), +(310,866,c), +(273,866,l), +(274,810,o), +(239,772,o), +(177,772,cs), +(119,772,o), +(81,806,o), +(81,866,c), +(43,866,l), +(44,791,o), +(98,741,o), +(177,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,905,o), +(291,919,o), +(313,954,c), +(295,967,l), +(280,946,o), +(260,937,o), +(240,937,cs), +(199,937,o), +(153,965,o), +(116,965,cs), +(82,965,o), +(63,951,o), +(40,915,c), +(57,903,l), +(73,926,o), +(90,932,o), +(110,932,cs), +(150,932,o), +(178,905,o), +(233,905,cs) +); +} +); +width = 353; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(128,996,o), +(71,969,o), +(40,900,c), +(120,863,l), +(127,872,o), +(141,895,o), +(184,895,cs), +(237,894,o), +(254,865,o), +(319,865,cs), +(365,865,o), +(425,886,o), +(460,956,c), +(383,995,l), +(361,978,o), +(343,965,o), +(315,965,cs), +(264,965,o), +(241,996,o), +(182,996,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(365,709,o), +(444,758,o), +(449,845,c), +(294,845,l), +(293,822,o), +(275,808,o), +(250,808,cs), +(224,808,o), +(207,822,o), +(206,845,c), +(51,845,l), +(56,763,o), +(127,709,o), +(250,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,865,o), +(429,892,o), +(460,961,c), +(383,995,l), +(361,978,o), +(343,965,o), +(315,965,cs), +(264,965,o), +(241,996,o), +(182,996,cs), +(128,996,o), +(71,969,o), +(40,900,c), +(117,866,l), +(139,883,o), +(157,896,o), +(185,896,cs), +(236,896,o), +(259,865,o), +(318,865,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (112,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,726,o), +(196,775,o), +(196,867,c), +(169,867,l), +(170,793,o), +(149,754,o), +(113,754,cs), +(76,754,o), +(57,792,o), +(57,867,c), +(29,867,l), +(30,775,o), +(58,726,o), +(113,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(167,908,o), +(187,917,o), +(205,955,c), +(189,968,l), +(179,949,o), +(167,938,o), +(150,938,cs), +(124,938,o), +(103,966,o), +(75,966,cs), +(55,966,o), +(38,952,o), +(20,917,c), +(36,906,l), +(48,928,o), +(61,935,o), +(73,935,cs), +(99,935,o), +(116,908,o), +(147,908,cs) +); +} +); +width = 225; +}, +{ +anchors = ( +{ +name = _top; +pos = (184,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,709,o), +(338,752,o), +(338,845,c), +(219,845,l), +(218,816,o), +(211,796,o), +(184,796,cs), +(163,796,o), +(149,806,o), +(149,845,c), +(30,845,l), +(29,763,o), +(78,709,o), +(184,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,870,o), +(316,888,o), +(338,956,c), +(277,990,l), +(267,969,o), +(257,962,o), +(233,962,cs), +(198,962,o), +(179,987,o), +(127,987,cs), +(87,987,o), +(52,970,o), +(30,900,c), +(91,866,l), +(103,886,o), +(116,895,o), +(139,895,cs), +(170,895,o), +(190,870,o), +(245,870,cs) +); +} +); +width = 368; +}, +{ +anchors = ( +{ +name = _top; +pos = (153,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(255,726,o), +(300,774,o), +(301,867,c), +(265,867,l), +(265,794,o), +(233,757,o), +(173,757,cs), +(113,757,o), +(81,794,o), +(81,867,c), +(45,867,l), +(46,774,o), +(91,726,o), +(173,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,913,o), +(284,927,o), +(305,962,c), +(287,975,l), +(273,954,o), +(254,945,o), +(234,945,cs), +(194,944,o), +(151,973,o), +(115,973,cs), +(81,973,o), +(62,959,o), +(40,923,c), +(58,911,l), +(73,933,o), +(87,940,o), +(109,940,cs), +(147,940,o), +(175,913,o), +(227,913,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,741,o), +(280,791,o), +(281,867,c), +(245,867,l), +(245,810,o), +(212,772,o), +(153,772,cs), +(98,772,o), +(61,806,o), +(61,867,c), +(25,867,l), +(26,791,o), +(77,741,o), +(153,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,913,o), +(264,927,o), +(285,962,c), +(267,975,l), +(253,953,o), +(233,945,o), +(212,945,cs), +(173,945,o), +(130,973,o), +(95,973,cs), +(61,973,o), +(42,959,o), +(20,923,c), +(38,911,l), +(53,933,o), +(67,940,o), +(89,940,cs), +(127,940,o), +(155,913,o), +(207,913,cs) +); +} +); +width = 305; +}, +{ +anchors = ( +{ +name = _top; +pos = (207,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(121,997,o), +(68,972,o), +(40,908,c), +(111,874,l), +(126,892,o), +(142,903,o), +(169,903,cs), +(217,903,o), +(232,876,o), +(289,876,cs), +(331,876,o), +(384,895,o), +(416,960,c), +(347,996,l), +(331,982,o), +(314,968,o), +(285,968,cs), +(241,969,o), +(220,996,o), +(170,997,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,709,o), +(386,764,o), +(386,845,c), +(256,845,l), +(256,819,o), +(238,802,o), +(207,802,cs), +(176,802,o), +(158,819,o), +(158,845,c), +(28,845,l), +(28,764,o), +(100,709,o), +(207,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(314,875,o), +(367,900,o), +(395,964,c), +(324,998,l), +(309,980,o), +(293,969,o), +(266,969,cs), +(218,969,o), +(203,996,o), +(146,996,cs), +(104,996,o), +(51,977,o), +(19,912,c), +(88,876,l), +(104,890,o), +(121,904,o), +(150,904,cs), +(194,904,o), +(215,875,o), +(265,875,cs) +); +} +); +width = 414; +}, +{ +anchors = ( +{ +name = _top; +pos = (166,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,726,o), +(310,774,o), +(310,866,c), +(273,866,l), +(274,795,o), +(239,757,o), +(177,757,cs), +(114,757,o), +(81,794,o), +(81,866,c), +(43,866,l), +(44,774,o), +(90,726,o), +(177,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,905,o), +(291,919,o), +(313,954,c), +(295,967,l), +(280,946,o), +(260,937,o), +(240,937,cs), +(199,937,o), +(153,965,o), +(116,965,cs), +(82,965,o), +(63,951,o), +(40,915,c), +(57,903,l), +(73,926,o), +(90,932,o), +(110,932,cs), +(150,932,o), +(178,905,o), +(233,905,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,741,o), +(300,791,o), +(300,866,c), +(263,866,l), +(264,810,o), +(229,772,o), +(167,772,cs), +(109,772,o), +(71,806,o), +(71,866,c), +(33,866,l), +(34,791,o), +(88,741,o), +(167,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(258,905,o), +(281,919,o), +(303,954,c), +(285,967,l), +(270,946,o), +(250,937,o), +(230,937,cs), +(189,937,o), +(143,965,o), +(106,965,cs), +(72,965,o), +(53,951,o), +(30,915,c), +(47,903,l), +(63,926,o), +(80,932,o), +(100,932,cs), +(140,932,o), +(168,905,o), +(223,905,cs) +); +} +); +width = 333; +}, +{ +anchors = ( +{ +name = _top; +pos = (240,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(128,996,o), +(71,969,o), +(40,900,c), +(120,863,l), +(127,872,o), +(141,895,o), +(184,895,cs), +(237,894,o), +(254,865,o), +(319,865,cs), +(365,865,o), +(425,886,o), +(460,956,c), +(383,995,l), +(361,978,o), +(343,965,o), +(315,965,cs), +(264,965,o), +(241,996,o), +(182,996,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,709,o), +(434,758,o), +(439,845,c), +(284,845,l), +(283,822,o), +(265,808,o), +(240,808,cs), +(214,808,o), +(197,822,o), +(196,845,c), +(41,845,l), +(46,763,o), +(117,709,o), +(240,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(362,865,o), +(419,892,o), +(450,961,c), +(373,995,l), +(351,978,o), +(333,965,o), +(305,965,cs), +(254,965,o), +(231,996,o), +(172,996,cs), +(118,996,o), +(61,969,o), +(30,900,c), +(107,866,l), +(129,883,o), +(147,896,o), +(175,896,cs), +(226,896,o), +(249,865,o), +(308,865,cs) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = _top; +pos = (172,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(255,726,o), +(300,774,o), +(301,867,c), +(265,867,l), +(265,794,o), +(233,757,o), +(173,757,cs), +(113,757,o), +(81,794,o), +(81,867,c), +(45,867,l), +(46,774,o), +(91,726,o), +(173,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,913,o), +(284,927,o), +(305,962,c), +(287,975,l), +(273,954,o), +(254,945,o), +(234,945,cs), +(194,944,o), +(151,973,o), +(115,973,cs), +(81,973,o), +(62,959,o), +(40,923,c), +(58,911,l), +(73,933,o), +(87,940,o), +(109,940,cs), +(147,940,o), +(175,913,o), +(227,913,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(248,741,o), +(297,791,o), +(298,867,c), +(262,867,l), +(262,810,o), +(231,772,o), +(172,772,cs), +(119,772,o), +(82,806,o), +(82,867,c), +(48,867,l), +(49,791,o), +(98,741,o), +(172,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(258,913,o), +(281,927,o), +(302,962,c), +(284,975,l), +(270,953,o), +(250,945,o), +(231,945,cs), +(192,945,o), +(150,973,o), +(116,973,cs), +(82,973,o), +(63,959,o), +(43,923,c), +(59,911,l), +(74,933,o), +(88,940,o), +(110,940,cs), +(148,940,o), +(174,913,o), +(226,913,cs) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = _top; +pos = (220,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(121,997,o), +(68,972,o), +(40,908,c), +(111,874,l), +(126,892,o), +(142,903,o), +(169,903,cs), +(217,903,o), +(232,876,o), +(289,876,cs), +(331,876,o), +(384,895,o), +(416,960,c), +(347,996,l), +(331,982,o), +(314,968,o), +(285,968,cs), +(241,969,o), +(220,996,o), +(170,997,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(323,709,o), +(392,764,o), +(392,845,c), +(264,845,l), +(264,819,o), +(248,802,o), +(220,802,cs), +(192,802,o), +(175,819,o), +(175,845,c), +(48,845,l), +(48,764,o), +(117,709,o), +(220,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,875,o), +(374,900,o), +(401,964,c), +(331,998,l), +(317,980,o), +(301,969,o), +(275,969,cs), +(230,969,o), +(217,996,o), +(161,996,cs), +(122,996,o), +(69,977,o), +(39,912,c), +(107,876,l), +(121,889,o), +(138,904,o), +(166,904,cs), +(208,904,o), +(228,875,o), +(275,875,cs) +); +} +); +width = 439; +}, +{ +anchors = ( +{ +name = _top; +pos = (223,673); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(293,726,o), +(332,775,o), +(343,867,c), +(314,867,l), +(305,790,o), +(275,752,o), +(241,752,cs), +(201,752,o), +(191,790,o), +(206,867,c), +(178,867,l), +(160,776,o), +(182,726,o), +(241,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,908,o), +(342,919,o), +(359,953,c), +(345,965,l), +(334,948,o), +(320,937,o), +(303,937,cs), +(279,937,o), +(263,964,o), +(235,964,cs), +(214,964,o), +(192,951,o), +(176,917,c), +(190,907,l), +(200,923,o), +(212,934,o), +(230,934,cs), +(255,934,o), +(267,908,o), +(297,908,cs) +); +} +); +width = 258; +}, +{ +anchors = ( +{ +name = _top; +pos = (292,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,709,o), +(469,760,o), +(477,845,c), +(361,845,l), +(358,813,o), +(344,796,o), +(321,796,cs), +(297,796,o), +(285,813,o), +(289,845,c), +(175,845,l), +(172,761,o), +(226,709,o), +(315,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(440,870,o), +(477,899,o), +(498,956,c), +(444,990,l), +(430,969,o), +(419,962,o), +(395,962,cs), +(357,962,o), +(329,987,o), +(283,987,cs), +(235,987,o), +(198,956,o), +(180,900,c), +(234,866,l), +(250,886,o), +(265,895,o), +(288,895,cs), +(319,895,o), +(344,870,o), +(389,870,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,709,o), +(469,760,o), +(477,845,c), +(361,845,l), +(358,813,o), +(344,796,o), +(321,796,cs), +(297,796,o), +(285,813,o), +(289,845,c), +(175,845,l), +(172,761,o), +(226,709,o), +(315,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(444,866,o), +(483,893,o), +(507,953,c), +(453,987,l), +(438,967,o), +(425,958,o), +(397,958,cs), +(361,958,o), +(333,987,o), +(283,987,cs), +(235,987,o), +(195,956,o), +(170,900,c), +(224,866,l), +(240,888,o), +(257,895,o), +(280,895,cs), +(316,895,o), +(344,866,o), +(394,866,cs) +); +} +); +width = 406; +}, +{ +anchors = ( +{ +name = _top; +pos = (269,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,741,o), +(426,786,o), +(433,867,c), +(399,867,l), +(393,809,o), +(358,770,o), +(293,770,cs), +(239,770,o), +(203,801,o), +(212,867,c), +(178,867,l), +(172,791,o), +(217,741,o), +(291,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(394,905,o), +(420,919,o), +(447,954,c), +(431,967,l), +(413,946,o), +(392,937,o), +(373,937,cs), +(333,937,o), +(295,965,o), +(260,965,cs), +(226,965,o), +(204,951,o), +(176,915,c), +(191,903,l), +(210,925,o), +(226,932,o), +(248,932,cs), +(285,932,o), +(308,905,o), +(361,905,cs) +); +} +); +width = 348; +}, +{ +anchors = ( +{ +name = _top; +pos = (324,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,709,o), +(519,763,o), +(530,845,c), +(401,845,l), +(398,816,o), +(377,802,o), +(348,802,cs), +(320,802,o), +(302,819,o), +(302,845,c), +(173,845,l), +(171,763,o), +(237,709,o), +(337,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(461,875,o), +(518,900,o), +(560,964,c), +(495,998,l), +(477,980,o), +(459,969,o), +(432,969,cs), +(384,969,o), +(375,996,o), +(317,996,cs), +(276,996,o), +(218,977,o), +(173,912,c), +(235,876,l), +(254,890,o), +(274,904,o), +(302,904,cs), +(346,904,o), +(361,875,o), +(412,875,cs) +); +} +); +width = 457; +}, +{ +anchors = ( +{ +name = _top; +pos = (284,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,740,o), +(446,789,o), +(451,866,c), +(415,866,l), +(410,809,o), +(370,771,o), +(304,771,cs), +(246,771,o), +(212,809,o), +(218,866,c), +(182,866,l), +(177,791,o), +(225,740,o), +(301,740,cs) +); +}, +{ +closed = 1; +nodes = ( +(407,914,o), +(436,928,o), +(465,963,c), +(447,976,l), +(427,955,o), +(406,946,o), +(385,946,cs), +(344,946,o), +(306,974,o), +(268,974,cs), +(233,974,o), +(209,960,o), +(178,924,c), +(195,912,l), +(216,935,o), +(234,941,o), +(255,941,cs), +(295,941,o), +(318,914,o), +(372,914,cs) +); +} +); +width = 367; +}, +{ +anchors = ( +{ +name = _top; +pos = (341,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(278,996,o), +(215,969,o), +(170,900,c), +(238,866,l), +(257,882,o), +(282,896,o), +(313,896,cs), +(363,896,o), +(380,865,o), +(439,865,cs), +(493,865,o), +(556,892,o), +(601,961,c), +(533,995,l), +(514,979,o), +(489,965,o), +(458,965,cs), +(408,965,o), +(391,996,o), +(332,996,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,709,o), +(560,771,o), +(567,845,c), +(412,845,l), +(410,822,o), +(389,808,o), +(364,808,cs), +(339,808,o), +(323,823,o), +(323,845,c), +(169,845,l), +(177,758,o), +(247,709,o), +(359,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(493,865,o), +(556,892,o), +(601,961,c), +(533,995,l), +(514,979,o), +(489,965,o), +(458,965,cs), +(408,965,o), +(391,996,o), +(332,996,cs), +(278,996,o), +(215,969,o), +(170,900,c), +(238,866,l), +(257,882,o), +(282,896,o), +(313,896,cs), +(363,896,o), +(380,865,o), +(439,865,cs) +); +} +); +width = 498; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/brokenbar.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/brokenbar.glyph new file mode 100644 index 00000000..68b123e2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/brokenbar.glyph @@ -0,0 +1,508 @@ +{ +glyphname = brokenbar; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(190,380,l), +(190,729,l), +(34,729,l), +(34,380,l) +); +}, +{ +closed = 1; +nodes = ( +(190,-67,l), +(190,282,l), +(34,282,l), +(34,-67,l) +); +} +); +width = 224; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,419,l), +(108,729,l), +(78,729,l), +(78,419,l) +); +}, +{ +closed = 1; +nodes = ( +(108,-67,l), +(108,243,l), +(78,243,l), +(78,-67,l) +); +} +); +width = 186; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,417,l), +(121,729,l), +(85,729,l), +(85,417,l) +); +}, +{ +closed = 1; +nodes = ( +(121,-67,l), +(121,245,l), +(85,245,l), +(85,-67,l) +); +} +); +width = 206; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(256,380,l), +(256,729,l), +(55,729,l), +(55,380,l) +); +}, +{ +closed = 1; +nodes = ( +(256,-67,l), +(256,282,l), +(55,282,l), +(55,-67,l) +); +} +); +width = 311; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(88,419,l), +(88,729,l), +(58,729,l), +(58,419,l) +); +}, +{ +closed = 1; +nodes = ( +(88,-67,l), +(88,243,l), +(58,243,l), +(58,-67,l) +); +} +); +width = 146; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,380,l), +(180,729,l), +(24,729,l), +(24,380,l) +); +}, +{ +closed = 1; +nodes = ( +(180,-67,l), +(180,282,l), +(24,282,l), +(24,-67,l) +); +} +); +width = 204; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,417,l), +(123,729,l), +(87,729,l), +(87,417,l) +); +}, +{ +closed = 1; +nodes = ( +(123,-67,l), +(123,245,l), +(87,245,l), +(87,-67,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 210; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,380,l), +(217,729,l), +(46,729,l), +(46,380,l) +); +}, +{ +closed = 1; +nodes = ( +(217,-67,l), +(217,282,l), +(46,282,l), +(46,-67,l) +); +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,417,l), +(111,729,l), +(75,729,l), +(75,417,l) +); +}, +{ +closed = 1; +nodes = ( +(111,-67,l), +(111,245,l), +(75,245,l), +(75,-67,l) +); +} +); +width = 186; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,380,l), +(246,729,l), +(45,729,l), +(45,380,l) +); +}, +{ +closed = 1; +nodes = ( +(246,-67,l), +(246,282,l), +(45,282,l), +(45,-67,l) +); +} +); +width = 291; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(148,417,l), +(148,729,l), +(112,729,l), +(112,417,l) +); +}, +{ +closed = 1; +nodes = ( +(148,-67,l), +(148,245,l), +(112,245,l), +(112,-67,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 257; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(238,380,l), +(238,729,l), +(68,729,l), +(68,380,l) +); +}, +{ +closed = 1; +nodes = ( +(238,-67,l), +(238,282,l), +(68,282,l), +(68,-67,l) +); +} +); +width = 305; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(142,419,l), +(206,729,l), +(177,729,l), +(112,419,l) +); +}, +{ +closed = 1; +nodes = ( +(40,-67,l), +(104,243,l), +(75,243,l), +(10,-67,l) +); +} +); +width = 186; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,380,l), +(285,729,l), +(130,729,l), +(58,380,l) +); +}, +{ +closed = 1; +nodes = ( +(118,-67,l), +(191,282,l), +(36,282,l), +(-36,-67,l) +); +} +); +width = 223; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,417,l), +(245,729,l), +(210,729,l), +(144,417,l) +); +}, +{ +closed = 1; +nodes = ( +(79,-67,l), +(144,245,l), +(109,245,l), +(43,-67,l) +); +} +); +width = 258; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,380,l), +(334,729,l), +(165,729,l), +(93,380,l) +); +}, +{ +closed = 1; +nodes = ( +(168,-67,l), +(241,282,l), +(71,282,l), +(-1,-67,l) +); +} +); +width = 309; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,417,l), +(220,729,l), +(184,729,l), +(119,417,l) +); +}, +{ +closed = 1; +nodes = ( +(53,-67,l), +(119,245,l), +(83,245,l), +(18,-67,l) +); +} +); +width = 207; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,380,l), +(350,729,l), +(151,729,l), +(79,380,l) +); +}, +{ +closed = 1; +nodes = ( +(184,-67,l), +(256,282,l), +(57,282,l), +(-15,-67,l) +); +} +); +width = 311; +} +); +metricLeft = bar; +metricRight = bar; +unicode = 166; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/bullet.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/bullet.glyph new file mode 100644 index 00000000..f9b87094 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/bullet.glyph @@ -0,0 +1,426 @@ +{ +glyphname = bullet; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,142,o), +(277,200,o), +(277,277,cs), +(277,354,o), +(223,412,o), +(141,412,cs), +(63,412,o), +(5,354,o), +(5,277,cs), +(5,200,o), +(63,142,o), +(141,142,cs) +); +} +); +width = 283; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,213,o), +(161,240,o), +(161,277,cs), +(161,315,o), +(135,342,o), +(96,342,cs), +(58,342,o), +(30,315,o), +(30,277,cs), +(30,240,o), +(58,213,o), +(96,213,cs) +); +} +); +width = 192; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,171,o), +(244,216,o), +(244,277,cs), +(244,339,o), +(201,384,o), +(136,384,cs), +(73,384,o), +(27,339,o), +(27,277,cs), +(27,216,o), +(73,171,o), +(136,171,cs) +); +} +); +width = 271; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,140,o), +(281,199,o), +(281,277,cs), +(281,355,o), +(227,414,o), +(144,414,cs), +(65,414,o), +(6,355,o), +(6,277,cs), +(6,199,o), +(65,140,o), +(144,140,cs) +); +} +); +width = 288; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(115,213,o), +(141,240,o), +(141,277,cs), +(141,315,o), +(115,342,o), +(76,342,cs), +(38,342,o), +(10,315,o), +(10,277,cs), +(10,240,o), +(38,213,o), +(76,213,cs) +); +} +); +width = 152; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,142,o), +(272,200,o), +(272,277,cs), +(272,354,o), +(218,412,o), +(136,412,cs), +(58,412,o), +(0,354,o), +(0,277,cs), +(0,200,o), +(58,142,o), +(136,142,cs) +); +} +); +width = 273; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,171,o), +(237,216,o), +(237,277,cs), +(237,339,o), +(194,384,o), +(129,384,cs), +(66,384,o), +(20,339,o), +(20,277,cs), +(20,216,o), +(66,171,o), +(129,171,cs) +); +} +); +width = 258; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,142,o), +(270,200,o), +(270,277,cs), +(270,354,o), +(216,412,o), +(134,412,cs), +(56,412,o), +(-2,354,o), +(-2,277,cs), +(-2,200,o), +(56,142,o), +(134,142,cs) +); +} +); +width = 269; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,171,o), +(234,216,o), +(234,277,cs), +(234,339,o), +(191,384,o), +(126,384,cs), +(63,384,o), +(17,339,o), +(17,277,cs), +(17,216,o), +(63,171,o), +(126,171,cs) +); +} +); +width = 251; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,140,o), +(276,199,o), +(276,277,cs), +(276,355,o), +(222,414,o), +(139,414,cs), +(60,414,o), +(1,355,o), +(1,277,cs), +(1,199,o), +(60,140,o), +(139,140,cs) +); +} +); +width = 278; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(213,171,o), +(254,216,o), +(254,277,cs), +(254,339,o), +(213,384,o), +(150,384,cs), +(87,384,o), +(43,339,o), +(43,277,cs), +(43,216,o), +(87,171,o), +(150,171,cs) +); +} +); +width = 297; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(222,142,o), +(273,200,o), +(273,277,cs), +(273,354,o), +(222,412,o), +(144,412,cs), +(69,412,o), +(14,354,o), +(14,277,cs), +(14,200,o), +(69,142,o), +(144,142,cs) +); +} +); +width = 287; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,171,o), +(242,218,o), +(242,281,cs), +(242,341,o), +(202,384,o), +(139,384,cs), +(75,384,o), +(27,337,o), +(27,273,cs), +(27,214,o), +(70,171,o), +(131,171,cs) +); +} +); +width = 261; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,142,o), +(279,202,o), +(279,281,cs), +(279,356,o), +(228,412,o), +(149,412,cs), +(70,412,o), +(9,352,o), +(9,273,cs), +(9,198,o), +(63,142,o), +(139,142,cs) +); +} +); +width = 285; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,171,o), +(260,218,o), +(260,281,cs), +(260,341,o), +(220,384,o), +(157,384,cs), +(93,384,o), +(45,337,o), +(45,273,cs), +(45,214,o), +(88,171,o), +(149,171,cs) +); +} +); +width = 297; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,142,o), +(287,202,o), +(287,281,cs), +(287,356,o), +(236,412,o), +(157,412,cs), +(79,412,o), +(17,352,o), +(17,273,cs), +(17,198,o), +(71,142,o), +(147,142,cs) +); +} +); +width = 303; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(190,171,o), +(248,227,o), +(248,298,cs), +(248,349,o), +(215,384,o), +(159,384,cs), +(87,384,o), +(29,325,o), +(29,256,cs), +(29,206,o), +(64,171,o), +(119,171,cs) +); +} +); +width = 270; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,140,o), +(283,215,o), +(283,306,cs), +(283,369,o), +(240,414,o), +(169,414,cs), +(80,414,o), +(5,338,o), +(5,249,cs), +(5,186,o), +(50,140,o), +(118,140,cs) +); +} +); +width = 286; +} +); +unicode = 8226; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/bullet.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/bullet.ss01.glyph new file mode 100644 index 00000000..acbda489 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/bullet.ss01.glyph @@ -0,0 +1,638 @@ +{ +glyphname = bullet.ss01; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,142,o), +(274,200,o), +(274,277,cs), +(274,354,o), +(220,412,o), +(138,412,cs), +(60,412,o), +(2,354,o), +(2,277,cs), +(2,200,o), +(60,142,o), +(138,142,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,154,l), +(272,402,l), +(19,402,l), +(19,154,l) +); +} +); +width = 291; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(126,213,o), +(152,240,o), +(152,277,cs), +(152,315,o), +(126,342,o), +(87,342,cs), +(49,342,o), +(21,315,o), +(21,277,cs), +(21,240,o), +(49,213,o), +(87,213,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,213,l), +(133,343,l), +(42,343,l), +(42,213,l) +); +} +); +width = 175; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(201,171,o), +(244,216,o), +(244,277,cs), +(244,339,o), +(201,384,o), +(136,384,cs), +(73,384,o), +(27,339,o), +(27,277,cs), +(27,216,o), +(73,171,o), +(136,171,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,185,l), +(232,375,l), +(46,375,l), +(46,185,l) +); +} +); +width = 278; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(240,140,o), +(294,199,o), +(294,277,cs), +(294,355,o), +(240,414,o), +(157,414,cs), +(78,414,o), +(19,355,o), +(19,277,cs), +(19,199,o), +(78,140,o), +(157,140,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,153,l), +(283,404,l), +(30,404,l), +(30,153,l) +); +} +); +width = 313; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(126,213,o), +(152,240,o), +(152,277,cs), +(152,315,o), +(126,342,o), +(87,342,cs), +(49,342,o), +(21,315,o), +(21,277,cs), +(21,240,o), +(49,213,o), +(87,213,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,213,l), +(113,343,l), +(22,343,l), +(22,213,l) +); +} +); +width = 135; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,142,o), +(274,200,o), +(274,277,cs), +(274,354,o), +(220,412,o), +(138,412,cs), +(60,412,o), +(2,354,o), +(2,277,cs), +(2,200,o), +(60,142,o), +(138,142,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,154,l), +(262,402,l), +(9,402,l), +(9,154,l) +); +} +); +width = 271; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(223,171,o), +(266,216,o), +(266,277,cs), +(266,339,o), +(223,384,o), +(158,384,cs), +(95,384,o), +(49,339,o), +(49,277,cs), +(49,216,o), +(95,171,o), +(158,171,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,177,l), +(236,382,l), +(40,382,l), +(40,177,l) +); +} +); +width = 276; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(244,142,o), +(298,200,o), +(298,277,cs), +(298,354,o), +(244,412,o), +(162,412,cs), +(84,412,o), +(26,354,o), +(26,277,cs), +(26,200,o), +(84,142,o), +(162,142,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(268,153,l), +(268,405,l), +(17,405,l), +(17,153,l) +); +} +); +width = 285; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(201,171,o), +(244,216,o), +(244,277,cs), +(244,339,o), +(201,384,o), +(136,384,cs), +(73,384,o), +(27,339,o), +(27,277,cs), +(27,216,o), +(73,171,o), +(136,171,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,185,l), +(222,375,l), +(36,375,l), +(36,185,l) +); +} +); +width = 258; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(240,140,o), +(294,199,o), +(294,277,cs), +(294,355,o), +(240,414,o), +(157,414,cs), +(78,414,o), +(19,355,o), +(19,277,cs), +(19,199,o), +(78,140,o), +(157,140,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,153,l), +(273,404,l), +(20,404,l), +(20,153,l) +); +} +); +width = 293; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(223,171,o), +(266,216,o), +(266,277,cs), +(266,339,o), +(223,384,o), +(158,384,cs), +(95,384,o), +(49,339,o), +(49,277,cs), +(49,216,o), +(95,171,o), +(158,171,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(253,177,l), +(253,382,l), +(61,382,l), +(61,177,l) +); +} +); +width = 315; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(244,142,o), +(298,200,o), +(298,277,cs), +(298,354,o), +(244,412,o), +(162,412,cs), +(84,412,o), +(26,354,o), +(26,277,cs), +(26,200,o), +(84,142,o), +(162,142,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(275,153,l), +(275,405,l), +(37,405,l), +(37,153,l) +); +} +); +width = 311; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(193,171,o), +(238,218,o), +(238,281,cs), +(238,341,o), +(198,384,o), +(135,384,cs), +(71,384,o), +(23,337,o), +(23,273,cs), +(23,214,o), +(66,171,o), +(127,171,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,213,l), +(151,343,l), +(60,343,l), +(34,213,l) +); +} +); +width = 176; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(219,142,o), +(277,202,o), +(277,281,cs), +(277,356,o), +(226,412,o), +(147,412,cs), +(68,412,o), +(7,352,o), +(7,273,cs), +(7,198,o), +(61,142,o), +(137,142,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,154,l), +(299,402,l), +(46,402,l), +(-6,154,l) +); +} +); +width = 290; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,171,o), +(274,218,o), +(274,281,cs), +(274,341,o), +(234,384,o), +(171,384,cs), +(107,384,o), +(59,337,o), +(59,273,cs), +(59,214,o), +(102,171,o), +(163,171,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,177,l), +(282,382,l), +(86,382,l), +(44,177,l) +); +} +); +width = 317; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(243,142,o), +(300,202,o), +(300,281,cs), +(300,356,o), +(249,412,o), +(170,412,cs), +(92,412,o), +(30,352,o), +(30,273,cs), +(30,198,o), +(84,142,o), +(160,142,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(265,153,l), +(317,405,l), +(66,405,l), +(14,153,l) +); +} +); +width = 328; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,185,l), +(257,375,l), +(71,375,l), +(31,185,l) +); +} +); +width = 279; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(195,140,o), +(269,215,o), +(269,306,cs), +(269,369,o), +(226,414,o), +(155,414,cs), +(66,414,o), +(-9,338,o), +(-9,249,cs), +(-9,186,o), +(36,140,o), +(104,140,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,185,l), +(238,375,l), +(52,375,l), +(12,185,l) +); +} +); +width = 247; +} +); +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/c.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/c.glyph new file mode 100644 index 00000000..a881afc3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/c.glyph @@ -0,0 +1,1266 @@ +{ +glyphname = c; +kernLeft = KO_e; +kernRight = KO_c; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = top; +pos = (220,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(377,-10,o), +(452,66,o), +(456,208,c), +(282,208,l), +(275,163,o), +(271,140,o), +(247,140,cs), +(215,140,o), +(207,172,o), +(207,272,cs), +(207,378,o), +(216,404,o), +(247,404,cs), +(270,404,o), +(275,384,o), +(282,336,c), +(456,336,l), +(443,484,o), +(379,554,o), +(241,554,cs), +(102,554,o), +(14,484,o), +(14,274,cs), +(14,60,o), +(105,-10,o), +(238,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,-10,o), +(415,37,o), +(428,204,c), +(261,204,l), +(257,153,o), +(249,128,o), +(225,128,cs), +(197,128,o), +(191,164,o), +(191,271,cs), +(191,383,o), +(198,414,o), +(225,414,cs), +(248,414,o), +(257,395,o), +(261,339,c), +(428,339,l), +(417,486,o), +(351,551,o), +(225,551,cs), +(92,551,o), +(14,474,o), +(14,273,cs), +(14,66,o), +(96,-10,o), +(225,-10,cs) +); +} +); +width = 439; +}, +{ +anchors = ( +{ +name = bottom; +pos = (168,0); +}, +{ +name = top; +pos = (159,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-10,o), +(275,31,o), +(283,157,c), +(253,157,l), +(244,56,o), +(220,17,o), +(168,17,cs), +(112,17,o), +(73,65,o), +(73,258,cs), +(73,451,o), +(112,499,o), +(168,499,cs), +(225,499,o), +(245,448,o), +(253,358,c), +(283,358,l), +(275,486,o), +(229,526,o), +(168,526,cs), +(67,526,o), +(44,416,o), +(44,258,cs), +(44,99,o), +(67,-10,o), +(168,-10,cs) +); +} +); +width = 318; +}, +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = top; +pos = (316,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-8,o), +(560,66,o), +(580,174,c), +(541,174,l), +(521,88,o), +(430,27,o), +(313,27,cs), +(159,27,o), +(71,118,o), +(71,257,cs), +(71,397,o), +(169,490,o), +(316,490,cs), +(424,490,o), +(510,445,o), +(538,354,c), +(575,354,l), +(557,457,o), +(454,525,o), +(316,525,cs), +(148,525,o), +(34,416,o), +(34,257,cs), +(34,93,o), +(142,-8,o), +(313,-8,cs) +); +} +); +width = 606; +}, +{ +anchors = ( +{ +name = bottom; +pos = (338,0); +}, +{ +name = top; +pos = (347,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,-10,o), +(660,73,o), +(666,212,c), +(446,212,l), +(434,174,o), +(393,156,o), +(346,156,cs), +(277,156,o), +(231,193,o), +(231,274,cs), +(231,342,o), +(270,388,o), +(346,388,cs), +(401,388,o), +(438,365,o), +(445,332,c), +(664,332,l), +(659,464,o), +(539,554,o), +(347,554,cs), +(144,554,o), +(10,453,o), +(10,275,cs), +(10,103,o), +(134,-10,o), +(337,-10,cs) +); +} +); +width = 675; +}, +{ +anchors = ( +{ +name = bottom; +pos = (149,0); +}, +{ +name = top; +pos = (140,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,-10,o), +(259,44,o), +(268,168,c), +(237,168,l), +(228,60,o), +(205,17,o), +(150,17,cs), +(82,17,o), +(53,83,o), +(53,258,cs), +(53,433,o), +(82,499,o), +(150,499,cs), +(204,499,o), +(227,456,o), +(237,345,c), +(268,345,l), +(259,471,o), +(225,526,o), +(150,526,cs), +(60,526,o), +(22,451,o), +(22,258,cs), +(22,65,o), +(60,-10,o), +(150,-10,cs) +); +} +); +width = 288; +}, +{ +anchors = ( +{ +name = bottom; +pos = (216,0); +}, +{ +name = top; +pos = (211,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(377,-10,o), +(452,66,o), +(456,208,c), +(282,208,l), +(275,163,o), +(271,140,o), +(247,140,cs), +(215,140,o), +(207,172,o), +(207,272,cs), +(207,378,o), +(216,404,o), +(247,404,cs), +(270,404,o), +(275,384,o), +(282,336,c), +(456,336,l), +(443,484,o), +(379,554,o), +(241,554,cs), +(102,554,o), +(14,484,o), +(14,274,cs), +(14,60,o), +(105,-10,o), +(238,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(348,-10,o), +(409,56,o), +(421,229,c), +(254,229,l), +(250,153,o), +(242,128,o), +(217,128,cs), +(188,128,o), +(182,164,o), +(182,271,cs), +(182,383,o), +(189,414,o), +(217,414,cs), +(241,414,o), +(250,395,o), +(254,313,c), +(421,313,l), +(410,486,o), +(348,551,o), +(217,551,cs), +(83,551,o), +(5,474,o), +(5,273,cs), +(5,66,o), +(87,-10,o), +(217,-10,cs) +); +} +); +width = 426; +}, +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (274,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(412,-8,o), +(499,63,o), +(511,174,c), +(474,174,l), +(464,85,o), +(392,27,o), +(293,27,cs), +(170,27,o), +(89,115,o), +(89,257,cs), +(89,395,o), +(167,490,o), +(294,490,cs), +(384,490,o), +(456,441,o), +(472,354,c), +(508,354,l), +(495,456,o), +(410,525,o), +(296,525,cs), +(148,525,o), +(52,416,o), +(52,257,cs), +(52,98,o), +(148,-8,o), +(293,-8,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,-8,o), +(482,61,o), +(501,169,c), +(464,169,l), +(446,82,o), +(375,27,o), +(273,27,cs), +(150,27,o), +(69,115,o), +(69,257,cs), +(69,395,o), +(147,490,o), +(274,490,cs), +(367,490,o), +(438,443,o), +(461,357,c), +(498,357,l), +(479,458,o), +(394,525,o), +(276,525,cs), +(128,525,o), +(32,416,o), +(32,257,cs), +(32,98,o), +(128,-8,o), +(273,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 523; +}, +{ +anchors = ( +{ +name = bottom; +pos = (281,0); +}, +{ +name = top; +pos = (282,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(27,92,o), +(139,-10,o), +(306,-10,cs), +(485,-10,o), +(585,103,o), +(585,272,cs), +(585,452,o), +(473,554,o), +(306,554,cs), +(127,554,o), +(27,441,o), +(27,272,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,364,o), +(255,400,o), +(306,400,cs), +(357,400,o), +(391,364,o), +(391,272,cs), +(391,180,o), +(357,144,o), +(306,144,cs), +(255,144,o), +(221,180,o), +(221,272,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-10,o), +(554,78,o), +(566,226,c), +(372,226,l), +(366,170,o), +(338,144,o), +(285,144,cs), +(231,144,o), +(198,182,o), +(198,272,cs), +(198,351,o), +(223,400,o), +(286,400,cs), +(335,400,o), +(362,374,o), +(370,318,c), +(566,318,l), +(556,466,o), +(454,554,o), +(291,554,cs), +(114,554,o), +(4,444,o), +(4,273,cs), +(4,102,o), +(113,-10,o), +(286,-10,cs) +); +} +); +width = 570; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = top; +pos = (314,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(456,-8,o), +(568,66,o), +(591,174,c), +(552,174,l), +(529,88,o), +(437,27,o), +(315,27,cs), +(157,27,o), +(69,118,o), +(69,257,cs), +(69,397,o), +(167,490,o), +(318,490,cs), +(432,490,o), +(520,445,o), +(552,354,c), +(591,354,l), +(570,457,o), +(463,525,o), +(318,525,cs), +(146,525,o), +(32,416,o), +(32,257,cs), +(32,93,o), +(140,-8,o), +(315,-8,cs) +); +} +); +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (342,0); +}, +{ +name = top; +pos = (351,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(546,-10,o), +(669,76,o), +(683,222,c), +(453,222,l), +(439,178,o), +(405,156,o), +(350,156,cs), +(281,156,o), +(235,193,o), +(235,274,cs), +(235,342,o), +(274,388,o), +(350,388,cs), +(407,388,o), +(442,366,o), +(452,322,c), +(681,322,l), +(668,468,o), +(549,554,o), +(351,554,cs), +(148,554,o), +(14,453,o), +(14,275,cs), +(14,103,o), +(138,-10,o), +(341,-10,cs) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = top; +pos = (296,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(417,-8,o), +(504,63,o), +(516,174,c), +(479,174,l), +(469,85,o), +(397,27,o), +(298,27,cs), +(175,27,o), +(94,115,o), +(94,257,cs), +(94,395,o), +(172,490,o), +(299,490,cs), +(389,490,o), +(461,441,o), +(477,354,c), +(513,354,l), +(500,456,o), +(415,525,o), +(301,525,cs), +(153,525,o), +(57,416,o), +(57,257,cs), +(57,98,o), +(153,-8,o), +(298,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-8,o), +(478,54,o), +(501,154,c), +(464,154,l), +(444,74,o), +(380,27,o), +(295,27,cs), +(178,27,o), +(102,115,o), +(102,257,cs), +(102,395,o), +(175,490,o), +(296,490,cs), +(376,490,o), +(439,445,o), +(461,372,c), +(500,372,l), +(476,466,o), +(400,525,o), +(298,525,cs), +(156,525,o), +(65,416,o), +(65,257,cs), +(65,98,o), +(156,-8,o), +(295,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 551; +}, +{ +anchors = ( +{ +name = bottom; +pos = (299,0); +}, +{ +name = top; +pos = (300,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(33,92,o), +(145,-10,o), +(312,-10,cs), +(491,-10,o), +(591,103,o), +(591,272,cs), +(591,452,o), +(479,554,o), +(312,554,cs), +(133,554,o), +(33,441,o), +(33,272,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,364,o), +(261,400,o), +(312,400,cs), +(363,400,o), +(397,364,o), +(397,272,cs), +(397,180,o), +(363,144,o), +(312,144,cs), +(261,144,o), +(227,180,o), +(227,272,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(554,76,o), +(557,208,c), +(369,208,l), +(365,171,o), +(343,144,o), +(299,144,cs), +(252,144,o), +(223,182,o), +(223,272,cs), +(223,351,o), +(245,400,o), +(300,400,cs), +(335,400,o), +(361,380,o), +(367,336,c), +(556,336,l), +(555,465,o), +(450,554,o), +(304,554,cs), +(137,554,o), +(30,444,o), +(30,273,cs), +(30,102,o), +(136,-10,o), +(299,-10,cs) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (123,0); +}, +{ +name = top; +pos = (216,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,-10,o), +(227,29,o), +(260,153,c), +(230,153,l), +(204,67,o), +(178,17,o), +(125,17,cs), +(46,17,o), +(44,118,o), +(75,266,cs), +(113,448,o), +(160,498,o), +(212,498,cs), +(277,498,o), +(281,435,o), +(272,356,c), +(302,356,l), +(315,456,o), +(297,525,o), +(215,525,cs), +(131,525,o), +(82,441,o), +(46,266,cs), +(15,118,o), +(10,-10,o), +(121,-10,cs) +); +} +); +width = 312; +}, +{ +anchors = ( +{ +name = bottom; +pos = (169,0); +}, +{ +name = top; +pos = (277,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,-11,o), +(374,50,o), +(408,203,c), +(245,203,l), +(230,146,o), +(214,128,o), +(196,128,cs), +(160,128,o), +(169,178,o), +(189,277,cs), +(212,388,o), +(226,413,o), +(250,413,cs), +(276,413,o), +(279,389,o), +(272,339,c), +(437,339,l), +(452,477,o), +(397,551,o), +(259,551,cs), +(135,551,o), +(56,474,o), +(17,287,cs), +(-19,114,o), +(12,-11,o), +(186,-11,cs) +); +} +); +width = 434; +}, +{ +anchors = ( +{ +name = bottom; +pos = (249,0); +}, +{ +name = top; +pos = (328,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-10,o), +(463,57,o), +(491,165,c), +(454,165,l), +(430,80,o), +(353,23,o), +(254,23,cs), +(152,23,o), +(88,91,o), +(88,209,cs), +(88,352,o), +(164,494,o), +(323,494,cs), +(418,494,o), +(483,435,o), +(487,351,c), +(520,351,l), +(520,454,o), +(441,527,o), +(328,527,cs), +(149,527,o), +(51,371,o), +(51,210,cs), +(51,77,o), +(129,-10,o), +(251,-10,cs) +); +} +); +width = 553; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = top; +pos = (350,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-186,-10,o), +(-75,75,o), +(-56,203,c), +(-239,207,l), +(-257,164,o), +(-283,143,o), +(-322,143,cs), +(-361,143,o), +(-388,173,o), +(-386,234,cs), +(-382,336,o), +(-342,401,o), +(-282,401,cs), +(-248,401,o), +(-219,378,o), +(-218,334,c), +(-33,331,l), +(-24,465,o), +(-119,554,o), +(-272,554,cs), +(-452,554,o), +(-568,430,o), +(-575,232,cs), +(-581,72,o), +(-480,-10,o), +(-333,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(445,-10,o), +(547,90,o), +(573,244,cs), +(605,435,o), +(501,554,o), +(330,554,cs), +(161,554,o), +(56,453,o), +(31,302,cs), +(-1,110,o), +(102,-10,o), +(274,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,141,o), +(213,172,o), +(217,237,cs), +(223,337,o), +(255,404,o), +(320,404,cs), +(364,404,o), +(391,373,o), +(387,308,cs), +(381,208,o), +(349,141,o), +(284,141,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(533,75,o), +(552,205,c), +(369,205,l), +(355,161,o), +(325,141,o), +(286,141,cs), +(241,141,o), +(214,172,o), +(218,237,cs), +(224,336,o), +(256,403,o), +(321,403,cs), +(360,403,o), +(386,378,o), +(385,334,c), +(570,334,l), +(568,465,o), +(473,554,o), +(327,554,cs), +(162,554,o), +(57,453,o), +(32,302,cs), +(0,110,o), +(103,-10,o), +(274,-10,cs) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +}, +{ +name = top; +pos = (349,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(537,65,o), +(567,173,c), +(529,173,l), +(500,83,o), +(405,24,o), +(288,24,cs), +(156,24,o), +(70,94,o), +(70,221,cs), +(70,382,o), +(184,493,o), +(344,493,cs), +(445,493,o), +(537,444,o), +(554,354,c), +(592,354,l), +(583,452,o), +(485,527,o), +(349,527,cs), +(166,527,o), +(33,400,o), +(33,220,cs), +(33,81,o), +(130,-10,o), +(284,-10,cs) +); +} +); +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (322,0); +}, +{ +name = top; +pos = (360,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(505,-10,o), +(637,69,o), +(657,208,c), +(441,209,l), +(426,173,o), +(383,157,o), +(338,157,cs), +(273,157,o), +(229,197,o), +(231,259,cs), +(234,337,o), +(281,387,o), +(357,387,cs), +(409,387,o), +(448,364,o), +(454,329,c), +(671,328,l), +(675,464,o), +(550,554,o), +(363,554,cs), +(154,554,o), +(18,436,o), +(12,252,cs), +(6,93,o), +(123,-10,o), +(320,-10,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(510,-9,o), +(640,79,o), +(657,209,c), +(441,209,l), +(426,173,o), +(383,157,o), +(338,157,cs), +(274,157,o), +(231,195,o), +(231,255,cs), +(231,335,o), +(280,387,o), +(357,387,cs), +(409,387,o), +(448,364,o), +(454,329,c), +(671,329,l), +(667,464,o), +(543,554,o), +(362,554,cs), +(152,554,o), +(13,437,o), +(13,256,cs), +(13,97,o), +(126,-9,o), +(324,-9,cs) +); +} +); +width = 676; +} +); +unicode = 99; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/cacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/cacute.glyph new file mode 100644 index 00000000..2adb3008 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/cacute.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = cacute; +kernLeft = KO_e; +kernRight = KO_c; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = c; +}, +{ +pos = (103,-156); +ref = acutecomb; +} +); +width = 318; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = c; +}, +{ +pos = (108,-137); +ref = acutecomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = c; +}, +{ +pos = (258,-155); +ref = acutecomb; +} +); +width = 606; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = c; +}, +{ +pos = (230,-129); +ref = acutecomb; +} +); +width = 675; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (104,-156); +ref = acutecomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = c; +}, +{ +pos = (109,-137); +ref = acutecomb; +} +); +width = 426; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = c; +}, +{ +pos = (239,-155); +ref = acutecomb; +} +); +width = 523; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (191,-134); +ref = acutecomb; +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (258,-155); +ref = acutecomb; +} +); +width = 606; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = c; +}, +{ +pos = (244,-129); +ref = acutecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (240,-155); +ref = acutecomb; +} +); +width = 551; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (190,-134); +ref = acutecomb; +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = c; +}, +{ +pos = (75,-156); +ref = acutecomb; +} +); +width = 312; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (82,-137); +ref = acutecomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = c; +}, +{ +pos = (186,-155); +ref = acutecomb; +} +); +width = 553; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = c; +}, +{ +pos = (155,-134); +ref = acutecomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = c; +}, +{ +pos = (206,-155); +ref = acutecomb; +} +); +width = 609; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = c; +}, +{ +pos = (160,-129); +ref = acutecomb; +} +); +width = 676; +} +); +unicode = 263; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/caron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/caron.glyph new file mode 100644 index 00000000..0eb5452a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/caron.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = caron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 257; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 434; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 359; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 582; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = caroncomb; +} +); +width = 257; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = caroncomb; +} +); +width = 434; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = caroncomb; +} +); +width = 329; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = caroncomb; +} +); +width = 474; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = caroncomb; +} +); +width = 359; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = caroncomb; +} +); +width = 582; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 328; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 476; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 257; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 430; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 328; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 489; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 359; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 582; +} +); +unicode = 711; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/caroncomb.alt.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/caroncomb.alt.glyph new file mode 100644 index 00000000..6d00c787 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/caroncomb.alt.glyph @@ -0,0 +1,392 @@ +{ +export = 0; +glyphname = caroncomb.alt; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (-9,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,546,l), +(106,729,l), +(78,729,l), +(40,546,l) +); +} +); +width = 146; +}, +{ +anchors = ( +{ +name = _topright; +pos = (21,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,569,l), +(232,729,l), +(78,729,l), +(40,569,l) +); +} +); +width = 272; +}, +{ +anchors = ( +{ +name = _topright; +pos = (-28,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,556,l), +(136,729,l), +(98,729,l), +(40,556,l) +); +} +); +width = 176; +}, +{ +anchors = ( +{ +name = _topright; +pos = (10,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,553,l), +(251,729,l), +(77,729,l), +(40,553,l) +); +} +); +width = 291; +}, +{ +anchors = ( +{ +name = _topright; +pos = (-29,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(46,546,l), +(86,729,l), +(58,729,l), +(20,546,l) +); +} +); +width = 106; +}, +{ +anchors = ( +{ +name = _topright; +pos = (11,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,569,l), +(222,729,l), +(68,729,l), +(30,569,l) +); +} +); +width = 252; +}, +{ +anchors = ( +{ +name = _topright; +pos = (-38,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(54,536,l), +(124,729,l), +(88,729,l), +(20,536,l) +); +} +); +width = 144; +}, +{ +anchors = ( +{ +name = _topright; +pos = (0,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,569,l), +(221,729,l), +(57,729,l), +(19,569,l) +); +} +); +width = 240; +}, +{ +anchors = ( +{ +name = _topright; +pos = (-38,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,556,l), +(126,729,l), +(88,729,l), +(30,556,l) +); +} +); +width = 156; +}, +{ +anchors = ( +{ +name = _topright; +pos = (0,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,553,l), +(241,729,l), +(67,729,l), +(30,553,l) +); +} +); +width = 271; +}, +{ +anchors = ( +{ +name = _topright; +pos = (-21,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(69,536,l), +(139,729,l), +(103,729,l), +(37,536,l) +); +} +); +width = 174; +}, +{ +anchors = ( +{ +name = _topright; +pos = (23,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(156,569,l), +(227,729,l), +(64,729,l), +(35,569,l) +); +} +); +width = 261; +}, +{ +anchors = ( +{ +name = _topright; +pos = (88,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(126,546,l), +(204,729,l), +(176,729,l), +(100,546,l) +); +} +); +width = 146; +}, +{ +anchors = ( +{ +name = _topright; +pos = (117,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,569,l), +(328,729,l), +(174,729,l), +(102,569,l) +); +} +); +width = 273; +}, +{ +anchors = ( +{ +name = _topright; +pos = (79,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,536,l), +(241,729,l), +(205,729,l), +(97,536,l) +); +} +); +width = 184; +}, +{ +anchors = ( +{ +name = _topright; +pos = (107,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,569,l), +(338,729,l), +(174,729,l), +(102,569,l) +); +} +); +width = 283; +}, +{ +anchors = ( +{ +name = _topright; +pos = (69,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,556,l), +(234,729,l), +(196,729,l), +(102,556,l) +); +} +); +width = 177; +}, +{ +anchors = ( +{ +name = _topright; +pos = (105,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,553,l), +(345,729,l), +(171,729,l), +(98,553,l) +); +} +); +width = 290; +} +); +metricLeft = "=40"; +metricRight = "=40"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/caroncomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/caroncomb.glyph new file mode 100644 index 00000000..7c570a87 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/caroncomb.glyph @@ -0,0 +1,446 @@ +{ +glyphname = caroncomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (217,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,735,l), +(394,884,l), +(246,884,l), +(217,818,l), +(188,884,l), +(40,884,l), +(125,735,l) +); +} +); +width = 434; +}, +{ +anchors = ( +{ +name = _top; +pos = (129,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,746,l), +(217,882,l), +(188,882,l), +(129,768,l), +(69,882,l), +(40,882,l), +(108,746,l) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = _top; +pos = (179,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,746,l), +(319,882,l), +(276,882,l), +(179,773,l), +(82,882,l), +(40,882,l), +(156,746,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = _top; +pos = (291,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(410,729,l), +(542,878,l), +(366,878,l), +(291,801,l), +(216,878,l), +(40,878,l), +(172,729,l) +); +} +); +width = 582; +}, +{ +anchors = ( +{ +name = _top; +pos = (109,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,746,l), +(197,882,l), +(168,882,l), +(109,768,l), +(49,882,l), +(20,882,l), +(88,746,l) +); +} +); +width = 217; +}, +{ +anchors = ( +{ +name = _top; +pos = (207,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,735,l), +(384,884,l), +(236,884,l), +(207,818,l), +(178,884,l), +(30,884,l), +(115,735,l) +); +} +); +width = 414; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,746,l), +(269,882,l), +(229,882,l), +(144,770,l), +(59,882,l), +(20,882,l), +(123,746,l) +); +} +); +width = 289; +}, +{ +anchors = ( +{ +name = _top; +pos = (226,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,735,l), +(433,884,l), +(275,884,l), +(226,818,l), +(177,884,l), +(19,884,l), +(134,735,l) +); +} +); +width = 452; +}, +{ +anchors = ( +{ +name = _top; +pos = (169,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,746,l), +(309,882,l), +(266,882,l), +(169,773,l), +(72,882,l), +(30,882,l), +(146,746,l) +); +} +); +width = 339; +}, +{ +anchors = ( +{ +name = _top; +pos = (281,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,729,l), +(532,878,l), +(356,878,l), +(281,801,l), +(206,878,l), +(30,878,l), +(162,729,l) +); +} +); +width = 562; +}, +{ +anchors = ( +{ +name = _top; +pos = (163,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(184,746,l), +(286,882,l), +(248,882,l), +(163,770,l), +(80,882,l), +(43,882,l), +(144,746,l) +); +} +); +width = 328; +}, +{ +anchors = ( +{ +name = _top; +pos = (239,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(330,735,l), +(439,884,l), +(282,884,l), +(239,818,l), +(195,884,l), +(39,884,l), +(148,735,l) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = _top; +pos = (214,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,746,l), +(346,882,l), +(315,882,l), +(232,767,l), +(196,882,l), +(169,882,l), +(210,746,l) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = _top; +pos = (296,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,735,l), +(517,884,l), +(364,884,l), +(325,818,l), +(306,884,l), +(167,884,l), +(220,735,l) +); +} +); +width = 430; +}, +{ +anchors = ( +{ +name = _top; +pos = (251,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,746,l), +(417,882,l), +(378,882,l), +(268,771,l), +(204,882,l), +(169,882,l), +(246,746,l) +); +} +); +width = 328; +}, +{ +anchors = ( +{ +name = _top; +pos = (334,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,735,l), +(576,884,l), +(420,884,l), +(360,818,l), +(323,884,l), +(167,884,l), +(254,735,l) +); +} +); +width = 489; +}, +{ +anchors = ( +{ +name = _top; +pos = (266,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,746,l), +(448,882,l), +(404,882,l), +(284,773,l), +(209,882,l), +(169,882,l), +(259,746,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = _top; +pos = (374,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,729,l), +(667,878,l), +(486,878,l), +(395,801,l), +(336,878,l), +(165,878,l), +(267,729,l) +); +} +); +width = 582; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 780; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ccaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ccaron.glyph new file mode 100644 index 00000000..6057ea57 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ccaron.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = ccaron; +kernLeft = KO_egrave; +kernRight = KO_c; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = c; +}, +{ +pos = (30,-156); +ref = caroncomb; +} +); +width = 318; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = c; +}, +{ +pos = (3,-137); +ref = caroncomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = c; +}, +{ +pos = (137,-155); +ref = caroncomb; +} +); +width = 606; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = c; +}, +{ +pos = (56,-129); +ref = caroncomb; +} +); +width = 675; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (31,-156); +ref = caroncomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = c; +}, +{ +pos = (4,-137); +ref = caroncomb; +} +); +width = 426; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = c; +}, +{ +pos = (130,-155); +ref = caroncomb; +} +); +width = 523; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (56,-134); +ref = caroncomb; +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (137,-155); +ref = caroncomb; +} +); +width = 606; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = c; +}, +{ +pos = (70,-129); +ref = caroncomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (133,-155); +ref = caroncomb; +} +); +width = 551; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (61,-134); +ref = caroncomb; +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = c; +}, +{ +pos = (2,-156); +ref = caroncomb; +} +); +width = 312; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (-19,-137); +ref = caroncomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = c; +}, +{ +pos = (77,-155); +ref = caroncomb; +} +); +width = 553; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = c; +}, +{ +pos = (16,-134); +ref = caroncomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = c; +}, +{ +pos = (83,-155); +ref = caroncomb; +} +); +width = 609; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = c; +}, +{ +pos = (-14,-129); +ref = caroncomb; +} +); +width = 676; +} +); +unicode = 269; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ccedilla.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ccedilla.glyph new file mode 100644 index 00000000..ac45dabc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ccedilla.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = ccedilla; +kernLeft = KO_e; +kernRight = KO_c; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = c; +}, +{ +pos = (27,0); +ref = cedillacomb; +} +); +width = 318; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = c; +}, +{ +pos = (19,0); +ref = cedillacomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = c; +}, +{ +pos = (160,0); +ref = cedillacomb; +} +); +width = 606; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = c; +}, +{ +pos = (113,0); +ref = cedillacomb; +} +); +width = 675; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (28,0); +ref = cedillacomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = c; +}, +{ +pos = (20,0); +ref = cedillacomb; +} +); +width = 426; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = c; +}, +{ +pos = (149,0); +ref = cedillacomb; +} +); +width = 523; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (84,0); +ref = cedillacomb; +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (160,0); +ref = cedillacomb; +} +); +width = 606; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = c; +}, +{ +pos = (127,0); +ref = cedillacomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (150,0); +ref = cedillacomb; +} +); +width = 551; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (89,0); +ref = cedillacomb; +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = c; +}, +{ +pos = (49,0); +ref = cedillacomb; +} +); +width = 312; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (18,0); +ref = cedillacomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = c; +}, +{ +pos = (163,0); +ref = cedillacomb; +} +); +width = 553; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = c; +}, +{ +pos = (117,0); +ref = cedillacomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = c; +}, +{ +pos = (182,0); +ref = cedillacomb; +} +); +width = 609; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = c; +}, +{ +pos = (146,0); +ref = cedillacomb; +} +); +width = 676; +} +); +unicode = 231; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ccircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ccircumflex.glyph new file mode 100644 index 00000000..95071767 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ccircumflex.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = ccircumflex; +kernLeft = KO_egrave; +kernRight = KO_c; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = c; +}, +{ +pos = (30,-156); +ref = circumflexcomb; +} +); +width = 318; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = c; +}, +{ +pos = (3,-137); +ref = circumflexcomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = c; +}, +{ +pos = (137,-155); +ref = circumflexcomb; +} +); +width = 606; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = c; +}, +{ +pos = (56,-129); +ref = circumflexcomb; +} +); +width = 675; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (31,-156); +ref = circumflexcomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = c; +}, +{ +pos = (4,-137); +ref = circumflexcomb; +} +); +width = 426; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = c; +}, +{ +pos = (130,-155); +ref = circumflexcomb; +} +); +width = 523; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (56,-134); +ref = circumflexcomb; +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (137,-155); +ref = circumflexcomb; +} +); +width = 606; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = c; +}, +{ +pos = (70,-129); +ref = circumflexcomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (133,-155); +ref = circumflexcomb; +} +); +width = 551; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (61,-134); +ref = circumflexcomb; +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = c; +}, +{ +pos = (1,-156); +ref = circumflexcomb; +} +); +width = 312; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (-25,-137); +ref = circumflexcomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = c; +}, +{ +pos = (76,-155); +ref = circumflexcomb; +} +); +width = 553; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = c; +}, +{ +pos = (21,-134); +ref = circumflexcomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = c; +}, +{ +pos = (83,-155); +ref = circumflexcomb; +} +); +width = 609; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = c; +}, +{ +pos = (-16,-129); +ref = circumflexcomb; +} +); +width = 676; +} +); +unicode = 265; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/cdotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/cdotaccent.glyph new file mode 100644 index 00000000..e15e134c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/cdotaccent.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = cdotaccent; +kernLeft = KO_e; +kernRight = KO_c; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = c; +}, +{ +pos = (96,-156); +ref = dotaccentcomb; +} +); +width = 318; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = c; +}, +{ +pos = (86,-137); +ref = dotaccentcomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = c; +}, +{ +pos = (244,-155); +ref = dotaccentcomb; +} +); +width = 606; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = c; +}, +{ +pos = (189,-129); +ref = dotaccentcomb; +} +); +width = 675; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (97,-151); +ref = dotaccentcomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = c; +}, +{ +pos = (87,-137); +ref = dotaccentcomb; +} +); +width = 426; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = c; +}, +{ +pos = (222,-150); +ref = dotaccentcomb; +} +); +width = 523; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (166,-134); +ref = dotaccentcomb; +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (244,-155); +ref = dotaccentcomb; +} +); +width = 606; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = c; +}, +{ +pos = (203,-129); +ref = dotaccentcomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (223,-133); +ref = dotaccentcomb; +} +); +width = 551; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (167,-120); +ref = dotaccentcomb; +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = c; +}, +{ +pos = (62,-156); +ref = dotaccentcomb; +} +); +width = 312; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (59,-137); +ref = dotaccentcomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = c; +}, +{ +pos = (171,-155); +ref = dotaccentcomb; +} +); +width = 553; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = c; +}, +{ +pos = (125,-134); +ref = dotaccentcomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = c; +}, +{ +pos = (192,-155); +ref = dotaccentcomb; +} +); +width = 609; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = c; +}, +{ +pos = (116,-129); +ref = dotaccentcomb; +} +); +width = 676; +} +); +unicode = 267; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/cdotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/cdotaccent.ss01.glyph new file mode 100644 index 00000000..fc82eb20 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/cdotaccent.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = cdotaccent.ss01; +kernLeft = KO_e; +kernRight = KO_c; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = c; +}, +{ +pos = (104,-156); +ref = dotaccentcomb.ss01; +} +); +width = 318; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = c; +}, +{ +pos = (91,-137); +ref = dotaccentcomb.ss01; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = c; +}, +{ +pos = (257,-155); +ref = dotaccentcomb.ss01; +} +); +width = 606; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = c; +}, +{ +pos = (196,-129); +ref = dotaccentcomb.ss01; +} +); +width = 675; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (105,-156); +ref = dotaccentcomb.ss01; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = c; +}, +{ +pos = (92,-137); +ref = dotaccentcomb.ss01; +} +); +width = 426; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = c; +}, +{ +pos = (235,-155); +ref = dotaccentcomb.ss01; +} +); +width = 523; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (167,-134); +ref = dotaccentcomb.ss01; +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = c; +}, +{ +alignment = -1; +pos = (257,-155); +ref = dotaccentcomb.ss01; +} +); +width = 606; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = c; +}, +{ +pos = (210,-129); +ref = dotaccentcomb.ss01; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (236,-155); +ref = dotaccentcomb.ss01; +} +); +width = 551; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (166,-134); +ref = dotaccentcomb.ss01; +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = c; +}, +{ +pos = (76,-156); +ref = dotaccentcomb.ss01; +} +); +width = 312; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = c; +}, +{ +pos = (65,-137); +ref = dotaccentcomb.ss01; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = c; +}, +{ +pos = (184,-155); +ref = dotaccentcomb.ss01; +} +); +width = 553; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = c; +}, +{ +pos = (130,-134); +ref = dotaccentcomb.ss01; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = c; +}, +{ +pos = (205,-155); +ref = dotaccentcomb.ss01; +} +); +width = 609; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = c; +}, +{ +pos = (125,-134); +ref = dotaccentcomb.ss01; +} +); +width = 676; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/cedilla.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/cedilla.glyph new file mode 100644 index 00000000..33938911 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/cedilla.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = cedilla; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 370; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 289; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 423; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = cedillacomb; +} +); +width = 254; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = cedillacomb; +} +); +width = 370; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = cedillacomb; +} +); +width = 279; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = cedillacomb; +} +); +width = 370; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = cedillacomb; +} +); +width = 289; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = cedillacomb; +} +); +width = 423; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 278; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 373; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 255; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 372; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 279; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 393; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 291; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 427; +} +); +unicode = 184; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/cedillacomb.T_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/cedillacomb.T_.glyph new file mode 100644 index 00000000..466f109b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/cedillacomb.T_.glyph @@ -0,0 +1,728 @@ +{ +export = 0; +glyphname = cedillacomb.T; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (131,0); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-232,o), +(214,-198,o), +(214,-149,cs), +(214,-102,o), +(182,-67,o), +(124,-53,c), +(146,0,l), +(122,17,l), +(92,-55,l), +(100,-76,l), +(161,-89,o), +(184,-111,o), +(184,-148,cs), +(184,-182,o), +(164,-206,o), +(127,-206,cs), +(97,-206,o), +(77,-189,o), +(69,-161,c), +(40,-169,l), +(52,-209,o), +(85,-232,o), +(129,-232,cs) +); +} +); +width = 254; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (211,0); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,-261,o), +(330,-217,o), +(330,-147,cs), +(330,-86,o), +(295,-53,o), +(243,-34,c), +(259,24,l), +(182,24,l), +(130,-61,l), +(143,-88,l), +(183,-95,o), +(209,-100,o), +(209,-129,cs), +(209,-146,o), +(199,-158,o), +(181,-158,cs), +(163,-158,o), +(151,-144,o), +(152,-124,c), +(40,-153,l), +(53,-228,o), +(118,-261,o), +(190,-261,cs) +); +} +); +width = 370; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (158,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-233,o), +(249,-200,o), +(249,-149,cs), +(249,-103,o), +(217,-66,o), +(143,-53,c), +(178,1,l), +(148,12,l), +(104,-55,l), +(114,-75,l), +(192,-89,o), +(213,-113,o), +(213,-147,cs), +(213,-181,o), +(188,-204,o), +(149,-204,cs), +(113,-204,o), +(85,-187,o), +(74,-159,c), +(40,-169,l), +(55,-209,o), +(97,-233,o), +(149,-233,cs) +); +} +); +width = 289; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (231,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-262,o), +(383,-215,o), +(383,-141,cs), +(383,-81,o), +(338,-46,o), +(272,-34,c), +(293,23,l), +(201,23,l), +(143,-61,l), +(158,-89,l), +(216,-94,o), +(245,-99,o), +(245,-126,cs), +(245,-145,o), +(231,-157,o), +(205,-157,cs), +(179,-157,o), +(158,-143,o), +(156,-123,c), +(40,-153,l), +(54,-218,o), +(116,-262,o), +(217,-262,cs) +); +} +); +width = 423; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (111,0); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(160,-232,o), +(194,-198,o), +(194,-149,cs), +(194,-102,o), +(162,-67,o), +(104,-53,c), +(126,0,l), +(102,17,l), +(72,-55,l), +(80,-76,l), +(141,-89,o), +(164,-111,o), +(164,-148,cs), +(164,-182,o), +(144,-206,o), +(107,-206,cs), +(77,-206,o), +(57,-189,o), +(49,-161,c), +(20,-169,l), +(32,-209,o), +(65,-232,o), +(109,-232,cs) +); +} +); +width = 214; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (201,0); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-261,o), +(320,-217,o), +(320,-147,cs), +(320,-86,o), +(285,-53,o), +(233,-34,c), +(249,24,l), +(172,24,l), +(120,-61,l), +(133,-88,l), +(173,-95,o), +(199,-100,o), +(199,-129,cs), +(199,-146,o), +(189,-158,o), +(171,-158,cs), +(153,-158,o), +(141,-144,o), +(142,-124,c), +(30,-153,l), +(43,-228,o), +(108,-261,o), +(180,-261,cs) +); +} +); +width = 350; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (124,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-233,o), +(219,-198,o), +(219,-149,cs), +(219,-101,o), +(182,-66,o), +(113,-51,c), +(143,0,l), +(113,13,l), +(74,-51,l), +(87,-76,l), +(158,-90,o), +(184,-110,o), +(184,-147,cs), +(184,-180,o), +(162,-204,o), +(122,-204,cs), +(86,-204,o), +(63,-188,o), +(53,-159,c), +(20,-169,l), +(33,-210,o), +(71,-233,o), +(121,-233,cs) +); +} +); +width = 239; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (197,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-261,o), +(329,-221,o), +(329,-149,cs), +(329,-86,o), +(289,-53,o), +(230,-34,c), +(248,23,l), +(170,23,l), +(115,-61,l), +(129,-88,l), +(177,-95,o), +(205,-100,o), +(205,-127,cs), +(205,-146,o), +(191,-158,o), +(170,-158,cs), +(148,-158,o), +(132,-144,o), +(131,-124,c), +(19,-153,l), +(33,-229,o), +(104,-261,o), +(182,-261,cs) +); +} +); +width = 348; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (148,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(199,-233,o), +(239,-200,o), +(239,-149,cs), +(239,-103,o), +(207,-66,o), +(133,-53,c), +(168,1,l), +(138,12,l), +(94,-55,l), +(104,-75,l), +(182,-89,o), +(203,-113,o), +(203,-147,cs), +(203,-181,o), +(178,-204,o), +(139,-204,cs), +(103,-204,o), +(75,-187,o), +(64,-159,c), +(30,-169,l), +(45,-209,o), +(87,-233,o), +(139,-233,cs) +); +} +); +width = 269; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (221,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,-262,o), +(373,-215,o), +(373,-141,cs), +(373,-81,o), +(328,-46,o), +(262,-34,c), +(283,23,l), +(191,23,l), +(133,-61,l), +(148,-89,l), +(206,-94,o), +(235,-99,o), +(235,-126,cs), +(235,-145,o), +(221,-157,o), +(195,-157,cs), +(169,-157,o), +(148,-143,o), +(146,-123,c), +(30,-153,l), +(44,-218,o), +(106,-262,o), +(207,-262,cs) +); +} +); +width = 403; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (139,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(193,-233,o), +(232,-198,o), +(232,-149,cs), +(232,-101,o), +(195,-66,o), +(128,-51,c), +(156,0,l), +(128,13,l), +(89,-51,l), +(102,-76,l), +(171,-90,o), +(197,-110,o), +(197,-147,cs), +(197,-180,o), +(175,-204,o), +(137,-204,cs), +(101,-204,o), +(78,-188,o), +(68,-159,c), +(37,-169,l), +(50,-210,o), +(86,-233,o), +(136,-233,cs) +); +} +); +width = 267; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (206,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(275,-261,o), +(332,-221,o), +(332,-149,cs), +(332,-86,o), +(294,-53,o), +(240,-34,c), +(255,23,l), +(179,23,l), +(127,-61,l), +(141,-88,l), +(183,-95,o), +(210,-100,o), +(210,-127,cs), +(210,-146,o), +(197,-158,o), +(179,-158,cs), +(159,-158,o), +(145,-144,o), +(145,-124,c), +(35,-153,l), +(48,-229,o), +(117,-261,o), +(191,-261,cs) +); +} +); +width = 366; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (74,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-232,o), +(129,-195,o), +(129,-148,cs), +(129,-100,o), +(101,-69,o), +(55,-53,c), +(89,0,l), +(65,12,l), +(26,-52,l), +(29,-74,l), +(80,-91,o), +(100,-111,o), +(100,-149,cs), +(100,-184,o), +(75,-206,o), +(39,-206,cs), +(11,-206,o), +(-15,-188,o), +(-18,-155,c), +(-47,-162,l), +(-43,-204,o), +(-9,-232,o), +(36,-232,cs) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (151,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-262,o), +(244,-214,o), +(244,-141,cs), +(244,-99,o), +(221,-61,o), +(178,-43,c), +(205,17,l), +(128,23,l), +(61,-56,l), +(69,-85,l), +(112,-99,o), +(127,-107,o), +(127,-130,cs), +(127,-148,o), +(114,-158,o), +(95,-158,cs), +(78,-158,o), +(66,-146,o), +(65,-121,c), +(-45,-140,l), +(-40,-213,o), +(16,-262,o), +(94,-262,cs) +); +} +); +width = 372; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (86,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,-234,o), +(153,-200,o), +(153,-149,cs), +(153,-101,o), +(123,-71,o), +(68,-52,c), +(105,1,l), +(77,18,l), +(31,-51,l), +(37,-74,l), +(93,-90,o), +(119,-111,o), +(119,-149,cs), +(119,-182,o), +(93,-204,o), +(54,-204,cs), +(17,-204,o), +(-10,-186,o), +(-14,-153,c), +(-47,-160,l), +(-41,-204,o), +(-3,-234,o), +(51,-234,cs) +); +} +); +width = 279; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (159,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-263,o), +(264,-216,o), +(264,-145,cs), +(264,-91,o), +(232,-59,o), +(185,-42,c), +(214,16,l), +(137,23,l), +(67,-56,l), +(76,-85,l), +(120,-94,o), +(144,-102,o), +(144,-127,cs), +(144,-147,o), +(129,-158,o), +(108,-158,cs), +(81,-158,o), +(69,-140,o), +(71,-120,c), +(-45,-139,l), +(-37,-216,o), +(20,-263,o), +(106,-263,cs) +); +} +); +width = 393; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (101,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,-234,o), +(165,-200,o), +(165,-148,cs), +(165,-100,o), +(132,-68,o), +(77,-53,c), +(120,0,l), +(94,17,l), +(38,-52,l), +(45,-72,l), +(111,-90,o), +(130,-111,o), +(130,-148,cs), +(130,-180,o), +(108,-204,o), +(61,-204,cs), +(23,-204,o), +(-5,-184,o), +(-11,-153,c), +(-46,-159,l), +(-37,-204,o), +(6,-234,o), +(61,-234,cs) +); +} +); +width = 291; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-263,o), +(298,-216,o), +(298,-147,cs), +(298,-87,o), +(258,-55,o), +(206,-39,c), +(238,15,l), +(148,23,l), +(74,-55,l), +(84,-84,l), +(135,-92,o), +(163,-101,o), +(163,-127,cs), +(163,-146,o), +(147,-156,o), +(123,-156,cs), +(94,-156,o), +(78,-139,o), +(75,-118,c), +(-45,-137,l), +(-38,-213,o), +(32,-263,o), +(130,-263,cs) +); +} +); +width = 427; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/cedillacomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/cedillacomb.glyph new file mode 100644 index 00000000..51e2f5e9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/cedillacomb.glyph @@ -0,0 +1,1354 @@ +{ +glyphname = cedillacomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (141,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(179,-233,o), +(214,-199,o), +(214,-149,cs), +(214,-102,o), +(182,-67,o), +(124,-53,c), +(147,5,l), +(119,5,l), +(92,-55,l), +(100,-76,l), +(161,-89,o), +(184,-111,o), +(184,-148,cs), +(184,-182,o), +(164,-206,o), +(127,-206,cs), +(97,-205,o), +(77,-189,o), +(69,-161,c), +(40,-169,l), +(52,-208,o), +(84,-231,o), +(127,-232,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,-233,o), +(214,-199,o), +(214,-149,cs), +(214,-107,o), +(185,-72,o), +(133,-56,c), +(157,5,l), +(129,5,l), +(100,-58,l), +(107,-77,l), +(153,-89,o), +(184,-111,o), +(184,-150,cs), +(184,-182,o), +(164,-206,o), +(127,-206,cs), +(97,-205,o), +(77,-189,o), +(69,-161,c), +(40,-169,l), +(52,-208,o), +(84,-231,o), +(127,-232,cs) +); +} +); +width = 254; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (206,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (140,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(206,-190,o), +(255,-152,o), +(255,-96,cs), +(255,-54,o), +(223,-24,o), +(172,-25,c), +(172,-34,l), +(198,31,l), +(107,31,l), +(73,-42,l), +(85,-59,l), +(101,-59,ls), +(124,-59,o), +(136,-68,o), +(136,-83,cs), +(136,-99,o), +(125,-108,o), +(110,-108,cs), +(97,-108,o), +(85,-102,o), +(83,-90,c), +(-18,-101,l), +(-12,-157,o), +(41,-190,o), +(120,-190,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,-261,o), +(330,-217,o), +(330,-147,cs), +(330,-86,o), +(295,-53,o), +(243,-34,c), +(259,24,l), +(182,24,l), +(130,-61,l), +(143,-88,l), +(183,-95,o), +(209,-100,o), +(209,-129,cs), +(209,-146,o), +(199,-158,o), +(181,-158,cs), +(163,-158,o), +(151,-144,o), +(152,-124,c), +(40,-153,l), +(53,-228,o), +(118,-261,o), +(190,-261,cs) +); +} +); +width = 370; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (153,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (272,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(338,-218,o), +(379,-183,o), +(379,-132,cs), +(379,-75,o), +(327,-46,o), +(257,-53,c), +(270,-60,l), +(301,23,l), +(268,23,l), +(233,-62,l), +(244,-79,l), +(261,-79,ls), +(304,-79,o), +(342,-89,o), +(342,-132,cs), +(342,-165,o), +(319,-187,o), +(277,-187,cs), +(237,-187,o), +(205,-172,o), +(198,-141,c), +(166,-144,l), +(174,-188,o), +(215,-218,o), +(277,-218,cs) +); +} +); +}; +guides = ( +{ +pos = (149,-233); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-233,o), +(249,-200,o), +(249,-149,cs), +(249,-103,o), +(217,-66,o), +(143,-53,c), +(178,10,l), +(144,10,l), +(104,-55,l), +(114,-75,l), +(192,-89,o), +(213,-113,o), +(213,-147,cs), +(213,-181,o), +(188,-204,o), +(149,-204,cs), +(113,-204,o), +(85,-187,o), +(74,-159,c), +(40,-169,l), +(55,-209,o), +(97,-233,o), +(149,-233,cs) +); +} +); +width = 289; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (225,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (-288,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(299,-261,o), +(367,-211,o), +(367,-136,cs), +(367,-77,o), +(320,-41,o), +(261,-32,c), +(302,25,l), +(176,25,l), +(115,-88,l), +(158,-88,ls), +(193,-88,o), +(218,-97,o), +(219,-122,cs), +(220,-142,o), +(204,-155,o), +(179,-155,cs), +(160,-155,o), +(142,-147,o), +(137,-127,c), +(4,-150,l), +(15,-217,o), +(88,-261,o), +(187,-261,cs) +); +}, +{ +closed = 1; +nodes = ( +(-196,-251,o), +(-123,-205,o), +(-123,-135,cs), +(-123,-69,o), +(-186,-32,o), +(-278,-37,c), +(-261,-69,l), +(-222,25,l), +(-329,25,l), +(-377,-61,l), +(-359,-88,l), +(-326,-88,ls), +(-292,-88,o), +(-271,-94,o), +(-271,-115,cs), +(-271,-135,o), +(-289,-145,o), +(-316,-145,cs), +(-340,-145,o), +(-358,-135,o), +(-363,-117,c), +(-496,-140,l), +(-485,-207,o), +(-409,-251,o), +(-306,-251,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-262,o), +(383,-215,o), +(383,-141,cs), +(383,-81,o), +(338,-46,o), +(272,-34,c), +(293,23,l), +(201,23,l), +(143,-61,l), +(158,-89,l), +(216,-94,o), +(245,-99,o), +(245,-126,cs), +(245,-145,o), +(231,-157,o), +(205,-157,cs), +(179,-157,o), +(158,-143,o), +(156,-123,c), +(40,-153,l), +(54,-218,o), +(116,-262,o), +(217,-262,cs) +); +} +); +width = 423; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (121,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(179,-233,o), +(214,-199,o), +(214,-149,cs), +(214,-102,o), +(182,-67,o), +(124,-53,c), +(147,5,l), +(119,5,l), +(92,-55,l), +(100,-76,l), +(161,-89,o), +(184,-111,o), +(184,-148,cs), +(184,-182,o), +(164,-206,o), +(127,-206,cs), +(97,-205,o), +(77,-189,o), +(69,-161,c), +(40,-169,l), +(52,-208,o), +(84,-231,o), +(127,-232,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,-233,o), +(194,-199,o), +(194,-149,cs), +(194,-107,o), +(165,-72,o), +(113,-56,c), +(137,5,l), +(109,5,l), +(80,-58,l), +(87,-77,l), +(133,-89,o), +(164,-111,o), +(164,-150,cs), +(164,-182,o), +(144,-206,o), +(107,-206,cs), +(77,-205,o), +(57,-189,o), +(49,-161,c), +(20,-169,l), +(32,-208,o), +(64,-231,o), +(107,-232,cs) +); +} +); +width = 214; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (196,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (140,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(206,-190,o), +(255,-152,o), +(255,-96,cs), +(255,-54,o), +(223,-24,o), +(172,-25,c), +(172,-34,l), +(198,31,l), +(107,31,l), +(73,-42,l), +(85,-59,l), +(101,-59,ls), +(124,-59,o), +(136,-68,o), +(136,-83,cs), +(136,-99,o), +(125,-108,o), +(110,-108,cs), +(97,-108,o), +(85,-102,o), +(83,-90,c), +(-18,-101,l), +(-12,-157,o), +(41,-190,o), +(120,-190,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-261,o), +(320,-217,o), +(320,-147,cs), +(320,-86,o), +(285,-53,o), +(233,-34,c), +(249,24,l), +(172,24,l), +(120,-61,l), +(133,-88,l), +(173,-95,o), +(199,-100,o), +(199,-129,cs), +(199,-146,o), +(189,-158,o), +(171,-158,cs), +(153,-158,o), +(141,-144,o), +(142,-124,c), +(30,-153,l), +(43,-228,o), +(108,-261,o), +(180,-261,cs) +); +} +); +width = 350; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (124,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,-218,o), +(262,-185,o), +(262,-137,cs), +(262,-81,o), +(208,-52,o), +(140,-61,c), +(162,-65,l), +(189,6,l), +(159,6,l), +(124,-71,l), +(134,-84,l), +(148,-84,ls), +(192,-84,o), +(225,-98,o), +(225,-135,cs), +(225,-166,o), +(202,-187,o), +(161,-187,cs), +(128,-187,o), +(102,-176,o), +(93,-149,c), +(57,-155,l), +(68,-195,o), +(109,-218,o), +(162,-218,cs) +); +}, +{ +closed = 1; +nodes = ( +(-69,-229,o), +(-23,-192,o), +(-23,-138,cs), +(-23,-79,o), +(-73,-46,o), +(-145,-49,c), +(-136,-59,l), +(-117,4,l), +(-148,6,l), +(-170,-54,l), +(-155,-75,l), +(-95,-74,o), +(-58,-91,o), +(-58,-136,cs), +(-58,-175,o), +(-88,-201,o), +(-137,-201,cs), +(-182,-201,o), +(-213,-182,o), +(-222,-150,c), +(-254,-158,l), +(-243,-201,o), +(-197,-229,o), +(-137,-229,cs) +); +}, +{ +closed = 1; +nodes = ( +(498,-233,o), +(537,-199,o), +(537,-149,cs), +(537,-101,o), +(501,-67,o), +(435,-52,c), +(465,16,l), +(437,20,l), +(399,-55,l), +(408,-76,l), +(477,-90,o), +(504,-110,o), +(504,-147,cs), +(504,-181,o), +(481,-205,o), +(438,-204,cs), +(404,-204,o), +(382,-188,o), +(372,-160,c), +(340,-169,l), +(353,-208,o), +(390,-232,o), +(438,-233,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,-234,o), +(219,-199,o), +(219,-149,cs), +(219,-101,o), +(183,-67,o), +(116,-52,c), +(144,10,l), +(112,10,l), +(79,-55,l), +(89,-76,l), +(158,-90,o), +(184,-110,o), +(184,-147,cs), +(184,-181,o), +(161,-204,o), +(119,-204,cs), +(85,-203,o), +(63,-187,o), +(53,-159,c), +(20,-169,l), +(33,-209,o), +(70,-233,o), +(119,-233,cs) +); +} +); +width = 239; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (197,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(295,-225,o), +(350,-181,o), +(349,-115,cs), +(348,-57,o), +(299,-19,o), +(228,-29,c), +(246,-40,l), +(273,25,l), +(174,25,l), +(134,-47,l), +(146,-70,l), +(183,-70,ls), +(207,-70,o), +(225,-77,o), +(225,-102,cs), +(225,-120,o), +(212,-132,o), +(194,-132,cs), +(177,-132,o), +(164,-121,o), +(162,-105,c), +(40,-128,l), +(53,-186,o), +(110,-225,o), +(196,-225,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-261,o), +(329,-221,o), +(329,-149,cs), +(329,-86,o), +(289,-53,o), +(230,-34,c), +(248,23,l), +(170,23,l), +(115,-61,l), +(129,-88,l), +(177,-95,o), +(205,-100,o), +(205,-127,cs), +(205,-146,o), +(191,-158,o), +(170,-158,cs), +(148,-158,o), +(132,-144,o), +(131,-124,c), +(19,-153,l), +(33,-229,o), +(104,-261,o), +(182,-261,cs) +); +} +); +width = 348; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (143,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (272,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(338,-218,o), +(379,-183,o), +(379,-132,cs), +(379,-75,o), +(327,-46,o), +(257,-53,c), +(270,-60,l), +(301,23,l), +(268,23,l), +(233,-62,l), +(244,-79,l), +(261,-79,ls), +(304,-79,o), +(342,-89,o), +(342,-132,cs), +(342,-165,o), +(319,-187,o), +(277,-187,cs), +(237,-187,o), +(205,-172,o), +(198,-141,c), +(166,-144,l), +(174,-188,o), +(215,-218,o), +(277,-218,cs) +); +} +); +}; +guides = ( +{ +pos = (139,-233); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(199,-233,o), +(239,-200,o), +(239,-149,cs), +(239,-103,o), +(207,-66,o), +(133,-53,c), +(168,10,l), +(134,10,l), +(94,-55,l), +(104,-75,l), +(182,-89,o), +(203,-113,o), +(203,-147,cs), +(203,-181,o), +(178,-204,o), +(139,-204,cs), +(103,-204,o), +(75,-187,o), +(64,-159,c), +(30,-169,l), +(45,-209,o), +(87,-233,o), +(139,-233,cs) +); +} +); +width = 269; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (215,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (-288,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(299,-261,o), +(367,-211,o), +(367,-136,cs), +(367,-77,o), +(320,-41,o), +(261,-32,c), +(302,25,l), +(176,25,l), +(115,-88,l), +(158,-88,ls), +(193,-88,o), +(218,-97,o), +(219,-122,cs), +(220,-142,o), +(204,-155,o), +(179,-155,cs), +(160,-155,o), +(142,-147,o), +(137,-127,c), +(4,-150,l), +(15,-217,o), +(88,-261,o), +(187,-261,cs) +); +}, +{ +closed = 1; +nodes = ( +(-196,-251,o), +(-123,-205,o), +(-123,-135,cs), +(-123,-69,o), +(-186,-32,o), +(-278,-37,c), +(-261,-69,l), +(-222,25,l), +(-329,25,l), +(-377,-61,l), +(-359,-88,l), +(-326,-88,ls), +(-292,-88,o), +(-271,-94,o), +(-271,-115,cs), +(-271,-135,o), +(-289,-145,o), +(-316,-145,cs), +(-340,-145,o), +(-358,-135,o), +(-363,-117,c), +(-496,-140,l), +(-485,-207,o), +(-409,-251,o), +(-306,-251,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,-262,o), +(373,-215,o), +(373,-141,cs), +(373,-81,o), +(328,-46,o), +(262,-34,c), +(283,23,l), +(191,23,l), +(133,-61,l), +(148,-89,l), +(206,-94,o), +(235,-99,o), +(235,-126,cs), +(235,-145,o), +(221,-157,o), +(195,-157,cs), +(169,-157,o), +(148,-143,o), +(146,-123,c), +(30,-153,l), +(44,-218,o), +(106,-262,o), +(207,-262,cs) +); +} +); +width = 403; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (145,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,-218,o), +(262,-185,o), +(262,-137,cs), +(262,-81,o), +(208,-52,o), +(140,-61,c), +(162,-65,l), +(189,6,l), +(159,6,l), +(124,-71,l), +(134,-84,l), +(148,-84,ls), +(192,-84,o), +(225,-98,o), +(225,-135,cs), +(225,-166,o), +(202,-187,o), +(161,-187,cs), +(128,-187,o), +(102,-176,o), +(93,-149,c), +(57,-155,l), +(68,-195,o), +(109,-218,o), +(162,-218,cs) +); +}, +{ +closed = 1; +nodes = ( +(-69,-229,o), +(-23,-192,o), +(-23,-138,cs), +(-23,-79,o), +(-73,-46,o), +(-145,-49,c), +(-136,-59,l), +(-117,4,l), +(-148,6,l), +(-170,-54,l), +(-155,-75,l), +(-95,-74,o), +(-58,-91,o), +(-58,-136,cs), +(-58,-175,o), +(-88,-201,o), +(-137,-201,cs), +(-182,-201,o), +(-213,-182,o), +(-222,-150,c), +(-254,-158,l), +(-243,-201,o), +(-197,-229,o), +(-137,-229,cs) +); +}, +{ +closed = 1; +nodes = ( +(498,-233,o), +(537,-199,o), +(537,-149,cs), +(537,-101,o), +(501,-67,o), +(435,-52,c), +(465,16,l), +(437,20,l), +(399,-55,l), +(408,-76,l), +(477,-90,o), +(504,-110,o), +(504,-147,cs), +(504,-181,o), +(481,-205,o), +(438,-204,cs), +(404,-204,o), +(382,-188,o), +(372,-160,c), +(340,-169,l), +(353,-208,o), +(390,-232,o), +(438,-233,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(198,-234,o), +(238,-199,o), +(238,-149,cs), +(238,-101,o), +(202,-67,o), +(137,-52,c), +(163,10,l), +(133,10,l), +(100,-55,l), +(110,-76,l), +(177,-90,o), +(203,-110,o), +(203,-147,cs), +(203,-181,o), +(180,-204,o), +(140,-204,cs), +(106,-203,o), +(84,-187,o), +(74,-159,c), +(43,-169,l), +(54,-209,o), +(91,-233,o), +(140,-233,cs) +); +} +); +width = 278; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (210,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(295,-225,o), +(350,-181,o), +(349,-115,cs), +(348,-57,o), +(299,-19,o), +(228,-29,c), +(246,-40,l), +(273,25,l), +(174,25,l), +(134,-47,l), +(146,-70,l), +(183,-70,ls), +(207,-70,o), +(225,-77,o), +(225,-102,cs), +(225,-120,o), +(212,-132,o), +(194,-132,cs), +(177,-132,o), +(164,-121,o), +(162,-105,c), +(40,-128,l), +(53,-186,o), +(110,-225,o), +(196,-225,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(279,-261,o), +(336,-221,o), +(336,-149,cs), +(336,-86,o), +(298,-53,o), +(244,-34,c), +(259,23,l), +(184,23,l), +(131,-61,l), +(145,-88,l), +(188,-95,o), +(214,-100,o), +(214,-127,cs), +(214,-146,o), +(201,-158,o), +(183,-158,cs), +(163,-158,o), +(149,-144,o), +(149,-124,c), +(39,-153,l), +(51,-229,o), +(121,-261,o), +(195,-261,cs) +); +} +); +width = 373; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (74,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-232,o), +(129,-195,o), +(129,-148,cs), +(129,-100,o), +(101,-69,o), +(55,-53,c), +(89,3,l), +(63,6,l), +(26,-52,l), +(29,-74,l), +(80,-91,o), +(100,-111,o), +(100,-149,cs), +(100,-184,o), +(75,-206,o), +(39,-206,cs), +(11,-206,o), +(-15,-188,o), +(-18,-155,c), +(-47,-162,l), +(-43,-204,o), +(-9,-232,o), +(36,-232,cs) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (151,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-262,o), +(244,-214,o), +(244,-141,cs), +(244,-99,o), +(221,-61,o), +(178,-43,c), +(205,17,l), +(128,23,l), +(61,-56,l), +(69,-85,l), +(117,-101,o), +(127,-108,o), +(127,-130,cs), +(127,-148,o), +(114,-158,o), +(95,-158,cs), +(78,-158,o), +(66,-146,o), +(65,-121,c), +(-45,-140,l), +(-40,-213,o), +(16,-262,o), +(94,-262,cs) +); +} +); +width = 372; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (86,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,-234,o), +(153,-200,o), +(153,-149,cs), +(153,-101,o), +(123,-71,o), +(68,-52,c), +(109,8,l), +(77,11,l), +(31,-51,l), +(37,-74,l), +(93,-90,o), +(119,-111,o), +(119,-149,cs), +(119,-182,o), +(93,-204,o), +(54,-204,cs), +(17,-204,o), +(-10,-186,o), +(-14,-153,c), +(-47,-160,l), +(-41,-204,o), +(-3,-234,o), +(51,-234,cs) +); +} +); +width = 279; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (159,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-263,o), +(264,-216,o), +(264,-145,cs), +(264,-91,o), +(232,-59,o), +(185,-42,c), +(214,16,l), +(137,23,l), +(67,-56,l), +(76,-85,l), +(120,-94,o), +(144,-102,o), +(144,-127,cs), +(144,-147,o), +(129,-158,o), +(108,-158,cs), +(81,-158,o), +(69,-140,o), +(71,-120,c), +(-45,-139,l), +(-37,-216,o), +(20,-263,o), +(106,-263,cs) +); +} +); +width = 393; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (101,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,-234,o), +(165,-200,o), +(165,-148,cs), +(165,-100,o), +(132,-68,o), +(77,-53,c), +(124,6,l), +(91,9,l), +(38,-52,l), +(45,-72,l), +(111,-90,o), +(130,-111,o), +(130,-148,cs), +(130,-180,o), +(108,-204,o), +(61,-204,cs), +(23,-204,o), +(-5,-184,o), +(-11,-153,c), +(-46,-159,l), +(-37,-204,o), +(6,-234,o), +(61,-234,cs) +); +} +); +width = 291; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-263,o), +(298,-216,o), +(298,-147,cs), +(298,-87,o), +(258,-55,o), +(206,-39,c), +(238,15,l), +(148,23,l), +(74,-55,l), +(84,-84,l), +(135,-92,o), +(163,-101,o), +(163,-127,cs), +(163,-146,o), +(147,-156,o), +(123,-156,cs), +(94,-156,o), +(78,-139,o), +(75,-118,c), +(-45,-137,l), +(-38,-213,o), +(32,-263,o), +(130,-263,cs) +); +} +); +width = 427; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 807; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/cent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/cent.glyph new file mode 100644 index 00000000..51f43e0f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/cent.glyph @@ -0,0 +1,1050 @@ +{ +glyphname = cent; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(335,93,o), +(420,140,o), +(433,307,c), +(266,307,l), +(262,256,o), +(254,231,o), +(230,231,cs), +(202,231,o), +(196,267,o), +(196,374,cs), +(196,486,o), +(203,517,o), +(230,517,cs), +(253,517,o), +(262,498,o), +(266,442,c), +(433,442,l), +(422,589,o), +(356,654,o), +(230,654,cs), +(97,654,o), +(19,577,o), +(19,376,cs), +(19,169,o), +(101,93,o), +(230,93,cs) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(278,164,l), +(175,164,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(278,579,l), +(278,729,l), +(175,729,l), +(175,579,l) +); +} +); +width = 450; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,96,o), +(276,138,o), +(284,264,c), +(254,264,l), +(245,163,o), +(221,124,o), +(169,124,cs), +(113,124,o), +(74,172,o), +(74,365,cs), +(74,558,o), +(113,606,o), +(169,606,cs), +(226,606,o), +(246,555,o), +(254,465,c), +(284,465,l), +(276,593,o), +(230,633,o), +(169,633,cs), +(68,633,o), +(45,523,o), +(45,365,cs), +(45,206,o), +(68,96,o), +(169,96,cs) +); +}, +{ +closed = 1; +nodes = ( +(179,0,l), +(179,114,l), +(151,114,l), +(151,0,l) +); +}, +{ +closed = 1; +nodes = ( +(179,621,l), +(179,729,l), +(151,729,l), +(151,621,l) +); +} +); +width = 320; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,98,o), +(571,172,o), +(592,280,c), +(553,280,l), +(533,194,o), +(441,133,o), +(324,133,cs), +(171,133,o), +(83,224,o), +(83,363,cs), +(83,503,o), +(180,596,o), +(327,596,cs), +(436,596,o), +(521,551,o), +(549,460,c), +(587,460,l), +(569,563,o), +(465,631,o), +(327,631,cs), +(160,631,o), +(45,522,o), +(45,363,cs), +(45,199,o), +(153,98,o), +(324,98,cs) +); +}, +{ +closed = 1; +nodes = ( +(335,0,l), +(335,117,l), +(302,117,l), +(302,0,l) +); +}, +{ +closed = 1; +nodes = ( +(335,613,l), +(335,729,l), +(302,729,l), +(302,613,l) +); +} +); +width = 631; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,83,o), +(666,166,o), +(671,305,c), +(451,305,l), +(440,267,o), +(399,249,o), +(352,249,cs), +(283,249,o), +(237,286,o), +(237,367,cs), +(237,435,o), +(276,481,o), +(352,481,cs), +(407,481,o), +(443,458,o), +(451,425,c), +(669,425,l), +(665,557,o), +(545,647,o), +(353,647,cs), +(150,647,o), +(16,546,o), +(16,368,cs), +(16,196,o), +(139,83,o), +(343,83,cs) +); +}, +{ +closed = 1; +nodes = ( +(414,0,l), +(414,166,l), +(274,166,l), +(274,0,l) +); +}, +{ +closed = 1; +nodes = ( +(414,548,l), +(414,729,l), +(274,729,l), +(274,548,l) +); +} +); +width = 686; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,96,o), +(256,138,o), +(264,264,c), +(234,264,l), +(225,163,o), +(201,124,o), +(149,124,cs), +(93,124,o), +(54,172,o), +(54,365,cs), +(54,558,o), +(93,606,o), +(149,606,cs), +(206,606,o), +(226,555,o), +(234,465,c), +(264,465,l), +(256,593,o), +(210,633,o), +(149,633,cs), +(48,633,o), +(25,523,o), +(25,365,cs), +(25,206,o), +(48,96,o), +(149,96,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,0,l), +(159,114,l), +(131,114,l), +(131,0,l) +); +}, +{ +closed = 1; +nodes = ( +(159,621,l), +(159,729,l), +(131,729,l), +(131,621,l) +); +} +); +width = 280; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,93,o), +(410,140,o), +(423,307,c), +(256,307,l), +(252,256,o), +(244,231,o), +(220,231,cs), +(192,231,o), +(186,267,o), +(186,374,cs), +(186,486,o), +(193,517,o), +(220,517,cs), +(243,517,o), +(252,498,o), +(256,442,c), +(423,442,l), +(412,589,o), +(346,654,o), +(220,654,cs), +(87,654,o), +(9,577,o), +(9,376,cs), +(9,169,o), +(91,93,o), +(220,93,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,0,l), +(268,164,l), +(165,164,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(268,579,l), +(268,729,l), +(165,729,l), +(165,579,l) +); +} +); +width = 430; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(406,98,o), +(493,169,o), +(505,280,c), +(468,280,l), +(458,191,o), +(386,133,o), +(287,133,cs), +(164,133,o), +(83,221,o), +(83,363,cs), +(83,501,o), +(161,596,o), +(288,596,cs), +(378,596,o), +(450,547,o), +(466,460,c), +(502,460,l), +(489,562,o), +(404,631,o), +(290,631,cs), +(142,631,o), +(46,522,o), +(46,363,cs), +(46,204,o), +(142,98,o), +(287,98,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,0,l), +(294,113,l), +(261,113,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(294,617,l), +(294,729,l), +(261,729,l), +(261,617,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = C; +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +0 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +} +); +}; +width = 547; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,83,o), +(547,169,o), +(551,301,c), +(366,301,l), +(361,264,o), +(337,237,o), +(290,237,cs), +(240,237,o), +(207,275,o), +(207,365,cs), +(207,444,o), +(232,493,o), +(291,493,cs), +(329,493,o), +(357,473,o), +(364,429,c), +(550,429,l), +(548,558,o), +(443,647,o), +(295,647,cs), +(123,647,o), +(13,537,o), +(13,366,cs), +(13,195,o), +(122,83,o), +(290,83,cs) +); +}, +{ +closed = 1; +nodes = ( +(344,0,l), +(344,167,l), +(221,167,l), +(221,0,l) +); +}, +{ +closed = 1; +nodes = ( +(344,554,l), +(344,729,l), +(221,729,l), +(221,554,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = C; +}; +width = 563; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(449,98,o), +(561,172,o), +(582,280,c), +(543,280,l), +(523,194,o), +(431,133,o), +(314,133,cs), +(161,133,o), +(73,224,o), +(73,363,cs), +(73,503,o), +(170,596,o), +(317,596,cs), +(426,596,o), +(511,551,o), +(539,460,c), +(577,460,l), +(559,563,o), +(455,631,o), +(317,631,cs), +(150,631,o), +(35,522,o), +(35,363,cs), +(35,199,o), +(143,98,o), +(314,98,cs) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,117,l), +(292,117,l), +(292,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,613,l), +(325,729,l), +(292,729,l), +(292,613,l) +); +} +); +width = 611; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,83,o), +(656,166,o), +(661,305,c), +(441,305,l), +(430,267,o), +(389,249,o), +(342,249,cs), +(273,249,o), +(227,286,o), +(227,367,cs), +(227,435,o), +(266,481,o), +(342,481,cs), +(397,481,o), +(433,458,o), +(441,425,c), +(659,425,l), +(655,557,o), +(535,647,o), +(343,647,cs), +(140,647,o), +(6,546,o), +(6,368,cs), +(6,196,o), +(129,83,o), +(333,83,cs) +); +}, +{ +closed = 1; +nodes = ( +(404,0,l), +(404,166,l), +(264,166,l), +(264,0,l) +); +}, +{ +closed = 1; +nodes = ( +(404,548,l), +(404,729,l), +(264,729,l), +(264,548,l) +); +} +); +width = 666; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(421,98,o), +(506,169,o), +(518,280,c), +(481,280,l), +(471,191,o), +(401,133,o), +(304,133,cs), +(183,133,o), +(104,221,o), +(104,363,cs), +(104,501,o), +(180,596,o), +(305,596,cs), +(393,596,o), +(463,547,o), +(479,460,c), +(515,460,l), +(502,562,o), +(419,631,o), +(307,631,cs), +(161,631,o), +(67,522,o), +(67,363,cs), +(67,204,o), +(161,98,o), +(304,98,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,0,l), +(311,113,l), +(278,113,l), +(278,0,l) +); +}, +{ +closed = 1; +nodes = ( +(311,617,l), +(311,729,l), +(278,729,l), +(278,617,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = C; +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +0 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +} +); +}; +width = 580; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(447,83,o), +(551,169,o), +(555,301,c), +(372,301,l), +(367,263,o), +(345,237,o), +(302,237,cs), +(255,237,o), +(225,275,o), +(225,365,cs), +(225,444,o), +(248,493,o), +(303,493,cs), +(338,493,o), +(363,474,o), +(370,429,c), +(554,429,l), +(552,558,o), +(451,647,o), +(307,647,cs), +(140,647,o), +(33,537,o), +(33,366,cs), +(33,195,o), +(139,83,o), +(302,83,cs) +); +}, +{ +closed = 1; +nodes = ( +(355,0,l), +(355,167,l), +(234,167,l), +(234,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,554,l), +(355,729,l), +(234,729,l), +(234,554,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = C; +}; +width = 586; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,97,o), +(250,136,o), +(283,260,c), +(253,260,l), +(227,174,o), +(201,124,o), +(148,124,cs), +(69,124,o), +(67,225,o), +(98,373,cs), +(136,555,o), +(183,605,o), +(235,605,cs), +(300,605,o), +(304,542,o), +(295,463,c), +(325,463,l), +(338,563,o), +(320,632,o), +(238,632,cs), +(154,632,o), +(105,548,o), +(69,373,cs), +(38,225,o), +(33,97,o), +(144,97,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(152,114,l), +(124,114,l), +(101,0,l) +); +}, +{ +closed = 1; +nodes = ( +(257,621,l), +(279,729,l), +(251,729,l), +(229,621,l) +); +} +); +width = 319; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,84,o), +(399,145,o), +(433,298,c), +(270,298,l), +(255,241,o), +(239,223,o), +(221,223,cs), +(185,223,o), +(194,273,o), +(214,372,cs), +(237,483,o), +(251,508,o), +(275,508,cs), +(301,508,o), +(304,484,o), +(297,434,c), +(462,434,l), +(477,572,o), +(422,646,o), +(284,646,cs), +(160,646,o), +(81,569,o), +(42,382,cs), +(6,209,o), +(37,84,o), +(211,84,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,0,l), +(256,164,l), +(153,164,l), +(120,0,l) +); +}, +{ +closed = 1; +nodes = ( +(342,579,l), +(373,729,l), +(270,729,l), +(239,579,l) +); +} +); +width = 445; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,96,o), +(498,163,o), +(526,271,c), +(489,271,l), +(465,186,o), +(388,129,o), +(289,129,cs), +(184,129,o), +(119,201,o), +(123,326,cs), +(129,491,o), +(222,600,o), +(358,600,cs), +(453,600,o), +(518,541,o), +(522,457,c), +(555,457,l), +(555,560,o), +(476,633,o), +(363,633,cs), +(206,633,o), +(93,508,o), +(86,326,cs), +(82,187,o), +(161,96,o), +(286,96,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(282,113,l), +(249,113,l), +(226,0,l) +); +}, +{ +closed = 1; +nodes = ( +(386,617,l), +(409,729,l), +(376,729,l), +(353,617,l) +); +} +); +width = 582; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,83,o), +(554,170,o), +(573,298,c), +(390,298,l), +(372,255,o), +(346,236,o), +(307,236,cs), +(269,236,o), +(243,264,o), +(243,321,cs), +(243,385,o), +(267,494,o), +(347,494,cs), +(381,494,o), +(410,470,o), +(411,426,c), +(596,426,l), +(605,560,o), +(510,647,o), +(357,647,cs), +(173,647,o), +(54,517,o), +(54,312,cs), +(54,160,o), +(153,83,o), +(296,83,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,0,l), +(346,167,l), +(223,167,l), +(189,0,l) +); +}, +{ +closed = 1; +nodes = ( +(426,554,l), +(462,729,l), +(339,729,l), +(303,554,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(456,97,o), +(570,172,o), +(600,280,c), +(562,280,l), +(533,190,o), +(438,131,o), +(321,131,cs), +(189,131,o), +(103,201,o), +(103,328,cs), +(103,489,o), +(217,600,o), +(377,600,cs), +(478,600,o), +(570,551,o), +(587,461,c), +(625,461,l), +(616,559,o), +(518,634,o), +(382,634,cs), +(199,634,o), +(66,507,o), +(66,327,cs), +(66,188,o), +(163,97,o), +(317,97,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,0,l), +(309,117,l), +(276,117,l), +(252,0,l) +); +}, +{ +closed = 1; +nodes = ( +(411,613,l), +(435,729,l), +(402,729,l), +(378,613,l) +); +} +); +width = 634; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(529,83,o), +(661,163,o), +(681,302,c), +(465,302,l), +(450,266,o), +(407,250,o), +(362,250,cs), +(298,250,o), +(255,288,o), +(255,348,cs), +(255,428,o), +(304,480,o), +(381,480,cs), +(433,480,o), +(472,457,o), +(478,422,c), +(695,422,l), +(699,558,o), +(574,647,o), +(387,647,cs), +(173,647,o), +(36,524,o), +(36,333,cs), +(36,181,o), +(152,83,o), +(344,83,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,0,l), +(393,166,l), +(253,166,l), +(219,0,l) +); +}, +{ +closed = 1; +nodes = ( +(472,548,l), +(509,729,l), +(369,729,l), +(332,548,l) +); +} +); +width = 688; +} +); +unicode = 162; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/checkmark.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/checkmark.glyph new file mode 100644 index 00000000..6714630b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/checkmark.glyph @@ -0,0 +1,319 @@ +{ +glyphname = checkmark; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(782,533,l), +(676,658,l), +(299,299,l), +(158,463,l), +(41,356,l), +(286,67,l) +); +} +); +width = 809; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(753,560,l), +(730,587,l), +(251,187,l), +(87,412,l), +(61,389,l), +(247,137,l) +); +} +); +width = 709; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(817,560,l), +(794,587,l), +(315,187,l), +(151,412,l), +(125,389,l), +(311,137,l) +); +} +); +width = 942; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(850,533,l), +(744,658,l), +(367,299,l), +(226,463,l), +(109,356,l), +(354,67,l) +); +} +); +width = 959; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(733,560,l), +(710,587,l), +(231,187,l), +(67,412,l), +(41,389,l), +(227,137,l) +); +} +); +width = 671; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(772,533,l), +(666,658,l), +(289,299,l), +(148,463,l), +(31,356,l), +(276,67,l) +); +} +); +width = 789; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(784,560,l), +(761,587,l), +(282,187,l), +(118,412,l), +(92,389,l), +(278,137,l) +); +} +); +width = 876; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(818,533,l), +(712,658,l), +(335,299,l), +(194,463,l), +(77,356,l), +(322,67,l) +); +} +); +width = 895; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(807,560,l), +(784,587,l), +(305,187,l), +(141,412,l), +(115,389,l), +(301,137,l) +); +} +); +width = 922; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(840,533,l), +(734,658,l), +(357,299,l), +(216,463,l), +(99,356,l), +(344,67,l) +); +} +); +width = 939; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(795,560,l), +(772,587,l), +(303,187,l), +(143,412,l), +(117,389,l), +(299,137,l) +); +} +); +width = 911; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(823,533,l), +(718,658,l), +(351,299,l), +(215,463,l), +(99,356,l), +(340,67,l) +); +} +); +width = 921; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(768,560,l), +(746,587,l), +(258,187,l), +(103,412,l), +(77,389,l), +(252,137,l) +); +} +); +width = 672; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(789,533,l), +(688,658,l), +(302,299,l), +(169,463,l), +(49,356,l), +(282,67,l) +); +} +); +width = 769; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(822,560,l), +(801,587,l), +(313,187,l), +(158,412,l), +(131,389,l), +(307,137,l) +); +} +); +width = 886; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(847,533,l), +(747,658,l), +(361,299,l), +(227,463,l), +(107,356,l), +(340,67,l) +); +} +); +width = 903; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(831,560,l), +(810,587,l), +(321,187,l), +(167,412,l), +(140,389,l), +(316,137,l) +); +} +); +width = 904; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(855,533,l), +(755,658,l), +(369,299,l), +(235,463,l), +(115,356,l), +(348,67,l) +); +} +); +width = 919; +} +); +unicode = 10003; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +com.schriftgestaltung.Glyphs.lastChange = "2017-05-03 17:15:08 +0000"; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/circumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflex.glyph new file mode 100644 index 00000000..782b3805 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflex.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = circumflex; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 257; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 434; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 359; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 582; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = circumflexcomb; +} +); +width = 257; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = circumflexcomb; +} +); +width = 434; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = circumflexcomb; +} +); +width = 329; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = circumflexcomb; +} +); +width = 474; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = circumflexcomb; +} +); +width = 359; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = circumflexcomb; +} +); +width = 582; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 328; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 476; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 257; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 430; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 328; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 489; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 359; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 582; +} +); +unicode = 710; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb.glyph new file mode 100644 index 00000000..ae0349d0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb.glyph @@ -0,0 +1,510 @@ +{ +glyphname = circumflexcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (129,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(112,746,l), +(165,851,l), +(218,746,l), +(254,746,l), +(179,882,l), +(151,882,l), +(77,746,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,746,l), +(129,860,l), +(188,746,l), +(217,746,l), +(149,882,l), +(108,882,l), +(40,746,l) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = _top; +pos = (217,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,735,l), +(217,801,l), +(246,735,l), +(394,735,l), +(309,884,l), +(125,884,l), +(40,735,l) +); +} +); +width = 434; +}, +{ +anchors = ( +{ +name = _top; +pos = (179,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(82,746,l), +(179,855,l), +(276,746,l), +(319,746,l), +(202,882,l), +(156,882,l), +(40,746,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = _top; +pos = (291,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(211,735,l), +(274,801,l), +(337,735,l), +(496,735,l), +(365,884,l), +(183,884,l), +(52,735,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,729,l), +(291,806,l), +(366,729,l), +(542,729,l), +(410,878,l), +(172,878,l), +(40,729,l) +); +} +); +width = 582; +}, +{ +anchors = ( +{ +name = _top; +pos = (109,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(112,746,l), +(165,851,l), +(218,746,l), +(254,746,l), +(179,882,l), +(151,882,l), +(77,746,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,746,l), +(109,860,l), +(168,746,l), +(197,746,l), +(129,882,l), +(88,882,l), +(20,746,l) +); +} +); +width = 217; +}, +{ +anchors = ( +{ +name = _top; +pos = (207,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,735,l), +(207,801,l), +(236,735,l), +(384,735,l), +(299,884,l), +(115,884,l), +(30,735,l) +); +} +); +width = 414; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(59,746,l), +(144,858,l), +(230,746,l), +(269,746,l), +(165,882,l), +(123,882,l), +(20,746,l) +); +} +); +width = 289; +}, +{ +anchors = ( +{ +name = _top; +pos = (226,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,735,l), +(226,801,l), +(275,735,l), +(433,735,l), +(318,884,l), +(134,884,l), +(19,735,l) +); +} +); +width = 452; +}, +{ +anchors = ( +{ +name = _top; +pos = (169,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,746,l), +(169,855,l), +(266,746,l), +(309,746,l), +(192,882,l), +(146,882,l), +(30,746,l) +); +} +); +width = 339; +}, +{ +anchors = ( +{ +name = _top; +pos = (281,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(211,735,l), +(274,801,l), +(337,735,l), +(496,735,l), +(365,884,l), +(183,884,l), +(52,735,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,729,l), +(281,806,l), +(356,729,l), +(532,729,l), +(400,878,l), +(162,878,l), +(30,729,l) +); +} +); +width = 562; +}, +{ +anchors = ( +{ +name = _top; +pos = (163,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(80,746,l), +(163,858,l), +(248,746,l), +(286,746,l), +(184,882,l), +(144,882,l), +(43,746,l) +); +} +); +width = 328; +}, +{ +anchors = ( +{ +name = _top; +pos = (239,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(195,735,l), +(239,801,l), +(282,735,l), +(439,735,l), +(330,884,l), +(148,884,l), +(39,735,l) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = _top; +pos = (215,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,746,l), +(255,861,l), +(291,746,l), +(318,746,l), +(277,882,l), +(238,882,l), +(141,746,l) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = _top; +pos = (302,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,735,l), +(328,801,l), +(346,735,l), +(486,735,l), +(433,884,l), +(254,884,l), +(136,735,l) +); +} +); +width = 430; +}, +{ +anchors = ( +{ +name = _top; +pos = (252,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,746,l), +(290,857,l), +(354,746,l), +(389,746,l), +(312,882,l), +(272,882,l), +(141,746,l) +); +} +); +width = 328; +}, +{ +anchors = ( +{ +name = _top; +pos = (329,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,735,l), +(352,801,l), +(389,735,l), +(545,735,l), +(458,884,l), +(275,884,l), +(136,735,l) +); +} +); +width = 489; +}, +{ +anchors = ( +{ +name = _top; +pos = (266,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,746,l), +(305,855,l), +(380,746,l), +(420,746,l), +(330,882,l), +(285,882,l), +(141,746,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = _top; +pos = (376,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,729,l), +(407,806,l), +(466,729,l), +(637,729,l), +(535,878,l), +(297,878,l), +(135,729,l) +); +} +); +width = 582; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 770; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_acutecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_acutecomb.glyph new file mode 100644 index 00000000..ddf4f79c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_acutecomb.glyph @@ -0,0 +1,676 @@ +{ +glyphname = circumflexcomb_acutecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (129,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,746,l), +(129,860,l), +(188,746,l), +(217,746,l), +(149,882,l), +(108,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(225,846,l), +(291,972,l), +(259,972,l), +(197,846,l) +); +} +); +width = 331; +}, +{ +anchors = ( +{ +name = _top; +pos = (206,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,719,l), +(224,776,l), +(249,719,l), +(378,719,l), +(306,845,l), +(143,845,l), +(70,719,l) +); +}, +{ +closed = 1; +nodes = ( +(449,798,l), +(540,947,l), +(412,947,l), +(345,798,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,735,l), +(206,801,l), +(233,735,l), +(372,735,l), +(298,884,l), +(114,884,l), +(40,735,l) +); +}, +{ +closed = 1; +nodes = ( +(431,832,l), +(514,972,l), +(377,972,l), +(334,832,l) +); +} +); +width = 554; +}, +{ +anchors = ( +{ +name = _top; +pos = (179,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(82,746,l), +(179,855,l), +(276,746,l), +(319,746,l), +(202,882,l), +(156,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(333,836,l), +(451,982,l), +(406,982,l), +(293,836,l) +); +} +); +width = 491; +}, +{ +anchors = ( +{ +name = _top; +pos = (267,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,729,l), +(266,783,l), +(315,729,l), +(493,729,l), +(374,859,l), +(159,859,l), +(40,729,l) +); +}, +{ +closed = 1; +nodes = ( +(559,833,l), +(696,972,l), +(508,972,l), +(425,833,l) +); +} +); +width = 736; +}, +{ +anchors = ( +{ +name = _top; +pos = (109,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,746,l), +(109,860,l), +(168,746,l), +(197,746,l), +(129,882,l), +(88,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(205,846,l), +(271,972,l), +(239,972,l), +(177,846,l) +); +} +); +width = 291; +}, +{ +anchors = ( +{ +name = _top; +pos = (196,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,719,l), +(224,776,l), +(249,719,l), +(378,719,l), +(306,845,l), +(143,845,l), +(70,719,l) +); +}, +{ +closed = 1; +nodes = ( +(449,798,l), +(540,947,l), +(412,947,l), +(345,798,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,735,l), +(196,801,l), +(223,735,l), +(362,735,l), +(288,884,l), +(104,884,l), +(30,735,l) +); +}, +{ +closed = 1; +nodes = ( +(421,832,l), +(504,972,l), +(367,972,l), +(324,832,l) +); +} +); +width = 534; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(59,746,l), +(144,858,l), +(230,746,l), +(269,746,l), +(165,882,l), +(123,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(271,836,l), +(368,972,l), +(327,972,l), +(235,836,l) +); +} +); +width = 388; +}, +{ +anchors = ( +{ +name = _top; +pos = (226,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,735,l), +(226,801,l), +(275,735,l), +(433,735,l), +(318,884,l), +(134,884,l), +(19,735,l) +); +}, +{ +closed = 1; +nodes = ( +(486,833,l), +(583,972,l), +(435,972,l), +(382,833,l) +); +} +); +width = 602; +}, +{ +anchors = ( +{ +name = _top; +pos = (169,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,746,l), +(169,855,l), +(266,746,l), +(309,746,l), +(192,882,l), +(146,882,l), +(30,746,l) +); +}, +{ +closed = 1; +nodes = ( +(323,836,l), +(441,982,l), +(396,982,l), +(283,836,l) +); +} +); +width = 471; +}, +{ +anchors = ( +{ +name = _top; +pos = (257,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,729,l), +(256,783,l), +(305,729,l), +(483,729,l), +(364,859,l), +(149,859,l), +(30,729,l) +); +}, +{ +closed = 1; +nodes = ( +(549,833,l), +(686,972,l), +(498,972,l), +(415,833,l) +); +} +); +width = 716; +}, +{ +anchors = ( +{ +name = _top; +pos = (163,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(80,746,l), +(163,858,l), +(248,746,l), +(286,746,l), +(184,882,l), +(144,882,l), +(43,746,l) +); +}, +{ +closed = 1; +nodes = ( +(288,836,l), +(383,972,l), +(344,972,l), +(252,836,l) +); +} +); +width = 425; +}, +{ +anchors = ( +{ +name = _top; +pos = (240,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(195,735,l), +(240,801,l), +(285,735,l), +(442,735,l), +(331,884,l), +(149,884,l), +(39,735,l) +); +}, +{ +closed = 1; +nodes = ( +(494,833,l), +(587,972,l), +(441,972,l), +(392,833,l) +); +} +); +width = 625; +}, +{ +anchors = ( +{ +name = _top; +pos = (215,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,746,l), +(255,861,l), +(291,746,l), +(318,746,l), +(277,882,l), +(238,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(350,846,l), +(429,972,l), +(397,972,l), +(320,846,l) +); +} +); +width = 321; +}, +{ +anchors = ( +{ +name = _top; +pos = (290,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(287,719,l), +(325,765,l), +(345,719,l), +(490,719,l), +(431,848,l), +(247,848,l), +(136,719,l) +); +}, +{ +closed = 1; +nodes = ( +(201,835,l), +(338,984,l), +(170,984,l), +(77,835,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,735,l), +(312,803,l), +(329,735,l), +(460,735,l), +(408,884,l), +(236,884,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(539,832,l), +(640,972,l), +(502,972,l), +(435,832,l) +); +} +); +width = 535; +}, +{ +anchors = ( +{ +name = _top; +pos = (252,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,746,l), +(290,857,l), +(354,746,l), +(389,746,l), +(312,882,l), +(272,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(407,836,l), +(534,972,l), +(490,972,l), +(369,836,l) +); +} +); +width = 426; +}, +{ +anchors = ( +{ +name = _top; +pos = (327,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,735,l), +(352,801,l), +(389,735,l), +(545,735,l), +(458,884,l), +(275,884,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(620,833,l), +(760,972,l), +(596,972,l), +(509,833,l) +); +} +); +width = 655; +}, +{ +anchors = ( +{ +name = _top; +pos = (266,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,746,l), +(305,855,l), +(380,746,l), +(420,746,l), +(330,882,l), +(285,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(447,836,l), +(594,982,l), +(547,982,l), +(404,836,l) +); +} +); +width = 484; +}, +{ +anchors = ( +{ +name = _top; +pos = (353,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(321,729,l), +(378,783,l), +(420,729,l), +(588,729,l), +(496,859,l), +(281,859,l), +(135,729,l) +); +}, +{ +closed = 1; +nodes = ( +(671,833,l), +(828,972,l), +(642,972,l), +(536,833,l) +); +} +); +width = 723; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_gravecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_gravecomb.glyph new file mode 100644 index 00000000..0ca1033a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_gravecomb.glyph @@ -0,0 +1,651 @@ +{ +glyphname = circumflexcomb_gravecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (129,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(120,729,l), +(179,843,l), +(239,729,l), +(268,729,l), +(200,865,l), +(159,865,l), +(91,729,l) +); +}, +{ +closed = 1; +nodes = ( +(274,846,l), +(205,982,l), +(170,982,l), +(248,846,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,746,l), +(129,860,l), +(188,746,l), +(217,746,l), +(149,882,l), +(108,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(254,846,l), +(195,972,l), +(163,972,l), +(226,846,l) +); +} +); +width = 294; +}, +{ +anchors = ( +{ +name = _top; +pos = (206,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,735,l), +(206,801,l), +(233,735,l), +(372,735,l), +(298,884,l), +(114,884,l), +(40,735,l) +); +}, +{ +closed = 1; +nodes = ( +(459,835,l), +(412,984,l), +(274,984,l), +(365,835,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (179,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(82,746,l), +(179,855,l), +(276,746,l), +(319,746,l), +(202,882,l), +(156,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(377,836,l), +(261,982,l), +(216,982,l), +(338,836,l) +); +} +); +width = 417; +}, +{ +anchors = ( +{ +name = _top; +pos = (267,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,729,l), +(266,783,l), +(315,729,l), +(493,729,l), +(374,859,l), +(159,859,l), +(40,729,l) +); +}, +{ +closed = 1; +nodes = ( +(586,833,l), +(516,972,l), +(328,972,l), +(452,833,l) +); +} +); +width = 626; +}, +{ +anchors = ( +{ +name = _top; +pos = (109,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(120,729,l), +(179,843,l), +(239,729,l), +(268,729,l), +(200,865,l), +(159,865,l), +(91,729,l) +); +}, +{ +closed = 1; +nodes = ( +(274,846,l), +(205,982,l), +(170,982,l), +(248,846,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,746,l), +(109,860,l), +(168,746,l), +(197,746,l), +(129,882,l), +(88,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(234,846,l), +(175,972,l), +(143,972,l), +(206,846,l) +); +} +); +width = 254; +}, +{ +anchors = ( +{ +name = _top; +pos = (196,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,735,l), +(196,801,l), +(223,735,l), +(362,735,l), +(288,884,l), +(104,884,l), +(30,735,l) +); +}, +{ +closed = 1; +nodes = ( +(449,835,l), +(402,984,l), +(264,984,l), +(355,835,l) +); +} +); +width = 479; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(59,746,l), +(144,858,l), +(230,746,l), +(269,746,l), +(165,882,l), +(123,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(325,836,l), +(230,972,l), +(189,972,l), +(287,836,l) +); +} +); +width = 345; +}, +{ +anchors = ( +{ +name = _top; +pos = (226,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,735,l), +(226,801,l), +(275,735,l), +(433,735,l), +(318,884,l), +(134,884,l), +(19,735,l) +); +}, +{ +closed = 1; +nodes = ( +(503,833,l), +(460,972,l), +(312,972,l), +(399,833,l) +); +} +); +width = 522; +}, +{ +anchors = ( +{ +name = _top; +pos = (169,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,746,l), +(169,855,l), +(266,746,l), +(309,746,l), +(192,882,l), +(146,882,l), +(30,746,l) +); +}, +{ +closed = 1; +nodes = ( +(367,836,l), +(251,982,l), +(206,982,l), +(328,836,l) +); +} +); +width = 397; +}, +{ +anchors = ( +{ +name = _top; +pos = (257,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,729,l), +(256,783,l), +(305,729,l), +(483,729,l), +(364,859,l), +(149,859,l), +(30,729,l) +); +}, +{ +closed = 1; +nodes = ( +(576,833,l), +(506,972,l), +(318,972,l), +(442,833,l) +); +} +); +width = 606; +}, +{ +anchors = ( +{ +name = _top; +pos = (163,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(80,746,l), +(163,858,l), +(248,746,l), +(286,746,l), +(184,882,l), +(144,882,l), +(43,746,l) +); +}, +{ +closed = 1; +nodes = ( +(342,836,l), +(248,972,l), +(208,972,l), +(304,836,l) +); +} +); +width = 382; +}, +{ +anchors = ( +{ +name = _top; +pos = (240,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(195,735,l), +(240,801,l), +(284,735,l), +(441,735,l), +(331,884,l), +(149,884,l), +(39,735,l) +); +}, +{ +closed = 1; +nodes = ( +(508,833,l), +(469,972,l), +(324,972,l), +(406,833,l) +); +} +); +width = 545; +}, +{ +anchors = ( +{ +name = _top; +pos = (215,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,746,l), +(255,861,l), +(291,746,l), +(318,746,l), +(277,882,l), +(238,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(365,846,l), +(321,972,l), +(289,972,l), +(339,846,l) +); +} +); +width = 283; +}, +{ +anchors = ( +{ +name = _top; +pos = (290,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,735,l), +(312,803,l), +(329,735,l), +(460,735,l), +(408,884,l), +(236,884,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(553,832,l), +(527,972,l), +(399,972,l), +(460,832,l) +); +} +); +width = 477; +}, +{ +anchors = ( +{ +name = _top; +pos = (252,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,746,l), +(290,857,l), +(354,746,l), +(389,746,l), +(312,882,l), +(272,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(456,836,l), +(375,972,l), +(338,972,l), +(423,836,l) +); +} +); +width = 376; +}, +{ +anchors = ( +{ +name = _top; +pos = (327,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,735,l), +(352,801,l), +(389,735,l), +(545,735,l), +(458,884,l), +(275,884,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(631,833,l), +(600,972,l), +(455,972,l), +(527,833,l) +); +} +); +width = 555; +}, +{ +anchors = ( +{ +name = _top; +pos = (266,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,746,l), +(305,855,l), +(380,746,l), +(420,746,l), +(330,882,l), +(285,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(486,836,l), +(387,982,l), +(344,982,l), +(449,836,l) +); +} +); +width = 406; +}, +{ +anchors = ( +{ +name = _top; +pos = (353,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(321,729,l), +(378,783,l), +(420,729,l), +(588,729,l), +(496,859,l), +(281,859,l), +(135,729,l) +); +}, +{ +closed = 1; +nodes = ( +(687,833,l), +(624,972,l), +(456,972,l), +(563,833,l) +); +} +); +width = 611; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_hookabovecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_hookabovecomb.glyph new file mode 100644 index 00000000..27f2580e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_hookabovecomb.glyph @@ -0,0 +1,1480 @@ +{ +glyphname = circumflexcomb_hookabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (129,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(78,726,l), +(129,810,l), +(179,726,l), +(208,726,l), +(149,832,l), +(108,832,l), +(49,726,l) +); +}, +{ +closed = 1; +nodes = ( +(253,830,o), +(276,868,o), +(276,910,cs), +(276,950,o), +(249,977,o), +(209,977,cs), +(198,977,o), +(184,975,o), +(174,970,c), +(174,946,l), +(182,949,o), +(192,951,o), +(205,951,cs), +(233,951,o), +(248,934,o), +(248,907,cs), +(248,876,o), +(233,848,o), +(190,811,c), +(205,791,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,746,l), +(129,860,l), +(188,746,l), +(217,746,l), +(149,882,l), +(108,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(266,840,o), +(286,876,o), +(286,915,cs), +(286,955,o), +(259,982,o), +(219,982,cs), +(208,982,o), +(194,980,o), +(184,975,c), +(184,951,l), +(192,954,o), +(202,956,o), +(215,956,cs), +(243,956,o), +(258,939,o), +(258,912,cs), +(258,883,o), +(245,857,o), +(209,824,c), +(224,803,l) +); +} +); +width = 326; +}, +{ +anchors = ( +{ +name = _top; +pos = (206,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(444,810,o), +(472,852,o), +(472,904,cs), +(472,968,o), +(424,998,o), +(371,998,cs), +(352,998,o), +(333,995,o), +(313,988,c), +(313,919,l), +(318,922,o), +(325,923,o), +(334,923,cs), +(349,923,o), +(363,914,o), +(363,893,cs), +(363,874,o), +(354,857,o), +(336,846,c), +(371,773,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,735,l), +(206,801,l), +(233,735,l), +(372,735,l), +(298,884,l), +(114,884,l), +(40,735,l) +); +}, +{ +closed = 1; +nodes = ( +(439,816,o), +(465,856,o), +(465,901,cs), +(465,963,o), +(417,988,o), +(363,988,cs), +(345,988,o), +(324,985,o), +(306,979,c), +(306,907,l), +(312,910,o), +(321,911,o), +(329,911,cs), +(345,911,o), +(360,904,o), +(360,886,cs), +(360,871,o), +(352,860,o), +(339,849,c), +(374,783,l) +); +} +); +width = 505; +}, +{ +anchors = ( +{ +name = _top; +pos = (179,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(82,731,l), +(179,840,l), +(276,731,l), +(319,731,l), +(202,867,l), +(156,867,l), +(40,731,l) +); +}, +{ +closed = 1; +nodes = ( +(358,835,o), +(382,871,o), +(382,910,cs), +(382,953,o), +(348,982,o), +(297,982,cs), +(280,982,o), +(263,980,o), +(245,974,c), +(247,945,l), +(261,951,o), +(275,953,o), +(291,953,cs), +(328,953,o), +(348,934,o), +(348,907,cs), +(348,875,o), +(323,851,o), +(273,825,c), +(295,802,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(82,746,l), +(179,855,l), +(276,746,l), +(319,746,l), +(202,882,l), +(156,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(388,837,o), +(410,872,o), +(410,910,cs), +(410,953,o), +(376,982,o), +(325,982,cs), +(308,982,o), +(291,980,o), +(273,974,c), +(275,945,l), +(289,951,o), +(303,953,o), +(319,953,cs), +(356,953,o), +(376,934,o), +(376,907,cs), +(376,877,o), +(354,854,o), +(310,830,c), +(329,805,l) +); +} +); +width = 450; +}, +{ +anchors = ( +{ +name = _top; +pos = (267,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,715,l), +(266,769,l), +(315,715,l), +(493,715,l), +(374,845,l), +(159,845,l), +(40,715,l) +); +}, +{ +closed = 1; +nodes = ( +(549,802,o), +(598,841,o), +(598,895,cs), +(598,957,o), +(538,988,o), +(456,988,cs), +(429,988,o), +(402,985,o), +(377,980,c), +(377,903,l), +(389,905,o), +(402,906,o), +(413,906,cs), +(432,906,o), +(450,902,o), +(450,883,cs), +(450,870,o), +(441,857,o), +(408,843,c), +(460,777,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,729,l), +(266,783,l), +(315,729,l), +(493,729,l), +(374,859,l), +(159,859,l), +(40,729,l) +); +}, +{ +closed = 1; +nodes = ( +(565,805,o), +(609,843,o), +(609,895,cs), +(609,957,o), +(549,988,o), +(467,988,cs), +(440,988,o), +(413,985,o), +(388,980,c), +(388,903,l), +(400,905,o), +(413,906,o), +(424,906,cs), +(443,906,o), +(461,902,o), +(461,883,cs), +(461,871,o), +(453,859,o), +(426,846,c), +(485,780,l) +); +} +); +width = 649; +}, +{ +anchors = ( +{ +name = _top; +pos = (109,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(78,726,l), +(129,810,l), +(179,726,l), +(208,726,l), +(149,832,l), +(108,832,l), +(49,726,l) +); +}, +{ +closed = 1; +nodes = ( +(253,830,o), +(276,868,o), +(276,910,cs), +(276,950,o), +(249,977,o), +(209,977,cs), +(198,977,o), +(184,975,o), +(174,970,c), +(174,946,l), +(182,949,o), +(192,951,o), +(205,951,cs), +(233,951,o), +(248,934,o), +(248,907,cs), +(248,876,o), +(233,848,o), +(190,811,c), +(205,791,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,746,l), +(109,860,l), +(168,746,l), +(197,746,l), +(129,882,l), +(88,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(246,840,o), +(266,876,o), +(266,915,cs), +(266,955,o), +(239,982,o), +(199,982,cs), +(188,982,o), +(174,980,o), +(164,975,c), +(164,951,l), +(172,954,o), +(182,956,o), +(195,956,cs), +(223,956,o), +(238,939,o), +(238,912,cs), +(238,883,o), +(225,857,o), +(189,824,c), +(204,803,l) +); +} +); +width = 286; +}, +{ +anchors = ( +{ +name = _top; +pos = (196,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(444,810,o), +(472,852,o), +(472,904,cs), +(472,968,o), +(424,998,o), +(371,998,cs), +(352,998,o), +(333,995,o), +(313,988,c), +(313,919,l), +(318,922,o), +(325,923,o), +(334,923,cs), +(349,923,o), +(363,914,o), +(363,893,cs), +(363,874,o), +(354,857,o), +(336,846,c), +(371,773,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,735,l), +(196,801,l), +(223,735,l), +(362,735,l), +(288,884,l), +(104,884,l), +(30,735,l) +); +}, +{ +closed = 1; +nodes = ( +(429,816,o), +(455,856,o), +(455,901,cs), +(455,963,o), +(407,988,o), +(353,988,cs), +(335,988,o), +(314,985,o), +(296,979,c), +(296,907,l), +(302,910,o), +(311,911,o), +(319,911,cs), +(335,911,o), +(350,904,o), +(350,886,cs), +(350,871,o), +(342,860,o), +(329,849,c), +(364,783,l) +); +} +); +width = 485; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(80,726,l), +(164,828,l), +(249,726,l), +(289,726,l), +(186,852,l), +(142,852,l), +(40,726,l) +); +}, +{ +closed = 1; +nodes = ( +(341,827,o), +(365,864,o), +(365,904,cs), +(365,947,o), +(333,976,o), +(285,976,cs), +(269,976,o), +(253,974,o), +(237,968,c), +(238,939,l), +(251,945,o), +(264,947,o), +(280,947,cs), +(313,947,o), +(332,928,o), +(332,901,cs), +(332,868,o), +(308,844,o), +(261,817,c), +(279,793,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(59,746,l), +(144,858,l), +(230,746,l), +(269,746,l), +(165,882,l), +(123,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(333,826,o), +(356,864,o), +(356,903,cs), +(356,947,o), +(323,976,o), +(273,976,cs), +(259,976,o), +(242,974,o), +(227,968,c), +(228,939,l), +(240,945,o), +(254,947,o), +(268,947,cs), +(305,947,o), +(322,928,o), +(322,900,cs), +(322,868,o), +(300,843,o), +(261,817,c), +(279,793,l) +); +} +); +width = 376; +}, +{ +anchors = ( +{ +name = _top; +pos = (226,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(188,719,l), +(237,791,l), +(286,719,l), +(444,719,l), +(329,873,l), +(145,873,l), +(40,719,l) +); +}, +{ +closed = 1; +nodes = ( +(519,827,o), +(556,865,o), +(556,914,cs), +(556,968,o), +(512,998,o), +(432,998,cs), +(406,998,o), +(376,995,o), +(348,988,c), +(348,916,l), +(360,919,o), +(374,920,o), +(387,920,cs), +(409,920,o), +(424,913,o), +(424,896,cs), +(424,881,o), +(412,870,o), +(380,859,c), +(427,794,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,735,l), +(226,801,l), +(275,735,l), +(433,735,l), +(318,884,l), +(134,884,l), +(19,735,l) +); +}, +{ +closed = 1; +nodes = ( +(500,815,o), +(526,855,o), +(526,902,cs), +(526,953,o), +(489,988,o), +(421,988,cs), +(400,988,o), +(371,985,o), +(348,978,c), +(347,906,l), +(353,909,o), +(363,910,o), +(370,910,cs), +(390,910,o), +(399,899,o), +(399,883,cs), +(399,869,o), +(391,855,o), +(382,847,c), +(432,784,l) +); +} +); +width = 545; +}, +{ +anchors = ( +{ +name = _top; +pos = (169,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(82,731,l), +(179,840,l), +(276,731,l), +(319,731,l), +(202,867,l), +(156,867,l), +(40,731,l) +); +}, +{ +closed = 1; +nodes = ( +(358,835,o), +(382,871,o), +(382,910,cs), +(382,953,o), +(348,982,o), +(297,982,cs), +(280,982,o), +(263,980,o), +(245,974,c), +(247,945,l), +(261,951,o), +(275,953,o), +(291,953,cs), +(328,953,o), +(348,934,o), +(348,907,cs), +(348,875,o), +(323,851,o), +(273,825,c), +(295,802,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,746,l), +(169,855,l), +(266,746,l), +(309,746,l), +(192,882,l), +(146,882,l), +(30,746,l) +); +}, +{ +closed = 1; +nodes = ( +(378,837,o), +(400,872,o), +(400,910,cs), +(400,953,o), +(366,982,o), +(315,982,cs), +(298,982,o), +(281,980,o), +(263,974,c), +(265,945,l), +(279,951,o), +(293,953,o), +(309,953,cs), +(346,953,o), +(366,934,o), +(366,907,cs), +(366,877,o), +(344,854,o), +(300,830,c), +(319,805,l) +); +} +); +width = 430; +}, +{ +anchors = ( +{ +name = _top; +pos = (257,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,715,l), +(266,769,l), +(315,715,l), +(493,715,l), +(374,845,l), +(159,845,l), +(40,715,l) +); +}, +{ +closed = 1; +nodes = ( +(549,802,o), +(598,841,o), +(598,895,cs), +(598,957,o), +(538,988,o), +(456,988,cs), +(429,988,o), +(402,985,o), +(377,980,c), +(377,903,l), +(389,905,o), +(402,906,o), +(413,906,cs), +(432,906,o), +(450,902,o), +(450,883,cs), +(450,870,o), +(441,857,o), +(408,843,c), +(460,777,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,729,l), +(256,783,l), +(305,729,l), +(483,729,l), +(364,859,l), +(149,859,l), +(30,729,l) +); +}, +{ +closed = 1; +nodes = ( +(555,805,o), +(599,843,o), +(599,895,cs), +(599,957,o), +(539,988,o), +(457,988,cs), +(430,988,o), +(403,985,o), +(378,980,c), +(378,903,l), +(390,905,o), +(403,906,o), +(414,906,cs), +(433,906,o), +(451,902,o), +(451,883,cs), +(451,871,o), +(443,859,o), +(416,846,c), +(475,780,l) +); +} +); +width = 629; +}, +{ +anchors = ( +{ +name = _top; +pos = (163,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(80,726,l), +(164,828,l), +(249,726,l), +(289,726,l), +(186,852,l), +(142,852,l), +(40,726,l) +); +}, +{ +closed = 1; +nodes = ( +(341,827,o), +(365,864,o), +(365,904,cs), +(365,947,o), +(333,976,o), +(285,976,cs), +(269,976,o), +(253,974,o), +(237,968,c), +(238,939,l), +(251,945,o), +(264,947,o), +(280,947,cs), +(313,947,o), +(332,928,o), +(332,901,cs), +(332,868,o), +(308,844,o), +(261,817,c), +(279,793,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(80,746,l), +(163,858,l), +(248,746,l), +(286,746,l), +(184,882,l), +(144,882,l), +(43,746,l) +); +}, +{ +closed = 1; +nodes = ( +(349,826,o), +(371,864,o), +(371,903,cs), +(371,947,o), +(340,976,o), +(290,976,cs), +(276,976,o), +(259,974,o), +(246,968,c), +(247,939,l), +(257,945,o), +(271,947,o), +(285,947,cs), +(322,947,o), +(339,928,o), +(339,900,cs), +(339,868,o), +(317,843,o), +(278,817,c), +(296,793,l) +); +} +); +width = 413; +}, +{ +anchors = ( +{ +name = _top; +pos = (240,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(188,719,l), +(237,791,l), +(286,719,l), +(444,719,l), +(329,873,l), +(145,873,l), +(40,719,l) +); +}, +{ +closed = 1; +nodes = ( +(519,827,o), +(556,865,o), +(556,914,cs), +(556,968,o), +(512,998,o), +(432,998,cs), +(406,998,o), +(376,995,o), +(348,988,c), +(348,916,l), +(360,919,o), +(374,920,o), +(387,920,cs), +(409,920,o), +(424,913,o), +(424,896,cs), +(424,881,o), +(412,870,o), +(380,859,c), +(427,794,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(195,735,l), +(241,801,l), +(285,735,l), +(442,735,l), +(331,884,l), +(149,884,l), +(39,735,l) +); +}, +{ +closed = 1; +nodes = ( +(506,815,o), +(531,855,o), +(531,902,cs), +(531,953,o), +(495,988,o), +(430,988,cs), +(409,988,o), +(381,985,o), +(358,978,c), +(357,906,l), +(363,909,o), +(371,910,o), +(378,910,cs), +(397,910,o), +(405,898,o), +(405,883,cs), +(405,869,o), +(398,855,o), +(391,847,c), +(441,784,l) +); +} +); +width = 568; +}, +{ +anchors = ( +{ +name = _top; +pos = (215,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,746,l), +(255,861,l), +(291,746,l), +(318,746,l), +(277,882,l), +(238,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(390,842,o), +(417,885,o), +(417,925,cs), +(417,959,o), +(395,982,o), +(354,982,cs), +(345,982,o), +(335,981,o), +(327,979,c), +(322,954,l), +(329,956,o), +(338,957,o), +(348,957,cs), +(369,957,o), +(389,949,o), +(389,923,cs), +(389,884,o), +(363,854,o), +(323,826,c), +(333,803,l) +); +} +); +width = 321; +}, +{ +anchors = ( +{ +name = _top; +pos = (290,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(275,719,l), +(327,777,l), +(358,719,l), +(503,719,l), +(418,873,l), +(256,873,l), +(119,719,l) +); +}, +{ +closed = 1; +nodes = ( +(543,807,o), +(613,844,o), +(613,912,cs), +(613,958,o), +(576,988,o), +(506,988,cs), +(487,988,o), +(464,987,o), +(444,982,c), +(429,914,l), +(433,916,o), +(442,918,o), +(452,918,cs), +(474,918,o), +(481,904,o), +(481,894,cs), +(481,876,o), +(471,864,o), +(452,853,c), +(482,788,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,735,l), +(312,803,l), +(329,735,l), +(460,735,l), +(408,884,l), +(236,884,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(539,799,o), +(585,844,o), +(585,908,cs), +(585,962,o), +(545,998,o), +(486,998,cs), +(470,998,o), +(452,997,o), +(435,991,c), +(422,913,l), +(426,915,o), +(433,916,o), +(440,916,cs), +(457,916,o), +(468,906,o), +(468,888,cs), +(468,872,o), +(459,855,o), +(442,843,c), +(476,768,l) +); +} +); +width = 496; +}, +{ +anchors = ( +{ +name = _top; +pos = (252,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,746,l), +(290,857,l), +(354,746,l), +(389,746,l), +(312,882,l), +(272,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(464,821,o), +(504,857,o), +(504,907,cs), +(504,951,o), +(472,978,o), +(424,978,cs), +(411,978,o), +(398,977,o), +(388,974,c), +(382,945,l), +(392,948,o), +(403,949,o), +(414,949,cs), +(446,949,o), +(468,936,o), +(468,903,cs), +(468,876,o), +(446,847,o), +(391,820,c), +(405,795,l) +); +} +); +width = 412; +}, +{ +anchors = ( +{ +name = _top; +pos = (327,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,735,l), +(352,801,l), +(389,735,l), +(545,735,l), +(458,884,l), +(275,884,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(614,807,o), +(666,846,o), +(666,907,cs), +(666,956,o), +(629,990,o), +(555,990,cs), +(538,990,o), +(519,988,o), +(502,985,c), +(488,914,l), +(490,915,o), +(499,916,o), +(506,916,cs), +(524,916,o), +(536,909,o), +(536,892,cs), +(536,876,o), +(521,859,o), +(511,852,c), +(548,785,l) +); +} +); +width = 577; +}, +{ +anchors = ( +{ +name = _top; +pos = (266,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(182,731,l), +(302,840,l), +(377,731,l), +(417,731,l), +(327,867,l), +(282,867,l), +(138,731,l) +); +}, +{ +closed = 1; +nodes = ( +(487,835,o), +(518,874,o), +(518,919,cs), +(518,958,o), +(486,984,o), +(434,984,cs), +(421,984,o), +(407,983,o), +(393,980,c), +(390,951,l), +(402,954,o), +(417,955,o), +(429,955,cs), +(466,955,o), +(483,939,o), +(483,915,cs), +(483,872,o), +(439,847,o), +(392,829,c), +(410,804,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,746,l), +(305,855,l), +(380,746,l), +(420,746,l), +(330,882,l), +(285,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(500,838,o), +(528,876,o), +(528,919,cs), +(528,958,o), +(496,984,o), +(444,984,cs), +(431,984,o), +(417,983,o), +(403,980,c), +(400,951,l), +(412,954,o), +(427,955,o), +(439,955,cs), +(476,955,o), +(493,939,o), +(493,915,cs), +(493,876,o), +(457,852,o), +(415,834,c), +(430,808,l) +); +} +); +width = 433; +}, +{ +anchors = ( +{ +name = _top; +pos = (353,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(318,715,l), +(375,769,l), +(417,715,l), +(585,715,l), +(493,845,l), +(278,845,l), +(132,715,l) +); +}, +{ +closed = 1; +nodes = ( +(663,804,o), +(717,840,o), +(717,903,cs), +(717,962,o), +(656,992,o), +(565,992,cs), +(544,992,o), +(529,991,o), +(513,989,c), +(498,911,l), +(504,912,o), +(513,912,o), +(522,912,cs), +(543,912,o), +(567,909,o), +(567,889,cs), +(567,872,o), +(551,861,o), +(517,850,c), +(563,780,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(321,729,l), +(378,783,l), +(420,729,l), +(588,729,l), +(496,859,l), +(281,859,l), +(135,729,l) +); +}, +{ +closed = 1; +nodes = ( +(677,806,o), +(727,842,o), +(727,903,cs), +(727,962,o), +(666,992,o), +(575,992,cs), +(554,992,o), +(539,991,o), +(523,989,c), +(508,911,l), +(514,912,o), +(523,912,o), +(532,912,cs), +(553,912,o), +(577,909,o), +(577,889,cs), +(577,873,o), +(564,863,o), +(535,853,c), +(585,782,l) +); +} +); +width = 639; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_tildecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_tildecomb.glyph new file mode 100644 index 00000000..2fc0e5fb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/circumflexcomb_tildecomb.glyph @@ -0,0 +1,1066 @@ +{ +glyphname = circumflexcomb_tildecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (129,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,746,l), +(129,860,l), +(188,746,l), +(217,746,l), +(149,882,l), +(108,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(67,938,o), +(80,945,o), +(93,945,cs), +(119,945,o), +(135,918,o), +(167,918,cs), +(186,918,o), +(206,927,o), +(225,965,c), +(208,978,l), +(199,959,o), +(187,948,o), +(169,948,cs), +(144,948,o), +(122,976,o), +(95,976,cs), +(75,976,o), +(58,962,o), +(40,927,c), +(55,916,l) +); +} +); +width = 265; +}, +{ +anchors = ( +{ +name = _top; +pos = (206,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,735,l), +(206,785,l), +(233,735,l), +(372,735,l), +(298,854,l), +(114,854,l), +(40,735,l) +); +}, +{ +closed = 1; +nodes = ( +(119,886,o), +(132,895,o), +(155,895,cs), +(186,895,o), +(206,870,o), +(261,870,cs), +(299,870,o), +(332,888,o), +(354,956,c), +(293,990,l), +(283,969,o), +(273,962,o), +(249,962,cs), +(214,962,o), +(195,987,o), +(143,987,cs), +(103,987,o), +(68,970,o), +(46,900,c), +(107,866,l) +); +} +); +width = 412; +}, +{ +anchors = ( +{ +name = _top; +pos = (179,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(82,746,l), +(179,855,l), +(276,746,l), +(319,746,l), +(202,882,l), +(156,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(76,946,o), +(93,952,o), +(113,952,cs), +(153,952,o), +(182,925,o), +(236,925,cs), +(271,925,o), +(294,939,o), +(316,974,c), +(298,987,l), +(283,966,o), +(263,957,o), +(243,957,cs), +(202,957,o), +(157,985,o), +(119,985,cs), +(85,985,o), +(66,971,o), +(43,935,c), +(60,923,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = _top; +pos = (267,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(376,987,o), +(359,975,o), +(331,975,cs), +(280,975,o), +(257,1006,o), +(199,1006,cs), +(145,1006,o), +(87,979,o), +(57,910,c), +(136,873,l), +(144,882,o), +(157,905,o), +(201,905,cs), +(254,904,o), +(271,875,o), +(335,875,cs), +(382,875,o), +(441,896,o), +(477,966,c), +(399,1005,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,729,l), +(266,773,l), +(315,729,l), +(493,729,l), +(374,845,l), +(159,845,l), +(40,729,l) +); +}, +{ +closed = 1; +nodes = ( +(135,893,o), +(154,896,o), +(178,896,cs), +(230,896,o), +(282,870,o), +(349,870,cs), +(412,870,o), +(452,901,o), +(481,960,c), +(414,998,l), +(399,976,o), +(380,972,o), +(356,972,cs), +(304,972,o), +(252,998,o), +(185,998,cs), +(122,998,o), +(82,967,o), +(53,909,c), +(119,870,l) +); +} +); +width = 533; +}, +{ +anchors = ( +{ +name = _top; +pos = (109,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,746,l), +(109,860,l), +(168,746,l), +(197,746,l), +(129,882,l), +(88,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(47,938,o), +(60,945,o), +(73,945,cs), +(99,945,o), +(115,918,o), +(147,918,cs), +(166,918,o), +(186,927,o), +(205,965,c), +(188,978,l), +(179,959,o), +(167,948,o), +(149,948,cs), +(124,948,o), +(102,976,o), +(75,976,cs), +(55,976,o), +(38,962,o), +(20,927,c), +(35,916,l) +); +} +); +width = 225; +}, +{ +anchors = ( +{ +name = _top; +pos = (196,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,735,l), +(196,785,l), +(223,735,l), +(362,735,l), +(288,854,l), +(104,854,l), +(30,735,l) +); +}, +{ +closed = 1; +nodes = ( +(109,886,o), +(122,895,o), +(145,895,cs), +(176,895,o), +(196,870,o), +(251,870,cs), +(289,870,o), +(322,888,o), +(344,956,c), +(283,990,l), +(273,969,o), +(263,962,o), +(239,962,cs), +(204,962,o), +(185,987,o), +(133,987,cs), +(93,987,o), +(58,970,o), +(36,900,c), +(97,866,l) +); +} +); +width = 392; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(59,746,l), +(144,858,l), +(230,746,l), +(269,746,l), +(165,882,l), +(123,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(53,936,o), +(67,943,o), +(89,943,cs), +(127,943,o), +(155,916,o), +(207,916,cs), +(241,916,o), +(264,930,o), +(285,965,c), +(267,978,l), +(253,956,o), +(233,948,o), +(212,948,cs), +(173,948,o), +(130,976,o), +(95,976,cs), +(61,976,o), +(42,962,o), +(20,926,c), +(38,914,l) +); +} +); +width = 305; +}, +{ +anchors = ( +{ +name = _top; +pos = (226,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,735,l), +(247,796,l), +(296,735,l), +(454,735,l), +(345,856,l), +(150,856,l), +(40,735,l) +); +}, +{ +closed = 1; +nodes = ( +(349,875,o), +(402,900,o), +(430,964,c), +(359,998,l), +(344,980,o), +(328,969,o), +(301,969,cs), +(253,969,o), +(238,996,o), +(181,996,cs), +(139,996,o), +(86,977,o), +(54,912,c), +(123,876,l), +(139,890,o), +(156,904,o), +(185,904,cs), +(229,904,o), +(250,875,o), +(300,875,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,735,l), +(226,795,l), +(275,735,l), +(433,735,l), +(324,855,l), +(129,855,l), +(19,735,l) +); +}, +{ +closed = 1; +nodes = ( +(109,899,o), +(126,906,o), +(147,906,cs), +(193,906,o), +(239,878,o), +(299,878,cs), +(355,878,o), +(390,907,o), +(416,962,c), +(357,998,l), +(343,977,o), +(326,970,o), +(305,970,cs), +(259,970,o), +(213,998,o), +(153,998,cs), +(97,998,o), +(62,969,o), +(36,914,c), +(95,878,l) +); +} +); +width = 452; +}, +{ +anchors = ( +{ +name = _top; +pos = (169,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,746,l), +(169,855,l), +(266,746,l), +(309,746,l), +(192,882,l), +(146,882,l), +(30,746,l) +); +}, +{ +closed = 1; +nodes = ( +(66,946,o), +(83,952,o), +(103,952,cs), +(143,952,o), +(172,925,o), +(226,925,cs), +(261,925,o), +(284,939,o), +(306,974,c), +(288,987,l), +(273,966,o), +(253,957,o), +(233,957,cs), +(192,957,o), +(147,985,o), +(109,985,cs), +(75,985,o), +(56,971,o), +(33,935,c), +(50,923,l) +); +} +); +width = 339; +}, +{ +anchors = ( +{ +name = _top; +pos = (257,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(376,987,o), +(359,975,o), +(331,975,cs), +(280,975,o), +(257,1006,o), +(199,1006,cs), +(145,1006,o), +(87,979,o), +(57,910,c), +(136,873,l), +(144,882,o), +(157,905,o), +(201,905,cs), +(254,904,o), +(271,875,o), +(335,875,cs), +(382,875,o), +(441,896,o), +(477,966,c), +(399,1005,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,729,l), +(256,773,l), +(305,729,l), +(483,729,l), +(364,845,l), +(149,845,l), +(30,729,l) +); +}, +{ +closed = 1; +nodes = ( +(125,893,o), +(144,896,o), +(168,896,cs), +(220,896,o), +(272,870,o), +(339,870,cs), +(402,870,o), +(442,901,o), +(471,960,c), +(404,998,l), +(389,976,o), +(370,972,o), +(346,972,cs), +(294,972,o), +(242,998,o), +(175,998,cs), +(112,998,o), +(72,967,o), +(43,909,c), +(109,870,l) +); +} +); +width = 513; +}, +{ +anchors = ( +{ +name = _top; +pos = (163,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(80,746,l), +(163,858,l), +(248,746,l), +(286,746,l), +(184,882,l), +(144,882,l), +(43,746,l) +); +}, +{ +closed = 1; +nodes = ( +(74,936,o), +(88,943,o), +(110,943,cs), +(148,943,o), +(174,916,o), +(226,916,cs), +(258,916,o), +(281,930,o), +(302,965,c), +(284,978,l), +(270,956,o), +(250,948,o), +(231,948,cs), +(192,948,o), +(150,976,o), +(116,976,cs), +(82,976,o), +(63,962,o), +(43,926,c), +(59,914,l) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = _top; +pos = (239,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,735,l), +(247,796,l), +(296,735,l), +(454,735,l), +(345,856,l), +(150,856,l), +(40,735,l) +); +}, +{ +closed = 1; +nodes = ( +(349,875,o), +(402,900,o), +(430,964,c), +(359,998,l), +(344,980,o), +(328,969,o), +(301,969,cs), +(253,969,o), +(238,996,o), +(181,996,cs), +(139,996,o), +(86,977,o), +(54,912,c), +(123,876,l), +(139,890,o), +(156,904,o), +(185,904,cs), +(229,904,o), +(250,875,o), +(300,875,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(195,735,l), +(239,795,l), +(282,735,l), +(439,735,l), +(336,855,l), +(143,855,l), +(39,735,l) +); +}, +{ +closed = 1; +nodes = ( +(127,899,o), +(144,906,o), +(162,906,cs), +(207,906,o), +(251,878,o), +(308,878,cs), +(362,878,o), +(396,907,o), +(421,962,c), +(362,998,l), +(348,976,o), +(333,970,o), +(314,970,cs), +(270,970,o), +(227,998,o), +(168,998,cs), +(114,998,o), +(80,969,o), +(55,914,c), +(114,878,l) +); +} +); +width = 476; +}, +{ +anchors = ( +{ +name = _top; +pos = (215,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,746,l), +(255,861,l), +(291,746,l), +(318,746,l), +(277,882,l), +(238,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(203,935,o), +(215,946,o), +(233,946,cs), +(258,946,o), +(270,920,o), +(300,920,cs), +(325,920,o), +(345,931,o), +(362,965,c), +(348,977,l), +(337,960,o), +(323,949,o), +(306,949,cs), +(282,949,o), +(266,976,o), +(238,976,cs), +(217,976,o), +(195,963,o), +(179,929,c), +(193,919,l) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = _top; +pos = (291,678); +} +); +guides = ( +{ +pos = (206,785); +}, +{ +pos = (143,987); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,735,l), +(309,786,l), +(329,735,l), +(460,735,l), +(409,854,l), +(226,854,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(243,886,o), +(258,895,o), +(281,895,cs), +(312,895,o), +(327,870,o), +(382,870,cs), +(420,870,o), +(456,888,o), +(493,956,c), +(439,990,l), +(425,969,o), +(413,962,o), +(389,962,cs), +(354,962,o), +(341,987,o), +(289,987,cs), +(249,987,o), +(210,970,o), +(173,900,c), +(227,866,l) +); +} +); +width = 404; +}, +{ +anchors = ( +{ +name = _top; +pos = (259,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,746,l), +(297,857,l), +(361,746,l), +(396,746,l), +(319,882,l), +(279,882,l), +(148,746,l) +); +}, +{ +closed = 1; +nodes = ( +(213,936,o), +(228,943,o), +(250,943,cs), +(288,943,o), +(311,916,o), +(363,916,cs), +(397,916,o), +(423,930,o), +(451,965,c), +(436,978,l), +(417,956,o), +(395,948,o), +(374,948,cs), +(335,948,o), +(298,976,o), +(263,976,cs), +(229,976,o), +(207,962,o), +(178,926,c), +(193,914,l) +); +} +); +width = 345; +}, +{ +anchors = ( +{ +name = _top; +pos = (327,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,735,l), +(350,795,l), +(389,735,l), +(545,735,l), +(470,855,l), +(253,855,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(252,899,o), +(270,906,o), +(291,906,cs), +(337,906,o), +(377,878,o), +(437,878,cs), +(493,878,o), +(534,907,o), +(572,962,c), +(521,998,l), +(502,977,o), +(484,970,o), +(463,970,cs), +(417,970,o), +(377,998,o), +(317,998,cs), +(261,998,o), +(220,969,o), +(182,914,c), +(233,878,l) +); +} +); +width = 489; +}, +{ +anchors = ( +{ +name = _top; +pos = (266,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,746,l), +(305,855,l), +(380,746,l), +(420,746,l), +(330,882,l), +(285,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(224,946,o), +(242,952,o), +(262,952,cs), +(302,952,o), +(326,925,o), +(380,925,cs), +(415,925,o), +(441,939,o), +(470,974,c), +(455,987,l), +(435,966,o), +(413,957,o), +(393,957,cs), +(352,957,o), +(313,985,o), +(275,985,cs), +(241,985,o), +(219,971,o), +(189,935,c), +(203,923,l) +); +} +); +width = 362; +}, +{ +anchors = ( +{ +name = _top; +pos = (345,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(491,875,o), +(554,902,o), +(599,971,c), +(531,1005,l), +(512,989,o), +(487,975,o), +(456,975,cs), +(406,975,o), +(389,1006,o), +(330,1006,cs), +(276,1006,o), +(213,979,o), +(168,910,c), +(236,876,l), +(255,892,o), +(280,906,o), +(311,906,cs), +(361,906,o), +(378,875,o), +(437,875,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,729,l), +(368,779,l), +(403,729,l), +(572,729,l), +(490,845,l), +(265,845,l), +(135,729,l) +); +}, +{ +closed = 1; +nodes = ( +(269,899,o), +(287,906,o), +(308,906,cs), +(354,906,o), +(394,878,o), +(454,878,cs), +(510,878,o), +(551,907,o), +(589,962,c), +(538,998,l), +(519,977,o), +(501,970,o), +(480,970,cs), +(434,970,o), +(394,998,o), +(334,998,cs), +(278,998,o), +(237,969,o), +(199,914,c), +(250,878,l) +); +} +); +width = 517; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/colon.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/colon.glyph new file mode 100644 index 00000000..d3ce776b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/colon.glyph @@ -0,0 +1,1007 @@ +{ +color = 6; +glyphname = colon; +kernLeft = KO_colon; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,377,o), +(216,409,o), +(216,464,cs), +(216,519,o), +(175,551,o), +(120,551,cs), +(65,551,o), +(24,519,o), +(24,464,cs), +(24,409,o), +(65,377,o), +(120,377,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,-10,o), +(216,22,o), +(216,77,cs), +(216,132,o), +(175,164,o), +(120,164,cs), +(65,164,o), +(24,132,o), +(24,77,cs), +(24,22,o), +(65,-10,o), +(120,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (0,387); +ref = period; +} +); +width = 196; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(89,473,o), +(100,483,o), +(100,497,cs), +(100,511,o), +(89,521,o), +(75,521,cs), +(61,521,o), +(50,511,o), +(50,497,cs), +(50,483,o), +(61,473,o), +(75,473,cs) +); +}, +{ +closed = 1; +nodes = ( +(89,-6,o), +(100,4,o), +(100,18,cs), +(100,32,o), +(89,42,o), +(75,42,cs), +(61,42,o), +(50,32,o), +(50,18,cs), +(50,4,o), +(61,-6,o), +(75,-6,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (0,480); +ref = period; +} +); +width = 124; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(97,465,o), +(110,477,o), +(110,494,cs), +(110,511,o), +(97,523,o), +(80,523,cs), +(63,523,o), +(50,511,o), +(50,494,cs), +(50,477,o), +(63,465,o), +(80,465,cs) +); +}, +{ +closed = 1; +nodes = ( +(97,-7,o), +(110,5,o), +(110,22,cs), +(110,39,o), +(97,51,o), +(80,51,cs), +(63,51,o), +(50,39,o), +(50,22,cs), +(50,5,o), +(63,-7,o), +(80,-7,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (0,473); +ref = period; +} +); +width = 142; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,369,o), +(268,408,o), +(268,462,cs), +(268,515,o), +(234,554,o), +(150,554,cs), +(66,554,o), +(32,515,o), +(32,462,cs), +(32,408,o), +(66,369,o), +(150,369,cs) +); +}, +{ +closed = 1; +nodes = ( +(234,-10,o), +(268,29,o), +(268,83,cs), +(268,136,o), +(234,175,o), +(150,175,cs), +(66,175,o), +(32,136,o), +(32,83,cs), +(32,29,o), +(66,-10,o), +(150,-10,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (0,379); +ref = period; +} +); +width = 262; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(89,473,o), +(100,483,o), +(100,497,cs), +(100,511,o), +(89,521,o), +(75,521,cs), +(61,521,o), +(50,511,o), +(50,497,cs), +(50,483,o), +(61,473,o), +(75,473,cs) +); +}, +{ +closed = 1; +nodes = ( +(89,-6,o), +(100,4,o), +(100,18,cs), +(100,32,o), +(89,42,o), +(75,42,cs), +(61,42,o), +(50,32,o), +(50,18,cs), +(50,4,o), +(61,-6,o), +(75,-6,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +anchor = top; +ref = period; +}, +{ +alignment = -1; +anchor = top; +pos = (0,480); +ref = period; +} +); +width = 124; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,377,o), +(216,409,o), +(216,464,cs), +(216,519,o), +(175,551,o), +(120,551,cs), +(65,551,o), +(24,519,o), +(24,464,cs), +(24,409,o), +(65,377,o), +(120,377,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,-10,o), +(216,22,o), +(216,77,cs), +(216,132,o), +(175,164,o), +(120,164,cs), +(65,164,o), +(24,132,o), +(24,77,cs), +(24,22,o), +(65,-10,o), +(120,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (0,369); +ref = period; +} +); +width = 198; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(110,465,o), +(123,477,o), +(123,494,cs), +(123,511,o), +(110,523,o), +(93,523,cs), +(76,523,o), +(63,511,o), +(63,494,cs), +(63,477,o), +(76,465,o), +(93,465,cs) +); +}, +{ +closed = 1; +nodes = ( +(110,-7,o), +(123,5,o), +(123,22,cs), +(123,39,o), +(110,51,o), +(93,51,cs), +(76,51,o), +(63,39,o), +(63,22,cs), +(63,5,o), +(76,-7,o), +(93,-7,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +anchor = top; +ref = period; +}, +{ +alignment = -1; +anchor = top; +pos = (0,473); +ref = period; +} +); +width = 170; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(195,378,o), +(233,413,o), +(233,466,cs), +(233,519,o), +(195,554,o), +(139,554,cs), +(83,554,o), +(45,519,o), +(45,466,cs), +(45,413,o), +(83,378,o), +(139,378,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,-8,o), +(233,27,o), +(233,80,cs), +(233,133,o), +(195,168,o), +(139,168,cs), +(83,168,o), +(45,133,o), +(45,80,cs), +(45,27,o), +(83,-8,o), +(139,-8,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +anchor = top; +ref = period; +}, +{ +alignment = -1; +anchor = top; +pos = (0,384); +ref = period; +} +); +width = 212; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(97,465,o), +(110,477,o), +(110,494,cs), +(110,511,o), +(97,523,o), +(80,523,cs), +(63,523,o), +(50,511,o), +(50,494,cs), +(50,477,o), +(63,465,o), +(80,465,cs) +); +}, +{ +closed = 1; +nodes = ( +(97,-7,o), +(110,5,o), +(110,22,cs), +(110,39,o), +(97,51,o), +(80,51,cs), +(63,51,o), +(50,39,o), +(50,22,cs), +(50,5,o), +(63,-7,o), +(80,-7,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +anchor = top; +ref = period; +}, +{ +alignment = -1; +anchor = top; +pos = (0,473); +ref = period; +} +); +width = 142; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,369,o), +(268,408,o), +(268,462,cs), +(268,515,o), +(234,554,o), +(150,554,cs), +(66,554,o), +(32,515,o), +(32,462,cs), +(32,408,o), +(66,369,o), +(150,369,cs) +); +}, +{ +closed = 1; +nodes = ( +(234,-10,o), +(268,29,o), +(268,83,cs), +(268,136,o), +(234,175,o), +(150,175,cs), +(66,175,o), +(32,136,o), +(32,83,cs), +(32,29,o), +(66,-10,o), +(150,-10,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +anchor = top; +ref = period; +}, +{ +alignment = -1; +anchor = top; +pos = (0,379); +ref = period; +} +); +width = 262; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(110,465,o), +(123,477,o), +(123,494,cs), +(123,511,o), +(110,523,o), +(93,523,cs), +(76,523,o), +(63,511,o), +(63,494,cs), +(63,477,o), +(76,465,o), +(93,465,cs) +); +}, +{ +closed = 1; +nodes = ( +(110,-7,o), +(123,5,o), +(123,22,cs), +(123,39,o), +(110,51,o), +(93,51,cs), +(76,51,o), +(63,39,o), +(63,22,cs), +(63,5,o), +(76,-7,o), +(93,-7,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (0,461); +ref = period; +} +); +width = 201; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(195,378,o), +(233,413,o), +(233,466,cs), +(233,519,o), +(195,554,o), +(139,554,cs), +(83,554,o), +(45,519,o), +(45,466,cs), +(45,413,o), +(83,378,o), +(139,378,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,-8,o), +(233,27,o), +(233,80,cs), +(233,133,o), +(195,168,o), +(139,168,cs), +(83,168,o), +(45,133,o), +(45,80,cs), +(45,27,o), +(83,-8,o), +(139,-8,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (0,356); +ref = period; +} +); +width = 288; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,474,o), +(154,483,o), +(154,498,cs), +(154,513,o), +(144,522,o), +(130,522,cs), +(117,522,o), +(106,513,o), +(106,498,cs), +(106,483,o), +(117,474,o), +(130,474,cs) +); +}, +{ +closed = 1; +nodes = ( +(45,-6,o), +(55,3,o), +(55,18,cs), +(55,33,o), +(45,42,o), +(31,42,cs), +(18,42,o), +(7,33,o), +(7,18,cs), +(7,3,o), +(18,-6,o), +(31,-6,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (100,480); +ref = period; +} +); +width = 123; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(224,377,o), +(266,414,o), +(266,469,cs), +(266,518,o), +(233,551,o), +(176,551,cs), +(113,551,o), +(71,514,o), +(71,459,cs), +(71,410,o), +(104,377,o), +(161,377,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,-10,o), +(186,27,o), +(186,82,cs), +(186,131,o), +(153,164,o), +(96,164,cs), +(33,164,o), +(-9,127,o), +(-9,72,cs), +(-9,23,o), +(24,-10,o), +(81,-10,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (81,387); +ref = period; +} +); +width = 211; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(161,465,o), +(174,476,o), +(174,495,cs), +(174,512,o), +(162,523,o), +(145,523,cs), +(127,523,o), +(114,512,o), +(114,493,cs), +(114,476,o), +(126,465,o), +(143,465,cs) +); +}, +{ +closed = 1; +nodes = ( +(62,-7,o), +(75,4,o), +(75,23,cs), +(75,40,o), +(63,51,o), +(46,51,cs), +(28,51,o), +(15,40,o), +(15,21,cs), +(15,4,o), +(27,-7,o), +(44,-7,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (98,473); +ref = period; +} +); +width = 170; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(241,379,o), +(285,416,o), +(285,474,cs), +(285,522,o), +(249,554,o), +(195,554,cs), +(131,554,o), +(87,517,o), +(87,459,cs), +(87,411,o), +(123,379,o), +(177,379,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,-8,o), +(204,29,o), +(204,87,cs), +(204,135,o), +(168,167,o), +(114,167,cs), +(50,167,o), +(6,130,o), +(6,72,cs), +(6,24,o), +(42,-8,o), +(96,-8,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (80,385); +ref = period; +} +); +width = 242; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(147,467,o), +(160,478,o), +(160,497,cs), +(160,514,o), +(148,525,o), +(131,525,cs), +(113,525,o), +(100,514,o), +(100,495,cs), +(100,478,o), +(112,467,o), +(129,467,cs) +); +}, +{ +closed = 1; +nodes = ( +(49,-7,o), +(62,4,o), +(62,23,cs), +(62,40,o), +(50,51,o), +(33,51,cs), +(15,51,o), +(2,40,o), +(2,21,cs), +(2,4,o), +(14,-7,o), +(31,-7,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (98,473); +ref = period; +} +); +width = 144; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(266,369,o), +(312,405,o), +(312,469,cs), +(312,520,o), +(271,554,o), +(199,554,cs), +(118,554,o), +(72,518,o), +(72,454,cs), +(72,403,o), +(113,369,o), +(185,369,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,-10,o), +(234,26,o), +(234,90,cs), +(234,141,o), +(193,175,o), +(121,175,cs), +(40,175,o), +(-6,139,o), +(-6,75,cs), +(-6,24,o), +(35,-10,o), +(107,-10,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (78,379); +ref = period; +} +); +width = 264; +} +); +metricLeft = period; +metricRight = period; +unicode = 58; +userData = { +KernOnName = colon; +KernOnSpecialSpacing = { +L = "spaced-off"; +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/colon.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/colon.ss01.glyph new file mode 100644 index 00000000..a7881340 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/colon.ss01.glyph @@ -0,0 +1,296 @@ +{ +color = 6; +glyphname = colon.ss01; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,367); +ref = period.ss01; +} +); +width = 207; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,462); +ref = period.ss01; +} +); +width = 122; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,456); +ref = period.ss01; +} +); +width = 137; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,380); +ref = period.ss01; +} +); +width = 273; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (0,462); +ref = period.ss01; +} +); +width = 122; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (0,367); +ref = period.ss01; +} +); +width = 207; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (0,456); +ref = period.ss01; +} +); +width = 165; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (0,380); +ref = period.ss01; +} +); +width = 235; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (0,456); +ref = period.ss01; +} +); +width = 137; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (0,380); +ref = period.ss01; +} +); +width = 273; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,456); +ref = period.ss01; +} +); +width = 166; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,380); +ref = period.ss01; +} +); +width = 248; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (96,462); +ref = period.ss01; +} +); +width = 122; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (76,367); +ref = period.ss01; +} +); +width = 205; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (94,456); +ref = period.ss01; +} +); +width = 164; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (78,380); +ref = period.ss01; +} +); +width = 253; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (94,456); +ref = period.ss01; +} +); +width = 138; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (78,380); +ref = period.ss01; +} +); +width = 271; +} +); +metricLeft = period; +metricRight = period; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/comma.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/comma.glyph new file mode 100644 index 00000000..4445f81f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/comma.glyph @@ -0,0 +1,1084 @@ +{ +glyphname = comma; +kernLeft = KO_comma; +kernRight = KO_comma; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (-21,0); +}, +{ +name = "#exit"; +pos = (203,0); +}, +{ +name = top; +pos = (99,551); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,-10,o), +(200,22,o), +(200,77,cs), +(200,132,o), +(159,164,o), +(104,164,cs), +(49,164,o), +(8,132,o), +(8,77,cs), +(8,22,o), +(49,-10,o), +(104,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-167,l), +(146,-123,o), +(200,-26,o), +(200,56,cs), +(200,126,o), +(158,164,o), +(103,164,cs), +(48,164,o), +(8,129,o), +(8,77,cs), +(8,27,o), +(43,-5,o), +(91,-5,cs), +(105,-5,o), +(118,-2,o), +(126,3,c), +(112,14,l), +(103,-37,o), +(62,-103,o), +(-8,-167,c) +); +} +); +width = 211; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-22,0); +}, +{ +name = "#exit"; +pos = (141,0); +}, +{ +name = top; +pos = (61,522); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(33,-130,l), +(58,-100,o), +(90,-35,o), +(90,11,cs), +(90,30,o), +(81,42,o), +(64,42,cs), +(51,42,o), +(41,33,o), +(41,19,cs), +(41,5,o), +(51,-4,o), +(64,-4,cs), +(71,-4,o), +(77,-2,o), +(80,1,c), +(77,3,l), +(72,-40,o), +(47,-91,o), +(16,-130,c) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(35,-125,l), +(59,-102,o), +(91,-37,o), +(91,8,cs), +(91,31,o), +(80,42,o), +(63,42,cs), +(48,42,o), +(37,32,o), +(37,17,cs), +(37,2,o), +(47,-7,o), +(62,-7,cs), +(69,-7,o), +(73,-6,o), +(78,-2,c), +(71,0,l), +(69,-37,o), +(45,-87,o), +(12,-125,c) +); +} +); +width = 130; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-16,0); +}, +{ +name = "#exit"; +pos = (113,0); +}, +{ +name = top; +pos = (71,524); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(45,-124,l), +(69,-99,o), +(103,-36,o), +(103,11,cs), +(103,39,o), +(89,51,o), +(71,51,cs), +(53,51,o), +(41,40,o), +(41,23,cs), +(41,8,o), +(51,-4,o), +(69,-4,cs), +(80,-4,o), +(88,2,o), +(90,8,c), +(85,9,l), +(83,-27,o), +(62,-77,o), +(22,-124,c) +); +} +); +width = 146; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-21,0); +}, +{ +name = "#exit"; +pos = (256,0); +}, +{ +name = top; +pos = (133,554); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(217,-10,o), +(251,29,o), +(251,83,cs), +(251,136,o), +(217,175,o), +(133,175,cs), +(49,175,o), +(15,136,o), +(15,83,cs), +(15,29,o), +(49,-10,o), +(133,-10,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(132,-167,l), +(190,-117,o), +(250,-18,o), +(250,62,cs), +(250,139,o), +(202,175,o), +(129,175,cs), +(64,175,o), +(15,142,o), +(15,83,cs), +(15,31,o), +(48,-3,o), +(119,-3,cs), +(128,-3,o), +(137,-2,o), +(146,0,c), +(132,12,l), +(118,-38,o), +(63,-109,o), +(1,-167,c) +); +} +); +width = 267; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (1,0); +}, +{ +name = "#exit"; +pos = (81,0); +}, +{ +name = top; +pos = (51,522); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(33,-130,l), +(58,-100,o), +(90,-35,o), +(90,11,cs), +(90,30,o), +(81,42,o), +(64,42,cs), +(51,42,o), +(41,33,o), +(41,19,cs), +(41,5,o), +(51,-4,o), +(64,-4,cs), +(71,-4,o), +(77,-2,o), +(80,1,c), +(77,3,l), +(72,-40,o), +(47,-91,o), +(16,-130,c) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(48,-125,l), +(63,-75,o), +(82,-24,o), +(82,10,cs), +(82,35,o), +(71,49,o), +(53,49,cs), +(37,49,o), +(26,38,o), +(26,20,cs), +(26,3,o), +(36,-7,o), +(52,-7,cs), +(59,-7,o), +(63,-6,o), +(69,-1,c), +(61,1,l), +(60,-23,o), +(42,-74,o), +(25,-125,c) +); +} +); +width = 100; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-7,0); +}, +{ +name = "#exit"; +pos = (202,0); +}, +{ +name = top; +pos = (94,551); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,-10,o), +(200,22,o), +(200,77,cs), +(200,132,o), +(159,164,o), +(104,164,cs), +(49,164,o), +(8,132,o), +(8,77,cs), +(8,22,o), +(49,-10,o), +(104,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,-157,l), +(167,-64,o), +(197,6,o), +(197,61,cs), +(197,138,o), +(153,181,o), +(98,181,cs), +(43,181,o), +(3,141,o), +(3,82,cs), +(3,30,o), +(42,-10,o), +(91,-10,cs), +(103,-10,o), +(114,-7,o), +(121,-2,c), +(87,14,l), +(87,-8,o), +(60,-72,o), +(22,-157,c) +); +} +); +width = 200; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-4,0); +}, +{ +name = "#exit"; +pos = (105,0); +}, +{ +name = top; +pos = (71,524); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,-7,o), +(121,5,o), +(121,22,cs), +(121,39,o), +(108,51,o), +(91,51,cs), +(74,51,o), +(61,39,o), +(61,22,cs), +(61,5,o), +(74,-7,o), +(91,-7,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,-146,l), +(80,-84,o), +(109,-16,o), +(109,15,cs), +(109,45,o), +(94,64,o), +(71,64,cs), +(50,64,o), +(36,50,o), +(36,29,cs), +(36,9,o), +(50,-4,o), +(69,-4,cs), +(81,-4,o), +(90,3,o), +(92,11,c), +(82,12,l), +(82,-14,o), +(51,-80,o), +(25,-146,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 142; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-5,0); +}, +{ +name = "#exit"; +pos = (239,0); +}, +{ +name = top; +pos = (105,552); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(116,-167,l), +(175,-112,o), +(221,-20,o), +(221,50,cs), +(221,122,o), +(179,162,o), +(120,162,cs), +(64,162,o), +(22,127,o), +(22,73,cs), +(22,24,o), +(54,-10,o), +(113,-10,cs), +(134,-10,o), +(157,-4,o), +(171,8,c), +(123,8,l), +(113,-39,o), +(66,-108,o), +(9,-167,c) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,-171,l), +(167,-95,o), +(223,8,o), +(223,71,cs), +(223,149,o), +(180,199,o), +(109,199,cs), +(45,199,o), +(0,154,o), +(0,92,cs), +(0,35,o), +(41,-7,o), +(89,-7,cs), +(98,-7,o), +(110,-5,o), +(117,-3,c), +(95,7,l), +(95,-18,o), +(40,-110,o), +(13,-171,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 223; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (4,0); +}, +{ +name = "#exit"; +pos = (120,0); +}, +{ +name = top; +pos = (61,524); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(38,-158,l), +(70,-87,o), +(96,-13,o), +(96,15,cs), +(96,42,o), +(82,61,o), +(61,61,cs), +(41,61,o), +(28,48,o), +(28,28,cs), +(28,10,o), +(39,-4,o), +(59,-4,cs), +(71,-4,o), +(79,3,o), +(81,10,c), +(68,9,l), +(66,-15,o), +(38,-89,o), +(7,-158,c) +); +} +); +width = 126; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-9,0); +}, +{ +name = "#exit"; +pos = (293,0); +}, +{ +name = top; +pos = (150,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,-10,o), +(268,29,o), +(268,83,cs), +(268,136,o), +(234,175,o), +(150,175,cs), +(66,175,o), +(32,136,o), +(32,83,cs), +(32,29,o), +(66,-10,o), +(150,-10,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-173,l), +(245,-57,o), +(291,8,o), +(291,67,cs), +(291,149,o), +(238,197,o), +(149,197,cs), +(69,197,o), +(15,151,o), +(15,87,cs), +(15,28,o), +(64,-15,o), +(124,-15,cs), +(135,-15,o), +(150,-13,o), +(158,-11,c), +(142,-1,l), +(141,-13,o), +(88,-78,o), +(12,-173,c) +); +} +); +width = 297; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (14,0); +}, +{ +name = "#exit"; +pos = (141,0); +}, +{ +name = top; +pos = (107,524); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(123,-7,o), +(136,5,o), +(136,22,cs), +(136,39,o), +(123,51,o), +(106,51,cs), +(89,51,o), +(76,39,o), +(76,22,cs), +(76,5,o), +(89,-7,o), +(106,-7,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(80,-150,l), +(112,-109,o), +(147,-33,o), +(147,13,cs), +(147,42,o), +(132,61,o), +(109,61,cs), +(86,61,o), +(72,48,o), +(72,26,cs), +(72,8,o), +(84,-6,o), +(106,-6,cs), +(120,-6,o), +(129,1,o), +(132,8,c), +(122,10,l), +(119,-36,o), +(85,-101,o), +(52,-150,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 210; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (7,17); +}, +{ +name = "#exit"; +pos = (276,17); +}, +{ +name = top; +pos = (141,552); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(146,-167,l), +(205,-112,o), +(251,-20,o), +(251,50,cs), +(251,122,o), +(209,162,o), +(150,162,cs), +(94,162,o), +(52,127,o), +(52,73,cs), +(52,24,o), +(84,-10,o), +(143,-10,cs), +(164,-10,o), +(187,-4,o), +(201,8,c), +(153,8,l), +(143,-39,o), +(96,-108,o), +(39,-167,c) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(144,-172,l), +(210,-85,o), +(250,5,o), +(250,73,cs), +(250,145,o), +(207,193,o), +(142,193,cs), +(82,193,o), +(37,151,o), +(37,93,cs), +(37,35,o), +(76,-5,o), +(132,-5,cs), +(141,-5,o), +(149,-3,o), +(158,-2,c), +(138,23,l), +(131,-13,o), +(82,-95,o), +(23,-172,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 289; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-22,0); +}, +{ +name = "#exit"; +pos = (86,0); +}, +{ +name = top; +pos = (115,522); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-44,-123,l), +(-16,-100,o), +(39,-26,o), +(39,14,cs), +(39,30,o), +(29,41,o), +(13,41,cs), +(-1,41,o), +(-12,32,o), +(-12,16,cs), +(-12,2,o), +(-2,-7,o), +(12,-7,cs), +(17,-7,o), +(21,-6,o), +(24,-4,c), +(19,1,l), +(9,-36,o), +(-28,-86,o), +(-67,-123,c) +); +} +); +width = 128; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-27,0); +}, +{ +name = "#exit"; +pos = (213,0); +}, +{ +name = top; +pos = (159,551); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(6,-167,l), +(73,-122,o), +(164,-16,o), +(164,73,cs), +(164,128,o), +(126,164,o), +(70,164,cs), +(9,164,o), +(-32,127,o), +(-32,75,cs), +(-32,30,o), +(3,-1,o), +(50,-1,cs), +(62,-1,o), +(72,1,o), +(79,4,c), +(63,17,l), +(38,-38,o), +(-23,-108,o), +(-105,-167,c) +); +} +); +width = 218; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-3,0); +}, +{ +name = "#exit"; +pos = (125,0); +}, +{ +name = top; +pos = (140,524); +} +); +guides = ( +{ +pos = (36,-124); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-12,-124,l), +(24,-88,o), +(69,-20,o), +(69,18,cs), +(69,38,o), +(57,51,o), +(37,51,cs), +(19,51,o), +(6,40,o), +(6,20,cs), +(6,3,o), +(18,-8,o), +(36,-8,cs), +(42,-8,o), +(47,-6,o), +(51,-4,c), +(48,2,l), +(37,-35,o), +(3,-83,o), +(-36,-124,c) +); +} +); +width = 175; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-16,0); +}, +{ +name = "#exit"; +pos = (232,0); +}, +{ +name = top; +pos = (177,552); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(21,-167,l), +(89,-122,o), +(180,-15,o), +(180,75,cs), +(180,131,o), +(142,167,o), +(86,167,cs), +(24,167,o), +(-17,130,o), +(-17,77,cs), +(-17,32,o), +(18,1,o), +(65,1,cs), +(78,1,o), +(88,3,o), +(95,6,c), +(79,19,l), +(53,-37,o), +(-8,-107,o), +(-91,-167,c) +); +} +); +width = 247; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-8,0); +}, +{ +name = "#exit"; +pos = (120,0); +}, +{ +name = top; +pos = (125,524); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-25,-124,l), +(11,-88,o), +(56,-20,o), +(56,18,cs), +(56,38,o), +(44,51,o), +(24,51,cs), +(6,51,o), +(-7,40,o), +(-7,20,cs), +(-7,3,o), +(5,-8,o), +(23,-8,cs), +(29,-8,o), +(34,-6,o), +(38,-4,c), +(35,2,l), +(24,-35,o), +(-10,-83,o), +(-49,-124,c) +); +} +); +width = 148; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-11,0); +}, +{ +name = "#exit"; +pos = (265,0); +}, +{ +name = top; +pos = (188,554); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,-167,l), +(148,-106,o), +(210,-11,o), +(210,64,cs), +(210,131,o), +(168,175,o), +(91,175,cs), +(16,175,o), +(-27,137,o), +(-27,79,cs), +(-27,29,o), +(10,-4,o), +(76,-4,cs), +(93,-4,o), +(106,-2,o), +(115,1,c), +(102,22,l), +(75,-33,o), +(7,-104,o), +(-80,-167,c) +); +} +); +width = 267; +} +); +unicode = 44; +userData = { +KernOnName = comma; +KernOnSpecialSpacing = { +L = period; +R = period; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/comma.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/comma.ss01.glyph new file mode 100644 index 00000000..c0457c0e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/comma.ss01.glyph @@ -0,0 +1,881 @@ +{ +glyphname = comma.ss01; +kernLeft = KO_comma.ss01; +kernRight = KO_period.ss01; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (-10,0); +}, +{ +name = "#exit"; +pos = (220,0); +}, +{ +name = top; +pos = (103,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(42,-177,ls), +(129,-177,o), +(187,-142,o), +(187,-31,cs), +(187,174,l), +(18,165,l), +(18,0,l), +(99,0,l), +(99,-24,ls), +(99,-63,o), +(79,-85,o), +(28,-85,cs), +(3,-85,l), +(3,-177,l) +); +} +); +width = 206; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-8,0); +}, +{ +name = "#exit"; +pos = (92,0); +}, +{ +name = top; +pos = (61,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(33,-142,ls), +(65,-133,o), +(80,-114,o), +(80,-60,cs), +(80,58,l), +(42,54,l), +(42,0,l), +(59,0,l), +(59,-55,ls), +(59,-99,o), +(50,-114,o), +(33,-119,cs), +(26,-121,l), +(26,-144,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(30,-143,ls), +(67,-133,o), +(80,-115,o), +(80,-63,cs), +(80,58,l), +(42,54,l), +(42,0,l), +(59,0,l), +(59,-50,ls), +(59,-94,o), +(57,-112,o), +(30,-120,cs), +(26,-121,l), +(26,-144,l) +); +} +); +width = 122; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-3,0); +}, +{ +name = "#exit"; +pos = (117,0); +}, +{ +name = top; +pos = (69,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(47,-143,ls), +(81,-135,o), +(97,-117,o), +(97,-71,cs), +(97,61,l), +(55,57,l), +(55,0,l), +(73,0,l), +(73,-60,ls), +(73,-90,o), +(72,-110,o), +(47,-116,cs), +(43,-117,l), +(43,-144,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(40,-145,ls), +(81,-137,o), +(91,-119,o), +(91,-76,cs), +(91,62,l), +(46,57,l), +(46,0,l), +(67,0,l), +(67,-73,ls), +(67,-104,o), +(63,-113,o), +(40,-118,cs), +(35,-119,l), +(35,-146,l) +); +} +); +width = 137; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (270,0); +}, +{ +name = top; +pos = (136,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(88,-177,ls), +(180,-177,o), +(242,-124,o), +(242,-23,cs), +(242,174,l), +(29,164,l), +(29,0,l), +(127,0,l), +(127,-16,ls), +(127,-55,o), +(107,-77,o), +(56,-77,cs), +(22,-77,l), +(22,-177,l) +); +} +); +width = 272; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-28,0); +}, +{ +name = "#exit"; +pos = (72,0); +}, +{ +name = top; +pos = (41,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(33,-142,ls), +(65,-133,o), +(80,-114,o), +(80,-60,cs), +(80,58,l), +(42,54,l), +(42,0,l), +(59,0,l), +(59,-55,ls), +(59,-99,o), +(50,-114,o), +(33,-119,cs), +(26,-121,l), +(26,-144,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(10,-143,ls), +(47,-133,o), +(60,-115,o), +(60,-63,cs), +(60,58,l), +(22,54,l), +(22,0,l), +(39,0,l), +(39,-50,ls), +(39,-94,o), +(37,-112,o), +(10,-120,cs), +(6,-121,l), +(6,-144,l) +); +} +); +width = 82; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-15,0); +}, +{ +name = "#exit"; +pos = (215,0); +}, +{ +name = top; +pos = (98,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(37,-177,ls), +(124,-177,o), +(182,-142,o), +(182,-31,cs), +(182,174,l), +(13,165,l), +(13,0,l), +(94,0,l), +(94,-24,ls), +(94,-63,o), +(74,-85,o), +(23,-85,cs), +(-2,-85,l), +(-2,-177,l) +); +} +); +width = 191; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-18,0); +}, +{ +name = "#exit"; +pos = (122,0); +}, +{ +name = top; +pos = (61,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(47,-145,ls), +(84,-139,o), +(102,-115,o), +(102,-68,cs), +(102,62,l), +(57,57,l), +(57,0,l), +(78,0,l), +(78,-63,ls), +(78,-96,o), +(70,-113,o), +(46,-118,cs), +(41,-119,l), +(41,-146,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(32,-143,ls), +(66,-135,o), +(82,-117,o), +(82,-71,cs), +(82,61,l), +(40,57,l), +(40,0,l), +(58,0,l), +(58,-60,ls), +(58,-90,o), +(57,-110,o), +(32,-116,cs), +(28,-117,l), +(28,-144,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 122; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-15,0); +}, +{ +name = "#exit"; +pos = (245,0); +}, +{ +name = top; +pos = (106,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(50,-177,ls), +(137,-177,o), +(195,-142,o), +(195,-31,cs), +(195,174,l), +(16,162,l), +(16,0,l), +(97,0,l), +(97,-24,ls), +(97,-63,o), +(77,-85,o), +(26,-85,cs), +(1,-85,l), +(1,-177,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 212; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-13,0); +}, +{ +name = "#exit"; +pos = (107,0); +}, +{ +name = top; +pos = (59,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(47,-143,ls), +(81,-135,o), +(97,-117,o), +(97,-71,cs), +(97,61,l), +(55,57,l), +(55,0,l), +(73,0,l), +(73,-60,ls), +(73,-90,o), +(72,-110,o), +(47,-116,cs), +(43,-117,l), +(43,-144,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(30,-145,ls), +(71,-137,o), +(81,-119,o), +(81,-76,cs), +(81,62,l), +(36,57,l), +(36,0,l), +(57,0,l), +(57,-73,ls), +(57,-104,o), +(53,-113,o), +(30,-118,cs), +(25,-119,l), +(25,-146,l) +); +} +); +width = 117; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-10,0); +}, +{ +name = "#exit"; +pos = (260,0); +}, +{ +name = top; +pos = (126,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(78,-177,ls), +(170,-177,o), +(232,-124,o), +(232,-23,cs), +(232,174,l), +(19,164,l), +(19,0,l), +(117,0,l), +(117,-16,ls), +(117,-55,o), +(97,-77,o), +(46,-77,cs), +(12,-77,l), +(12,-177,l) +); +} +); +width = 252; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (5,0); +}, +{ +name = "#exit"; +pos = (143,0); +}, +{ +name = top; +pos = (82,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(47,-145,ls), +(84,-139,o), +(102,-115,o), +(102,-68,cs), +(102,62,l), +(57,57,l), +(57,0,l), +(78,0,l), +(78,-63,ls), +(78,-96,o), +(70,-113,o), +(46,-118,cs), +(41,-119,l), +(41,-146,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(53,-143,ls), +(87,-135,o), +(103,-117,o), +(103,-71,cs), +(103,61,l), +(61,57,l), +(61,0,l), +(79,0,l), +(79,-60,ls), +(79,-90,o), +(78,-110,o), +(53,-116,cs), +(51,-117,l), +(51,-144,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 163; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (11,0); +}, +{ +name = "#exit"; +pos = (257,0); +}, +{ +name = top; +pos = (123,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(70,-177,ls), +(154,-177,o), +(211,-142,o), +(211,-31,cs), +(211,174,l), +(35,162,l), +(35,0,l), +(115,0,l), +(115,-24,ls), +(115,-63,o), +(94,-85,o), +(46,-85,cs), +(21,-85,l), +(21,-177,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 247; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-8,0); +}, +{ +name = "#exit"; +pos = (97,0); +}, +{ +name = top; +pos = (115,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-49,-143,ls), +(-22,-139,o), +(1,-123,o), +(12,-70,cs), +(39,58,l), +(0,54,l), +(-11,0,l), +(6,0,l), +(-8,-65,ls), +(-15,-96,o), +(-24,-116,o), +(-46,-120,cs), +(-52,-121,l), +(-56,-144,l) +); +} +); +width = 121; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-7,0); +}, +{ +name = "#exit"; +pos = (213,0); +}, +{ +name = top; +pos = (157,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-56,-177,ls), +(31,-177,o), +(96,-142,o), +(119,-31,cs), +(163,184,l), +(-9,169,l), +(-44,0,l), +(37,0,l), +(32,-24,ls), +(24,-63,o), +(0,-85,o), +(-51,-85,cs), +(-76,-85,l), +(-95,-177,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(-52,-177,ls), +(34,-177,o), +(100,-142,o), +(123,-31,cs), +(165,173,l), +(-4,167,l), +(-39,0,l), +(42,0,l), +(37,-24,ls), +(29,-63,o), +(4,-85,o), +(-47,-85,cs), +(-71,-85,l), +(-90,-177,l) +); +} +); +width = 203; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (5,0); +}, +{ +name = "#exit"; +pos = (125,0); +}, +{ +name = top; +pos = (135,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-32,-145,ls), +(5,-141,o), +(26,-118,o), +(36,-68,cs), +(63,62,l), +(17,57,l), +(5,0,l), +(26,0,l), +(13,-63,ls), +(7,-93,o), +(-4,-115,o), +(-28,-118,cs), +(-35,-119,l), +(-41,-146,l) +); +} +); +width = 163; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-9,0); +}, +{ +name = "#exit"; +pos = (231,0); +}, +{ +name = top; +pos = (182,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(-23,-177,ls), +(63,-177,o), +(129,-142,o), +(152,-31,cs), +(194,174,l), +(15,165,l), +(-20,0,l), +(61,0,l), +(56,-24,ls), +(48,-63,o), +(23,-85,o), +(-28,-85,cs), +(-52,-85,l), +(-71,-177,l) +); +} +); +width = 252; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-7,0); +}, +{ +name = "#exit"; +pos = (113,0); +}, +{ +name = top; +pos = (122,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-45,-145,ls), +(-8,-141,o), +(13,-118,o), +(23,-68,cs), +(49,58,l), +(3,53,l), +(-8,0,l), +(13,0,l), +(0,-63,ls), +(-6,-93,o), +(-17,-115,o), +(-41,-118,cs), +(-48,-119,l), +(-54,-146,l) +); +} +); +width = 136; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-4,0); +}, +{ +name = "#exit"; +pos = (262,0); +}, +{ +name = top; +pos = (190,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(-7,-177,ls), +(84,-177,o), +(155,-134,o), +(178,-23,cs), +(218,172,l), +(6,164,l), +(-28,0,l), +(69,0,l), +(66,-16,ls), +(59,-55,o), +(33,-77,o), +(-17,-77,cs), +(-51,-77,l), +(-72,-177,l) +); +} +); +width = 268; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/commaaccentcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/commaaccentcomb.glyph new file mode 100644 index 00000000..81d0686c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/commaaccentcomb.glyph @@ -0,0 +1,392 @@ +{ +glyphname = commaaccentcomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (97,0); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,-195,l), +(111,-59,l), +(82,-59,l), +(40,-195,l) +); +} +); +width = 151; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (182,0); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,-208,l), +(271,-59,l), +(93,-59,l), +(40,-208,l) +); +} +); +width = 311; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (101,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,-192,l), +(121,-56,l), +(80,-56,l), +(40,-192,l) +); +} +); +width = 161; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (184,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,-231,l), +(291,-56,l), +(77,-56,l), +(40,-231,l) +); +} +); +width = 331; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (77,0); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(46,-195,l), +(91,-59,l), +(62,-59,l), +(20,-195,l) +); +} +); +width = 111; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (172,0); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,-208,l), +(261,-59,l), +(83,-59,l), +(30,-208,l) +); +} +); +width = 291; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (86,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,-193,l), +(103,-57,l), +(68,-57,l), +(20,-193,l) +); +} +); +width = 123; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (149,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,-217,l), +(241,-57,l), +(57,-57,l), +(19,-217,l) +); +} +); +width = 260; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (91,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,-192,l), +(111,-56,l), +(70,-56,l), +(30,-192,l) +); +} +); +width = 141; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (174,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,-231,l), +(281,-56,l), +(67,-56,l), +(30,-231,l) +); +} +); +width = 311; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (107,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(70,-193,l), +(124,-57,l), +(89,-57,l), +(43,-193,l) +); +} +); +width = 164; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (163,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(181,-217,l), +(254,-57,l), +(71,-57,l), +(39,-217,l) +); +} +); +width = 292; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (43,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-28,-195,l), +(45,-59,l), +(16,-59,l), +(-54,-195,l) +); +} +); +width = 151; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (124,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(83,-208,l), +(200,-59,l), +(24,-59,l), +(-59,-208,l) +); +} +); +width = 308; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (52,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-25,-193,l), +(57,-57,l), +(22,-57,l), +(-54,-193,l) +); +} +); +width = 162; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (115,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(83,-217,l), +(195,-57,l), +(11,-57,l), +(-61,-217,l) +); +} +); +width = 303; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (48,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-21,-192,l), +(56,-56,l), +(15,-56,l), +(-53,-192,l) +); +} +); +width = 161; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (123,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,-232,l), +(213,-56,l), +(9,-56,l), +(-64,-232,l) +); +} +); +width = 321; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 806; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/commaturnedabovecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/commaturnedabovecomb.glyph new file mode 100644 index 00000000..0fb38f0f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/commaturnedabovecomb.glyph @@ -0,0 +1,500 @@ +{ +glyphname = commaturnedabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (56,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(70,746,l), +(70,780,ls), +(70,825,o), +(93,857,o), +(126,882,c), +(111,900,l), +(74,875,o), +(40,836,o), +(40,780,cs), +(40,746,l) +); +} +); +width = 166; +}, +{ +anchors = ( +{ +name = _top; +pos = (101,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,735,l), +(162,758,ls), +(162,821,o), +(170,852,o), +(201,883,c), +(152,952,l), +(73,915,o), +(40,862,o), +(40,776,cs), +(40,735,l) +); +} +); +width = 241; +}, +{ +anchors = ( +{ +name = _top; +pos = (57,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,746,l), +(73,777,ls), +(73,819,o), +(92,848,o), +(141,882,c), +(125,901,l), +(73,873,o), +(40,828,o), +(40,777,cs), +(40,746,l) +); +} +); +width = 181; +}, +{ +anchors = ( +{ +name = _top; +pos = (120,678); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,735,l), +(200,770,ls), +(200,831,o), +(208,862,o), +(237,901,c), +(159,979,l), +(75,926,o), +(40,873,o), +(40,788,cs), +(40,735,l) +); +} +); +width = 277; +}, +{ +anchors = ( +{ +name = _top; +pos = (36,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(50,746,l), +(50,780,ls), +(50,825,o), +(73,857,o), +(106,882,c), +(91,900,l), +(54,875,o), +(20,836,o), +(20,780,cs), +(20,746,l) +); +} +); +width = 126; +}, +{ +anchors = ( +{ +name = _top; +pos = (91,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,735,l), +(152,758,ls), +(152,821,o), +(160,852,o), +(191,883,c), +(142,952,l), +(63,915,o), +(30,862,o), +(30,776,cs), +(30,735,l) +); +} +); +width = 221; +}, +{ +anchors = ( +{ +name = _top; +pos = (36,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,746,l), +(51,777,ls), +(51,823,o), +(75,857,o), +(109,882,c), +(93,901,l), +(55,875,o), +(20,835,o), +(20,777,cs), +(20,746,l) +); +} +); +width = 129; +}, +{ +anchors = ( +{ +name = _top; +pos = (93,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,735,l), +(167,760,ls), +(167,823,o), +(176,854,o), +(210,895,c), +(138,973,l), +(54,919,o), +(19,865,o), +(19,778,cs), +(19,735,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = _top; +pos = (47,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(63,746,l), +(63,777,ls), +(63,819,o), +(82,848,o), +(131,882,c), +(115,901,l), +(63,873,o), +(30,828,o), +(30,777,cs), +(30,746,l) +); +} +); +width = 161; +}, +{ +anchors = ( +{ +name = _top; +pos = (110,678); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(190,735,l), +(190,770,ls), +(190,831,o), +(198,862,o), +(227,901,c), +(149,979,l), +(65,926,o), +(30,873,o), +(30,788,cs), +(30,735,l) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = _top; +pos = (57,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(72,746,l), +(72,777,ls), +(72,823,o), +(96,857,o), +(130,882,c), +(114,901,l), +(76,875,o), +(43,835,o), +(43,777,cs), +(43,746,l) +); +} +); +width = 170; +}, +{ +anchors = ( +{ +name = _top; +pos = (112,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(185,735,l), +(185,760,ls), +(185,823,o), +(191,854,o), +(222,895,c), +(150,973,l), +(70,920,o), +(39,865,o), +(39,778,cs), +(39,735,l) +); +} +); +width = 259; +}, +{ +anchors = ( +{ +name = _top; +pos = (142,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(171,746,l), +(178,780,ls), +(187,825,o), +(217,857,o), +(255,882,c), +(244,900,l), +(202,875,o), +(160,836,o), +(148,780,cs), +(141,746,l) +); +} +); +width = 166; +}, +{ +anchors = ( +{ +name = _top; +pos = (186,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,735,l), +(263,758,ls), +(276,821,o), +(291,852,o), +(328,883,c), +(293,952,l), +(207,915,o), +(163,862,o), +(145,776,cs), +(137,735,l) +); +} +); +width = 241; +}, +{ +anchors = ( +{ +name = _top; +pos = (142,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,746,l), +(178,777,ls), +(188,823,o), +(219,857,o), +(258,882,c), +(246,901,l), +(203,875,o), +(159,835,o), +(147,777,cs), +(141,746,l) +); +} +); +width = 169; +}, +{ +anchors = ( +{ +name = _top; +pos = (198,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,735,l), +(290,760,ls), +(303,823,o), +(318,854,o), +(360,895,c), +(305,973,l), +(209,919,o), +(163,865,o), +(145,778,cs), +(136,735,l) +); +} +); +width = 271; +}, +{ +anchors = ( +{ +name = _top; +pos = (142,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,746,l), +(178,767,ls), +(187,816,o), +(213,850,o), +(270,882,c), +(258,901,l), +(202,877,o), +(158,837,o), +(145,767,cs), +(141,746,l) +); +} +); +width = 181; +}, +{ +anchors = ( +{ +name = _top; +pos = (204,678); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(296,735,l), +(303,770,ls), +(316,831,o), +(330,862,o), +(367,901,c), +(305,979,l), +(210,926,o), +(164,873,o), +(147,788,cs), +(136,735,l) +); +} +); +width = 277; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 786; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/copyright.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/copyright.glyph new file mode 100644 index 00000000..f599e496 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/copyright.glyph @@ -0,0 +1,1806 @@ +{ +color = 6; +glyphname = copyright; +layers = ( +{ +background = { +anchors = ( +{ +name = center; +pos = (353,366); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(448,123,o), +(507,173,o), +(516,303,c), +(388,303,l), +(386,252,o), +(377,229,o), +(356,229,cs), +(332,229,o), +(324,263,o), +(324,365,cs), +(324,474,o), +(333,503,o), +(356,503,cs), +(377,503,o), +(386,485,o), +(388,429,c), +(516,429,l), +(508,556,o), +(452,610,o), +(356,610,cs), +(252,610,o), +(190,538,o), +(190,367,cs), +(190,193,o), +(255,123,o), +(356,123,cs) +); +}, +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (150,0); +ref = _copyright.C; +} +); +width = 706; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (349,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(412,150,o), +(446,195,o), +(453,285,c), +(423,285,l), +(415,216,o), +(397,176,o), +(344,176,cs), +(291,176,o), +(256,215,o), +(256,365,cs), +(256,514,o), +(291,553,o), +(344,553,cs), +(389,553,o), +(414,525,o), +(423,443,c), +(453,443,l), +(445,552,o), +(396,581,o), +(344,581,cs), +(248,581,o), +(226,493,o), +(226,365,cs), +(226,237,o), +(248,150,o), +(344,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (186,0); +ref = _copyright.C; +} +); +width = 698; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (442,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(546,161,o), +(630,217,o), +(644,300,c), +(607,300,l), +(592,237,o), +(529,193,o), +(447,193,cs), +(339,193,o), +(277,260,o), +(277,362,cs), +(277,465,o), +(346,533,o), +(449,533,cs), +(525,533,o), +(585,500,o), +(604,434,c), +(640,434,l), +(628,513,o), +(551,565,o), +(449,565,cs), +(325,565,o), +(241,483,o), +(241,362,cs), +(241,238,o), +(321,161,o), +(446,161,cs) +); +}, +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (201,0); +ref = _copyright.C; +} +); +width = 884; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (430,364); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(553,154,o), +(653,216,o), +(656,318,c), +(498,318,l), +(490,288,o), +(465,273,o), +(436,273,cs), +(392,273,o), +(363,303,o), +(363,365,cs), +(363,418,o), +(387,455,o), +(436,455,cs), +(467,455,o), +(493,439,o), +(497,410,c), +(655,410,l), +(652,507,o), +(570,574,o), +(437,574,cs), +(296,574,o), +(204,498,o), +(204,366,cs), +(204,238,o), +(289,154,o), +(429,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (164,0); +ref = _copyright.C; +} +); +width = 860; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (349,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(412,150,o), +(446,195,o), +(453,285,c), +(423,285,l), +(415,216,o), +(397,176,o), +(344,176,cs), +(291,176,o), +(256,215,o), +(256,365,cs), +(256,514,o), +(291,553,o), +(344,553,cs), +(389,553,o), +(414,525,o), +(423,443,c), +(453,443,l), +(445,552,o), +(396,581,o), +(344,581,cs), +(248,581,o), +(226,493,o), +(226,365,cs), +(226,237,o), +(248,150,o), +(344,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (186,0); +ref = _copyright.C; +} +); +width = 698; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (353,366); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(448,123,o), +(507,173,o), +(516,303,c), +(388,303,l), +(386,252,o), +(377,229,o), +(356,229,cs), +(332,229,o), +(324,263,o), +(324,365,cs), +(324,474,o), +(333,503,o), +(356,503,cs), +(377,503,o), +(386,485,o), +(388,429,c), +(516,429,l), +(508,556,o), +(452,610,o), +(356,610,cs), +(252,610,o), +(190,538,o), +(190,367,cs), +(190,193,o), +(255,123,o), +(356,123,cs) +); +}, +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (140,0); +ref = _copyright.C; +} +); +width = 706; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (435,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(540,160,o), +(606,217,o), +(614,300,c), +(579,300,l), +(571,231,o), +(515,192,o), +(444,192,cs), +(353,192,o), +(292,257,o), +(292,362,cs), +(292,464,o), +(350,535,o), +(445,535,cs), +(507,535,o), +(565,503,o), +(578,435,c), +(612,435,l), +(603,513,o), +(536,567,o), +(447,567,cs), +(332,567,o), +(257,484,o), +(257,362,cs), +(257,241,o), +(332,160,o), +(444,160,cs) +); +}, +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (217,0); +ref = _copyright.C; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 871; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (428,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(546,163,o), +(626,225,o), +(629,319,c), +(496,319,l), +(492,293,o), +(471,274,o), +(434,274,cs), +(393,274,o), +(366,301,o), +(366,365,cs), +(366,420,o), +(387,455,o), +(435,455,cs), +(465,455,o), +(489,441,o), +(495,410,c), +(629,410,l), +(627,499,o), +(552,567,o), +(438,567,cs), +(309,567,o), +(226,488,o), +(226,365,cs), +(226,243,o), +(308,163,o), +(434,163,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (165,0); +ref = _copyright.C; +} +); +width = 813; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (442,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(546,161,o), +(630,217,o), +(644,300,c), +(607,300,l), +(592,237,o), +(529,193,o), +(447,193,cs), +(339,193,o), +(277,260,o), +(277,362,cs), +(277,465,o), +(346,533,o), +(449,533,cs), +(525,533,o), +(585,500,o), +(604,434,c), +(640,434,l), +(628,513,o), +(551,565,o), +(449,565,cs), +(325,565,o), +(241,483,o), +(241,362,cs), +(241,238,o), +(321,161,o), +(446,161,cs) +); +}, +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (191,0); +ref = _copyright.C; +} +); +width = 884; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (430,364); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(553,154,o), +(653,216,o), +(656,318,c), +(498,318,l), +(490,288,o), +(465,273,o), +(436,273,cs), +(392,273,o), +(363,303,o), +(363,365,cs), +(363,418,o), +(387,455,o), +(436,455,cs), +(467,455,o), +(493,439,o), +(497,410,c), +(655,410,l), +(652,507,o), +(570,574,o), +(437,574,cs), +(296,574,o), +(204,498,o), +(204,366,cs), +(204,238,o), +(289,154,o), +(429,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (154,0); +ref = _copyright.C; +} +); +width = 860; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (435,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(540,160,o), +(606,217,o), +(614,300,c), +(579,300,l), +(571,231,o), +(515,192,o), +(444,192,cs), +(353,192,o), +(292,257,o), +(292,362,cs), +(292,464,o), +(350,535,o), +(445,535,cs), +(507,535,o), +(565,503,o), +(578,435,c), +(612,435,l), +(603,513,o), +(536,567,o), +(447,567,cs), +(332,567,o), +(257,484,o), +(257,362,cs), +(257,241,o), +(332,160,o), +(444,160,cs) +); +}, +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (216,0); +ref = _copyright.C; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (428,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(546,163,o), +(626,225,o), +(629,319,c), +(496,319,l), +(492,293,o), +(471,274,o), +(434,274,cs), +(393,274,o), +(366,301,o), +(366,365,cs), +(366,420,o), +(387,455,o), +(435,455,cs), +(465,455,o), +(489,441,o), +(495,410,c), +(629,410,l), +(627,499,o), +(552,567,o), +(438,567,cs), +(309,567,o), +(226,488,o), +(226,365,cs), +(226,243,o), +(308,163,o), +(434,163,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (183,0); +ref = _copyright.C; +} +); +width = 834; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (386,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(449,150,o), +(483,195,o), +(490,285,c), +(460,285,l), +(452,216,o), +(434,176,o), +(381,176,cs), +(328,176,o), +(293,215,o), +(293,365,cs), +(293,514,o), +(328,553,o), +(381,553,cs), +(426,553,o), +(451,525,o), +(460,443,c), +(490,443,l), +(482,552,o), +(433,581,o), +(381,581,cs), +(285,581,o), +(263,493,o), +(263,365,cs), +(263,237,o), +(285,150,o), +(381,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (187,0); +ref = _copyright.C; +} +); +width = 727; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (385,366); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(480,123,o), +(539,173,o), +(548,303,c), +(420,303,l), +(418,252,o), +(409,229,o), +(388,229,cs), +(364,229,o), +(356,263,o), +(356,365,cs), +(356,474,o), +(365,503,o), +(388,503,cs), +(409,503,o), +(418,485,o), +(420,429,c), +(548,429,l), +(540,556,o), +(484,610,o), +(388,610,cs), +(284,610,o), +(222,538,o), +(222,367,cs), +(222,193,o), +(287,123,o), +(388,123,cs) +); +}, +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (150,0); +ref = _copyright.C; +} +); +width = 731; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (467,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(572,160,o), +(638,217,o), +(646,300,c), +(611,300,l), +(603,231,o), +(547,192,o), +(476,192,cs), +(385,192,o), +(324,257,o), +(324,362,cs), +(324,464,o), +(382,535,o), +(477,535,cs), +(539,535,o), +(597,503,o), +(610,435,c), +(644,435,l), +(635,513,o), +(568,567,o), +(479,567,cs), +(364,567,o), +(289,484,o), +(289,362,cs), +(289,241,o), +(364,160,o), +(476,160,cs) +); +}, +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (222,0); +ref = _copyright.C; +} +); +width = 891; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (456,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(574,163,o), +(654,225,o), +(657,319,c), +(524,319,l), +(520,293,o), +(499,274,o), +(462,274,cs), +(421,274,o), +(394,301,o), +(394,365,cs), +(394,420,o), +(415,455,o), +(463,455,cs), +(493,455,o), +(517,441,o), +(523,410,c), +(657,410,l), +(655,499,o), +(580,567,o), +(466,567,cs), +(337,567,o), +(254,488,o), +(254,365,cs), +(254,243,o), +(336,163,o), +(462,163,cs) +); +}, +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (189,0); +ref = _copyright.C; +} +); +width = 873; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (473,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(577,161,o), +(661,217,o), +(675,300,c), +(638,300,l), +(623,237,o), +(560,193,o), +(478,193,cs), +(370,193,o), +(308,260,o), +(308,362,cs), +(308,465,o), +(377,533,o), +(480,533,cs), +(556,533,o), +(616,500,o), +(635,434,c), +(671,434,l), +(659,513,o), +(582,565,o), +(480,565,cs), +(356,565,o), +(272,483,o), +(272,362,cs), +(272,238,o), +(352,161,o), +(477,161,cs) +); +}, +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (205,0); +ref = _copyright.C; +} +); +width = 903; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (459,364); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(582,154,o), +(682,216,o), +(685,318,c), +(527,318,l), +(519,288,o), +(494,273,o), +(465,273,cs), +(421,273,o), +(392,303,o), +(392,365,cs), +(392,418,o), +(416,455,o), +(465,455,cs), +(496,455,o), +(522,439,o), +(526,410,c), +(684,410,l), +(681,507,o), +(599,574,o), +(466,574,cs), +(325,574,o), +(233,498,o), +(233,366,cs), +(233,238,o), +(318,154,o), +(458,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (168,0); +ref = _copyright.C; +} +); +width = 880; +} +); +metricLeft = whiteCircle; +metricRight = whiteCircle; +unicode = 169; +userData = { +KernOnSpecialSpacing = { +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/currency.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/currency.glyph new file mode 100644 index 00000000..f6dbdbb0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/currency.glyph @@ -0,0 +1,1278 @@ +{ +glyphname = currency; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,182,l), +(230,172,o), +(257,166,o), +(290,166,cs), +(323,166,o), +(351,172,o), +(378,182,c), +(474,85,l), +(567,179,l), +(477,269,l), +(491,297,o), +(498,327,o), +(498,360,cs), +(498,394,o), +(491,425,o), +(476,454,c), +(566,543,l), +(473,637,l), +(376,539,l), +(350,549,o), +(317,554,o), +(290,554,cs), +(263,554,o), +(231,549,o), +(205,539,c), +(108,637,l), +(15,543,l), +(105,454,l), +(90,426,o), +(83,393,o), +(83,360,cs), +(83,329,o), +(89,298,o), +(104,269,c), +(14,179,l), +(107,85,l) +); +}, +{ +closed = 1; +nodes = ( +(252,294,o), +(222,320,o), +(222,360,cs), +(222,400,o), +(252,427,o), +(290,427,cs), +(329,427,o), +(359,400,o), +(359,360,cs), +(359,320,o), +(328,294,o), +(290,294,cs) +); +} +); +width = 581; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,245,l), +(155,225,o), +(187,214,o), +(222,214,cs), +(258,214,o), +(289,226,o), +(312,246,c), +(399,156,l), +(420,176,l), +(334,266,l), +(352,286,o), +(367,319,o), +(367,360,cs), +(367,397,o), +(356,429,o), +(335,457,c), +(419,545,l), +(399,566,l), +(312,477,l), +(288,497,o), +(256,507,o), +(222,507,cs), +(187,507,o), +(155,496,o), +(130,477,c), +(45,566,l), +(23,545,l), +(108,457,l), +(87,431,o), +(75,396,o), +(75,360,cs), +(75,328,o), +(85,292,o), +(107,266,c), +(23,176,l), +(45,156,l) +); +}, +{ +closed = 1; +nodes = ( +(155,243,o), +(105,293,o), +(105,360,cs), +(105,428,o), +(154,478,o), +(222,478,cs), +(287,478,o), +(336,429,o), +(336,360,cs), +(336,292,o), +(287,243,o), +(222,243,cs) +); +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,201,l), +(210,174,o), +(254,158,o), +(304,158,cs), +(353,158,o), +(397,173,o), +(432,202,c), +(551,83,l), +(574,103,l), +(455,223,l), +(484,255,o), +(502,301,o), +(502,350,cs), +(502,403,o), +(483,446,o), +(456,480,c), +(574,597,l), +(551,620,l), +(432,501,l), +(398,529,o), +(352,543,o), +(304,543,cs), +(251,543,o), +(207,526,o), +(175,501,c), +(57,620,l), +(34,597,l), +(152,480,l), +(123,446,o), +(104,399,o), +(104,350,cs), +(104,300,o), +(123,255,o), +(151,223,c), +(34,103,l), +(57,83,l) +); +}, +{ +closed = 1; +nodes = ( +(207,189,o), +(137,257,o), +(137,350,cs), +(137,444,o), +(208,511,o), +(304,511,cs), +(399,511,o), +(469,444,o), +(469,350,cs), +(469,257,o), +(400,189,o), +(304,189,cs) +); +} +); +width = 608; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,154,l), +(258,146,o), +(288,142,o), +(320,142,cs), +(349,142,o), +(384,146,o), +(413,153,c), +(519,50,l), +(636,169,l), +(539,264,l), +(552,293,o), +(559,326,o), +(559,359,cs), +(559,391,o), +(553,425,o), +(537,456,c), +(635,551,l), +(517,669,l), +(410,564,l), +(382,572,o), +(347,576,o), +(320,576,cs), +(295,576,o), +(262,573,o), +(231,564,c), +(125,669,l), +(7,551,l), +(105,456,l), +(91,428,o), +(84,395,o), +(84,359,cs), +(84,330,o), +(88,297,o), +(104,264,c), +(6,169,l), +(124,50,l) +); +}, +{ +closed = 1; +nodes = ( +(284,303,o), +(260,323,o), +(260,358,cs), +(260,392,o), +(282,415,o), +(320,415,cs), +(357,415,o), +(381,394,o), +(381,358,cs), +(381,325,o), +(358,303,o), +(320,303,cs) +); +} +); +width = 642; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(109,245,l), +(135,225,o), +(167,214,o), +(202,214,cs), +(238,214,o), +(269,226,o), +(292,246,c), +(379,156,l), +(400,176,l), +(314,266,l), +(332,286,o), +(347,319,o), +(347,360,cs), +(347,397,o), +(336,429,o), +(315,457,c), +(399,545,l), +(379,566,l), +(292,477,l), +(268,497,o), +(236,507,o), +(202,507,cs), +(167,507,o), +(135,496,o), +(110,477,c), +(25,566,l), +(3,545,l), +(88,457,l), +(67,431,o), +(55,396,o), +(55,360,cs), +(55,328,o), +(65,292,o), +(87,266,c), +(3,176,l), +(25,156,l) +); +}, +{ +closed = 1; +nodes = ( +(135,243,o), +(85,293,o), +(85,360,cs), +(85,428,o), +(134,478,o), +(202,478,cs), +(267,478,o), +(316,429,o), +(316,360,cs), +(316,292,o), +(267,243,o), +(202,243,cs) +); +} +); +width = 403; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,182,l), +(221,172,o), +(248,166,o), +(281,166,cs), +(314,166,o), +(342,172,o), +(369,182,c), +(465,85,l), +(558,179,l), +(468,269,l), +(482,297,o), +(489,327,o), +(489,360,cs), +(489,394,o), +(482,425,o), +(467,454,c), +(557,543,l), +(464,637,l), +(367,539,l), +(341,549,o), +(308,554,o), +(281,554,cs), +(254,554,o), +(222,549,o), +(196,539,c), +(99,637,l), +(6,543,l), +(96,454,l), +(81,426,o), +(74,393,o), +(74,360,cs), +(74,329,o), +(80,298,o), +(95,269,c), +(5,179,l), +(98,85,l) +); +}, +{ +closed = 1; +nodes = ( +(243,294,o), +(213,320,o), +(213,360,cs), +(213,400,o), +(243,427,o), +(281,427,cs), +(320,427,o), +(350,400,o), +(350,360,cs), +(350,320,o), +(319,294,o), +(281,294,cs) +); +} +); +width = 563; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,207,l), +(199,182,o), +(241,167,o), +(285,167,cs), +(329,167,o), +(371,182,o), +(402,208,c), +(511,97,l), +(536,120,l), +(426,231,l), +(454,261,o), +(469,305,o), +(469,348,cs), +(469,395,o), +(453,437,o), +(427,468,c), +(536,577,l), +(511,602,l), +(402,491,l), +(371,516,o), +(329,529,o), +(285,529,cs), +(237,529,o), +(197,514,o), +(168,491,c), +(59,602,l), +(34,577,l), +(142,468,l), +(116,437,o), +(99,395,o), +(99,348,cs), +(99,302,o), +(116,260,o), +(141,231,c), +(34,120,l), +(59,97,l) +); +}, +{ +closed = 1; +nodes = ( +(198,203,o), +(136,265,o), +(136,349,cs), +(136,435,o), +(199,496,o), +(285,496,cs), +(370,496,o), +(433,435,o), +(433,349,cs), +(433,265,o), +(371,203,o), +(285,203,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +30 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +} +); +}; +width = 569; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,158,l), +(233,151,o), +(259,146,o), +(295,146,cs), +(323,146,o), +(356,150,o), +(383,158,c), +(482,60,l), +(587,166,l), +(495,257,l), +(509,286,o), +(515,318,o), +(515,348,cs), +(515,382,o), +(509,412,o), +(494,442,c), +(586,532,l), +(481,639,l), +(381,538,l), +(351,548,o), +(319,552,o), +(295,552,cs), +(269,552,o), +(235,547,o), +(209,538,c), +(109,639,l), +(4,532,l), +(96,442,l), +(83,416,o), +(76,384,o), +(76,348,cs), +(76,321,o), +(80,288,o), +(95,257,c), +(3,166,l), +(108,60,l) +); +}, +{ +closed = 1; +nodes = ( +(261,290,o), +(233,312,o), +(233,348,cs), +(233,383,o), +(261,408,o), +(295,408,cs), +(330,408,o), +(358,383,o), +(358,348,cs), +(358,313,o), +(329,290,o), +(295,290,cs) +); +} +); +width = 590; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,201,l), +(200,174,o), +(244,158,o), +(294,158,cs), +(343,158,o), +(387,173,o), +(422,202,c), +(541,83,l), +(564,103,l), +(445,223,l), +(474,255,o), +(492,301,o), +(492,350,cs), +(492,403,o), +(473,446,o), +(446,480,c), +(564,597,l), +(541,620,l), +(422,501,l), +(388,529,o), +(342,543,o), +(294,543,cs), +(241,543,o), +(197,526,o), +(165,501,c), +(47,620,l), +(24,597,l), +(142,480,l), +(113,446,o), +(94,399,o), +(94,350,cs), +(94,300,o), +(113,255,o), +(141,223,c), +(24,103,l), +(47,83,l) +); +}, +{ +closed = 1; +nodes = ( +(197,189,o), +(127,257,o), +(127,350,cs), +(127,444,o), +(198,511,o), +(294,511,cs), +(389,511,o), +(459,444,o), +(459,350,cs), +(459,257,o), +(390,189,o), +(294,189,cs) +); +} +); +width = 588; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(224,154,l), +(253,146,o), +(283,142,o), +(315,142,cs), +(344,142,o), +(379,146,o), +(408,153,c), +(514,50,l), +(631,169,l), +(534,264,l), +(547,293,o), +(554,326,o), +(554,359,cs), +(554,391,o), +(548,425,o), +(532,456,c), +(630,551,l), +(512,669,l), +(405,564,l), +(377,572,o), +(342,576,o), +(315,576,cs), +(290,576,o), +(257,573,o), +(226,564,c), +(120,669,l), +(2,551,l), +(100,456,l), +(86,428,o), +(79,395,o), +(79,359,cs), +(79,330,o), +(83,297,o), +(99,264,c), +(1,169,l), +(119,50,l) +); +}, +{ +closed = 1; +nodes = ( +(279,303,o), +(255,323,o), +(255,358,cs), +(255,392,o), +(277,415,o), +(315,415,cs), +(352,415,o), +(376,394,o), +(376,358,cs), +(376,325,o), +(353,303,o), +(315,303,cs) +); +} +); +width = 632; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(186,207,l), +(218,182,o), +(258,167,o), +(302,167,cs), +(346,167,o), +(386,182,o), +(417,208,c), +(524,97,l), +(547,120,l), +(441,231,l), +(467,261,o), +(482,305,o), +(482,348,cs), +(482,395,o), +(466,437,o), +(442,468,c), +(547,577,l), +(524,602,l), +(417,491,l), +(386,516,o), +(346,529,o), +(302,529,cs), +(254,529,o), +(216,514,o), +(187,491,c), +(80,602,l), +(55,577,l), +(161,468,l), +(137,437,o), +(120,395,o), +(120,348,cs), +(120,302,o), +(137,260,o), +(160,231,c), +(55,120,l), +(80,97,l) +); +}, +{ +closed = 1; +nodes = ( +(217,203,o), +(155,265,o), +(155,349,cs), +(155,435,o), +(218,496,o), +(302,496,cs), +(385,496,o), +(447,435,o), +(447,349,cs), +(447,265,o), +(386,203,o), +(302,203,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +30 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +} +); +}; +width = 602; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(223,158,l), +(248,151,o), +(272,146,o), +(307,146,cs), +(334,146,o), +(365,150,o), +(391,158,c), +(487,60,l), +(591,166,l), +(502,257,l), +(515,285,o), +(521,317,o), +(521,348,cs), +(521,383,o), +(515,413,o), +(501,442,c), +(590,532,l), +(486,639,l), +(389,538,l), +(360,548,o), +(330,552,o), +(307,552,cs), +(283,552,o), +(249,547,o), +(225,538,c), +(128,639,l), +(24,532,l), +(113,442,l), +(101,417,o), +(94,385,o), +(94,348,cs), +(94,321,o), +(98,286,o), +(112,257,c), +(23,166,l), +(127,60,l) +); +}, +{ +closed = 1; +nodes = ( +(276,290,o), +(249,312,o), +(249,348,cs), +(249,383,o), +(276,408,o), +(307,408,cs), +(339,408,o), +(365,383,o), +(365,348,cs), +(365,313,o), +(338,290,o), +(307,290,cs) +); +} +); +width = 613; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,245,l), +(191,225,o), +(222,214,o), +(257,214,cs), +(293,214,o), +(324,226,o), +(347,246,c), +(430,156,l), +(452,176,l), +(370,266,l), +(388,286,o), +(404,319,o), +(406,360,cs), +(407,397,o), +(397,429,o), +(377,457,c), +(464,545,l), +(445,566,l), +(355,477,l), +(332,497,o), +(301,507,o), +(267,507,cs), +(233,507,o), +(201,496,o), +(175,477,c), +(94,566,l), +(72,545,l), +(153,457,l), +(131,431,o), +(118,396,o), +(117,360,cs), +(115,328,o), +(124,292,o), +(145,266,c), +(59,176,l), +(80,156,l) +); +}, +{ +closed = 1; +nodes = ( +(192,243,o), +(144,293,o), +(146,360,cs), +(149,428,o), +(199,478,o), +(266,478,cs), +(331,478,o), +(377,429,o), +(375,360,cs), +(373,292,o), +(322,243,o), +(258,243,cs) +); +} +); +width = 482; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,182,l), +(270,172,o), +(297,166,o), +(330,166,cs), +(362,166,o), +(390,172,o), +(417,182,c), +(509,85,l), +(604,179,l), +(518,269,l), +(533,297,o), +(541,327,o), +(542,360,cs), +(543,394,o), +(538,425,o), +(524,454,c), +(616,543,l), +(527,637,l), +(428,539,l), +(402,549,o), +(370,554,o), +(343,554,cs), +(316,554,o), +(285,549,o), +(258,539,c), +(166,637,l), +(70,543,l), +(156,454,l), +(141,426,o), +(133,393,o), +(131,360,cs), +(130,329,o), +(135,298,o), +(149,269,c), +(57,179,l), +(146,85,l) +); +}, +{ +closed = 1; +nodes = ( +(296,294,o), +(268,320,o), +(269,360,cs), +(270,400,o), +(301,427,o), +(339,427,cs), +(377,427,o), +(406,400,o), +(405,360,cs), +(403,320,o), +(372,294,o), +(334,294,cs) +); +} +); +width = 637; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,207,l), +(261,182,o), +(302,167,o), +(346,167,cs), +(389,167,o), +(431,182,o), +(463,208,c), +(567,97,l), +(593,120,l), +(488,231,l), +(516,261,o), +(533,305,o), +(534,348,cs), +(536,395,o), +(521,437,o), +(497,468,c), +(609,577,l), +(585,602,l), +(473,491,l), +(443,516,o), +(402,529,o), +(358,529,cs), +(311,529,o), +(271,514,o), +(241,491,c), +(137,602,l), +(112,577,l), +(215,468,l), +(188,437,o), +(170,395,o), +(168,348,cs), +(166,302,o), +(182,260,o), +(205,231,c), +(96,120,l), +(120,97,l) +); +}, +{ +closed = 1; +nodes = ( +(261,203,o), +(202,265,o), +(205,349,cs), +(208,435,o), +(272,496,o), +(357,496,cs), +(441,496,o), +(502,435,o), +(499,349,cs), +(496,265,o), +(432,203,o), +(347,203,cs) +); +} +); +width = 668; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,158,l), +(287,151,o), +(313,146,o), +(348,146,cs), +(376,146,o), +(409,150,o), +(436,158,c), +(530,60,l), +(638,166,l), +(550,257,l), +(565,286,o), +(572,318,o), +(573,348,cs), +(574,382,o), +(569,412,o), +(556,442,c), +(650,532,l), +(550,639,l), +(447,538,l), +(418,548,o), +(386,552,o), +(363,552,cs), +(337,552,o), +(303,547,o), +(277,538,c), +(181,639,l), +(74,532,l), +(162,442,l), +(148,416,o), +(140,384,o), +(139,348,cs), +(138,321,o), +(140,288,o), +(154,257,c), +(60,166,l), +(160,60,l) +); +}, +{ +closed = 1; +nodes = ( +(320,290,o), +(293,312,o), +(294,348,cs), +(295,383,o), +(324,408,o), +(357,408,cs), +(392,408,o), +(419,383,o), +(418,348,cs), +(417,313,o), +(387,290,o), +(353,290,cs) +); +} +); +width = 680; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(224,201,l), +(259,174,o), +(302,158,o), +(351,158,cs), +(400,158,o), +(444,173,o), +(479,202,c), +(593,83,l), +(616,103,l), +(503,223,l), +(533,255,o), +(552,301,o), +(554,350,cs), +(556,403,o), +(538,446,o), +(513,480,c), +(634,597,l), +(612,620,l), +(490,501,l), +(457,529,o), +(412,543,o), +(364,543,cs), +(312,543,o), +(268,526,o), +(235,501,c), +(123,620,l), +(99,597,l), +(212,480,l), +(182,446,o), +(161,399,o), +(160,350,cs), +(158,300,o), +(175,255,o), +(202,223,c), +(82,103,l), +(104,83,l) +); +}, +{ +closed = 1; +nodes = ( +(256,189,o), +(189,257,o), +(192,350,cs), +(196,444,o), +(268,511,o), +(363,511,cs), +(457,511,o), +(524,444,o), +(521,350,cs), +(518,257,o), +(447,189,o), +(352,189,cs) +); +} +); +width = 677; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(265,154,l), +(293,146,o), +(323,142,o), +(354,142,cs), +(383,142,o), +(418,146,o), +(447,153,c), +(548,50,l), +(668,169,l), +(575,264,l), +(589,293,o), +(597,326,o), +(599,359,cs), +(600,391,o), +(595,425,o), +(580,456,c), +(680,551,l), +(568,669,l), +(458,564,l), +(431,572,o), +(396,576,o), +(369,576,cs), +(345,576,o), +(312,573,o), +(281,564,c), +(180,669,l), +(59,551,l), +(152,456,l), +(138,428,o), +(130,395,o), +(128,359,cs), +(127,330,o), +(130,297,o), +(145,264,c), +(44,169,l), +(157,50,l) +); +}, +{ +closed = 1; +nodes = ( +(324,303,o), +(301,323,o), +(302,358,cs), +(304,392,o), +(326,415,o), +(364,415,cs), +(400,415,o), +(424,394,o), +(422,358,cs), +(421,325,o), +(398,303,o), +(360,303,cs) +); +} +); +width = 691; +} +); +unicode = 164; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/d.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/d.glyph new file mode 100644 index 00000000..224d7bc4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/d.glyph @@ -0,0 +1,1810 @@ +{ +glyphname = d; +kernLeft = KO_a; +kernRight = KO_l; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = center; +pos = (335,631); +}, +{ +name = top; +pos = (355,729); +}, +{ +name = topright; +pos = (443,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(310,-10,o), +(371,25,o), +(402,89,c), +(412,89,l), +(412,0,l), +(603,0,l), +(603,729,l), +(412,729,l), +(412,455,l), +(402,455,l), +(373,516,o), +(316,554,o), +(243,554,cs), +(107,554,o), +(16,463,o), +(16,272,cs), +(16,103,o), +(93,-10,o), +(231,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,143,o), +(210,195,o), +(210,272,cs), +(210,365,o), +(250,401,o), +(307,401,cs), +(372,401,o), +(399,353,o), +(399,302,cs), +(399,242,ls), +(399,181,o), +(359,143,o), +(303,143,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,-10,o), +(243,17,o), +(260,64,c), +(267,64,l), +(271,0,l), +(443,0,l), +(443,729,l), +(267,729,l), +(267,477,l), +(260,477,l), +(242,524,o), +(206,551,o), +(156,551,cs), +(46,551,o), +(16,444,o), +(16,271,cs), +(16,48,o), +(73,-10,o), +(156,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,128,o), +(194,176,o), +(194,271,cs), +(194,381,o), +(204,415,o), +(231,415,cs), +(259,415,o), +(267,370,o), +(267,285,cs), +(267,256,ls), +(267,157,o), +(255,128,o), +(231,128,cs) +); +} +); +width = 470; +}, +{ +anchors = ( +{ +name = bottom; +pos = (176,0); +}, +{ +name = center; +pos = (250,631); +}, +{ +name = top; +pos = (176,729); +}, +{ +name = topright; +pos = (284,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(351,-8,o), +(422,44,o), +(449,121,c), +(452,121,l), +(452,0,l), +(488,0,l), +(489,729,l), +(452,729,l), +(452,398,l), +(449,398,l), +(422,475,o), +(351,526,o), +(253,526,cs), +(124,526,o), +(36,425,o), +(36,259,cs), +(36,94,o), +(124,-8,o), +(253,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(149,26,o), +(74,112,o), +(74,259,cs), +(74,408,o), +(149,493,o), +(261,493,cs), +(381,493,o), +(451,397,o), +(451,295,cs), +(451,224,ls), +(451,105,o), +(375,26,o), +(261,26,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,-10,o), +(237,24,o), +(253,77,c), +(255,77,l), +(256,0,l), +(284,0,l), +(284,729,l), +(255,729,l), +(255,439,l), +(253,439,l), +(237,491,o), +(211,526,o), +(159,526,cs), +(92,526,o), +(45,465,o), +(45,257,cs), +(45,53,o), +(90,-10,o), +(159,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(94,16,o), +(75,101,o), +(75,257,cs), +(75,412,o), +(93,500,o), +(167,500,cs), +(219,500,o), +(255,439,o), +(255,309,cs), +(255,206,ls), +(255,79,o), +(220,16,o), +(167,16,cs) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = center; +pos = (506,631); +}, +{ +name = top; +pos = (317,729); +}, +{ +name = topright; +pos = (574,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,-15,o), +(501,41,o), +(533,124,c), +(537,124,l), +(537,0,l), +(574,0,l), +(574,729,l), +(537,729,l), +(537,387,l), +(533,387,l), +(501,471,o), +(417,526,o), +(303,526,cs), +(142,526,o), +(35,419,o), +(35,256,cs), +(35,92,o), +(142,-15,o), +(303,-15,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,19,o), +(73,113,o), +(73,256,cs), +(73,399,o), +(158,492,o), +(306,492,cs), +(446,492,o), +(537,406,o), +(537,283,cs), +(537,228,ls), +(537,105,o), +(446,19,o), +(306,19,cs) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (361,0); +}, +{ +name = center; +pos = (547,631); +}, +{ +name = top; +pos = (361,729); +}, +{ +name = topright; +pos = (687,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(372,-8,o), +(432,24,o), +(463,70,c), +(471,70,l), +(477,0,l), +(687,0,l), +(687,729,l), +(466,729,l), +(466,475,l), +(458,475,l), +(424,526,o), +(355,554,o), +(277,554,cs), +(118,554,o), +(12,445,o), +(12,273,cs), +(12,101,o), +(118,-8,o), +(275,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,157,o), +(234,198,o), +(234,273,cs), +(234,348,o), +(279,388,o), +(347,388,cs), +(422,388,o), +(465,343,o), +(465,279,cs), +(465,267,ls), +(465,203,o), +(421,157,o), +(347,157,cs) +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +pos = (166,0); +}, +{ +name = center; +pos = (240,631); +}, +{ +name = top; +pos = (166,729); +}, +{ +name = topright; +pos = (274,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-8,o), +(432,44,o), +(459,121,c), +(462,121,l), +(462,0,l), +(498,0,l), +(499,729,l), +(462,729,l), +(462,398,l), +(459,398,l), +(432,475,o), +(361,526,o), +(263,526,cs), +(134,526,o), +(46,425,o), +(46,259,cs), +(46,94,o), +(134,-8,o), +(263,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,26,o), +(84,112,o), +(84,259,cs), +(84,408,o), +(159,493,o), +(271,493,cs), +(391,493,o), +(461,397,o), +(461,295,cs), +(461,224,ls), +(461,105,o), +(385,26,o), +(271,26,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,-10,o), +(226,18,o), +(244,77,c), +(245,77,l), +(246,0,l), +(275,0,l), +(275,729,l), +(245,729,l), +(245,439,l), +(244,439,l), +(225,498,o), +(191,526,o), +(142,526,cs), +(61,526,o), +(24,440,o), +(24,257,cs), +(24,75,o), +(61,-10,o), +(142,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(85,17,o), +(55,88,o), +(55,257,cs), +(55,428,o), +(85,499,o), +(150,499,cs), +(206,499,o), +(245,423,o), +(245,309,cs), +(245,206,ls), +(245,93,o), +(206,17,o), +(150,17,cs) +); +} +); +width = 310; +}, +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = center; +pos = (326,631); +}, +{ +name = top; +pos = (346,729); +}, +{ +name = topright; +pos = (434,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(310,-10,o), +(371,25,o), +(402,89,c), +(412,89,l), +(412,0,l), +(603,0,l), +(603,729,l), +(412,729,l), +(412,455,l), +(402,455,l), +(373,516,o), +(316,554,o), +(243,554,cs), +(107,554,o), +(16,463,o), +(16,272,cs), +(16,103,o), +(93,-10,o), +(231,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,143,o), +(210,195,o), +(210,272,cs), +(210,365,o), +(250,401,o), +(307,401,cs), +(372,401,o), +(399,353,o), +(399,302,cs), +(399,242,ls), +(399,181,o), +(359,143,o), +(303,143,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(199,-10,o), +(234,17,o), +(257,76,c), +(258,76,l), +(262,0,l), +(434,0,l), +(434,729,l), +(258,729,l), +(258,463,l), +(257,463,l), +(233,524,o), +(197,551,o), +(147,551,cs), +(37,551,o), +(7,444,o), +(7,271,cs), +(7,48,o), +(64,-10,o), +(147,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,128,o), +(185,176,o), +(185,271,cs), +(185,381,o), +(195,415,o), +(222,415,cs), +(250,415,o), +(258,370,o), +(258,285,cs), +(258,256,ls), +(258,157,o), +(246,128,o), +(222,128,cs) +); +} +); +width = 450; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = center; +pos = (428,631); +}, +{ +name = top; +pos = (280,729); +}, +{ +name = topright; +pos = (486,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(349,-8,o), +(420,44,o), +(447,121,c), +(450,121,l), +(452,0,l), +(486,0,l), +(486,729,l), +(449,729,l), +(449,398,l), +(447,398,l), +(420,475,o), +(349,526,o), +(251,526,cs), +(122,526,o), +(34,425,o), +(34,259,cs), +(34,94,o), +(122,-8,o), +(251,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,26,o), +(72,112,o), +(72,259,cs), +(72,408,o), +(147,493,o), +(259,493,cs), +(379,493,o), +(449,385,o), +(449,283,cs), +(449,232,ls), +(449,130,o), +(379,26,o), +(259,26,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = c; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +1, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 545; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = center; +pos = (454,631); +}, +{ +name = top; +pos = (308,729); +}, +{ +name = topright; +pos = (579,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(318,-10,o), +(377,27,o), +(401,83,c), +(411,83,l), +(418,0,l), +(602,0,l), +(602,729,l), +(411,729,l), +(411,461,l), +(401,461,l), +(377,517,o), +(318,554,o), +(241,554,cs), +(113,554,o), +(28,464,o), +(28,272,cs), +(28,80,o), +(113,-10,o), +(241,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,143,o), +(223,179,o), +(223,272,cs), +(223,365,o), +(260,401,o), +(316,401,cs), +(383,401,o), +(409,349,o), +(409,294,cs), +(409,250,ls), +(409,195,o), +(383,143,o), +(316,143,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-10,o), +(360,25,o), +(389,90,c), +(390,90,l), +(397,0,l), +(579,0,l), +(579,729,l), +(388,729,l), +(388,453,l), +(387,453,l), +(362,515,o), +(302,554,o), +(226,554,cs), +(94,554,o), +(7,451,o), +(7,272,cs), +(7,93,o), +(94,-10,o), +(226,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,143,o), +(202,195,o), +(202,272,cs), +(202,349,o), +(230,401,o), +(300,401,cs), +(357,401,o), +(388,361,o), +(388,288,cs), +(388,254,ls), +(388,182,o), +(355,143,o), +(295,143,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = c; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (338,0); +}, +{ +name = center; +pos = (527,631); +}, +{ +name = top; +pos = (338,729); +}, +{ +name = topright; +pos = (595,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(429,-15,o), +(521,36,o), +(557,122,c), +(558,122,l), +(558,0,l), +(595,0,l), +(595,729,l), +(558,729,l), +(558,391,l), +(557,391,l), +(522,476,o), +(430,526,o), +(310,526,cs), +(141,526,o), +(28,419,o), +(28,256,cs), +(28,92,o), +(141,-15,o), +(310,-15,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,19,o), +(66,113,o), +(66,256,cs), +(66,399,o), +(156,492,o), +(313,492,cs), +(461,492,o), +(558,404,o), +(558,277,cs), +(558,233,ls), +(558,107,o), +(461,19,o), +(313,19,cs) +); +} +); +width = 651; +}, +{ +anchors = ( +{ +name = bottom; +pos = (367,0); +}, +{ +name = center; +pos = (553,631); +}, +{ +name = top; +pos = (367,729); +}, +{ +name = topright; +pos = (693,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-8,o), +(445,24,o), +(476,70,c), +(477,70,l), +(483,0,l), +(693,0,l), +(693,729,l), +(472,729,l), +(472,475,l), +(471,475,l), +(437,526,o), +(361,554,o), +(283,554,cs), +(124,554,o), +(18,445,o), +(18,273,cs), +(18,101,o), +(124,-8,o), +(281,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,157,o), +(240,198,o), +(240,273,cs), +(240,348,o), +(285,388,o), +(353,388,cs), +(428,388,o), +(471,343,o), +(471,279,cs), +(471,267,ls), +(471,203,o), +(427,157,o), +(353,157,cs) +); +} +); +width = 723; +}, +{ +anchors = ( +{ +name = bottom; +pos = (298,0); +}, +{ +name = center; +pos = (444,646); +}, +{ +name = top; +pos = (298,759); +}, +{ +name = topright; +pos = (496,759); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(365,-8,o), +(433,44,o), +(457,121,c), +(460,121,l), +(462,0,l), +(496,0,l), +(496,759,l), +(459,759,l), +(459,398,l), +(457,398,l), +(433,475,o), +(365,526,o), +(273,526,cs), +(151,526,o), +(68,425,o), +(68,259,cs), +(68,94,o), +(151,-8,o), +(273,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,26,o), +(106,112,o), +(106,259,cs), +(106,408,o), +(176,493,o), +(281,493,cs), +(394,493,o), +(459,397,o), +(459,295,cs), +(459,224,ls), +(459,122,o), +(394,26,o), +(281,26,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = c; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +1, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (319,0); +}, +{ +name = center; +pos = (459,646); +}, +{ +name = top; +pos = (319,759); +}, +{ +name = topright; +pos = (574,759); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(317,-10,o), +(376,27,o), +(400,83,c), +(410,83,l), +(417,0,l), +(601,0,l), +(601,729,l), +(410,729,l), +(410,461,l), +(400,461,l), +(376,517,o), +(317,554,o), +(240,554,cs), +(112,554,o), +(27,464,o), +(27,272,cs), +(27,80,o), +(112,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,143,o), +(222,179,o), +(222,272,cs), +(222,365,o), +(259,401,o), +(315,401,cs), +(382,401,o), +(408,349,o), +(408,294,cs), +(408,250,ls), +(408,195,o), +(382,143,o), +(315,143,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-10,o), +(358,27,o), +(376,79,c), +(388,79,l), +(394,0,l), +(574,0,l), +(574,759,l), +(385,759,l), +(387,465,l), +(375,465,l), +(357,517,o), +(305,554,o), +(238,554,cs), +(115,554,o), +(34,451,o), +(34,272,cs), +(34,93,o), +(115,-10,o), +(238,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,148,o), +(227,198,o), +(227,272,cs), +(227,347,o), +(250,397,o), +(313,397,cs), +(359,397,o), +(385,357,o), +(385,285,cs), +(385,259,ls), +(385,187,o), +(358,148,o), +(308,148,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = c; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 637; +}, +{ +anchors = ( +{ +name = bottom; +pos = (133,0); +}, +{ +name = center; +pos = (324,631); +}, +{ +name = top; +pos = (284,729); +}, +{ +name = topright; +pos = (378,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-10,o), +(182,16,o), +(211,70,c), +(212,70,l), +(201,0,l), +(226,0,l), +(377,729,l), +(349,729,l), +(287,431,l), +(285,431,l), +(281,488,o), +(262,524,o), +(206,524,cs), +(138,524,o), +(85,457,o), +(45,263,cs), +(15,123,o), +(7,-10,o), +(107,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(34,15,o), +(46,127,o), +(75,263,cs), +(106,410,o), +(139,497,o), +(209,497,cs), +(271,497,o), +(285,422,o), +(260,301,cs), +(239,198,ls), +(214,75,o), +(170,15,o), +(119,15,cs) +); +} +); +width = 339; +}, +{ +anchors = ( +{ +name = bottom; +pos = (188,0); +}, +{ +name = center; +pos = (407,631); +}, +{ +name = top; +pos = (339,729); +}, +{ +name = topright; +pos = (534,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,-10,o), +(191,15,o), +(213,56,c), +(220,56,l), +(213,0,l), +(385,0,l), +(537,729,l), +(360,729,l), +(306,470,l), +(300,470,l), +(292,525,o), +(254,550,o), +(203,550,cs), +(101,550,o), +(51,443,o), +(18,280,cs), +(-14,125,o), +(-19,-10,o), +(108,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,121,o), +(169,157,o), +(193,270,cs), +(214,373,o), +(231,410,o), +(257,410,cs), +(287,410,o), +(286,373,o), +(266,277,cs), +(259,243,ls), +(238,143,o), +(221,121,o), +(201,121,cs) +); +} +); +width = 468; +}, +{ +anchors = ( +{ +name = bottom; +pos = (233,0); +}, +{ +name = center; +pos = (520,631); +}, +{ +name = top; +pos = (384,729); +}, +{ +name = topright; +pos = (576,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,-10,o), +(366,26,o), +(408,103,c), +(411,103,l), +(391,0,l), +(424,0,l), +(576,729,l), +(539,729,l), +(469,391,l), +(465,391,l), +(444,477,o), +(382,526,o), +(292,526,cs), +(143,526,o), +(31,387,o), +(31,197,cs), +(31,70,o), +(102,-10,o), +(216,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,23,o), +(69,87,o), +(69,200,cs), +(69,369,o), +(166,492,o), +(294,492,cs), +(412,492,o), +(471,399,o), +(442,259,cs), +(430,202,ls), +(407,95,o), +(330,23,o), +(221,23,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,-10,o), +(389,26,o), +(431,103,c), +(434,103,l), +(414,0,l), +(447,0,l), +(598,729,l), +(562,729,l), +(492,391,l), +(488,391,l), +(468,472,o), +(403,526,o), +(312,526,cs), +(158,526,o), +(54,405,o), +(54,201,cs), +(54,74,o), +(128,-10,o), +(239,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,24,o), +(92,96,o), +(92,205,cs), +(92,375,o), +(173,492,o), +(311,492,cs), +(432,492,o), +(494,399,o), +(465,259,cs), +(453,202,ls), +(430,95,o), +(353,24,o), +(244,24,cs) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (205,0); +}, +{ +name = center; +pos = (556,631); +}, +{ +name = top; +pos = (433,729); +}, +{ +name = topright; +pos = (698,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,-10,o), +(299,20,o), +(326,70,c), +(331,70,l), +(323,0,l), +(505,0,l), +(656,729,l), +(465,729,l), +(407,448,l), +(402,448,l), +(386,507,o), +(329,553,o), +(247,553,cs), +(116,553,o), +(17,444,o), +(-5,289,cs), +(-28,123,o), +(24,-10,o), +(175,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,140,o), +(184,177,o), +(184,243,cs), +(184,338,o), +(227,403,o), +(300,403,cs), +(358,403,o), +(387,349,o), +(373,280,cs), +(362,227,ls), +(350,171,o), +(316,140,o), +(264,140,cs) +); +} +); +}; +guides = ( +{ +angle = 78.3; +pos = (393,448); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,-10,o), +(335,20,o), +(361,67,c), +(368,66,l), +(360,0,l), +(546,0,l), +(697,729,l), +(506,729,l), +(449,457,l), +(443,457,l), +(425,515,o), +(361,554,o), +(291,554,cs), +(138,554,o), +(48,431,o), +(29,276,cs), +(7,105,o), +(79,-10,o), +(207,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,143,o), +(210,193,o), +(224,281,cs), +(235,353,o), +(276,401,o), +(337,401,cs), +(399,401,o), +(428,351,o), +(414,287,cs), +(404,241,ls), +(391,182,o), +(361,143,o), +(303,143,cs) +); +} +); +width = 656; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = center; +pos = (587,631); +}, +{ +name = top; +pos = (427,729); +}, +{ +name = topright; +pos = (721,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-219,-10,o), +(-128,34,o), +(-90,101,c), +(-83,101,l), +(-101,0,l), +(-68,0,l), +(84,729,l), +(47,729,l), +(-29,363,l), +(-36,363,l), +(-63,463,o), +(-150,527,o), +(-270,527,cs), +(-443,527,o), +(-564,403,o), +(-564,227,cs), +(-564,84,o), +(-462,-10,o), +(-319,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-441,24,o), +(-526,104,o), +(-526,229,cs), +(-526,388,o), +(-424,493,o), +(-268,493,cs), +(-120,493,o), +(-26,390,o), +(-54,242,cs), +(-59,216,ls), +(-81,104,o), +(-175,24,o), +(-313,24,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,-10,o), +(459,29,o), +(507,109,c), +(510,109,l), +(491,0,l), +(524,0,l), +(676,729,l), +(639,729,l), +(563,363,l), +(559,363,l), +(545,461,o), +(456,527,o), +(336,527,cs), +(166,527,o), +(39,399,o), +(33,222,cs), +(28,81,o), +(122,-10,o), +(262,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,24,o), +(66,101,o), +(70,223,cs), +(76,381,o), +(186,493,o), +(332,493,cs), +(484,493,o), +(566,393,o), +(537,247,cs), +(531,217,ls), +(508,103,o), +(412,24,o), +(268,24,cs) +); +} +); +width = 645; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (610,631); +}, +{ +name = top; +pos = (461,729); +}, +{ +name = topright; +pos = (771,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,-10,o), +(372,13,o), +(407,52,c), +(415,52,l), +(412,0,l), +(619,0,l), +(771,729,l), +(550,729,l), +(494,457,l), +(486,457,l), +(463,519,o), +(385,554,o), +(303,554,cs), +(137,554,o), +(21,433,o), +(13,248,cs), +(5,92,o), +(100,-10,o), +(248,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,154,o), +(231,193,o), +(234,256,cs), +(237,337,o), +(286,389,o), +(358,387,cs), +(429,384,o), +(467,334,o), +(454,264,cs), +(451,248,ls), +(440,191,o), +(402,154,o), +(334,154,cs) +); +} +); +width = 719; +} +); +metricLeft = "=|b"; +metricRight = l; +unicode = 100; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dcaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dcaron.glyph new file mode 100644 index 00000000..2f401318 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dcaron.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = dcaron; +kernLeft = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = d; +}, +{ +pos = (293,0); +ref = caroncomb.alt; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = d; +}, +{ +pos = (422,0); +ref = caroncomb.alt; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = d; +}, +{ +pos = (602,0); +ref = caroncomb.alt; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = d; +}, +{ +pos = (677,0); +ref = caroncomb.alt; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = d; +}, +{ +pos = (303,0); +ref = caroncomb.alt; +} +); +width = 310; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = d; +}, +{ +pos = (423,0); +ref = caroncomb.alt; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = d; +}, +{ +pos = (524,0); +ref = caroncomb.alt; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = d; +}, +{ +pos = (579,0); +ref = caroncomb.alt; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = d; +}, +{ +alignment = -1; +pos = (602,0); +ref = caroncomb.alt; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = d; +}, +{ +alignment = -1; +pos = (677,0); +ref = caroncomb.alt; +} +); +width = 730; +}, +{ +layerId = m019; +shapes = ( +{ +ref = d; +}, +{ +pos = (517,30); +ref = caroncomb.alt; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = d; +}, +{ +pos = (551,30); +ref = caroncomb.alt; +} +); +width = 637; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = d; +}, +{ +pos = (290,0); +ref = caroncomb.alt; +} +); +width = 339; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = d; +}, +{ +pos = (417,0); +ref = caroncomb.alt; +} +); +width = 468; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = d; +}, +{ +pos = (497,0); +ref = caroncomb.alt; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = d; +}, +{ +pos = (591,0); +ref = caroncomb.alt; +} +); +width = 656; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = d; +}, +{ +pos = (652,0); +ref = caroncomb.alt; +} +); +width = 645; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = d; +}, +{ +pos = (666,0); +ref = caroncomb.alt; +} +); +width = 719; +} +); +unicode = 271; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dcroat.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dcroat.glyph new file mode 100644 index 00000000..64810f2b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dcroat.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = dcroat; +kernLeft = KO_a; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = d; +}, +{ +pos = (116,325); +ref = strokeshortcomb; +} +); +width = 344; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = d; +}, +{ +pos = (154,325); +ref = strokeshortcomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = d; +}, +{ +pos = (304,324); +ref = strokeshortcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = d; +}, +{ +pos = (312,325); +ref = strokeshortcomb; +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = d; +}, +{ +pos = (126,325); +ref = strokeshortcomb; +} +); +width = 310; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = d; +}, +{ +pos = (155,325); +ref = strokeshortcomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = d; +}, +{ +pos = (256,324); +ref = strokeshortcomb; +} +); +width = 545; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = d; +}, +{ +pos = (260,325); +ref = strokeshortcomb; +} +); +width = 609; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = d; +}, +{ +alignment = -1; +pos = (304,324); +ref = strokeshortcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = d; +}, +{ +alignment = -1; +pos = (312,325); +ref = strokeshortcomb; +} +); +width = 730; +}, +{ +layerId = m019; +shapes = ( +{ +ref = d; +}, +{ +pos = (253,339); +ref = strokeshortcomb; +} +); +width = 581; +}, +{ +layerId = m020; +shapes = ( +{ +ref = d; +}, +{ +pos = (252,340); +ref = strokeshortcomb; +} +); +width = 637; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = d; +}, +{ +pos = (180,325); +ref = strokeshortcomb; +} +); +width = 339; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = d; +}, +{ +pos = (218,325); +ref = strokeshortcomb; +} +); +width = 468; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = d; +}, +{ +pos = (318,324); +ref = strokeshortcomb; +} +); +width = 586; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = d; +}, +{ +pos = (334,325); +ref = strokeshortcomb; +} +); +width = 656; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = d; +}, +{ +pos = (374,324); +ref = strokeshortcomb; +} +); +width = 645; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = d; +}, +{ +pos = (368,325); +ref = strokeshortcomb; +} +); +width = 719; +} +); +unicode = 273; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/degree.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/degree.glyph new file mode 100644 index 00000000..80c9806f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/degree.glyph @@ -0,0 +1,837 @@ +{ +glyphname = degree; +kernRight = KO_degree; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,387,o), +(357,450,o), +(357,563,cs), +(357,676,o), +(290,739,o), +(189,739,cs), +(88,739,o), +(21,676,o), +(21,563,cs), +(21,450,o), +(88,387,o), +(189,387,cs) +); +}, +{ +closed = 1; +nodes = ( +(162,496,o), +(150,518,o), +(150,563,cs), +(150,608,o), +(162,630,o), +(189,630,cs), +(216,630,o), +(228,608,o), +(228,563,cs), +(228,518,o), +(216,496,o), +(189,496,cs) +); +} +); +width = 378; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,453,o), +(271,511,o), +(271,593,cs), +(271,677,o), +(233,734,o), +(165,734,cs), +(97,734,o), +(59,677,o), +(59,593,cs), +(59,509,o), +(97,453,o), +(165,453,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,479,o), +(89,516,o), +(89,593,cs), +(89,670,o), +(119,707,o), +(165,707,cs), +(211,707,o), +(241,670,o), +(241,593,cs), +(241,516,o), +(211,479,o), +(165,479,cs) +); +} +); +width = 330; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,443,o), +(365,503,o), +(365,590,cs), +(365,678,o), +(298,737,o), +(212,737,cs), +(127,737,o), +(60,678,o), +(60,590,cs), +(60,503,o), +(127,443,o), +(212,443,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,478,o), +(97,524,o), +(97,590,cs), +(97,656,o), +(147,702,o), +(212,702,cs), +(278,702,o), +(328,656,o), +(328,590,cs), +(328,524,o), +(278,478,o), +(212,478,cs) +); +} +); +width = 425; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,386,o), +(411,457,o), +(411,563,cs), +(411,669,o), +(330,739,o), +(219,739,cs), +(108,739,o), +(27,669,o), +(27,563,cs), +(27,457,o), +(108,386,o), +(219,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(187,506,o), +(161,527,o), +(161,563,cs), +(161,599,o), +(187,619,o), +(219,619,cs), +(251,619,o), +(277,599,o), +(277,563,cs), +(277,527,o), +(251,506,o), +(219,506,cs) +); +} +); +width = 438; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(214,453,o), +(251,511,o), +(251,593,cs), +(251,677,o), +(213,734,o), +(145,734,cs), +(77,734,o), +(39,677,o), +(39,593,cs), +(39,509,o), +(77,453,o), +(145,453,cs) +); +}, +{ +closed = 1; +nodes = ( +(99,479,o), +(69,516,o), +(69,593,cs), +(69,670,o), +(99,707,o), +(145,707,cs), +(191,707,o), +(221,670,o), +(221,593,cs), +(221,516,o), +(191,479,o), +(145,479,cs) +); +} +); +width = 290; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(280,387,o), +(347,450,o), +(347,563,cs), +(347,676,o), +(280,739,o), +(179,739,cs), +(78,739,o), +(11,676,o), +(11,563,cs), +(11,450,o), +(78,387,o), +(179,387,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,496,o), +(140,518,o), +(140,563,cs), +(140,608,o), +(152,630,o), +(179,630,cs), +(206,630,o), +(218,608,o), +(218,563,cs), +(218,518,o), +(206,496,o), +(179,496,cs) +); +} +); +width = 358; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,443,o), +(369,503,o), +(369,590,cs), +(369,678,o), +(302,737,o), +(216,737,cs), +(131,737,o), +(64,678,o), +(64,590,cs), +(64,503,o), +(131,443,o), +(216,443,cs) +); +}, +{ +closed = 1; +nodes = ( +(151,478,o), +(101,524,o), +(101,590,cs), +(101,656,o), +(151,702,o), +(216,702,cs), +(282,702,o), +(332,656,o), +(332,590,cs), +(332,524,o), +(282,478,o), +(216,478,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 433; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,386,o), +(406,457,o), +(406,563,cs), +(406,669,o), +(325,739,o), +(214,739,cs), +(103,739,o), +(22,669,o), +(22,563,cs), +(22,457,o), +(103,386,o), +(214,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,506,o), +(156,527,o), +(156,563,cs), +(156,599,o), +(182,619,o), +(214,619,cs), +(246,619,o), +(272,599,o), +(272,563,cs), +(272,527,o), +(246,506,o), +(214,506,cs) +); +} +); +width = 428; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,443,o), +(355,503,o), +(355,590,cs), +(355,678,o), +(288,737,o), +(202,737,cs), +(117,737,o), +(50,678,o), +(50,590,cs), +(50,503,o), +(117,443,o), +(202,443,cs) +); +}, +{ +closed = 1; +nodes = ( +(137,478,o), +(87,524,o), +(87,590,cs), +(87,656,o), +(137,702,o), +(202,702,cs), +(268,702,o), +(318,656,o), +(318,590,cs), +(318,524,o), +(268,478,o), +(202,478,cs) +); +} +); +width = 405; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,386,o), +(401,457,o), +(401,563,cs), +(401,669,o), +(320,739,o), +(209,739,cs), +(98,739,o), +(17,669,o), +(17,563,cs), +(17,457,o), +(98,386,o), +(209,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,506,o), +(151,527,o), +(151,563,cs), +(151,599,o), +(177,619,o), +(209,619,cs), +(241,619,o), +(267,599,o), +(267,563,cs), +(267,527,o), +(241,506,o), +(209,506,cs) +); +} +); +width = 418; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(319,443,o), +(384,503,o), +(384,590,cs), +(384,678,o), +(319,737,o), +(235,737,cs), +(151,737,o), +(85,678,o), +(85,590,cs), +(85,503,o), +(151,443,o), +(235,443,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,478,o), +(122,524,o), +(122,590,cs), +(122,656,o), +(170,702,o), +(235,702,cs), +(299,702,o), +(348,656,o), +(348,590,cs), +(348,524,o), +(299,478,o), +(235,478,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 468; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(334,386,o), +(412,457,o), +(412,563,cs), +(412,669,o), +(334,739,o), +(227,739,cs), +(120,739,o), +(42,669,o), +(42,563,cs), +(42,457,o), +(120,386,o), +(227,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,506,o), +(174,527,o), +(174,563,cs), +(174,599,o), +(198,619,o), +(227,619,cs), +(255,619,o), +(279,599,o), +(279,563,cs), +(279,527,o), +(255,506,o), +(227,506,cs) +); +} +); +width = 452; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,443,o), +(423,506,o), +(423,596,cs), +(423,681,o), +(359,737,o), +(276,737,cs), +(190,737,o), +(121,675,o), +(121,584,cs), +(121,500,o), +(184,443,o), +(266,443,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,478,o), +(157,522,o), +(157,586,cs), +(157,654,o), +(210,702,o), +(275,702,cs), +(339,702,o), +(386,658,o), +(386,594,cs), +(386,526,o), +(334,478,o), +(267,478,cs) +); +} +); +width = 407; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,386,o), +(463,460,o), +(463,571,cs), +(463,672,o), +(386,739,o), +(279,739,cs), +(167,739,o), +(83,666,o), +(83,555,cs), +(83,454,o), +(160,386,o), +(267,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,506,o), +(216,525,o), +(216,559,cs), +(216,597,o), +(242,619,o), +(275,619,cs), +(306,619,o), +(330,600,o), +(330,567,cs), +(330,529,o), +(304,506,o), +(271,506,cs) +); +} +); +width = 425; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(387,443,o), +(457,506,o), +(457,596,cs), +(457,680,o), +(394,737,o), +(309,737,cs), +(223,737,o), +(154,675,o), +(154,584,cs), +(154,501,o), +(217,443,o), +(300,443,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,478,o), +(191,522,o), +(191,586,cs), +(191,654,o), +(243,702,o), +(308,702,cs), +(372,702,o), +(419,658,o), +(419,594,cs), +(419,526,o), +(367,478,o), +(300,478,cs) +); +} +); +width = 474; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(404,385,o), +(489,463,o), +(489,575,cs), +(489,676,o), +(410,740,o), +(308,740,cs), +(190,740,o), +(105,662,o), +(105,551,cs), +(105,445,o), +(190,385,o), +(288,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,506,o), +(239,526,o), +(239,557,cs), +(239,592,o), +(263,619,o), +(301,619,cs), +(335,619,o), +(356,597,o), +(356,566,cs), +(356,530,o), +(331,506,o), +(294,506,cs) +); +} +); +width = 474; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,443,o), +(432,506,o), +(432,596,cs), +(432,681,o), +(368,737,o), +(285,737,cs), +(199,737,o), +(130,675,o), +(130,584,cs), +(130,500,o), +(193,443,o), +(275,443,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,478,o), +(166,522,o), +(166,586,cs), +(166,654,o), +(219,702,o), +(284,702,cs), +(348,702,o), +(395,658,o), +(395,594,cs), +(395,526,o), +(343,478,o), +(276,478,cs) +); +} +); +width = 425; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(386,386,o), +(471,460,o), +(471,572,cs), +(471,673,o), +(393,739,o), +(287,739,cs), +(175,739,o), +(90,665,o), +(90,554,cs), +(90,453,o), +(168,386,o), +(274,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,506,o), +(223,526,o), +(223,561,cs), +(223,597,o), +(250,619,o), +(283,619,cs), +(314,619,o), +(339,600,o), +(339,565,cs), +(339,528,o), +(312,506,o), +(278,506,cs) +); +} +); +width = 440; +} +); +unicode = 176; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dieresis.glyph new file mode 100644 index 00000000..9c030c3c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dieresis.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = dieresis; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 236; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 450; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 354; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 565; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = dieresiscomb; +} +); +width = 236; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = dieresiscomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = dieresiscomb; +} +); +width = 324; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = dieresiscomb; +} +); +width = 466; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = dieresiscomb; +} +); +width = 354; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = dieresiscomb; +} +); +width = 565; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 323; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 468; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 238; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 446; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 323; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 489; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 353; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 571; +} +); +unicode = 168; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dieresiscomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dieresiscomb.glyph new file mode 100644 index 00000000..9c21671d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dieresiscomb.glyph @@ -0,0 +1,842 @@ +{ +glyphname = dieresiscomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (118,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,772,o), +(196,781,o), +(196,795,cs), +(196,809,o), +(186,818,o), +(173,818,cs), +(160,818,o), +(150,809,o), +(150,795,cs), +(150,781,o), +(160,772,o), +(173,772,cs) +); +}, +{ +closed = 1; +nodes = ( +(76,772,o), +(86,781,o), +(86,795,cs), +(86,809,o), +(76,818,o), +(63,818,cs), +(50,818,o), +(40,809,o), +(40,795,cs), +(40,781,o), +(50,772,o), +(63,772,cs) +); +} +); +width = 236; +}, +{ +anchors = ( +{ +name = _top; +pos = (225,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(372,730,o), +(410,756,o), +(410,805,cs), +(410,854,o), +(372,881,o), +(323,881,cs), +(275,881,o), +(237,854,o), +(237,805,cs), +(237,756,o), +(275,730,o), +(323,730,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,730,o), +(213,756,o), +(213,805,cs), +(213,854,o), +(175,881,o), +(126,881,cs), +(78,881,o), +(40,854,o), +(40,805,cs), +(40,756,o), +(78,730,o), +(126,730,cs) +); +} +); +width = 450; +}, +{ +anchors = ( +{ +name = _top; +pos = (177,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,780,o), +(314,793,o), +(314,811,cs), +(314,829,o), +(301,842,o), +(282,842,cs), +(263,842,o), +(250,829,o), +(250,811,cs), +(250,793,o), +(263,780,o), +(282,780,cs) +); +}, +{ +closed = 1; +nodes = ( +(91,780,o), +(104,793,o), +(104,811,cs), +(104,829,o), +(91,842,o), +(72,842,cs), +(53,842,o), +(40,829,o), +(40,811,cs), +(40,793,o), +(53,780,o), +(72,780,cs) +); +} +); +width = 354; +}, +{ +anchors = ( +{ +name = _top; +pos = (283,678); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,719,o), +(525,744,o), +(525,799,cs), +(525,847,o), +(489,879,o), +(412,879,cs), +(344,879,o), +(299,854,o), +(299,799,cs), +(299,751,o), +(335,719,o), +(412,719,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,719,o), +(266,744,o), +(266,799,cs), +(266,847,o), +(230,879,o), +(153,879,cs), +(85,879,o), +(40,854,o), +(40,799,cs), +(40,751,o), +(76,719,o), +(153,719,cs) +); +} +); +width = 565; +}, +{ +anchors = ( +{ +name = _top; +pos = (98,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,772,o), +(176,781,o), +(176,795,cs), +(176,809,o), +(166,818,o), +(153,818,cs), +(140,818,o), +(130,809,o), +(130,795,cs), +(130,781,o), +(140,772,o), +(153,772,cs) +); +}, +{ +closed = 1; +nodes = ( +(56,772,o), +(66,781,o), +(66,795,cs), +(66,809,o), +(56,818,o), +(43,818,cs), +(30,818,o), +(20,809,o), +(20,795,cs), +(20,781,o), +(30,772,o), +(43,772,cs) +); +} +); +width = 196; +}, +{ +anchors = ( +{ +name = _top; +pos = (215,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,730,o), +(400,756,o), +(400,805,cs), +(400,854,o), +(362,881,o), +(313,881,cs), +(265,881,o), +(227,854,o), +(227,805,cs), +(227,756,o), +(265,730,o), +(313,730,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,730,o), +(203,756,o), +(203,805,cs), +(203,854,o), +(165,881,o), +(116,881,cs), +(68,881,o), +(30,854,o), +(30,805,cs), +(30,756,o), +(68,730,o), +(116,730,cs) +); +} +); +width = 430; +}, +{ +anchors = ( +{ +name = _top; +pos = (142,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,780,o), +(264,793,o), +(264,811,cs), +(264,829,o), +(251,842,o), +(232,842,cs), +(213,842,o), +(200,829,o), +(200,811,cs), +(200,793,o), +(213,780,o), +(232,780,cs) +); +}, +{ +closed = 1; +nodes = ( +(71,780,o), +(84,793,o), +(84,811,cs), +(84,829,o), +(71,842,o), +(52,842,cs), +(33,842,o), +(20,829,o), +(20,811,cs), +(20,793,o), +(33,780,o), +(52,780,cs) +); +} +); +width = 284; +}, +{ +anchors = ( +{ +name = _top; +pos = (222,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,731,o), +(425,758,o), +(425,806,cs), +(425,854,o), +(388,881,o), +(337,881,cs), +(286,881,o), +(249,854,o), +(249,806,cs), +(249,758,o), +(286,731,o), +(337,731,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,731,o), +(195,758,o), +(195,806,cs), +(195,854,o), +(158,881,o), +(107,881,cs), +(56,881,o), +(19,854,o), +(19,806,cs), +(19,758,o), +(56,731,o), +(107,731,cs) +); +} +); +width = 444; +}, +{ +anchors = ( +{ +name = _top; +pos = (167,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,780,o), +(304,793,o), +(304,811,cs), +(304,829,o), +(291,842,o), +(272,842,cs), +(253,842,o), +(240,829,o), +(240,811,cs), +(240,793,o), +(253,780,o), +(272,780,cs) +); +}, +{ +closed = 1; +nodes = ( +(81,780,o), +(94,793,o), +(94,811,cs), +(94,829,o), +(81,842,o), +(62,842,cs), +(43,842,o), +(30,829,o), +(30,811,cs), +(30,793,o), +(43,780,o), +(62,780,cs) +); +} +); +width = 334; +}, +{ +anchors = ( +{ +name = _top; +pos = (273,678); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,719,o), +(515,744,o), +(515,799,cs), +(515,847,o), +(479,879,o), +(402,879,cs), +(334,879,o), +(289,854,o), +(289,799,cs), +(289,751,o), +(325,719,o), +(402,719,cs) +); +}, +{ +closed = 1; +nodes = ( +(211,719,o), +(256,744,o), +(256,799,cs), +(256,847,o), +(220,879,o), +(143,879,cs), +(75,879,o), +(30,854,o), +(30,799,cs), +(30,751,o), +(66,719,o), +(143,719,cs) +); +} +); +width = 545; +}, +{ +anchors = ( +{ +name = _top; +pos = (161,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(268,780,o), +(281,793,o), +(281,811,cs), +(281,829,o), +(268,842,o), +(250,842,cs), +(232,842,o), +(219,829,o), +(219,811,cs), +(219,793,o), +(232,780,o), +(250,780,cs) +); +}, +{ +closed = 1; +nodes = ( +(92,780,o), +(105,793,o), +(105,811,cs), +(105,829,o), +(92,842,o), +(73,842,cs), +(54,842,o), +(43,829,o), +(43,811,cs), +(43,793,o), +(54,780,o), +(73,780,cs) +); +} +); +width = 323; +}, +{ +anchors = ( +{ +name = _top; +pos = (235,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(394,731,o), +(431,758,o), +(431,806,cs), +(431,854,o), +(394,881,o), +(345,881,cs), +(295,881,o), +(258,854,o), +(258,806,cs), +(258,758,o), +(295,731,o), +(345,731,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,731,o), +(211,758,o), +(211,806,cs), +(211,854,o), +(174,881,o), +(125,881,cs), +(75,881,o), +(39,854,o), +(39,806,cs), +(39,758,o), +(75,731,o), +(125,731,cs) +); +} +); +width = 468; +}, +{ +anchors = ( +{ +name = _top; +pos = (209,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,772,o), +(309,782,o), +(309,796,cs), +(309,810,o), +(299,818,o), +(287,818,cs), +(273,818,o), +(263,808,o), +(263,794,cs), +(263,780,o), +(273,772,o), +(285,772,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,772,o), +(198,781,o), +(198,795,cs), +(198,809,o), +(188,818,o), +(175,818,cs), +(162,818,o), +(152,809,o), +(152,795,cs), +(152,781,o), +(162,772,o), +(175,772,cs) +); +} +); +width = 238; +}, +{ +anchors = ( +{ +name = _top; +pos = (317,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,730,o), +(516,762,o), +(516,810,cs), +(516,853,o), +(487,881,o), +(438,881,cs), +(383,881,o), +(347,849,o), +(347,802,cs), +(347,758,o), +(375,730,o), +(425,730,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,730,o), +(321,762,o), +(321,810,cs), +(321,853,o), +(292,881,o), +(243,881,cs), +(188,881,o), +(152,849,o), +(152,802,cs), +(152,758,o), +(180,730,o), +(230,730,cs) +); +} +); +width = 446; +}, +{ +anchors = ( +{ +name = _top; +pos = (247,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,780,o), +(397,794,o), +(397,813,cs), +(397,831,o), +(384,842,o), +(368,842,cs), +(348,842,o), +(335,828,o), +(335,809,cs), +(335,791,o), +(348,780,o), +(364,780,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,780,o), +(217,794,o), +(217,813,cs), +(217,831,o), +(204,842,o), +(188,842,cs), +(168,842,o), +(155,828,o), +(155,809,cs), +(155,791,o), +(168,780,o), +(184,780,cs) +); +} +); +width = 323; +}, +{ +anchors = ( +{ +name = _top; +pos = (329,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,731,o), +(559,763,o), +(559,809,cs), +(559,852,o), +(529,881,o), +(475,881,cs), +(417,881,o), +(379,849,o), +(379,802,cs), +(379,760,o), +(409,731,o), +(463,731,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,731,o), +(332,763,o), +(332,809,cs), +(332,852,o), +(302,881,o), +(248,881,cs), +(190,881,o), +(152,849,o), +(152,802,cs), +(152,760,o), +(182,731,o), +(236,731,cs) +); +} +); +width = 489; +}, +{ +anchors = ( +{ +name = _top; +pos = (262,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,780,o), +(427,794,o), +(427,813,cs), +(427,831,o), +(414,842,o), +(398,842,cs), +(378,842,o), +(365,828,o), +(365,809,cs), +(365,791,o), +(378,780,o), +(394,780,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,780,o), +(217,794,o), +(217,813,cs), +(217,831,o), +(204,842,o), +(188,842,cs), +(168,842,o), +(155,828,o), +(155,809,cs), +(155,791,o), +(168,780,o), +(184,780,cs) +); +} +); +width = 353; +}, +{ +anchors = ( +{ +name = _top; +pos = (369,678); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(595,719,o), +(639,750,o), +(639,805,cs), +(639,851,o), +(604,879,o), +(532,879,cs), +(455,879,o), +(411,847,o), +(411,792,cs), +(411,747,o), +(446,719,o), +(518,719,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,719,o), +(378,750,o), +(378,805,cs), +(378,851,o), +(343,879,o), +(271,879,cs), +(194,879,o), +(150,847,o), +(150,792,cs), +(150,747,o), +(185,719,o), +(257,719,cs) +); +} +); +width = 571; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 776; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dieresiscomb.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dieresiscomb.ss01.glyph new file mode 100644 index 00000000..05bf2885 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dieresiscomb.ss01.glyph @@ -0,0 +1,547 @@ +{ +glyphname = dieresiscomb.ss01; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (107,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,770,l), +(173,882,l), +(144,882,l), +(144,770,l) +); +}, +{ +closed = 1; +nodes = ( +(69,770,l), +(69,882,l), +(40,882,l), +(40,770,l) +); +} +); +width = 213; +}, +{ +anchors = ( +{ +name = _top; +pos = (224,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(407,735,l), +(407,866,l), +(246,866,l), +(246,735,l) +); +}, +{ +closed = 1; +nodes = ( +(201,735,l), +(201,866,l), +(40,866,l), +(40,735,l) +); +} +); +width = 447; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,770,l), +(247,883,l), +(210,883,l), +(210,770,l) +); +}, +{ +closed = 1; +nodes = ( +(77,770,l), +(77,883,l), +(40,883,l), +(40,770,l) +); +} +); +width = 287; +}, +{ +anchors = ( +{ +name = _top; +pos = (261,678); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(482,734,l), +(482,863,l), +(296,863,l), +(296,734,l) +); +}, +{ +closed = 1; +nodes = ( +(226,734,l), +(226,863,l), +(40,863,l), +(40,734,l) +); +} +); +width = 522; +}, +{ +anchors = ( +{ +name = _top; +pos = (87,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,770,l), +(153,882,l), +(124,882,l), +(124,770,l) +); +}, +{ +closed = 1; +nodes = ( +(49,770,l), +(49,882,l), +(20,882,l), +(20,770,l) +); +} +); +width = 173; +}, +{ +anchors = ( +{ +name = _top; +pos = (214,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,735,l), +(397,866,l), +(236,866,l), +(236,735,l) +); +}, +{ +closed = 1; +nodes = ( +(191,735,l), +(191,866,l), +(30,866,l), +(30,735,l) +); +} +); +width = 427; +}, +{ +anchors = ( +{ +name = _top; +pos = (115,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,770,l), +(209,882,l), +(172,882,l), +(172,770,l) +); +}, +{ +closed = 1; +nodes = ( +(57,770,l), +(57,882,l), +(20,882,l), +(20,770,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = _top; +pos = (210,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(401,735,l), +(401,863,l), +(240,863,l), +(240,735,l) +); +}, +{ +closed = 1; +nodes = ( +(180,735,l), +(180,863,l), +(19,863,l), +(19,735,l) +); +} +); +width = 420; +}, +{ +anchors = ( +{ +name = _top; +pos = (134,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,770,l), +(237,883,l), +(200,883,l), +(200,770,l) +); +}, +{ +closed = 1; +nodes = ( +(67,770,l), +(67,883,l), +(30,883,l), +(30,770,l) +); +} +); +width = 267; +}, +{ +anchors = ( +{ +name = _top; +pos = (251,678); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,734,l), +(472,863,l), +(286,863,l), +(286,734,l) +); +}, +{ +closed = 1; +nodes = ( +(216,734,l), +(216,863,l), +(30,863,l), +(30,734,l) +); +} +); +width = 502; +}, +{ +anchors = ( +{ +name = _top; +pos = (136,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(228,770,l), +(228,882,l), +(191,882,l), +(191,770,l) +); +}, +{ +closed = 1; +nodes = ( +(78,770,l), +(78,882,l), +(43,882,l), +(43,770,l) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = _top; +pos = (223,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(408,735,l), +(408,863,l), +(249,863,l), +(249,735,l) +); +}, +{ +closed = 1; +nodes = ( +(198,735,l), +(198,863,l), +(39,863,l), +(39,735,l) +); +} +); +width = 446; +}, +{ +anchors = ( +{ +name = _top; +pos = (196,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,770,l), +(311,882,l), +(281,882,l), +(258,770,l) +); +}, +{ +closed = 1; +nodes = ( +(174,770,l), +(199,882,l), +(169,882,l), +(146,770,l) +); +} +); +width = 222; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(504,735,l), +(530,866,l), +(369,866,l), +(343,735,l) +); +}, +{ +closed = 1; +nodes = ( +(298,735,l), +(324,866,l), +(163,866,l), +(137,735,l) +); +} +); +width = 448; +}, +{ +anchors = ( +{ +name = _top; +pos = (225,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(346,770,l), +(369,882,l), +(331,882,l), +(307,770,l) +); +}, +{ +closed = 1; +nodes = ( +(183,770,l), +(207,882,l), +(170,882,l), +(146,770,l) +); +} +); +width = 280; +}, +{ +anchors = ( +{ +name = _top; +pos = (313,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(516,745,l), +(541,864,l), +(382,864,l), +(357,745,l) +); +}, +{ +closed = 1; +nodes = ( +(297,745,l), +(322,864,l), +(163,864,l), +(138,745,l) +); +} +); +width = 458; +}, +{ +anchors = ( +{ +name = _top; +pos = (225,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(346,770,l), +(369,882,l), +(331,882,l), +(307,770,l) +); +}, +{ +closed = 1; +nodes = ( +(183,770,l), +(207,882,l), +(169,882,l), +(146,770,l) +); +} +); +width = 280; +}, +{ +anchors = ( +{ +name = _top; +pos = (340,678); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(568,735,l), +(595,865,l), +(408,865,l), +(381,735,l) +); +}, +{ +closed = 1; +nodes = ( +(322,735,l), +(349,865,l), +(163,865,l), +(136,735,l) +); +} +); +width = 512; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/divide.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/divide.glyph new file mode 100644 index 00000000..e105a638 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/divide.glyph @@ -0,0 +1,727 @@ +{ +glyphname = divide; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(462,291,l), +(462,431,l), +(18,431,l), +(18,291,l) +); +}, +{ +closed = 1; +nodes = ( +(318,115,l), +(318,237,l), +(163,237,l), +(163,115,l) +); +}, +{ +closed = 1; +nodes = ( +(318,485,l), +(318,607,l), +(163,607,l), +(163,485,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,347,l), +(433,375,l), +(47,375,l), +(47,347,l) +); +}, +{ +closed = 1; +nodes = ( +(259,196,l), +(259,250,l), +(221,250,l), +(221,196,l) +); +}, +{ +closed = 1; +nodes = ( +(259,472,l), +(259,526,l), +(221,526,l), +(221,472,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(608,345,l), +(608,377,l), +(113,377,l), +(113,345,l) +); +}, +{ +closed = 1; +nodes = ( +(388,186,l), +(388,240,l), +(332,240,l), +(332,186,l) +); +}, +{ +closed = 1; +nodes = ( +(388,482,l), +(388,536,l), +(332,536,l), +(332,482,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(621,274,l), +(621,448,l), +(100,448,l), +(100,274,l) +); +}, +{ +closed = 1; +nodes = ( +(447,65,l), +(447,212,l), +(265,212,l), +(265,65,l) +); +}, +{ +closed = 1; +nodes = ( +(447,510,l), +(447,657,l), +(265,657,l), +(265,510,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,347,l), +(413,375,l), +(27,375,l), +(27,347,l) +); +}, +{ +closed = 1; +nodes = ( +(239,196,l), +(239,250,l), +(201,250,l), +(201,196,l) +); +}, +{ +closed = 1; +nodes = ( +(239,472,l), +(239,526,l), +(201,526,l), +(201,472,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,291,l), +(452,431,l), +(8,431,l), +(8,291,l) +); +}, +{ +closed = 1; +nodes = ( +(308,115,l), +(308,237,l), +(153,237,l), +(153,115,l) +); +}, +{ +closed = 1; +nodes = ( +(308,485,l), +(308,607,l), +(153,607,l), +(153,485,l) +); +} +); +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(519,345,l), +(519,377,l), +(41,377,l), +(41,345,l) +); +}, +{ +closed = 1; +nodes = ( +(303,184,l), +(303,245,l), +(258,245,l), +(258,184,l) +); +}, +{ +closed = 1; +nodes = ( +(303,477,l), +(303,538,l), +(258,538,l), +(258,477,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +2 +); +stem = -2; +target = ( +2, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,286,l), +(536,435,l), +(23,435,l), +(23,286,l) +); +}, +{ +closed = 1; +nodes = ( +(362,99,l), +(362,231,l), +(197,231,l), +(197,99,l) +); +}, +{ +closed = 1; +nodes = ( +(362,490,l), +(362,623,l), +(197,623,l), +(197,490,l) +); +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(598,345,l), +(598,377,l), +(103,377,l), +(103,345,l) +); +}, +{ +closed = 1; +nodes = ( +(378,186,l), +(378,240,l), +(322,240,l), +(322,186,l) +); +}, +{ +closed = 1; +nodes = ( +(378,482,l), +(378,536,l), +(322,536,l), +(322,482,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(611,274,l), +(611,448,l), +(90,448,l), +(90,274,l) +); +}, +{ +closed = 1; +nodes = ( +(437,65,l), +(437,212,l), +(255,212,l), +(255,65,l) +); +}, +{ +closed = 1; +nodes = ( +(437,510,l), +(437,657,l), +(255,657,l), +(255,510,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(532,345,l), +(532,377,l), +(62,377,l), +(62,345,l) +); +}, +{ +closed = 1; +nodes = ( +(320,184,l), +(320,245,l), +(275,245,l), +(275,184,l) +); +}, +{ +closed = 1; +nodes = ( +(320,477,l), +(320,538,l), +(275,538,l), +(275,477,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +2 +); +stem = -2; +target = ( +2, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(541,286,l), +(541,435,l), +(43,435,l), +(43,286,l) +); +}, +{ +closed = 1; +nodes = ( +(373,99,l), +(373,231,l), +(210,231,l), +(210,99,l) +); +}, +{ +closed = 1; +nodes = ( +(373,490,l), +(373,623,l), +(210,623,l), +(210,490,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(449,347,l), +(455,375,l), +(73,375,l), +(67,347,l) +); +}, +{ +closed = 1; +nodes = ( +(244,196,l), +(256,250,l), +(219,250,l), +(207,196,l) +); +}, +{ +closed = 1; +nodes = ( +(303,472,l), +(314,526,l), +(277,526,l), +(265,472,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,291,l), +(493,431,l), +(54,431,l), +(24,291,l) +); +}, +{ +closed = 1; +nodes = ( +(284,115,l), +(309,237,l), +(156,237,l), +(131,115,l) +); +}, +{ +closed = 1; +nodes = ( +(361,485,l), +(387,607,l), +(234,607,l), +(208,485,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(554,345,l), +(561,377,l), +(88,377,l), +(81,345,l) +); +}, +{ +closed = 1; +nodes = ( +(307,184,l), +(319,245,l), +(275,245,l), +(263,184,l) +); +}, +{ +closed = 1; +nodes = ( +(368,477,l), +(381,538,l), +(336,538,l), +(323,477,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(557,286,l), +(588,435,l), +(80,435,l), +(49,286,l) +); +}, +{ +closed = 1; +nodes = ( +(346,99,l), +(373,231,l), +(210,231,l), +(182,99,l) +); +}, +{ +closed = 1; +nodes = ( +(428,490,l), +(455,623,l), +(292,623,l), +(264,490,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(623,345,l), +(630,377,l), +(140,377,l), +(133,345,l) +); +}, +{ +closed = 1; +nodes = ( +(372,186,l), +(383,240,l), +(327,240,l), +(317,186,l) +); +}, +{ +closed = 1; +nodes = ( +(434,482,l), +(446,536,l), +(390,536,l), +(378,482,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(618,274,l), +(654,448,l), +(139,448,l), +(102,274,l) +); +}, +{ +closed = 1; +nodes = ( +(402,65,l), +(432,212,l), +(252,212,l), +(221,65,l) +); +}, +{ +closed = 1; +nodes = ( +(495,510,l), +(526,657,l), +(346,657,l), +(315,510,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 247; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dollar.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dollar.glyph new file mode 100644 index 00000000..c107c5be --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dollar.glyph @@ -0,0 +1,1470 @@ +{ +glyphname = dollar; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(369,8,o), +(439,74,o), +(439,212,cs), +(439,327,o), +(368,389,o), +(284,438,cs), +(218,476,o), +(199,494,o), +(199,540,cs), +(199,571,o), +(209,590,o), +(235,590,cs), +(264,590,o), +(276,568,o), +(275,504,c), +(433,504,l), +(433,659,o), +(355,722,o), +(232,722,cs), +(108,722,o), +(23,664,o), +(23,527,cs), +(23,410,o), +(88,352,o), +(164,308,cs), +(233,268,o), +(260,246,o), +(260,196,cs), +(260,163,o), +(251,143,o), +(222,143,cs), +(191,143,o), +(174,166,o), +(174,239,c), +(19,239,l), +(19,100,o), +(78,8,o), +(228,8,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,-85,l), +(282,67,l), +(177,67,l), +(177,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(282,643,l), +(282,815,l), +(177,815,l), +(177,643,l) +); +} +); +width = 458; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,10,o), +(355,66,o), +(355,180,cs), +(355,305,o), +(290,342,o), +(218,379,cs), +(149,414,o), +(88,450,o), +(88,556,cs), +(88,635,o), +(117,688,o), +(193,688,cs), +(262,688,o), +(312,656,o), +(313,522,c), +(346,522,l), +(345,639,o), +(310,719,o), +(196,719,cs), +(112,719,o), +(56,666,o), +(56,557,cs), +(56,425,o), +(127,388,o), +(195,354,cs), +(266,318,o), +(322,283,o), +(322,182,cs), +(322,98,o), +(289,40,o), +(204,40,cs), +(126,40,o), +(74,88,o), +(74,232,c), +(40,232,l), +(43,99,o), +(84,10,o), +(206,10,cs) +); +}, +{ +closed = 1; +nodes = ( +(212,-85,l), +(212,20,l), +(184,20,l), +(184,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(212,706,l), +(212,814,l), +(184,814,l), +(184,706,l) +); +} +); +width = 397; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(506,10,o), +(622,74,o), +(622,198,cs), +(622,357,o), +(485,377,o), +(342,397,cs), +(196,417,o), +(102,432,o), +(102,543,cs), +(102,627,o), +(174,685,o), +(325,685,cs), +(464,685,o), +(549,631,o), +(554,521,c), +(595,521,l), +(590,645,o), +(493,719,o), +(326,719,cs), +(170,719,o), +(62,654,o), +(62,540,cs), +(62,400,o), +(185,380,o), +(331,360,cs), +(477,340,o), +(581,323,o), +(581,198,cs), +(581,104,o), +(506,44,o), +(334,44,cs), +(186,44,o), +(91,94,o), +(84,232,c), +(44,232,l), +(50,100,o), +(133,10,o), +(334,10,cs) +); +}, +{ +closed = 1; +nodes = ( +(350,-85,l), +(350,22,l), +(316,22,l), +(316,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(350,700,l), +(350,814,l), +(316,814,l), +(316,700,l) +); +} +); +width = 666; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,9,o), +(703,93,o), +(703,234,cs), +(703,385,o), +(624,435,o), +(399,461,cs), +(285,474,o), +(267,479,o), +(267,518,cs), +(267,550,o), +(298,571,o), +(353,571,cs), +(409,571,o), +(442,552,o), +(450,508,c), +(679,508,l), +(665,648,o), +(541,721,o), +(363,721,cs), +(159,721,o), +(34,641,o), +(34,493,cs), +(34,359,o), +(120,302,o), +(342,276,cs), +(447,264,o), +(468,258,o), +(468,215,cs), +(468,181,o), +(433,162,o), +(372,162,cs), +(294,162,o), +(254,195,o), +(252,243,c), +(17,243,l), +(17,106,o), +(127,9,o), +(362,9,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,-85,l), +(435,79,l), +(285,79,l), +(285,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(435,627,l), +(435,815,l), +(285,815,l), +(285,627,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,10,o), +(335,66,o), +(335,180,cs), +(335,305,o), +(270,342,o), +(198,379,cs), +(129,414,o), +(68,450,o), +(68,556,cs), +(68,635,o), +(97,688,o), +(173,688,cs), +(242,688,o), +(292,656,o), +(293,522,c), +(326,522,l), +(325,639,o), +(290,719,o), +(176,719,cs), +(92,719,o), +(36,666,o), +(36,557,cs), +(36,425,o), +(107,388,o), +(175,354,cs), +(246,318,o), +(302,283,o), +(302,182,cs), +(302,98,o), +(269,40,o), +(184,40,cs), +(106,40,o), +(54,88,o), +(54,232,c), +(20,232,l), +(23,99,o), +(64,10,o), +(186,10,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,-85,l), +(192,20,l), +(164,20,l), +(164,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(192,706,l), +(192,814,l), +(164,814,l), +(164,706,l) +); +} +); +width = 357; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,8,o), +(429,74,o), +(429,212,cs), +(429,327,o), +(358,389,o), +(274,438,cs), +(208,476,o), +(189,494,o), +(189,540,cs), +(189,571,o), +(199,590,o), +(225,590,cs), +(254,590,o), +(266,568,o), +(265,504,c), +(423,504,l), +(423,659,o), +(345,722,o), +(222,722,cs), +(98,722,o), +(13,664,o), +(13,527,cs), +(13,410,o), +(78,352,o), +(154,308,cs), +(223,268,o), +(250,246,o), +(250,196,cs), +(250,163,o), +(241,143,o), +(212,143,cs), +(181,143,o), +(164,166,o), +(164,239,c), +(9,239,l), +(9,100,o), +(68,8,o), +(218,8,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,-85,l), +(272,67,l), +(167,67,l), +(167,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(272,643,l), +(272,815,l), +(167,815,l), +(167,643,l) +); +} +); +width = 438; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,10,o), +(561,84,o), +(561,194,cs), +(561,339,o), +(458,372,o), +(323,396,cs), +(166,425,o), +(105,447,o), +(105,545,cs), +(105,629,o), +(174,685,o), +(295,685,cs), +(422,685,o), +(493,625,o), +(497,521,c), +(537,521,l), +(534,640,o), +(453,719,o), +(299,719,cs), +(151,719,o), +(64,647,o), +(64,540,cs), +(64,421,o), +(150,388,o), +(308,359,cs), +(463,331,o), +(521,293,o), +(521,192,cs), +(521,92,o), +(434,44,o), +(306,44,cs), +(159,44,o), +(92,116,o), +(88,232,c), +(47,232,l), +(50,100,o), +(132,10,o), +(308,10,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,-85,l), +(321,23,l), +(288,23,l), +(288,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(321,699,l), +(321,814,l), +(288,814,l), +(288,699,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +246, +48 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 608; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,8,o), +(621,101,o), +(621,232,cs), +(621,409,o), +(493,440,o), +(381,456,cs), +(255,475,o), +(236,481,o), +(236,521,cs), +(236,553,o), +(267,573,o), +(315,573,cs), +(353,573,o), +(396,561,o), +(399,511,c), +(601,511,l), +(601,638,o), +(487,722,o), +(319,722,cs), +(140,722,o), +(28,637,o), +(28,495,cs), +(28,362,o), +(126,304,o), +(275,282,cs), +(404,264,o), +(412,253,o), +(412,212,cs), +(412,177,o), +(377,160,o), +(326,160,cs), +(248,160,o), +(218,192,o), +(218,239,c), +(14,239,l), +(14,100,o), +(122,8,o), +(316,8,cs) +); +}, +{ +closed = 1; +nodes = ( +(384,-85,l), +(384,82,l), +(252,82,l), +(252,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(384,632,l), +(384,814,l), +(252,814,l), +(252,632,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 635; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(496,10,o), +(612,74,o), +(612,198,cs), +(612,357,o), +(475,377,o), +(332,397,cs), +(186,417,o), +(92,432,o), +(92,543,cs), +(92,627,o), +(164,685,o), +(315,685,cs), +(454,685,o), +(539,631,o), +(544,521,c), +(585,521,l), +(580,645,o), +(483,719,o), +(316,719,cs), +(160,719,o), +(52,654,o), +(52,540,cs), +(52,400,o), +(175,380,o), +(321,360,cs), +(467,340,o), +(571,323,o), +(571,198,cs), +(571,104,o), +(496,44,o), +(324,44,cs), +(176,44,o), +(81,94,o), +(74,232,c), +(34,232,l), +(40,100,o), +(123,10,o), +(324,10,cs) +); +}, +{ +closed = 1; +nodes = ( +(340,-85,l), +(340,22,l), +(306,22,l), +(306,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(340,700,l), +(340,814,l), +(306,814,l), +(306,700,l) +); +} +); +width = 646; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(570,9,o), +(693,93,o), +(693,234,cs), +(693,385,o), +(614,435,o), +(389,461,cs), +(275,474,o), +(257,479,o), +(257,518,cs), +(257,550,o), +(288,571,o), +(343,571,cs), +(399,571,o), +(432,552,o), +(440,508,c), +(669,508,l), +(655,648,o), +(531,721,o), +(353,721,cs), +(149,721,o), +(24,641,o), +(24,493,cs), +(24,359,o), +(110,302,o), +(332,276,cs), +(437,264,o), +(458,258,o), +(458,215,cs), +(458,181,o), +(423,162,o), +(362,162,cs), +(284,162,o), +(244,195,o), +(242,243,c), +(7,243,l), +(7,106,o), +(117,9,o), +(352,9,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,-85,l), +(425,79,l), +(275,79,l), +(275,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(425,627,l), +(425,815,l), +(275,815,l), +(275,627,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(482,10,o), +(572,84,o), +(572,194,cs), +(572,339,o), +(471,372,o), +(340,396,cs), +(185,425,o), +(126,447,o), +(126,545,cs), +(126,629,o), +(193,685,o), +(312,685,cs), +(437,685,o), +(506,625,o), +(510,521,c), +(548,521,l), +(546,640,o), +(466,719,o), +(316,719,cs), +(170,719,o), +(85,647,o), +(85,540,cs), +(85,421,o), +(169,388,o), +(325,359,cs), +(476,331,o), +(534,293,o), +(534,192,cs), +(534,92,o), +(448,44,o), +(323,44,cs), +(178,44,o), +(113,116,o), +(109,232,c), +(68,232,l), +(71,100,o), +(151,10,o), +(325,10,cs) +); +}, +{ +closed = 1; +nodes = ( +(338,-85,l), +(338,23,l), +(305,23,l), +(305,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(338,699,l), +(338,814,l), +(305,814,l), +(305,699,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +246, +48 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 641; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(528,8,o), +(625,101,o), +(625,232,cs), +(625,409,o), +(499,440,o), +(393,456,cs), +(269,475,o), +(253,481,o), +(253,521,cs), +(253,553,o), +(283,573,o), +(327,573,cs), +(361,573,o), +(402,561,o), +(405,511,c), +(606,511,l), +(606,638,o), +(494,722,o), +(331,722,cs), +(156,722,o), +(48,637,o), +(48,495,cs), +(48,362,o), +(142,304,o), +(288,282,cs), +(410,264,o), +(418,253,o), +(418,212,cs), +(418,177,o), +(385,160,o), +(338,160,cs), +(263,160,o), +(236,192,o), +(236,239,c), +(34,239,l), +(34,100,o), +(139,8,o), +(328,8,cs) +); +}, +{ +closed = 1; +nodes = ( +(395,-85,l), +(395,82,l), +(264,82,l), +(264,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(395,632,l), +(395,814,l), +(264,814,l), +(264,632,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 657; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-8,o), +(334,74,o), +(339,200,cs), +(341,265,o), +(309,323,o), +(245,375,cs), +(203,409,o), +(145,450,o), +(148,533,cs), +(151,639,o), +(201,705,o), +(275,705,cs), +(357,705,o), +(390,654,o), +(368,530,c), +(401,530,l), +(423,654,o), +(386,736,o), +(278,736,cs), +(179,736,o), +(124,664,o), +(116,538,cs), +(110,442,o), +(162,399,o), +(214,357,cs), +(257,322,o), +(309,279,o), +(306,202,cs), +(302,89,o), +(251,22,o), +(167,22,cs), +(60,22,o), +(46,111,o), +(68,225,c), +(35,225,l), +(10,86,o), +(40,-8,o), +(167,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,-85,l), +(324,814,l), +(296,814,l), +(107,-85,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,11,o), +(343,95,o), +(343,215,cs), +(343,271,o), +(310,328,o), +(246,376,cs), +(173,432,o), +(145,461,o), +(145,524,cs), +(145,626,o), +(195,688,o), +(271,688,cs), +(353,688,o), +(389,640,o), +(368,523,c), +(401,523,l), +(421,636,o), +(387,719,o), +(274,719,cs), +(155,719,o), +(113,622,o), +(113,519,cs), +(113,442,o), +(149,407,o), +(216,356,cs), +(257,325,o), +(310,284,o), +(310,216,cs), +(310,107,o), +(258,42,o), +(171,42,cs), +(63,42,o), +(47,126,o), +(68,233,c), +(35,233,l), +(9,87,o), +(53,11,o), +(171,11,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,-85,l), +(160,31,l), +(131,31,l), +(107,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(300,697,l), +(324,814,l), +(296,814,l), +(271,697,l) +); +} +); +width = 397; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,9,o), +(398,72,o), +(423,202,cs), +(446,319,o), +(386,380,o), +(318,433,cs), +(262,476,o), +(247,495,o), +(253,537,cs), +(258,573,o), +(273,590,o), +(299,589,cs), +(324,588,o), +(338,570,o), +(326,505,c), +(480,505,l), +(505,646,o), +(442,722,o), +(300,722,cs), +(171,722,o), +(100,653,o), +(78,537,cs), +(58,431,o), +(101,367,o), +(173,312,cs), +(234,265,o), +(253,247,o), +(245,197,cs), +(239,160,o), +(230,144,o), +(194,146,cs), +(163,148,o), +(152,168,o), +(166,239,c), +(11,239,l), +(-14,96,o), +(40,9,o), +(200,9,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,-85,l), +(240,87,l), +(135,87,l), +(100,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(358,657,l), +(391,815,l), +(286,815,l), +(253,657,l) +); +} +); +width = 456; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(460,-10,o), +(572,72,o), +(577,202,cs), +(580,307,o), +(519,360,o), +(379,392,cs), +(242,423,o), +(186,468,o), +(189,547,cs), +(192,642,o), +(278,702,o), +(389,702,cs), +(508,702,o), +(586,634,o), +(583,529,c), +(622,529,l), +(626,660,o), +(533,739,o), +(394,739,cs), +(255,739,o), +(151,663,o), +(147,544,cs), +(143,445,o), +(205,396,o), +(373,355,cs), +(485,328,o), +(539,287,o), +(536,198,cs), +(532,94,o), +(443,26,o), +(312,26,cs), +(179,26,o), +(98,97,o), +(102,224,c), +(63,224,l), +(54,83,o), +(143,-10,o), +(317,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,-85,l), +(452,814,l), +(419,814,l), +(233,-85,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,9,o), +(555,91,o), +(555,212,cs), +(555,314,o), +(502,361,o), +(363,392,cs), +(234,420,o), +(181,462,o), +(181,533,cs), +(181,626,o), +(264,684,o), +(372,684,cs), +(486,684,o), +(561,620,o), +(559,521,c), +(598,521,l), +(602,645,o), +(511,721,o), +(377,721,cs), +(239,721,o), +(139,645,o), +(139,528,cs), +(139,438,o), +(198,393,o), +(356,355,cs), +(466,329,o), +(514,292,o), +(514,210,cs), +(514,115,o), +(429,44,o), +(300,44,cs), +(175,44,o), +(95,109,o), +(98,231,c), +(59,231,l), +(51,97,o), +(137,9,o), +(305,9,cs) +); +}, +{ +closed = 1; +nodes = ( +(252,-85,l), +(276,33,l), +(243,33,l), +(219,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(416,705,l), +(438,814,l), +(405,814,l), +(383,705,l) +); +} +); +width = 633; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,9,o), +(629,104,o), +(629,267,cs), +(629,374,o), +(573,424,o), +(404,462,cs), +(342,476,o), +(312,489,o), +(312,518,cs), +(312,549,o), +(338,567,o), +(383,567,cs), +(433,567,o), +(461,544,o), +(458,503,c), +(663,503,l), +(667,629,o), +(564,721,o), +(399,721,cs), +(232,721,o), +(94,643,o), +(94,482,cs), +(94,380,o), +(160,323,o), +(319,282,cs), +(396,262,o), +(412,255,o), +(412,222,cs), +(412,185,o), +(381,165,o), +(322,165,cs), +(262,165,o), +(224,197,o), +(225,243,c), +(27,243,l), +(19,97,o), +(127,9,o), +(312,9,cs) +); +}, +{ +closed = 1; +nodes = ( +(318,-85,l), +(359,112,l), +(227,112,l), +(186,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(464,622,l), +(504,815,l), +(372,815,l), +(332,622,l) +); +} +); +width = 670; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(520,9,o), +(624,87,o), +(624,218,cs), +(624,337,o), +(514,369,o), +(378,394,cs), +(240,419,o), +(160,447,o), +(160,530,cs), +(160,629,o), +(248,687,o), +(391,687,cs), +(536,687,o), +(624,626,o), +(621,527,c), +(660,527,l), +(663,647,o), +(564,721,o), +(395,721,cs), +(223,721,o), +(120,649,o), +(120,527,cs), +(120,427,o), +(197,384,o), +(375,356,cs), +(531,331,o), +(582,291,o), +(582,211,cs), +(582,104,o), +(498,44,o), +(342,44,cs), +(180,44,o), +(72,110,o), +(77,228,c), +(36,228,l), +(33,95,o), +(140,9,o), +(342,9,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,-85,l), +(305,31,l), +(273,31,l), +(249,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(444,705,l), +(467,814,l), +(435,814,l), +(412,705,l) +); +} +); +width = 679; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(587,7,o), +(710,94,o), +(710,250,cs), +(710,392,o), +(609,435,o), +(443,461,cs), +(348,476,o), +(318,485,o), +(318,518,cs), +(318,550,o), +(347,569,o), +(404,569,cs), +(462,569,o), +(506,547,o), +(509,507,c), +(737,507,l), +(737,633,o), +(609,723,o), +(408,723,cs), +(226,723,o), +(77,646,o), +(77,483,cs), +(77,372,o), +(159,307,o), +(336,277,cs), +(442,259,o), +(471,250,o), +(471,219,cs), +(471,185,o), +(445,163,o), +(373,163,cs), +(283,163,o), +(244,198,o), +(246,242,c), +(11,242,l), +(5,100,o), +(133,7,o), +(359,7,cs) +); +}, +{ +closed = 1; +nodes = ( +(356,-85,l), +(390,82,l), +(240,82,l), +(206,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(507,646,l), +(542,815,l), +(392,815,l), +(357,646,l) +); +} +); +width = 734; +} +); +unicode = 36; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dotaccent.glyph new file mode 100644 index 00000000..119f219c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dotaccent.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = dotaccent; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 126; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 268; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 144; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 316; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 86; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 248; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 104; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = dotaccentcomb; +} +); +width = 244; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 124; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 296; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 147; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 265; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 127; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 266; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 143; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 282; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 143; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 322; +} +); +unicode = 729; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dotaccentcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dotaccentcomb.glyph new file mode 100644 index 00000000..3c1ead6f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dotaccentcomb.glyph @@ -0,0 +1,535 @@ +{ +glyphname = dotaccentcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (63,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,772,o), +(86,781,o), +(86,795,cs), +(86,809,o), +(76,818,o), +(63,818,cs), +(50,818,o), +(40,809,o), +(40,795,cs), +(40,781,o), +(50,772,o), +(63,772,cs) +); +} +); +width = 126; +}, +{ +anchors = ( +{ +name = _top; +pos = (134,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,723,o), +(228,752,o), +(228,805,cs), +(228,858,o), +(187,888,o), +(134,888,cs), +(81,888,o), +(40,858,o), +(40,805,cs), +(40,752,o), +(81,723,o), +(134,723,cs) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = _top; +pos = (72,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,780,o), +(104,793,o), +(104,811,cs), +(104,829,o), +(91,842,o), +(72,842,cs), +(53,842,o), +(40,829,o), +(40,811,cs), +(40,793,o), +(53,780,o), +(72,780,cs) +); +} +); +width = 144; +}, +{ +anchors = ( +{ +name = _top; +pos = (158,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,715,o), +(276,742,o), +(276,799,cs), +(276,849,o), +(238,883,o), +(158,883,cs), +(87,883,o), +(40,856,o), +(40,799,cs), +(40,749,o), +(78,715,o), +(158,715,cs) +); +} +); +width = 316; +}, +{ +anchors = ( +{ +name = _top; +pos = (43,667); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(58,756,o), +(68,767,o), +(68,783,cs), +(68,799,o), +(58,810,o), +(43,810,cs), +(28,810,o), +(18,799,o), +(18,783,cs), +(18,767,o), +(28,756,o), +(43,756,cs) +); +} +); +width = 86; +}, +{ +anchors = ( +{ +name = _top; +pos = (124,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,698,o), +(222,738,o), +(222,795,cs), +(222,852,o), +(181,894,o), +(124,894,cs), +(67,894,o), +(26,852,o), +(26,795,cs), +(26,738,o), +(67,698,o), +(124,698,cs) +); +} +); +width = 248; +}, +{ +anchors = ( +{ +name = _top; +pos = (52,667); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,771,o), +(87,786,o), +(87,806,cs), +(87,826,o), +(72,841,o), +(52,841,cs), +(32,841,o), +(17,826,o), +(17,806,cs), +(17,786,o), +(32,771,o), +(52,771,cs) +); +} +); +width = 104; +}, +{ +anchors = ( +{ +name = _top; +pos = (116,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,709,o), +(225,751,o), +(225,809,cs), +(225,867,o), +(179,909,o), +(116,909,cs), +(53,909,o), +(7,867,o), +(7,809,cs), +(7,751,o), +(53,709,o), +(116,709,cs) +); +} +); +width = 232; +}, +{ +anchors = ( +{ +name = _top; +pos = (62,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(83,777,o), +(97,790,o), +(97,810,cs), +(97,830,o), +(83,843,o), +(62,843,cs), +(41,843,o), +(27,830,o), +(27,810,cs), +(27,790,o), +(41,777,o), +(62,777,cs) +); +} +); +width = 124; +}, +{ +anchors = ( +{ +name = _top; +pos = (148,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,701,o), +(274,737,o), +(274,792,cs), +(274,847,o), +(225,883,o), +(148,883,cs), +(71,883,o), +(22,847,o), +(22,792,cs), +(22,737,o), +(71,701,o), +(148,701,cs) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = _top; +pos = (73,650); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(94,780,o), +(109,795,o), +(109,816,cs), +(109,837,o), +(94,852,o), +(73,852,cs), +(53,852,o), +(39,837,o), +(39,816,cs), +(39,795,o), +(53,780,o), +(73,780,cs) +); +} +); +width = 147; +}, +{ +anchors = ( +{ +name = _top; +pos = (133,664); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(192,717,o), +(236,759,o), +(236,816,cs), +(236,872,o), +(192,913,o), +(133,913,cs), +(74,913,o), +(31,872,o), +(31,816,cs), +(31,759,o), +(74,717,o), +(133,717,cs) +); +} +); +width = 265; +}, +{ +anchors = ( +{ +name = _top; +pos = (154,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,772,o), +(198,781,o), +(198,795,cs), +(198,809,o), +(188,818,o), +(175,818,cs), +(162,818,o), +(152,809,o), +(152,795,cs), +(152,781,o), +(162,772,o), +(175,772,cs) +); +} +); +width = 127; +}, +{ +anchors = ( +{ +name = _top; +pos = (218,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,723,o), +(336,758,o), +(336,810,cs), +(336,857,o), +(305,888,o), +(251,888,cs), +(191,888,o), +(152,853,o), +(152,801,cs), +(152,754,o), +(183,723,o), +(237,723,cs) +); +} +); +width = 266; +}, +{ +anchors = ( +{ +name = _top; +pos = (157,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,780,o), +(217,794,o), +(217,813,cs), +(217,831,o), +(204,842,o), +(188,842,cs), +(168,842,o), +(155,828,o), +(155,809,cs), +(155,791,o), +(168,780,o), +(184,780,cs) +); +} +); +width = 143; +}, +{ +anchors = ( +{ +name = _top; +pos = (225,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,723,o), +(351,758,o), +(351,810,cs), +(351,857,o), +(318,889,o), +(258,889,cs), +(194,889,o), +(152,854,o), +(152,802,cs), +(152,755,o), +(185,723,o), +(245,723,cs) +); +} +); +width = 282; +}, +{ +anchors = ( +{ +name = _top; +pos = (157,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,780,o), +(217,794,o), +(217,813,cs), +(217,831,o), +(204,842,o), +(188,842,cs), +(168,842,o), +(155,828,o), +(155,809,cs), +(155,791,o), +(168,780,o), +(184,780,cs) +); +} +); +width = 143; +}, +{ +anchors = ( +{ +name = _top; +pos = (244,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,715,o), +(390,748,o), +(390,806,cs), +(390,854,o), +(353,883,o), +(277,883,cs), +(196,883,o), +(150,850,o), +(150,792,cs), +(150,744,o), +(187,715,o), +(263,715,cs) +); +} +); +width = 322; +} +); +metricRight = "=|"; +unicode = 775; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dotaccentcomb.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dotaccentcomb.ss01.glyph new file mode 100644 index 00000000..76eb6f4c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dotaccentcomb.ss01.glyph @@ -0,0 +1,385 @@ +{ +glyphname = dotaccentcomb.ss01; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (55,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,770,l), +(69,885,l), +(40,885,l), +(40,770,l) +); +} +); +width = 109; +}, +{ +anchors = ( +{ +name = _top; +pos = (129,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,735,l), +(217,866,l), +(40,866,l), +(40,735,l) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = _top; +pos = (59,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,770,l), +(77,884,l), +(40,884,l), +(40,770,l) +); +} +); +width = 117; +}, +{ +anchors = ( +{ +name = _top; +pos = (151,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,729,l), +(261,858,l), +(40,858,l), +(40,729,l) +); +} +); +width = 301; +}, +{ +anchors = ( +{ +name = _top; +pos = (35,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,770,l), +(49,885,l), +(20,885,l), +(20,770,l) +); +} +); +width = 69; +}, +{ +anchors = ( +{ +name = _top; +pos = (119,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,735,l), +(207,866,l), +(30,866,l), +(30,735,l) +); +} +); +width = 237; +}, +{ +anchors = ( +{ +name = _top; +pos = (39,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(57,768,l), +(57,884,l), +(20,884,l), +(20,768,l) +); +} +); +width = 77; +}, +{ +anchors = ( +{ +name = _top; +pos = (115,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,735,l), +(210,863,l), +(19,863,l), +(19,735,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = _top; +pos = (49,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(67,770,l), +(67,884,l), +(30,884,l), +(30,770,l) +); +} +); +width = 97; +}, +{ +anchors = ( +{ +name = _top; +pos = (141,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,729,l), +(251,858,l), +(30,858,l), +(30,729,l) +); +} +); +width = 281; +}, +{ +anchors = ( +{ +name = _top; +pos = (60,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(78,799,l), +(78,915,l), +(43,915,l), +(43,799,l) +); +} +); +width = 120; +}, +{ +anchors = ( +{ +name = _top; +pos = (134,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(229,740,l), +(229,893,l), +(39,893,l), +(39,740,l) +); +} +); +width = 266; +}, +{ +anchors = ( +{ +name = _top; +pos = (140,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,770,l), +(199,885,l), +(170,885,l), +(146,770,l) +); +} +); +width = 109; +}, +{ +anchors = ( +{ +name = _top; +pos = (212,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,735,l), +(339,866,l), +(163,866,l), +(136,735,l) +); +} +); +width = 256; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,770,l), +(206,884,l), +(170,884,l), +(146,770,l) +); +} +); +width = 116; +}, +{ +anchors = ( +{ +name = _top; +pos = (220,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,745,l), +(355,863,l), +(163,863,l), +(138,745,l) +); +} +); +width = 273; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,770,l), +(206,884,l), +(170,884,l), +(146,770,l) +); +} +); +width = 116; +}, +{ +anchors = ( +{ +name = _top; +pos = (235,678); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,735,l), +(382,864,l), +(163,864,l), +(137,735,l) +); +} +); +width = 300; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dotbelowcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dotbelowcomb.glyph new file mode 100644 index 00000000..deef4b60 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dotbelowcomb.glyph @@ -0,0 +1,530 @@ +{ +glyphname = dotbelowcomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (63,0); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,-115,o), +(86,-106,o), +(86,-92,cs), +(86,-78,o), +(76,-69,o), +(63,-69,cs), +(50,-69,o), +(40,-78,o), +(40,-92,cs), +(40,-106,o), +(50,-115,o), +(63,-115,cs) +); +} +); +width = 126; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (118,0); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,-177,o), +(196,-151,o), +(196,-104,cs), +(196,-57,o), +(161,-30,o), +(117,-30,cs), +(73,-30,o), +(40,-57,o), +(40,-104,cs), +(40,-151,o), +(73,-177,o), +(117,-177,cs) +); +} +); +width = 236; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (72,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,-151,o), +(104,-138,o), +(104,-120,cs), +(104,-102,o), +(91,-89,o), +(72,-89,cs), +(53,-89,o), +(40,-102,o), +(40,-120,cs), +(40,-138,o), +(53,-151,o), +(72,-151,cs) +); +} +); +width = 144; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (153,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-209,o), +(266,-179,o), +(266,-125,cs), +(266,-75,o), +(225,-41,o), +(153,-41,cs), +(85,-41,o), +(40,-71,o), +(40,-125,cs), +(40,-175,o), +(81,-209,o), +(153,-209,cs) +); +} +); +width = 306; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (43,0); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,-115,o), +(66,-106,o), +(66,-92,cs), +(66,-78,o), +(56,-69,o), +(43,-69,cs), +(30,-69,o), +(20,-78,o), +(20,-92,cs), +(20,-106,o), +(30,-115,o), +(43,-115,cs) +); +} +); +width = 86; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (108,0); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,-177,o), +(186,-151,o), +(186,-104,cs), +(186,-57,o), +(151,-30,o), +(107,-30,cs), +(63,-30,o), +(30,-57,o), +(30,-104,cs), +(30,-151,o), +(63,-177,o), +(107,-177,cs) +); +} +); +width = 216; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (52,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(71,-141,o), +(84,-128,o), +(84,-110,cs), +(84,-92,o), +(71,-79,o), +(52,-79,cs), +(33,-79,o), +(20,-92,o), +(20,-110,cs), +(20,-128,o), +(33,-141,o), +(52,-141,cs) +); +} +); +width = 104; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (104,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(150,-196,o), +(189,-168,o), +(189,-118,cs), +(189,-68,o), +(150,-40,o), +(104,-40,cs), +(58,-40,o), +(19,-68,o), +(19,-118,cs), +(19,-168,o), +(58,-196,o), +(104,-196,cs) +); +} +); +width = 208; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (62,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,-151,o), +(94,-138,o), +(94,-120,cs), +(94,-102,o), +(81,-89,o), +(62,-89,cs), +(43,-89,o), +(30,-102,o), +(30,-120,cs), +(30,-138,o), +(43,-151,o), +(62,-151,cs) +); +} +); +width = 124; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (143,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-209,o), +(256,-179,o), +(256,-125,cs), +(256,-75,o), +(215,-41,o), +(143,-41,cs), +(75,-41,o), +(30,-71,o), +(30,-125,cs), +(30,-175,o), +(71,-209,o), +(143,-209,cs) +); +} +); +width = 286; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (73,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-141,o), +(105,-128,o), +(105,-110,cs), +(105,-92,o), +(92,-79,o), +(73,-79,cs), +(54,-79,o), +(43,-92,o), +(43,-110,cs), +(43,-128,o), +(54,-141,o), +(73,-141,cs) +); +} +); +width = 147; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (121,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(164,-196,o), +(203,-168,o), +(203,-118,cs), +(203,-68,o), +(164,-40,o), +(121,-40,cs), +(77,-40,o), +(39,-68,o), +(39,-118,cs), +(39,-168,o), +(77,-196,o), +(121,-196,cs) +); +} +); +width = 241; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (10,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(4,-115,o), +(14,-106,o), +(14,-92,cs), +(14,-78,o), +(4,-69,o), +(-9,-69,cs), +(-22,-69,o), +(-32,-78,o), +(-32,-92,cs), +(-32,-106,o), +(-22,-115,o), +(-9,-115,cs) +); +} +); +width = 127; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (65,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,-177,o), +(124,-146,o), +(124,-100,cs), +(124,-58,o), +(93,-30,o), +(50,-30,cs), +(-1,-30,o), +(-36,-61,o), +(-36,-107,cs), +(-36,-149,o), +(-5,-177,o), +(38,-177,cs) +); +} +); +width = 243; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (18,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(13,-141,o), +(26,-127,o), +(26,-108,cs), +(26,-90,o), +(13,-79,o), +(-3,-79,cs), +(-23,-79,o), +(-36,-93,o), +(-36,-112,cs), +(-36,-130,o), +(-23,-141,o), +(-7,-141,cs) +); +} +); +width = 143; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (71,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(94,-196,o), +(133,-163,o), +(133,-114,cs), +(133,-71,o), +(101,-40,o), +(52,-40,cs), +(-2,-40,o), +(-40,-73,o), +(-40,-122,cs), +(-40,-165,o), +(-8,-196,o), +(40,-196,cs) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (17,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(10,-147,o), +(23,-136,o), +(23,-117,cs), +(23,-100,o), +(11,-89,o), +(-6,-89,cs), +(-24,-89,o), +(-37,-100,o), +(-37,-119,cs), +(-37,-136,o), +(-25,-147,o), +(-8,-147,cs) +); +} +); +width = 142; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (97,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-207,o), +(183,-174,o), +(183,-119,cs), +(183,-72,o), +(145,-41,o), +(77,-41,cs), +(6,-41,o), +(-41,-74,o), +(-41,-129,cs), +(-41,-176,o), +(-3,-207,o), +(65,-207,cs) +); +} +); +width = 306; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 803; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dotbelowcomb.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dotbelowcomb.ss01.glyph new file mode 100644 index 00000000..562c9201 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dotbelowcomb.ss01.glyph @@ -0,0 +1,385 @@ +{ +glyphname = dotbelowcomb.ss01; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (55,0); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,-120,l), +(69,-75,l), +(40,-75,l), +(40,-120,l) +); +} +); +width = 109; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (129,0); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,-171,l), +(217,-40,l), +(40,-40,l), +(40,-171,l) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (59,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,-148,l), +(77,-94,l), +(40,-94,l), +(40,-148,l) +); +} +); +width = 117; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (141,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,-170,l), +(241,-41,l), +(40,-41,l), +(40,-170,l) +); +} +); +width = 281; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (35,0); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,-120,l), +(49,-75,l), +(20,-75,l), +(20,-120,l) +); +} +); +width = 69; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (119,0); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,-171,l), +(207,-40,l), +(30,-40,l), +(30,-171,l) +); +} +); +width = 237; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (39,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(57,-140,l), +(57,-84,l), +(20,-84,l), +(20,-140,l) +); +} +); +width = 77; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (115,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,-178,l), +(210,-50,l), +(19,-50,l), +(19,-178,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (49,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(67,-148,l), +(67,-94,l), +(30,-94,l), +(30,-148,l) +); +} +); +width = 97; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (131,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-170,l), +(231,-41,l), +(30,-41,l), +(30,-170,l) +); +} +); +width = 261; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (60,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(78,-140,l), +(78,-84,l), +(43,-84,l), +(43,-140,l) +); +} +); +width = 120; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (134,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(229,-178,l), +(229,-50,l), +(39,-50,l), +(39,-178,l) +); +} +); +width = 266; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (2,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-9,-120,l), +(1,-75,l), +(-28,-75,l), +(-38,-120,l) +); +} +); +width = 110; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (74,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(126,-171,l), +(154,-40,l), +(-23,-40,l), +(-51,-171,l) +); +} +); +width = 258; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (5,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-6,-140,l), +(6,-84,l), +(-31,-84,l), +(-43,-140,l) +); +} +); +width = 117; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (80,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,-178,l), +(164,-50,l), +(-27,-50,l), +(-53,-178,l) +); +} +); +width = 271; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (6,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-7,-148,l), +(5,-94,l), +(-32,-94,l), +(-44,-148,l) +); +} +); +width = 118; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (83,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,-180,l), +(172,-51,l), +(-27,-51,l), +(-53,-180,l) +); +} +); +width = 280; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/dottedC_ircle.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/dottedC_ircle.glyph new file mode 100644 index 00000000..a0bd6f98 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/dottedC_ircle.glyph @@ -0,0 +1,4184 @@ +{ +glyphname = dottedCircle; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (365,0); +}, +{ +name = center; +pos = (365,365); +}, +{ +name = ogonek; +pos = (365,0); +}, +{ +name = top; +pos = (365,729); +}, +{ +name = topright; +pos = (365,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,589,o), +(410,608,o), +(410,634,cs), +(410,660,o), +(391,679,o), +(365,679,cs), +(339,679,o), +(320,660,o), +(320,634,cs), +(320,608,o), +(339,589,o), +(365,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,553,o), +(545,572,o), +(545,598,cs), +(545,624,o), +(526,643,o), +(500,643,cs), +(474,643,o), +(455,624,o), +(455,598,cs), +(455,572,o), +(474,553,o), +(500,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(625,454,o), +(644,473,o), +(644,499,cs), +(644,525,o), +(625,544,o), +(599,544,cs), +(573,544,o), +(554,525,o), +(554,499,cs), +(554,473,o), +(573,454,o), +(599,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(661,320,o), +(680,338,o), +(680,365,cs), +(680,391,o), +(661,409,o), +(635,409,cs), +(609,409,o), +(590,391,o), +(590,365,cs), +(590,338,o), +(609,320,o), +(635,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(625,185,o), +(644,204,o), +(644,230,cs), +(644,256,o), +(625,275,o), +(599,275,cs), +(573,275,o), +(554,256,o), +(554,230,cs), +(554,204,o), +(573,185,o), +(599,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,86,o), +(545,105,o), +(545,131,cs), +(545,157,o), +(526,176,o), +(500,176,cs), +(474,176,o), +(455,157,o), +(455,131,cs), +(455,105,o), +(474,86,o), +(500,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(391,50,o), +(410,69,o), +(410,95,cs), +(410,121,o), +(391,140,o), +(365,140,cs), +(339,140,o), +(320,121,o), +(320,95,cs), +(320,69,o), +(339,50,o), +(365,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,86,o), +(275,105,o), +(275,131,cs), +(275,157,o), +(256,176,o), +(230,176,cs), +(204,176,o), +(185,157,o), +(185,131,cs), +(185,105,o), +(204,86,o), +(230,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,185,o), +(176,204,o), +(176,230,cs), +(176,256,o), +(157,275,o), +(131,275,cs), +(105,275,o), +(86,256,o), +(86,230,cs), +(86,204,o), +(105,185,o), +(131,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,320,o), +(140,338,o), +(140,365,cs), +(140,391,o), +(121,409,o), +(95,409,cs), +(69,409,o), +(50,391,o), +(50,365,cs), +(50,338,o), +(69,320,o), +(95,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,454,o), +(176,473,o), +(176,499,cs), +(176,525,o), +(157,544,o), +(131,544,cs), +(105,544,o), +(86,525,o), +(86,499,cs), +(86,473,o), +(105,454,o), +(131,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,553,o), +(275,572,o), +(275,598,cs), +(275,624,o), +(256,643,o), +(230,643,cs), +(204,643,o), +(185,624,o), +(185,598,cs), +(185,572,o), +(204,553,o), +(230,553,cs) +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +pos = (365,0); +}, +{ +name = center; +pos = (365,365); +}, +{ +name = ogonek; +pos = (365,0); +}, +{ +name = top; +pos = (365,729); +}, +{ +name = topright; +pos = (365,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,589,o), +(410,608,o), +(410,634,cs), +(410,660,o), +(391,679,o), +(365,679,cs), +(339,679,o), +(320,660,o), +(320,634,cs), +(320,608,o), +(339,589,o), +(365,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,553,o), +(545,572,o), +(545,598,cs), +(545,624,o), +(526,643,o), +(500,643,cs), +(474,643,o), +(455,624,o), +(455,598,cs), +(455,572,o), +(474,553,o), +(500,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(625,454,o), +(644,473,o), +(644,499,cs), +(644,525,o), +(625,544,o), +(599,544,cs), +(573,544,o), +(554,525,o), +(554,499,cs), +(554,473,o), +(573,454,o), +(599,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(661,320,o), +(680,338,o), +(680,365,cs), +(680,391,o), +(661,409,o), +(635,409,cs), +(609,409,o), +(590,391,o), +(590,365,cs), +(590,338,o), +(609,320,o), +(635,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(625,185,o), +(644,204,o), +(644,230,cs), +(644,256,o), +(625,275,o), +(599,275,cs), +(573,275,o), +(554,256,o), +(554,230,cs), +(554,204,o), +(573,185,o), +(599,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,86,o), +(545,105,o), +(545,131,cs), +(545,157,o), +(526,176,o), +(500,176,cs), +(474,176,o), +(455,157,o), +(455,131,cs), +(455,105,o), +(474,86,o), +(500,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(391,50,o), +(410,69,o), +(410,95,cs), +(410,121,o), +(391,140,o), +(365,140,cs), +(339,140,o), +(320,121,o), +(320,95,cs), +(320,69,o), +(339,50,o), +(365,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,86,o), +(275,105,o), +(275,131,cs), +(275,157,o), +(256,176,o), +(230,176,cs), +(204,176,o), +(185,157,o), +(185,131,cs), +(185,105,o), +(204,86,o), +(230,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,185,o), +(176,204,o), +(176,230,cs), +(176,256,o), +(157,275,o), +(131,275,cs), +(105,275,o), +(86,256,o), +(86,230,cs), +(86,204,o), +(105,185,o), +(131,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,320,o), +(140,338,o), +(140,365,cs), +(140,391,o), +(121,409,o), +(95,409,cs), +(69,409,o), +(50,391,o), +(50,365,cs), +(50,338,o), +(69,320,o), +(95,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,454,o), +(176,473,o), +(176,499,cs), +(176,525,o), +(157,544,o), +(131,544,cs), +(105,544,o), +(86,525,o), +(86,499,cs), +(86,473,o), +(105,454,o), +(131,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,553,o), +(275,572,o), +(275,598,cs), +(275,624,o), +(256,643,o), +(230,643,cs), +(204,643,o), +(185,624,o), +(185,598,cs), +(185,572,o), +(204,553,o), +(230,553,cs) +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +pos = (365,0); +}, +{ +name = center; +pos = (365,365); +}, +{ +name = ogonek; +pos = (365,0); +}, +{ +name = top; +pos = (365,729); +}, +{ +name = topright; +pos = (365,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,589,o), +(410,608,o), +(410,634,cs), +(410,660,o), +(391,679,o), +(365,679,cs), +(339,679,o), +(320,660,o), +(320,634,cs), +(320,608,o), +(339,589,o), +(365,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,553,o), +(545,572,o), +(545,598,cs), +(545,624,o), +(526,643,o), +(500,643,cs), +(474,643,o), +(455,624,o), +(455,598,cs), +(455,572,o), +(474,553,o), +(500,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(625,454,o), +(644,473,o), +(644,499,cs), +(644,525,o), +(625,544,o), +(599,544,cs), +(573,544,o), +(554,525,o), +(554,499,cs), +(554,473,o), +(573,454,o), +(599,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(661,320,o), +(680,338,o), +(680,365,cs), +(680,391,o), +(661,409,o), +(635,409,cs), +(609,409,o), +(590,391,o), +(590,365,cs), +(590,338,o), +(609,320,o), +(635,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(625,185,o), +(644,204,o), +(644,230,cs), +(644,256,o), +(625,275,o), +(599,275,cs), +(573,275,o), +(554,256,o), +(554,230,cs), +(554,204,o), +(573,185,o), +(599,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,86,o), +(545,105,o), +(545,131,cs), +(545,157,o), +(526,176,o), +(500,176,cs), +(474,176,o), +(455,157,o), +(455,131,cs), +(455,105,o), +(474,86,o), +(500,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(391,50,o), +(410,69,o), +(410,95,cs), +(410,121,o), +(391,140,o), +(365,140,cs), +(339,140,o), +(320,121,o), +(320,95,cs), +(320,69,o), +(339,50,o), +(365,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,86,o), +(275,105,o), +(275,131,cs), +(275,157,o), +(256,176,o), +(230,176,cs), +(204,176,o), +(185,157,o), +(185,131,cs), +(185,105,o), +(204,86,o), +(230,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,185,o), +(176,204,o), +(176,230,cs), +(176,256,o), +(157,275,o), +(131,275,cs), +(105,275,o), +(86,256,o), +(86,230,cs), +(86,204,o), +(105,185,o), +(131,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,320,o), +(140,338,o), +(140,365,cs), +(140,391,o), +(121,409,o), +(95,409,cs), +(69,409,o), +(50,391,o), +(50,365,cs), +(50,338,o), +(69,320,o), +(95,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,454,o), +(176,473,o), +(176,499,cs), +(176,525,o), +(157,544,o), +(131,544,cs), +(105,544,o), +(86,525,o), +(86,499,cs), +(86,473,o), +(105,454,o), +(131,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,553,o), +(275,572,o), +(275,598,cs), +(275,624,o), +(256,643,o), +(230,643,cs), +(204,643,o), +(185,624,o), +(185,598,cs), +(185,572,o), +(204,553,o), +(230,553,cs) +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +pos = (365,0); +}, +{ +name = center; +pos = (365,365); +}, +{ +name = ogonek; +pos = (365,0); +}, +{ +name = top; +pos = (365,729); +}, +{ +name = topright; +pos = (365,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,589,o), +(410,608,o), +(410,634,cs), +(410,660,o), +(391,679,o), +(365,679,cs), +(339,679,o), +(320,660,o), +(320,634,cs), +(320,608,o), +(339,589,o), +(365,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,553,o), +(545,572,o), +(545,598,cs), +(545,624,o), +(526,643,o), +(500,643,cs), +(474,643,o), +(455,624,o), +(455,598,cs), +(455,572,o), +(474,553,o), +(500,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(625,454,o), +(644,473,o), +(644,499,cs), +(644,525,o), +(625,544,o), +(599,544,cs), +(573,544,o), +(554,525,o), +(554,499,cs), +(554,473,o), +(573,454,o), +(599,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(661,320,o), +(680,338,o), +(680,365,cs), +(680,391,o), +(661,409,o), +(635,409,cs), +(609,409,o), +(590,391,o), +(590,365,cs), +(590,338,o), +(609,320,o), +(635,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(625,185,o), +(644,204,o), +(644,230,cs), +(644,256,o), +(625,275,o), +(599,275,cs), +(573,275,o), +(554,256,o), +(554,230,cs), +(554,204,o), +(573,185,o), +(599,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,86,o), +(545,105,o), +(545,131,cs), +(545,157,o), +(526,176,o), +(500,176,cs), +(474,176,o), +(455,157,o), +(455,131,cs), +(455,105,o), +(474,86,o), +(500,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(391,50,o), +(410,69,o), +(410,95,cs), +(410,121,o), +(391,140,o), +(365,140,cs), +(339,140,o), +(320,121,o), +(320,95,cs), +(320,69,o), +(339,50,o), +(365,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,86,o), +(275,105,o), +(275,131,cs), +(275,157,o), +(256,176,o), +(230,176,cs), +(204,176,o), +(185,157,o), +(185,131,cs), +(185,105,o), +(204,86,o), +(230,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,185,o), +(176,204,o), +(176,230,cs), +(176,256,o), +(157,275,o), +(131,275,cs), +(105,275,o), +(86,256,o), +(86,230,cs), +(86,204,o), +(105,185,o), +(131,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,320,o), +(140,338,o), +(140,365,cs), +(140,391,o), +(121,409,o), +(95,409,cs), +(69,409,o), +(50,391,o), +(50,365,cs), +(50,338,o), +(69,320,o), +(95,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,454,o), +(176,473,o), +(176,499,cs), +(176,525,o), +(157,544,o), +(131,544,cs), +(105,544,o), +(86,525,o), +(86,499,cs), +(86,473,o), +(105,454,o), +(131,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,553,o), +(275,572,o), +(275,598,cs), +(275,624,o), +(256,643,o), +(230,643,cs), +(204,643,o), +(185,624,o), +(185,598,cs), +(185,572,o), +(204,553,o), +(230,553,cs) +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = center; +pos = (345,365); +}, +{ +name = ogonek; +pos = (345,0); +}, +{ +name = top; +pos = (345,729); +}, +{ +name = topright; +pos = (345,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,589,o), +(390,608,o), +(390,634,cs), +(390,660,o), +(371,679,o), +(345,679,cs), +(319,679,o), +(300,660,o), +(300,634,cs), +(300,608,o), +(319,589,o), +(345,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(506,553,o), +(525,572,o), +(525,598,cs), +(525,624,o), +(506,643,o), +(480,643,cs), +(454,643,o), +(435,624,o), +(435,598,cs), +(435,572,o), +(454,553,o), +(480,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(605,454,o), +(624,473,o), +(624,499,cs), +(624,525,o), +(605,544,o), +(579,544,cs), +(553,544,o), +(534,525,o), +(534,499,cs), +(534,473,o), +(553,454,o), +(579,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(641,320,o), +(660,338,o), +(660,365,cs), +(660,391,o), +(641,409,o), +(615,409,cs), +(589,409,o), +(570,391,o), +(570,365,cs), +(570,338,o), +(589,320,o), +(615,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(605,185,o), +(624,204,o), +(624,230,cs), +(624,256,o), +(605,275,o), +(579,275,cs), +(553,275,o), +(534,256,o), +(534,230,cs), +(534,204,o), +(553,185,o), +(579,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(506,86,o), +(525,105,o), +(525,131,cs), +(525,157,o), +(506,176,o), +(480,176,cs), +(454,176,o), +(435,157,o), +(435,131,cs), +(435,105,o), +(454,86,o), +(480,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,50,o), +(390,69,o), +(390,95,cs), +(390,121,o), +(371,140,o), +(345,140,cs), +(319,140,o), +(300,121,o), +(300,95,cs), +(300,69,o), +(319,50,o), +(345,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,86,o), +(255,105,o), +(255,131,cs), +(255,157,o), +(236,176,o), +(210,176,cs), +(184,176,o), +(165,157,o), +(165,131,cs), +(165,105,o), +(184,86,o), +(210,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(137,185,o), +(156,204,o), +(156,230,cs), +(156,256,o), +(137,275,o), +(111,275,cs), +(85,275,o), +(66,256,o), +(66,230,cs), +(66,204,o), +(85,185,o), +(111,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,320,o), +(120,338,o), +(120,365,cs), +(120,391,o), +(101,409,o), +(75,409,cs), +(49,409,o), +(30,391,o), +(30,365,cs), +(30,338,o), +(49,320,o), +(75,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(137,454,o), +(156,473,o), +(156,499,cs), +(156,525,o), +(137,544,o), +(111,544,cs), +(85,544,o), +(66,525,o), +(66,499,cs), +(66,473,o), +(85,454,o), +(111,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,553,o), +(255,572,o), +(255,598,cs), +(255,624,o), +(236,643,o), +(210,643,cs), +(184,643,o), +(165,624,o), +(165,598,cs), +(165,572,o), +(184,553,o), +(210,553,cs) +); +} +); +width = 690; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = center; +pos = (355,365); +}, +{ +name = ogonek; +pos = (355,0); +}, +{ +name = top; +pos = (355,729); +}, +{ +name = topright; +pos = (355,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,589,o), +(400,608,o), +(400,634,cs), +(400,660,o), +(381,679,o), +(355,679,cs), +(329,679,o), +(310,660,o), +(310,634,cs), +(310,608,o), +(329,589,o), +(355,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,553,o), +(535,572,o), +(535,598,cs), +(535,624,o), +(516,643,o), +(490,643,cs), +(464,643,o), +(445,624,o), +(445,598,cs), +(445,572,o), +(464,553,o), +(490,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(615,454,o), +(634,473,o), +(634,499,cs), +(634,525,o), +(615,544,o), +(589,544,cs), +(563,544,o), +(544,525,o), +(544,499,cs), +(544,473,o), +(563,454,o), +(589,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,320,o), +(670,338,o), +(670,365,cs), +(670,391,o), +(651,409,o), +(625,409,cs), +(599,409,o), +(580,391,o), +(580,365,cs), +(580,338,o), +(599,320,o), +(625,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(615,185,o), +(634,204,o), +(634,230,cs), +(634,256,o), +(615,275,o), +(589,275,cs), +(563,275,o), +(544,256,o), +(544,230,cs), +(544,204,o), +(563,185,o), +(589,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,86,o), +(535,105,o), +(535,131,cs), +(535,157,o), +(516,176,o), +(490,176,cs), +(464,176,o), +(445,157,o), +(445,131,cs), +(445,105,o), +(464,86,o), +(490,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,50,o), +(400,69,o), +(400,95,cs), +(400,121,o), +(381,140,o), +(355,140,cs), +(329,140,o), +(310,121,o), +(310,95,cs), +(310,69,o), +(329,50,o), +(355,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,86,o), +(265,105,o), +(265,131,cs), +(265,157,o), +(246,176,o), +(220,176,cs), +(194,176,o), +(175,157,o), +(175,131,cs), +(175,105,o), +(194,86,o), +(220,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,185,o), +(166,204,o), +(166,230,cs), +(166,256,o), +(147,275,o), +(121,275,cs), +(95,275,o), +(76,256,o), +(76,230,cs), +(76,204,o), +(95,185,o), +(121,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,320,o), +(130,338,o), +(130,365,cs), +(130,391,o), +(111,409,o), +(85,409,cs), +(59,409,o), +(40,391,o), +(40,365,cs), +(40,338,o), +(59,320,o), +(85,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,454,o), +(166,473,o), +(166,499,cs), +(166,525,o), +(147,544,o), +(121,544,cs), +(95,544,o), +(76,525,o), +(76,499,cs), +(76,473,o), +(95,454,o), +(121,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,553,o), +(265,572,o), +(265,598,cs), +(265,624,o), +(246,643,o), +(220,643,cs), +(194,643,o), +(175,624,o), +(175,598,cs), +(175,572,o), +(194,553,o), +(220,553,cs) +); +} +); +width = 710; +}, +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = center; +pos = (345,365); +}, +{ +name = ogonek; +pos = (345,0); +}, +{ +name = top; +pos = (345,729); +}, +{ +name = topright; +pos = (345,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,589,o), +(390,608,o), +(390,634,cs), +(390,660,o), +(371,679,o), +(345,679,cs), +(319,679,o), +(300,660,o), +(300,634,cs), +(300,608,o), +(319,589,o), +(345,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(506,553,o), +(525,572,o), +(525,598,cs), +(525,624,o), +(506,643,o), +(480,643,cs), +(454,643,o), +(435,624,o), +(435,598,cs), +(435,572,o), +(454,553,o), +(480,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(605,454,o), +(624,473,o), +(624,499,cs), +(624,525,o), +(605,544,o), +(579,544,cs), +(553,544,o), +(534,525,o), +(534,499,cs), +(534,473,o), +(553,454,o), +(579,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(641,320,o), +(660,338,o), +(660,365,cs), +(660,391,o), +(641,409,o), +(615,409,cs), +(589,409,o), +(570,391,o), +(570,365,cs), +(570,338,o), +(589,320,o), +(615,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(605,185,o), +(624,204,o), +(624,230,cs), +(624,256,o), +(605,275,o), +(579,275,cs), +(553,275,o), +(534,256,o), +(534,230,cs), +(534,204,o), +(553,185,o), +(579,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(506,86,o), +(525,105,o), +(525,131,cs), +(525,157,o), +(506,176,o), +(480,176,cs), +(454,176,o), +(435,157,o), +(435,131,cs), +(435,105,o), +(454,86,o), +(480,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,50,o), +(390,69,o), +(390,95,cs), +(390,121,o), +(371,140,o), +(345,140,cs), +(319,140,o), +(300,121,o), +(300,95,cs), +(300,69,o), +(319,50,o), +(345,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,86,o), +(255,105,o), +(255,131,cs), +(255,157,o), +(236,176,o), +(210,176,cs), +(184,176,o), +(165,157,o), +(165,131,cs), +(165,105,o), +(184,86,o), +(210,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(137,185,o), +(156,204,o), +(156,230,cs), +(156,256,o), +(137,275,o), +(111,275,cs), +(85,275,o), +(66,256,o), +(66,230,cs), +(66,204,o), +(85,185,o), +(111,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,320,o), +(120,338,o), +(120,365,cs), +(120,391,o), +(101,409,o), +(75,409,cs), +(49,409,o), +(30,391,o), +(30,365,cs), +(30,338,o), +(49,320,o), +(75,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(137,454,o), +(156,473,o), +(156,499,cs), +(156,525,o), +(137,544,o), +(111,544,cs), +(85,544,o), +(66,525,o), +(66,499,cs), +(66,473,o), +(85,454,o), +(111,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,553,o), +(255,572,o), +(255,598,cs), +(255,624,o), +(236,643,o), +(210,643,cs), +(184,643,o), +(165,624,o), +(165,598,cs), +(165,572,o), +(184,553,o), +(210,553,cs) +); +} +); +width = 690; +}, +{ +anchors = ( +{ +name = bottom; +pos = (344,0); +}, +{ +name = center; +pos = (344,365); +}, +{ +name = ogonek; +pos = (344,0); +}, +{ +name = top; +pos = (344,729); +}, +{ +name = topright; +pos = (344,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,589,o), +(389,608,o), +(389,634,cs), +(389,660,o), +(370,679,o), +(344,679,cs), +(318,679,o), +(299,660,o), +(299,634,cs), +(299,608,o), +(318,589,o), +(344,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(505,553,o), +(524,572,o), +(524,598,cs), +(524,624,o), +(505,643,o), +(479,643,cs), +(453,643,o), +(434,624,o), +(434,598,cs), +(434,572,o), +(453,553,o), +(479,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(604,454,o), +(623,473,o), +(623,499,cs), +(623,525,o), +(604,544,o), +(578,544,cs), +(552,544,o), +(533,525,o), +(533,499,cs), +(533,473,o), +(552,454,o), +(578,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(640,320,o), +(659,338,o), +(659,365,cs), +(659,391,o), +(640,409,o), +(614,409,cs), +(588,409,o), +(569,391,o), +(569,365,cs), +(569,338,o), +(588,320,o), +(614,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(604,185,o), +(623,204,o), +(623,230,cs), +(623,256,o), +(604,275,o), +(578,275,cs), +(552,275,o), +(533,256,o), +(533,230,cs), +(533,204,o), +(552,185,o), +(578,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(505,86,o), +(524,105,o), +(524,131,cs), +(524,157,o), +(505,176,o), +(479,176,cs), +(453,176,o), +(434,157,o), +(434,131,cs), +(434,105,o), +(453,86,o), +(479,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,50,o), +(389,69,o), +(389,95,cs), +(389,121,o), +(370,140,o), +(344,140,cs), +(318,140,o), +(299,121,o), +(299,95,cs), +(299,69,o), +(318,50,o), +(344,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,86,o), +(254,105,o), +(254,131,cs), +(254,157,o), +(235,176,o), +(209,176,cs), +(183,176,o), +(164,157,o), +(164,131,cs), +(164,105,o), +(183,86,o), +(209,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,185,o), +(155,204,o), +(155,230,cs), +(155,256,o), +(136,275,o), +(110,275,cs), +(84,275,o), +(65,256,o), +(65,230,cs), +(65,204,o), +(84,185,o), +(110,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(100,320,o), +(119,338,o), +(119,365,cs), +(119,391,o), +(100,409,o), +(74,409,cs), +(48,409,o), +(29,391,o), +(29,365,cs), +(29,338,o), +(48,320,o), +(74,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,454,o), +(155,473,o), +(155,499,cs), +(155,525,o), +(136,544,o), +(110,544,cs), +(84,544,o), +(65,525,o), +(65,499,cs), +(65,473,o), +(84,454,o), +(110,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,553,o), +(254,572,o), +(254,598,cs), +(254,624,o), +(235,643,o), +(209,643,cs), +(183,643,o), +(164,624,o), +(164,598,cs), +(164,572,o), +(183,553,o), +(209,553,cs) +); +} +); +width = 688; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = center; +pos = (355,365); +}, +{ +name = ogonek; +pos = (355,0); +}, +{ +name = top; +pos = (355,729); +}, +{ +name = topright; +pos = (355,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,589,o), +(400,608,o), +(400,634,cs), +(400,660,o), +(381,679,o), +(355,679,cs), +(329,679,o), +(310,660,o), +(310,634,cs), +(310,608,o), +(329,589,o), +(355,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,553,o), +(535,572,o), +(535,598,cs), +(535,624,o), +(516,643,o), +(490,643,cs), +(464,643,o), +(445,624,o), +(445,598,cs), +(445,572,o), +(464,553,o), +(490,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(615,454,o), +(634,473,o), +(634,499,cs), +(634,525,o), +(615,544,o), +(589,544,cs), +(563,544,o), +(544,525,o), +(544,499,cs), +(544,473,o), +(563,454,o), +(589,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,320,o), +(670,338,o), +(670,365,cs), +(670,391,o), +(651,409,o), +(625,409,cs), +(599,409,o), +(580,391,o), +(580,365,cs), +(580,338,o), +(599,320,o), +(625,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(615,185,o), +(634,204,o), +(634,230,cs), +(634,256,o), +(615,275,o), +(589,275,cs), +(563,275,o), +(544,256,o), +(544,230,cs), +(544,204,o), +(563,185,o), +(589,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,86,o), +(535,105,o), +(535,131,cs), +(535,157,o), +(516,176,o), +(490,176,cs), +(464,176,o), +(445,157,o), +(445,131,cs), +(445,105,o), +(464,86,o), +(490,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,50,o), +(400,69,o), +(400,95,cs), +(400,121,o), +(381,140,o), +(355,140,cs), +(329,140,o), +(310,121,o), +(310,95,cs), +(310,69,o), +(329,50,o), +(355,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,86,o), +(265,105,o), +(265,131,cs), +(265,157,o), +(246,176,o), +(220,176,cs), +(194,176,o), +(175,157,o), +(175,131,cs), +(175,105,o), +(194,86,o), +(220,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,185,o), +(166,204,o), +(166,230,cs), +(166,256,o), +(147,275,o), +(121,275,cs), +(95,275,o), +(76,256,o), +(76,230,cs), +(76,204,o), +(95,185,o), +(121,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,320,o), +(130,338,o), +(130,365,cs), +(130,391,o), +(111,409,o), +(85,409,cs), +(59,409,o), +(40,391,o), +(40,365,cs), +(40,338,o), +(59,320,o), +(85,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,454,o), +(166,473,o), +(166,499,cs), +(166,525,o), +(147,544,o), +(121,544,cs), +(95,544,o), +(76,525,o), +(76,499,cs), +(76,473,o), +(95,454,o), +(121,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,553,o), +(265,572,o), +(265,598,cs), +(265,624,o), +(246,643,o), +(220,643,cs), +(194,643,o), +(175,624,o), +(175,598,cs), +(175,572,o), +(194,553,o), +(220,553,cs) +); +} +); +width = 710; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = center; +pos = (355,365); +}, +{ +name = ogonek; +pos = (355,0); +}, +{ +name = top; +pos = (355,729); +}, +{ +name = topright; +pos = (355,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,589,o), +(400,608,o), +(400,634,cs), +(400,660,o), +(381,679,o), +(355,679,cs), +(329,679,o), +(310,660,o), +(310,634,cs), +(310,608,o), +(329,589,o), +(355,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,553,o), +(535,572,o), +(535,598,cs), +(535,624,o), +(516,643,o), +(490,643,cs), +(464,643,o), +(445,624,o), +(445,598,cs), +(445,572,o), +(464,553,o), +(490,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(615,454,o), +(634,473,o), +(634,499,cs), +(634,525,o), +(615,544,o), +(589,544,cs), +(563,544,o), +(544,525,o), +(544,499,cs), +(544,473,o), +(563,454,o), +(589,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,320,o), +(670,338,o), +(670,365,cs), +(670,391,o), +(651,409,o), +(625,409,cs), +(599,409,o), +(580,391,o), +(580,365,cs), +(580,338,o), +(599,320,o), +(625,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(615,185,o), +(634,204,o), +(634,230,cs), +(634,256,o), +(615,275,o), +(589,275,cs), +(563,275,o), +(544,256,o), +(544,230,cs), +(544,204,o), +(563,185,o), +(589,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,86,o), +(535,105,o), +(535,131,cs), +(535,157,o), +(516,176,o), +(490,176,cs), +(464,176,o), +(445,157,o), +(445,131,cs), +(445,105,o), +(464,86,o), +(490,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,50,o), +(400,69,o), +(400,95,cs), +(400,121,o), +(381,140,o), +(355,140,cs), +(329,140,o), +(310,121,o), +(310,95,cs), +(310,69,o), +(329,50,o), +(355,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,86,o), +(265,105,o), +(265,131,cs), +(265,157,o), +(246,176,o), +(220,176,cs), +(194,176,o), +(175,157,o), +(175,131,cs), +(175,105,o), +(194,86,o), +(220,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,185,o), +(166,204,o), +(166,230,cs), +(166,256,o), +(147,275,o), +(121,275,cs), +(95,275,o), +(76,256,o), +(76,230,cs), +(76,204,o), +(95,185,o), +(121,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,320,o), +(130,338,o), +(130,365,cs), +(130,391,o), +(111,409,o), +(85,409,cs), +(59,409,o), +(40,391,o), +(40,365,cs), +(40,338,o), +(59,320,o), +(85,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,454,o), +(166,473,o), +(166,499,cs), +(166,525,o), +(147,544,o), +(121,544,cs), +(95,544,o), +(76,525,o), +(76,499,cs), +(76,473,o), +(95,454,o), +(121,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,553,o), +(265,572,o), +(265,598,cs), +(265,624,o), +(246,643,o), +(220,643,cs), +(194,643,o), +(175,624,o), +(175,598,cs), +(175,572,o), +(194,553,o), +(220,553,cs) +); +} +); +width = 710; +}, +{ +anchors = ( +{ +name = bottom; +pos = (360,0); +}, +{ +name = center; +pos = (360,365); +}, +{ +name = ogonek; +pos = (360,0); +}, +{ +name = top; +pos = (360,729); +}, +{ +name = topright; +pos = (360,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(386,589,o), +(405,608,o), +(405,634,cs), +(405,660,o), +(386,679,o), +(360,679,cs), +(336,679,o), +(317,660,o), +(317,634,cs), +(317,608,o), +(336,589,o), +(360,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,553,o), +(538,572,o), +(538,598,cs), +(538,624,o), +(519,643,o), +(493,643,cs), +(467,643,o), +(448,624,o), +(448,598,cs), +(448,572,o), +(467,553,o), +(493,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(616,454,o), +(635,473,o), +(635,499,cs), +(635,525,o), +(616,544,o), +(590,544,cs), +(564,544,o), +(546,525,o), +(546,499,cs), +(546,473,o), +(564,454,o), +(590,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(650,320,o), +(669,338,o), +(669,365,cs), +(669,391,o), +(650,409,o), +(626,409,cs), +(600,409,o), +(581,391,o), +(581,365,cs), +(581,338,o), +(600,320,o), +(626,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(616,185,o), +(635,204,o), +(635,230,cs), +(635,256,o), +(616,275,o), +(590,275,cs), +(564,275,o), +(546,256,o), +(546,230,cs), +(546,204,o), +(564,185,o), +(590,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,86,o), +(538,105,o), +(538,131,cs), +(538,157,o), +(519,176,o), +(493,176,cs), +(467,176,o), +(448,157,o), +(448,131,cs), +(448,105,o), +(467,86,o), +(493,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(386,50,o), +(405,69,o), +(405,95,cs), +(405,121,o), +(386,140,o), +(360,140,cs), +(336,140,o), +(317,121,o), +(317,95,cs), +(317,69,o), +(336,50,o), +(360,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(253,86,o), +(272,105,o), +(272,131,cs), +(272,157,o), +(253,176,o), +(229,176,cs), +(203,176,o), +(184,157,o), +(184,131,cs), +(184,105,o), +(203,86,o), +(229,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,185,o), +(175,204,o), +(175,230,cs), +(175,256,o), +(156,275,o), +(132,275,cs), +(106,275,o), +(87,256,o), +(87,230,cs), +(87,204,o), +(106,185,o), +(132,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,320,o), +(141,338,o), +(141,365,cs), +(141,391,o), +(122,409,o), +(96,409,cs), +(70,409,o), +(52,391,o), +(52,365,cs), +(52,338,o), +(70,320,o), +(96,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,454,o), +(175,473,o), +(175,499,cs), +(175,525,o), +(156,544,o), +(132,544,cs), +(106,544,o), +(87,525,o), +(87,499,cs), +(87,473,o), +(106,454,o), +(132,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(253,553,o), +(272,572,o), +(272,598,cs), +(272,624,o), +(253,643,o), +(229,643,cs), +(203,643,o), +(184,624,o), +(184,598,cs), +(184,572,o), +(203,553,o), +(229,553,cs) +); +} +); +width = 721; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = center; +pos = (355,365); +}, +{ +name = ogonek; +pos = (355,0); +}, +{ +name = top; +pos = (355,729); +}, +{ +name = topright; +pos = (355,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(380,589,o), +(399,608,o), +(399,634,cs), +(399,660,o), +(380,679,o), +(355,679,cs), +(331,679,o), +(312,660,o), +(312,634,cs), +(312,608,o), +(331,589,o), +(355,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(512,553,o), +(531,572,o), +(531,598,cs), +(531,624,o), +(512,643,o), +(487,643,cs), +(462,643,o), +(444,624,o), +(444,598,cs), +(444,572,o), +(462,553,o), +(487,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(609,454,o), +(628,473,o), +(628,499,cs), +(628,525,o), +(609,544,o), +(583,544,cs), +(558,544,o), +(540,525,o), +(540,499,cs), +(540,473,o), +(558,454,o), +(583,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(644,320,o), +(662,338,o), +(662,365,cs), +(662,391,o), +(644,409,o), +(619,409,cs), +(593,409,o), +(574,391,o), +(574,365,cs), +(574,338,o), +(593,320,o), +(619,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(609,185,o), +(628,204,o), +(628,230,cs), +(628,256,o), +(609,275,o), +(583,275,cs), +(558,275,o), +(540,256,o), +(540,230,cs), +(540,204,o), +(558,185,o), +(583,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(512,86,o), +(531,105,o), +(531,131,cs), +(531,157,o), +(512,176,o), +(487,176,cs), +(462,176,o), +(444,157,o), +(444,131,cs), +(444,105,o), +(462,86,o), +(487,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,50,o), +(399,69,o), +(399,95,cs), +(399,121,o), +(380,140,o), +(355,140,cs), +(331,140,o), +(312,121,o), +(312,95,cs), +(312,69,o), +(331,50,o), +(355,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,86,o), +(267,105,o), +(267,131,cs), +(267,157,o), +(248,176,o), +(224,176,cs), +(199,176,o), +(180,157,o), +(180,131,cs), +(180,105,o), +(199,86,o), +(224,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,185,o), +(171,204,o), +(171,230,cs), +(171,256,o), +(152,275,o), +(128,275,cs), +(102,275,o), +(83,256,o), +(83,230,cs), +(83,204,o), +(102,185,o), +(128,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(118,320,o), +(137,338,o), +(137,365,cs), +(137,391,o), +(118,409,o), +(92,409,cs), +(67,409,o), +(49,391,o), +(49,365,cs), +(49,338,o), +(67,320,o), +(92,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,454,o), +(171,473,o), +(171,499,cs), +(171,525,o), +(152,544,o), +(128,544,cs), +(102,544,o), +(83,525,o), +(83,499,cs), +(83,473,o), +(102,454,o), +(128,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,553,o), +(267,572,o), +(267,598,cs), +(267,624,o), +(248,643,o), +(224,643,cs), +(199,643,o), +(180,624,o), +(180,598,cs), +(180,572,o), +(199,553,o), +(224,553,cs) +); +} +); +width = 710; +}, +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = center; +pos = (388,365); +}, +{ +name = ogonek; +pos = (313,0); +}, +{ +name = top; +pos = (463,729); +}, +{ +name = topright; +pos = (463,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,589,o), +(433,608,o), +(433,634,cs), +(433,660,o), +(414,679,o), +(388,679,cs), +(362,679,o), +(343,660,o), +(343,634,cs), +(343,608,o), +(362,589,o), +(388,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(549,553,o), +(568,572,o), +(568,598,cs), +(568,624,o), +(549,643,o), +(523,643,cs), +(497,643,o), +(478,624,o), +(478,598,cs), +(478,572,o), +(497,553,o), +(523,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(648,454,o), +(667,473,o), +(667,499,cs), +(667,525,o), +(648,544,o), +(622,544,cs), +(596,544,o), +(577,525,o), +(577,499,cs), +(577,473,o), +(596,454,o), +(622,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(684,320,o), +(703,338,o), +(703,365,cs), +(703,391,o), +(684,409,o), +(658,409,cs), +(632,409,o), +(613,391,o), +(613,365,cs), +(613,338,o), +(632,320,o), +(658,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(648,185,o), +(667,204,o), +(667,230,cs), +(667,256,o), +(648,275,o), +(622,275,cs), +(596,275,o), +(577,256,o), +(577,230,cs), +(577,204,o), +(596,185,o), +(622,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(549,86,o), +(568,105,o), +(568,131,cs), +(568,157,o), +(549,176,o), +(523,176,cs), +(497,176,o), +(478,157,o), +(478,131,cs), +(478,105,o), +(497,86,o), +(523,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(414,50,o), +(433,69,o), +(433,95,cs), +(433,121,o), +(414,140,o), +(388,140,cs), +(362,140,o), +(343,121,o), +(343,95,cs), +(343,69,o), +(362,50,o), +(388,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,86,o), +(298,105,o), +(298,131,cs), +(298,157,o), +(279,176,o), +(253,176,cs), +(227,176,o), +(208,157,o), +(208,131,cs), +(208,105,o), +(227,86,o), +(253,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,185,o), +(199,204,o), +(199,230,cs), +(199,256,o), +(180,275,o), +(154,275,cs), +(128,275,o), +(109,256,o), +(109,230,cs), +(109,204,o), +(128,185,o), +(154,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,320,o), +(163,338,o), +(163,365,cs), +(163,391,o), +(144,409,o), +(118,409,cs), +(92,409,o), +(73,391,o), +(73,365,cs), +(73,338,o), +(92,320,o), +(118,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,454,o), +(199,473,o), +(199,499,cs), +(199,525,o), +(180,544,o), +(154,544,cs), +(128,544,o), +(109,525,o), +(109,499,cs), +(109,473,o), +(128,454,o), +(154,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,553,o), +(298,572,o), +(298,598,cs), +(298,624,o), +(279,643,o), +(253,643,cs), +(227,643,o), +(208,624,o), +(208,598,cs), +(208,572,o), +(227,553,o), +(253,553,cs) +); +} +); +width = 732; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = center; +pos = (386,365); +}, +{ +name = ogonek; +pos = (311,0); +}, +{ +name = top; +pos = (461,729); +}, +{ +name = topright; +pos = (461,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,589,o), +(431,608,o), +(431,634,cs), +(431,660,o), +(412,679,o), +(386,679,cs), +(360,679,o), +(341,660,o), +(341,634,cs), +(341,608,o), +(360,589,o), +(386,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(547,553,o), +(566,572,o), +(566,598,cs), +(566,624,o), +(547,643,o), +(521,643,cs), +(495,643,o), +(476,624,o), +(476,598,cs), +(476,572,o), +(495,553,o), +(521,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(646,454,o), +(665,473,o), +(665,499,cs), +(665,525,o), +(646,544,o), +(620,544,cs), +(594,544,o), +(575,525,o), +(575,499,cs), +(575,473,o), +(594,454,o), +(620,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(682,320,o), +(701,338,o), +(701,365,cs), +(701,391,o), +(682,409,o), +(656,409,cs), +(630,409,o), +(611,391,o), +(611,365,cs), +(611,338,o), +(630,320,o), +(656,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(646,185,o), +(665,204,o), +(665,230,cs), +(665,256,o), +(646,275,o), +(620,275,cs), +(594,275,o), +(575,256,o), +(575,230,cs), +(575,204,o), +(594,185,o), +(620,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(547,86,o), +(566,105,o), +(566,131,cs), +(566,157,o), +(547,176,o), +(521,176,cs), +(495,176,o), +(476,157,o), +(476,131,cs), +(476,105,o), +(495,86,o), +(521,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(412,50,o), +(431,69,o), +(431,95,cs), +(431,121,o), +(412,140,o), +(386,140,cs), +(360,140,o), +(341,121,o), +(341,95,cs), +(341,69,o), +(360,50,o), +(386,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,86,o), +(296,105,o), +(296,131,cs), +(296,157,o), +(277,176,o), +(251,176,cs), +(225,176,o), +(206,157,o), +(206,131,cs), +(206,105,o), +(225,86,o), +(251,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(178,185,o), +(197,204,o), +(197,230,cs), +(197,256,o), +(178,275,o), +(152,275,cs), +(126,275,o), +(107,256,o), +(107,230,cs), +(107,204,o), +(126,185,o), +(152,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(142,320,o), +(161,338,o), +(161,365,cs), +(161,391,o), +(142,409,o), +(116,409,cs), +(90,409,o), +(71,391,o), +(71,365,cs), +(71,338,o), +(90,320,o), +(116,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(178,454,o), +(197,473,o), +(197,499,cs), +(197,525,o), +(178,544,o), +(152,544,cs), +(126,544,o), +(107,525,o), +(107,499,cs), +(107,473,o), +(126,454,o), +(152,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,553,o), +(296,572,o), +(296,598,cs), +(296,624,o), +(277,643,o), +(251,643,cs), +(225,643,o), +(206,624,o), +(206,598,cs), +(206,572,o), +(225,553,o), +(251,553,cs) +); +} +); +width = 733; +}, +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = center; +pos = (388,365); +}, +{ +name = ogonek; +pos = (313,0); +}, +{ +name = top; +pos = (463,729); +}, +{ +name = topright; +pos = (463,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,589,o), +(433,608,o), +(433,634,cs), +(433,660,o), +(414,679,o), +(388,679,cs), +(362,679,o), +(343,660,o), +(343,634,cs), +(343,608,o), +(362,589,o), +(388,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(549,553,o), +(568,572,o), +(568,598,cs), +(568,624,o), +(549,643,o), +(523,643,cs), +(497,643,o), +(478,624,o), +(478,598,cs), +(478,572,o), +(497,553,o), +(523,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(648,454,o), +(667,473,o), +(667,499,cs), +(667,525,o), +(648,544,o), +(622,544,cs), +(596,544,o), +(577,525,o), +(577,499,cs), +(577,473,o), +(596,454,o), +(622,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(684,320,o), +(703,338,o), +(703,365,cs), +(703,391,o), +(684,409,o), +(658,409,cs), +(632,409,o), +(613,391,o), +(613,365,cs), +(613,338,o), +(632,320,o), +(658,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(648,185,o), +(667,204,o), +(667,230,cs), +(667,256,o), +(648,275,o), +(622,275,cs), +(596,275,o), +(577,256,o), +(577,230,cs), +(577,204,o), +(596,185,o), +(622,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(549,86,o), +(568,105,o), +(568,131,cs), +(568,157,o), +(549,176,o), +(523,176,cs), +(497,176,o), +(478,157,o), +(478,131,cs), +(478,105,o), +(497,86,o), +(523,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(414,50,o), +(433,69,o), +(433,95,cs), +(433,121,o), +(414,140,o), +(388,140,cs), +(362,140,o), +(343,121,o), +(343,95,cs), +(343,69,o), +(362,50,o), +(388,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,86,o), +(298,105,o), +(298,131,cs), +(298,157,o), +(279,176,o), +(253,176,cs), +(227,176,o), +(208,157,o), +(208,131,cs), +(208,105,o), +(227,86,o), +(253,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,185,o), +(199,204,o), +(199,230,cs), +(199,256,o), +(180,275,o), +(154,275,cs), +(128,275,o), +(109,256,o), +(109,230,cs), +(109,204,o), +(128,185,o), +(154,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,320,o), +(163,338,o), +(163,365,cs), +(163,391,o), +(144,409,o), +(118,409,cs), +(92,409,o), +(73,391,o), +(73,365,cs), +(73,338,o), +(92,320,o), +(118,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,454,o), +(199,473,o), +(199,499,cs), +(199,525,o), +(180,544,o), +(154,544,cs), +(128,544,o), +(109,525,o), +(109,499,cs), +(109,473,o), +(128,454,o), +(154,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,553,o), +(298,572,o), +(298,598,cs), +(298,624,o), +(279,643,o), +(253,643,cs), +(227,643,o), +(208,624,o), +(208,598,cs), +(208,572,o), +(227,553,o), +(253,553,cs) +); +} +); +width = 732; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (385,365); +}, +{ +name = ogonek; +pos = (310,0); +}, +{ +name = top; +pos = (460,729); +}, +{ +name = topright; +pos = (460,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(411,589,o), +(430,608,o), +(430,634,cs), +(430,660,o), +(411,679,o), +(385,679,cs), +(359,679,o), +(340,660,o), +(340,634,cs), +(340,608,o), +(359,589,o), +(385,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(546,553,o), +(565,572,o), +(565,598,cs), +(565,624,o), +(546,643,o), +(520,643,cs), +(494,643,o), +(475,624,o), +(475,598,cs), +(475,572,o), +(494,553,o), +(520,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(645,454,o), +(664,473,o), +(664,499,cs), +(664,525,o), +(645,544,o), +(619,544,cs), +(593,544,o), +(574,525,o), +(574,499,cs), +(574,473,o), +(593,454,o), +(619,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(681,320,o), +(700,338,o), +(700,365,cs), +(700,391,o), +(681,409,o), +(655,409,cs), +(629,409,o), +(610,391,o), +(610,365,cs), +(610,338,o), +(629,320,o), +(655,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(645,185,o), +(664,204,o), +(664,230,cs), +(664,256,o), +(645,275,o), +(619,275,cs), +(593,275,o), +(574,256,o), +(574,230,cs), +(574,204,o), +(593,185,o), +(619,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(546,86,o), +(565,105,o), +(565,131,cs), +(565,157,o), +(546,176,o), +(520,176,cs), +(494,176,o), +(475,157,o), +(475,131,cs), +(475,105,o), +(494,86,o), +(520,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(411,50,o), +(430,69,o), +(430,95,cs), +(430,121,o), +(411,140,o), +(385,140,cs), +(359,140,o), +(340,121,o), +(340,95,cs), +(340,69,o), +(359,50,o), +(385,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,86,o), +(295,105,o), +(295,131,cs), +(295,157,o), +(276,176,o), +(250,176,cs), +(224,176,o), +(205,157,o), +(205,131,cs), +(205,105,o), +(224,86,o), +(250,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,185,o), +(196,204,o), +(196,230,cs), +(196,256,o), +(177,275,o), +(151,275,cs), +(125,275,o), +(106,256,o), +(106,230,cs), +(106,204,o), +(125,185,o), +(151,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(141,320,o), +(160,338,o), +(160,365,cs), +(160,391,o), +(141,409,o), +(115,409,cs), +(89,409,o), +(70,391,o), +(70,365,cs), +(70,338,o), +(89,320,o), +(115,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,454,o), +(196,473,o), +(196,499,cs), +(196,525,o), +(177,544,o), +(151,544,cs), +(125,544,o), +(106,525,o), +(106,499,cs), +(106,473,o), +(125,454,o), +(151,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,553,o), +(295,572,o), +(295,598,cs), +(295,624,o), +(276,643,o), +(250,643,cs), +(224,643,o), +(205,624,o), +(205,598,cs), +(205,572,o), +(224,553,o), +(250,553,cs) +); +} +); +width = 732; +}, +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = center; +pos = (388,365); +}, +{ +name = ogonek; +pos = (313,0); +}, +{ +name = top; +pos = (463,729); +}, +{ +name = topright; +pos = (463,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,589,o), +(433,608,o), +(433,634,cs), +(433,660,o), +(414,679,o), +(388,679,cs), +(362,679,o), +(343,660,o), +(343,634,cs), +(343,608,o), +(362,589,o), +(388,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(549,553,o), +(568,572,o), +(568,598,cs), +(568,624,o), +(549,643,o), +(523,643,cs), +(497,643,o), +(478,624,o), +(478,598,cs), +(478,572,o), +(497,553,o), +(523,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(648,454,o), +(667,473,o), +(667,499,cs), +(667,525,o), +(648,544,o), +(622,544,cs), +(596,544,o), +(577,525,o), +(577,499,cs), +(577,473,o), +(596,454,o), +(622,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(684,320,o), +(703,338,o), +(703,365,cs), +(703,391,o), +(684,409,o), +(658,409,cs), +(632,409,o), +(613,391,o), +(613,365,cs), +(613,338,o), +(632,320,o), +(658,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(648,185,o), +(667,204,o), +(667,230,cs), +(667,256,o), +(648,275,o), +(622,275,cs), +(596,275,o), +(577,256,o), +(577,230,cs), +(577,204,o), +(596,185,o), +(622,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(549,86,o), +(568,105,o), +(568,131,cs), +(568,157,o), +(549,176,o), +(523,176,cs), +(497,176,o), +(478,157,o), +(478,131,cs), +(478,105,o), +(497,86,o), +(523,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(414,50,o), +(433,69,o), +(433,95,cs), +(433,121,o), +(414,140,o), +(388,140,cs), +(362,140,o), +(343,121,o), +(343,95,cs), +(343,69,o), +(362,50,o), +(388,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,86,o), +(298,105,o), +(298,131,cs), +(298,157,o), +(279,176,o), +(253,176,cs), +(227,176,o), +(208,157,o), +(208,131,cs), +(208,105,o), +(227,86,o), +(253,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,185,o), +(199,204,o), +(199,230,cs), +(199,256,o), +(180,275,o), +(154,275,cs), +(128,275,o), +(109,256,o), +(109,230,cs), +(109,204,o), +(128,185,o), +(154,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,320,o), +(163,338,o), +(163,365,cs), +(163,391,o), +(144,409,o), +(118,409,cs), +(92,409,o), +(73,391,o), +(73,365,cs), +(73,338,o), +(92,320,o), +(118,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,454,o), +(199,473,o), +(199,499,cs), +(199,525,o), +(180,544,o), +(154,544,cs), +(128,544,o), +(109,525,o), +(109,499,cs), +(109,473,o), +(128,454,o), +(154,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,553,o), +(298,572,o), +(298,598,cs), +(298,624,o), +(279,643,o), +(253,643,cs), +(227,643,o), +(208,624,o), +(208,598,cs), +(208,572,o), +(227,553,o), +(253,553,cs) +); +} +); +width = 732; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (385,365); +}, +{ +name = ogonek; +pos = (310,0); +}, +{ +name = top; +pos = (460,729); +}, +{ +name = topright; +pos = (460,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(411,589,o), +(430,608,o), +(430,634,cs), +(430,660,o), +(411,679,o), +(385,679,cs), +(359,679,o), +(340,660,o), +(340,634,cs), +(340,608,o), +(359,589,o), +(385,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(546,553,o), +(565,572,o), +(565,598,cs), +(565,624,o), +(546,643,o), +(520,643,cs), +(494,643,o), +(475,624,o), +(475,598,cs), +(475,572,o), +(494,553,o), +(520,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(645,454,o), +(664,473,o), +(664,499,cs), +(664,525,o), +(645,544,o), +(619,544,cs), +(593,544,o), +(574,525,o), +(574,499,cs), +(574,473,o), +(593,454,o), +(619,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(681,320,o), +(700,338,o), +(700,365,cs), +(700,391,o), +(681,409,o), +(655,409,cs), +(629,409,o), +(610,391,o), +(610,365,cs), +(610,338,o), +(629,320,o), +(655,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(645,185,o), +(664,204,o), +(664,230,cs), +(664,256,o), +(645,275,o), +(619,275,cs), +(593,275,o), +(574,256,o), +(574,230,cs), +(574,204,o), +(593,185,o), +(619,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(546,86,o), +(565,105,o), +(565,131,cs), +(565,157,o), +(546,176,o), +(520,176,cs), +(494,176,o), +(475,157,o), +(475,131,cs), +(475,105,o), +(494,86,o), +(520,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(411,50,o), +(430,69,o), +(430,95,cs), +(430,121,o), +(411,140,o), +(385,140,cs), +(359,140,o), +(340,121,o), +(340,95,cs), +(340,69,o), +(359,50,o), +(385,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,86,o), +(295,105,o), +(295,131,cs), +(295,157,o), +(276,176,o), +(250,176,cs), +(224,176,o), +(205,157,o), +(205,131,cs), +(205,105,o), +(224,86,o), +(250,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,185,o), +(196,204,o), +(196,230,cs), +(196,256,o), +(177,275,o), +(151,275,cs), +(125,275,o), +(106,256,o), +(106,230,cs), +(106,204,o), +(125,185,o), +(151,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(141,320,o), +(160,338,o), +(160,365,cs), +(160,391,o), +(141,409,o), +(115,409,cs), +(89,409,o), +(70,391,o), +(70,365,cs), +(70,338,o), +(89,320,o), +(115,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,454,o), +(196,473,o), +(196,499,cs), +(196,525,o), +(177,544,o), +(151,544,cs), +(125,544,o), +(106,525,o), +(106,499,cs), +(106,473,o), +(125,454,o), +(151,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,553,o), +(295,572,o), +(295,598,cs), +(295,624,o), +(276,643,o), +(250,643,cs), +(224,643,o), +(205,624,o), +(205,598,cs), +(205,572,o), +(224,553,o), +(250,553,cs) +); +} +); +width = 732; +} +); +metricLeft = "=50"; +metricRight = "=|"; +unicode = 9676; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/downA_rrow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/downA_rrow.glyph new file mode 100644 index 00000000..0bededa7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/downA_rrow.glyph @@ -0,0 +1,420 @@ +{ +glyphname = downArrow; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,319,l), +(36,408,l), +(36,242,l), +(230,95,l), +(424,242,l), +(424,408,l), +(305,319,l), +(305,634,l), +(155,634,l) +); +} +); +width = 460; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,144,l), +(70,256,l), +(70,219,l), +(238,95,l), +(406,219,l), +(406,256,l), +(253,144,l), +(253,634,l), +(223,634,l) +); +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,151,l), +(62,284,l), +(62,243,l), +(261,95,l), +(460,243,l), +(460,284,l), +(279,151,l), +(279,634,l), +(243,634,l) +); +} +); +width = 523; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,317,l), +(32,408,l), +(32,216,l), +(272,65,l), +(512,216,l), +(512,408,l), +(367,317,l), +(367,654,l), +(177,654,l) +); +} +); +width = 545; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,144,l), +(50,256,l), +(50,219,l), +(218,95,l), +(386,219,l), +(386,256,l), +(233,144,l), +(233,634,l), +(203,634,l) +); +} +); +width = 436; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(145,319,l), +(26,408,l), +(26,242,l), +(220,95,l), +(414,242,l), +(414,408,l), +(295,319,l), +(295,634,l), +(145,634,l) +); +} +); +width = 440; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,151,l), +(53,273,l), +(53,231,l), +(236,95,l), +(419,231,l), +(419,273,l), +(254,151,l), +(254,634,l), +(218,634,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 451; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,293,l), +(32,389,l), +(32,223,l), +(262,74,l), +(492,223,l), +(492,389,l), +(344,293,l), +(344,655,l), +(180,655,l) +); +} +); +width = 524; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,151,l), +(52,284,l), +(52,243,l), +(251,95,l), +(450,243,l), +(450,284,l), +(269,151,l), +(269,634,l), +(233,634,l) +); +} +); +width = 503; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,317,l), +(22,408,l), +(22,216,l), +(262,65,l), +(502,216,l), +(502,408,l), +(357,317,l), +(357,654,l), +(167,654,l) +); +} +); +width = 525; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(237,151,l), +(74,273,l), +(74,231,l), +(253,95,l), +(434,231,l), +(434,273,l), +(271,151,l), +(271,634,l), +(237,634,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 486; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(193,293,l), +(51,389,l), +(51,223,l), +(274,74,l), +(497,223,l), +(497,389,l), +(355,293,l), +(355,655,l), +(193,655,l) +); +} +); +width = 550; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,144,l), +(58,256,l), +(58,219,l), +(226,95,l), +(394,219,l), +(394,256,l), +(241,144,l), +(241,634,l), +(211,634,l) +); +} +); +width = 482; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,319,l), +(18,408,l), +(18,242,l), +(212,95,l), +(406,242,l), +(406,408,l), +(287,319,l), +(287,634,l), +(137,634,l) +); +} +); +width = 590; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,151,l), +(65,273,l), +(65,231,l), +(248,95,l), +(431,231,l), +(431,273,l), +(266,151,l), +(266,634,l), +(230,634,l) +); +} +); +width = 500; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,293,l), +(67,389,l), +(67,223,l), +(297,74,l), +(527,223,l), +(527,389,l), +(379,293,l), +(379,655,l), +(215,655,l) +); +} +); +width = 603; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,151,l), +(54,284,l), +(54,243,l), +(253,95,l), +(452,243,l), +(452,284,l), +(271,151,l), +(271,634,l), +(235,634,l) +); +} +); +width = 528; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,317,l), +(50,408,l), +(50,216,l), +(290,65,l), +(530,216,l), +(530,408,l), +(385,317,l), +(385,654,l), +(195,654,l) +); +} +); +width = 585; +} +); +unicode = 8595; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/e.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/e.glyph new file mode 100644 index 00000000..f3f49f63 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/e.glyph @@ -0,0 +1,2613 @@ +{ +glyphname = e; +kernLeft = KO_e; +kernRight = KO_e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = ogonek; +pos = (341,0); +}, +{ +name = top; +pos = (222,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,-10,o), +(416,40,o), +(428,185,c), +(261,185,l), +(258,135,o), +(247,118,o), +(226,118,cs), +(199,118,o), +(188,154,o), +(191,266,c), +(111,235,l), +(428,235,l), +(438,441,o), +(382,551,o), +(226,551,cs), +(92,551,o), +(14,474,o), +(14,273,cs), +(14,65,o), +(97,-10,o), +(226,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,396,o), +(202,422,o), +(226,422,cs), +(251,422,o), +(261,390,o), +(261,307,c), +(269,333,l), +(180,333,l), +(190,308,l) +); +} +); +width = 443; +}, +{ +anchors = ( +{ +name = bottom; +pos = (168,0); +}, +{ +name = ogonek; +pos = (220,0); +}, +{ +name = top; +pos = (165,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,-10,o), +(275,27,o), +(285,148,c), +(255,148,l), +(247,70,o), +(229,18,o), +(168,18,cs), +(109,18,o), +(71,70,o), +(73,278,c), +(60,260,l), +(283,260,l), +(282,419,o), +(259,526,o), +(168,526,cs), +(67,526,o), +(44,416,o), +(44,258,cs), +(44,99,o), +(67,-10,o), +(168,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(76,454,o), +(114,498,o), +(168,498,cs), +(213,498,o), +(250,462,o), +(253,281,c), +(262,289,l), +(64,289,l), +(72,281,l) +); +} +); +width = 324; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = ogonek; +pos = (398,0); +}, +{ +name = top; +pos = (307,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-8,o), +(554,55,o), +(574,152,c), +(537,152,l), +(516,76,o), +(428,26,o), +(317,26,cs), +(166,26,o), +(69,116,o), +(71,269,c), +(54,256,l), +(581,256,l), +(591,423,o), +(485,525,o), +(314,525,cs), +(141,525,o), +(34,417,o), +(34,258,cs), +(34,97,o), +(146,-8,o), +(317,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(82,407,o), +(170,491,o), +(314,491,cs), +(450,491,o), +(544,417,o), +(542,283,c), +(548,289,l), +(68,289,l), +(73,284,l) +); +} +); +width = 615; +}, +{ +anchors = ( +{ +name = bottom; +pos = (343,0); +}, +{ +name = ogonek; +pos = (498,0); +}, +{ +name = top; +pos = (343,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-380,-10,o), +(-250,66,o), +(-229,179,c), +(-437,179,l), +(-448,153,o), +(-491,135,o), +(-543,135,cs), +(-619,135,o), +(-664,168,o), +(-665,223,c), +(-225,223,l), +(-203,435,o), +(-337,554,o), +(-551,554,cs), +(-750,554,o), +(-886,451,o), +(-886,268,cs), +(-886,101,o), +(-765,-10,o), +(-553,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-662,382,o), +(-618,408,o), +(-552,408,cs), +(-478,408,o), +(-446,375,o), +(-442,329,c), +(-433,338,l), +(-678,338,l), +(-671,328,l) +); +}, +{ +closed = 1; +nodes = ( +(525,-10,o), +(654,69,o), +(674,180,c), +(456,180,l), +(445,158,o), +(404,142,o), +(357,142,cs), +(291,142,o), +(244,168,o), +(243,219,c), +(678,219,l), +(701,419,o), +(584,553,o), +(348,553,cs), +(145,553,o), +(10,450,o), +(10,268,cs), +(10,102,o), +(132,-10,o), +(344,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,374,o), +(282,409,o), +(348,409,cs), +(410,409,o), +(455,382,o), +(457,325,c), +(465,334,l), +(230,334,l), +(236,324,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,-10,o), +(652,58,o), +(674,180,c), +(456,180,l), +(445,158,o), +(404,142,o), +(357,142,cs), +(261,142,o), +(208,193,o), +(269,301,c), +(144,219,l), +(678,219,l), +(701,419,o), +(584,553,o), +(348,553,cs), +(145,553,o), +(10,450,o), +(10,268,cs), +(10,102,o), +(132,-10,o), +(344,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,378,o), +(279,409,o), +(348,409,cs), +(420,409,o), +(455,379,o), +(457,325,c), +(465,334,l), +(230,334,l), +(236,324,l) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = bottom; +pos = (168,0); +}, +{ +name = ogonek; +pos = (234,0); +}, +{ +name = top; +pos = (168,520); +} +); +associatedMasterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +attr = { +coordinates = ( +75, +300, +1, +0 +); +}; +layerId = "121B060A-3A01-44A8-A717-04A5200E0706"; +name = "{75, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,-10,o), +(291,29,o), +(301,153,c), +(251,153,l), +(244,80,o), +(227,33,o), +(172,33,cs), +(119,33,o), +(85,80,o), +(85,259,c), +(83,256,l), +(299,256,l), +(300,422,o), +(272,530,o), +(172,530,cs), +(66,530,o), +(35,424,o), +(35,260,cs), +(35,94,o), +(67,-10,o), +(172,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(88,446,o), +(122,487,o), +(172,487,cs), +(214,487,o), +(247,452,o), +(250,285,c), +(258,298,l), +(76,298,l), +(84,285,l) +); +} +); +width = 336; +}, +{ +anchors = ( +{ +name = bottom; +pos = (320,0); +}, +{ +name = ogonek; +pos = (405,0); +}, +{ +name = top; +pos = (326,521); +} +); +associatedMasterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +attr = { +coordinates = ( +125, +300, +1, +0 +); +}; +layerId = "F16FE37B-BC21-4F2F-A8AE-055402EB8A37"; +name = "{125, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,-8,o), +(577,57,o), +(596,156,c), +(534,156,l), +(515,87,o), +(433,42,o), +(330,42,cs), +(192,42,o), +(104,120,o), +(102,253,c), +(100,251,l), +(602,251,l), +(612,424,o), +(504,529,o), +(326,529,cs), +(149,529,o), +(38,422,o), +(38,259,cs), +(38,96,o), +(153,-8,o), +(329,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,403,o), +(193,479,o), +(326,479,cs), +(453,479,o), +(538,411,o), +(537,290,c), +(544,300,l), +(97,300,l), +(102,290,l) +); +} +); +width = 639; +}, +{ +anchors = ( +{ +name = bottom; +pos = (148,0); +}, +{ +name = ogonek; +pos = (205,0); +}, +{ +name = top; +pos = (145,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,-10,o), +(259,47,o), +(270,162,c), +(239,162,l), +(228,66,o), +(202,18,o), +(151,18,cs), +(81,18,o), +(52,97,o), +(54,276,c), +(41,260,l), +(273,260,l), +(272,445,o), +(243,526,o), +(151,526,cs), +(61,526,o), +(23,450,o), +(23,258,cs), +(23,67,o), +(60,-10,o), +(151,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(56,432,o), +(85,498,o), +(151,498,cs), +(213,498,o), +(239,433,o), +(242,281,c), +(251,289,l), +(44,289,l), +(53,281,l) +); +} +); +width = 294; +}, +{ +anchors = ( +{ +name = bottom; +pos = (158,0); +}, +{ +name = ogonek; +pos = (223,0); +}, +{ +name = top; +pos = (155,520); +} +); +associatedMasterId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +attr = { +coordinates = ( +75, +300, +100, +0 +); +}; +layerId = "9DB4C1F4-38A8-487C-AC09-E23530973A8F"; +name = "{75, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,-10,o), +(280,48,o), +(291,167,c), +(241,167,l), +(231,75,o), +(207,32,o), +(160,32,cs), +(97,32,o), +(70,106,o), +(72,275,c), +(50,256,l), +(294,256,l), +(294,444,o), +(262,530,o), +(160,530,cs), +(64,530,o), +(20,453,o), +(20,260,cs), +(20,67,o), +(64,-10,o), +(160,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(74,428,o), +(100,487,o), +(160,487,cs), +(217,487,o), +(241,426,o), +(243,285,c), +(252,298,l), +(62,298,l), +(71,285,l) +); +} +); +width = 313; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = ogonek; +pos = (332,0); +}, +{ +name = top; +pos = (213,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,-10,o), +(408,55,o), +(419,197,c), +(252,197,l), +(249,135,o), +(238,118,o), +(217,118,cs), +(190,118,o), +(179,154,o), +(182,268,c), +(102,235,l), +(419,235,l), +(429,441,o), +(373,551,o), +(217,551,cs), +(83,551,o), +(5,474,o), +(5,273,cs), +(5,65,o), +(88,-10,o), +(217,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,396,o), +(193,422,o), +(217,422,cs), +(242,422,o), +(252,390,o), +(252,307,c), +(260,333,l), +(171,333,l), +(181,308,l) +); +} +); +width = 425; +}, +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = ogonek; +pos = (354,0); +}, +{ +name = top; +pos = (270,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-8,o), +(494,55,o), +(511,152,c), +(473,152,l), +(456,76,o), +(390,26,o), +(293,26,cs), +(174,26,o), +(97,110,o), +(93,256,c), +(512,256,l), +(526,410,o), +(449,525,o), +(291,525,cs), +(144,525,o), +(56,417,o), +(56,258,cs), +(56,97,o), +(149,-8,o), +(293,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,413,o), +(176,491,o), +(290,491,cs), +(403,491,o), +(479,423,o), +(477,281,c), +(482,290,l), +(89,290,l), +(94,284,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(394,-8,o), +(475,50,o), +(501,155,c), +(463,155,l), +(439,72,o), +(371,26,o), +(273,26,cs), +(148,26,o), +(68,115,o), +(69,270,c), +(53,256,l), +(511,256,l), +(509,424,o), +(421,525,o), +(271,525,cs), +(129,525,o), +(32,417,o), +(32,258,cs), +(32,97,o), +(127,-8,o), +(273,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(77,407,o), +(157,491,o), +(270,491,cs), +(392,491,o), +(469,409,o), +(473,281,c), +(478,290,l), +(65,290,l), +(70,284,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = o; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 535; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = ogonek; +pos = (364,0); +}, +{ +name = top; +pos = (272,521); +} +); +associatedMasterId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +attr = { +coordinates = ( +100, +300, +100, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(381.14,-9,o), +(468.14,50,o), +(483.14,155,c), +(426.14,155,l), +(411.14,85,o), +(356.14,39,o), +(271.14,39,cs), +(168.14,39,o), +(102.14,109,o), +(99.14,253,c), +(485.14,253,l), +(495.14,416,o), +(421.14,529,o), +(269.14,529,cs), +(123.14,529,o), +(42.14,422,o), +(42.14,259,cs), +(42.14,96,o), +(126.14,-9,o), +(271.14,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(106.14,416,o), +(170.14,481,o), +(269.14,481,cs), +(364.14,481,o), +(429.14,424,o), +(428.14,287,c), +(435.14,300,l), +(93.14,300,l), +(100.14,289,l) +); +} +); +}; +layerId = "8583DC2C-C474-43C0-B16E-5BA17151A8D3"; +name = "{100, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(401,-8,o), +(485,52,o), +(510,159,c), +(451,159,l), +(429,83,o), +(367,40,o), +(276,40,cs), +(156,40,o), +(81,126,o), +(88,275,c), +(61,252,l), +(519,252,l), +(520,422,o), +(431,529,o), +(273,529,cs), +(127,529,o), +(28,421,o), +(28,259,cs), +(28,98,o), +(124,-8,o), +(276,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(92,403,o), +(167,480,o), +(272,480,cs), +(385,480,o), +(456,405,o), +(460,287,c), +(465,299,l), +(82,299,l), +(86,290,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = o; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 541; +}, +{ +anchors = ( +{ +name = bottom; +pos = (292,0); +}, +{ +name = ogonek; +pos = (423,0); +}, +{ +name = top; +pos = (285,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(456,-10,o), +(560,65,o), +(572,177,c), +(393,177,l), +(385,150,o), +(353,132,o), +(313,132,cs), +(257,132,o), +(219,166,o), +(221,227,c), +(576,227,l), +(596,415,o), +(503,554,o), +(306,554,cs), +(142,554,o), +(33,445,o), +(33,267,cs), +(33,101,o), +(135,-10,o), +(313,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(219,377,o), +(252,413,o), +(306,413,cs), +(357,413,o), +(392,381,o), +(388,326,c), +(405,341,l), +(205,341,l), +(221,325,l) +); +} +); +}; +guides = ( +{ +pos = (285,413); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-10,o), +(546,63,o), +(565,184,c), +(375,184,l), +(363,148,o), +(339,132,o), +(292,132,cs), +(211,132,o), +(170,196,o), +(217,306,c), +(111,227,l), +(569,227,l), +(589,415,o), +(493,554,o), +(288,554,cs), +(115,554,o), +(4,445,o), +(4,267,cs), +(4,101,o), +(107,-10,o), +(292,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,376,o), +(232,413,o), +(285,413,cs), +(338,413,o), +(374,376,o), +(370,326,c), +(387,339,l), +(181,339,l), +(197,325,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = o; +}; +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = ogonek; +pos = (406,0); +}, +{ +name = top; +pos = (315,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(475,-8,o), +(578,58,o), +(599,162,c), +(562,162,l), +(540,79,o), +(451,26,o), +(325,26,cs), +(164,26,o), +(68,116,o), +(69,269,c), +(52,256,l), +(607,256,l), +(607,423,o), +(506,525,o), +(322,525,cs), +(139,525,o), +(32,417,o), +(32,258,cs), +(32,97,o), +(144,-8,o), +(325,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(80,407,o), +(168,491,o), +(322,491,cs), +(471,491,o), +(560,417,o), +(568,283,c), +(574,289,l), +(66,289,l), +(71,284,l) +); +} +); +width = 629; +}, +{ +anchors = ( +{ +name = bottom; +pos = (328,0); +}, +{ +name = ogonek; +pos = (420,0); +}, +{ +name = top; +pos = (320,521); +} +); +associatedMasterId = "106FCE83-F343-403B-A314-646E4D059B3F"; +attr = { +coordinates = ( +125, +300, +100, +0 +); +}; +layerId = "7F2D9714-BDE1-4595-925C-83F4DD68066B"; +name = "{125, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,-8,o), +(590,57,o), +(612,165,c), +(548,165,l), +(528,90,o), +(446,42,o), +(330,42,cs), +(177,42,o), +(87,127,o), +(96,274,c), +(66,251,l), +(619,251,l), +(622,423,o), +(518,529,o), +(327,529,cs), +(140,529,o), +(29,422,o), +(29,259,cs), +(29,98,o), +(143,-8,o), +(329,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,402,o), +(183,479,o), +(326,479,cs), +(465,479,o), +(548,411,o), +(555,289,c), +(559,308,l), +(90,308,l), +(93,290,l) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (347,0); +}, +{ +name = ogonek; +pos = (502,0); +}, +{ +name = top; +pos = (347,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-366,-10,o), +(-236,66,o), +(-215,179,c), +(-423,179,l), +(-434,153,o), +(-477,135,o), +(-529,135,cs), +(-605,135,o), +(-650,168,o), +(-651,223,c), +(-211,223,l), +(-189,435,o), +(-323,554,o), +(-537,554,cs), +(-736,554,o), +(-872,451,o), +(-872,268,cs), +(-872,101,o), +(-751,-10,o), +(-539,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-648,382,o), +(-604,408,o), +(-538,408,cs), +(-464,408,o), +(-432,375,o), +(-428,329,c), +(-419,338,l), +(-664,338,l), +(-657,328,l) +); +}, +{ +closed = 1; +nodes = ( +(539,-10,o), +(668,69,o), +(688,180,c), +(470,180,l), +(459,158,o), +(418,142,o), +(371,142,cs), +(305,142,o), +(258,168,o), +(257,219,c), +(692,219,l), +(715,419,o), +(598,553,o), +(362,553,cs), +(159,553,o), +(24,450,o), +(24,268,cs), +(24,102,o), +(146,-10,o), +(358,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,374,o), +(296,409,o), +(362,409,cs), +(424,409,o), +(469,382,o), +(471,325,c), +(479,334,l), +(244,334,l), +(250,324,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(528,-10,o), +(664,58,o), +(690,180,c), +(460,180,l), +(448,157,o), +(408,142,o), +(361,142,cs), +(265,142,o), +(212,193,o), +(273,301,c), +(148,219,l), +(694,219,l), +(713,419,o), +(591,553,o), +(355,553,cs), +(149,553,o), +(14,450,o), +(14,268,cs), +(14,102,o), +(136,-10,o), +(351,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,378,o), +(283,409,o), +(352,409,cs), +(424,409,o), +(459,379,o), +(461,325,c), +(469,334,l), +(234,334,l), +(240,324,l) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = bottom; +pos = (292,0); +}, +{ +name = ogonek; +pos = (371,0); +}, +{ +name = top; +pos = (289,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(407,-8,o), +(496,55,o), +(513,152,c), +(475,152,l), +(458,76,o), +(392,26,o), +(295,26,cs), +(176,26,o), +(99,110,o), +(95,256,c), +(514,256,l), +(528,410,o), +(451,525,o), +(293,525,cs), +(146,525,o), +(58,417,o), +(58,258,cs), +(58,97,o), +(151,-8,o), +(295,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(103,413,o), +(178,491,o), +(292,491,cs), +(405,491,o), +(481,423,o), +(479,281,c), +(484,290,l), +(91,290,l), +(96,284,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(390,-8,o), +(470,45,o), +(495,130,c), +(455,130,l), +(434,67,o), +(374,26,o), +(292,26,cs), +(175,26,o), +(101,115,o), +(102,270,c), +(86,262,l), +(503,262,l), +(508,410,o), +(435,525,o), +(290,525,cs), +(150,525,o), +(65,417,o), +(65,258,cs), +(65,97,o), +(154,-8,o), +(292,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(110,413,o), +(181,491,o), +(289,491,cs), +(391,491,o), +(462,423,o), +(468,281,c), +(473,296,l), +(98,296,l), +(103,284,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = o; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (263,0); +}, +{ +name = ogonek; +pos = (337,0); +}, +{ +name = top; +pos = (269,521); +} +); +associatedMasterId = m019; +attr = { +coordinates = ( +100, +300, +1, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(381.14,-9,o), +(468.14,50,o), +(483.14,155,c), +(426.14,155,l), +(411.14,85,o), +(356.14,39,o), +(271.14,39,cs), +(168.14,39,o), +(102.14,109,o), +(99.14,253,c), +(485.14,253,l), +(495.14,416,o), +(421.14,529,o), +(269.14,529,cs), +(123.14,529,o), +(42.14,422,o), +(42.14,259,cs), +(42.14,96,o), +(126.14,-9,o), +(271.14,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(106.14,416,o), +(170.14,481,o), +(269.14,481,cs), +(364.14,481,o), +(429.14,424,o), +(428.14,287,c), +(435.14,300,l), +(93.14,300,l), +(100.14,289,l) +); +} +); +}; +layerId = "2FB80EF8-4169-4BEF-916C-997B41195B1E"; +name = "{100, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-9,o), +(463,46,o), +(481,145,c), +(424,145,l), +(406,81,o), +(352,39,o), +(271,39,cs), +(168,39,o), +(101,110,o), +(99,255,c), +(97,253,l), +(485,253,l), +(495,416,o), +(421,529,o), +(269,529,cs), +(123,529,o), +(42,422,o), +(42,259,cs), +(42,96,o), +(126,-9,o), +(271,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(106,416,o), +(170,481,o), +(269,481,cs), +(364,481,o), +(429,424,o), +(428,287,c), +(435,300,l), +(93,300,l), +(100,289,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = o; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 526; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = ogonek; +pos = (431,0); +}, +{ +name = top; +pos = (295,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(454,-10,o), +(558,65,o), +(570,177,c), +(391,177,l), +(383,150,o), +(351,132,o), +(311,132,cs), +(255,132,o), +(217,166,o), +(219,227,c), +(574,227,l), +(594,415,o), +(501,554,o), +(304,554,cs), +(140,554,o), +(31,445,o), +(31,267,cs), +(31,101,o), +(133,-10,o), +(311,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,377,o), +(250,413,o), +(304,413,cs), +(355,413,o), +(390,381,o), +(386,326,c), +(403,341,l), +(203,341,l), +(219,325,l) +); +} +); +}; +guides = ( +{ +pos = (303,413); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(439,-10,o), +(539,62,o), +(555,168,c), +(371,168,l), +(360,146,o), +(341,132,o), +(302,132,cs), +(248,132,o), +(215,168,o), +(215,232,c), +(130,228,l), +(557,227,l), +(577,416,o), +(486,554,o), +(295,554,cs), +(137,554,o), +(30,445,o), +(30,267,cs), +(30,101,o), +(129,-10,o), +(302,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(214,377,o), +(244,413,o), +(295,413,cs), +(343,413,o), +(375,381,o), +(371,326,c), +(388,341,l), +(200,338,l), +(216,325,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = o; +}; +width = 590; +}, +{ +anchors = ( +{ +name = bottom; +pos = (122,0); +}, +{ +name = ogonek; +pos = (167,0); +}, +{ +name = top; +pos = (215,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,-10,o), +(229,25,o), +(261,148,c), +(231,148,l), +(210,70,o), +(179,18,o), +(126,18,cs), +(40,18,o), +(46,131,o), +(77,273,c), +(61,260,l), +(283,260,l), +(311,405,o), +(315,525,o), +(215,525,cs), +(124,525,o), +(79,426,o), +(46,266,cs), +(12,102,o), +(15,-10,o), +(122,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,451,o), +(161,497,o), +(211,497,cs), +(285,497,o), +(276,394,o), +(257,282,c), +(262,288,l), +(69,288,l), +(77,281,l) +); +} +); +width = 324; +}, +{ +anchors = ( +{ +name = bottom; +pos = (124,0); +}, +{ +name = ogonek; +pos = (160,0); +}, +{ +name = top; +pos = (219,520); +} +); +associatedMasterId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +attr = { +coordinates = ( +75, +300, +1, +1 +); +}; +layerId = "5DF2F0AA-9590-4496-AD5D-2FF967D1F48A"; +name = "{75, 300, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,-10,o), +(244,27,o), +(277,153,c), +(227,153,l), +(207,80,o), +(179,33,o), +(131,33,cs), +(55,33,o), +(58,132,o), +(84,258,c), +(82,256,l), +(297,256,l), +(328,408,o), +(327,529,o), +(216,529,cs), +(120,529,o), +(71,432,o), +(37,269,cs), +(2,101,o), +(11,-10,o), +(126,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(125,444,o), +(166,486,o), +(212,486,cs), +(280,486,o), +(272,392,o), +(254,288,c), +(262,298,l), +(82,298,l), +(90,287,l) +); +} +); +width = 334; +}, +{ +anchors = ( +{ +name = bottom; +pos = (191,0); +}, +{ +name = ogonek; +pos = (286,0); +}, +{ +name = top; +pos = (280,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,-10,o), +(370,38,o), +(408,186,c), +(242,186,l), +(228,135,o), +(215,119,o), +(195,119,cs), +(153,119,o), +(176,213,o), +(206,330,c), +(103,235,l), +(418,235,l), +(463,425,o), +(438,551,o), +(261,551,cs), +(129,551,o), +(56,466,o), +(18,288,cs), +(-22,98,o), +(26,-10,o), +(189,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,399,o), +(235,421,o), +(255,421,cs), +(283,421,o), +(281,377,o), +(270,326,c), +(279,334,l), +(194,334,l), +(201,323,l) +); +} +); +width = 440; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = ogonek; +pos = (321,0); +}, +{ +name = top; +pos = (316,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,-10,o), +(453,55,o), +(479,153,c), +(442,153,l), +(417,75,o), +(342,24,o), +(249,24,cs), +(134,24,o), +(69,122,o), +(92,272,c), +(74,258,l), +(494,258,l), +(526,415,o), +(462,527,o), +(317,527,cs), +(168,527,o), +(58,397,o), +(51,219,cs), +(47,81,o), +(124,-10,o), +(246,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,423,o), +(212,494,o), +(311,494,cs), +(421,494,o), +(489,413,o), +(461,276,c), +(478,291,l), +(80,291,l), +(93,277,l) +); +} +); +width = 552; +}, +{ +anchors = ( +{ +name = bottom; +pos = (227,0); +}, +{ +name = ogonek; +pos = (313,0); +}, +{ +name = top; +pos = (304,521); +} +); +associatedMasterId = "095FE76F-1953-440B-9108-AA0678D151F9"; +attr = { +coordinates = ( +100, +300, +1, +1 +); +}; +layerId = "15271F00-88BE-4610-A493-8F06285B0E43"; +name = "{100, 300, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-10,o), +(430,50,o), +(458,156,c), +(401,156,l), +(378,85,o), +(316,39,o), +(235,39,cs), +(130,39,o), +(80,127,o), +(99,256,c), +(97,254,l), +(475,254,l), +(508,416,o), +(448,530,o), +(302,530,cs), +(155,530,o), +(54,409,o), +(41,234,cs), +(30,87,o), +(99,-10,o), +(230,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(132,419,o), +(207,482,o), +(296,482,cs), +(397,482,o), +(445,403,o), +(423,285,c), +(437,301,l), +(93,301,l), +(105,285,l) +); +} +); +width = 522; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = ogonek; +pos = (392,0); +}, +{ +name = top; +pos = (330,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1115,-10,o), +(1225,65,o), +(1249,177,c), +(1070,177,l), +(1058,150,o), +(1029,132,o), +(986,132,cs), +(933,132,o), +(908,164,o), +(912,227,c), +(1261,227,l), +(1267,247,o), +(1272,284,o), +(1272,320,cs), +(1272,462,o), +(1174,554,o), +(1028,554,cs), +(841,554,o), +(727,422,o), +(727,235,cs), +(727,82,o), +(825,-10,o), +(975,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(933,382,o), +(966,416,o), +(1020,416,cs), +(1066,416,o), +(1095,385,o), +(1091,337,c), +(1096,341,l), +(919,341,l), +(926,336,l) +); +}, +{ +closed = 1; +nodes = ( +(444,-10,o), +(546,90,o), +(572,244,cs), +(604,435,o), +(500,554,o), +(329,554,cs), +(160,554,o), +(55,453,o), +(30,302,cs), +(-2,110,o), +(101,-10,o), +(273,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,141,o), +(212,172,o), +(216,237,cs), +(222,337,o), +(254,404,o), +(319,404,cs), +(363,404,o), +(390,373,o), +(386,308,cs), +(380,208,o), +(348,141,o), +(283,141,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(420,-10,o), +(526,63,o), +(551,173,c), +(368,176,l), +(358,150,o), +(332,132,o), +(293,132,cs), +(219,132,o), +(184,192,o), +(234,319,c), +(125,227,l), +(561,227,l), +(600,410,o), +(506,554,o), +(323,554,cs), +(142,554,o), +(26,422,o), +(26,238,cs), +(26,89,o), +(119,-10,o), +(284,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(234,381,o), +(264,413,o), +(317,413,cs), +(366,413,o), +(397,381,o), +(390,332,c), +(397,341,l), +(220,341,l), +(227,334,l) +); +} +); +width = 597; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = ogonek; +pos = (366,0); +}, +{ +name = top; +pos = (346,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,-9,o), +(525,57,o), +(556,152,c), +(519,152,l), +(487,76,o), +(400,25,o), +(289,25,cs), +(138,25,o), +(51,123,o), +(74,269,c), +(55,256,l), +(576,256,l), +(611,418,o), +(516,527,o), +(344,527,cs), +(169,527,o), +(38,400,o), +(32,225,cs), +(27,84,o), +(134,-9,o), +(283,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,408,o), +(204,493,o), +(341,493,cs), +(484,493,o), +(564,409,o), +(542,279,c), +(552,289,l), +(67,289,l), +(77,280,l) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = bottom; +pos = (297,0); +}, +{ +name = ogonek; +pos = (372,0); +}, +{ +name = top; +pos = (359,521); +} +); +associatedMasterId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +attr = { +coordinates = ( +125, +300, +1, +1 +); +}; +layerId = "62EC6E57-5C80-4FE0-8866-606B1E5A17E5"; +name = "{125, 300, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(434,-10,o), +(547,58,o), +(578,156,c), +(515,156,l), +(486,88,o), +(405,42,o), +(302,42,cs), +(167,43,o), +(87,127,o), +(102,253,c), +(100,251,l), +(595,251,l), +(631,419,o), +(532,531,o), +(355,531,cs), +(174,531,o), +(43,404,o), +(37,230,cs), +(32,85,o), +(141,-9,o), +(295,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,404,o), +(225,480,o), +(351,480,cs), +(482,480,o), +(557,405,o), +(538,286,c), +(548,301,l), +(98,301,l), +(108,287,l) +); +} +); +width = 638; +}, +{ +anchors = ( +{ +name = bottom; +pos = (333,0); +}, +{ +name = ogonek; +pos = (480,0); +}, +{ +name = top; +pos = (375,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1419,-9,o), +(1536,65,o), +(1565,180,c), +(1350,180,l), +(1334,157,o), +(1296,140,o), +(1244,140,cs), +(1180,140,o), +(1134,172,o), +(1139,222,c), +(1565,222,l), +(1609,426,o), +(1489,554,o), +(1277,554,cs), +(1057,554,o), +(923,425,o), +(923,240,cs), +(923,82,o), +(1048,-9,o), +(1233,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(1165,380,o), +(1206,405,o), +(1268,405,cs), +(1327,405,o), +(1371,378,o), +(1370,329,c), +(1380,340,l), +(1141,340,l), +(1152,331,l) +); +}, +{ +closed = 1; +nodes = ( +(540,-9,o), +(679,108,o), +(679,289,cs), +(679,448,o), +(566,554,o), +(361,554,cs), +(152,554,o), +(13,437,o), +(13,256,cs), +(13,97,o), +(126,-9,o), +(331,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,157,o), +(231,194,o), +(231,259,cs), +(234,337,o), +(281,388,o), +(357,388,cs), +(420,388,o), +(461,351,o), +(461,286,cs), +(458,208,o), +(411,157,o), +(335,157,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(502,-9,o), +(635,64,o), +(661,180,c), +(439,180,l), +(423,157,o), +(385,140,o), +(333,140,cs), +(242,140,o), +(188,205,o), +(260,292,c), +(128,219,l), +(670,219,l), +(702,422,o), +(577,554,o), +(361,554,cs), +(152,554,o), +(13,437,o), +(13,256,cs), +(13,97,o), +(126,-9,o), +(331,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,377,o), +(293,409,o), +(357,409,cs), +(423,409,o), +(456,375,o), +(459,329,c), +(469,334,l), +(230,334,l), +(241,331,l) +); +} +); +width = 690; +} +); +unicode = 101; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eacute.glyph new file mode 100644 index 00000000..f3e57565 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eacute.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = eacute; +kernLeft = KO_e; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (109,-156); +ref = acutecomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (110,-137); +ref = acutecomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (249,-155); +ref = acutecomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (226,-129); +ref = acutecomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (109,-156); +ref = acutecomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (111,-137); +ref = acutecomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (232,-155); +ref = acutecomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (186,-134); +ref = acutecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (249,-155); +ref = acutecomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (226,-129); +ref = acutecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (233,-155); +ref = acutecomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (185,-134); +ref = acutecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (74,-156); +ref = acutecomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (85,-137); +ref = acutecomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (174,-155); +ref = acutecomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (135,-134); +ref = acutecomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (203,-155); +ref = acutecomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (175,-129); +ref = acutecomb; +} +); +width = 690; +} +); +unicode = 233; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ebreve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ebreve.glyph new file mode 100644 index 00000000..fabbc96d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ebreve.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ebreve; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (41,-156); +ref = brevecomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (27,-137); +ref = brevecomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (133,-155); +ref = brevecomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (104,-129); +ref = brevecomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (41,-156); +ref = brevecomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (28,-137); +ref = brevecomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (119,-161); +ref = brevecomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (79,-134); +ref = brevecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (133,-155); +ref = brevecomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (104,-129); +ref = brevecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (122,-161); +ref = brevecomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (84,-134); +ref = brevecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-156); +ref = brevecomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (0,-137); +ref = brevecomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (60,-155); +ref = brevecomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (18,-134); +ref = brevecomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (81,-155); +ref = brevecomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (53,-134); +ref = brevecomb; +} +); +width = 690; +} +); +unicode = 277; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ecaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ecaron.glyph new file mode 100644 index 00000000..a57d3763 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ecaron.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ecaron; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (36,-156); +ref = caroncomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (5,-137); +ref = caroncomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (128,-155); +ref = caroncomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (52,-129); +ref = caroncomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (36,-156); +ref = caroncomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (6,-137); +ref = caroncomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (123,-155); +ref = caroncomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (51,-134); +ref = caroncomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (128,-155); +ref = caroncomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (52,-129); +ref = caroncomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (126,-155); +ref = caroncomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (56,-134); +ref = caroncomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-156); +ref = caroncomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-16,-137); +ref = caroncomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (65,-155); +ref = caroncomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-4,-134); +ref = caroncomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (80,-155); +ref = caroncomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-129); +ref = caroncomb; +} +); +width = 690; +} +); +unicode = 283; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflex.glyph new file mode 100644 index 00000000..bcd76cbf --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflex.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ecircumflex; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (36,-156); +ref = circumflexcomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (5,-137); +ref = circumflexcomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (52,-129); +ref = circumflexcomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (36,-156); +ref = circumflexcomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (6,-137); +ref = circumflexcomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (123,-155); +ref = circumflexcomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (51,-134); +ref = circumflexcomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (52,-129); +ref = circumflexcomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (126,-155); +ref = circumflexcomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (56,-134); +ref = circumflexcomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (0,-156); +ref = circumflexcomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-22,-137); +ref = circumflexcomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (64,-155); +ref = circumflexcomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (80,-155); +ref = circumflexcomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-1,-129); +ref = circumflexcomb; +} +); +width = 690; +} +); +unicode = 234; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexacute.glyph new file mode 100644 index 00000000..edff9740 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexacute.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ecircumflexacute; +kernLeft = KO_egrave; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (36,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (16,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (128,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (76,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (36,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (17,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (123,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (51,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (128,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (76,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (126,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (55,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (0,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-10,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (64,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (3,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (80,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (22,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 690; +} +); +unicode = 7871; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexdotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexdotbelow.glyph new file mode 100644 index 00000000..35bc2d9f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexdotbelow.glyph @@ -0,0 +1,330 @@ +{ +color = 6; +glyphname = ecircumflexdotbelow; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (105,0); +ref = dotbelowcomb; +}, +{ +pos = (36,-156); +ref = circumflexcomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (108,0); +ref = dotbelowcomb; +}, +{ +pos = (5,-137); +ref = circumflexcomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (245,0); +ref = dotbelowcomb; +}, +{ +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (190,0); +ref = dotbelowcomb; +}, +{ +pos = (52,-129); +ref = circumflexcomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (105,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (36,-156); +ref = circumflexcomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (109,0); +ref = dotbelowcomb; +}, +{ +pos = (6,-137); +ref = circumflexcomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (218,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (123,-155); +ref = circumflexcomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (180,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (51,-134); +ref = circumflexcomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (245,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (190,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (52,-129); +ref = circumflexcomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (219,0); +ref = dotbelowcomb; +}, +{ +pos = (126,-155); +ref = circumflexcomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (181,0); +ref = dotbelowcomb; +}, +{ +pos = (56,-134); +ref = circumflexcomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (112,0); +ref = dotbelowcomb; +}, +{ +pos = (0,-156); +ref = circumflexcomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (126,0); +ref = dotbelowcomb; +}, +{ +pos = (-22,-137); +ref = circumflexcomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (226,0); +ref = dotbelowcomb; +}, +{ +pos = (64,-155); +ref = circumflexcomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (215,0); +ref = dotbelowcomb; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (267,0); +ref = dotbelowcomb; +}, +{ +pos = (80,-155); +ref = circumflexcomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (236,0); +ref = dotbelowcomb; +}, +{ +pos = (-1,-129); +ref = circumflexcomb; +} +); +width = 690; +} +); +unicode = 7879; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexdotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..84d08c44 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexdotbelow.ss01.glyph @@ -0,0 +1,329 @@ +{ +color = 6; +glyphname = ecircumflexdotbelow.ss01; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (113,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (36,-156); +ref = circumflexcomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (97,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (5,-137); +ref = circumflexcomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (258,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (202,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (52,-129); +ref = circumflexcomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (113,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (36,-156); +ref = circumflexcomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (98,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (6,-137); +ref = circumflexcomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (231,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (123,-155); +ref = circumflexcomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (169,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (51,-134); +ref = circumflexcomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (258,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (202,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (52,-129); +ref = circumflexcomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (232,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (126,-155); +ref = circumflexcomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (168,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (56,-134); +ref = circumflexcomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (0,-156); +ref = circumflexcomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (117,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-22,-137); +ref = circumflexcomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (239,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (64,-155); +ref = circumflexcomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (206,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (278,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (80,-155); +ref = circumflexcomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (250,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-1,-129); +ref = circumflexcomb; +} +); +width = 690; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexgrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexgrave.glyph new file mode 100644 index 00000000..b30a20c5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexgrave.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ecircumflexgrave; +kernLeft = KO_egrave; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (36,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (16,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (128,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (76,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (36,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (17,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (123,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (51,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (128,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (76,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (126,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (55,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (0,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-10,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (64,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (3,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (80,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (22,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 690; +} +); +unicode = 7873; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexhookabove.glyph new file mode 100644 index 00000000..692722d5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflexhookabove.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ecircumflexhookabove; +kernLeft = KO_egrave; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (36,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (16,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (128,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (76,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (36,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (17,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (123,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (51,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (128,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (76,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (126,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (55,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (0,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-10,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (64,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (3,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (80,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (22,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 690; +} +); +unicode = 7875; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflextilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflextilde.glyph new file mode 100644 index 00000000..4b7f606e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ecircumflextilde.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ecircumflextilde; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (36,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (16,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (128,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (76,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (36,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (17,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (123,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (51,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (128,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (76,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (126,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (56,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (0,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-11,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (57,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (3,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (80,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 690; +} +); +unicode = 7877; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/edieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/edieresis.glyph new file mode 100644 index 00000000..f8052247 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/edieresis.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = edieresis; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (47,-156); +ref = dieresiscomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-3,-137); +ref = dieresiscomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (130,-155); +ref = dieresiscomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (60,-134); +ref = dieresiscomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (47,-156); +ref = dieresiscomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-2,-137); +ref = dieresiscomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (125,-155); +ref = dieresiscomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (55,-134); +ref = dieresiscomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (130,-155); +ref = dieresiscomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (60,-134); +ref = dieresiscomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (128,-155); +ref = dieresiscomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (60,-134); +ref = dieresiscomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (6,-156); +ref = dieresiscomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-37,-137); +ref = dieresiscomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (69,-155); +ref = dieresiscomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-134); +ref = dieresiscomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (84,-155); +ref = dieresiscomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (6,-134); +ref = dieresiscomb; +} +); +width = 690; +} +); +unicode = 235; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/edieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/edieresis.ss01.glyph new file mode 100644 index 00000000..9497596f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/edieresis.ss01.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = edieresis.ss01; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (58,-156); +ref = dieresiscomb.ss01; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-2,-137); +ref = dieresiscomb.ss01; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (163,-155); +ref = dieresiscomb.ss01; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (82,-134); +ref = dieresiscomb.ss01; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (58,-156); +ref = dieresiscomb.ss01; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-1,-137); +ref = dieresiscomb.ss01; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (152,-155); +ref = dieresiscomb.ss01; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (67,-134); +ref = dieresiscomb.ss01; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (163,-155); +ref = dieresiscomb.ss01; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (82,-134); +ref = dieresiscomb.ss01; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (153,-155); +ref = dieresiscomb.ss01; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (72,-134); +ref = dieresiscomb.ss01; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (19,-156); +ref = dieresiscomb.ss01; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-29,-137); +ref = dieresiscomb.ss01; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (91,-155); +ref = dieresiscomb.ss01; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (17,-134); +ref = dieresiscomb.ss01; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (121,-155); +ref = dieresiscomb.ss01; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (35,-134); +ref = dieresiscomb.ss01; +} +); +width = 690; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/edotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/edotaccent.glyph new file mode 100644 index 00000000..08732cb7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/edotaccent.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = edotaccent; +kernLeft = KO_e; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (102,-156); +ref = dotaccentcomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (88,-137); +ref = dotaccentcomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (235,-155); +ref = dotaccentcomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (185,-129); +ref = dotaccentcomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (102,-156); +ref = dotaccentcomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (89,-137); +ref = dotaccentcomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (215,-155); +ref = dotaccentcomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (161,-134); +ref = dotaccentcomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (235,-155); +ref = dotaccentcomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (185,-129); +ref = dotaccentcomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (216,-133); +ref = dotaccentcomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (162,-120); +ref = dotaccentcomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (61,-156); +ref = dotaccentcomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (62,-137); +ref = dotaccentcomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (159,-155); +ref = dotaccentcomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (105,-134); +ref = dotaccentcomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (189,-155); +ref = dotaccentcomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (131,-129); +ref = dotaccentcomb; +} +); +width = 690; +} +); +unicode = 279; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/edotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/edotaccent.ss01.glyph new file mode 100644 index 00000000..d0db1502 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/edotaccent.ss01.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = edotaccent.ss01; +kernLeft = KO_e; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (110,-156); +ref = dotaccentcomb.ss01; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (93,-137); +ref = dotaccentcomb.ss01; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (248,-155); +ref = dotaccentcomb.ss01; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (192,-129); +ref = dotaccentcomb.ss01; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (110,-156); +ref = dotaccentcomb.ss01; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (94,-137); +ref = dotaccentcomb.ss01; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (228,-155); +ref = dotaccentcomb.ss01; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (162,-134); +ref = dotaccentcomb.ss01; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (248,-155); +ref = dotaccentcomb.ss01; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (192,-129); +ref = dotaccentcomb.ss01; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (229,-155); +ref = dotaccentcomb.ss01; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (161,-134); +ref = dotaccentcomb.ss01; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (75,-156); +ref = dotaccentcomb.ss01; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (68,-137); +ref = dotaccentcomb.ss01; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (172,-155); +ref = dotaccentcomb.ss01; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (110,-134); +ref = dotaccentcomb.ss01; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (202,-155); +ref = dotaccentcomb.ss01; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (140,-134); +ref = dotaccentcomb.ss01; +} +); +width = 690; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/edotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/edotbelow.glyph new file mode 100644 index 00000000..ebaabe3d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/edotbelow.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = edotbelow; +kernLeft = KO_e; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (105,0); +ref = dotbelowcomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (108,0); +ref = dotbelowcomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (245,0); +ref = dotbelowcomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (190,0); +ref = dotbelowcomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (105,0); +ref = dotbelowcomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (109,0); +ref = dotbelowcomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (218,0); +ref = dotbelowcomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (180,0); +ref = dotbelowcomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (245,0); +ref = dotbelowcomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (190,0); +ref = dotbelowcomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (219,0); +ref = dotbelowcomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (181,0); +ref = dotbelowcomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (112,0); +ref = dotbelowcomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (126,0); +ref = dotbelowcomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (226,0); +ref = dotbelowcomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (215,0); +ref = dotbelowcomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (267,0); +ref = dotbelowcomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (236,0); +ref = dotbelowcomb; +} +); +width = 690; +} +); +unicode = 7865; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/edotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/edotbelow.ss01.glyph new file mode 100644 index 00000000..99a3e70b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/edotbelow.ss01.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = edotbelow.ss01; +kernLeft = KO_e; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (113,0); +ref = dotbelowcomb.ss01; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (97,0); +ref = dotbelowcomb.ss01; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (258,0); +ref = dotbelowcomb.ss01; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (202,0); +ref = dotbelowcomb.ss01; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (113,0); +ref = dotbelowcomb.ss01; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (98,0); +ref = dotbelowcomb.ss01; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (231,0); +ref = dotbelowcomb.ss01; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (169,0); +ref = dotbelowcomb.ss01; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (258,0); +ref = dotbelowcomb.ss01; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (202,0); +ref = dotbelowcomb.ss01; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (232,0); +ref = dotbelowcomb.ss01; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (168,0); +ref = dotbelowcomb.ss01; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (120,0); +ref = dotbelowcomb.ss01; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (117,0); +ref = dotbelowcomb.ss01; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (239,0); +ref = dotbelowcomb.ss01; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (206,0); +ref = dotbelowcomb.ss01; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (278,0); +ref = dotbelowcomb.ss01; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (250,0); +ref = dotbelowcomb.ss01; +} +); +width = 690; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/egrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/egrave.glyph new file mode 100644 index 00000000..386d32e1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/egrave.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = egrave; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (31,-156); +ref = gravecomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (13,-137); +ref = gravecomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (163,-155); +ref = gravecomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (109,-129); +ref = gravecomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (31,-156); +ref = gravecomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (14,-137); +ref = gravecomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (153,-155); +ref = gravecomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (89,-134); +ref = gravecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (163,-155); +ref = gravecomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (109,-129); +ref = gravecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (154,-155); +ref = gravecomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (96,-134); +ref = gravecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-3,-156); +ref = gravecomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-5,-137); +ref = gravecomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (97,-155); +ref = gravecomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (34,-134); +ref = gravecomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (116,-155); +ref = gravecomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (58,-129); +ref = gravecomb; +} +); +width = 690; +} +); +unicode = 232; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ehookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ehookabove.glyph new file mode 100644 index 00000000..4752f7e0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ehookabove.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ehookabove; +kernLeft = KO_e; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (84,-156); +ref = hookabovecomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (83,-138); +ref = hookabovecomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (199,-155); +ref = hookabovecomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (190,-134); +ref = hookabovecomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (84,-156); +ref = hookabovecomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (84,-138); +ref = hookabovecomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (179,-155); +ref = hookabovecomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (135,-134); +ref = hookabovecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (199,-155); +ref = hookabovecomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (190,-134); +ref = hookabovecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (180,-155); +ref = hookabovecomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (139,-134); +ref = hookabovecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (26,-157); +ref = hookabovecomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (49,-139); +ref = hookabovecomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (127,-156); +ref = hookabovecomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (75,-135); +ref = hookabovecomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (158,-156); +ref = hookabovecomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (123,-137); +ref = hookabovecomb; +} +); +width = 690; +} +); +unicode = 7867; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eight.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.blackC_ircled.glyph new file mode 100644 index 00000000..12051f12 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.blackC_ircled.glyph @@ -0,0 +1,3642 @@ +{ +color = 0; +glyphname = eight.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,232,o), +(374,245,o), +(374,278,cs), +(374,306,o), +(370,324,o), +(352,324,cs), +(335,324,o), +(330,307,o), +(330,278,cs), +(330,246,o), +(339,232,o), +(352,232,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,145,o), +(220,194,o), +(220,269,cs), +(220,314,o), +(243,356,o), +(285,367,c), +(285,372,l), +(246,387,o), +(226,426,o), +(226,471,cs), +(226,541,o), +(271,588,o), +(352,588,cs), +(433,588,o), +(479,541,o), +(479,471,cs), +(479,422,o), +(457,386,o), +(419,372,c), +(419,367,l), +(460,357,o), +(485,315,o), +(485,269,cs), +(485,195,o), +(437,145,o), +(352,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,413,o), +(373,422,o), +(373,459,cs), +(373,481,o), +(369,501,o), +(352,501,cs), +(336,501,o), +(332,482,o), +(332,459,cs), +(332,421,o), +(340,413,o), +(352,413,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,143,o), +(220,192,o), +(220,267,cs), +(220,312,o), +(243,354,o), +(285,365,c), +(285,370,l), +(246,385,o), +(226,424,o), +(226,469,cs), +(226,539,o), +(271,586,o), +(352,586,cs), +(433,586,o), +(479,539,o), +(479,469,cs), +(479,420,o), +(457,384,o), +(419,370,c), +(419,365,l), +(460,355,o), +(485,313,o), +(485,267,cs), +(485,193,o), +(437,143,o), +(352,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,230,o), +(374,243,o), +(374,276,cs), +(374,304,o), +(370,322,o), +(352,322,cs), +(335,322,o), +(330,305,o), +(330,276,cs), +(330,244,o), +(339,230,o), +(352,230,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,411,o), +(373,420,o), +(373,457,cs), +(373,479,o), +(369,499,o), +(352,499,cs), +(336,499,o), +(332,480,o), +(332,457,cs), +(332,419,o), +(340,411,o), +(352,411,cs) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(399,169,o), +(419,209,o), +(419,268,cs), +(419,330,o), +(392,361,o), +(349,361,cs), +(301,361,o), +(279,324,o), +(279,268,cs), +(279,196,o), +(308,169,o), +(349,169,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,144,o), +(249,193,o), +(249,266,cs), +(249,323,o), +(275,362,o), +(314,372,c), +(314,375,l), +(274,388,o), +(255,430,o), +(255,476,cs), +(255,546,o), +(293,586,o), +(349,586,cs), +(409,586,o), +(443,542,o), +(443,476,cs), +(443,430,o), +(424,388,o), +(384,375,c), +(384,372,l), +(426,361,o), +(449,319,o), +(449,266,cs), +(449,184,o), +(409,144,o), +(349,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,386,o), +(414,419,o), +(414,474,cs), +(414,533,o), +(388,561,o), +(349,561,cs), +(304,561,o), +(284,525,o), +(284,474,cs), +(284,417,o), +(310,386,o), +(349,386,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,143,o), +(249,192,o), +(249,265,cs), +(249,322,o), +(275,361,o), +(314,371,c), +(314,374,l), +(274,387,o), +(255,429,o), +(255,475,cs), +(255,545,o), +(293,585,o), +(349,585,cs), +(409,585,o), +(443,541,o), +(443,475,cs), +(443,429,o), +(424,387,o), +(384,374,c), +(384,371,l), +(426,360,o), +(449,318,o), +(449,265,cs), +(449,183,o), +(409,143,o), +(349,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(399,168,o), +(419,208,o), +(419,267,cs), +(419,329,o), +(392,360,o), +(349,360,cs), +(301,360,o), +(279,323,o), +(279,267,cs), +(279,195,o), +(308,168,o), +(349,168,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,385,o), +(414,418,o), +(414,473,cs), +(414,532,o), +(388,560,o), +(349,560,cs), +(304,560,o), +(284,524,o), +(284,473,cs), +(284,416,o), +(310,385,o), +(349,385,cs) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,173,o), +(584,206,o), +(584,266,cs), +(584,330,o), +(532,356,o), +(442,356,cs), +(353,356,o), +(301,330,o), +(301,266,cs), +(301,206,o), +(348,173,o), +(442,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,142,o), +(262,185,o), +(262,262,cs), +(262,325,o), +(311,366,o), +(374,369,c), +(374,372,l), +(314,380,o), +(272,414,o), +(272,473,cs), +(272,552,o), +(347,584,o), +(442,584,cs), +(538,584,o), +(613,551,o), +(613,473,cs), +(613,415,o), +(573,381,o), +(510,372,c), +(510,369,l), +(576,366,o), +(622,324,o), +(622,262,cs), +(622,185,o), +(554,142,o), +(442,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(539,384,o), +(575,419,o), +(575,469,cs), +(575,530,o), +(519,554,o), +(442,554,cs), +(365,554,o), +(309,530,o), +(309,469,cs), +(309,419,o), +(345,384,o), +(442,384,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,145,o), +(262,188,o), +(262,265,cs), +(262,328,o), +(311,369,o), +(374,372,c), +(374,375,l), +(314,383,o), +(272,417,o), +(272,476,cs), +(272,555,o), +(347,587,o), +(442,587,cs), +(538,587,o), +(613,554,o), +(613,476,cs), +(613,418,o), +(573,384,o), +(510,375,c), +(510,372,l), +(576,369,o), +(622,327,o), +(622,265,cs), +(622,188,o), +(554,145,o), +(442,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,176,o), +(584,209,o), +(584,269,cs), +(584,333,o), +(532,359,o), +(442,359,cs), +(353,359,o), +(301,333,o), +(301,269,cs), +(301,209,o), +(348,176,o), +(442,176,cs) +); +}, +{ +closed = 1; +nodes = ( +(539,387,o), +(575,422,o), +(575,472,cs), +(575,533,o), +(519,557,o), +(442,557,cs), +(365,557,o), +(309,533,o), +(309,472,cs), +(309,422,o), +(345,387,o), +(442,387,cs) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,251,o), +(487,261,o), +(487,285,cs), +(487,305,o), +(472,320,o), +(431,320,cs), +(391,320,o), +(377,305,o), +(377,285,cs), +(377,261,o), +(400,251,o), +(431,251,cs) +); +}, +{ +closed = 1; +nodes = ( +(289,143,o), +(225,192,o), +(225,269,cs), +(225,318,o), +(257,361,o), +(311,369,c), +(311,373,l), +(264,383,o), +(235,418,o), +(235,465,cs), +(235,553,o), +(321,586,o), +(431,586,cs), +(543,586,o), +(629,553,o), +(629,465,cs), +(629,416,o), +(598,383,o), +(553,373,c), +(553,369,l), +(604,361,o), +(639,320,o), +(639,269,cs), +(639,193,o), +(576,143,o), +(431,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,413,o), +(480,425,o), +(480,446,cs), +(480,465,o), +(463,477,o), +(431,477,cs), +(400,477,o), +(384,465,o), +(384,446,cs), +(384,426,o), +(400,413,o), +(431,413,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(287,148,o), +(223,197,o), +(223,274,cs), +(223,323,o), +(255,366,o), +(309,374,c), +(309,378,l), +(262,388,o), +(233,423,o), +(233,470,cs), +(233,558,o), +(319,591,o), +(429,591,cs), +(541,591,o), +(627,558,o), +(627,470,cs), +(627,421,o), +(596,388,o), +(551,378,c), +(551,374,l), +(602,366,o), +(637,325,o), +(637,274,cs), +(637,198,o), +(574,148,o), +(429,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(462,256,o), +(485,266,o), +(485,290,cs), +(485,310,o), +(470,325,o), +(429,325,cs), +(389,325,o), +(375,310,o), +(375,290,cs), +(375,266,o), +(398,256,o), +(429,256,cs) +); +}, +{ +closed = 1; +nodes = ( +(462,418,o), +(478,430,o), +(478,451,cs), +(478,470,o), +(461,482,o), +(429,482,cs), +(398,482,o), +(382,470,o), +(382,451,cs), +(382,431,o), +(398,418,o), +(429,418,cs) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(399,169,o), +(419,209,o), +(419,268,cs), +(419,330,o), +(392,361,o), +(349,361,cs), +(301,361,o), +(279,324,o), +(279,268,cs), +(279,196,o), +(308,169,o), +(349,169,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,144,o), +(249,193,o), +(249,266,cs), +(249,323,o), +(275,362,o), +(314,372,c), +(314,375,l), +(274,388,o), +(255,430,o), +(255,476,cs), +(255,546,o), +(293,586,o), +(349,586,cs), +(409,586,o), +(443,542,o), +(443,476,cs), +(443,430,o), +(424,388,o), +(384,375,c), +(384,372,l), +(426,361,o), +(449,319,o), +(449,266,cs), +(449,184,o), +(409,144,o), +(349,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,386,o), +(414,419,o), +(414,474,cs), +(414,533,o), +(388,561,o), +(349,561,cs), +(304,561,o), +(284,525,o), +(284,474,cs), +(284,417,o), +(310,386,o), +(349,386,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,143,o), +(229,192,o), +(229,265,cs), +(229,322,o), +(255,361,o), +(294,371,c), +(294,374,l), +(254,387,o), +(235,429,o), +(235,475,cs), +(235,545,o), +(273,585,o), +(329,585,cs), +(389,585,o), +(423,541,o), +(423,475,cs), +(423,429,o), +(404,387,o), +(364,374,c), +(364,371,l), +(406,360,o), +(429,318,o), +(429,265,cs), +(429,183,o), +(389,143,o), +(329,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(379,168,o), +(399,208,o), +(399,267,cs), +(399,329,o), +(372,360,o), +(329,360,cs), +(281,360,o), +(259,323,o), +(259,267,cs), +(259,195,o), +(288,168,o), +(329,168,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,385,o), +(394,418,o), +(394,473,cs), +(394,532,o), +(368,560,o), +(329,560,cs), +(284,560,o), +(264,524,o), +(264,473,cs), +(264,416,o), +(290,385,o), +(329,385,cs) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,232,o), +(374,245,o), +(374,278,cs), +(374,306,o), +(370,324,o), +(352,324,cs), +(335,324,o), +(330,307,o), +(330,278,cs), +(330,246,o), +(339,232,o), +(352,232,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,145,o), +(220,194,o), +(220,269,cs), +(220,314,o), +(243,356,o), +(285,367,c), +(285,372,l), +(246,387,o), +(226,426,o), +(226,471,cs), +(226,541,o), +(271,588,o), +(352,588,cs), +(433,588,o), +(479,541,o), +(479,471,cs), +(479,422,o), +(457,386,o), +(419,372,c), +(419,367,l), +(460,357,o), +(485,315,o), +(485,269,cs), +(485,195,o), +(437,145,o), +(352,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,413,o), +(373,422,o), +(373,459,cs), +(373,481,o), +(369,501,o), +(352,501,cs), +(336,501,o), +(332,482,o), +(332,459,cs), +(332,421,o), +(340,413,o), +(352,413,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(258,143,o), +(210,192,o), +(210,267,cs), +(210,312,o), +(233,354,o), +(275,365,c), +(275,370,l), +(236,385,o), +(216,424,o), +(216,469,cs), +(216,539,o), +(261,586,o), +(342,586,cs), +(423,586,o), +(469,539,o), +(469,469,cs), +(469,420,o), +(447,384,o), +(409,370,c), +(409,365,l), +(450,355,o), +(475,313,o), +(475,267,cs), +(475,193,o), +(427,143,o), +(342,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(355,230,o), +(364,243,o), +(364,276,cs), +(364,304,o), +(360,322,o), +(342,322,cs), +(325,322,o), +(320,305,o), +(320,276,cs), +(320,244,o), +(329,230,o), +(342,230,cs) +); +}, +{ +closed = 1; +nodes = ( +(355,411,o), +(363,420,o), +(363,457,cs), +(363,479,o), +(359,499,o), +(342,499,cs), +(326,499,o), +(322,480,o), +(322,457,cs), +(322,419,o), +(330,411,o), +(342,411,cs) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(502,172,o), +(547,209,o), +(547,264,cs), +(547,313,o), +(517,356,o), +(436,356,cs), +(355,356,o), +(325,314,o), +(325,264,cs), +(325,209,o), +(370,172,o), +(436,172,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,142,o), +(289,190,o), +(289,261,cs), +(289,314,o), +(322,358,o), +(383,370,c), +(383,372,l), +(337,384,o), +(304,424,o), +(304,472,cs), +(304,541,o), +(356,585,o), +(436,585,cs), +(517,585,o), +(568,540,o), +(568,472,cs), +(568,424,o), +(535,384,o), +(488,372,c), +(488,370,l), +(550,358,o), +(583,314,o), +(583,261,cs), +(583,190,o), +(523,142,o), +(436,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(509,385,o), +(534,428,o), +(534,471,cs), +(534,512,o), +(510,556,o), +(436,556,cs), +(362,556,o), +(338,513,o), +(338,471,cs), +(338,428,o), +(363,385,o), +(436,385,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(328,143,o), +(269,191,o), +(269,262,cs), +(269,315,o), +(302,359,o), +(363,371,c), +(363,373,l), +(317,385,o), +(284,425,o), +(284,473,cs), +(284,542,o), +(336,586,o), +(416,586,cs), +(497,586,o), +(548,541,o), +(548,473,cs), +(548,425,o), +(515,385,o), +(468,373,c), +(468,371,l), +(530,359,o), +(563,315,o), +(563,262,cs), +(563,191,o), +(503,143,o), +(416,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,173,o), +(527,210,o), +(527,265,cs), +(527,314,o), +(497,357,o), +(416,357,cs), +(335,357,o), +(305,315,o), +(305,265,cs), +(305,210,o), +(350,173,o), +(416,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(489,386,o), +(514,429,o), +(514,472,cs), +(514,513,o), +(490,557,o), +(416,557,cs), +(342,557,o), +(318,514,o), +(318,472,cs), +(318,429,o), +(343,386,o), +(416,386,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(454,252,o), +(470,265,o), +(470,289,cs), +(470,313,o), +(452,326,o), +(427,326,cs), +(400,326,o), +(383,312,o), +(383,289,cs), +(383,265,o), +(399,252,o), +(427,252,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,144,o), +(253,194,o), +(253,270,cs), +(253,323,o), +(292,361,o), +(334,372,c), +(334,377,l), +(295,390,o), +(269,426,o), +(269,469,cs), +(269,545,o), +(332,587,o), +(427,587,cs), +(528,587,o), +(584,540,o), +(584,469,cs), +(584,426,o), +(558,390,o), +(519,377,c), +(519,372,l), +(564,360,o), +(600,320,o), +(600,270,cs), +(600,189,o), +(531,144,o), +(427,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,419,o), +(464,429,o), +(464,452,cs), +(464,473,o), +(448,484,o), +(427,484,cs), +(405,484,o), +(389,473,o), +(389,452,cs), +(389,429,o), +(407,419,o), +(427,419,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(295,145,o), +(233,195,o), +(233,271,cs), +(233,324,o), +(272,362,o), +(314,373,c), +(314,378,l), +(275,391,o), +(249,427,o), +(249,470,cs), +(249,546,o), +(312,588,o), +(407,588,cs), +(508,588,o), +(564,541,o), +(564,470,cs), +(564,427,o), +(538,391,o), +(499,378,c), +(499,373,l), +(544,361,o), +(580,321,o), +(580,271,cs), +(580,190,o), +(511,145,o), +(407,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,253,o), +(450,266,o), +(450,290,cs), +(450,314,o), +(432,327,o), +(407,327,cs), +(380,327,o), +(363,313,o), +(363,290,cs), +(363,266,o), +(379,253,o), +(407,253,cs) +); +}, +{ +closed = 1; +nodes = ( +(426,420,o), +(444,430,o), +(444,453,cs), +(444,474,o), +(428,485,o), +(407,485,cs), +(385,485,o), +(369,474,o), +(369,453,cs), +(369,430,o), +(387,420,o), +(407,420,cs) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,173,o), +(584,206,o), +(584,266,cs), +(584,330,o), +(532,356,o), +(442,356,cs), +(353,356,o), +(301,330,o), +(301,266,cs), +(301,206,o), +(348,173,o), +(442,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,142,o), +(262,185,o), +(262,262,cs), +(262,325,o), +(311,366,o), +(374,369,c), +(374,372,l), +(314,380,o), +(272,414,o), +(272,473,cs), +(272,552,o), +(347,584,o), +(442,584,cs), +(538,584,o), +(613,551,o), +(613,473,cs), +(613,415,o), +(573,381,o), +(510,372,c), +(510,369,l), +(576,366,o), +(622,324,o), +(622,262,cs), +(622,185,o), +(554,142,o), +(442,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(539,384,o), +(575,419,o), +(575,469,cs), +(575,530,o), +(519,554,o), +(442,554,cs), +(365,554,o), +(309,530,o), +(309,469,cs), +(309,419,o), +(345,384,o), +(442,384,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,145,o), +(252,188,o), +(252,265,cs), +(252,328,o), +(301,369,o), +(364,372,c), +(364,375,l), +(304,383,o), +(262,417,o), +(262,476,cs), +(262,555,o), +(337,587,o), +(432,587,cs), +(528,587,o), +(603,554,o), +(603,476,cs), +(603,418,o), +(563,384,o), +(500,375,c), +(500,372,l), +(566,369,o), +(612,327,o), +(612,265,cs), +(612,188,o), +(544,145,o), +(432,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,176,o), +(574,209,o), +(574,269,cs), +(574,333,o), +(522,359,o), +(432,359,cs), +(343,359,o), +(291,333,o), +(291,269,cs), +(291,209,o), +(338,176,o), +(432,176,cs) +); +}, +{ +closed = 1; +nodes = ( +(529,387,o), +(565,422,o), +(565,472,cs), +(565,533,o), +(509,557,o), +(432,557,cs), +(355,557,o), +(299,533,o), +(299,472,cs), +(299,422,o), +(335,387,o), +(432,387,cs) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,251,o), +(487,261,o), +(487,285,cs), +(487,305,o), +(472,320,o), +(431,320,cs), +(391,320,o), +(377,305,o), +(377,285,cs), +(377,261,o), +(400,251,o), +(431,251,cs) +); +}, +{ +closed = 1; +nodes = ( +(289,143,o), +(225,192,o), +(225,269,cs), +(225,318,o), +(257,361,o), +(311,369,c), +(311,373,l), +(264,383,o), +(235,418,o), +(235,465,cs), +(235,553,o), +(321,586,o), +(431,586,cs), +(543,586,o), +(629,553,o), +(629,465,cs), +(629,416,o), +(598,383,o), +(553,373,c), +(553,369,l), +(604,361,o), +(639,320,o), +(639,269,cs), +(639,193,o), +(576,143,o), +(431,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,413,o), +(480,425,o), +(480,446,cs), +(480,465,o), +(463,477,o), +(431,477,cs), +(400,477,o), +(384,465,o), +(384,446,cs), +(384,426,o), +(400,413,o), +(431,413,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,148,o), +(213,197,o), +(213,274,cs), +(213,323,o), +(245,366,o), +(299,374,c), +(299,378,l), +(252,388,o), +(223,423,o), +(223,470,cs), +(223,558,o), +(309,591,o), +(419,591,cs), +(531,591,o), +(617,558,o), +(617,470,cs), +(617,421,o), +(586,388,o), +(541,378,c), +(541,374,l), +(592,366,o), +(627,325,o), +(627,274,cs), +(627,198,o), +(564,148,o), +(419,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(452,256,o), +(475,266,o), +(475,290,cs), +(475,310,o), +(460,325,o), +(419,325,cs), +(379,325,o), +(365,310,o), +(365,290,cs), +(365,266,o), +(388,256,o), +(419,256,cs) +); +}, +{ +closed = 1; +nodes = ( +(452,418,o), +(468,430,o), +(468,451,cs), +(468,470,o), +(451,482,o), +(419,482,cs), +(388,482,o), +(372,470,o), +(372,451,cs), +(372,431,o), +(388,418,o), +(419,418,cs) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(502,172,o), +(547,209,o), +(547,264,cs), +(547,313,o), +(517,356,o), +(436,356,cs), +(355,356,o), +(325,314,o), +(325,264,cs), +(325,209,o), +(370,172,o), +(436,172,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,142,o), +(289,190,o), +(289,261,cs), +(289,314,o), +(322,358,o), +(383,370,c), +(383,372,l), +(337,384,o), +(304,424,o), +(304,472,cs), +(304,541,o), +(356,585,o), +(436,585,cs), +(517,585,o), +(568,540,o), +(568,472,cs), +(568,424,o), +(535,384,o), +(488,372,c), +(488,370,l), +(550,358,o), +(583,314,o), +(583,261,cs), +(583,190,o), +(523,142,o), +(436,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(509,385,o), +(534,428,o), +(534,471,cs), +(534,512,o), +(510,556,o), +(436,556,cs), +(362,556,o), +(338,513,o), +(338,471,cs), +(338,428,o), +(363,385,o), +(436,385,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,143,o), +(286,191,o), +(286,262,cs), +(286,315,o), +(319,359,o), +(378,371,c), +(378,373,l), +(334,385,o), +(301,425,o), +(301,473,cs), +(301,542,o), +(351,586,o), +(431,586,cs), +(510,586,o), +(559,541,o), +(559,473,cs), +(559,425,o), +(528,385,o), +(481,373,c), +(481,371,l), +(542,359,o), +(574,315,o), +(574,262,cs), +(574,191,o), +(516,143,o), +(431,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(495,173,o), +(540,210,o), +(540,265,cs), +(540,314,o), +(510,357,o), +(431,357,cs), +(350,357,o), +(322,315,o), +(322,265,cs), +(322,210,o), +(365,173,o), +(431,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(502,386,o), +(527,429,o), +(527,472,cs), +(527,513,o), +(503,557,o), +(431,557,cs), +(357,557,o), +(335,514,o), +(335,472,cs), +(335,429,o), +(358,386,o), +(431,386,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(454,252,o), +(470,265,o), +(470,289,cs), +(470,313,o), +(452,326,o), +(427,326,cs), +(400,326,o), +(383,312,o), +(383,289,cs), +(383,265,o), +(399,252,o), +(427,252,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,144,o), +(253,194,o), +(253,270,cs), +(253,323,o), +(292,361,o), +(334,372,c), +(334,377,l), +(295,390,o), +(269,426,o), +(269,469,cs), +(269,545,o), +(332,587,o), +(427,587,cs), +(528,587,o), +(584,540,o), +(584,469,cs), +(584,426,o), +(558,390,o), +(519,377,c), +(519,372,l), +(564,360,o), +(600,320,o), +(600,270,cs), +(600,189,o), +(531,144,o), +(427,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,419,o), +(464,429,o), +(464,452,cs), +(464,473,o), +(448,484,o), +(427,484,cs), +(405,484,o), +(389,473,o), +(389,452,cs), +(389,429,o), +(407,419,o), +(427,419,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,145,o), +(248,195,o), +(248,271,cs), +(248,324,o), +(286,362,o), +(327,373,c), +(327,378,l), +(289,391,o), +(263,426,o), +(263,470,cs), +(263,546,o), +(325,588,o), +(418,588,cs), +(517,588,o), +(571,541,o), +(571,470,cs), +(571,426,o), +(545,391,o), +(508,378,c), +(508,373,l), +(551,361,o), +(587,321,o), +(587,271,cs), +(587,190,o), +(520,145,o), +(418,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(444,253,o), +(458,266,o), +(458,290,cs), +(458,314,o), +(441,327,o), +(418,327,cs), +(393,327,o), +(376,313,o), +(376,290,cs), +(376,266,o), +(391,253,o), +(418,253,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,420,o), +(452,430,o), +(452,453,cs), +(452,474,o), +(437,485,o), +(418,485,cs), +(398,485,o), +(382,474,o), +(382,453,cs), +(382,430,o), +(400,420,o), +(418,420,cs) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(436,169,o), +(456,209,o), +(456,268,cs), +(456,330,o), +(429,361,o), +(386,361,cs), +(338,361,o), +(316,324,o), +(316,268,cs), +(316,196,o), +(345,169,o), +(386,169,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,144,o), +(286,193,o), +(286,266,cs), +(286,323,o), +(312,362,o), +(351,372,c), +(351,375,l), +(311,388,o), +(292,430,o), +(292,476,cs), +(292,546,o), +(330,586,o), +(386,586,cs), +(446,586,o), +(480,542,o), +(480,476,cs), +(480,430,o), +(461,388,o), +(421,375,c), +(421,372,l), +(463,361,o), +(486,319,o), +(486,266,cs), +(486,184,o), +(446,144,o), +(386,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(427,386,o), +(451,419,o), +(451,474,cs), +(451,533,o), +(425,561,o), +(386,561,cs), +(341,561,o), +(321,525,o), +(321,474,cs), +(321,417,o), +(347,386,o), +(386,386,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,143,o), +(286,192,o), +(286,265,cs), +(286,322,o), +(312,361,o), +(351,371,c), +(351,374,l), +(311,387,o), +(292,429,o), +(292,475,cs), +(292,545,o), +(330,585,o), +(386,585,cs), +(446,585,o), +(480,541,o), +(480,475,cs), +(480,429,o), +(461,387,o), +(421,374,c), +(421,371,l), +(463,360,o), +(486,318,o), +(486,265,cs), +(486,183,o), +(446,143,o), +(386,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(436,168,o), +(456,208,o), +(456,267,cs), +(456,329,o), +(429,360,o), +(386,360,cs), +(338,360,o), +(316,323,o), +(316,267,cs), +(316,195,o), +(345,168,o), +(386,168,cs) +); +}, +{ +closed = 1; +nodes = ( +(427,385,o), +(451,418,o), +(451,473,cs), +(451,532,o), +(425,560,o), +(386,560,cs), +(341,560,o), +(321,524,o), +(321,473,cs), +(321,416,o), +(347,385,o), +(386,385,cs) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(397,232,o), +(406,245,o), +(406,278,cs), +(406,306,o), +(402,324,o), +(384,324,cs), +(367,324,o), +(362,307,o), +(362,278,cs), +(362,246,o), +(371,232,o), +(384,232,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,145,o), +(252,194,o), +(252,269,cs), +(252,314,o), +(275,356,o), +(317,367,c), +(317,372,l), +(278,387,o), +(258,426,o), +(258,471,cs), +(258,541,o), +(303,588,o), +(384,588,cs), +(465,588,o), +(511,541,o), +(511,471,cs), +(511,422,o), +(489,386,o), +(451,372,c), +(451,367,l), +(492,357,o), +(517,315,o), +(517,269,cs), +(517,195,o), +(469,145,o), +(384,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(397,413,o), +(405,422,o), +(405,459,cs), +(405,481,o), +(401,501,o), +(384,501,cs), +(368,501,o), +(364,482,o), +(364,459,cs), +(364,421,o), +(372,413,o), +(384,413,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,143,o), +(252,192,o), +(252,267,cs), +(252,312,o), +(275,354,o), +(317,365,c), +(317,370,l), +(278,385,o), +(258,424,o), +(258,469,cs), +(258,539,o), +(303,586,o), +(384,586,cs), +(465,586,o), +(511,539,o), +(511,469,cs), +(511,420,o), +(489,384,o), +(451,370,c), +(451,365,l), +(492,355,o), +(517,313,o), +(517,267,cs), +(517,193,o), +(469,143,o), +(384,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(397,230,o), +(406,243,o), +(406,276,cs), +(406,304,o), +(402,322,o), +(384,322,cs), +(367,322,o), +(362,305,o), +(362,276,cs), +(362,244,o), +(371,230,o), +(384,230,cs) +); +}, +{ +closed = 1; +nodes = ( +(397,411,o), +(405,420,o), +(405,457,cs), +(405,479,o), +(401,499,o), +(384,499,cs), +(368,499,o), +(364,480,o), +(364,457,cs), +(364,419,o), +(372,411,o), +(384,411,cs) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(534,172,o), +(579,209,o), +(579,264,cs), +(579,313,o), +(549,356,o), +(468,356,cs), +(387,356,o), +(357,314,o), +(357,264,cs), +(357,209,o), +(402,172,o), +(468,172,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,142,o), +(321,190,o), +(321,261,cs), +(321,314,o), +(354,358,o), +(415,370,c), +(415,372,l), +(369,384,o), +(336,424,o), +(336,472,cs), +(336,541,o), +(388,585,o), +(468,585,cs), +(549,585,o), +(600,540,o), +(600,472,cs), +(600,424,o), +(567,384,o), +(520,372,c), +(520,370,l), +(582,358,o), +(615,314,o), +(615,261,cs), +(615,190,o), +(555,142,o), +(468,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(541,385,o), +(566,428,o), +(566,471,cs), +(566,512,o), +(542,556,o), +(468,556,cs), +(394,556,o), +(370,513,o), +(370,471,cs), +(370,428,o), +(395,385,o), +(468,385,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,143,o), +(321,191,o), +(321,262,cs), +(321,315,o), +(354,359,o), +(415,371,c), +(415,373,l), +(369,385,o), +(336,425,o), +(336,473,cs), +(336,542,o), +(388,586,o), +(468,586,cs), +(549,586,o), +(600,541,o), +(600,473,cs), +(600,425,o), +(567,385,o), +(520,373,c), +(520,371,l), +(582,359,o), +(615,315,o), +(615,262,cs), +(615,191,o), +(555,143,o), +(468,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(534,173,o), +(579,210,o), +(579,265,cs), +(579,314,o), +(549,357,o), +(468,357,cs), +(387,357,o), +(357,315,o), +(357,265,cs), +(357,210,o), +(402,173,o), +(468,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(541,386,o), +(566,429,o), +(566,472,cs), +(566,513,o), +(542,557,o), +(468,557,cs), +(394,557,o), +(370,514,o), +(370,472,cs), +(370,429,o), +(395,386,o), +(468,386,cs) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,252,o), +(498,265,o), +(498,289,cs), +(498,313,o), +(480,326,o), +(455,326,cs), +(428,326,o), +(411,312,o), +(411,289,cs), +(411,265,o), +(427,252,o), +(455,252,cs) +); +}, +{ +closed = 1; +nodes = ( +(343,144,o), +(281,194,o), +(281,270,cs), +(281,323,o), +(320,361,o), +(362,372,c), +(362,377,l), +(323,390,o), +(297,426,o), +(297,469,cs), +(297,545,o), +(360,587,o), +(455,587,cs), +(556,587,o), +(612,540,o), +(612,469,cs), +(612,426,o), +(586,390,o), +(547,377,c), +(547,372,l), +(592,360,o), +(628,320,o), +(628,270,cs), +(628,189,o), +(559,144,o), +(455,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(474,419,o), +(492,429,o), +(492,452,cs), +(492,473,o), +(476,484,o), +(455,484,cs), +(433,484,o), +(417,473,o), +(417,452,cs), +(417,429,o), +(435,419,o), +(455,419,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(344,145,o), +(282,195,o), +(282,271,cs), +(282,324,o), +(321,362,o), +(363,373,c), +(363,378,l), +(324,391,o), +(298,427,o), +(298,470,cs), +(298,546,o), +(361,588,o), +(456,588,cs), +(557,588,o), +(613,541,o), +(613,470,cs), +(613,427,o), +(587,391,o), +(548,378,c), +(548,373,l), +(593,361,o), +(629,321,o), +(629,271,cs), +(629,190,o), +(560,145,o), +(456,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(483,253,o), +(499,266,o), +(499,290,cs), +(499,314,o), +(481,327,o), +(456,327,cs), +(429,327,o), +(412,313,o), +(412,290,cs), +(412,266,o), +(428,253,o), +(456,253,cs) +); +}, +{ +closed = 1; +nodes = ( +(475,420,o), +(493,430,o), +(493,453,cs), +(493,474,o), +(477,485,o), +(456,485,cs), +(434,485,o), +(418,474,o), +(418,453,cs), +(418,430,o), +(436,420,o), +(456,420,cs) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(567,173,o), +(615,206,o), +(615,266,cs), +(615,330,o), +(563,356,o), +(473,356,cs), +(384,356,o), +(332,330,o), +(332,266,cs), +(332,206,o), +(379,173,o), +(473,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(361,142,o), +(293,185,o), +(293,262,cs), +(293,325,o), +(342,366,o), +(405,369,c), +(405,372,l), +(345,380,o), +(303,414,o), +(303,473,cs), +(303,552,o), +(378,584,o), +(473,584,cs), +(569,584,o), +(644,551,o), +(644,473,cs), +(644,415,o), +(604,381,o), +(541,372,c), +(541,369,l), +(607,366,o), +(653,324,o), +(653,262,cs), +(653,185,o), +(585,142,o), +(473,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(570,384,o), +(606,419,o), +(606,469,cs), +(606,530,o), +(550,554,o), +(473,554,cs), +(396,554,o), +(340,530,o), +(340,469,cs), +(340,419,o), +(376,384,o), +(473,384,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(361,145,o), +(293,188,o), +(293,265,cs), +(293,328,o), +(342,369,o), +(405,372,c), +(405,375,l), +(345,383,o), +(303,417,o), +(303,476,cs), +(303,555,o), +(378,587,o), +(473,587,cs), +(569,587,o), +(644,554,o), +(644,476,cs), +(644,418,o), +(604,384,o), +(541,375,c), +(541,372,l), +(607,369,o), +(653,327,o), +(653,265,cs), +(653,188,o), +(585,145,o), +(473,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(567,176,o), +(615,209,o), +(615,269,cs), +(615,333,o), +(563,359,o), +(473,359,cs), +(384,359,o), +(332,333,o), +(332,269,cs), +(332,209,o), +(379,176,o), +(473,176,cs) +); +}, +{ +closed = 1; +nodes = ( +(570,387,o), +(606,422,o), +(606,472,cs), +(606,533,o), +(550,557,o), +(473,557,cs), +(396,557,o), +(340,533,o), +(340,472,cs), +(340,422,o), +(376,387,o), +(473,387,cs) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(493,251,o), +(516,261,o), +(516,285,cs), +(516,305,o), +(501,320,o), +(460,320,cs), +(420,320,o), +(406,305,o), +(406,285,cs), +(406,261,o), +(429,251,o), +(460,251,cs) +); +}, +{ +closed = 1; +nodes = ( +(318,143,o), +(254,192,o), +(254,269,cs), +(254,318,o), +(286,361,o), +(340,369,c), +(340,373,l), +(293,383,o), +(264,418,o), +(264,465,cs), +(264,553,o), +(350,586,o), +(460,586,cs), +(572,586,o), +(658,553,o), +(658,465,cs), +(658,416,o), +(627,383,o), +(582,373,c), +(582,369,l), +(633,361,o), +(668,320,o), +(668,269,cs), +(668,193,o), +(605,143,o), +(460,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(493,413,o), +(509,425,o), +(509,446,cs), +(509,465,o), +(492,477,o), +(460,477,cs), +(429,477,o), +(413,465,o), +(413,446,cs), +(413,426,o), +(429,413,o), +(460,413,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,148,o), +(252,197,o), +(252,274,cs), +(252,323,o), +(284,366,o), +(338,374,c), +(338,378,l), +(291,388,o), +(262,423,o), +(262,470,cs), +(262,558,o), +(348,591,o), +(458,591,cs), +(570,591,o), +(656,558,o), +(656,470,cs), +(656,421,o), +(625,388,o), +(580,378,c), +(580,374,l), +(631,366,o), +(666,325,o), +(666,274,cs), +(666,198,o), +(603,148,o), +(458,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(491,256,o), +(514,266,o), +(514,290,cs), +(514,310,o), +(499,325,o), +(458,325,cs), +(418,325,o), +(404,310,o), +(404,290,cs), +(404,266,o), +(427,256,o), +(458,256,cs) +); +}, +{ +closed = 1; +nodes = ( +(491,418,o), +(507,430,o), +(507,451,cs), +(507,470,o), +(490,482,o), +(458,482,cs), +(427,482,o), +(411,470,o), +(411,451,cs), +(411,431,o), +(427,418,o), +(458,418,cs) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 10109; +userData = { +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eight.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.circled.glyph new file mode 100644 index 00000000..99213f19 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.circled.glyph @@ -0,0 +1,2187 @@ +{ +color = 0; +glyphname = eight.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,144,o), +(449,184,o), +(449,266,cs), +(449,319,o), +(426,361,o), +(384,372,c), +(384,375,l), +(424,388,o), +(443,430,o), +(443,476,cs), +(443,542,o), +(409,586,o), +(349,586,cs), +(293,586,o), +(255,546,o), +(255,476,cs), +(255,430,o), +(274,388,o), +(314,375,c), +(314,372,l), +(275,362,o), +(249,323,o), +(249,266,cs), +(249,193,o), +(282,144,o), +(349,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,169,o), +(279,196,o), +(279,268,cs), +(279,324,o), +(301,361,o), +(349,361,cs), +(392,361,o), +(419,330,o), +(419,268,cs), +(419,209,o), +(399,169,o), +(349,169,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,386,o), +(284,417,o), +(284,474,cs), +(284,525,o), +(304,561,o), +(349,561,cs), +(388,561,o), +(414,533,o), +(414,474,cs), +(414,419,o), +(390,386,o), +(349,386,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (207,188); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,145,o), +(485,195,o), +(485,269,cs), +(485,315,o), +(460,357,o), +(419,367,c), +(419,372,l), +(457,386,o), +(479,422,o), +(479,471,cs), +(479,541,o), +(433,588,o), +(352,588,cs), +(271,588,o), +(226,541,o), +(226,471,cs), +(226,426,o), +(246,387,o), +(285,372,c), +(285,367,l), +(243,356,o), +(220,314,o), +(220,269,cs), +(220,194,o), +(268,145,o), +(352,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,232,o), +(330,246,o), +(330,278,cs), +(330,307,o), +(335,324,o), +(352,324,cs), +(370,324,o), +(374,306,o), +(374,278,cs), +(374,245,o), +(365,232,o), +(352,232,cs) +); +}, +{ +closed = 1; +nodes = ( +(340,413,o), +(332,421,o), +(332,459,cs), +(332,482,o), +(336,501,o), +(352,501,cs), +(369,501,o), +(373,481,o), +(373,459,cs), +(373,422,o), +(365,413,o), +(352,413,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (207,189); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(554,142,o), +(622,185,o), +(622,262,cs), +(622,324,o), +(576,366,o), +(510,369,c), +(510,372,l), +(573,381,o), +(613,415,o), +(613,473,cs), +(613,551,o), +(538,584,o), +(442,584,cs), +(347,584,o), +(272,552,o), +(272,473,cs), +(272,414,o), +(314,380,o), +(374,372,c), +(374,369,l), +(311,366,o), +(262,325,o), +(262,262,cs), +(262,185,o), +(330,142,o), +(442,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,173,o), +(301,206,o), +(301,266,cs), +(301,330,o), +(353,356,o), +(442,356,cs), +(532,356,o), +(584,330,o), +(584,266,cs), +(584,206,o), +(536,173,o), +(442,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,384,o), +(309,419,o), +(309,469,cs), +(309,530,o), +(365,554,o), +(442,554,cs), +(519,554,o), +(575,530,o), +(575,469,cs), +(575,419,o), +(539,384,o), +(442,384,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (222,190); +ref = eightinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(576,143,o), +(639,193,o), +(639,269,cs), +(639,320,o), +(604,361,o), +(553,369,c), +(553,373,l), +(598,383,o), +(629,416,o), +(629,465,cs), +(629,553,o), +(543,586,o), +(431,586,cs), +(321,586,o), +(235,553,o), +(235,465,cs), +(235,418,o), +(264,383,o), +(311,373,c), +(311,369,l), +(257,361,o), +(225,318,o), +(225,269,cs), +(225,192,o), +(289,143,o), +(431,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(400,251,o), +(377,261,o), +(377,285,cs), +(377,305,o), +(391,320,o), +(431,320,cs), +(472,320,o), +(487,305,o), +(487,285,cs), +(487,261,o), +(464,251,o), +(431,251,cs) +); +}, +{ +closed = 1; +nodes = ( +(400,413,o), +(384,426,o), +(384,446,cs), +(384,465,o), +(400,477,o), +(431,477,cs), +(463,477,o), +(480,465,o), +(480,446,cs), +(480,425,o), +(464,413,o), +(431,413,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (206,193); +ref = eightinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,144,o), +(449,184,o), +(449,266,cs), +(449,319,o), +(426,361,o), +(384,372,c), +(384,375,l), +(424,388,o), +(443,430,o), +(443,476,cs), +(443,542,o), +(409,586,o), +(349,586,cs), +(293,586,o), +(255,546,o), +(255,476,cs), +(255,430,o), +(274,388,o), +(314,375,c), +(314,372,l), +(275,362,o), +(249,323,o), +(249,266,cs), +(249,193,o), +(282,144,o), +(349,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,169,o), +(279,196,o), +(279,268,cs), +(279,324,o), +(301,361,o), +(349,361,cs), +(392,361,o), +(419,330,o), +(419,268,cs), +(419,209,o), +(399,169,o), +(349,169,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,386,o), +(284,417,o), +(284,474,cs), +(284,525,o), +(304,561,o), +(349,561,cs), +(388,561,o), +(414,533,o), +(414,474,cs), +(414,419,o), +(390,386,o), +(349,386,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (207,188); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,145,o), +(485,195,o), +(485,269,cs), +(485,315,o), +(460,357,o), +(419,367,c), +(419,372,l), +(457,386,o), +(479,422,o), +(479,471,cs), +(479,541,o), +(433,588,o), +(352,588,cs), +(271,588,o), +(226,541,o), +(226,471,cs), +(226,426,o), +(246,387,o), +(285,372,c), +(285,367,l), +(243,356,o), +(220,314,o), +(220,269,cs), +(220,194,o), +(268,145,o), +(352,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,232,o), +(330,246,o), +(330,278,cs), +(330,307,o), +(335,324,o), +(352,324,cs), +(370,324,o), +(374,306,o), +(374,278,cs), +(374,245,o), +(365,232,o), +(352,232,cs) +); +}, +{ +closed = 1; +nodes = ( +(340,413,o), +(332,421,o), +(332,459,cs), +(332,482,o), +(336,501,o), +(352,501,cs), +(369,501,o), +(373,481,o), +(373,459,cs), +(373,422,o), +(365,413,o), +(352,413,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (206,189); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,142,o), +(583,190,o), +(583,261,cs), +(583,314,o), +(550,358,o), +(488,370,c), +(488,372,l), +(535,384,o), +(568,424,o), +(568,472,cs), +(568,540,o), +(517,585,o), +(436,585,cs), +(356,585,o), +(304,541,o), +(304,472,cs), +(304,424,o), +(337,384,o), +(383,372,c), +(383,370,l), +(322,358,o), +(289,314,o), +(289,261,cs), +(289,190,o), +(348,142,o), +(436,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,172,o), +(325,209,o), +(325,264,cs), +(325,314,o), +(355,356,o), +(436,356,cs), +(517,356,o), +(547,313,o), +(547,264,cs), +(547,209,o), +(502,172,o), +(436,172,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,385,o), +(338,428,o), +(338,471,cs), +(338,513,o), +(362,556,o), +(436,556,cs), +(510,556,o), +(534,512,o), +(534,471,cs), +(534,428,o), +(509,385,o), +(436,385,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (230,189); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 871; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(531,144,o), +(600,189,o), +(600,270,cs), +(600,320,o), +(564,360,o), +(519,372,c), +(519,377,l), +(558,390,o), +(584,426,o), +(584,469,cs), +(584,540,o), +(528,587,o), +(427,587,cs), +(332,587,o), +(269,545,o), +(269,469,cs), +(269,426,o), +(295,390,o), +(334,377,c), +(334,372,l), +(292,361,o), +(253,323,o), +(253,270,cs), +(253,194,o), +(315,144,o), +(427,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(399,252,o), +(383,265,o), +(383,289,cs), +(383,312,o), +(400,326,o), +(427,326,cs), +(452,326,o), +(470,313,o), +(470,289,cs), +(470,265,o), +(454,252,o), +(427,252,cs) +); +}, +{ +closed = 1; +nodes = ( +(407,419,o), +(389,429,o), +(389,452,cs), +(389,473,o), +(405,484,o), +(427,484,cs), +(448,484,o), +(464,473,o), +(464,452,cs), +(464,429,o), +(446,419,o), +(427,419,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (227,191); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 835; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(554,142,o), +(622,185,o), +(622,262,cs), +(622,324,o), +(576,366,o), +(510,369,c), +(510,372,l), +(573,381,o), +(613,415,o), +(613,473,cs), +(613,551,o), +(538,584,o), +(442,584,cs), +(347,584,o), +(272,552,o), +(272,473,cs), +(272,414,o), +(314,380,o), +(374,372,c), +(374,369,l), +(311,366,o), +(262,325,o), +(262,262,cs), +(262,185,o), +(330,142,o), +(442,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,173,o), +(301,206,o), +(301,266,cs), +(301,330,o), +(353,356,o), +(442,356,cs), +(532,356,o), +(584,330,o), +(584,266,cs), +(584,206,o), +(536,173,o), +(442,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,384,o), +(309,419,o), +(309,469,cs), +(309,530,o), +(365,554,o), +(442,554,cs), +(519,554,o), +(575,530,o), +(575,469,cs), +(575,419,o), +(539,384,o), +(442,384,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (222,190); +ref = eightinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(576,143,o), +(639,193,o), +(639,269,cs), +(639,320,o), +(604,361,o), +(553,369,c), +(553,373,l), +(598,383,o), +(629,416,o), +(629,465,cs), +(629,553,o), +(543,586,o), +(431,586,cs), +(321,586,o), +(235,553,o), +(235,465,cs), +(235,418,o), +(264,383,o), +(311,373,c), +(311,369,l), +(257,361,o), +(225,318,o), +(225,269,cs), +(225,192,o), +(289,143,o), +(431,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(400,251,o), +(377,261,o), +(377,285,cs), +(377,305,o), +(391,320,o), +(431,320,cs), +(472,320,o), +(487,305,o), +(487,285,cs), +(487,261,o), +(464,251,o), +(431,251,cs) +); +}, +{ +closed = 1; +nodes = ( +(400,413,o), +(384,426,o), +(384,446,cs), +(384,465,o), +(400,477,o), +(431,477,cs), +(463,477,o), +(480,465,o), +(480,446,cs), +(480,425,o), +(464,413,o), +(431,413,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (206,193); +ref = eightinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,142,o), +(583,190,o), +(583,261,cs), +(583,314,o), +(550,358,o), +(488,370,c), +(488,372,l), +(535,384,o), +(568,424,o), +(568,472,cs), +(568,540,o), +(517,585,o), +(436,585,cs), +(356,585,o), +(304,541,o), +(304,472,cs), +(304,424,o), +(337,384,o), +(383,372,c), +(383,370,l), +(322,358,o), +(289,314,o), +(289,261,cs), +(289,190,o), +(348,142,o), +(436,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,172,o), +(325,209,o), +(325,264,cs), +(325,314,o), +(355,356,o), +(436,356,cs), +(517,356,o), +(547,313,o), +(547,264,cs), +(547,209,o), +(502,172,o), +(436,172,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,385,o), +(338,428,o), +(338,471,cs), +(338,513,o), +(362,556,o), +(436,556,cs), +(510,556,o), +(534,512,o), +(534,471,cs), +(534,428,o), +(509,385,o), +(436,385,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (226,189); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(531,144,o), +(600,189,o), +(600,270,cs), +(600,320,o), +(564,360,o), +(519,372,c), +(519,377,l), +(558,390,o), +(584,426,o), +(584,469,cs), +(584,540,o), +(528,587,o), +(427,587,cs), +(332,587,o), +(269,545,o), +(269,469,cs), +(269,426,o), +(295,390,o), +(334,377,c), +(334,372,l), +(292,361,o), +(253,323,o), +(253,270,cs), +(253,194,o), +(315,144,o), +(427,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(399,252,o), +(383,265,o), +(383,289,cs), +(383,312,o), +(400,326,o), +(427,326,cs), +(452,326,o), +(470,313,o), +(470,289,cs), +(470,265,o), +(454,252,o), +(427,252,cs) +); +}, +{ +closed = 1; +nodes = ( +(407,419,o), +(389,429,o), +(389,452,cs), +(389,473,o), +(405,484,o), +(427,484,cs), +(448,484,o), +(464,473,o), +(464,452,cs), +(464,429,o), +(446,419,o), +(427,419,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (225,191); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,144,o), +(486,184,o), +(486,266,cs), +(486,319,o), +(463,361,o), +(421,372,c), +(421,375,l), +(461,388,o), +(480,430,o), +(480,476,cs), +(480,542,o), +(446,586,o), +(386,586,cs), +(330,586,o), +(292,546,o), +(292,476,cs), +(292,430,o), +(311,388,o), +(351,375,c), +(351,372,l), +(312,362,o), +(286,323,o), +(286,266,cs), +(286,193,o), +(319,144,o), +(386,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,169,o), +(316,196,o), +(316,268,cs), +(316,324,o), +(338,361,o), +(386,361,cs), +(429,361,o), +(456,330,o), +(456,268,cs), +(456,209,o), +(436,169,o), +(386,169,cs) +); +}, +{ +closed = 1; +nodes = ( +(347,386,o), +(321,417,o), +(321,474,cs), +(321,525,o), +(341,561,o), +(386,561,cs), +(425,561,o), +(451,533,o), +(451,474,cs), +(451,419,o), +(427,386,o), +(386,386,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (244,188); +ref = eightinferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,145,o), +(517,195,o), +(517,269,cs), +(517,315,o), +(492,357,o), +(451,367,c), +(451,372,l), +(489,386,o), +(511,422,o), +(511,471,cs), +(511,541,o), +(465,588,o), +(384,588,cs), +(303,588,o), +(258,541,o), +(258,471,cs), +(258,426,o), +(278,387,o), +(317,372,c), +(317,367,l), +(275,356,o), +(252,314,o), +(252,269,cs), +(252,194,o), +(300,145,o), +(384,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,232,o), +(362,246,o), +(362,278,cs), +(362,307,o), +(367,324,o), +(384,324,cs), +(402,324,o), +(406,306,o), +(406,278,cs), +(406,245,o), +(397,232,o), +(384,232,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,413,o), +(364,421,o), +(364,459,cs), +(364,482,o), +(368,501,o), +(384,501,cs), +(401,501,o), +(405,481,o), +(405,459,cs), +(405,422,o), +(397,413,o), +(384,413,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (239,189); +ref = eightinferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(555,142,o), +(615,190,o), +(615,261,cs), +(615,314,o), +(582,358,o), +(520,370,c), +(520,372,l), +(567,384,o), +(600,424,o), +(600,472,cs), +(600,540,o), +(549,585,o), +(468,585,cs), +(388,585,o), +(336,541,o), +(336,472,cs), +(336,424,o), +(369,384,o), +(415,372,c), +(415,370,l), +(354,358,o), +(321,314,o), +(321,261,cs), +(321,190,o), +(380,142,o), +(468,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(402,172,o), +(357,209,o), +(357,264,cs), +(357,314,o), +(387,356,o), +(468,356,cs), +(549,356,o), +(579,313,o), +(579,264,cs), +(579,209,o), +(534,172,o), +(468,172,cs) +); +}, +{ +closed = 1; +nodes = ( +(395,385,o), +(370,428,o), +(370,471,cs), +(370,513,o), +(394,556,o), +(468,556,cs), +(542,556,o), +(566,512,o), +(566,471,cs), +(566,428,o), +(541,385,o), +(468,385,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = master01; +pos = (284,186); +ref = eightinferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(559,144,o), +(628,189,o), +(628,270,cs), +(628,320,o), +(592,360,o), +(547,372,c), +(547,377,l), +(586,390,o), +(612,426,o), +(612,469,cs), +(612,540,o), +(556,587,o), +(455,587,cs), +(360,587,o), +(297,545,o), +(297,469,cs), +(297,426,o), +(323,390,o), +(362,377,c), +(362,372,l), +(320,361,o), +(281,323,o), +(281,270,cs), +(281,194,o), +(343,144,o), +(455,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(427,252,o), +(411,265,o), +(411,289,cs), +(411,312,o), +(428,326,o), +(455,326,cs), +(480,326,o), +(498,313,o), +(498,289,cs), +(498,265,o), +(482,252,o), +(455,252,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,419,o), +(417,429,o), +(417,452,cs), +(417,473,o), +(433,484,o), +(455,484,cs), +(476,484,o), +(492,473,o), +(492,452,cs), +(492,429,o), +(474,419,o), +(455,419,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (280,188); +ref = eightinferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(585,142,o), +(653,185,o), +(653,262,cs), +(653,324,o), +(607,366,o), +(541,369,c), +(541,372,l), +(604,381,o), +(644,415,o), +(644,473,cs), +(644,551,o), +(569,584,o), +(473,584,cs), +(378,584,o), +(303,552,o), +(303,473,cs), +(303,414,o), +(345,380,o), +(405,372,c), +(405,369,l), +(342,366,o), +(293,325,o), +(293,262,cs), +(293,185,o), +(361,142,o), +(473,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(379,173,o), +(332,206,o), +(332,266,cs), +(332,330,o), +(384,356,o), +(473,356,cs), +(563,356,o), +(615,330,o), +(615,266,cs), +(615,206,o), +(567,173,o), +(473,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(376,384,o), +(340,419,o), +(340,469,cs), +(340,530,o), +(396,554,o), +(473,554,cs), +(550,554,o), +(606,530,o), +(606,469,cs), +(606,419,o), +(570,384,o), +(473,384,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (253,190); +ref = eightinferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(605,143,o), +(668,193,o), +(668,269,cs), +(668,320,o), +(633,361,o), +(582,369,c), +(582,373,l), +(627,383,o), +(658,416,o), +(658,465,cs), +(658,553,o), +(572,586,o), +(460,586,cs), +(350,586,o), +(264,553,o), +(264,465,cs), +(264,418,o), +(293,383,o), +(340,373,c), +(340,369,l), +(286,361,o), +(254,318,o), +(254,269,cs), +(254,192,o), +(318,143,o), +(460,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(429,251,o), +(406,261,o), +(406,285,cs), +(406,305,o), +(420,320,o), +(460,320,cs), +(501,320,o), +(516,305,o), +(516,285,cs), +(516,261,o), +(493,251,o), +(460,251,cs) +); +}, +{ +closed = 1; +nodes = ( +(429,413,o), +(413,426,o), +(413,446,cs), +(413,465,o), +(429,477,o), +(460,477,cs), +(492,477,o), +(509,465,o), +(509,446,cs), +(509,425,o), +(493,413,o), +(460,413,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (235,193); +ref = eightinferior; +} +); +width = 880; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9319; +userData = { +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eight.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.dnom.glyph new file mode 100644 index 00000000..07809e37 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.dnom.glyph @@ -0,0 +1,1522 @@ +{ +glyphname = eight.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,-5,o), +(247,38,o), +(247,102,cs), +(247,140,o), +(228,177,o), +(190,187,c), +(190,191,l), +(225,204,o), +(242,237,o), +(242,277,cs), +(242,338,o), +(202,379,o), +(131,379,cs), +(59,379,o), +(19,338,o), +(19,277,cs), +(19,238,o), +(36,205,o), +(71,191,c), +(71,187,l), +(35,178,o), +(14,142,o), +(14,102,cs), +(14,38,o), +(56,-5,o), +(131,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,74,o), +(114,85,o), +(114,110,cs), +(114,135,o), +(118,148,o), +(131,148,cs), +(144,148,o), +(147,134,o), +(147,110,cs), +(147,83,o), +(139,74,o), +(131,74,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,229,o), +(116,235,o), +(116,266,cs), +(116,284,o), +(118,299,o), +(131,299,cs), +(144,299,o), +(146,282,o), +(146,266,cs), +(146,235,o), +(140,229,o), +(131,229,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 261; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-5,o), +(227,33,o), +(227,107,cs), +(227,153,o), +(208,194,o), +(168,205,c), +(168,207,l), +(204,219,o), +(222,256,o), +(222,300,cs), +(222,360,o), +(191,401,o), +(136,401,cs), +(84,401,o), +(50,364,o), +(50,300,cs), +(50,257,o), +(67,219,o), +(103,207,c), +(103,205,l), +(64,194,o), +(44,155,o), +(44,107,cs), +(44,40,o), +(75,-5,o), +(136,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(98,18,o), +(71,43,o), +(71,109,cs), +(71,161,o), +(92,194,o), +(136,194,cs), +(175,194,o), +(200,166,o), +(200,109,cs), +(200,54,o), +(181,18,o), +(136,18,cs) +); +}, +{ +closed = 1; +nodes = ( +(100,217,o), +(76,245,o), +(76,298,cs), +(76,346,o), +(95,378,o), +(136,378,cs), +(172,378,o), +(195,351,o), +(195,298,cs), +(195,249,o), +(174,217,o), +(136,217,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 271; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,-4,o), +(373,34,o), +(373,106,cs), +(373,164,o), +(328,201,o), +(270,204,c), +(270,206,l), +(328,214,o), +(365,247,o), +(365,299,cs), +(365,371,o), +(295,401,o), +(208,401,cs), +(119,401,o), +(51,371,o), +(51,299,cs), +(51,247,o), +(87,214,o), +(145,206,c), +(145,204,l), +(90,201,o), +(42,166,o), +(42,106,cs), +(42,34,o), +(106,-4,o), +(208,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,24,o), +(79,55,o), +(79,110,cs), +(79,167,o), +(126,191,o), +(208,191,cs), +(288,191,o), +(336,168,o), +(336,110,cs), +(336,55,o), +(293,24,o), +(208,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(120,218,o), +(86,249,o), +(86,295,cs), +(86,350,o), +(137,373,o), +(208,373,cs), +(278,373,o), +(329,350,o), +(329,295,cs), +(329,250,o), +(297,218,o), +(208,218,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 415; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,-5,o), +(388,39,o), +(388,105,cs), +(388,147,o), +(357,185,o), +(309,191,c), +(309,195,l), +(353,204,o), +(379,235,o), +(379,275,cs), +(379,351,o), +(302,380,o), +(203,380,cs), +(105,380,o), +(28,351,o), +(28,275,cs), +(28,232,o), +(57,203,o), +(99,195,c), +(99,191,l), +(51,185,o), +(19,149,o), +(19,105,cs), +(19,38,o), +(77,-5,o), +(203,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,88,o), +(147,97,o), +(147,118,cs), +(147,137,o), +(164,150,o), +(203,150,cs), +(243,150,o), +(259,137,o), +(259,118,cs), +(259,97,o), +(237,88,o), +(203,88,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,229,o), +(154,240,o), +(154,259,cs), +(154,276,o), +(171,287,o), +(203,287,cs), +(235,287,o), +(253,276,o), +(253,259,cs), +(253,240,o), +(236,229,o), +(203,229,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 407; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(171,-5,o), +(207,33,o), +(207,107,cs), +(207,153,o), +(188,194,o), +(148,205,c), +(148,207,l), +(184,219,o), +(202,256,o), +(202,300,cs), +(202,360,o), +(171,401,o), +(116,401,cs), +(64,401,o), +(30,364,o), +(30,300,cs), +(30,257,o), +(47,219,o), +(83,207,c), +(83,205,l), +(44,194,o), +(24,155,o), +(24,107,cs), +(24,40,o), +(55,-5,o), +(116,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(78,18,o), +(51,43,o), +(51,109,cs), +(51,161,o), +(72,194,o), +(116,194,cs), +(155,194,o), +(180,166,o), +(180,109,cs), +(180,54,o), +(161,18,o), +(116,18,cs) +); +}, +{ +closed = 1; +nodes = ( +(80,217,o), +(56,245,o), +(56,298,cs), +(56,346,o), +(75,378,o), +(116,378,cs), +(152,378,o), +(175,351,o), +(175,298,cs), +(175,249,o), +(154,217,o), +(116,217,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 231; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,-5,o), +(238,38,o), +(238,102,cs), +(238,140,o), +(219,177,o), +(181,187,c), +(181,191,l), +(216,204,o), +(233,237,o), +(233,277,cs), +(233,338,o), +(193,379,o), +(122,379,cs), +(50,379,o), +(10,338,o), +(10,277,cs), +(10,238,o), +(27,205,o), +(62,191,c), +(62,187,l), +(26,178,o), +(5,142,o), +(5,102,cs), +(5,38,o), +(47,-5,o), +(122,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,74,o), +(105,85,o), +(105,110,cs), +(105,135,o), +(109,148,o), +(122,148,cs), +(135,148,o), +(138,134,o), +(138,110,cs), +(138,83,o), +(130,74,o), +(122,74,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,229,o), +(107,235,o), +(107,266,cs), +(107,284,o), +(109,299,o), +(122,299,cs), +(135,299,o), +(137,282,o), +(137,266,cs), +(137,235,o), +(131,229,o), +(122,229,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 243; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,-6,o), +(310,38,o), +(310,104,cs), +(310,153,o), +(279,193,o), +(224,204,c), +(224,206,l), +(267,217,o), +(297,253,o), +(297,297,cs), +(297,360,o), +(250,401,o), +(176,401,cs), +(102,401,o), +(54,360,o), +(54,297,cs), +(54,253,o), +(84,217,o), +(127,206,c), +(127,204,l), +(73,193,o), +(41,154,o), +(41,104,cs), +(41,39,o), +(95,-6,o), +(176,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(115,22,o), +(74,56,o), +(74,107,cs), +(74,152,o), +(102,191,o), +(176,191,cs), +(250,191,o), +(277,152,o), +(277,107,cs), +(277,56,o), +(236,22,o), +(176,22,cs) +); +}, +{ +closed = 1; +nodes = ( +(108,218,o), +(86,257,o), +(86,296,cs), +(86,335,o), +(108,374,o), +(176,374,cs), +(243,374,o), +(265,335,o), +(265,296,cs), +(265,257,o), +(243,218,o), +(176,218,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 351; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(256,-5,o), +(319,33,o), +(319,104,cs), +(319,149,o), +(286,182,o), +(246,192,c), +(246,197,l), +(279,207,o), +(305,238,o), +(305,276,cs), +(305,338,o), +(254,379,o), +(164,379,cs), +(79,379,o), +(22,342,o), +(22,276,cs), +(22,240,o), +(46,208,o), +(81,197,c), +(81,192,l), +(41,182,o), +(8,149,o), +(8,104,cs), +(8,38,o), +(64,-5,o), +(164,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(138,90,o), +(123,101,o), +(123,121,cs), +(123,141,o), +(139,152,o), +(164,152,cs), +(188,152,o), +(204,141,o), +(204,121,cs), +(204,101,o), +(189,90,o), +(164,90,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,234,o), +(128,242,o), +(128,261,cs), +(128,279,o), +(143,288,o), +(164,288,cs), +(184,288,o), +(199,279,o), +(199,261,cs), +(199,242,o), +(183,234,o), +(164,234,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 327; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-4,o), +(363,34,o), +(363,106,cs), +(363,164,o), +(318,201,o), +(260,204,c), +(260,206,l), +(318,214,o), +(355,247,o), +(355,299,cs), +(355,371,o), +(285,401,o), +(198,401,cs), +(109,401,o), +(41,371,o), +(41,299,cs), +(41,247,o), +(77,214,o), +(135,206,c), +(135,204,l), +(80,201,o), +(32,166,o), +(32,106,cs), +(32,34,o), +(96,-4,o), +(198,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,24,o), +(69,55,o), +(69,110,cs), +(69,167,o), +(116,191,o), +(198,191,cs), +(278,191,o), +(326,168,o), +(326,110,cs), +(326,55,o), +(283,24,o), +(198,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(110,218,o), +(76,249,o), +(76,295,cs), +(76,350,o), +(127,373,o), +(198,373,cs), +(268,373,o), +(319,350,o), +(319,295,cs), +(319,250,o), +(287,218,o), +(198,218,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 395; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(321,-5,o), +(378,39,o), +(378,105,cs), +(378,147,o), +(347,185,o), +(299,191,c), +(299,195,l), +(343,204,o), +(369,235,o), +(369,275,cs), +(369,351,o), +(292,380,o), +(193,380,cs), +(95,380,o), +(18,351,o), +(18,275,cs), +(18,232,o), +(47,203,o), +(89,195,c), +(89,191,l), +(41,185,o), +(9,149,o), +(9,105,cs), +(9,38,o), +(67,-5,o), +(193,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,88,o), +(137,97,o), +(137,118,cs), +(137,137,o), +(154,150,o), +(193,150,cs), +(233,150,o), +(249,137,o), +(249,118,cs), +(249,97,o), +(227,88,o), +(193,88,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,229,o), +(144,240,o), +(144,259,cs), +(144,276,o), +(161,287,o), +(193,287,cs), +(225,287,o), +(243,276,o), +(243,259,cs), +(243,240,o), +(226,229,o), +(193,229,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 387; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(272,-6,o), +(327,38,o), +(327,104,cs), +(327,153,o), +(296,193,o), +(243,204,c), +(243,206,l), +(284,217,o), +(314,253,o), +(314,297,cs), +(314,360,o), +(267,401,o), +(195,401,cs), +(123,401,o), +(75,360,o), +(75,297,cs), +(75,253,o), +(105,217,o), +(148,206,c), +(148,204,l), +(94,193,o), +(62,154,o), +(62,104,cs), +(62,39,o), +(116,-6,o), +(195,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,22,o), +(95,56,o), +(95,107,cs), +(95,152,o), +(123,191,o), +(195,191,cs), +(267,191,o), +(294,152,o), +(294,107,cs), +(294,56,o), +(253,22,o), +(195,22,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,218,o), +(107,257,o), +(107,296,cs), +(107,335,o), +(129,374,o), +(195,374,cs), +(260,374,o), +(282,335,o), +(282,296,cs), +(282,257,o), +(260,218,o), +(195,218,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 388; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(265,-5,o), +(326,33,o), +(326,104,cs), +(326,149,o), +(294,182,o), +(256,192,c), +(256,197,l), +(287,207,o), +(312,238,o), +(312,276,cs), +(312,338,o), +(263,379,o), +(177,379,cs), +(96,379,o), +(42,342,o), +(42,276,cs), +(42,240,o), +(64,208,o), +(97,197,c), +(97,192,l), +(59,182,o), +(28,149,o), +(28,104,cs), +(28,38,o), +(81,-5,o), +(177,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(154,90,o), +(142,101,o), +(142,121,cs), +(142,141,o), +(156,152,o), +(177,152,cs), +(197,152,o), +(212,141,o), +(212,121,cs), +(212,101,o), +(199,90,o), +(177,90,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,234,o), +(146,242,o), +(146,261,cs), +(146,279,o), +(159,288,o), +(177,288,cs), +(194,288,o), +(208,279,o), +(208,261,cs), +(208,242,o), +(193,234,o), +(177,234,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 352; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,-5,o), +(178,29,o), +(193,101,cs), +(201,140,o), +(195,186,o), +(161,202,c), +(161,204,l), +(194,213,o), +(219,251,o), +(227,290,cs), +(241,358,o), +(214,401,o), +(155,401,cs), +(110,401,o), +(72,367,o), +(60,308,cs), +(51,265,o), +(58,227,o), +(87,211,c), +(87,208,l), +(53,200,o), +(24,166,o), +(14,115,cs), +(-1,40,o), +(26,-5,o), +(91,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(41,18,o), +(29,59,o), +(41,115,cs), +(52,166,o), +(77,194,o), +(115,194,cs), +(164,194,o), +(177,154,o), +(167,105,cs), +(156,53,o), +(133,18,o), +(92,18,cs) +); +}, +{ +closed = 1; +nodes = ( +(89,216,o), +(74,253,o), +(85,304,cs), +(94,347,o), +(117,378,o), +(154,378,cs), +(196,378,o), +(212,347,o), +(201,292,cs), +(191,244,o), +(166,216,o), +(132,216,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 271; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-5,o), +(196,33,o), +(208,90,cs), +(215,122,o), +(206,166,o), +(179,181,c), +(180,185,l), +(208,195,o), +(232,224,o), +(238,261,cs), +(250,338,o), +(209,379,o), +(137,379,cs), +(76,379,o), +(34,343,o), +(22,286,cs), +(15,253,o), +(24,213,o), +(45,198,c), +(45,194,l), +(15,184,o), +(-10,155,o), +(-19,113,cs), +(-34,39,o), +(9,-5,o), +(88,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(76,75,o), +(76,93,o), +(80,111,cs), +(85,135,o), +(90,148,o), +(102,148,cs), +(116,148,o), +(117,133,o), +(112,109,cs), +(107,85,o), +(98,75,o), +(90,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(108,229,o), +(109,244,o), +(114,267,cs), +(118,286,o), +(123,299,o), +(135,299,cs), +(147,299,o), +(147,283,o), +(143,264,cs), +(137,235,o), +(130,229,o), +(123,229,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 259; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,-6,o), +(297,42,o), +(297,112,cs), +(297,154,o), +(268,189,o), +(228,198,c), +(229,200,l), +(285,207,o), +(326,247,o), +(326,303,cs), +(326,363,o), +(277,401,o), +(210,401,cs), +(133,401,o), +(80,355,o), +(80,287,cs), +(80,249,o), +(105,217,o), +(140,207,c), +(140,205,l), +(77,198,o), +(29,153,o), +(29,92,cs), +(29,35,o), +(75,-6,o), +(154,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(100,22,o), +(61,50,o), +(61,98,cs), +(61,152,o), +(105,190,o), +(169,190,cs), +(230,190,o), +(264,162,o), +(264,115,cs), +(264,57,o), +(218,22,o), +(157,22,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,216,o), +(111,244,o), +(111,284,cs), +(111,338,o), +(146,374,o), +(210,374,cs), +(260,374,o), +(295,345,o), +(295,300,cs), +(295,250,o), +(255,216,o), +(195,216,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 391; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,-5,o), +(310,32,o), +(310,102,cs), +(310,139,o), +(282,172,o), +(248,183,c), +(250,187,l), +(296,200,o), +(328,230,o), +(328,276,cs), +(328,337,o), +(271,379,o), +(186,379,cs), +(105,379,o), +(41,340,o), +(41,272,cs), +(41,240,o), +(60,211,o), +(85,200,c), +(85,195,l), +(36,186,o), +(-2,150,o), +(-2,101,cs), +(-2,35,o), +(54,-5,o), +(151,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(126,90,o), +(112,103,o), +(112,121,cs), +(112,140,o), +(127,153,o), +(155,153,cs), +(179,153,o), +(195,140,o), +(195,121,cs), +(195,103,o), +(180,90,o), +(151,90,cs) +); +}, +{ +closed = 1; +nodes = ( +(162,234,o), +(147,244,o), +(147,262,cs), +(147,278,o), +(162,288,o), +(187,288,cs), +(207,288,o), +(222,278,o), +(222,262,cs), +(222,244,o), +(206,234,o), +(182,234,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 373; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(267,-4,o), +(338,32,o), +(341,110,cs), +(343,159,o), +(308,195,o), +(257,201,c), +(257,203,l), +(320,208,o), +(370,242,o), +(372,302,cs), +(374,370,o), +(304,401,o), +(220,401,cs), +(122,401,o), +(61,360,o), +(59,293,cs), +(58,253,o), +(80,221,o), +(134,210,c), +(133,208,l), +(66,206,o), +(11,164,o), +(9,101,cs), +(7,32,o), +(74,-4,o), +(171,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(95,25,o), +(44,54,o), +(46,106,cs), +(48,163,o), +(94,192,o), +(175,192,cs), +(258,192,o), +(307,167,o), +(305,114,cs), +(303,58,o), +(259,25,o), +(173,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,217,o), +(91,238,o), +(93,292,cs), +(95,344,o), +(142,373,o), +(215,373,cs), +(281,373,o), +(338,352,o), +(336,298,cs), +(334,246,o), +(290,217,o), +(215,217,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 414; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-5,o), +(349,42,o), +(351,109,cs), +(352,149,o), +(326,180,o), +(289,187,c), +(290,190,l), +(341,199,o), +(377,234,o), +(378,276,cs), +(380,333,o), +(329,379,o), +(210,379,cs), +(105,379,o), +(30,338,o), +(28,267,cs), +(27,235,o), +(52,206,o), +(83,199,c), +(82,195,l), +(26,187,o), +(-14,149,o), +(-16,98,cs), +(-18,15,o), +(75,-5,o), +(161,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(135,88,o), +(115,98,o), +(115,118,cs), +(115,137,o), +(135,150,o), +(174,150,cs), +(206,150,o), +(227,139,o), +(227,121,cs), +(227,102,o), +(207,88,o), +(171,88,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,228,o), +(151,240,o), +(151,256,cs), +(151,276,o), +(172,286,o), +(203,286,cs), +(230,286,o), +(249,275,o), +(249,259,cs), +(249,239,o), +(229,228,o), +(200,228,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 405; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eight.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.glyph new file mode 100644 index 00000000..21f03aab --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.glyph @@ -0,0 +1,2161 @@ +{ +glyphname = eight; +kernLeft = KO_eight; +kernRight = KO_eight; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(372,-10,o), +(451,72,o), +(451,196,cs), +(451,278,o), +(418,342,o), +(369,361,c), +(369,369,l), +(411,391,o), +(441,455,o), +(441,533,cs), +(441,651,o), +(366,729,o), +(232,729,cs), +(98,729,o), +(23,651,o), +(23,533,cs), +(23,455,o), +(53,391,o), +(95,369,c), +(95,361,l), +(46,342,o), +(13,278,o), +(13,196,cs), +(13,72,o), +(92,-10,o), +(232,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,133,o), +(193,155,o), +(193,211,cs), +(193,262,o), +(202,290,o), +(232,290,cs), +(262,290,o), +(271,262,o), +(271,211,cs), +(271,155,o), +(255,133,o), +(232,133,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,436,o), +(196,450,o), +(196,514,cs), +(196,553,o), +(203,586,o), +(232,586,cs), +(261,586,o), +(268,553,o), +(268,514,cs), +(268,450,o), +(254,436,o), +(232,436,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(377,-10,o), +(457,73,o), +(457,198,cs), +(457,278,o), +(415,347,o), +(346,366,c), +(346,374,l), +(411,397,o), +(447,459,o), +(447,540,cs), +(447,659,o), +(371,738,o), +(235,738,cs), +(99,738,o), +(23,659,o), +(23,540,cs), +(23,464,o), +(57,399,o), +(124,374,c), +(124,366,l), +(55,347,o), +(13,278,o), +(13,198,cs), +(13,73,o), +(93,-10,o), +(235,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(212,135,o), +(195,157,o), +(195,214,cs), +(195,265,o), +(205,294,o), +(235,294,cs), +(265,294,o), +(274,265,o), +(274,214,cs), +(274,157,o), +(258,135,o), +(235,135,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,441,o), +(198,456,o), +(198,520,cs), +(198,560,o), +(206,593,o), +(235,593,cs), +(264,593,o), +(271,560,o), +(271,520,cs), +(271,456,o), +(257,441,o), +(235,441,cs) +); +} +); +width = 470; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-8,o), +(363,57,o), +(363,195,cs), +(363,283,o), +(326,355,o), +(265,374,c), +(265,378,l), +(321,399,o), +(353,468,o), +(353,547,cs), +(353,656,o), +(299,729,o), +(204,729,cs), +(115,729,o), +(54,663,o), +(54,547,cs), +(54,467,o), +(86,399,o), +(142,378,c), +(142,374,l), +(85,356,o), +(44,289,o), +(44,195,cs), +(44,73,o), +(96,-8,o), +(204,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(128,19,o), +(76,68,o), +(76,196,cs), +(76,296,o), +(117,361,o), +(204,361,cs), +(280,361,o), +(331,308,o), +(331,196,cs), +(331,91,o), +(295,19,o), +(204,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,389,o), +(85,445,o), +(85,546,cs), +(85,639,o), +(123,701,o), +(204,701,cs), +(274,701,o), +(322,652,o), +(322,546,cs), +(322,451,o), +(279,389,o), +(204,389,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,-8,o), +(368,58,o), +(368,197,cs), +(368,287,o), +(330,359,o), +(258,379,c), +(258,383,l), +(325,404,o), +(357,474,o), +(357,554,cs), +(357,664,o), +(303,738,o), +(207,738,cs), +(116,738,o), +(55,671,o), +(55,554,cs), +(55,473,o), +(87,404,o), +(154,383,c), +(154,379,l), +(86,360,o), +(45,293,o), +(45,197,cs), +(45,74,o), +(97,-8,o), +(207,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,19,o), +(77,69,o), +(77,198,cs), +(77,300,o), +(118,366,o), +(207,366,cs), +(284,366,o), +(335,312,o), +(335,198,cs), +(335,92,o), +(299,19,o), +(207,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(135,394,o), +(86,451,o), +(86,553,cs), +(86,647,o), +(125,710,o), +(207,710,cs), +(277,710,o), +(326,660,o), +(326,553,cs), +(326,457,o), +(282,394,o), +(207,394,cs) +); +} +); +width = 405; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(517,-8,o), +(634,62,o), +(634,193,cs), +(634,304,o), +(548,372,o), +(438,376,c), +(438,380,l), +(549,394,o), +(619,454,o), +(619,553,cs), +(619,682,o), +(494,738,o), +(336,738,cs), +(177,738,o), +(54,683,o), +(54,553,cs), +(54,454,o), +(123,394,o), +(233,380,c), +(233,376,l), +(124,371,o), +(37,303,o), +(37,193,cs), +(37,62,o), +(154,-8,o), +(336,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,26,o), +(78,87,o), +(78,197,cs), +(78,314,o), +(173,360,o), +(336,360,cs), +(498,360,o), +(593,315,o), +(593,197,cs), +(593,88,o), +(508,26,o), +(336,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,394,o), +(92,458,o), +(92,549,cs), +(92,660,o), +(194,705,o), +(336,705,cs), +(477,705,o), +(579,660,o), +(579,549,cs), +(579,459,o), +(515,394,o), +(336,394,cs) +); +} +); +width = 671; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(590,-9,o), +(698,74,o), +(698,203,cs), +(698,292,o), +(636,361,o), +(547,373,c), +(547,380,l), +(627,396,o), +(681,453,o), +(681,537,cs), +(681,683,o), +(539,739,o), +(354,739,cs), +(171,739,o), +(29,683,o), +(29,537,cs), +(29,453,o), +(84,395,o), +(164,380,c), +(164,373,l), +(74,361,o), +(12,293,o), +(12,203,cs), +(12,73,o), +(120,-9,o), +(354,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(286,156,o), +(241,178,o), +(241,227,cs), +(241,271,o), +(274,300,o), +(354,300,cs), +(435,300,o), +(469,271,o), +(469,227,cs), +(469,178,o), +(425,156,o), +(354,156,cs) +); +}, +{ +closed = 1; +nodes = ( +(286,440,o), +(254,467,o), +(254,508,cs), +(254,551,o), +(291,574,o), +(354,574,cs), +(419,574,o), +(457,551,o), +(457,508,cs), +(457,467,o), +(425,440,o), +(354,440,cs) +); +} +); +width = 710; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-8,o), +(363,57,o), +(363,195,cs), +(363,283,o), +(326,355,o), +(265,374,c), +(265,378,l), +(321,399,o), +(353,468,o), +(353,547,cs), +(353,656,o), +(299,729,o), +(204,729,cs), +(115,729,o), +(54,663,o), +(54,547,cs), +(54,467,o), +(86,399,o), +(142,378,c), +(142,374,l), +(85,356,o), +(44,289,o), +(44,195,cs), +(44,73,o), +(96,-8,o), +(204,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(128,19,o), +(76,68,o), +(76,196,cs), +(76,296,o), +(117,361,o), +(204,361,cs), +(280,361,o), +(331,308,o), +(331,196,cs), +(331,91,o), +(295,19,o), +(204,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,389,o), +(85,445,o), +(85,546,cs), +(85,639,o), +(123,701,o), +(204,701,cs), +(274,701,o), +(322,652,o), +(322,546,cs), +(322,451,o), +(279,389,o), +(204,389,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-8,o), +(345,65,o), +(345,203,cs), +(345,299,o), +(307,373,o), +(235,392,c), +(235,393,l), +(301,414,o), +(332,484,o), +(332,559,cs), +(332,671,o), +(277,737,o), +(184,737,cs), +(90,737,o), +(35,671,o), +(35,559,cs), +(35,483,o), +(66,414,o), +(132,393,c), +(132,392,l), +(64,374,o), +(22,305,o), +(22,203,cs), +(22,65,o), +(79,-8,o), +(184,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(100,21,o), +(54,86,o), +(54,204,cs), +(54,312,o), +(96,377,o), +(184,377,cs), +(261,377,o), +(313,324,o), +(313,204,cs), +(313,86,o), +(267,21,o), +(184,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(113,405,o), +(66,461,o), +(66,558,cs), +(66,652,o), +(110,708,o), +(184,708,cs), +(258,708,o), +(301,652,o), +(301,558,cs), +(301,467,o), +(259,405,o), +(184,405,cs) +); +} +); +width = 360; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(372,-10,o), +(451,72,o), +(451,196,cs), +(451,278,o), +(418,342,o), +(369,361,c), +(369,369,l), +(411,391,o), +(441,455,o), +(441,533,cs), +(441,651,o), +(366,729,o), +(232,729,cs), +(98,729,o), +(23,651,o), +(23,533,cs), +(23,455,o), +(53,391,o), +(95,369,c), +(95,361,l), +(46,342,o), +(13,278,o), +(13,196,cs), +(13,72,o), +(92,-10,o), +(232,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,133,o), +(193,155,o), +(193,211,cs), +(193,262,o), +(202,290,o), +(232,290,cs), +(262,290,o), +(271,262,o), +(271,211,cs), +(271,155,o), +(255,133,o), +(232,133,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,436,o), +(196,450,o), +(196,514,cs), +(196,553,o), +(203,586,o), +(232,586,cs), +(261,586,o), +(268,553,o), +(268,514,cs), +(268,450,o), +(254,436,o), +(232,436,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,-10,o), +(453,72,o), +(453,210,cs), +(453,309,o), +(412,378,o), +(343,398,c), +(343,399,l), +(404,420,o), +(442,479,o), +(442,552,cs), +(442,666,o), +(357,738,o), +(223,738,cs), +(89,738,o), +(4,666,o), +(4,552,cs), +(4,480,o), +(42,420,o), +(103,399,c), +(103,398,l), +(34,378,o), +(-7,309,o), +(-7,210,cs), +(-7,72,o), +(78,-10,o), +(223,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,133,o), +(183,161,o), +(183,221,cs), +(183,283,o), +(192,312,o), +(223,312,cs), +(254,312,o), +(263,283,o), +(263,221,cs), +(263,161,o), +(250,133,o), +(223,133,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,466,o), +(187,488,o), +(187,533,cs), +(187,575,o), +(198,595,o), +(223,595,cs), +(248,595,o), +(259,575,o), +(259,533,cs), +(259,488,o), +(248,466,o), +(223,466,cs) +); +} +); +width = 446; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(443,-8,o), +(541,70,o), +(541,187,cs), +(541,277,o), +(487,353,o), +(375,361,c), +(375,363,l), +(484,375,o), +(532,455,o), +(532,539,cs), +(532,654,o), +(438,729,o), +(298,729,cs), +(158,729,o), +(66,656,o), +(66,541,cs), +(66,456,o), +(114,377,o), +(222,363,c), +(222,361,l), +(110,349,o), +(54,269,o), +(54,185,cs), +(54,69,o), +(152,-8,o), +(298,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(178,26,o), +(97,88,o), +(97,191,cs), +(97,271,o), +(156,343,o), +(298,343,cs), +(438,343,o), +(500,278,o), +(500,191,cs), +(500,92,o), +(422,26,o), +(298,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(162,380,o), +(106,449,o), +(106,537,cs), +(106,634,o), +(179,696,o), +(298,696,cs), +(413,696,o), +(492,636,o), +(492,537,cs), +(492,453,o), +(439,380,o), +(298,380,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(522,70,o), +(522,194,cs), +(522,291,o), +(466,366,o), +(357,386,c), +(357,387,l), +(436,407,o), +(493,474,o), +(493,554,cs), +(493,664,o), +(409,738,o), +(278,738,cs), +(147,738,o), +(63,664,o), +(63,554,cs), +(63,474,o), +(120,407,o), +(199,387,c), +(199,386,l), +(90,366,o), +(34,291,o), +(34,194,cs), +(34,70,o), +(133,-10,o), +(278,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,24,o), +(74,90,o), +(74,196,cs), +(74,292,o), +(127,369,o), +(278,369,cs), +(429,369,o), +(482,292,o), +(482,196,cs), +(482,90,o), +(400,24,o), +(278,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,404,o), +(102,482,o), +(102,555,cs), +(102,627,o), +(144,705,o), +(278,705,cs), +(412,705,o), +(454,627,o), +(454,555,cs), +(454,482,o), +(412,404,o), +(278,404,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 556; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(507,-10,o), +(610,74,o), +(610,198,cs), +(610,281,o), +(560,349,o), +(479,370,c), +(479,378,l), +(547,401,o), +(584,463,o), +(584,534,cs), +(584,652,o), +(490,729,o), +(327,729,cs), +(164,729,o), +(70,652,o), +(70,534,cs), +(70,463,o), +(107,401,o), +(175,378,c), +(175,370,l), +(94,349,o), +(44,281,o), +(44,198,cs), +(44,74,o), +(147,-10,o), +(327,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,152,o), +(239,179,o), +(239,227,cs), +(239,272,o), +(270,301,o), +(327,301,cs), +(384,301,o), +(415,272,o), +(415,227,cs), +(415,179,o), +(382,152,o), +(327,152,cs) +); +}, +{ +closed = 1; +nodes = ( +(278,441,o), +(250,465,o), +(250,508,cs), +(250,548,o), +(276,574,o), +(327,574,cs), +(378,574,o), +(404,548,o), +(404,508,cs), +(404,465,o), +(376,441,o), +(327,441,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,-10,o), +(608,65,o), +(608,202,cs), +(608,288,o), +(548,363,o), +(466,383,c), +(466,384,l), +(536,410,o), +(582,471,o), +(582,542,cs), +(582,660,o), +(482,738,o), +(306,738,cs), +(141,738,o), +(31,667,o), +(31,542,cs), +(31,471,o), +(77,410,o), +(147,384,c), +(147,383,l), +(65,363,o), +(5,288,o), +(5,202,cs), +(5,73,o), +(114,-10,o), +(306,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,152,o), +(218,179,o), +(218,231,cs), +(218,281,o), +(249,310,o), +(306,310,cs), +(363,310,o), +(394,281,o), +(394,231,cs), +(394,179,o), +(361,152,o), +(306,152,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,450,o), +(229,474,o), +(229,517,cs), +(229,557,o), +(257,583,o), +(306,583,cs), +(355,583,o), +(383,557,o), +(383,517,cs), +(383,474,o), +(352,450,o), +(306,450,cs) +); +} +); +width = 613; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(534,-8,o), +(651,61,o), +(651,201,cs), +(651,321,o), +(564,390,o), +(453,394,c), +(453,395,l), +(554,409,o), +(619,469,o), +(619,561,cs), +(619,683,o), +(501,738,o), +(338,738,cs), +(175,738,o), +(57,684,o), +(57,561,cs), +(57,469,o), +(121,409,o), +(222,395,c), +(222,394,l), +(114,389,o), +(27,320,o), +(27,201,cs), +(27,61,o), +(144,-8,o), +(338,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(153,26,o), +(67,86,o), +(67,205,cs), +(67,330,o), +(162,376,o), +(338,376,cs), +(515,376,o), +(611,331,o), +(611,205,cs), +(611,87,o), +(525,26,o), +(338,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,409,o), +(95,472,o), +(95,557,cs), +(95,661,o), +(192,705,o), +(338,705,cs), +(484,705,o), +(580,661,o), +(580,557,cs), +(580,473,o), +(520,409,o), +(338,409,cs) +); +} +); +width = 678; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(599,-9,o), +(709,73,o), +(709,204,cs), +(709,295,o), +(645,364,o), +(553,379,c), +(553,380,l), +(636,400,o), +(685,459,o), +(685,538,cs), +(685,667,o), +(568,738,o), +(355,738,cs), +(143,738,o), +(27,667,o), +(27,538,cs), +(27,458,o), +(77,399,o), +(162,380,c), +(162,379,l), +(67,364,o), +(2,295,o), +(2,204,cs), +(2,72,o), +(113,-9,o), +(355,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,154,o), +(237,175,o), +(237,226,cs), +(237,272,o), +(271,298,o), +(355,298,cs), +(441,298,o), +(476,272,o), +(476,226,cs), +(476,175,o), +(430,154,o), +(355,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(286,451,o), +(255,475,o), +(255,514,cs), +(255,553,o), +(291,575,o), +(355,575,cs), +(420,575,o), +(457,553,o), +(457,514,cs), +(457,475,o), +(426,451,o), +(355,451,cs) +); +} +); +width = 711; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(449,-8,o), +(547,70,o), +(547,187,cs), +(547,277,o), +(493,353,o), +(381,361,c), +(381,363,l), +(490,375,o), +(538,455,o), +(538,539,cs), +(538,654,o), +(444,729,o), +(304,729,cs), +(164,729,o), +(72,656,o), +(72,541,cs), +(72,456,o), +(120,377,o), +(228,363,c), +(228,361,l), +(116,349,o), +(60,269,o), +(60,185,cs), +(60,69,o), +(158,-8,o), +(304,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,26,o), +(103,88,o), +(103,191,cs), +(103,271,o), +(162,343,o), +(304,343,cs), +(444,343,o), +(506,278,o), +(506,191,cs), +(506,92,o), +(428,26,o), +(304,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,380,o), +(112,449,o), +(112,537,cs), +(112,634,o), +(185,696,o), +(304,696,cs), +(419,696,o), +(498,636,o), +(498,537,cs), +(498,453,o), +(445,380,o), +(304,380,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(436,-10,o), +(530,72,o), +(530,191,cs), +(530,292,o), +(472,363,o), +(375,384,c), +(375,387,l), +(448,406,o), +(502,470,o), +(502,551,cs), +(502,664,o), +(423,738,o), +(299,738,cs), +(175,738,o), +(96,664,o), +(96,551,cs), +(96,470,o), +(149,406,o), +(222,387,c), +(222,384,l), +(125,364,o), +(68,292,o), +(68,191,cs), +(68,72,o), +(161,-10,o), +(299,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(183,24,o), +(107,92,o), +(107,193,cs), +(107,302,o), +(178,367,o), +(299,367,cs), +(419,367,o), +(490,302,o), +(490,193,cs), +(490,92,o), +(413,24,o), +(299,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,403,o), +(135,463,o), +(135,552,cs), +(135,650,o), +(193,704,o), +(299,704,cs), +(405,704,o), +(464,650,o), +(464,552,cs), +(464,463,o), +(397,403,o), +(299,403,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 598; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(490,-10,o), +(593,74,o), +(593,198,cs), +(593,281,o), +(543,349,o), +(462,370,c), +(462,378,l), +(530,401,o), +(567,463,o), +(567,534,cs), +(567,652,o), +(473,729,o), +(310,729,cs), +(147,729,o), +(53,652,o), +(53,534,cs), +(53,463,o), +(90,401,o), +(158,378,c), +(158,370,l), +(77,349,o), +(27,281,o), +(27,198,cs), +(27,74,o), +(130,-10,o), +(310,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,152,o), +(222,179,o), +(222,227,cs), +(222,272,o), +(253,301,o), +(310,301,cs), +(367,301,o), +(398,272,o), +(398,227,cs), +(398,179,o), +(365,152,o), +(310,152,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,441,o), +(233,465,o), +(233,508,cs), +(233,548,o), +(259,574,o), +(310,574,cs), +(361,574,o), +(387,548,o), +(387,508,cs), +(387,465,o), +(359,441,o), +(310,441,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(468,-10,o), +(578,66,o), +(578,200,cs), +(578,289,o), +(521,354,o), +(446,375,c), +(446,387,l), +(511,408,o), +(553,467,o), +(553,540,cs), +(553,659,o), +(462,739,o), +(303,739,cs), +(152,739,o), +(51,666,o), +(51,540,cs), +(51,467,o), +(94,408,o), +(158,387,c), +(158,375,l), +(84,354,o), +(26,289,o), +(26,200,cs), +(26,74,o), +(126,-10,o), +(303,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,164,o), +(232,188,o), +(232,230,cs), +(232,275,o), +(256,305,o), +(303,305,cs), +(348,305,o), +(373,275,o), +(373,230,cs), +(373,187,o), +(347,164,o), +(303,164,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,447,o), +(242,470,o), +(242,507,cs), +(242,543,o), +(265,565,o), +(303,565,cs), +(341,565,o), +(363,543,o), +(363,507,cs), +(363,470,o), +(338,447,o), +(303,447,cs) +); +} +); +width = 604; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,-8,o), +(317,52,o), +(344,187,cs), +(359,258,o), +(348,345,o), +(285,374,c), +(285,378,l), +(345,394,o), +(391,460,o), +(408,540,cs), +(432,654,o), +(391,738,o), +(284,738,cs), +(204,738,o), +(136,676,o), +(113,568,cs), +(97,492,o), +(108,417,o), +(164,388,c), +(163,384,l), +(103,371,o), +(48,307,o), +(28,212,cs), +(2,82,o), +(41,-8,o), +(162,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(62,19,o), +(36,99,o), +(61,211,cs), +(81,305,o), +(129,367,o), +(208,367,cs), +(307,367,o), +(333,287,o), +(313,190,cs), +(291,87,o), +(246,19,o), +(164,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(155,393,o), +(123,465,o), +(143,561,cs), +(162,652,o), +(209,710,o), +(280,710,cs), +(373,710,o), +(396,634,o), +(377,542,cs), +(358,452,o), +(308,393,o), +(238,393,cs) +); +} +); +width = 398; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(322,-10,o), +(405,63,o), +(429,180,cs), +(443,245,o), +(432,323,o), +(373,349,c), +(374,357,l), +(430,375,o), +(473,437,o), +(488,512,cs), +(517,648,o), +(437,729,o), +(299,729,cs), +(183,729,o), +(104,660,o), +(81,550,cs), +(68,488,o), +(75,410,o), +(126,381,c), +(126,373,l), +(63,358,o), +(18,297,o), +(2,216,cs), +(-27,78,o), +(51,-10,o), +(201,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(172,134,o), +(171,175,o), +(180,215,cs), +(190,263,o), +(203,290,o), +(231,290,cs), +(265,290,o), +(266,258,o), +(256,207,cs), +(245,156,o), +(226,134,o), +(205,134,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,436,o), +(236,469,o), +(246,516,cs), +(255,558,o), +(267,585,o), +(294,585,cs), +(325,585,o), +(324,551,o), +(316,510,cs), +(304,451,o), +(288,436,o), +(269,436,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,-10,o), +(410,64,o), +(433,173,cs), +(449,248,o), +(427,326,o), +(378,353,c), +(379,361,l), +(438,383,o), +(482,443,o), +(493,512,cs), +(516,657,o), +(438,738,o), +(303,738,cs), +(185,738,o), +(105,668,o), +(82,557,cs), +(69,494,o), +(85,415,o), +(128,386,c), +(128,378,l), +(70,360,o), +(18,301,o), +(2,219,cs), +(-27,79,o), +(52,-10,o), +(204,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,136,o), +(173,177,o), +(182,218,cs), +(192,266,o), +(206,294,o), +(234,294,cs), +(268,294,o), +(269,261,o), +(259,210,cs), +(248,158,o), +(229,136,o), +(208,136,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,441,o), +(239,475,o), +(249,522,cs), +(258,565,o), +(270,592,o), +(298,592,cs), +(329,592,o), +(328,558,o), +(320,516,cs), +(308,457,o), +(292,441,o), +(272,441,cs) +); +} +); +width = 468; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(407,-10,o), +(511,72,o), +(515,192,cs), +(518,277,o), +(465,344,o), +(389,352,c), +(389,355,l), +(491,363,o), +(576,437,o), +(580,545,cs), +(584,661,o), +(498,729,o), +(364,729,cs), +(234,729,o), +(128,638,o), +(124,519,cs), +(122,448,o), +(164,384,o), +(241,366,c), +(241,363,l), +(137,363,o), +(45,276,o), +(42,169,cs), +(38,65,o), +(120,-10,o), +(260,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,25,o), +(77,81,o), +(81,176,cs), +(84,276,o), +(167,344,o), +(289,344,cs), +(412,344,o), +(478,289,o), +(474,194,cs), +(471,88,o), +(383,25,o), +(267,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,378,o), +(160,436,o), +(163,521,cs), +(167,625,o), +(249,696,o), +(364,696,cs), +(476,696,o), +(543,639,o), +(540,543,cs), +(536,445,o), +(453,378,o), +(337,378,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,-10,o), +(522,78,o), +(522,207,cs), +(522,286,o), +(469,349,o), +(394,366,c), +(394,369,l), +(503,381,o), +(578,459,o), +(578,561,cs), +(578,669,o), +(491,738,o), +(370,738,cs), +(229,738,o), +(135,652,o), +(135,528,cs), +(135,456,o), +(183,399,o), +(249,380,c), +(249,377,l), +(132,366,o), +(41,281,o), +(41,167,cs), +(41,64,o), +(123,-10,o), +(262,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,24,o), +(80,79,o), +(80,173,cs), +(80,281,o), +(166,355,o), +(293,355,cs), +(414,355,o), +(481,302,o), +(481,209,cs), +(481,93,o), +(391,24,o), +(269,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(238,391,o), +(174,446,o), +(174,525,cs), +(174,633,o), +(244,705,o), +(370,705,cs), +(471,705,o), +(539,647,o), +(539,558,cs), +(539,459,o), +(460,391,o), +(341,391,cs) +); +} +); +width = 594; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(460,-10,o), +(581,73,o), +(581,197,cs), +(581,266,o), +(535,331,o), +(466,353,c), +(469,361,l), +(562,384,o), +(619,449,o), +(619,532,cs), +(619,650,o), +(520,729,o), +(371,729,cs), +(211,729,o), +(102,649,o), +(98,528,cs), +(95,461,o), +(129,404,o), +(181,384,c), +(179,376,l), +(82,356,o), +(13,281,o), +(13,186,cs), +(13,70,o), +(108,-10,o), +(278,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,152,o), +(207,178,o), +(207,224,cs), +(207,270,o), +(241,301,o), +(302,301,cs), +(352,301,o), +(386,275,o), +(386,229,cs), +(386,183,o), +(352,152,o), +(291,152,cs) +); +}, +{ +closed = 1; +nodes = ( +(307,441,o), +(277,464,o), +(277,504,cs), +(277,546,o), +(308,574,o), +(364,574,cs), +(409,574,o), +(439,551,o), +(439,511,cs), +(439,469,o), +(408,441,o), +(352,441,cs) +); +} +); +}; +guides = ( +{ +pos = (324,441); +}, +{ +pos = (324,152); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,-10,o), +(588,66,o), +(588,200,cs), +(588,274,o), +(536,337,o), +(472,357,c), +(474,366,l), +(564,388,o), +(626,451,o), +(626,542,cs), +(626,659,o), +(522,738,o), +(368,738,cs), +(216,738,o), +(98,660,o), +(98,529,cs), +(98,465,o), +(134,409,o), +(183,389,c), +(182,380,l), +(87,362,o), +(13,291,o), +(13,190,cs), +(13,70,o), +(110,-10,o), +(293,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,154,o), +(209,182,o), +(209,225,cs), +(209,273,o), +(243,306,o), +(305,306,cs), +(359,306,o), +(391,276,o), +(391,233,cs), +(391,185,o), +(355,154,o), +(294,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,447,o), +(279,471,o), +(279,510,cs), +(279,554,o), +(312,582,o), +(369,582,cs), +(413,582,o), +(444,557,o), +(444,518,cs), +(444,473,o), +(409,447,o), +(355,447,cs) +); +} +); +width = 630; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(496,-7,o), +(622,65,o), +(622,209,cs), +(622,296,o), +(556,361,o), +(461,371,c), +(461,375,l), +(589,384,o), +(678,449,o), +(678,564,cs), +(678,686,o), +(551,738,o), +(404,738,cs), +(228,738,o), +(114,661,o), +(114,536,cs), +(114,463,o), +(166,403,o), +(259,386,c), +(258,383,l), +(128,381,o), +(22,300,o), +(22,179,cs), +(22,67,o), +(128,-7,o), +(316,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,27,o), +(63,84,o), +(63,183,cs), +(63,303,o), +(155,362,o), +(320,362,cs), +(486,362,o), +(581,314,o), +(581,213,cs), +(581,96,o), +(494,27,o), +(318,27,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,394,o), +(153,427,o), +(153,538,cs), +(153,645,o), +(243,706,o), +(397,706,cs), +(528,706,o), +(640,665,o), +(640,561,cs), +(640,453,o), +(551,394,o), +(397,394,cs) +); +} +); +width = 674; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(557,-9,o), +(674,80,o), +(679,213,cs), +(681,291,o), +(630,352,o), +(562,366,c), +(563,371,l), +(666,388,o), +(732,459,o), +(732,547,cs), +(732,661,o), +(629,738,o), +(421,738,cs), +(222,738,o), +(82,657,o), +(82,517,cs), +(82,454,o), +(127,402,o), +(186,387,c), +(184,380,l), +(79,368,o), +(-4,288,o), +(-4,182,cs), +(-4,35,o), +(158,-9,o), +(324,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,157,o), +(230,177,o), +(230,222,cs), +(230,269,o), +(268,300,o), +(349,300,cs), +(415,300,o), +(458,276,o), +(458,233,cs), +(458,188,o), +(417,157,o), +(341,157,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,439,o), +(301,462,o), +(301,500,cs), +(301,548,o), +(343,572,o), +(408,572,cs), +(463,572,o), +(503,551,o), +(503,511,cs), +(503,465,o), +(462,439,o), +(400,439,cs) +); +} +); +width = 707; +} +); +unicode = 56; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eight.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.numr.glyph new file mode 100644 index 00000000..7f534639 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.numr.glyph @@ -0,0 +1,438 @@ +{ +color = 6; +glyphname = eight.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 261; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 271; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 415; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 407; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 271; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 243; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,332); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eight.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eight.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 391; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eight.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eight.dnom; +}; +width = 349; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 415; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 407; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eight.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eight.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 388; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eight.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eight.dnom; +}; +width = 352; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 271; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 259; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 391; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 373; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 414; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 405; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eight.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.tf.glyph new file mode 100644 index 00000000..8fcdf8e0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eight.tf.glyph @@ -0,0 +1,1507 @@ +{ +glyphname = eight.tf; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,-10,o), +(461,72,o), +(461,196,cs), +(461,274,o), +(420,343,o), +(351,361,c), +(351,369,l), +(416,392,o), +(451,454,o), +(451,533,cs), +(451,651,o), +(375,729,o), +(241,729,cs), +(106,729,o), +(30,651,o), +(30,533,cs), +(30,458,o), +(63,394,o), +(130,369,c), +(130,361,l), +(61,343,o), +(20,274,o), +(20,196,cs), +(20,72,o), +(100,-10,o), +(241,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,133,o), +(201,156,o), +(201,211,cs), +(201,262,o), +(210,290,o), +(241,290,cs), +(271,290,o), +(280,261,o), +(280,211,cs), +(280,155,o), +(264,133,o), +(241,133,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,436,o), +(204,451,o), +(204,514,cs), +(204,552,o), +(211,586,o), +(241,586,cs), +(270,586,o), +(277,552,o), +(277,514,cs), +(277,451,o), +(263,436,o), +(241,436,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(336,-8,o), +(400,57,o), +(400,195,cs), +(400,283,o), +(363,355,o), +(292,374,c), +(292,378,l), +(358,399,o), +(390,468,o), +(390,547,cs), +(390,656,o), +(336,729,o), +(241,729,cs), +(152,729,o), +(91,663,o), +(91,547,cs), +(91,467,o), +(123,399,o), +(189,378,c), +(189,374,l), +(122,356,o), +(81,289,o), +(81,195,cs), +(81,73,o), +(133,-8,o), +(241,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,19,o), +(113,68,o), +(113,196,cs), +(113,296,o), +(154,361,o), +(241,361,cs), +(317,361,o), +(368,308,o), +(368,196,cs), +(368,91,o), +(332,19,o), +(241,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,389,o), +(122,445,o), +(122,546,cs), +(122,639,o), +(160,701,o), +(241,701,cs), +(311,701,o), +(359,652,o), +(359,546,cs), +(359,451,o), +(316,389,o), +(241,389,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-8,o), +(649,61,o), +(649,191,cs), +(649,299,o), +(566,367,o), +(460,371,c), +(460,375,l), +(567,389,o), +(634,449,o), +(634,546,cs), +(634,674,o), +(513,729,o), +(360,729,cs), +(207,729,o), +(87,675,o), +(87,546,cs), +(87,449,o), +(153,389,o), +(260,375,c), +(260,371,l), +(154,366,o), +(71,299,o), +(71,191,cs), +(71,61,o), +(184,-8,o), +(360,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,26,o), +(111,86,o), +(111,195,cs), +(111,310,o), +(203,356,o), +(360,356,cs), +(517,356,o), +(609,311,o), +(609,195,cs), +(609,87,o), +(526,26,o), +(360,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,389,o), +(125,452,o), +(125,542,cs), +(125,652,o), +(224,696,o), +(360,696,cs), +(496,696,o), +(595,652,o), +(595,542,cs), +(595,453,o), +(533,389,o), +(360,389,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(590,-9,o), +(695,73,o), +(695,200,cs), +(695,288,o), +(635,357,o), +(548,368,c), +(548,375,l), +(626,391,o), +(679,447,o), +(679,530,cs), +(679,675,o), +(539,730,o), +(359,730,cs), +(181,730,o), +(42,675,o), +(42,530,cs), +(42,447,o), +(95,390,o), +(173,375,c), +(173,368,l), +(85,357,o), +(25,289,o), +(25,200,cs), +(25,72,o), +(131,-9,o), +(359,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,154,o), +(250,176,o), +(250,224,cs), +(250,268,o), +(283,296,o), +(359,296,cs), +(437,296,o), +(470,268,o), +(470,224,cs), +(470,176,o), +(427,154,o), +(359,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,435,o), +(263,461,o), +(263,502,cs), +(263,544,o), +(298,567,o), +(359,567,cs), +(422,567,o), +(458,544,o), +(458,502,cs), +(458,461,o), +(427,435,o), +(359,435,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,-8,o), +(380,57,o), +(380,195,cs), +(380,283,o), +(343,355,o), +(272,374,c), +(272,378,l), +(338,399,o), +(370,468,o), +(370,547,cs), +(370,656,o), +(316,729,o), +(221,729,cs), +(132,729,o), +(71,663,o), +(71,547,cs), +(71,467,o), +(103,399,o), +(169,378,c), +(169,374,l), +(102,356,o), +(61,289,o), +(61,195,cs), +(61,73,o), +(113,-8,o), +(221,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(145,19,o), +(93,68,o), +(93,196,cs), +(93,296,o), +(134,361,o), +(221,361,cs), +(297,361,o), +(348,308,o), +(348,196,cs), +(348,91,o), +(312,19,o), +(221,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,389,o), +(102,445,o), +(102,546,cs), +(102,639,o), +(140,701,o), +(221,701,cs), +(291,701,o), +(339,652,o), +(339,546,cs), +(339,451,o), +(296,389,o), +(221,389,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,-10,o), +(451,72,o), +(451,196,cs), +(451,274,o), +(410,343,o), +(341,361,c), +(341,369,l), +(406,392,o), +(441,454,o), +(441,533,cs), +(441,651,o), +(365,729,o), +(231,729,cs), +(96,729,o), +(20,651,o), +(20,533,cs), +(20,458,o), +(53,394,o), +(120,369,c), +(120,361,l), +(51,343,o), +(10,274,o), +(10,196,cs), +(10,72,o), +(90,-10,o), +(231,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(207,133,o), +(191,156,o), +(191,211,cs), +(191,262,o), +(200,290,o), +(231,290,cs), +(261,290,o), +(270,261,o), +(270,211,cs), +(270,155,o), +(254,133,o), +(231,133,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,436,o), +(194,451,o), +(194,514,cs), +(194,552,o), +(201,586,o), +(231,586,cs), +(260,586,o), +(267,552,o), +(267,514,cs), +(267,451,o), +(253,436,o), +(231,436,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(521,70,o), +(521,187,cs), +(521,275,o), +(467,350,o), +(360,370,c), +(360,373,l), +(440,393,o), +(497,460,o), +(497,542,cs), +(497,655,o), +(412,729,o), +(281,729,cs), +(150,729,o), +(65,655,o), +(65,542,cs), +(65,460,o), +(122,393,o), +(202,373,c), +(202,370,l), +(95,350,o), +(41,276,o), +(41,187,cs), +(41,70,o), +(139,-10,o), +(281,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(162,24,o), +(81,90,o), +(81,189,cs), +(81,277,o), +(134,354,o), +(281,354,cs), +(428,354,o), +(481,277,o), +(481,189,cs), +(481,90,o), +(400,24,o), +(281,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,389,o), +(104,467,o), +(104,543,cs), +(104,618,o), +(147,696,o), +(281,696,cs), +(415,696,o), +(458,618,o), +(458,543,cs), +(458,467,o), +(415,389,o), +(281,389,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-10,o), +(555,65,o), +(555,198,cs), +(555,286,o), +(494,351,o), +(421,370,c), +(421,378,l), +(486,399,o), +(530,461,o), +(530,533,cs), +(530,651,o), +(439,729,o), +(279,729,cs), +(129,729,o), +(28,658,o), +(28,533,cs), +(28,461,o), +(72,399,o), +(137,378,c), +(137,370,l), +(64,351,o), +(3,286,o), +(3,198,cs), +(3,73,o), +(103,-10,o), +(279,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,152,o), +(195,179,o), +(195,227,cs), +(195,272,o), +(225,301,o), +(279,301,cs), +(333,301,o), +(363,272,o), +(363,227,cs), +(363,179,o), +(331,152,o), +(279,152,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,441,o), +(205,465,o), +(205,508,cs), +(205,548,o), +(233,574,o), +(279,574,cs), +(325,574,o), +(353,548,o), +(353,508,cs), +(353,465,o), +(322,441,o), +(279,441,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(526,-8,o), +(639,61,o), +(639,191,cs), +(639,299,o), +(556,367,o), +(450,371,c), +(450,375,l), +(557,389,o), +(624,449,o), +(624,546,cs), +(624,674,o), +(503,729,o), +(350,729,cs), +(197,729,o), +(77,675,o), +(77,546,cs), +(77,449,o), +(143,389,o), +(250,375,c), +(250,371,l), +(144,366,o), +(61,299,o), +(61,191,cs), +(61,61,o), +(174,-8,o), +(350,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(185,26,o), +(101,86,o), +(101,195,cs), +(101,310,o), +(193,356,o), +(350,356,cs), +(507,356,o), +(599,311,o), +(599,195,cs), +(599,87,o), +(516,26,o), +(350,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(178,389,o), +(115,452,o), +(115,542,cs), +(115,652,o), +(214,696,o), +(350,696,cs), +(486,696,o), +(585,652,o), +(585,542,cs), +(585,453,o), +(523,389,o), +(350,389,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(685,73,o), +(685,200,cs), +(685,288,o), +(625,357,o), +(538,368,c), +(538,375,l), +(616,391,o), +(669,447,o), +(669,530,cs), +(669,675,o), +(529,730,o), +(349,730,cs), +(171,730,o), +(32,675,o), +(32,530,cs), +(32,447,o), +(85,390,o), +(163,375,c), +(163,368,l), +(75,357,o), +(15,289,o), +(15,200,cs), +(15,72,o), +(121,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(284,154,o), +(240,176,o), +(240,224,cs), +(240,268,o), +(273,296,o), +(349,296,cs), +(427,296,o), +(460,268,o), +(460,224,cs), +(460,176,o), +(417,154,o), +(349,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(284,435,o), +(253,461,o), +(253,502,cs), +(253,544,o), +(288,567,o), +(349,567,cs), +(412,567,o), +(448,544,o), +(448,502,cs), +(448,461,o), +(417,435,o), +(349,435,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(534,70,o), +(534,187,cs), +(534,275,o), +(480,350,o), +(375,370,c), +(375,373,l), +(453,393,o), +(510,460,o), +(510,542,cs), +(510,655,o), +(427,729,o), +(298,729,cs), +(169,729,o), +(86,655,o), +(86,542,cs), +(86,460,o), +(143,393,o), +(221,373,c), +(221,370,l), +(116,350,o), +(62,276,o), +(62,187,cs), +(62,70,o), +(158,-10,o), +(298,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,24,o), +(102,90,o), +(102,189,cs), +(102,277,o), +(153,354,o), +(298,354,cs), +(443,354,o), +(494,277,o), +(494,189,cs), +(494,90,o), +(415,24,o), +(298,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,389,o), +(125,467,o), +(125,543,cs), +(125,618,o), +(166,696,o), +(298,696,cs), +(430,696,o), +(471,618,o), +(471,543,cs), +(471,467,o), +(430,389,o), +(298,389,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(451,-10,o), +(559,65,o), +(559,198,cs), +(559,286,o), +(500,351,o), +(431,370,c), +(431,378,l), +(493,399,o), +(536,461,o), +(536,533,cs), +(536,651,o), +(446,729,o), +(291,729,cs), +(146,729,o), +(47,658,o), +(47,533,cs), +(47,461,o), +(89,399,o), +(151,378,c), +(151,370,l), +(82,351,o), +(23,286,o), +(23,198,cs), +(23,73,o), +(120,-10,o), +(291,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,152,o), +(213,179,o), +(213,227,cs), +(213,272,o), +(242,301,o), +(291,301,cs), +(341,301,o), +(369,272,o), +(369,227,cs), +(369,179,o), +(340,152,o), +(291,152,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,441,o), +(222,465,o), +(222,508,cs), +(222,548,o), +(248,574,o), +(291,574,cs), +(334,574,o), +(360,548,o), +(360,508,cs), +(360,465,o), +(331,441,o), +(291,441,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-8,o), +(356,51,o), +(383,184,cs), +(398,255,o), +(387,341,o), +(324,369,c), +(324,373,l), +(384,389,o), +(429,454,o), +(446,533,cs), +(470,646,o), +(429,729,o), +(323,729,cs), +(244,729,o), +(177,668,o), +(155,561,cs), +(139,485,o), +(150,412,o), +(205,383,c), +(204,379,l), +(145,366,o), +(90,303,o), +(71,209,cs), +(45,81,o), +(83,-8,o), +(203,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(104,19,o), +(79,98,o), +(103,208,cs), +(123,301,o), +(170,362,o), +(248,362,cs), +(346,362,o), +(372,283,o), +(352,188,cs), +(330,86,o), +(286,19,o), +(205,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,388,o), +(164,459,o), +(184,554,cs), +(203,644,o), +(249,701,o), +(320,701,cs), +(411,701,o), +(434,626,o), +(415,535,cs), +(397,446,o), +(347,388,o), +(278,388,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,-10,o), +(416,63,o), +(439,171,cs), +(454,245,o), +(433,322,o), +(383,349,c), +(384,357,l), +(444,378,o), +(487,439,o), +(498,506,cs), +(521,649,o), +(443,729,o), +(308,729,cs), +(191,729,o), +(112,660,o), +(89,549,cs), +(76,489,o), +(92,410,o), +(135,381,c), +(135,373,l), +(77,356,o), +(26,296,o), +(10,217,cs), +(-20,78,o), +(59,-10,o), +(211,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,134,o), +(180,175,o), +(188,213,cs), +(199,263,o), +(211,290,o), +(240,290,cs), +(277,290,o), +(276,255,o), +(266,206,cs), +(255,153,o), +(235,134,o), +(215,134,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,436,o), +(243,463,o), +(255,518,cs), +(264,558,o), +(276,585,o), +(303,585,cs), +(330,585,o), +(337,562,o), +(326,508,cs), +(316,458,o), +(301,436,o), +(279,436,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,-10,o), +(525,77,o), +(525,204,cs), +(525,282,o), +(471,345,o), +(397,361,c), +(397,364,l), +(503,376,o), +(580,450,o), +(580,554,cs), +(580,661,o), +(493,729,o), +(372,729,cs), +(232,729,o), +(138,644,o), +(138,521,cs), +(138,450,o), +(187,394,o), +(253,375,c), +(253,372,l), +(136,361,o), +(45,278,o), +(45,165,cs), +(45,63,o), +(127,-10,o), +(266,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,24,o), +(84,78,o), +(84,171,cs), +(84,278,o), +(170,351,o), +(296,351,cs), +(415,351,o), +(484,299,o), +(484,206,cs), +(484,92,o), +(394,24,o), +(273,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,386,o), +(177,439,o), +(177,520,cs), +(177,625,o), +(247,696,o), +(372,696,cs), +(473,696,o), +(541,639,o), +(541,551,cs), +(541,453,o), +(462,386,o), +(344,386,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 85; +}; +}; +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,-10,o), +(566,66,o), +(566,199,cs), +(566,271,o), +(515,333,o), +(454,353,c), +(456,361,l), +(543,383,o), +(603,446,o), +(603,536,cs), +(603,651,o), +(503,729,o), +(353,729,cs), +(207,729,o), +(92,652,o), +(92,521,cs), +(92,459,o), +(125,404,o), +(173,384,c), +(172,375,l), +(80,358,o), +(8,286,o), +(8,187,cs), +(8,69,o), +(102,-10,o), +(278,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,152,o), +(199,180,o), +(199,221,cs), +(199,270,o), +(233,302,o), +(291,302,cs), +(343,302,o), +(372,273,o), +(372,231,cs), +(372,183,o), +(338,152,o), +(279,152,cs) +); +}, +{ +closed = 1; +nodes = ( +(299,441,o), +(269,465,o), +(269,503,cs), +(269,547,o), +(301,575,o), +(354,575,cs), +(396,575,o), +(425,550,o), +(425,513,cs), +(425,469,o), +(393,441,o), +(340,441,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(507,-7,o), +(636,63,o), +(636,206,cs), +(636,292,o), +(571,358,o), +(481,366,c), +(481,370,l), +(606,379,o), +(692,444,o), +(692,558,cs), +(692,673,o), +(576,729,o), +(427,729,cs), +(260,729,o), +(147,657,o), +(147,529,cs), +(147,457,o), +(191,400,o), +(285,381,c), +(284,378,l), +(158,376,o), +(56,296,o), +(56,177,cs), +(56,66,o), +(157,-7,o), +(339,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,27,o), +(96,83,o), +(96,180,cs), +(96,302,o), +(194,358,o), +(345,358,cs), +(512,358,o), +(595,306,o), +(595,211,cs), +(595,79,o), +(486,27,o), +(341,27,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,389,o), +(185,422,o), +(185,529,cs), +(185,636,o), +(273,697,o), +(421,697,cs), +(545,697,o), +(654,657,o), +(654,555,cs), +(654,451,o), +(570,389,o), +(419,389,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(556,-9,o), +(678,79,o), +(678,216,cs), +(678,286,o), +(630,348,o), +(564,361,c), +(565,366,l), +(666,383,o), +(730,454,o), +(730,540,cs), +(730,653,o), +(630,729,o), +(427,729,cs), +(233,729,o), +(95,649,o), +(95,512,cs), +(95,448,o), +(135,398,o), +(196,382,c), +(194,375,l), +(93,363,o), +(10,287,o), +(10,179,cs), +(10,35,o), +(168,-9,o), +(330,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(288,155,o), +(241,170,o), +(241,221,cs), +(241,268,o), +(280,296,o), +(356,296,cs), +(422,296,o), +(459,270,o), +(459,232,cs), +(459,186,o), +(421,155,o), +(347,155,cs) +); +}, +{ +closed = 1; +nodes = ( +(350,434,o), +(310,456,o), +(310,494,cs), +(310,541,o), +(352,565,o), +(414,565,cs), +(469,565,o), +(504,544,o), +(504,503,cs), +(504,459,o), +(463,434,o), +(405,434,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 80; +monoWidth = 700; +}; +}; +width = 720; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eightinferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eightinferior.glyph new file mode 100644 index 00000000..e5a3280e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eightinferior.glyph @@ -0,0 +1,1639 @@ +{ +glyphname = eightinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (146,177); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(230,-46,o), +(278,4,o), +(278,78,cs), +(278,124,o), +(253,166,o), +(212,176,c), +(212,181,l), +(250,195,o), +(272,231,o), +(272,280,cs), +(272,350,o), +(226,397,o), +(145,397,cs), +(64,397,o), +(19,350,o), +(19,280,cs), +(19,235,o), +(39,196,o), +(78,181,c), +(78,176,l), +(36,165,o), +(13,123,o), +(13,78,cs), +(13,3,o), +(61,-46,o), +(145,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(132,41,o), +(123,55,o), +(123,87,cs), +(123,116,o), +(128,133,o), +(145,133,cs), +(163,133,o), +(167,115,o), +(167,87,cs), +(167,54,o), +(158,41,o), +(145,41,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,222,o), +(125,230,o), +(125,268,cs), +(125,291,o), +(129,310,o), +(145,310,cs), +(162,310,o), +(166,290,o), +(166,268,cs), +(166,231,o), +(158,222,o), +(145,222,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 291; +}, +{ +anchors = ( +{ +name = _center; +pos = (142,177); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-45,o), +(242,-5,o), +(242,77,cs), +(242,130,o), +(219,172,o), +(177,183,c), +(177,186,l), +(217,199,o), +(236,241,o), +(236,287,cs), +(236,353,o), +(202,397,o), +(142,397,cs), +(86,397,o), +(48,357,o), +(48,287,cs), +(48,241,o), +(67,199,o), +(107,186,c), +(107,183,l), +(68,173,o), +(42,134,o), +(42,77,cs), +(42,4,o), +(75,-45,o), +(142,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,-20,o), +(72,7,o), +(72,79,cs), +(72,135,o), +(94,172,o), +(142,172,cs), +(185,172,o), +(212,141,o), +(212,79,cs), +(212,20,o), +(192,-20,o), +(142,-20,cs) +); +}, +{ +closed = 1; +nodes = ( +(103,197,o), +(77,228,o), +(77,285,cs), +(77,336,o), +(97,372,o), +(142,372,cs), +(181,372,o), +(207,344,o), +(207,285,cs), +(207,230,o), +(183,197,o), +(142,197,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 285; +}, +{ +anchors = ( +{ +name = _center; +pos = (220,173); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(332,-45,o), +(400,-2,o), +(400,75,cs), +(400,137,o), +(354,179,o), +(288,182,c), +(288,185,l), +(351,194,o), +(391,228,o), +(391,286,cs), +(391,364,o), +(316,397,o), +(220,397,cs), +(125,397,o), +(50,365,o), +(50,286,cs), +(50,227,o), +(92,193,o), +(152,185,c), +(152,182,l), +(89,179,o), +(40,138,o), +(40,75,cs), +(40,-2,o), +(108,-45,o), +(220,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(126,-14,o), +(79,19,o), +(79,79,cs), +(79,143,o), +(131,169,o), +(220,169,cs), +(310,169,o), +(362,143,o), +(362,79,cs), +(362,19,o), +(314,-14,o), +(220,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(123,197,o), +(87,232,o), +(87,282,cs), +(87,343,o), +(143,367,o), +(220,367,cs), +(297,367,o), +(353,343,o), +(353,282,cs), +(353,232,o), +(317,197,o), +(220,197,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 440; +}, +{ +anchors = ( +{ +name = _center; +pos = (224,171); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(368,-45,o), +(431,5,o), +(431,81,cs), +(431,132,o), +(396,173,o), +(345,181,c), +(345,185,l), +(390,195,o), +(421,228,o), +(421,277,cs), +(421,365,o), +(335,398,o), +(223,398,cs), +(113,398,o), +(27,365,o), +(27,277,cs), +(27,230,o), +(56,195,o), +(103,185,c), +(103,181,l), +(49,173,o), +(17,130,o), +(17,81,cs), +(17,4,o), +(81,-45,o), +(223,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,63,o), +(169,73,o), +(169,97,cs), +(169,117,o), +(183,132,o), +(223,132,cs), +(264,132,o), +(279,117,o), +(279,97,cs), +(279,73,o), +(256,63,o), +(223,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,225,o), +(176,238,o), +(176,258,cs), +(176,277,o), +(192,289,o), +(223,289,cs), +(255,289,o), +(272,277,o), +(272,258,cs), +(272,237,o), +(256,225,o), +(223,225,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 448; +}, +{ +anchors = ( +{ +name = _center; +pos = (122,177); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,-45,o), +(222,-5,o), +(222,77,cs), +(222,130,o), +(199,172,o), +(157,183,c), +(157,186,l), +(197,199,o), +(216,241,o), +(216,287,cs), +(216,353,o), +(182,397,o), +(122,397,cs), +(66,397,o), +(28,357,o), +(28,287,cs), +(28,241,o), +(47,199,o), +(87,186,c), +(87,183,l), +(48,173,o), +(22,134,o), +(22,77,cs), +(22,4,o), +(55,-45,o), +(122,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(81,-20,o), +(52,7,o), +(52,79,cs), +(52,135,o), +(74,172,o), +(122,172,cs), +(165,172,o), +(192,141,o), +(192,79,cs), +(192,20,o), +(172,-20,o), +(122,-20,cs) +); +}, +{ +closed = 1; +nodes = ( +(83,197,o), +(57,228,o), +(57,285,cs), +(57,336,o), +(77,372,o), +(122,372,cs), +(161,372,o), +(187,344,o), +(187,285,cs), +(187,230,o), +(163,197,o), +(122,197,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 245; +}, +{ +anchors = ( +{ +name = _center; +pos = (137,177); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-46,o), +(269,4,o), +(269,78,cs), +(269,124,o), +(244,166,o), +(203,176,c), +(203,181,l), +(241,195,o), +(263,231,o), +(263,280,cs), +(263,350,o), +(217,397,o), +(136,397,cs), +(55,397,o), +(10,350,o), +(10,280,cs), +(10,235,o), +(30,196,o), +(69,181,c), +(69,176,l), +(27,165,o), +(4,123,o), +(4,78,cs), +(4,3,o), +(52,-46,o), +(136,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(123,41,o), +(114,55,o), +(114,87,cs), +(114,116,o), +(119,133,o), +(136,133,cs), +(154,133,o), +(158,115,o), +(158,87,cs), +(158,54,o), +(149,41,o), +(136,41,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,222,o), +(116,230,o), +(116,268,cs), +(116,291,o), +(120,310,o), +(136,310,cs), +(153,310,o), +(157,290,o), +(157,268,cs), +(157,231,o), +(149,222,o), +(136,222,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 273; +}, +{ +anchors = ( +{ +name = _center; +pos = (185,174); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,-46,o), +(332,2,o), +(332,73,cs), +(332,126,o), +(299,170,o), +(237,182,c), +(237,184,l), +(284,196,o), +(317,236,o), +(317,284,cs), +(317,352,o), +(266,397,o), +(185,397,cs), +(105,397,o), +(53,353,o), +(53,284,cs), +(53,236,o), +(86,196,o), +(132,184,c), +(132,182,l), +(71,170,o), +(38,126,o), +(38,73,cs), +(38,2,o), +(97,-46,o), +(185,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,-16,o), +(74,21,o), +(74,76,cs), +(74,126,o), +(104,168,o), +(185,168,cs), +(266,168,o), +(296,125,o), +(296,76,cs), +(296,21,o), +(251,-16,o), +(185,-16,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,197,o), +(87,240,o), +(87,283,cs), +(87,325,o), +(111,368,o), +(185,368,cs), +(259,368,o), +(283,324,o), +(283,283,cs), +(283,240,o), +(258,197,o), +(185,197,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 370; +}, +{ +anchors = ( +{ +name = _center; +pos = (180,174); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,-46,o), +(353,-1,o), +(353,80,cs), +(353,130,o), +(317,170,o), +(272,182,c), +(272,187,l), +(311,200,o), +(337,236,o), +(337,279,cs), +(337,350,o), +(281,397,o), +(180,397,cs), +(85,397,o), +(22,355,o), +(22,279,cs), +(22,236,o), +(48,200,o), +(87,187,c), +(87,182,l), +(45,171,o), +(6,133,o), +(6,80,cs), +(6,4,o), +(68,-46,o), +(180,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,62,o), +(136,75,o), +(136,99,cs), +(136,122,o), +(153,136,o), +(180,136,cs), +(205,136,o), +(223,123,o), +(223,99,cs), +(223,75,o), +(207,62,o), +(180,62,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,229,o), +(142,239,o), +(142,262,cs), +(142,283,o), +(158,294,o), +(180,294,cs), +(201,294,o), +(217,283,o), +(217,262,cs), +(217,239,o), +(199,229,o), +(180,229,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 359; +}, +{ +anchors = ( +{ +name = _center; +pos = (210,173); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-45,o), +(390,-2,o), +(390,75,cs), +(390,137,o), +(344,179,o), +(278,182,c), +(278,185,l), +(341,194,o), +(381,228,o), +(381,286,cs), +(381,364,o), +(306,397,o), +(210,397,cs), +(115,397,o), +(40,365,o), +(40,286,cs), +(40,227,o), +(82,193,o), +(142,185,c), +(142,182,l), +(79,179,o), +(30,138,o), +(30,75,cs), +(30,-2,o), +(98,-45,o), +(210,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,-14,o), +(69,19,o), +(69,79,cs), +(69,143,o), +(121,169,o), +(210,169,cs), +(300,169,o), +(352,143,o), +(352,79,cs), +(352,19,o), +(304,-14,o), +(210,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(113,197,o), +(77,232,o), +(77,282,cs), +(77,343,o), +(133,367,o), +(210,367,cs), +(287,367,o), +(343,343,o), +(343,282,cs), +(343,232,o), +(307,197,o), +(210,197,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 420; +}, +{ +anchors = ( +{ +name = _center; +pos = (214,171); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,-45,o), +(421,5,o), +(421,81,cs), +(421,132,o), +(386,173,o), +(335,181,c), +(335,185,l), +(380,195,o), +(411,228,o), +(411,277,cs), +(411,365,o), +(325,398,o), +(213,398,cs), +(103,398,o), +(17,365,o), +(17,277,cs), +(17,230,o), +(46,195,o), +(93,185,c), +(93,181,l), +(39,173,o), +(7,130,o), +(7,81,cs), +(7,4,o), +(71,-45,o), +(213,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,63,o), +(159,73,o), +(159,97,cs), +(159,117,o), +(173,132,o), +(213,132,cs), +(254,132,o), +(269,117,o), +(269,97,cs), +(269,73,o), +(246,63,o), +(213,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,225,o), +(166,238,o), +(166,258,cs), +(166,277,o), +(182,289,o), +(213,289,cs), +(245,289,o), +(262,277,o), +(262,258,cs), +(262,237,o), +(246,225,o), +(213,225,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 428; +}, +{ +anchors = ( +{ +name = _center; +pos = (204,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(289,-46,o), +(348,2,o), +(348,73,cs), +(348,126,o), +(316,170,o), +(254,182,c), +(254,184,l), +(301,196,o), +(334,236,o), +(334,284,cs), +(334,352,o), +(283,397,o), +(204,397,cs), +(126,397,o), +(74,353,o), +(74,284,cs), +(74,236,o), +(107,196,o), +(151,184,c), +(151,182,l), +(92,170,o), +(59,126,o), +(59,73,cs), +(59,2,o), +(118,-46,o), +(204,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(140,-16,o), +(95,21,o), +(95,76,cs), +(95,126,o), +(125,168,o), +(204,168,cs), +(283,168,o), +(313,125,o), +(313,76,cs), +(313,21,o), +(268,-16,o), +(204,-16,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,197,o), +(108,240,o), +(108,283,cs), +(108,325,o), +(132,368,o), +(204,368,cs), +(276,368,o), +(300,324,o), +(300,283,cs), +(300,240,o), +(275,197,o), +(204,197,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 407; +}, +{ +anchors = ( +{ +name = _center; +pos = (193,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(293,-46,o), +(359,-1,o), +(359,80,cs), +(359,130,o), +(325,170,o), +(283,182,c), +(283,187,l), +(320,200,o), +(345,236,o), +(345,279,cs), +(345,350,o), +(290,397,o), +(193,397,cs), +(102,397,o), +(41,355,o), +(41,279,cs), +(41,236,o), +(65,200,o), +(102,187,c), +(102,182,l), +(63,171,o), +(26,133,o), +(26,80,cs), +(26,4,o), +(85,-46,o), +(193,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,62,o), +(154,75,o), +(154,99,cs), +(154,122,o), +(170,136,o), +(193,136,cs), +(214,136,o), +(231,123,o), +(231,99,cs), +(231,75,o), +(217,62,o), +(193,62,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,229,o), +(159,239,o), +(159,262,cs), +(159,283,o), +(174,294,o), +(193,294,cs), +(211,294,o), +(226,283,o), +(226,262,cs), +(226,239,o), +(209,229,o), +(193,229,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 384; +}, +{ +anchors = ( +{ +name = _center; +pos = (123,177); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,-45,o), +(187,-5,o), +(202,68,cs), +(211,112,o), +(205,162,o), +(167,180,c), +(167,183,l), +(202,192,o), +(230,231,o), +(240,278,cs), +(254,348,o), +(227,397,o), +(161,397,cs), +(112,397,o), +(70,360,o), +(57,296,cs), +(48,252,o), +(54,207,o), +(87,190,c), +(86,187,l), +(51,179,o), +(18,141,o), +(7,86,cs), +(-9,8,o), +(17,-45,o), +(91,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(37,-20,o), +(23,24,o), +(37,87,cs), +(48,138,o), +(74,172,o), +(117,172,cs), +(171,172,o), +(185,128,o), +(174,76,cs), +(160,11,o), +(134,-20,o), +(92,-20,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,196,o), +(73,236,o), +(84,289,cs), +(95,340,o), +(119,372,o), +(159,372,cs), +(210,372,o), +(222,330,o), +(211,278,cs), +(201,228,o), +(173,196,o), +(135,196,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 284; +}, +{ +anchors = ( +{ +name = _center; +pos = (122,177); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-46,o), +(220,-1,o), +(233,62,cs), +(242,104,o), +(231,152,o), +(200,169,c), +(201,174,l), +(238,188,o), +(262,222,o), +(269,266,cs), +(282,349,o), +(235,397,o), +(155,397,cs), +(84,397,o), +(37,356,o), +(23,288,cs), +(16,253,o), +(25,206,o), +(50,189,c), +(50,184,l), +(17,174,o), +(-14,139,o), +(-24,90,cs), +(-41,7,o), +(5,-46,o), +(96,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(80,42,o), +(80,66,o), +(85,90,cs), +(91,117,o), +(98,133,o), +(114,133,cs), +(134,133,o), +(134,113,o), +(128,85,cs), +(122,57,o), +(112,42,o), +(99,42,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,222,o), +(118,240,o), +(124,268,cs), +(130,297,o), +(138,309,o), +(152,309,cs), +(169,309,o), +(169,291,o), +(164,266,cs), +(157,231,o), +(148,222,o), +(137,222,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 289; +}, +{ +anchors = ( +{ +name = _center; +pos = (183,177); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,-46,o), +(314,6,o), +(314,82,cs), +(314,128,o), +(282,166,o), +(239,176,c), +(239,178,l), +(302,186,o), +(345,232,o), +(345,291,cs), +(345,356,o), +(292,397,o), +(218,397,cs), +(134,397,o), +(76,347,o), +(76,273,cs), +(76,231,o), +(104,197,o), +(142,186,c), +(142,183,l), +(77,177,o), +(21,130,o), +(21,61,cs), +(21,-2,o), +(71,-46,o), +(157,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(98,-16,o), +(57,15,o), +(57,67,cs), +(57,126,o), +(104,167,o), +(173,167,cs), +(240,167,o), +(277,137,o), +(277,85,cs), +(277,23,o), +(228,-16,o), +(161,-16,cs) +); +}, +{ +closed = 1; +nodes = ( +(146,196,o), +(110,226,o), +(110,270,cs), +(110,329,o), +(149,368,o), +(218,368,cs), +(274,368,o), +(311,336,o), +(311,288,cs), +(311,233,o), +(267,196,o), +(202,196,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 411; +}, +{ +anchors = ( +{ +name = _center; +pos = (176,177); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(268,-46,o), +(340,-2,o), +(340,78,cs), +(340,122,o), +(308,159,o), +(272,171,c), +(273,176,l), +(325,190,o), +(360,227,o), +(360,279,cs), +(360,349,o), +(298,397,o), +(203,397,cs), +(113,397,o), +(41,352,o), +(41,273,cs), +(41,238,o), +(59,204,o), +(89,191,c), +(88,185,l), +(31,174,o), +(-9,131,o), +(-9,75,cs), +(-9,2,o), +(50,-46,o), +(161,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(134,62,o), +(120,77,o), +(120,98,cs), +(120,121,o), +(136,137,o), +(167,137,cs), +(194,137,o), +(209,121,o), +(209,100,cs), +(209,78,o), +(193,62,o), +(162,62,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,229,o), +(160,241,o), +(160,261,cs), +(160,281,o), +(176,295,o), +(204,295,cs), +(225,295,o), +(241,282,o), +(241,264,cs), +(241,242,o), +(224,229,o), +(197,229,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 407; +}, +{ +anchors = ( +{ +name = _center; +pos = (199,177); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-44,o), +(360,-2,o), +(363,81,cs), +(365,130,o), +(327,174,o), +(271,179,c), +(271,182,l), +(342,187,o), +(394,225,o), +(396,289,cs), +(399,363,o), +(324,397,o), +(231,397,cs), +(125,397,o), +(58,353,o), +(55,279,cs), +(53,237,o), +(83,199,o), +(138,189,c), +(137,187,l), +(63,185,o), +(3,138,o), +(1,70,cs), +(-1,-1,o), +(65,-44,o), +(178,-44,cs) +); +}, +{ +closed = 1; +nodes = ( +(94,-14,o), +(38,18,o), +(40,75,cs), +(42,138,o), +(93,170,o), +(182,170,cs), +(272,170,o), +(327,142,o), +(325,85,cs), +(323,26,o), +(278,-14,o), +(180,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,197,o), +(90,212,o), +(92,279,cs), +(94,336,o), +(144,368,o), +(226,368,cs), +(296,368,o), +(361,349,o), +(358,280,cs), +(356,228,o), +(304,197,o), +(225,197,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 441; +}, +{ +anchors = ( +{ +name = _center; +pos = (198,177); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,-46,o), +(388,10,o), +(388,89,cs), +(388,133,o), +(359,168,o), +(322,176,c), +(323,179,l), +(380,190,o), +(419,231,o), +(419,281,cs), +(419,350,o), +(361,397,o), +(232,397,cs), +(133,397,o), +(27,359,o), +(27,268,cs), +(27,227,o), +(49,200,o), +(85,189,c), +(84,185,l), +(23,176,o), +(-24,130,o), +(-24,69,cs), +(-24,-23,o), +(78,-46,o), +(173,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(153,64,o), +(131,73,o), +(131,96,cs), +(131,117,o), +(150,132,o), +(190,132,cs), +(221,132,o), +(241,120,o), +(241,100,cs), +(241,79,o), +(221,64,o), +(185,64,cs) +); +}, +{ +closed = 1; +nodes = ( +(189,224,o), +(171,237,o), +(171,255,cs), +(171,277,o), +(194,288,o), +(223,288,cs), +(250,288,o), +(267,276,o), +(267,259,cs), +(267,236,o), +(246,224,o), +(218,224,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 445; +} +); +unicode = 8328; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eightsuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eightsuperior.glyph new file mode 100644 index 00000000..b05496a7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eightsuperior.glyph @@ -0,0 +1,440 @@ +{ +color = 6; +glyphname = eightsuperior; +kernLeft = KO_eightsuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 291; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 285; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 440; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 448; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 285; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 273; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eightinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eightinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 410; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eightinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eightinferior; +}; +width = 381; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 440; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 448; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eightinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eightinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 407; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eightinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eightinferior; +}; +width = 384; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 284; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 289; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 411; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 407; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 441; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 445; +} +); +unicode = 8312; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ellipsis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ellipsis.glyph new file mode 100644 index 00000000..d68a9555 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ellipsis.glyph @@ -0,0 +1,1457 @@ +{ +color = 6; +glyphname = ellipsis; +kernLeft = KO_ellipsis; +kernRight = KO_ellipsis; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,-10,o), +(206,23,o), +(206,77,cs), +(206,131,o), +(166,164,o), +(115,164,cs), +(64,164,o), +(24,131,o), +(24,77,cs), +(24,23,o), +(64,-10,o), +(115,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(396,-10,o), +(436,23,o), +(436,77,cs), +(436,131,o), +(396,164,o), +(345,164,cs), +(294,164,o), +(254,131,o), +(254,77,cs), +(254,23,o), +(294,-10,o), +(345,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(626,-10,o), +(666,23,o), +(666,77,cs), +(666,131,o), +(626,164,o), +(575,164,cs), +(524,164,o), +(484,131,o), +(484,77,cs), +(484,23,o), +(524,-10,o), +(575,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (230,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (460,0); +ref = period; +} +); +width = 656; +}, +{ +background = { +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (400,0); +}, +{ +name = top; +pos = (375,522); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(89,-6,o), +(100,4,o), +(100,18,cs), +(100,32,o), +(89,42,o), +(75,42,cs), +(61,42,o), +(50,32,o), +(50,18,cs), +(50,4,o), +(61,-6,o), +(75,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,-6,o), +(250,4,o), +(250,18,cs), +(250,32,o), +(239,42,o), +(225,42,cs), +(211,42,o), +(200,32,o), +(200,18,cs), +(200,4,o), +(211,-6,o), +(225,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(389,-6,o), +(400,4,o), +(400,18,cs), +(400,32,o), +(389,42,o), +(375,42,cs), +(361,42,o), +(350,32,o), +(350,18,cs), +(350,4,o), +(361,-6,o), +(375,-6,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (150,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (300,0); +ref = period; +} +); +width = 424; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(97,-7,o), +(110,5,o), +(110,22,cs), +(110,39,o), +(97,51,o), +(80,51,cs), +(63,51,o), +(50,39,o), +(50,22,cs), +(50,5,o), +(63,-7,o), +(80,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,-7,o), +(269,5,o), +(269,22,cs), +(269,39,o), +(256,51,o), +(239,51,cs), +(222,51,o), +(209,39,o), +(209,22,cs), +(209,5,o), +(222,-7,o), +(239,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(415,-7,o), +(428,5,o), +(428,22,cs), +(428,39,o), +(415,51,o), +(398,51,cs), +(381,51,o), +(368,39,o), +(368,22,cs), +(368,5,o), +(381,-7,o), +(398,-7,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (159,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (318,0); +ref = period; +} +); +width = 460; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,-10,o), +(268,29,o), +(268,83,cs), +(268,136,o), +(234,175,o), +(150,175,cs), +(66,175,o), +(32,136,o), +(32,83,cs), +(32,29,o), +(66,-10,o), +(150,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(534,-10,o), +(568,29,o), +(568,83,cs), +(568,136,o), +(534,175,o), +(450,175,cs), +(366,175,o), +(332,136,o), +(332,83,cs), +(332,29,o), +(366,-10,o), +(450,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(834,-10,o), +(868,29,o), +(868,83,cs), +(868,136,o), +(834,175,o), +(750,175,cs), +(666,175,o), +(632,136,o), +(632,83,cs), +(632,29,o), +(666,-10,o), +(750,-10,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (300,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (600,0); +ref = period; +} +); +width = 862; +}, +{ +background = { +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (400,0); +}, +{ +name = top; +pos = (375,522); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(89,-6,o), +(100,4,o), +(100,18,cs), +(100,32,o), +(89,42,o), +(75,42,cs), +(61,42,o), +(50,32,o), +(50,18,cs), +(50,4,o), +(61,-6,o), +(75,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,-6,o), +(250,4,o), +(250,18,cs), +(250,32,o), +(239,42,o), +(225,42,cs), +(211,42,o), +(200,32,o), +(200,18,cs), +(200,4,o), +(211,-6,o), +(225,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(389,-6,o), +(400,4,o), +(400,18,cs), +(400,32,o), +(389,42,o), +(375,42,cs), +(361,42,o), +(350,32,o), +(350,18,cs), +(350,4,o), +(361,-6,o), +(375,-6,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (150,0); +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (300,0); +ref = period; +} +); +width = 424; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,-10,o), +(206,23,o), +(206,77,cs), +(206,131,o), +(166,164,o), +(115,164,cs), +(64,164,o), +(24,131,o), +(24,77,cs), +(24,23,o), +(64,-10,o), +(115,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(396,-10,o), +(436,23,o), +(436,77,cs), +(436,131,o), +(396,164,o), +(345,164,cs), +(294,164,o), +(254,131,o), +(254,77,cs), +(254,23,o), +(294,-10,o), +(345,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(626,-10,o), +(666,23,o), +(666,77,cs), +(666,131,o), +(626,164,o), +(575,164,cs), +(524,164,o), +(484,131,o), +(484,77,cs), +(484,23,o), +(524,-10,o), +(575,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (230,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (460,0); +ref = period; +} +); +width = 658; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(110,-7,o), +(123,5,o), +(123,22,cs), +(123,39,o), +(110,51,o), +(93,51,cs), +(76,51,o), +(63,39,o), +(63,22,cs), +(63,5,o), +(76,-7,o), +(93,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,-7,o), +(309,5,o), +(309,22,cs), +(309,39,o), +(296,51,o), +(279,51,cs), +(262,51,o), +(249,39,o), +(249,22,cs), +(249,5,o), +(262,-7,o), +(279,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,-7,o), +(495,5,o), +(495,22,cs), +(495,39,o), +(482,51,o), +(465,51,cs), +(448,51,o), +(435,39,o), +(435,22,cs), +(435,5,o), +(448,-7,o), +(465,-7,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (186,0); +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (372,0); +ref = period; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = period; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 542; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(195,-8,o), +(233,27,o), +(233,80,cs), +(233,133,o), +(195,168,o), +(139,168,cs), +(83,168,o), +(45,133,o), +(45,80,cs), +(45,27,o), +(83,-8,o), +(139,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,-8,o), +(511,27,o), +(511,80,cs), +(511,133,o), +(473,168,o), +(417,168,cs), +(361,168,o), +(323,133,o), +(323,80,cs), +(323,27,o), +(361,-8,o), +(417,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(751,-8,o), +(789,27,o), +(789,80,cs), +(789,133,o), +(751,168,o), +(695,168,cs), +(639,168,o), +(601,133,o), +(601,80,cs), +(601,27,o), +(639,-8,o), +(695,-8,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (278,0); +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (556,0); +ref = period; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = period; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 768; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(97,-7,o), +(110,5,o), +(110,22,cs), +(110,39,o), +(97,51,o), +(80,51,cs), +(63,51,o), +(50,39,o), +(50,22,cs), +(50,5,o), +(63,-7,o), +(80,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,-7,o), +(269,5,o), +(269,22,cs), +(269,39,o), +(256,51,o), +(239,51,cs), +(222,51,o), +(209,39,o), +(209,22,cs), +(209,5,o), +(222,-7,o), +(239,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(415,-7,o), +(428,5,o), +(428,22,cs), +(428,39,o), +(415,51,o), +(398,51,cs), +(381,51,o), +(368,39,o), +(368,22,cs), +(368,5,o), +(381,-7,o), +(398,-7,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (159,0); +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (318,0); +ref = period; +} +); +width = 460; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,-10,o), +(268,29,o), +(268,83,cs), +(268,136,o), +(234,175,o), +(150,175,cs), +(66,175,o), +(32,136,o), +(32,83,cs), +(32,29,o), +(66,-10,o), +(150,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(534,-10,o), +(568,29,o), +(568,83,cs), +(568,136,o), +(534,175,o), +(450,175,cs), +(366,175,o), +(332,136,o), +(332,83,cs), +(332,29,o), +(366,-10,o), +(450,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(834,-10,o), +(868,29,o), +(868,83,cs), +(868,136,o), +(834,175,o), +(750,175,cs), +(666,175,o), +(632,136,o), +(632,83,cs), +(632,29,o), +(666,-10,o), +(750,-10,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (300,0); +ref = period; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (600,0); +ref = period; +} +); +width = 862; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(110,-7,o), +(123,5,o), +(123,22,cs), +(123,39,o), +(110,51,o), +(93,51,cs), +(76,51,o), +(63,39,o), +(63,22,cs), +(63,5,o), +(76,-7,o), +(93,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,-7,o), +(309,5,o), +(309,22,cs), +(309,39,o), +(296,51,o), +(279,51,cs), +(262,51,o), +(249,39,o), +(249,22,cs), +(249,5,o), +(262,-7,o), +(279,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,-7,o), +(495,5,o), +(495,22,cs), +(495,39,o), +(482,51,o), +(465,51,cs), +(448,51,o), +(435,39,o), +(435,22,cs), +(435,5,o), +(448,-7,o), +(465,-7,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (182,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (364,0); +ref = period; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = period; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 565; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(195,-8,o), +(233,27,o), +(233,80,cs), +(233,133,o), +(195,168,o), +(139,168,cs), +(83,168,o), +(45,133,o), +(45,80,cs), +(45,27,o), +(83,-8,o), +(139,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,-8,o), +(511,27,o), +(511,80,cs), +(511,133,o), +(473,168,o), +(417,168,cs), +(361,168,o), +(323,133,o), +(323,80,cs), +(323,27,o), +(361,-8,o), +(417,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(751,-8,o), +(789,27,o), +(789,80,cs), +(789,133,o), +(751,168,o), +(695,168,cs), +(639,168,o), +(601,133,o), +(601,80,cs), +(601,27,o), +(639,-8,o), +(695,-8,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (288,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (576,0); +ref = period; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = period; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 864; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(39,-6,o), +(49,3,o), +(49,18,cs), +(49,33,o), +(39,42,o), +(25,42,cs), +(12,42,o), +(1,33,o), +(1,18,cs), +(1,3,o), +(12,-6,o), +(25,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,-6,o), +(198,3,o), +(198,18,cs), +(198,33,o), +(188,42,o), +(174,42,cs), +(161,42,o), +(150,33,o), +(150,18,cs), +(150,3,o), +(161,-6,o), +(174,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(337,-6,o), +(347,3,o), +(347,18,cs), +(347,33,o), +(337,42,o), +(323,42,cs), +(310,42,o), +(299,33,o), +(299,18,cs), +(299,3,o), +(310,-6,o), +(323,-6,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (149,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (298,0); +ref = period; +} +); +width = 421; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(138,-10,o), +(180,27,o), +(180,82,cs), +(180,131,o), +(147,164,o), +(90,164,cs), +(27,164,o), +(-15,127,o), +(-15,72,cs), +(-15,23,o), +(18,-10,o), +(75,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,-10,o), +(425,27,o), +(425,82,cs), +(425,131,o), +(392,164,o), +(335,164,cs), +(272,164,o), +(230,127,o), +(230,72,cs), +(230,23,o), +(263,-10,o), +(320,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(628,-10,o), +(670,27,o), +(670,82,cs), +(670,131,o), +(637,164,o), +(580,164,cs), +(517,164,o), +(475,127,o), +(475,72,cs), +(475,23,o), +(508,-10,o), +(565,-10,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (245,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (490,0); +ref = period; +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(62,-7,o), +(75,4,o), +(75,23,cs), +(75,40,o), +(63,51,o), +(46,51,cs), +(28,51,o), +(15,40,o), +(15,21,cs), +(15,4,o), +(27,-7,o), +(44,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,-7,o), +(263,4,o), +(263,23,cs), +(263,40,o), +(251,51,o), +(234,51,cs), +(216,51,o), +(203,40,o), +(203,21,cs), +(203,4,o), +(215,-7,o), +(232,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(438,-7,o), +(451,4,o), +(451,23,cs), +(451,40,o), +(439,51,o), +(422,51,cs), +(404,51,o), +(391,40,o), +(391,21,cs), +(391,4,o), +(403,-7,o), +(420,-7,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (188,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (376,0); +ref = period; +} +); +width = 546; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,-8,o), +(204,29,o), +(204,87,cs), +(204,135,o), +(168,167,o), +(114,167,cs), +(50,167,o), +(6,130,o), +(6,72,cs), +(6,24,o), +(42,-8,o), +(96,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(412,-8,o), +(456,29,o), +(456,87,cs), +(456,135,o), +(420,167,o), +(366,167,cs), +(302,167,o), +(258,130,o), +(258,72,cs), +(258,24,o), +(294,-8,o), +(348,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(664,-8,o), +(708,29,o), +(708,87,cs), +(708,135,o), +(672,167,o), +(618,167,cs), +(554,167,o), +(510,130,o), +(510,72,cs), +(510,24,o), +(546,-8,o), +(600,-8,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (252,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (504,0); +ref = period; +} +); +width = 746; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(49,-7,o), +(62,4,o), +(62,23,cs), +(62,40,o), +(50,51,o), +(33,51,cs), +(15,51,o), +(2,40,o), +(2,21,cs), +(2,4,o), +(14,-7,o), +(31,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,-7,o), +(223,4,o), +(223,23,cs), +(223,40,o), +(211,51,o), +(194,51,cs), +(176,51,o), +(163,40,o), +(163,21,cs), +(163,4,o), +(175,-7,o), +(192,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,-7,o), +(384,4,o), +(384,23,cs), +(384,40,o), +(372,51,o), +(355,51,cs), +(337,51,o), +(324,40,o), +(324,21,cs), +(324,4,o), +(336,-7,o), +(353,-7,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (161,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (322,0); +ref = period; +} +); +width = 466; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(188,-10,o), +(234,26,o), +(234,90,cs), +(234,141,o), +(193,175,o), +(121,175,cs), +(40,175,o), +(-6,139,o), +(-6,75,cs), +(-6,24,o), +(35,-10,o), +(107,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(494,-10,o), +(540,26,o), +(540,90,cs), +(540,141,o), +(499,175,o), +(427,175,cs), +(346,175,o), +(300,139,o), +(300,75,cs), +(300,24,o), +(341,-10,o), +(413,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(800,-10,o), +(846,26,o), +(846,90,cs), +(846,141,o), +(805,175,o), +(733,175,cs), +(652,175,o), +(606,139,o), +(606,75,cs), +(606,24,o), +(647,-10,o), +(719,-10,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (306,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (612,0); +ref = period; +} +); +width = 876; +} +); +metricLeft = period; +metricRight = period; +unicode = 8230; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ellipsis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ellipsis.ss01.glyph new file mode 100644 index 00000000..fe8ccf89 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ellipsis.ss01.glyph @@ -0,0 +1,530 @@ +{ +color = 6; +glyphname = ellipsis.ss01; +kernLeft = KO_period.ss01; +kernRight = KO_ellipsis.ss01; +layers = ( +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (150,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (300,0); +ref = period.ss01; +} +); +width = 422; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (230,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (460,0); +ref = period.ss01; +} +); +width = 667; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (159,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (318,0); +ref = period.ss01; +} +); +width = 455; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (300,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (600,0); +ref = period.ss01; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (150,0); +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (300,0); +ref = period.ss01; +} +); +width = 422; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (230,0); +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (460,0); +ref = period.ss01; +} +); +width = 667; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (186,0); +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (372,0); +ref = period.ss01; +} +); +width = 537; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (278,0); +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (556,0); +ref = period.ss01; +} +); +width = 791; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (159,0); +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (318,0); +ref = period.ss01; +} +); +width = 455; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (300,0); +ref = period.ss01; +}, +{ +alignment = -1; +anchor = "#exit"; +pos = (600,0); +ref = period.ss01; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (182,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (364,0); +ref = period.ss01; +} +); +width = 530; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (257,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (514,0); +ref = period.ss01; +} +); +width = 762; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (148,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (296,0); +ref = period.ss01; +} +); +width = 418; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (245,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (490,0); +ref = period.ss01; +} +); +width = 695; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (198,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (396,0); +ref = period.ss01; +} +); +width = 560; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (252,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (504,0); +ref = period.ss01; +} +); +width = 757; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (159,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (318,0); +ref = period.ss01; +} +); +width = 456; +}, +{ +background = { +shapes = ( +{ +ref = ellipsis; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (306,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (612,0); +ref = period.ss01; +} +); +width = 883; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/emacron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/emacron.glyph new file mode 100644 index 00000000..25fe12e1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/emacron.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = emacron; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (28,-155); +ref = macroncomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (28,-139); +ref = macroncomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (79,-154); +ref = macroncomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (79,-129); +ref = macroncomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (28,-155); +ref = macroncomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (29,-139); +ref = macroncomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (87,-155); +ref = macroncomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (56,-134); +ref = macroncomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (79,-154); +ref = macroncomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (79,-129); +ref = macroncomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (90,-155); +ref = macroncomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (61,-134); +ref = macroncomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-8,-155); +ref = macroncomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-139); +ref = macroncomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,-155); +ref = macroncomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (22,-134); +ref = macroncomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (32,-154); +ref = macroncomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (27,-129); +ref = macroncomb; +} +); +width = 690; +} +); +unicode = 275; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/emdash.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/emdash.case.glyph new file mode 100644 index 00000000..cc9d47ac --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/emdash.case.glyph @@ -0,0 +1,202 @@ +{ +color = 6; +glyphname = emdash.case; +kernLeft = KO_hyphen.case; +kernRight = KO_hyphen.case; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,106); +ref = emdash; +} +); +width = 524; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,94); +ref = emdash; +} +); +width = 654; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,106); +ref = emdash; +} +); +width = 701; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,93); +ref = emdash; +} +); +width = 768; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,106); +ref = emdash; +} +); +width = 524; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (0,94); +ref = emdash; +} +); +width = 654; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,106); +ref = emdash; +} +); +width = 635; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,93); +ref = emdash; +} +); +width = 732; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,106); +ref = emdash; +} +); +width = 701; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,93); +ref = emdash; +} +); +width = 768; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,106); +ref = emdash; +} +); +width = 628; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,93); +ref = emdash; +} +); +width = 732; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (22,106); +ref = emdash; +} +); +width = 520; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (19,94); +ref = emdash; +} +); +width = 647; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (22,106); +ref = emdash; +} +); +width = 630; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (19,93); +ref = emdash; +} +); +width = 746; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (22,106); +ref = emdash; +} +); +width = 696; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (19,93); +ref = emdash; +} +); +width = 761; +} +); +metricLeft = emdash; +metricRight = emdash; +userData = { +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/emdash.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/emdash.glyph new file mode 100644 index 00000000..57e0837c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/emdash.glyph @@ -0,0 +1,332 @@ +{ +glyphname = emdash; +kernLeft = KO_hyphen; +kernRight = KO_endash; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(635,191,l), +(635,351,l), +(19,351,l), +(19,191,l) +); +} +); +width = 654; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(482,246,l), +(482,271,l), +(42,271,l), +(42,246,l) +); +} +); +width = 524; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,243,l), +(655,275,l), +(46,275,l), +(46,243,l) +); +} +); +width = 701; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(738,188,l), +(738,356,l), +(30,356,l), +(30,188,l) +); +} +); +width = 768; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(462,246,l), +(462,271,l), +(22,271,l), +(22,246,l) +); +} +); +width = 484; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(625,191,l), +(625,351,l), +(9,351,l), +(9,191,l) +); +} +); +width = 634; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(555,242,l), +(555,275,l), +(40,275,l), +(40,242,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 595; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(693,192,l), +(693,352,l), +(17,352,l), +(17,192,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +}; +width = 710; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(645,243,l), +(645,275,l), +(36,275,l), +(36,243,l) +); +} +); +width = 681; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(728,188,l), +(728,356,l), +(20,356,l), +(20,188,l) +); +} +); +width = 748; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(566,242,l), +(566,275,l), +(61,275,l), +(61,242,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 628; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(696,192,l), +(696,352,l), +(37,352,l), +(37,192,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +}; +width = 732; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(476,246,l), +(481,271,l), +(45,271,l), +(40,246,l) +); +} +); +width = 520; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(612,191,l), +(646,351,l), +(36,351,l), +(3,191,l) +); +} +); +width = 647; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(567,242,l), +(574,275,l), +(64,275,l), +(57,242,l) +); +} +); +width = 630; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(691,192,l), +(724,352,l), +(55,352,l), +(22,192,l) +); +} +); +width = 746; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(646,243,l), +(653,275,l), +(50,275,l), +(43,243,l) +); +} +); +width = 696; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(713,188,l), +(748,356,l), +(48,356,l), +(13,188,l) +); +} +); +width = 761; +} +); +unicode = 8212; +userData = { +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/emptyset.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/emptyset.glyph new file mode 100644 index 00000000..720eeb81 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/emptyset.glyph @@ -0,0 +1,976 @@ +{ +glyphname = emptyset; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,0,o), +(726,149,o), +(726,366,cs), +(726,579,o), +(572,729,o), +(368,729,cs), +(164,729,o), +(10,580,o), +(10,366,cs), +(10,149,o), +(164,0,o), +(368,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,71,o), +(189,116,o), +(138,189,c), +(628,488,l), +(643,451,o), +(651,410,o), +(651,366,cs), +(651,193,o), +(528,71,o), +(368,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(93,284,o), +(85,324,o), +(85,366,cs), +(85,538,o), +(210,658,o), +(368,658,cs), +(462,658,o), +(542,617,o), +(594,548,c), +(106,249,l) +); +} +); +width = 736; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(574,0,o), +(737,151,o), +(737,366,cs), +(737,578,o), +(574,729,o), +(378,729,cs), +(180,729,o), +(18,578,o), +(18,366,cs), +(18,151,o), +(180,0,o), +(378,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,28,o), +(162,87,o), +(103,181,c), +(667,524,l), +(691,478,o), +(704,424,o), +(704,366,cs), +(704,171,o), +(554,28,o), +(378,28,cs) +); +}, +{ +closed = 1; +nodes = ( +(64,254,o), +(51,308,o), +(51,366,cs), +(51,560,o), +(201,701,o), +(378,701,cs), +(491,701,o), +(593,643,o), +(651,551,c), +(88,207,l) +); +} +); +width = 755; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(584,0,o), +(747,151,o), +(747,366,cs), +(747,578,o), +(584,729,o), +(388,729,cs), +(190,729,o), +(28,578,o), +(28,366,cs), +(28,151,o), +(190,0,o), +(388,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,28,o), +(172,87,o), +(113,181,c), +(677,524,l), +(701,478,o), +(714,424,o), +(714,366,cs), +(714,171,o), +(564,28,o), +(388,28,cs) +); +}, +{ +closed = 1; +nodes = ( +(74,254,o), +(61,308,o), +(61,366,cs), +(61,560,o), +(211,701,o), +(388,701,cs), +(501,701,o), +(603,643,o), +(661,551,c), +(98,207,l) +); +} +); +width = 775; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(569,0,o), +(723,149,o), +(723,366,cs), +(723,579,o), +(569,729,o), +(365,729,cs), +(161,729,o), +(7,580,o), +(7,366,cs), +(7,149,o), +(161,0,o), +(365,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,71,o), +(186,116,o), +(135,189,c), +(625,488,l), +(640,451,o), +(648,410,o), +(648,366,cs), +(648,193,o), +(525,71,o), +(365,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,284,o), +(82,324,o), +(82,366,cs), +(82,538,o), +(207,658,o), +(365,658,cs), +(459,658,o), +(539,617,o), +(591,548,c), +(103,249,l) +); +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(556,0,o), +(719,151,o), +(719,366,cs), +(719,578,o), +(556,729,o), +(360,729,cs), +(162,729,o), +(0,578,o), +(0,366,cs), +(0,151,o), +(162,0,o), +(360,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,28,o), +(144,87,o), +(85,181,c), +(649,524,l), +(673,478,o), +(686,424,o), +(686,366,cs), +(686,171,o), +(536,28,o), +(360,28,cs) +); +}, +{ +closed = 1; +nodes = ( +(46,254,o), +(33,308,o), +(33,366,cs), +(33,560,o), +(183,701,o), +(360,701,cs), +(473,701,o), +(575,643,o), +(633,551,c), +(70,207,l) +); +} +); +width = 719; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,0,o), +(719,149,o), +(719,366,cs), +(719,579,o), +(565,729,o), +(361,729,cs), +(157,729,o), +(3,580,o), +(3,366,cs), +(3,149,o), +(157,0,o), +(361,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,71,o), +(182,116,o), +(131,189,c), +(621,488,l), +(636,451,o), +(644,410,o), +(644,366,cs), +(644,193,o), +(521,71,o), +(361,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(86,284,o), +(78,324,o), +(78,366,cs), +(78,538,o), +(203,658,o), +(361,658,cs), +(455,658,o), +(535,617,o), +(587,548,c), +(99,249,l) +); +} +); +width = 722; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(593,-10,o), +(760,145,o), +(760,366,cs), +(760,584,o), +(593,739,o), +(392,739,cs), +(189,739,o), +(23,584,o), +(23,366,cs), +(23,145,o), +(189,-10,o), +(392,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(275,19,o), +(170,80,o), +(109,176,c), +(689,529,l), +(713,481,o), +(727,426,o), +(727,366,cs), +(727,166,o), +(573,19,o), +(392,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(70,250,o), +(56,306,o), +(56,366,cs), +(56,565,o), +(210,710,o), +(392,710,cs), +(508,710,o), +(613,651,o), +(673,556,c), +(94,202,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 783; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,0,o), +(719,149,o), +(719,366,cs), +(719,579,o), +(565,729,o), +(361,729,cs), +(157,729,o), +(3,580,o), +(3,366,cs), +(3,149,o), +(157,0,o), +(361,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,71,o), +(182,116,o), +(131,189,c), +(621,488,l), +(636,451,o), +(644,410,o), +(644,366,cs), +(644,193,o), +(521,71,o), +(361,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(86,284,o), +(78,324,o), +(78,366,cs), +(78,538,o), +(203,658,o), +(361,658,cs), +(455,658,o), +(535,617,o), +(587,548,c), +(99,249,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 722; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(574,0,o), +(737,151,o), +(737,366,cs), +(737,578,o), +(574,729,o), +(378,729,cs), +(180,729,o), +(18,578,o), +(18,366,cs), +(18,151,o), +(180,0,o), +(378,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,28,o), +(162,87,o), +(103,181,c), +(667,524,l), +(691,478,o), +(704,424,o), +(704,366,cs), +(704,171,o), +(554,28,o), +(378,28,cs) +); +}, +{ +closed = 1; +nodes = ( +(64,254,o), +(51,308,o), +(51,366,cs), +(51,560,o), +(201,701,o), +(378,701,cs), +(491,701,o), +(593,643,o), +(651,551,c), +(88,207,l) +); +} +); +width = 755; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(564,0,o), +(718,149,o), +(718,366,cs), +(718,579,o), +(564,729,o), +(360,729,cs), +(156,729,o), +(2,580,o), +(2,366,cs), +(2,149,o), +(156,0,o), +(360,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,71,o), +(181,116,o), +(130,189,c), +(620,488,l), +(635,451,o), +(643,410,o), +(643,366,cs), +(643,193,o), +(520,71,o), +(360,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(85,284,o), +(77,324,o), +(77,366,cs), +(77,538,o), +(202,658,o), +(360,658,cs), +(454,658,o), +(534,617,o), +(586,548,c), +(98,249,l) +); +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(604,-10,o), +(767,145,o), +(767,366,cs), +(767,584,o), +(604,739,o), +(407,739,cs), +(208,739,o), +(46,584,o), +(46,366,cs), +(46,145,o), +(208,-10,o), +(407,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(292,19,o), +(189,80,o), +(130,176,c), +(698,529,l), +(722,481,o), +(736,426,o), +(736,366,cs), +(736,166,o), +(584,19,o), +(407,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(91,250,o), +(77,306,o), +(77,366,cs), +(77,565,o), +(229,710,o), +(407,710,cs), +(521,710,o), +(624,651,o), +(682,556,c), +(115,202,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 812; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(567,0,o), +(718,149,o), +(718,366,cs), +(718,579,o), +(567,729,o), +(368,729,cs), +(169,729,o), +(19,580,o), +(19,366,cs), +(19,149,o), +(169,0,o), +(368,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,71,o), +(194,116,o), +(145,189,c), +(622,488,l), +(637,448,o), +(644,410,o), +(644,366,cs), +(644,193,o), +(524,71,o), +(368,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,282,o), +(93,324,o), +(93,366,cs), +(93,538,o), +(215,658,o), +(368,658,cs), +(459,658,o), +(538,617,o), +(588,548,c), +(113,249,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 736; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(604,0,o), +(767,151,o), +(767,366,cs), +(767,578,o), +(604,729,o), +(408,729,cs), +(210,729,o), +(48,578,o), +(48,366,cs), +(48,151,o), +(210,0,o), +(408,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,28,o), +(192,87,o), +(133,181,c), +(697,524,l), +(721,478,o), +(734,424,o), +(734,366,cs), +(734,171,o), +(584,28,o), +(408,28,cs) +); +}, +{ +closed = 1; +nodes = ( +(94,254,o), +(81,308,o), +(81,366,cs), +(81,560,o), +(231,701,o), +(408,701,cs), +(521,701,o), +(623,643,o), +(681,551,c), +(118,207,l) +); +} +); +width = 770; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(601,0,o), +(755,149,o), +(755,366,cs), +(755,579,o), +(601,729,o), +(397,729,cs), +(193,729,o), +(39,580,o), +(39,366,cs), +(39,149,o), +(193,0,o), +(397,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,71,o), +(218,116,o), +(167,189,c), +(657,488,l), +(672,451,o), +(680,410,o), +(680,366,cs), +(680,193,o), +(557,71,o), +(397,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,284,o), +(114,324,o), +(114,366,cs), +(114,538,o), +(239,658,o), +(397,658,cs), +(491,658,o), +(571,617,o), +(623,548,c), +(135,249,l) +); +} +); +width = 754; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(643,-10,o), +(810,145,o), +(810,366,cs), +(810,584,o), +(643,739,o), +(442,739,cs), +(239,739,o), +(73,584,o), +(73,366,cs), +(73,145,o), +(239,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(325,19,o), +(220,80,o), +(159,176,c), +(739,529,l), +(763,481,o), +(777,426,o), +(777,366,cs), +(777,166,o), +(623,19,o), +(442,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(120,250,o), +(106,306,o), +(106,366,cs), +(106,565,o), +(260,710,o), +(442,710,cs), +(558,710,o), +(663,651,o), +(723,556,c), +(144,202,l) +); +} +); +width = 839; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(609,0,o), +(763,149,o), +(763,366,cs), +(763,579,o), +(609,729,o), +(405,729,cs), +(201,729,o), +(47,580,o), +(47,366,cs), +(47,149,o), +(201,0,o), +(405,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,71,o), +(226,116,o), +(175,189,c), +(665,488,l), +(680,451,o), +(688,410,o), +(688,366,cs), +(688,193,o), +(565,71,o), +(405,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,284,o), +(122,324,o), +(122,366,cs), +(122,538,o), +(247,658,o), +(405,658,cs), +(499,658,o), +(579,617,o), +(631,548,c), +(143,249,l) +); +} +); +width = 772; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(614,0,o), +(777,151,o), +(777,366,cs), +(777,578,o), +(614,729,o), +(418,729,cs), +(220,729,o), +(58,578,o), +(58,366,cs), +(58,151,o), +(220,0,o), +(418,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,28,o), +(202,87,o), +(143,181,c), +(707,524,l), +(731,478,o), +(744,424,o), +(744,366,cs), +(744,171,o), +(594,28,o), +(418,28,cs) +); +}, +{ +closed = 1; +nodes = ( +(104,254,o), +(91,308,o), +(91,366,cs), +(91,560,o), +(241,701,o), +(418,701,cs), +(531,701,o), +(633,643,o), +(691,551,c), +(128,207,l) +); +} +); +width = 790; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(595,0,o), +(749,149,o), +(749,366,cs), +(749,579,o), +(595,729,o), +(391,729,cs), +(187,729,o), +(33,580,o), +(33,366,cs), +(33,149,o), +(187,0,o), +(391,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,71,o), +(212,116,o), +(161,189,c), +(651,488,l), +(666,451,o), +(674,410,o), +(674,366,cs), +(674,193,o), +(551,71,o), +(391,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,284,o), +(108,324,o), +(108,366,cs), +(108,538,o), +(233,658,o), +(391,658,cs), +(485,658,o), +(565,617,o), +(617,548,c), +(129,249,l) +); +} +); +width = 744; +} +); +unicode = 8709; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/endash.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/endash.case.glyph new file mode 100644 index 00000000..4f928e16 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/endash.case.glyph @@ -0,0 +1,202 @@ +{ +color = 6; +glyphname = endash.case; +kernLeft = KO_hyphen.case; +kernRight = KO_hyphen.case; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,106); +ref = endash; +} +); +width = 374; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,94); +ref = endash; +} +); +width = 458; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,106); +ref = endash; +} +); +width = 515; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,93); +ref = endash; +} +); +width = 590; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,106); +ref = endash; +} +); +width = 374; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (0,94); +ref = endash; +} +); +width = 458; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,106); +ref = endash; +} +); +width = 475; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,93); +ref = endash; +} +); +width = 556; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,106); +ref = endash; +} +); +width = 515; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,93); +ref = endash; +} +); +width = 590; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,106); +ref = endash; +} +); +width = 470; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,93); +ref = endash; +} +); +width = 557; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (22,106); +ref = endash; +} +); +width = 371; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (19,94); +ref = endash; +} +); +width = 453; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (22,106); +ref = endash; +} +); +width = 511; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (19,93); +ref = endash; +} +); +width = 572; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (22,106); +ref = endash; +} +); +width = 518; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (19,93); +ref = endash; +} +); +width = 585; +} +); +metricLeft = endash; +metricRight = endash; +userData = { +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/endash.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/endash.glyph new file mode 100644 index 00000000..37aaf06a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/endash.glyph @@ -0,0 +1,333 @@ +{ +glyphname = endash; +kernLeft = KO_hyphen; +kernRight = KO_endash; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,191,l), +(439,351,l), +(19,351,l), +(19,191,l) +); +} +); +width = 458; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,246,l), +(332,271,l), +(42,271,l), +(42,246,l) +); +} +); +width = 374; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,243,l), +(469,275,l), +(46,275,l), +(46,243,l) +); +} +); +width = 515; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(560,188,l), +(560,356,l), +(30,356,l), +(30,188,l) +); +} +); +width = 590; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,246,l), +(312,271,l), +(22,271,l), +(22,246,l) +); +} +); +width = 334; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(429,191,l), +(429,351,l), +(9,351,l), +(9,191,l) +); +} +); +width = 438; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,242,l), +(395,275,l), +(40,275,l), +(40,242,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 435; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(517,192,l), +(517,352,l), +(17,352,l), +(17,192,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +}; +width = 534; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,243,l), +(459,275,l), +(36,275,l), +(36,243,l) +); +} +); +width = 495; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(550,188,l), +(550,356,l), +(20,356,l), +(20,188,l) +); +} +); +width = 570; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(410,242,l), +(410,275,l), +(61,275,l), +(61,242,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 470; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(522,192,l), +(522,352,l), +(37,352,l), +(37,192,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +}; +width = 557; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(327,246,l), +(332,271,l), +(45,271,l), +(40,246,l) +); +} +); +width = 371; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,191,l), +(452,351,l), +(36,351,l), +(3,191,l) +); +} +); +width = 453; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,243,l), +(455,275,l), +(63,275,l), +(56,243,l) +); +} +); +width = 511; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(517,192,l), +(550,352,l), +(55,352,l), +(22,192,l) +); +} +); +width = 572; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,243,l), +(475,275,l), +(50,275,l), +(43,243,l) +); +} +); +width = 518; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,188,l), +(572,356,l), +(48,356,l), +(13,188,l) +); +} +); +width = 585; +} +); +unicode = 8211; +userData = { +KernOnName = endash; +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eng.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eng.glyph new file mode 100644 index 00000000..666f21d1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eng.glyph @@ -0,0 +1,744 @@ +{ +glyphname = eng; +kernLeft = KO_n; +kernRight = KO_n; +layers = ( +{ +background = { +shapes = ( +{ +ref = n; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,-167,ls), +(282,-167,o), +(297,-138,o), +(297,-94,cs), +(297,378,ls), +(297,478,o), +(265,526,o), +(198,526,cs), +(146,526,o), +(107,496,o), +(91,439,c), +(89,439,l), +(88,516,l), +(60,516,l), +(60,0,l), +(89,0,l), +(89,307,ls), +(89,421,o), +(116,500,o), +(189,500,cs), +(240,500,o), +(268,474,o), +(268,371,cs), +(268,-89,ls), +(268,-128,o), +(257,-140,o), +(228,-140,cs), +(211,-140,l), +(211,-167,l) +); +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-167,ls), +(415,-167,o), +(452,-108,o), +(452,-2,cs), +(452,347,ls), +(452,494,o), +(411,551,o), +(320,551,cs), +(270,551,o), +(232,524,o), +(210,477,c), +(204,477,l), +(199,541,l), +(27,541,l), +(27,0,l), +(204,0,l), +(204,328,ls), +(204,381,o), +(211,411,o), +(241,411,cs), +(263,411,o), +(275,396,o), +(275,335,cs), +(275,-1,ls), +(275,-28,o), +(268,-40,o), +(242,-40,cs), +(217,-40,l), +(217,-167,l) +); +} +); +width = 475; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,-167,ls), +(510,-167,o), +(572,-140,o), +(572,-43,cs), +(572,283,ls), +(572,462,o), +(477,525,o), +(345,525,cs), +(242,525,o), +(150,476,o), +(108,387,c), +(103,387,l), +(103,517,l), +(66,517,l), +(66,0,l), +(103,0,l), +(103,256,ls), +(103,397,o), +(201,491,o), +(341,491,cs), +(466,491,o), +(535,430,o), +(535,277,cs), +(535,-35,ls), +(535,-107,o), +(505,-133,o), +(441,-133,cs), +(375,-133,l), +(375,-167,l) +); +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(494,-167,ls), +(628,-167,o), +(691,-104,o), +(691,29,cs), +(691,299,ls), +(691,491,o), +(596,554,o), +(456,554,cs), +(382,554,o), +(306,521,o), +(274,465,c), +(264,465,l), +(256,544,l), +(43,544,l), +(43,0,l), +(264,0,l), +(264,271,ls), +(264,339,o), +(306,389,o), +(376,389,cs), +(452,389,o), +(470,336,o), +(470,260,cs), +(470,54,ls), +(470,9,o), +(456,-6,o), +(420,-6,cs), +(363,-6,l), +(363,-167,l) +); +} +); +width = 722; +}, +{ +background = { +shapes = ( +{ +ref = n; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-167,ls), +(258,-167,o), +(273,-138,o), +(273,-94,cs), +(273,378,ls), +(273,478,o), +(241,526,o), +(174,526,cs), +(122,526,o), +(83,496,o), +(67,439,c), +(65,439,l), +(64,516,l), +(36,516,l), +(36,0,l), +(65,0,l), +(65,307,ls), +(65,421,o), +(92,500,o), +(165,500,cs), +(216,500,o), +(244,474,o), +(244,371,cs), +(244,-89,ls), +(244,-128,o), +(233,-140,o), +(204,-140,cs), +(187,-140,l), +(187,-167,l) +); +} +); +width = 308; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-167,ls), +(404,-167,o), +(441,-108,o), +(441,-2,cs), +(441,347,ls), +(441,494,o), +(400,551,o), +(309,551,cs), +(259,551,o), +(221,524,o), +(199,477,c), +(193,477,l), +(188,541,l), +(16,541,l), +(16,0,l), +(193,0,l), +(193,328,ls), +(193,381,o), +(200,411,o), +(230,411,cs), +(252,411,o), +(264,396,o), +(264,335,cs), +(264,-1,ls), +(264,-28,o), +(257,-40,o), +(231,-40,cs), +(206,-40,l), +(206,-167,l) +); +} +); +width = 454; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(390,-167,ls), +(451,-167,o), +(480,-128,o), +(480,-70,cs), +(480,300,ls), +(480,462,o), +(401,525,o), +(292,525,cs), +(209,525,o), +(134,482,o), +(99,400,c), +(95,400,l), +(93,517,l), +(59,517,l), +(59,0,l), +(95,0,l), +(95,274,ls), +(95,401,o), +(172,491,o), +(287,491,cs), +(392,491,o), +(443,430,o), +(443,294,cs), +(443,-60,ls), +(443,-113,o), +(425,-133,o), +(379,-133,cs), +(333,-133,l), +(333,-167,l) +); +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,-167,ls), +(530,-167,o), +(580,-97,o), +(580,25,cs), +(580,333,ls), +(580,494,o), +(497,554,o), +(390,554,cs), +(318,554,o), +(255,521,o), +(229,455,c), +(221,455,l), +(214,544,l), +(30,544,l), +(30,0,l), +(221,0,l), +(221,308,ls), +(221,352,o), +(250,400,o), +(310,400,cs), +(367,400,o), +(389,363,o), +(389,291,cs), +(389,21,ls), +(389,-19,o), +(374,-34,o), +(338,-34,cs), +(299,-34,l), +(299,-167,l) +); +} +); +width = 604; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,-167,ls), +(500,-167,o), +(562,-140,o), +(562,-43,cs), +(562,283,ls), +(562,462,o), +(467,525,o), +(335,525,cs), +(232,525,o), +(140,476,o), +(98,387,c), +(93,387,l), +(93,517,l), +(56,517,l), +(56,0,l), +(93,0,l), +(93,256,ls), +(93,397,o), +(191,491,o), +(331,491,cs), +(456,491,o), +(525,430,o), +(525,277,cs), +(525,-35,ls), +(525,-107,o), +(495,-133,o), +(431,-133,cs), +(365,-133,l), +(365,-167,l) +); +} +); +width = 606; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,-167,ls), +(618,-167,o), +(681,-104,o), +(681,29,cs), +(681,299,ls), +(681,491,o), +(586,554,o), +(446,554,cs), +(372,554,o), +(296,521,o), +(264,465,c), +(254,465,l), +(246,544,l), +(33,544,l), +(33,0,l), +(254,0,l), +(254,271,ls), +(254,339,o), +(296,389,o), +(366,389,cs), +(442,389,o), +(460,336,o), +(460,260,cs), +(460,54,ls), +(460,9,o), +(446,-6,o), +(410,-6,cs), +(353,-6,l), +(353,-167,l) +); +} +); +width = 702; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(411,-167,ls), +(470,-167,o), +(499,-128,o), +(499,-70,cs), +(499,300,ls), +(499,462,o), +(422,525,o), +(315,525,cs), +(234,525,o), +(159,482,o), +(126,400,c), +(122,400,l), +(120,517,l), +(86,517,l), +(86,0,l), +(122,0,l), +(122,274,ls), +(122,401,o), +(197,491,o), +(310,491,cs), +(413,491,o), +(462,430,o), +(462,294,cs), +(462,-60,ls), +(462,-113,o), +(445,-133,o), +(400,-133,cs), +(354,-133,l), +(354,-167,l) +); +} +); +width = 574; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(406,-167,ls), +(539,-167,o), +(587,-97,o), +(587,25,cs), +(587,333,ls), +(587,494,o), +(507,554,o), +(404,554,cs), +(335,554,o), +(274,521,o), +(249,455,c), +(242,455,l), +(235,544,l), +(52,544,l), +(52,0,l), +(242,0,l), +(242,308,ls), +(242,352,o), +(268,400,o), +(324,400,cs), +(377,400,o), +(398,364,o), +(398,291,cs), +(398,21,ls), +(398,-19,o), +(383,-34,o), +(349,-34,cs), +(312,-34,l), +(312,-167,l) +); +} +); +width = 630; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,-167,ls), +(185,-167,o), +(211,-150,o), +(222,-97,cs), +(319,371,ls), +(337,458,o), +(327,526,o), +(244,526,cs), +(195,526,o), +(153,495,o), +(131,446,c), +(130,446,l), +(140,516,l), +(113,516,l), +(7,0,l), +(36,0,l), +(100,315,ls), +(122,425,o), +(165,501,o), +(231,501,cs), +(296,501,o), +(307,455,o), +(289,366,cs), +(195,-89,ls), +(188,-122,o), +(176,-140,o), +(142,-140,cs), +(128,-140,l), +(122,-167,l) +); +} +); +width = 352; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,-167,ls), +(314,-167,o), +(368,-117,o), +(389,-12,cs), +(463,338,ls), +(489,461,o), +(479,551,o), +(363,551,cs), +(318,551,o), +(282,525,o), +(254,485,c), +(247,485,l), +(254,541,l), +(83,541,l), +(-30,0,l), +(147,0,l), +(216,337,ls), +(226,387,o), +(239,417,o), +(267,417,cs), +(293,417,o), +(299,396,o), +(287,340,cs), +(217,-1,ls), +(211,-29,o), +(198,-47,o), +(172,-47,cs), +(150,-47,l), +(126,-167,l) +); +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,-167,ls), +(368,-167,o), +(414,-129,o), +(431,-49,cs), +(501,291,ls), +(532,440,o), +(474,527,o), +(354,527,cs), +(281,527,o), +(206,493,o), +(158,415,c), +(153,415,l), +(169,517,l), +(139,517,l), +(31,0,l), +(66,0,l), +(127,293,ls), +(152,415,o), +(238,493,o), +(345,493,cs), +(453,493,o), +(493,419,o), +(465,288,cs), +(396,-43,ls), +(383,-107,o), +(356,-134,o), +(293,-134,cs), +(250,-134,l), +(242,-167,l) +); +} +); +width = 568; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,-167,ls), +(438,-167,o), +(514,-114,o), +(538,-1,cs), +(603,311,ls), +(643,501,o), +(545,554,o), +(460,554,cs), +(394,554,o), +(326,519,o), +(294,467,c), +(286,467,l), +(295,544,l), +(112,544,l), +(-2,0,l), +(189,0,l), +(255,313,ls), +(266,366,o), +(305,401,o), +(350,401,cs), +(404,401,o), +(420,361,o), +(406,292,cs), +(353,35,ls), +(341,-21,o), +(321,-27,o), +(276,-27,cs), +(257,-27,l), +(229,-167,l) +); +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-167,ls), +(440,-167,o), +(485,-134,o), +(503,-50,cs), +(570,270,ls), +(604,434,o), +(531,527,o), +(377,527,cs), +(286,527,o), +(195,485,o), +(141,406,c), +(136,406,l), +(156,517,l), +(120,517,l), +(13,0,l), +(50,0,l), +(107,276,ls), +(134,409,o), +(239,494,o), +(368,494,cs), +(497,494,o), +(567,429,o), +(533,266,cs), +(467,-46,ls), +(456,-102,o), +(432,-133,o), +(360,-133,cs), +(314,-133,l), +(307,-167,l) +); +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,-167,ls), +(528,-167,o), +(611,-95,o), +(637,33,cs), +(688,282,ls), +(725,461,o), +(638,554,o), +(491,554,cs), +(421,554,o), +(349,523,o), +(314,478,c), +(306,478,l), +(309,544,l), +(100,544,l), +(-13,0,l), +(206,0,l), +(263,276,ls), +(278,348,o), +(317,389,o), +(390,389,cs), +(450,389,o), +(483,347,o), +(465,261,cs), +(423,60,ls), +(414,15,o), +(396,-3,o), +(356,-3,cs), +(305,-3,l), +(273,-167,l) +); +} +); +width = 714; +} +); +metricLeft = l; +metricRight = n; +unicode = 331; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eogonek.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eogonek.glyph new file mode 100644 index 00000000..4f379d9a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eogonek.glyph @@ -0,0 +1,1431 @@ +{ +color = 0; +glyphname = eogonek; +kernLeft = KO_e; +kernRight = KO_e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (168,0); +}, +{ +name = ogonek; +pos = (220,0); +}, +{ +name = top; +pos = (165,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,-199,o), +(242,-197,o), +(251,-193,c), +(251,-169,l), +(243,-173,o), +(228,-175,o), +(219,-175,cs), +(184,-175,o), +(166,-156,o), +(166,-123,cs), +(166,-84,o), +(190,-44,o), +(236,14,c), +(262,37,o), +(279,79,o), +(285,148,c), +(255,148,l), +(247,70,o), +(229,18,o), +(168,18,cs), +(111,18,o), +(73,67,o), +(73,260,c), +(283,260,l), +(282,419,o), +(259,526,o), +(168,526,cs), +(67,526,o), +(44,416,o), +(44,258,cs), +(44,99,o), +(67,-10,o), +(168,-10,cs), +(178,-10,o), +(188,-9,o), +(197,-7,c), +(163,-47,o), +(139,-86,o), +(139,-125,cs), +(139,-172,o), +(168,-199,o), +(213,-199,cs) +); +}, +{ +closed = 1; +nodes = ( +(77,455,o), +(115,498,o), +(168,498,cs), +(212,498,o), +(249,463,o), +(253,289,c), +(72,289,l) +); +} +); +width = 324; +}, +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = ogonek; +pos = (341,0); +}, +{ +name = top; +pos = (222,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,-202,o), +(340,-195,o), +(355,-187,c), +(355,-114,l), +(346,-118,o), +(331,-121,o), +(317,-121,cs), +(294,-121,o), +(281,-109,o), +(281,-88,cs), +(281,-57,o), +(310,-21,o), +(366,34,cs), +(400,65,o), +(422,113,o), +(428,185,c), +(261,185,l), +(258,135,o), +(247,118,o), +(226,118,cs), +(202,118,o), +(191,147,o), +(191,235,c), +(428,235,l), +(438,441,o), +(382,551,o), +(226,551,cs), +(92,551,o), +(14,474,o), +(14,273,cs), +(14,65,o), +(97,-10,o), +(226,-10,cs), +(231,-10,o), +(237,-10,o), +(242,-10,c), +(200,-44,o), +(178,-82,o), +(178,-120,cs), +(178,-170,o), +(212,-202,o), +(276,-202,cs) +); +}, +{ +closed = 1; +nodes = ( +(193,401,o), +(204,422,o), +(226,422,cs), +(248,422,o), +(259,397,o), +(261,333,c), +(191,333,l) +); +} +); +width = 443; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = ogonek; +pos = (398,0); +}, +{ +name = top; +pos = (307,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,-211,o), +(458,-208,o), +(475,-201,c), +(475,-173,l), +(459,-179,o), +(439,-182,o), +(418,-182,cs), +(369,-182,o), +(342,-161,o), +(342,-123,cs), +(342,-61,o), +(415,-19,o), +(486,35,c), +(532,63,o), +(564,103,o), +(574,152,c), +(537,152,l), +(516,76,o), +(428,26,o), +(317,26,cs), +(170,26,o), +(75,111,o), +(71,256,c), +(581,256,l), +(591,423,o), +(485,525,o), +(314,525,cs), +(141,525,o), +(34,417,o), +(34,258,cs), +(34,97,o), +(146,-8,o), +(317,-8,cs), +(344,-8,o), +(371,-5,o), +(395,0,c), +(351,-33,o), +(309,-74,o), +(309,-127,cs), +(309,-179,o), +(346,-211,o), +(412,-211,cs) +); +}, +{ +closed = 1; +nodes = ( +(84,409,o), +(172,491,o), +(314,491,cs), +(448,491,o), +(541,419,o), +(542,289,c), +(73,289,l) +); +} +); +width = 615; +}, +{ +anchors = ( +{ +name = bottom; +pos = (343,0); +}, +{ +name = ogonek; +pos = (498,0); +}, +{ +name = top; +pos = (343,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-229,o), +(534,-219,o), +(565,-205,c), +(565,-94,l), +(547,-102,o), +(519,-107,o), +(497,-107,cs), +(463,-107,o), +(445,-94,o), +(445,-69,cs), +(445,-38,o), +(475,-12,o), +(550,30,c), +(617,62,o), +(662,113,o), +(674,180,c), +(456,180,l), +(445,158,o), +(404,142,o), +(357,142,cs), +(290,142,o), +(244,167,o), +(243,219,c), +(678,219,l), +(701,419,o), +(584,553,o), +(348,553,cs), +(145,553,o), +(10,450,o), +(10,268,cs), +(10,113,o), +(116,5,o), +(302,-8,cs), +(316,-9,o), +(330,-10,o), +(345,-10,c), +(300,-39,o), +(270,-76,o), +(270,-123,cs), +(270,-190,o), +(328,-229,o), +(425,-229,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,382,o), +(283,409,o), +(348,409,cs), +(416,409,o), +(451,382,o), +(456,334,c), +(237,334,l) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = bottom; +pos = (148,0); +}, +{ +name = ogonek; +pos = (200,0); +}, +{ +name = top; +pos = (145,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,-199,o), +(222,-197,o), +(231,-193,c), +(231,-169,l), +(223,-173,o), +(208,-175,o), +(199,-175,cs), +(164,-175,o), +(146,-156,o), +(146,-123,cs), +(146,-84,o), +(170,-44,o), +(216,14,c), +(242,37,o), +(259,79,o), +(265,148,c), +(235,148,l), +(227,70,o), +(209,18,o), +(148,18,cs), +(91,18,o), +(53,67,o), +(53,260,c), +(263,260,l), +(262,419,o), +(239,526,o), +(148,526,cs), +(47,526,o), +(24,416,o), +(24,258,cs), +(24,99,o), +(47,-10,o), +(148,-10,cs), +(158,-10,o), +(168,-9,o), +(177,-7,c), +(143,-47,o), +(119,-86,o), +(119,-125,cs), +(119,-172,o), +(148,-199,o), +(193,-199,cs) +); +}, +{ +closed = 1; +nodes = ( +(57,455,o), +(95,498,o), +(148,498,cs), +(192,498,o), +(229,463,o), +(233,289,c), +(52,289,l) +); +} +); +width = 284; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = ogonek; +pos = (332,0); +}, +{ +name = top; +pos = (213,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,-202,o), +(331,-195,o), +(346,-187,c), +(346,-114,l), +(337,-118,o), +(322,-121,o), +(308,-121,cs), +(285,-121,o), +(272,-109,o), +(272,-88,cs), +(272,-57,o), +(301,-21,o), +(357,34,cs), +(391,65,o), +(413,113,o), +(419,185,c), +(252,185,l), +(249,135,o), +(238,118,o), +(217,118,cs), +(193,118,o), +(182,147,o), +(182,235,c), +(419,235,l), +(429,441,o), +(373,551,o), +(217,551,cs), +(83,551,o), +(5,474,o), +(5,273,cs), +(5,65,o), +(88,-10,o), +(217,-10,cs), +(222,-10,o), +(228,-10,o), +(233,-10,c), +(191,-44,o), +(169,-82,o), +(169,-120,cs), +(169,-170,o), +(203,-202,o), +(267,-202,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,401,o), +(195,422,o), +(217,422,cs), +(239,422,o), +(250,397,o), +(252,333,c), +(182,333,l) +); +} +); +width = 425; +}, +{ +anchors = ( +{ +name = bottom; +pos = (270,0); +}, +{ +name = ogonek; +pos = (351,0); +}, +{ +name = top; +pos = (267,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,-196,o), +(387,-193,o), +(400,-188,c), +(400,-161,l), +(383,-167,o), +(363,-168,o), +(353,-168,cs), +(308,-168,o), +(287,-148,o), +(287,-113,cs), +(287,-60,o), +(341,-20,o), +(400,26,c), +(445,53,o), +(477,95,o), +(487,147,c), +(449,147,l), +(430,74,o), +(365,26,o), +(270,26,cs), +(151,26,o), +(74,110,o), +(70,256,c), +(489,256,l), +(503,410,o), +(426,525,o), +(268,525,cs), +(121,525,o), +(33,417,o), +(33,258,cs), +(33,97,o), +(126,-8,o), +(270,-8,cs), +(289,-8,o), +(308,-6,o), +(326,-2,c), +(286,-36,o), +(256,-73,o), +(256,-119,cs), +(256,-167,o), +(290,-196,o), +(347,-196,cs) +); +}, +{ +closed = 1; +nodes = ( +(80,415,o), +(155,491,o), +(267,491,cs), +(378,491,o), +(453,426,o), +(454,290,c), +(71,290,l) +); +} +); +width = 525; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = ogonek; +pos = (415,0); +}, +{ +name = top; +pos = (277,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,-208,o), +(417,-200,o), +(435,-192,c), +(435,-113,l), +(424,-118,o), +(410,-121,o), +(393,-121,cs), +(364,-121,o), +(347,-106,o), +(347,-82,cs), +(347,-43,o), +(386,-17,o), +(451,34,c), +(502,66,o), +(535,114,o), +(542,172,c), +(362,172,l), +(352,148,o), +(328,132,o), +(284,132,cs), +(228,132,o), +(190,166,o), +(192,227,c), +(547,227,l), +(567,415,o), +(474,554,o), +(277,554,cs), +(113,554,o), +(4,445,o), +(4,267,cs), +(4,114,o), +(90,8,o), +(243,-8,cs), +(253,-9,o), +(263,-10,o), +(274,-10,c), +(234,-37,o), +(209,-71,o), +(209,-112,cs), +(209,-173,o), +(257,-208,o), +(336,-208,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,384,o), +(229,413,o), +(277,413,cs), +(323,413,o), +(356,387,o), +(359,341,c), +(193,341,l) +); +} +); +width = 555; +}, +{ +anchors = ( +{ +name = bottom; +pos = (307,0); +}, +{ +name = ogonek; +pos = (388,0); +}, +{ +name = top; +pos = (297,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(422,-211,o), +(448,-208,o), +(465,-201,c), +(465,-173,l), +(449,-179,o), +(429,-182,o), +(408,-182,cs), +(359,-182,o), +(332,-161,o), +(332,-123,cs), +(332,-61,o), +(405,-19,o), +(476,35,c), +(522,63,o), +(554,103,o), +(564,152,c), +(527,152,l), +(506,76,o), +(418,26,o), +(307,26,cs), +(160,26,o), +(65,111,o), +(61,256,c), +(571,256,l), +(581,423,o), +(475,525,o), +(304,525,cs), +(131,525,o), +(24,417,o), +(24,258,cs), +(24,97,o), +(136,-8,o), +(307,-8,cs), +(334,-8,o), +(361,-5,o), +(385,0,c), +(341,-33,o), +(299,-74,o), +(299,-127,cs), +(299,-179,o), +(336,-211,o), +(402,-211,cs) +); +}, +{ +closed = 1; +nodes = ( +(74,409,o), +(162,491,o), +(304,491,cs), +(438,491,o), +(531,419,o), +(532,289,c), +(63,289,l) +); +} +); +width = 595; +}, +{ +anchors = ( +{ +name = bottom; +pos = (333,0); +}, +{ +name = ogonek; +pos = (488,0); +}, +{ +name = top; +pos = (333,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,-229,o), +(524,-219,o), +(555,-205,c), +(555,-94,l), +(537,-102,o), +(509,-107,o), +(487,-107,cs), +(453,-107,o), +(435,-94,o), +(435,-69,cs), +(435,-38,o), +(465,-12,o), +(540,30,c), +(607,62,o), +(652,113,o), +(664,180,c), +(446,180,l), +(435,158,o), +(394,142,o), +(347,142,cs), +(280,142,o), +(234,167,o), +(233,219,c), +(668,219,l), +(691,419,o), +(574,553,o), +(338,553,cs), +(135,553,o), +(0,450,o), +(0,268,cs), +(0,113,o), +(106,5,o), +(292,-8,cs), +(306,-9,o), +(320,-10,o), +(335,-10,c), +(290,-39,o), +(260,-76,o), +(260,-123,cs), +(260,-190,o), +(318,-229,o), +(415,-229,cs) +); +}, +{ +closed = 1; +nodes = ( +(234,382,o), +(273,409,o), +(338,409,cs), +(406,409,o), +(441,382,o), +(446,334,c), +(227,334,l) +); +} +); +width = 673; +}, +{ +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = ogonek; +pos = (366,0); +}, +{ +name = top; +pos = (284,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(383,-196,o), +(402,-193,o), +(415,-188,c), +(415,-161,l), +(398,-167,o), +(378,-168,o), +(368,-168,cs), +(325,-168,o), +(304,-148,o), +(304,-113,cs), +(304,-60,o), +(356,-20,o), +(415,26,c), +(458,53,o), +(490,95,o), +(500,147,c), +(462,147,l), +(444,74,o), +(380,26,o), +(287,26,cs), +(170,26,o), +(95,110,o), +(91,256,c), +(502,256,l), +(516,410,o), +(441,525,o), +(285,525,cs), +(142,525,o), +(54,417,o), +(54,258,cs), +(54,97,o), +(147,-8,o), +(287,-8,cs), +(306,-8,o), +(325,-6,o), +(343,-2,c), +(303,-36,o), +(273,-73,o), +(273,-119,cs), +(273,-167,o), +(307,-196,o), +(362,-196,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,415,o), +(174,491,o), +(284,491,cs), +(393,491,o), +(466,426,o), +(467,290,c), +(92,290,l) +); +} +); +width = 558; +}, +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = ogonek; +pos = (424,0); +}, +{ +name = top; +pos = (289,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(383,-208,o), +(425,-200,o), +(443,-192,c), +(443,-113,l), +(432,-118,o), +(419,-121,o), +(402,-121,cs), +(375,-121,o), +(358,-106,o), +(358,-82,cs), +(358,-43,o), +(399,-14,o), +(458,34,c), +(508,66,o), +(540,114,o), +(546,172,c), +(368,172,l), +(358,147,o), +(336,132,o), +(296,132,cs), +(244,132,o), +(208,166,o), +(210,227,c), +(551,227,l), +(571,415,o), +(480,554,o), +(289,554,cs), +(130,554,o), +(24,445,o), +(24,267,cs), +(24,113,o), +(107,8,o), +(255,-8,cs), +(264,-9,o), +(273,-10,o), +(284,-10,c), +(246,-37,o), +(222,-71,o), +(222,-112,cs), +(222,-173,o), +(268,-208,o), +(346,-208,cs) +); +}, +{ +closed = 1; +nodes = ( +(215,384,o), +(244,413,o), +(289,413,cs), +(332,413,o), +(362,387,o), +(365,341,c), +(211,341,l) +); +} +); +width = 578; +}, +{ +anchors = ( +{ +name = bottom; +pos = (122,0); +}, +{ +name = ogonek; +pos = (167,0); +}, +{ +name = top; +pos = (215,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,-199,o), +(151,-197,o), +(161,-193,c), +(165,-169,l), +(157,-173,o), +(140,-175,o), +(132,-175,cs), +(103,-175,o), +(88,-161,o), +(88,-137,cs), +(88,-96,o), +(124,-50,o), +(178,6,c), +(211,26,o), +(240,69,o), +(261,148,c), +(231,148,l), +(210,70,o), +(179,18,o), +(126,18,cs), +(43,18,o), +(46,124,o), +(74,260,c), +(283,260,l), +(311,405,o), +(315,525,o), +(215,525,cs), +(124,525,o), +(79,426,o), +(46,266,cs), +(12,102,o), +(15,-10,o), +(122,-10,cs), +(128,-10,o), +(135,-10,o), +(141,-8,c), +(97,-51,o), +(60,-97,o), +(60,-144,cs), +(60,-179,o), +(83,-199,o), +(122,-199,cs) +); +}, +{ +closed = 1; +nodes = ( +(117,452,o), +(162,497,o), +(211,497,cs), +(284,497,o), +(276,398,o), +(258,288,c), +(79,288,l) +); +} +); +width = 324; +}, +{ +anchors = ( +{ +name = bottom; +pos = (191,0); +}, +{ +name = ogonek; +pos = (286,0); +}, +{ +name = top; +pos = (280,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,-202,o), +(247,-197,o), +(268,-187,c), +(282,-114,l), +(272,-118,o), +(259,-121,o), +(245,-121,cs), +(222,-121,o), +(212,-112,o), +(212,-96,cs), +(212,-63,o), +(256,-23,o), +(324,34,cs), +(360,65,o), +(389,113,o), +(408,186,c), +(242,186,l), +(228,135,o), +(215,119,o), +(195,119,cs), +(165,119,o), +(168,166,o), +(183,235,c), +(418,235,l), +(463,425,o), +(438,551,o), +(261,551,cs), +(129,551,o), +(56,466,o), +(18,288,cs), +(-19,114,o), +(18,8,o), +(150,-8,cs), +(161,-9,o), +(173,-10,o), +(186,-10,c), +(132,-47,o), +(102,-86,o), +(102,-129,cs), +(102,-174,o), +(136,-202,o), +(190,-202,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,401,o), +(236,421,o), +(255,421,cs), +(282,421,o), +(281,382,o), +(272,334,c), +(204,334,l) +); +} +); +width = 440; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = ogonek; +pos = (321,0); +}, +{ +name = top; +pos = (316,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,-196,o), +(329,-193,o), +(340,-188,c), +(346,-161,l), +(327,-167,o), +(312,-168,o), +(301,-168,cs), +(260,-168,o), +(240,-153,o), +(240,-122,cs), +(240,-68,o), +(303,-22,o), +(374,22,cs), +(426,51,o), +(464,96,o), +(479,153,c), +(442,153,l), +(417,75,o), +(342,24,o), +(249,24,cs), +(138,24,o), +(73,116,o), +(90,258,c), +(494,258,l), +(526,415,o), +(462,527,o), +(317,527,cs), +(168,527,o), +(58,397,o), +(51,219,cs), +(47,81,o), +(124,-10,o), +(246,-10,cs), +(262,-10,o), +(277,-9,o), +(292,-6,c), +(237,-45,o), +(209,-88,o), +(209,-128,cs), +(209,-170,o), +(240,-196,o), +(290,-196,cs) +); +}, +{ +closed = 1; +nodes = ( +(128,428,o), +(215,494,o), +(311,494,cs), +(417,494,o), +(484,419,o), +(464,291,c), +(96,291,l) +); +} +); +width = 552; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = ogonek; +pos = (392,0); +}, +{ +name = top; +pos = (330,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(327,-208,o), +(363,-202,o), +(387,-192,c), +(406,-112,l), +(394,-117,o), +(378,-120,o), +(363,-120,cs), +(337,-120,o), +(321,-107,o), +(321,-84,cs), +(321,-46,o), +(362,-20,o), +(431,24,c), +(493,55,o), +(536,108,o), +(551,173,c), +(368,176,l), +(358,150,o), +(332,132,o), +(293,132,cs), +(240,132,o), +(207,163,o), +(211,227,c), +(561,227,l), +(600,410,o), +(506,554,o), +(323,554,cs), +(142,554,o), +(26,422,o), +(26,238,cs), +(26,109,o), +(97,17,o), +(224,-5,cs), +(234,-7,o), +(245,-8,o), +(256,-9,c), +(204,-41,o), +(178,-79,o), +(178,-120,cs), +(178,-174,o), +(224,-208,o), +(292,-208,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,384,o), +(267,413,o), +(317,413,cs), +(363,413,o), +(393,385,o), +(391,341,c), +(228,341,l) +); +} +); +width = 597; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = ogonek; +pos = (366,0); +}, +{ +name = top; +pos = (346,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,-211,o), +(389,-206,o), +(399,-201,c), +(404,-173,l), +(387,-179,o), +(362,-182,o), +(343,-182,cs), +(300,-182,o), +(279,-167,o), +(279,-134,cs), +(279,-70,o), +(368,-20,o), +(450,32,c), +(502,61,o), +(540,102,o), +(556,152,c), +(519,152,l), +(487,76,o), +(400,25,o), +(289,25,cs), +(142,25,o), +(56,117,o), +(72,256,c), +(576,256,l), +(611,418,o), +(516,527,o), +(344,527,cs), +(169,527,o), +(38,400,o), +(32,225,cs), +(27,84,o), +(134,-9,o), +(283,-9,cs), +(306,-9,o), +(328,-7,o), +(350,-3,c), +(293,-41,o), +(246,-87,o), +(246,-141,cs), +(246,-184,o), +(279,-211,o), +(334,-211,cs) +); +}, +{ +closed = 1; +nodes = ( +(106,412,o), +(207,493,o), +(341,493,cs), +(480,493,o), +(560,413,o), +(544,289,c), +(79,289,l) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = bottom; +pos = (333,0); +}, +{ +name = ogonek; +pos = (480,0); +}, +{ +name = top; +pos = (375,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-229,o), +(459,-221,o), +(496,-205,c), +(518,-94,l), +(497,-103,o), +(471,-107,o), +(451,-107,cs), +(417,-107,o), +(402,-96,o), +(402,-75,cs), +(402,-41,o), +(444,-12,o), +(527,30,cs), +(597,63,o), +(646,114,o), +(661,180,c), +(439,180,l), +(423,157,o), +(385,140,o), +(333,140,cs), +(270,140,o), +(225,171,o), +(227,219,c), +(670,219,l), +(702,422,o), +(577,554,o), +(361,554,cs), +(152,554,o), +(13,437,o), +(13,256,cs), +(13,111,o), +(106,11,o), +(277,-7,cs), +(290,-8,o), +(302,-9,o), +(315,-9,c), +(251,-43,o), +(215,-87,o), +(215,-135,cs), +(215,-193,o), +(268,-229,o), +(358,-229,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,378,o), +(294,409,o), +(357,409,cs), +(421,409,o), +(454,377,o), +(459,334,c), +(242,334,l) +); +} +); +width = 690; +} +); +unicode = 281; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/equal.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/equal.glyph new file mode 100644 index 00000000..d4234f93 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/equal.glyph @@ -0,0 +1,618 @@ +{ +glyphname = equal; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (240,366); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(462,411,l), +(462,551,l), +(18,551,l), +(18,411,l) +); +}, +{ +closed = 1; +nodes = ( +(462,171,l), +(462,311,l), +(18,311,l), +(18,171,l) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = center; +pos = (240,366); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,447,l), +(433,475,l), +(47,475,l), +(47,447,l) +); +}, +{ +closed = 1; +nodes = ( +(433,247,l), +(433,275,l), +(47,275,l), +(47,247,l) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = center; +pos = (360,366); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(607,464,l), +(607,496,l), +(112,496,l), +(112,464,l) +); +}, +{ +closed = 1; +nodes = ( +(607,227,l), +(607,259,l), +(112,259,l), +(112,227,l) +); +} +); +width = 720; +}, +{ +anchors = ( +{ +name = center; +pos = (361,366); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(611,411,l), +(611,585,l), +(110,585,l), +(110,411,l) +); +}, +{ +closed = 1; +nodes = ( +(611,137,l), +(611,311,l), +(110,311,l), +(110,137,l) +); +} +); +width = 720; +}, +{ +anchors = ( +{ +name = center; +pos = (220,366); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,447,l), +(413,475,l), +(27,475,l), +(27,447,l) +); +}, +{ +closed = 1; +nodes = ( +(413,247,l), +(413,275,l), +(27,275,l), +(27,247,l) +); +} +); +width = 440; +}, +{ +anchors = ( +{ +name = center; +pos = (230,366); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,411,l), +(452,551,l), +(8,551,l), +(8,411,l) +); +}, +{ +closed = 1; +nodes = ( +(452,171,l), +(452,311,l), +(8,311,l), +(8,171,l) +); +} +); +width = 460; +}, +{ +anchors = ( +{ +name = center; +pos = (280,366); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(519,455,l), +(519,487,l), +(41,487,l), +(41,455,l) +); +}, +{ +closed = 1; +nodes = ( +(519,235,l), +(519,267,l), +(41,267,l), +(41,235,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +anchors = ( +{ +name = center; +pos = (277,366); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(513,406,l), +(513,555,l), +(40,555,l), +(40,406,l) +); +}, +{ +closed = 1; +nodes = ( +(513,166,l), +(513,315,l), +(40,315,l), +(40,166,l) +); +} +); +width = 552; +}, +{ +anchors = ( +{ +name = center; +pos = (350,366); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(597,464,l), +(597,496,l), +(102,496,l), +(102,464,l) +); +}, +{ +closed = 1; +nodes = ( +(597,227,l), +(597,259,l), +(102,259,l), +(102,227,l) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = center; +pos = (351,366); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(601,411,l), +(601,585,l), +(100,585,l), +(100,411,l) +); +}, +{ +closed = 1; +nodes = ( +(601,137,l), +(601,311,l), +(100,311,l), +(100,137,l) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = center; +pos = (297,366); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(532,455,l), +(532,487,l), +(62,487,l), +(62,455,l) +); +}, +{ +closed = 1; +nodes = ( +(532,235,l), +(532,267,l), +(62,267,l), +(62,235,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +anchors = ( +{ +name = center; +pos = (292,366); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(521,406,l), +(521,555,l), +(62,555,l), +(62,406,l) +); +}, +{ +closed = 1; +nodes = ( +(521,166,l), +(521,315,l), +(62,315,l), +(62,166,l) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = center; +pos = (263,366); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,447,l), +(477,475,l), +(95,475,l), +(89,447,l) +); +}, +{ +closed = 1; +nodes = ( +(429,247,l), +(435,275,l), +(53,275,l), +(47,247,l) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = center; +pos = (259,366); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(488,411,l), +(517,551,l), +(78,551,l), +(48,411,l) +); +}, +{ +closed = 1; +nodes = ( +(438,171,l), +(467,311,l), +(28,311,l), +(-2,171,l) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = center; +pos = (322,366); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(577,455,l), +(583,487,l), +(110,487,l), +(104,455,l) +); +}, +{ +closed = 1; +nodes = ( +(531,235,l), +(538,267,l), +(65,267,l), +(57,235,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = center; +pos = (320,366); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(562,406,l), +(594,555,l), +(126,555,l), +(94,406,l) +); +}, +{ +closed = 1; +nodes = ( +(512,166,l), +(543,315,l), +(75,315,l), +(44,166,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = center; +pos = (381,366); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(647,464,l), +(653,496,l), +(163,496,l), +(157,464,l) +); +}, +{ +closed = 1; +nodes = ( +(597,227,l), +(604,259,l), +(114,259,l), +(107,227,l) +); +} +); +width = 720; +}, +{ +anchors = ( +{ +name = center; +pos = (379,366); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(636,411,l), +(673,585,l), +(177,585,l), +(140,411,l) +); +}, +{ +closed = 1; +nodes = ( +(579,137,l), +(616,311,l), +(120,311,l), +(83,137,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 61; +userData = { +KernOnName = equal; +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/estimated.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/estimated.glyph new file mode 100644 index 00000000..aae0e669 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/estimated.glyph @@ -0,0 +1,852 @@ +{ +glyphname = estimated; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,-9,o), +(667,27,o), +(734,90,c), +(716,120,l), +(655,64,o), +(557,26,o), +(457,26,cs), +(361,26,o), +(289,53,o), +(232,107,c), +(232,362,l), +(763,362,l), +(763,416,ls), +(763,609,o), +(632,737,o), +(436,737,cs), +(228,737,o), +(90,588,o), +(90,364,cs), +(90,140,o), +(237,-9,o), +(457,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,620,l), +(282,679,o), +(365,704,o), +(436,704,cs), +(511,704,o), +(594,681,o), +(638,626,c), +(638,395,l), +(232,395,l) +); +} +); +width = 853; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,-9,o), +(667,28,o), +(740,91,c), +(710,134,l), +(649,82,o), +(554,46,o), +(457,46,cs), +(361,46,o), +(289,73,o), +(232,127,c), +(232,352,l), +(763,352,l), +(763,416,ls), +(763,609,o), +(632,737,o), +(436,737,cs), +(228,737,o), +(90,588,o), +(90,364,cs), +(90,140,o), +(237,-9,o), +(457,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,600,l), +(282,659,o), +(365,684,o), +(436,684,cs), +(511,684,o), +(593,661,o), +(638,606,c), +(638,405,l), +(232,405,l) +); +} +); +width = 853; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,-9,o), +(667,27,o), +(734,90,c), +(716,120,l), +(655,64,o), +(557,26,o), +(457,26,cs), +(361,26,o), +(289,53,o), +(232,107,c), +(232,362,l), +(763,362,l), +(763,416,ls), +(763,609,o), +(632,737,o), +(436,737,cs), +(228,737,o), +(90,588,o), +(90,364,cs), +(90,140,o), +(237,-9,o), +(457,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,620,l), +(282,679,o), +(365,704,o), +(436,704,cs), +(511,704,o), +(594,681,o), +(638,626,c), +(638,395,l), +(232,395,l) +); +} +); +width = 853; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,-9,o), +(667,28,o), +(740,91,c), +(710,134,l), +(649,82,o), +(554,46,o), +(457,46,cs), +(361,46,o), +(289,73,o), +(232,127,c), +(232,352,l), +(763,352,l), +(763,416,ls), +(763,609,o), +(632,737,o), +(436,737,cs), +(228,737,o), +(90,588,o), +(90,364,cs), +(90,140,o), +(237,-9,o), +(457,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,600,l), +(282,659,o), +(365,684,o), +(436,684,cs), +(511,684,o), +(593,661,o), +(638,606,c), +(638,405,l), +(232,405,l) +); +} +); +width = 853; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(541,-9,o), +(647,27,o), +(714,90,c), +(696,120,l), +(635,64,o), +(537,26,o), +(437,26,cs), +(341,26,o), +(269,53,o), +(212,107,c), +(212,362,l), +(743,362,l), +(743,416,ls), +(743,609,o), +(612,737,o), +(416,737,cs), +(208,737,o), +(70,588,o), +(70,364,cs), +(70,140,o), +(217,-9,o), +(437,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(212,620,l), +(262,679,o), +(345,704,o), +(416,704,cs), +(491,704,o), +(574,681,o), +(618,626,c), +(618,395,l), +(212,395,l) +); +} +); +width = 813; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(551,-9,o), +(657,28,o), +(730,91,c), +(700,134,l), +(639,82,o), +(544,46,o), +(447,46,cs), +(351,46,o), +(279,73,o), +(222,127,c), +(222,352,l), +(753,352,l), +(753,416,ls), +(753,609,o), +(622,737,o), +(426,737,cs), +(218,737,o), +(80,588,o), +(80,364,cs), +(80,140,o), +(227,-9,o), +(447,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,600,l), +(272,659,o), +(355,684,o), +(426,684,cs), +(501,684,o), +(583,661,o), +(628,606,c), +(628,405,l), +(222,405,l) +); +} +); +width = 833; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,-9,o), +(643,27,o), +(710,90,c), +(692,120,l), +(631,64,o), +(533,26,o), +(433,26,cs), +(337,26,o), +(265,53,o), +(208,107,c), +(208,362,l), +(739,362,l), +(739,416,ls), +(739,609,o), +(608,737,o), +(412,737,cs), +(204,737,o), +(66,588,o), +(66,364,cs), +(66,140,o), +(213,-9,o), +(433,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,620,l), +(258,679,o), +(341,704,o), +(412,704,cs), +(487,704,o), +(570,681,o), +(614,626,c), +(614,395,l), +(208,395,l) +); +} +); +width = 805; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,-9,o), +(643,28,o), +(716,91,c), +(686,134,l), +(625,82,o), +(530,46,o), +(433,46,cs), +(337,46,o), +(265,73,o), +(208,127,c), +(208,352,l), +(739,352,l), +(739,416,ls), +(739,609,o), +(608,737,o), +(412,737,cs), +(204,737,o), +(66,588,o), +(66,364,cs), +(66,140,o), +(213,-9,o), +(433,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,600,l), +(258,659,o), +(341,684,o), +(412,684,cs), +(487,684,o), +(569,661,o), +(614,606,c), +(614,405,l), +(208,405,l) +); +} +); +width = 805; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(551,-9,o), +(657,27,o), +(724,90,c), +(706,120,l), +(645,64,o), +(547,26,o), +(447,26,cs), +(351,26,o), +(279,53,o), +(222,107,c), +(222,362,l), +(753,362,l), +(753,416,ls), +(753,609,o), +(622,737,o), +(426,737,cs), +(218,737,o), +(80,588,o), +(80,364,cs), +(80,140,o), +(227,-9,o), +(447,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,620,l), +(272,679,o), +(355,704,o), +(426,704,cs), +(501,704,o), +(584,681,o), +(628,626,c), +(628,395,l), +(222,395,l) +); +} +); +width = 833; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(551,-9,o), +(657,28,o), +(730,91,c), +(700,134,l), +(639,82,o), +(544,46,o), +(447,46,cs), +(351,46,o), +(279,73,o), +(222,127,c), +(222,352,l), +(753,352,l), +(753,416,ls), +(753,609,o), +(622,737,o), +(426,737,cs), +(218,737,o), +(80,588,o), +(80,364,cs), +(80,140,o), +(227,-9,o), +(447,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,600,l), +(272,659,o), +(355,684,o), +(426,684,cs), +(501,684,o), +(583,661,o), +(628,606,c), +(628,405,l), +(222,405,l) +); +} +); +width = 833; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(552,-9,o), +(656,27,o), +(723,90,c), +(705,120,l), +(645,64,o), +(548,26,o), +(450,26,cs), +(356,26,o), +(286,53,o), +(231,107,c), +(231,362,l), +(750,362,l), +(750,416,ls), +(750,609,o), +(623,737,o), +(431,737,cs), +(227,737,o), +(91,588,o), +(91,364,cs), +(91,140,o), +(236,-9,o), +(450,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,620,l), +(279,679,o), +(360,704,o), +(431,704,cs), +(504,704,o), +(585,681,o), +(629,626,c), +(629,395,l), +(231,395,l) +); +} +); +width = 841; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(547,-9,o), +(650,28,o), +(722,91,c), +(693,134,l), +(634,82,o), +(541,46,o), +(446,46,cs), +(352,46,o), +(282,73,o), +(227,127,c), +(227,352,l), +(744,352,l), +(744,416,ls), +(744,609,o), +(617,737,o), +(426,737,cs), +(223,737,o), +(88,588,o), +(88,364,cs), +(88,140,o), +(232,-9,o), +(446,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,600,l), +(275,659,o), +(356,684,o), +(426,684,cs), +(497,684,o), +(578,662,o), +(623,606,c), +(623,405,l), +(227,405,l) +); +} +); +width = 832; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(564,-9,o), +(670,27,o), +(737,90,c), +(719,120,l), +(658,64,o), +(560,26,o), +(460,26,cs), +(364,26,o), +(292,53,o), +(235,107,c), +(235,362,l), +(766,362,l), +(766,416,ls), +(766,609,o), +(635,737,o), +(439,737,cs), +(231,737,o), +(93,588,o), +(93,364,cs), +(93,140,o), +(240,-9,o), +(460,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,620,l), +(285,679,o), +(368,704,o), +(439,704,cs), +(514,704,o), +(597,681,o), +(641,626,c), +(641,395,l), +(235,395,l) +); +} +); +width = 832; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,-9,o), +(667,28,o), +(740,91,c), +(710,134,l), +(649,82,o), +(554,46,o), +(457,46,cs), +(361,46,o), +(289,73,o), +(232,127,c), +(232,352,l), +(763,352,l), +(763,416,ls), +(763,609,o), +(632,737,o), +(436,737,cs), +(228,737,o), +(90,588,o), +(90,364,cs), +(90,140,o), +(237,-9,o), +(457,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,600,l), +(282,659,o), +(365,684,o), +(436,684,cs), +(511,684,o), +(593,661,o), +(638,606,c), +(638,405,l), +(232,405,l) +); +} +); +width = 837; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(564,-9,o), +(670,27,o), +(737,90,c), +(719,120,l), +(658,64,o), +(560,26,o), +(460,26,cs), +(364,26,o), +(292,53,o), +(235,107,c), +(235,362,l), +(766,362,l), +(766,416,ls), +(766,609,o), +(635,737,o), +(439,737,cs), +(231,737,o), +(93,588,o), +(93,364,cs), +(93,140,o), +(240,-9,o), +(460,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,620,l), +(285,679,o), +(368,704,o), +(439,704,cs), +(514,704,o), +(597,681,o), +(641,626,c), +(641,395,l), +(235,395,l) +); +} +); +width = 832; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,-9,o), +(667,28,o), +(740,91,c), +(710,134,l), +(649,82,o), +(554,46,o), +(457,46,cs), +(361,46,o), +(289,73,o), +(232,127,c), +(232,352,l), +(763,352,l), +(763,416,ls), +(763,609,o), +(632,737,o), +(436,737,cs), +(228,737,o), +(90,588,o), +(90,364,cs), +(90,140,o), +(237,-9,o), +(457,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,600,l), +(282,659,o), +(365,684,o), +(436,684,cs), +(511,684,o), +(593,661,o), +(638,606,c), +(638,405,l), +(232,405,l) +); +} +); +width = 837; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(564,-9,o), +(670,27,o), +(737,90,c), +(719,120,l), +(658,64,o), +(560,26,o), +(460,26,cs), +(364,26,o), +(292,53,o), +(235,107,c), +(235,362,l), +(766,362,l), +(766,416,ls), +(766,609,o), +(635,737,o), +(439,737,cs), +(231,737,o), +(93,588,o), +(93,364,cs), +(93,140,o), +(240,-9,o), +(460,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,620,l), +(285,679,o), +(368,704,o), +(439,704,cs), +(514,704,o), +(597,681,o), +(641,626,c), +(641,395,l), +(235,395,l) +); +} +); +width = 832; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,-9,o), +(667,28,o), +(740,91,c), +(710,134,l), +(649,82,o), +(554,46,o), +(457,46,cs), +(361,46,o), +(289,73,o), +(232,127,c), +(232,352,l), +(763,352,l), +(763,416,ls), +(763,609,o), +(632,737,o), +(436,737,cs), +(228,737,o), +(90,588,o), +(90,364,cs), +(90,140,o), +(237,-9,o), +(457,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,600,l), +(282,659,o), +(365,684,o), +(436,684,cs), +(511,684,o), +(593,661,o), +(638,606,c), +(638,405,l), +(232,405,l) +); +} +); +width = 837; +} +); +unicode = 8494; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/eth.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/eth.glyph new file mode 100644 index 00000000..356a25d9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/eth.glyph @@ -0,0 +1,2025 @@ +{ +glyphname = eth; +kernLeft = KO_egrave; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-9,o), +(292,101,o), +(292,229,cs), +(292,397,o), +(228,580,o), +(130,729,c), +(96,729,l), +(165,626,o), +(221,506,o), +(252,382,c), +(247,382,l), +(232,419,o), +(201,444,o), +(165,444,cs), +(86,444,o), +(44,377,o), +(44,219,cs), +(44,101,o), +(67,-9,o), +(167,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,18,o), +(73,65,o), +(73,219,cs), +(73,369,o), +(106,417,o), +(166,417,cs), +(214,417,o), +(263,389,o), +(263,214,cs), +(263,67,o), +(225,18,o), +(168,18,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,638,l), +(285,663,l), +(54,613,l), +(54,588,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,-10,o), +(292,75,o), +(292,262,cs), +(292,415,o), +(241,581,o), +(134,729,c), +(103,729,l), +(161,651,o), +(216,544,o), +(242,455,c), +(240,454,l), +(223,489,o), +(195,509,o), +(165,509,cs), +(84,509,o), +(44,424,o), +(44,251,cs), +(44,76,o), +(84,-10,o), +(167,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(103,16,o), +(73,90,o), +(73,251,cs), +(73,410,o), +(102,483,o), +(166,483,cs), +(214,483,o), +(263,451,o), +(263,245,cs), +(263,88,o), +(233,16,o), +(168,16,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,637,l), +(285,662,l), +(54,605,l), +(54,581,l) +); +} +); +width = 337; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(370,-9,o), +(460,86,o), +(460,287,cs), +(460,453,o), +(397,617,o), +(320,729,c), +(124,729,l), +(201,631,o), +(255,535,o), +(285,427,c), +(277,427,l), +(260,461,o), +(223,483,o), +(179,483,cs), +(67,483,o), +(14,389,o), +(14,242,cs), +(14,75,o), +(92,-9,o), +(221,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(202,140,o), +(194,177,o), +(194,238,cs), +(194,322,o), +(209,342,o), +(234,342,cs), +(268,342,o), +(276,307,o), +(276,245,cs), +(276,161,o), +(261,140,o), +(236,140,cs) +); +}, +{ +closed = 1; +nodes = ( +(450,566,l), +(450,686,l), +(125,616,l), +(125,496,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,-9,o), +(445,86,o), +(445,276,cs), +(445,448,o), +(387,614,o), +(313,729,c), +(121,729,l), +(194,631,o), +(245,535,o), +(273,426,c), +(265,426,l), +(249,460,o), +(214,482,o), +(172,482,cs), +(77,482,o), +(14,415,o), +(14,241,cs), +(14,81,o), +(83,-9,o), +(223,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,137,o), +(191,176,o), +(191,237,cs), +(191,324,o), +(205,344,o), +(226,344,cs), +(257,344,o), +(263,309,o), +(263,244,cs), +(263,159,o), +(250,137,o), +(228,137,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,568,l), +(435,685,l), +(123,616,l), +(123,499,l) +); +} +); +width = 459; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(455,-8,o), +(561,87,o), +(561,235,cs), +(561,417,o), +(415,610,o), +(272,729,c), +(217,729,l), +(329,641,o), +(437,520,o), +(499,379,c), +(495,378,l), +(445,447,o), +(373,475,o), +(298,475,cs), +(144,475,o), +(34,379,o), +(34,233,cs), +(34,86,o), +(144,-8,o), +(298,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(162,25,o), +(72,109,o), +(72,234,cs), +(72,362,o), +(166,441,o), +(298,441,cs), +(430,441,o), +(523,355,o), +(523,230,cs), +(523,104,o), +(430,25,o), +(298,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(527,625,l), +(527,656,l), +(160,588,l), +(160,557,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,-9,o), +(591,95,o), +(591,250,cs), +(591,400,o), +(482,568,o), +(285,729,c), +(233,729,l), +(356,638,o), +(465,518,o), +(519,417,c), +(515,414,l), +(462,480,o), +(390,507,o), +(314,507,cs), +(146,507,o), +(34,404,o), +(34,249,cs), +(34,94,o), +(146,-9,o), +(313,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,26,o), +(72,112,o), +(72,250,cs), +(72,387,o), +(165,473,o), +(313,473,cs), +(460,473,o), +(553,385,o), +(553,245,cs), +(553,110,o), +(460,26,o), +(313,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(535,659,l), +(535,690,l), +(147,618,l), +(147,586,l) +); +} +); +width = 625; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(519,-9,o), +(655,101,o), +(655,294,cs), +(655,452,o), +(572,627,o), +(440,729,c), +(193,729,l), +(315,626,o), +(412,515,o), +(441,439,c), +(435,434,l), +(408,468,o), +(350,491,o), +(277,491,cs), +(121,491,o), +(10,391,o), +(10,241,cs), +(10,92,o), +(123,-9,o), +(314,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,147,o), +(231,182,o), +(231,255,cs), +(231,320,o), +(264,363,o), +(334,363,cs), +(396,363,o), +(438,328,o), +(438,255,cs), +(438,190,o), +(405,147,o), +(334,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(639,585,l), +(639,705,l), +(153,611,l), +(153,491,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,-9,o), +(655,90,o), +(655,296,cs), +(655,467,o), +(574,627,o), +(440,729,c), +(193,729,l), +(315,626,o), +(412,515,o), +(441,439,c), +(435,434,l), +(403,471,o), +(349,491,o), +(279,491,cs), +(127,491,o), +(10,398,o), +(10,247,cs), +(10,93,o), +(132,-9,o), +(314,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,147,o), +(231,182,o), +(231,255,cs), +(231,320,o), +(264,363,o), +(334,363,cs), +(396,363,o), +(438,328,o), +(438,255,cs), +(438,190,o), +(405,147,o), +(334,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(639,604,l), +(639,724,l), +(153,630,l), +(153,510,l) +); +} +); +width = 665; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-9,o), +(292,101,o), +(292,229,cs), +(292,397,o), +(228,580,o), +(130,729,c), +(96,729,l), +(165,626,o), +(221,506,o), +(252,382,c), +(247,382,l), +(232,419,o), +(201,444,o), +(165,444,cs), +(86,444,o), +(44,377,o), +(44,219,cs), +(44,101,o), +(67,-9,o), +(167,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,18,o), +(73,65,o), +(73,219,cs), +(73,369,o), +(106,417,o), +(166,417,cs), +(214,417,o), +(263,389,o), +(263,214,cs), +(263,67,o), +(225,18,o), +(168,18,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,638,l), +(285,663,l), +(54,613,l), +(54,588,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,-10,o), +(272,75,o), +(272,262,cs), +(272,415,o), +(221,581,o), +(114,729,c), +(83,729,l), +(141,651,o), +(196,544,o), +(222,455,c), +(220,454,l), +(203,489,o), +(175,509,o), +(145,509,cs), +(64,509,o), +(24,424,o), +(24,251,cs), +(24,76,o), +(64,-10,o), +(147,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(83,16,o), +(53,90,o), +(53,251,cs), +(53,410,o), +(82,483,o), +(146,483,cs), +(194,483,o), +(243,451,o), +(243,245,cs), +(243,88,o), +(213,16,o), +(148,16,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,637,l), +(265,662,l), +(34,605,l), +(34,581,l) +); +} +); +width = 297; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(370,-9,o), +(460,86,o), +(460,287,cs), +(460,453,o), +(397,617,o), +(320,729,c), +(124,729,l), +(201,631,o), +(255,535,o), +(285,427,c), +(277,427,l), +(260,461,o), +(223,483,o), +(179,483,cs), +(67,483,o), +(14,389,o), +(14,242,cs), +(14,75,o), +(92,-9,o), +(221,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(202,140,o), +(194,177,o), +(194,238,cs), +(194,322,o), +(209,342,o), +(234,342,cs), +(268,342,o), +(276,307,o), +(276,245,cs), +(276,161,o), +(261,140,o), +(236,140,cs) +); +}, +{ +closed = 1; +nodes = ( +(450,566,l), +(450,686,l), +(125,616,l), +(125,496,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,-9,o), +(436,86,o), +(436,276,cs), +(436,448,o), +(378,614,o), +(304,729,c), +(112,729,l), +(185,631,o), +(236,535,o), +(264,426,c), +(256,426,l), +(240,460,o), +(205,482,o), +(163,482,cs), +(68,482,o), +(5,415,o), +(5,241,cs), +(5,81,o), +(74,-9,o), +(214,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,137,o), +(182,176,o), +(182,237,cs), +(182,324,o), +(196,344,o), +(217,344,cs), +(248,344,o), +(254,309,o), +(254,244,cs), +(254,159,o), +(241,137,o), +(219,137,cs) +); +}, +{ +closed = 1; +nodes = ( +(426,568,l), +(426,685,l), +(114,616,l), +(114,499,l) +); +} +); +width = 441; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(407,-8,o), +(497,82,o), +(497,223,cs), +(497,389,o), +(378,582,o), +(256,729,c), +(210,729,l), +(303,619,o), +(395,482,o), +(441,359,c), +(438,359,l), +(403,421,o), +(343,451,o), +(267,451,cs), +(141,451,o), +(52,360,o), +(52,224,cs), +(52,81,o), +(144,-8,o), +(272,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,26,o), +(90,105,o), +(90,224,cs), +(90,343,o), +(164,417,o), +(271,417,cs), +(389,417,o), +(459,328,o), +(459,217,cs), +(459,98,o), +(384,26,o), +(273,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(442,626,l), +(442,654,l), +(151,589,l), +(151,561,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(390,-9,o), +(477,88,o), +(477,243,cs), +(477,423,o), +(363,597,o), +(256,729,c), +(213,729,l), +(290,640,o), +(373,521,o), +(420,402,c), +(418,402,l), +(383,472,o), +(323,506,o), +(247,506,cs), +(115,506,o), +(32,408,o), +(32,251,cs), +(32,91,o), +(117,-9,o), +(252,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(138,25,o), +(70,109,o), +(70,251,cs), +(70,391,o), +(137,473,o), +(251,473,cs), +(369,473,o), +(439,388,o), +(439,243,cs), +(439,106,o), +(370,25,o), +(253,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(442,635,l), +(442,663,l), +(151,591,l), +(151,563,l) +); +} +); +width = 509; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,-9,o), +(550,85,o), +(550,282,cs), +(550,418,o), +(497,587,o), +(370,729,c), +(148,729,l), +(248,631,o), +(332,517,o), +(372,407,c), +(367,407,l), +(347,447,o), +(299,470,o), +(237,470,cs), +(110,470,o), +(25,377,o), +(25,238,cs), +(25,88,o), +(128,-9,o), +(274,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,148,o), +(214,178,o), +(214,242,cs), +(214,299,o), +(238,337,o), +(288,337,cs), +(333,337,o), +(363,307,o), +(363,243,cs), +(363,186,o), +(339,148,o), +(288,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(544,587,l), +(544,707,l), +(139,616,l), +(139,496,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(429,-9,o), +(529,101,o), +(529,282,cs), +(529,433,o), +(460,605,o), +(349,729,c), +(127,729,l), +(219,639,o), +(298,534,o), +(339,432,c), +(329,429,l), +(308,454,o), +(265,470,o), +(221,470,cs), +(89,470,o), +(4,375,o), +(4,233,cs), +(4,82,o), +(102,-9,o), +(253,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,148,o), +(193,178,o), +(193,242,cs), +(193,299,o), +(217,337,o), +(267,337,cs), +(312,337,o), +(342,307,o), +(342,243,cs), +(342,186,o), +(318,148,o), +(267,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(513,587,l), +(513,707,l), +(108,616,l), +(108,496,l) +); +} +); +width = 533; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(455,-8,o), +(561,87,o), +(561,235,cs), +(561,417,o), +(415,610,o), +(272,729,c), +(217,729,l), +(329,641,o), +(437,520,o), +(499,379,c), +(495,378,l), +(445,447,o), +(373,475,o), +(298,475,cs), +(144,475,o), +(34,379,o), +(34,233,cs), +(34,86,o), +(144,-8,o), +(298,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(162,25,o), +(72,109,o), +(72,234,cs), +(72,362,o), +(166,441,o), +(298,441,cs), +(430,441,o), +(523,355,o), +(523,230,cs), +(523,104,o), +(430,25,o), +(298,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(527,625,l), +(527,656,l), +(160,588,l), +(160,557,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,-9,o), +(581,95,o), +(581,250,cs), +(581,400,o), +(472,568,o), +(275,729,c), +(223,729,l), +(346,638,o), +(455,518,o), +(509,417,c), +(505,414,l), +(452,480,o), +(380,507,o), +(304,507,cs), +(136,507,o), +(24,404,o), +(24,249,cs), +(24,94,o), +(136,-9,o), +(303,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(155,26,o), +(62,112,o), +(62,250,cs), +(62,387,o), +(155,473,o), +(303,473,cs), +(450,473,o), +(543,385,o), +(543,245,cs), +(543,110,o), +(450,26,o), +(303,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(525,659,l), +(525,690,l), +(137,618,l), +(137,586,l) +); +} +); +width = 605; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(519,-9,o), +(655,101,o), +(655,294,cs), +(655,452,o), +(572,627,o), +(440,729,c), +(193,729,l), +(315,626,o), +(412,515,o), +(441,439,c), +(435,434,l), +(408,468,o), +(350,491,o), +(277,491,cs), +(121,491,o), +(10,391,o), +(10,241,cs), +(10,92,o), +(123,-9,o), +(314,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,147,o), +(231,182,o), +(231,255,cs), +(231,320,o), +(264,363,o), +(334,363,cs), +(396,363,o), +(438,328,o), +(438,255,cs), +(438,190,o), +(405,147,o), +(334,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(639,585,l), +(639,705,l), +(153,611,l), +(153,491,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(501,-9,o), +(645,90,o), +(645,296,cs), +(645,467,o), +(564,627,o), +(430,729,c), +(183,729,l), +(305,626,o), +(402,515,o), +(431,439,c), +(425,434,l), +(393,471,o), +(339,491,o), +(269,491,cs), +(117,491,o), +(0,398,o), +(0,247,cs), +(0,93,o), +(122,-9,o), +(304,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,147,o), +(221,182,o), +(221,255,cs), +(221,320,o), +(254,363,o), +(324,363,cs), +(386,363,o), +(428,328,o), +(428,255,cs), +(428,190,o), +(395,147,o), +(324,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(629,604,l), +(629,724,l), +(143,630,l), +(143,510,l) +); +} +); +width = 645; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(407,-8,o), +(497,82,o), +(497,223,cs), +(497,389,o), +(378,582,o), +(256,729,c), +(210,729,l), +(303,619,o), +(395,482,o), +(441,359,c), +(438,359,l), +(403,421,o), +(343,451,o), +(267,451,cs), +(141,451,o), +(52,360,o), +(52,224,cs), +(52,81,o), +(144,-8,o), +(272,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,26,o), +(90,105,o), +(90,224,cs), +(90,343,o), +(164,417,o), +(271,417,cs), +(389,417,o), +(459,328,o), +(459,217,cs), +(459,98,o), +(384,26,o), +(273,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(442,626,l), +(442,654,l), +(151,589,l), +(151,561,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-9,o), +(490,88,o), +(490,243,cs), +(490,423,o), +(378,597,o), +(273,729,c), +(232,729,l), +(307,640,o), +(388,521,o), +(435,402,c), +(433,402,l), +(398,472,o), +(340,506,o), +(264,506,cs), +(136,506,o), +(53,408,o), +(53,251,cs), +(53,91,o), +(138,-9,o), +(269,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,25,o), +(91,109,o), +(91,251,cs), +(91,391,o), +(156,473,o), +(268,473,cs), +(384,473,o), +(452,388,o), +(452,243,cs), +(452,106,o), +(385,25,o), +(270,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(455,635,l), +(455,663,l), +(170,591,l), +(170,563,l) +); +} +); +width = 544; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,-9,o), +(550,85,o), +(550,282,cs), +(550,418,o), +(497,587,o), +(370,729,c), +(148,729,l), +(248,631,o), +(332,517,o), +(372,407,c), +(367,407,l), +(347,447,o), +(299,470,o), +(237,470,cs), +(110,470,o), +(25,377,o), +(25,238,cs), +(25,88,o), +(128,-9,o), +(274,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,148,o), +(214,178,o), +(214,242,cs), +(214,299,o), +(238,337,o), +(288,337,cs), +(333,337,o), +(363,307,o), +(363,243,cs), +(363,186,o), +(339,148,o), +(288,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(544,587,l), +(544,707,l), +(139,616,l), +(139,496,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-9,o), +(534,101,o), +(534,282,cs), +(534,433,o), +(469,603,o), +(361,729,c), +(141,729,l), +(230,639,o), +(306,534,o), +(346,432,c), +(336,429,l), +(316,454,o), +(275,470,o), +(234,470,cs), +(106,470,o), +(24,375,o), +(24,233,cs), +(24,82,o), +(119,-9,o), +(265,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,148,o), +(211,178,o), +(211,242,cs), +(211,299,o), +(233,337,o), +(279,337,cs), +(321,337,o), +(348,307,o), +(348,243,cs), +(348,186,o), +(327,148,o), +(279,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,587,l), +(519,707,l), +(124,616,l), +(124,496,l) +); +} +); +width = 556; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,-8,o), +(279,91,o), +(303,217,cs), +(337,393,o), +(310,589,o), +(251,729,c), +(217,729,l), +(257,638,o), +(285,532,o), +(293,387,c), +(290,386,l), +(274,427,o), +(245,444,o), +(211,444,cs), +(143,444,o), +(89,389,o), +(57,233,cs), +(29,99,o), +(36,-8,o), +(141,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(62,20,o), +(61,115,o), +(86,232,cs), +(114,368,o), +(153,418,o), +(208,418,cs), +(294,418,o), +(297,324,o), +(271,204,cs), +(243,71,o), +(200,20,o), +(146,20,cs) +); +}, +{ +closed = 1; +nodes = ( +(382,624,l), +(388,649,l), +(150,624,l), +(144,599,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,-10,o), +(248,69,o), +(290,240,cs), +(328,399,o), +(318,563,o), +(249,729,c), +(221,729,l), +(259,644,o), +(283,541,o), +(289,440,c), +(287,439,l), +(275,486,o), +(248,507,o), +(210,507,cs), +(140,507,o), +(86,430,o), +(47,269,cs), +(18,155,o), +(-5,-10,o), +(120,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(23,17,o), +(49,166,o), +(74,262,cs), +(110,412,o), +(154,480,o), +(210,480,cs), +(311,480,o), +(282,327,o), +(257,228,cs), +(222,83,o), +(179,17,o), +(122,17,cs) +); +}, +{ +closed = 1; +nodes = ( +(375,613,l), +(381,637,l), +(142,617,l), +(136,594,l) +); +} +); +width = 347; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(322,-7,o), +(412,75,o), +(454,276,cs), +(482,410,o), +(465,591,o), +(402,729,c), +(226,729,l), +(276,627,o), +(307,529,o), +(314,420,c), +(307,420,l), +(295,460,o), +(257,487,o), +(203,487,cs), +(104,487,o), +(40,400,o), +(15,278,cs), +(-23,92,o), +(32,-7,o), +(192,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,136,o), +(169,183,o), +(182,244,cs), +(199,324,o), +(218,345,o), +(242,345,cs), +(282,345,o), +(282,303,o), +(268,237,cs), +(252,162,o), +(235,136,o), +(208,136,cs) +); +}, +{ +closed = 1; +nodes = ( +(500,547,l), +(526,661,l), +(195,626,l), +(171,511,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,-10,o), +(396,80,o), +(435,278,cs), +(463,419,o), +(445,599,o), +(394,729,c), +(222,729,l), +(267,627,o), +(293,528,o), +(297,419,c), +(290,419,l), +(280,459,o), +(245,486,o), +(194,486,cs), +(105,486,o), +(43,414,o), +(15,276,cs), +(-23,90,o), +(32,-10,o), +(182,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,133,o), +(170,181,o), +(183,242,cs), +(200,323,o), +(218,344,o), +(234,344,cs), +(265,344,o), +(262,301,o), +(248,234,cs), +(232,160,o), +(219,133,o), +(198,133,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,547,l), +(508,661,l), +(196,626,l), +(173,511,l) +); +} +); +width = 447; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(379,-8,o), +(471,72,o), +(495,203,cs), +(526,375,o), +(424,588,o), +(328,729,c), +(285,729,l), +(363,628,o), +(433,485,o), +(467,350,c), +(463,349,l), +(431,418,o), +(370,453,o), +(295,453,cs), +(159,453,o), +(56,347,o), +(56,192,cs), +(56,63,o), +(145,-8,o), +(249,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,25,o), +(92,84,o), +(92,193,cs), +(92,329,o), +(178,420,o), +(294,420,cs), +(416,420,o), +(482,327,o), +(458,202,cs), +(436,87,o), +(355,25,o), +(255,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,595,l), +(543,624,l), +(223,560,l), +(216,530,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,-10,o), +(468,80,o), +(493,223,cs), +(525,387,o), +(447,577,o), +(357,729,c), +(316,729,l), +(371,643,o), +(429,528,o), +(458,413,c), +(452,412,l), +(423,473,o), +(366,505,o), +(288,505,cs), +(166,505,o), +(79,417,o), +(54,269,cs), +(25,98,o), +(101,-10,o), +(250,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(125,23,o), +(65,114,o), +(91,267,cs), +(114,399,o), +(185,472,o), +(290,472,cs), +(448,472,o), +(475,340,o), +(456,224,cs), +(433,98,o), +(358,23,o), +(254,23,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,616,l), +(532,644,l), +(232,597,l), +(226,569,l) +); +} +); +width = 554; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(404,-8,o), +(545,87,o), +(545,318,cs), +(545,448,o), +(486,612,o), +(397,729,c), +(188,729,l), +(268,639,o), +(335,522,o), +(360,422,c), +(355,420,l), +(334,449,o), +(286,468,o), +(234,468,cs), +(110,468,o), +(12,368,o), +(11,217,cs), +(10,78,o), +(107,-8,o), +(252,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,148,o), +(193,184,o), +(205,247,cs), +(213,294,o), +(241,336,o), +(290,336,cs), +(340,336,o), +(367,300,o), +(355,237,cs), +(347,190,o), +(319,148,o), +(270,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(586,540,l), +(610,652,l), +(168,610,l), +(146,497,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,-10,o), +(548,110,o), +(548,300,cs), +(548,448,o), +(476,614,o), +(377,729,c), +(156,729,l), +(245,645,o), +(323,528,o), +(356,427,c), +(351,425,l), +(331,450,o), +(287,465,o), +(239,465,cs), +(108,465,o), +(21,359,o), +(21,217,cs), +(21,80,o), +(115,-10,o), +(254,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,148,o), +(212,175,o), +(212,224,cs), +(212,280,o), +(238,337,o), +(299,337,cs), +(339,337,o), +(364,310,o), +(364,263,cs), +(364,203,o), +(339,148,o), +(277,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,581,l), +(582,694,l), +(142,622,l), +(124,507,l) +); +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(433,-8,o), +(539,74,o), +(567,210,cs), +(602,383,o), +(505,590,o), +(386,729,c), +(338,729,l), +(426,631,o), +(506,501,o), +(536,358,c), +(532,357,l), +(493,438,o), +(417,476,o), +(322,476,cs), +(157,476,o), +(42,368,o), +(42,211,cs), +(42,70,o), +(153,-8,o), +(280,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,25,o), +(80,92,o), +(80,209,cs), +(80,349,o), +(176,442,o), +(319,442,cs), +(464,442,o), +(556,348,o), +(529,210,cs), +(506,94,o), +(413,25,o), +(287,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(604,625,l), +(611,656,l), +(229,588,l), +(222,557,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-9,o), +(594,108,o), +(594,279,cs), +(594,450,o), +(466,619,o), +(363,729,c), +(316,729,l), +(410,638,o), +(503,508,o), +(545,403,c), +(541,400,l), +(491,484,o), +(407,508,o), +(329,508,cs), +(156,508,o), +(34,391,o), +(34,228,cs), +(34,77,o), +(139,-9,o), +(295,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,25,o), +(72,99,o), +(72,230,cs), +(72,370,o), +(171,474,o), +(330,474,cs), +(454,474,o), +(556,410,o), +(556,268,cs), +(556,137,o), +(469,25,o), +(298,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(581,642,l), +(585,673,l), +(190,628,l), +(185,596,l) +); +} +); +width = 631; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(497,-8,o), +(641,108,o), +(641,315,cs), +(641,445,o), +(588,603,o), +(493,729,c), +(267,729,l), +(350,632,o), +(414,523,o), +(441,447,c), +(435,445,l), +(399,481,o), +(347,499,o), +(282,499,cs), +(120,499,o), +(-1,395,o), +(-1,239,cs), +(-1,86,o), +(120,-8,o), +(289,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,147,o), +(218,182,o), +(218,245,cs), +(218,312,o), +(263,364,o), +(331,364,cs), +(384,364,o), +(427,333,o), +(427,267,cs), +(427,198,o), +(379,147,o), +(312,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(681,559,l), +(707,682,l), +(186,639,l), +(161,516,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(503,-8,o), +(640,116,o), +(640,310,cs), +(640,462,o), +(572,621,o), +(468,729,c), +(240,729,l), +(336,638,o), +(403,534,o), +(432,454,c), +(426,453,l), +(397,481,o), +(347,498,o), +(290,498,cs), +(120,498,o), +(8,391,o), +(8,234,cs), +(8,89,o), +(123,-8,o), +(295,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,147,o), +(218,182,o), +(218,245,cs), +(218,317,o), +(263,364,o), +(331,364,cs), +(382,364,o), +(427,333,o), +(427,267,cs), +(427,193,o), +(379,147,o), +(312,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(671,569,l), +(697,692,l), +(176,649,l), +(151,526,l) +); +} +); +width = 649; +} +); +metricLeft = o; +metricRight = o; +unicode = 240; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/etilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/etilde.glyph new file mode 100644 index 00000000..0ca86647 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/etilde.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = etilde; +kernLeft = KO_egrave; +kernRight = KO_eacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = e; +}, +{ +pos = (25,-156); +ref = tildecomb; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-10,-138); +ref = tildecomb; +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = e; +}, +{ +pos = (100,-155); +ref = tildecomb; +} +); +width = 615; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = e; +}, +{ +pos = (79,-129); +ref = tildecomb; +} +); +width = 693; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (25,-156); +ref = tildecomb; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-9,-138); +ref = tildecomb; +} +); +width = 425; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (98,-155); +ref = tildecomb; +} +); +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (40,-134); +ref = tildecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (100,-155); +ref = tildecomb; +} +); +width = 615; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = e; +}, +{ +alignment = -1; +pos = (79,-129); +ref = tildecomb; +} +); +width = 693; +}, +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (101,-155); +ref = tildecomb; +} +); +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (45,-134); +ref = tildecomb; +} +); +width = 590; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-10,-156); +ref = tildecomb; +} +); +width = 324; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-38,-138); +ref = tildecomb; +} +); +width = 440; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = e; +}, +{ +pos = (42,-155); +ref = tildecomb; +} +); +width = 552; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = e; +}, +{ +pos = (-14,-134); +ref = tildecomb; +} +); +width = 597; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = e; +}, +{ +pos = (54,-155); +ref = tildecomb; +} +); +width = 612; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = e; +}, +{ +pos = (31,-134); +ref = tildecomb; +} +); +width = 690; +} +); +unicode = 7869; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/euro.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/euro.glyph new file mode 100644 index 00000000..ddf59afa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/euro.glyph @@ -0,0 +1,1230 @@ +{ +glyphname = euro; +layers = ( +{ +background = { +shapes = ( +{ +pos = (36,0); +ref = C; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(421,-9,o), +(498,69,o), +(503,270,c), +(333,270,l), +(329,190,o), +(322,147,o), +(284,147,cs), +(245,147,o), +(233,203,o), +(233,365,cs), +(233,515,o), +(242,583,o), +(284,583,cs), +(320,583,o), +(328,546,o), +(333,465,c), +(503,465,l), +(494,668,o), +(419,739,o), +(283,739,cs), +(103,739,o), +(52,593,o), +(52,365,cs), +(52,136,o), +(101,-9,o), +(271,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(284,253,l), +(297,337,l), +(19,337,l), +(19,253,l) +); +}, +{ +closed = 1; +nodes = ( +(303,379,l), +(315,461,l), +(19,461,l), +(19,379,l) +); +} +); +width = 522; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,-10,o), +(393,39,o), +(404,234,c), +(372,234,l), +(362,88,o), +(329,19,o), +(241,19,cs), +(137,19,o), +(110,159,o), +(110,364,cs), +(110,570,o), +(137,709,o), +(242,709,cs), +(325,709,o), +(361,650,o), +(372,495,c), +(404,495,l), +(396,641,o), +(363,738,o), +(244,738,cs), +(146,738,o), +(77,668,o), +(77,364,cs), +(77,65,o), +(145,-10,o), +(242,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,280,l), +(246,309,l), +(26,309,l), +(26,280,l) +); +}, +{ +closed = 1; +nodes = ( +(263,420,l), +(267,448,l), +(26,448,l), +(26,420,l) +); +} +); +width = 447; +}, +{ +background = { +shapes = ( +{ +pos = (111,0); +ref = C; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(718,-8,o), +(856,87,o), +(879,237,c), +(840,238,l), +(817,111,o), +(700,28,o), +(528,28,cs), +(316,28,o), +(187,162,o), +(187,364,cs), +(187,566,o), +(316,700,o), +(528,700,cs), +(692,700,o), +(813,620,o), +(840,494,c), +(879,494,l), +(850,643,o), +(714,736,o), +(528,736,cs), +(299,736,o), +(147,587,o), +(147,364,cs), +(147,142,o), +(298,-8,o), +(528,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(559,268,l), +(564,303,l), +(40,303,l), +(40,268,l) +); +}, +{ +closed = 1; +nodes = ( +(588,426,l), +(593,461,l), +(40,461,l), +(40,426,l) +); +} +); +width = 921; +}, +{ +background = { +shapes = ( +{ +pos = (78,0); +ref = C; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(722,-10,o), +(888,97,o), +(907,260,c), +(673,260,l), +(657,207,o), +(589,174,o), +(510,174,cs), +(396,174,o), +(321,232,o), +(321,365,cs), +(321,498,o), +(396,556,o), +(510,556,cs), +(591,556,o), +(654,521,o), +(671,470,c), +(907,470,l), +(888,630,o), +(743,739,o), +(510,739,cs), +(238,739,o), +(84,592,o), +(84,365,cs), +(84,138,o), +(238,-10,o), +(510,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,237,l), +(551,341,l), +(21,341,l), +(21,237,l) +); +}, +{ +closed = 1; +nodes = ( +(558,388,l), +(573,491,l), +(21,491,l), +(21,388,l) +); +} +); +width = 922; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,-10,o), +(373,39,o), +(384,234,c), +(352,234,l), +(342,88,o), +(309,19,o), +(221,19,cs), +(117,19,o), +(90,159,o), +(90,364,cs), +(90,570,o), +(117,709,o), +(222,709,cs), +(305,709,o), +(341,650,o), +(352,495,c), +(384,495,l), +(376,641,o), +(343,738,o), +(224,738,cs), +(126,738,o), +(57,668,o), +(57,364,cs), +(57,65,o), +(125,-10,o), +(222,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,280,l), +(226,309,l), +(6,309,l), +(6,280,l) +); +}, +{ +closed = 1; +nodes = ( +(243,420,l), +(247,448,l), +(6,448,l), +(6,420,l) +); +} +); +width = 407; +}, +{ +background = { +shapes = ( +{ +pos = (36,0); +ref = C; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(411,-9,o), +(488,69,o), +(493,270,c), +(323,270,l), +(319,190,o), +(312,147,o), +(274,147,cs), +(235,147,o), +(223,203,o), +(223,365,cs), +(223,515,o), +(232,583,o), +(274,583,cs), +(310,583,o), +(318,546,o), +(323,465,c), +(493,465,l), +(484,668,o), +(409,739,o), +(273,739,cs), +(93,739,o), +(42,593,o), +(42,365,cs), +(42,136,o), +(91,-9,o), +(261,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,253,l), +(287,337,l), +(9,337,l), +(9,253,l) +); +}, +{ +closed = 1; +nodes = ( +(293,379,l), +(305,461,l), +(9,461,l), +(9,379,l) +); +} +); +width = 502; +}, +{ +background = { +shapes = ( +{ +pos = (76,0); +ref = C; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(629,-8,o), +(754,88,o), +(775,238,c), +(735,238,l), +(715,111,o), +(610,28,o), +(456,28,cs), +(267,28,o), +(152,162,o), +(152,364,cs), +(152,566,o), +(267,700,o), +(456,700,cs), +(609,700,o), +(713,615,o), +(735,494,c), +(775,494,l), +(749,643,o), +(625,736,o), +(456,736,cs), +(249,736,o), +(111,586,o), +(111,364,cs), +(111,143,o), +(248,-8,o), +(456,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(486,260,l), +(491,294,l), +(39,294,l), +(39,260,l) +); +}, +{ +closed = 1; +nodes = ( +(515,435,l), +(520,469,l), +(39,469,l), +(39,435,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +49 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +44 +); +stem = -2; +target = ( +0, +45 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +35 +); +stem = -2; +target = ( +0, +36 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +24 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +40 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 819; +}, +{ +background = { +shapes = ( +{ +pos = (71,0); +ref = C; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-10,o), +(780,98,o), +(797,259,c), +(587,259,l), +(573,203,o), +(515,166,o), +(448,166,cs), +(350,166,o), +(286,222,o), +(286,365,cs), +(286,507,o), +(350,563,o), +(448,563,cs), +(520,563,o), +(571,525,o), +(587,471,c), +(797,471,l), +(780,631,o), +(642,739,o), +(448,739,cs), +(223,739,o), +(73,608,o), +(73,365,cs), +(73,121,o), +(223,-10,o), +(448,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(472,245,l), +(486,341,l), +(15,341,l), +(15,245,l) +); +}, +{ +closed = 1; +nodes = ( +(493,388,l), +(507,482,l), +(15,482,l), +(15,388,l) +); +} +); +width = 809; +}, +{ +background = { +shapes = ( +{ +pos = (111,0); +ref = C; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(708,-8,o), +(846,87,o), +(869,237,c), +(830,238,l), +(807,111,o), +(690,28,o), +(518,28,cs), +(306,28,o), +(177,162,o), +(177,364,cs), +(177,566,o), +(306,700,o), +(518,700,cs), +(682,700,o), +(803,620,o), +(830,494,c), +(869,494,l), +(840,643,o), +(704,736,o), +(518,736,cs), +(289,736,o), +(137,587,o), +(137,364,cs), +(137,142,o), +(288,-8,o), +(518,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(549,268,l), +(554,303,l), +(30,303,l), +(30,268,l) +); +}, +{ +closed = 1; +nodes = ( +(578,426,l), +(583,461,l), +(30,461,l), +(30,426,l) +); +} +); +width = 901; +}, +{ +background = { +shapes = ( +{ +pos = (78,0); +ref = C; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(712,-10,o), +(878,97,o), +(897,260,c), +(663,260,l), +(647,207,o), +(579,174,o), +(500,174,cs), +(386,174,o), +(311,232,o), +(311,365,cs), +(311,498,o), +(386,556,o), +(500,556,cs), +(581,556,o), +(644,521,o), +(661,470,c), +(897,470,l), +(878,630,o), +(733,739,o), +(500,739,cs), +(228,739,o), +(74,592,o), +(74,365,cs), +(74,138,o), +(228,-10,o), +(500,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,237,l), +(541,341,l), +(11,341,l), +(11,237,l) +); +}, +{ +closed = 1; +nodes = ( +(548,388,l), +(563,491,l), +(11,491,l), +(11,388,l) +); +} +); +width = 902; +}, +{ +background = { +shapes = ( +{ +pos = (76,0); +ref = C; +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-8,o), +(761,88,o), +(782,238,c), +(743,238,l), +(724,111,o), +(621,28,o), +(469,28,cs), +(284,28,o), +(171,162,o), +(171,364,cs), +(171,566,o), +(284,700,o), +(469,700,cs), +(620,700,o), +(722,615,o), +(743,494,c), +(782,494,l), +(756,643,o), +(636,736,o), +(469,736,cs), +(266,736,o), +(132,586,o), +(132,364,cs), +(132,143,o), +(265,-8,o), +(469,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(499,260,l), +(504,294,l), +(60,294,l), +(60,260,l) +); +}, +{ +closed = 1; +nodes = ( +(528,435,l), +(533,469,l), +(60,469,l), +(60,435,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +49 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +44 +); +stem = -2; +target = ( +0, +45 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +35 +); +stem = -2; +target = ( +0, +36 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +24 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +40 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 846; +}, +{ +background = { +shapes = ( +{ +pos = (71,0); +ref = C; +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(642,-10,o), +(782,98,o), +(799,259,c), +(591,259,l), +(577,202,o), +(521,166,o), +(457,166,cs), +(363,166,o), +(302,223,o), +(302,365,cs), +(302,506,o), +(363,563,o), +(457,563,cs), +(526,563,o), +(575,526,o), +(591,471,c), +(799,471,l), +(782,632,o), +(646,739,o), +(457,739,cs), +(238,739,o), +(91,608,o), +(91,365,cs), +(91,121,o), +(238,-10,o), +(457,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(481,245,l), +(495,341,l), +(35,341,l), +(35,245,l) +); +}, +{ +closed = 1; +nodes = ( +(501,388,l), +(515,482,l), +(35,482,l), +(35,388,l) +); +} +); +width = 830; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,-9,o), +(361,46,o), +(399,234,c), +(368,234,l), +(336,100,o), +(291,20,o), +(205,20,cs), +(84,20,o), +(97,185,o), +(136,374,cs), +(182,593,o), +(239,708,o), +(329,708,cs), +(431,708,o), +(437,617,o), +(422,495,c), +(453,495,l), +(476,652,o), +(447,738,o), +(333,738,cs), +(234,738,o), +(161,645,o), +(104,375,cs), +(62,177,o), +(47,-9,o), +(202,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,280,l), +(256,309,l), +(36,309,l), +(30,280,l) +); +}, +{ +closed = 1; +nodes = ( +(296,420,l), +(305,448,l), +(64,448,l), +(59,420,l) +); +} +); +width = 447; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-9,o), +(463,73,o), +(504,270,c), +(336,270,l), +(315,189,o), +(300,147,o), +(265,147,cs), +(215,147,o), +(229,240,o), +(256,370,cs), +(287,520,o), +(310,582,o), +(350,582,cs), +(390,582,o), +(387,524,o), +(377,464,c), +(543,464,l), +(569,641,o), +(524,739,o), +(363,739,cs), +(211,739,o), +(129,616,o), +(80,382,cs), +(33,154,o), +(44,-9,o), +(245,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(280,253,l), +(311,337,l), +(33,337,l), +(15,253,l) +); +}, +{ +closed = 1; +nodes = ( +(326,379,l), +(355,461,l), +(59,461,l), +(42,379,l) +); +} +); +width = 523; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(598,-10,o), +(738,84,o), +(775,237,c), +(737,237,l), +(702,112,o), +(590,27,o), +(442,27,cs), +(290,27,o), +(192,127,o), +(198,309,cs), +(206,547,o), +(341,703,o), +(541,703,cs), +(683,703,o), +(777,615,o), +(781,493,c), +(816,493,l), +(815,638,o), +(706,739,o), +(549,739,cs), +(324,739,o), +(167,566,o), +(158,309,cs), +(152,118,o), +(262,-10,o), +(437,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(514,260,l), +(526,294,l), +(64,294,l), +(57,260,l) +); +}, +{ +closed = 1; +nodes = ( +(584,435,l), +(596,469,l), +(105,469,l), +(98,435,l) +); +} +); +width = 841; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(643,-9,o), +(774,93,o), +(802,255,c), +(598,255,l), +(578,192,o), +(531,159,o), +(457,159,cs), +(379,159,o), +(323,208,o), +(323,317,cs), +(323,468,o), +(394,569,o), +(508,569,cs), +(581,569,o), +(634,531,o), +(641,469,c), +(843,469,l), +(839,628,o), +(707,737,o), +(509,737,cs), +(278,737,o), +(116,573,o), +(116,320,cs), +(116,122,o), +(237,-9,o), +(460,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(487,245,l), +(521,341,l), +(50,341,l), +(30,245,l) +); +}, +{ +closed = 1; +nodes = ( +(538,388,l), +(572,482,l), +(80,482,l), +(60,388,l) +); +} +); +width = 839; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,-9,o), +(814,80,o), +(862,236,c), +(823,236,l), +(777,109,o), +(661,27,o), +(497,27,cs), +(316,27,o), +(196,127,o), +(196,314,cs), +(196,552,o), +(343,703,o), +(570,703,cs), +(723,703,o), +(840,620,o), +(862,497,c), +(900,497,l), +(880,642,o), +(749,739,o), +(572,739,cs), +(327,739,o), +(156,568,o), +(156,317,cs), +(156,115,o), +(287,-9,o), +(492,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(569,268,l), +(581,303,l), +(47,303,l), +(40,268,l) +); +}, +{ +closed = 1; +nodes = ( +(639,426,l), +(651,461,l), +(88,461,l), +(81,426,l) +); +} +); +width = 906; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(712,-10,o), +(882,87,o), +(916,255,c), +(685,255,l), +(664,199,o), +(594,169,o), +(516,169,cs), +(411,169,o), +(341,228,o), +(341,341,cs), +(341,465,o), +(412,561,o), +(551,561,cs), +(634,561,o), +(701,525,o), +(717,465,c), +(947,465,l), +(938,628,o), +(785,738,o), +(559,738,cs), +(293,738,o), +(112,573,o), +(112,324,cs), +(112,121,o), +(256,-10,o), +(502,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,237,l), +(581,341,l), +(36,341,l), +(13,237,l) +); +}, +{ +closed = 1; +nodes = ( +(597,388,l), +(635,491,l), +(67,491,l), +(45,388,l) +); +} +); +width = 933; +} +); +unicode = 8364; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/exclam.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/exclam.glyph new file mode 100644 index 00000000..74858616 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/exclam.glyph @@ -0,0 +1,625 @@ +{ +glyphname = exclam; +kernLeft = KO_exclam; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,232,l), +(201,507,l), +(201,729,l), +(25,729,l), +(25,507,l), +(74,232,l) +); +}, +{ +closed = 1; +nodes = ( +(168,-10,o), +(209,22,o), +(209,77,cs), +(209,132,o), +(168,164,o), +(113,164,cs), +(58,164,o), +(17,132,o), +(17,77,cs), +(17,22,o), +(58,-10,o), +(113,-10,cs) +); +} +); +width = 227; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(94,146,l), +(99,523,l), +(99,729,l), +(67,729,l), +(67,523,l), +(72,146,l) +); +}, +{ +closed = 1; +nodes = ( +(97,-6,o), +(108,4,o), +(108,18,cs), +(108,32,o), +(97,42,o), +(83,42,cs), +(69,42,o), +(58,32,o), +(58,18,cs), +(58,4,o), +(69,-6,o), +(83,-6,cs) +); +} +); +width = 165; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,186,l), +(109,493,l), +(109,729,l), +(71,729,l), +(71,493,l), +(80,186,l) +); +}, +{ +closed = 1; +nodes = ( +(107,-7,o), +(120,5,o), +(120,22,cs), +(120,39,o), +(107,51,o), +(90,51,cs), +(73,51,o), +(60,39,o), +(60,22,cs), +(60,5,o), +(73,-7,o), +(90,-7,cs) +); +} +); +width = 180; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,232,l), +(243,484,l), +(243,729,l), +(40,729,l), +(40,484,l), +(91,232,l) +); +}, +{ +closed = 1; +nodes = ( +(225,-10,o), +(259,29,o), +(259,83,cs), +(259,136,o), +(225,175,o), +(141,175,cs), +(57,175,o), +(23,136,o), +(23,83,cs), +(23,29,o), +(57,-10,o), +(141,-10,cs) +); +} +); +width = 283; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(74,125,l), +(79,523,l), +(79,729,l), +(47,729,l), +(47,523,l), +(52,125,l) +); +}, +{ +closed = 1; +nodes = ( +(79,-6,o), +(90,5,o), +(90,21,cs), +(90,37,o), +(79,48,o), +(63,48,cs), +(47,48,o), +(36,37,o), +(36,21,cs), +(36,5,o), +(47,-6,o), +(63,-6,cs) +); +} +); +width = 125; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,215,l), +(191,507,l), +(191,729,l), +(15,729,l), +(15,507,l), +(38,215,l) +); +}, +{ +closed = 1; +nodes = ( +(158,-10,o), +(199,31,o), +(199,86,cs), +(199,141,o), +(158,182,o), +(103,182,cs), +(48,182,o), +(7,141,o), +(7,86,cs), +(7,31,o), +(48,-10,o), +(103,-10,cs) +); +} +); +width = 207; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,152,l), +(113,463,l), +(113,729,l), +(74,729,l), +(74,463,l), +(83,152,l) +); +}, +{ +closed = 1; +nodes = ( +(112,-7,o), +(127,8,o), +(127,27,cs), +(127,46,o), +(112,61,o), +(93,61,cs), +(74,61,o), +(59,46,o), +(59,27,cs), +(59,8,o), +(74,-7,o), +(93,-7,cs) +); +} +); +width = 186; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,236,l), +(225,487,l), +(225,729,l), +(22,729,l), +(22,487,l), +(60,236,l) +); +}, +{ +closed = 1; +nodes = ( +(182,-8,o), +(226,36,o), +(226,95,cs), +(226,154,o), +(182,198,o), +(123,198,cs), +(64,198,o), +(20,154,o), +(20,95,cs), +(20,36,o), +(64,-8,o), +(123,-8,cs) +); +} +); +width = 246; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(90,142,l), +(99,449,l), +(99,729,l), +(61,729,l), +(61,449,l), +(70,142,l) +); +}, +{ +closed = 1; +nodes = ( +(99,-7,o), +(114,7,o), +(114,27,cs), +(114,47,o), +(99,61,o), +(80,61,cs), +(61,61,o), +(46,47,o), +(46,27,cs), +(46,7,o), +(61,-7,o), +(80,-7,cs) +); +} +); +width = 160; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,232,l), +(256,484,l), +(256,729,l), +(27,729,l), +(27,484,l), +(78,232,l) +); +}, +{ +closed = 1; +nodes = ( +(214,-10,o), +(261,29,o), +(261,91,cs), +(261,152,o), +(214,190,o), +(141,190,cs), +(68,190,o), +(21,152,o), +(21,91,cs), +(21,29,o), +(68,-10,o), +(141,-10,cs) +); +} +); +width = 283; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(144,205,l), +(149,523,l), +(149,729,l), +(110,729,l), +(110,523,l), +(114,205,l) +); +}, +{ +closed = 1; +nodes = ( +(149,-7,o), +(163,7,o), +(163,27,cs), +(163,48,o), +(149,63,o), +(129,63,cs), +(109,63,o), +(95,48,o), +(95,27,cs), +(95,7,o), +(109,-7,o), +(129,-7,cs) +); +} +); +width = 257; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(242,261,l), +(262,517,l), +(262,729,l), +(61,729,l), +(61,517,l), +(84,261,l) +); +}, +{ +closed = 1; +nodes = ( +(220,-8,o), +(265,36,o), +(265,93,cs), +(265,150,o), +(220,194,o), +(162,194,cs), +(105,194,o), +(59,150,o), +(59,93,cs), +(59,36,o), +(105,-8,o), +(162,-8,cs) +); +} +); +width = 325; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(70,146,l), +(155,523,l), +(197,729,l), +(166,729,l), +(123,523,l), +(48,146,l) +); +}, +{ +closed = 1; +nodes = ( +(45,-6,o), +(56,4,o), +(56,19,cs), +(56,33,o), +(46,42,o), +(33,42,cs), +(19,42,o), +(8,32,o), +(8,17,cs), +(8,3,o), +(18,-6,o), +(31,-6,cs) +); +} +); +width = 165; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,232,l), +(250,507,l), +(297,729,l), +(122,729,l), +(76,507,l), +(67,232,l) +); +}, +{ +closed = 1; +nodes = ( +(130,-10,o), +(172,27,o), +(172,82,cs), +(172,131,o), +(139,164,o), +(82,164,cs), +(19,164,o), +(-23,127,o), +(-23,72,cs), +(-23,23,o), +(10,-10,o), +(67,-10,cs) +); +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(109,186,l), +(183,493,l), +(232,729,l), +(193,729,l), +(144,493,l), +(89,186,l) +); +}, +{ +closed = 1; +nodes = ( +(82,-7,o), +(95,4,o), +(95,23,cs), +(95,40,o), +(83,51,o), +(66,51,cs), +(48,51,o), +(35,40,o), +(35,21,cs), +(35,4,o), +(47,-7,o), +(64,-7,cs) +); +} +); +width = 228; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,231,l), +(287,487,l), +(337,729,l), +(145,729,l), +(95,487,l), +(88,231,l) +); +}, +{ +closed = 1; +nodes = ( +(160,-8,o), +(204,29,o), +(204,87,cs), +(204,135,o), +(168,167,o), +(114,167,cs), +(50,167,o), +(6,130,o), +(6,72,cs), +(6,24,o), +(42,-8,o), +(96,-8,cs) +); +} +); +width = 291; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(86,186,l), +(159,493,l), +(208,729,l), +(170,729,l), +(121,493,l), +(66,186,l) +); +}, +{ +closed = 1; +nodes = ( +(58,-7,o), +(71,4,o), +(71,23,cs), +(71,40,o), +(59,51,o), +(42,51,cs), +(24,51,o), +(11,40,o), +(11,21,cs), +(11,4,o), +(23,-7,o), +(40,-7,cs) +); +} +); +width = 181; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,232,l), +(285,484,l), +(336,729,l), +(135,729,l), +(84,484,l), +(82,232,l) +); +}, +{ +closed = 1; +nodes = ( +(178,-10,o), +(224,26,o), +(224,90,cs), +(224,141,o), +(183,175,o), +(111,175,cs), +(30,175,o), +(-16,139,o), +(-16,75,cs), +(-16,24,o), +(25,-10,o), +(97,-10,cs) +); +} +); +width = 283; +} +); +unicode = 33; +userData = { +KernOnName = exclam; +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/exclam.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/exclam.ss01.glyph new file mode 100644 index 00000000..12071fd0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/exclam.ss01.glyph @@ -0,0 +1,478 @@ +{ +glyphname = exclam.ss01; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,232,l), +(199,507,l), +(199,729,l), +(23,729,l), +(23,507,l), +(72,232,l) +); +}, +{ +closed = 1; +nodes = ( +(196,0,l), +(196,174,l), +(27,174,l), +(27,0,l) +); +} +); +width = 222; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,146,l), +(100,523,l), +(100,729,l), +(68,729,l), +(68,523,l), +(73,146,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(107,54,l), +(60,54,l), +(60,0,l) +); +} +); +width = 168; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,186,l), +(110,493,l), +(110,729,l), +(72,729,l), +(72,493,l), +(81,186,l) +); +}, +{ +closed = 1; +nodes = ( +(114,0,l), +(114,61,l), +(69,61,l), +(69,0,l) +); +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,232,l), +(241,484,l), +(241,729,l), +(38,729,l), +(38,484,l), +(89,232,l) +); +}, +{ +closed = 1; +nodes = ( +(237,0,l), +(237,164,l), +(43,164,l), +(43,0,l) +); +} +); +width = 279; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(75,146,l), +(80,523,l), +(80,729,l), +(48,729,l), +(48,523,l), +(53,146,l) +); +}, +{ +closed = 1; +nodes = ( +(87,0,l), +(87,54,l), +(40,54,l), +(40,0,l) +); +} +); +width = 128; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,232,l), +(189,507,l), +(189,729,l), +(13,729,l), +(13,507,l), +(62,232,l) +); +}, +{ +closed = 1; +nodes = ( +(186,0,l), +(186,174,l), +(17,174,l), +(17,0,l) +); +} +); +width = 202; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,186,l), +(110,493,l), +(110,729,l), +(71,729,l), +(71,493,l), +(80,186,l) +); +}, +{ +closed = 1; +nodes = ( +(113,0,l), +(113,61,l), +(68,61,l), +(68,0,l) +); +} +); +width = 181; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,231,l), +(223,487,l), +(223,729,l), +(29,729,l), +(29,487,l), +(77,231,l) +); +}, +{ +closed = 1; +nodes = ( +(210,0,l), +(210,167,l), +(41,167,l), +(41,0,l) +); +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,186,l), +(100,493,l), +(100,729,l), +(62,729,l), +(62,493,l), +(71,186,l) +); +}, +{ +closed = 1; +nodes = ( +(104,0,l), +(104,61,l), +(59,61,l), +(59,0,l) +); +} +); +width = 162; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,232,l), +(231,484,l), +(231,729,l), +(28,729,l), +(28,484,l), +(79,232,l) +); +}, +{ +closed = 1; +nodes = ( +(227,0,l), +(227,164,l), +(33,164,l), +(33,0,l) +); +} +); +width = 259; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(125,186,l), +(135,493,l), +(135,729,l), +(96,729,l), +(96,493,l), +(105,186,l) +); +}, +{ +closed = 1; +nodes = ( +(138,0,l), +(138,61,l), +(93,61,l), +(93,0,l) +); +} +); +width = 230; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(194,231,l), +(242,487,l), +(242,729,l), +(49,729,l), +(49,487,l), +(96,231,l) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(228,167,l), +(61,167,l), +(61,0,l) +); +} +); +width = 288; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(71,146,l), +(156,523,l), +(198,729,l), +(167,729,l), +(124,523,l), +(49,146,l) +); +}, +{ +closed = 1; +nodes = ( +(53,0,l), +(64,54,l), +(17,54,l), +(7,0,l) +); +} +); +width = 168; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(142,232,l), +(246,507,l), +(293,729,l), +(118,729,l), +(72,507,l), +(63,232,l) +); +}, +{ +closed = 1; +nodes = ( +(137,0,l), +(173,174,l), +(6,174,l), +(-30,0,l) +); +} +); +width = 220; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(109,186,l), +(183,493,l), +(232,729,l), +(193,729,l), +(144,493,l), +(89,186,l) +); +}, +{ +closed = 1; +nodes = ( +(82,0,l), +(94,61,l), +(50,61,l), +(38,0,l) +); +} +); +width = 230; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,231,l), +(287,487,l), +(337,729,l), +(145,729,l), +(95,487,l), +(88,231,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(207,167,l), +(40,167,l), +(5,0,l) +); +} +); +width = 291; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(86,186,l), +(159,493,l), +(208,729,l), +(170,729,l), +(121,493,l), +(66,186,l) +); +}, +{ +closed = 1; +nodes = ( +(60,0,l), +(72,61,l), +(27,61,l), +(15,0,l) +); +} +); +width = 183; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,232,l), +(283,484,l), +(334,729,l), +(133,729,l), +(82,484,l), +(80,232,l) +); +}, +{ +closed = 1; +nodes = ( +(177,0,l), +(212,164,l), +(21,164,l), +(-14,0,l) +); +} +); +width = 277; +} +); +userData = { +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.case.glyph new file mode 100644 index 00000000..0f7de2eb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.case.glyph @@ -0,0 +1,192 @@ +{ +color = 6; +glyphname = exclamdown.case; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,213); +ref = exclamdown; +} +); +width = 165; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,188); +ref = exclamdown; +} +); +width = 227; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,213); +ref = exclamdown; +} +); +width = 180; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,185); +ref = exclamdown; +} +); +width = 283; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,213); +ref = exclamdown; +} +); +width = 165; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (0,188); +ref = exclamdown; +} +); +width = 227; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +pos = (0,213); +ref = exclamdown; +} +); +width = 186; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,184); +ref = exclamdown; +} +); +width = 268; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,213); +ref = exclamdown; +} +); +width = 180; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,185); +ref = exclamdown; +} +); +width = 283; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,213); +ref = exclamdown; +} +); +width = 257; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,184); +ref = exclamdown; +} +); +width = 325; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (44,213); +ref = exclamdown; +} +); +width = 165; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (39,188); +ref = exclamdown; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = exclamdown; +} +); +width = 228; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (38,184); +ref = exclamdown; +} +); +width = 291; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (44,213); +ref = exclamdown; +} +); +width = 181; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (38,185); +ref = exclamdown; +} +); +width = 283; +} +); +metricLeft = exclamdown; +metricRight = exclamdown; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.glyph new file mode 100644 index 00000000..d82c603d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = exclamdown; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (227,541); +ref = exclam; +} +); +width = 227; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (165,516); +ref = exclam; +} +); +width = 165; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (180,517); +ref = exclam; +} +); +width = 180; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (283,544); +ref = exclam; +} +); +width = 283; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (165,516); +ref = exclam; +} +); +width = 165; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (227,541); +ref = exclam; +} +); +width = 227; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (186,517); +ref = exclam; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 186; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (268,544); +ref = exclam; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 268; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (180,517); +ref = exclam; +} +); +width = 180; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (283,544); +ref = exclam; +} +); +width = 283; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (257,517); +ref = exclam; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 257; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (325,544); +ref = exclam; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 325; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (165,516); +ref = exclam; +} +); +width = 165; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (229,541); +ref = exclam; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (228,517); +ref = exclam; +} +); +width = 228; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (291,544); +ref = exclam; +} +); +width = 291; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (181,517); +ref = exclam; +} +); +width = 181; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (283,544); +ref = exclam; +} +); +width = 283; +} +); +metricLeft = exclam; +metricRight = exclam; +unicode = 161; +userData = { +KernOnSpecialSpacing = { +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.ss01.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.ss01.case.glyph new file mode 100644 index 00000000..8533c9f7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.ss01.case.glyph @@ -0,0 +1,193 @@ +{ +color = 6; +glyphname = exclamdown.ss01.case; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,213); +ref = exclamdown.ss01; +} +); +width = 168; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,188); +ref = exclamdown.ss01; +} +); +width = 222; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,213); +ref = exclamdown.ss01; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,185); +ref = exclamdown.ss01; +} +); +width = 279; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,213); +ref = exclamdown.ss01; +} +); +width = 168; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (0,188); +ref = exclamdown.ss01; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +pos = (0,213); +ref = exclamdown.ss01; +} +); +width = 181; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,184); +ref = exclamdown.ss01; +} +); +width = 273; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,213); +ref = exclamdown.ss01; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,185); +ref = exclamdown.ss01; +} +); +width = 279; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,213); +ref = exclamdown.ss01; +} +); +width = 230; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,184); +ref = exclamdown.ss01; +} +); +width = 288; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (44,213); +ref = exclamdown.ss01; +} +); +width = 168; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (39,188); +ref = exclamdown.ss01; +} +); +width = 220; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (44,213); +ref = exclamdown.ss01; +} +); +width = 230; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (38,184); +ref = exclamdown.ss01; +} +); +width = 291; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (44,213); +ref = exclamdown.ss01; +} +); +width = 183; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (38,185); +ref = exclamdown.ss01; +} +); +width = 277; +} +); +metricLeft = exclamdown.ss01; +metricRight = exclamdown.ss01; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.ss01.glyph new file mode 100644 index 00000000..cc25eb80 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/exclamdown.ss01.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = exclamdown.ss01; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (222,541); +ref = exclam.ss01; +} +); +width = 222; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (168,516); +ref = exclam.ss01; +} +); +width = 168; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (182,517); +ref = exclam.ss01; +} +); +width = 182; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (279,544); +ref = exclam.ss01; +} +); +width = 279; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (168,516); +ref = exclam.ss01; +} +); +width = 168; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (222,541); +ref = exclam.ss01; +} +); +width = 222; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (181,517); +ref = exclam.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 181; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (273,544); +ref = exclam.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 273; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (182,517); +ref = exclam.ss01; +} +); +width = 182; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (279,544); +ref = exclam.ss01; +} +); +width = 279; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (230,517); +ref = exclam.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 230; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (288,544); +ref = exclam.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 288; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (168,516); +ref = exclam.ss01; +} +); +width = 168; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (220,541); +ref = exclam.ss01; +} +); +width = 220; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (230,517); +ref = exclam.ss01; +} +); +width = 230; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (291,544); +ref = exclam.ss01; +} +); +width = 291; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (183,517); +ref = exclam.ss01; +} +); +width = 183; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (277,544); +ref = exclam.ss01; +} +); +width = 277; +} +); +metricLeft = "=|exclam.ss01"; +metricRight = "=|exclam.ss01"; +userData = { +KernOnSpecialSpacing = { +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/f.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/f.glyph new file mode 100644 index 00000000..0d982e55 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/f.glyph @@ -0,0 +1,1784 @@ +{ +glyphname = f; +kernLeft = KO_f; +kernRight = KO_f; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (11,0); +}, +{ +name = "#exit"; +pos = (293,0); +}, +{ +name = bottom; +pos = (160,0); +}, +{ +name = top; +pos = (160,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,l), +(236,401,l), +(293,398,l), +(293,541,l), +(236,539,l), +(236,561,ls), +(236,593,o), +(243,605,o), +(272,605,cs), +(300,605,l), +(300,729,l), +(222,729,ls), +(102,729,o), +(59,672,o), +(59,575,cs), +(59,539,l), +(11,541,l), +(11,398,l), +(59,401,l), +(59,0,l) +); +} +); +width = 304; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (23,0); +}, +{ +name = "#exit"; +pos = (142,0); +}, +{ +name = bottom; +pos = (91,0); +}, +{ +name = top; +pos = (91,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(92,489,l), +(144,489,l), +(144,516,l), +(92,516,l), +(92,648,ls), +(92,684,o), +(100,700,o), +(132,700,cs), +(149,700,l), +(149,729,l), +(132,729,ls), +(91,729,o), +(63,712,o), +(63,654,cs), +(63,516,l), +(23,516,l), +(23,489,l), +(63,489,l), +(63,0,l) +); +} +); +width = 157; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (11,0); +}, +{ +name = "#exit"; +pos = (292,0); +}, +{ +name = bottom; +pos = (148,0); +}, +{ +name = top; +pos = (148,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(156,0,l), +(156,485,l), +(293,485,l), +(293,517,l), +(156,517,l), +(156,598,ls), +(156,666,o), +(182,695,o), +(248,695,cs), +(316,695,l), +(316,729,l), +(242,729,ls), +(166,729,o), +(119,688,o), +(119,603,cs), +(119,517,l), +(11,517,l), +(11,485,l), +(119,485,l), +(119,0,l) +); +} +); +width = 304; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (4,0); +}, +{ +name = "#exit"; +pos = (428,0); +}, +{ +name = bottom; +pos = (222,0); +}, +{ +name = top; +pos = (222,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,l), +(314,379,l), +(428,379,l), +(428,544,l), +(314,544,l), +(314,554,ls), +(314,576,o), +(331,589,o), +(359,589,cs), +(440,589,l), +(440,729,l), +(325,729,ls), +(171,729,o), +(93,678,o), +(93,559,cs), +(93,544,l), +(4,544,l), +(4,379,l), +(93,379,l), +(93,0,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,l), +(314,379,l), +(428,379,l), +(428,544,l), +(314,544,l), +(314,558,ls), +(314,579,o), +(326,589,o), +(354,589,cs), +(440,589,l), +(440,729,l), +(274,729,ls), +(157,729,o), +(93,675,o), +(93,576,cs), +(93,544,l), +(4,544,l), +(4,379,l), +(93,379,l), +(93,0,l) +); +} +); +width = 432; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (178,0); +}, +{ +name = bottom; +pos = (102,0); +}, +{ +name = top; +pos = (102,729); +} +); +associatedMasterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +attr = { +coordinates = ( +75, +400, +1, +0 +); +}; +layerId = "A76BE9BD-B402-4139-B9DC-17FCA99F3436"; +name = "{75, 400, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(124,0,l), +(124,464,l), +(178,463,l), +(178,523,l), +(124,523,l), +(124,620,ls), +(124,651,o), +(130,669,o), +(163,669,cs), +(183,669,l), +(183,729,l), +(149,729,ls), +(85,729,o), +(53,701,o), +(53,631,cs), +(53,523,l), +(11,523,l), +(11,463,l), +(53,464,l), +(53,0,l) +); +} +); +width = 204; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (322,0); +}, +{ +name = bottom; +pos = (161,0); +}, +{ +name = top; +pos = (173,729); +} +); +associatedMasterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +attr = { +coordinates = ( +125, +400, +1, +0 +); +}; +layerId = "81417C71-699B-4461-A028-D338900B14D5"; +name = "{125, 400, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,0,l), +(205,455,l), +(336,455,l), +(336,525,l), +(205,525,l), +(205,586,ls), +(205,636,o), +(229,659,o), +(284,659,cs), +(341,659,l), +(341,729,l), +(270,729,ls), +(172,729,o), +(116,685,o), +(116,590,cs), +(116,525,l), +(13,525,l), +(13,455,l), +(116,455,l), +(116,0,l) +); +} +); +width = 346; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (185,0); +}, +{ +name = bottom; +pos = (97,0); +}, +{ +name = top; +pos = (97,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(99,0,l), +(99,489,l), +(185,489,l), +(185,516,l), +(99,516,l), +(99,643,ls), +(99,681,o), +(114,700,o), +(143,700,cs), +(185,700,l), +(185,729,l), +(145,729,ls), +(95,729,o), +(69,700,o), +(69,646,cs), +(69,516,l), +(0,516,l), +(0,489,l), +(69,489,l), +(69,0,l) +); +} +); +width = 189; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (216,0); +}, +{ +name = bottom; +pos = (114,0); +}, +{ +name = top; +pos = (114,729); +} +); +associatedMasterId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +attr = { +coordinates = ( +75, +400, +100, +0 +); +}; +layerId = "A632C4AC-2ABD-4832-91F9-EC740AB98249"; +name = "{75, 400, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(137,463,l), +(217,463,l), +(217,523,l), +(137,523,l), +(137,620,ls), +(137,653,o), +(150,669,o), +(177,669,cs), +(219,669,l), +(219,729,l), +(166,729,ls), +(98,729,o), +(65,694,o), +(65,626,cs), +(65,523,l), +(1,523,l), +(1,463,l), +(65,463,l), +(65,0,l) +); +} +); +width = 224; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (293,0); +}, +{ +name = bottom; +pos = (156,0); +}, +{ +name = top; +pos = (156,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,l), +(232,399,l), +(298,398,l), +(298,541,l), +(232,541,l), +(232,561,ls), +(232,584,o), +(241,593,o), +(262,593,cs), +(305,593,l), +(305,729,l), +(218,729,ls), +(107,729,o), +(55,680,o), +(55,575,cs), +(55,541,l), +(5,541,l), +(5,398,l), +(55,399,l), +(55,0,l) +); +} +); +width = 312; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (2,0); +}, +{ +name = "#exit"; +pos = (279,0); +}, +{ +name = bottom; +pos = (136,0); +}, +{ +name = top; +pos = (136,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,0,l), +(167,485,l), +(294,485,l), +(294,517,l), +(167,517,l), +(167,620,ls), +(167,665,o), +(181,695,o), +(237,695,cs), +(307,695,l), +(307,729,l), +(234,729,ls), +(172,729,o), +(130,696,o), +(130,627,cs), +(130,517,l), +(22,517,l), +(22,485,l), +(130,485,l), +(130,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,0,l), +(147,485,l), +(279,485,l), +(279,517,l), +(147,517,l), +(147,606,ls), +(147,669,o), +(171,695,o), +(233,695,cs), +(287,695,l), +(287,729,l), +(224,729,ls), +(154,729,o), +(110,691,o), +(110,612,cs), +(110,517,l), +(2,517,l), +(2,485,l), +(110,485,l), +(110,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 287; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (1,0); +}, +{ +name = "#exit"; +pos = (306,0); +}, +{ +name = bottom; +pos = (151,0); +}, +{ +name = top; +pos = (151,729); +} +); +associatedMasterId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +attr = { +coordinates = ( +100, +400, +100, +0 +); +}; +layerId = "1005C66E-9B60-41BC-A704-444338967786"; +name = "{100, 400, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,0,l), +(182,458,l), +(306,458,l), +(306,525,l), +(182,525,l), +(182,595,ls), +(182,648,o), +(204,668,o), +(255,668,cs), +(314,668,l), +(314,729,l), +(234,729,ls), +(151,729,o), +(101,686,o), +(101,603,cs), +(101,525,l), +(1,525,l), +(1,458,l), +(101,458,l), +(101,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 314; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (372,0); +}, +{ +name = bottom; +pos = (188,0); +}, +{ +name = top; +pos = (188,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,0,l), +(288,391,l), +(390,391,l), +(390,544,l), +(288,544,l), +(288,572,ls), +(288,592,o), +(299,606,o), +(334,606,cs), +(398,606,l), +(398,729,l), +(275,729,ls), +(161,729,o), +(97,675,o), +(97,580,cs), +(97,544,l), +(17,544,l), +(17,391,l), +(97,391,l), +(97,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(271,391,l), +(373,391,l), +(373,544,l), +(271,544,l), +(271,566,ls), +(271,594,o), +(287,601,o), +(310,601,cs), +(381,601,l), +(381,729,l), +(258,729,ls), +(144,729,o), +(80,675,o), +(80,580,cs), +(80,544,l), +(0,544,l), +(0,391,l), +(80,391,l), +(80,0,l) +); +} +); +width = 380; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (6,0); +}, +{ +name = "#exit"; +pos = (287,0); +}, +{ +name = bottom; +pos = (143,0); +}, +{ +name = top; +pos = (143,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(151,485,l), +(288,485,l), +(288,517,l), +(151,517,l), +(151,598,ls), +(151,666,o), +(177,695,o), +(243,695,cs), +(311,695,l), +(311,729,l), +(237,729,ls), +(161,729,o), +(114,688,o), +(114,603,cs), +(114,517,l), +(6,517,l), +(6,485,l), +(114,485,l), +(114,0,l) +); +} +); +width = 320; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (4,0); +}, +{ +name = "#exit"; +pos = (326,0); +}, +{ +name = bottom; +pos = (164,0); +}, +{ +name = top; +pos = (164,729); +} +); +associatedMasterId = "106FCE83-F343-403B-A314-646E4D059B3F"; +attr = { +coordinates = ( +125, +400, +100, +0 +); +}; +layerId = "48274309-B6A3-48F7-99A7-F9B925B333E0"; +name = "{125, 400, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,l), +(196,455,l), +(327,455,l), +(327,525,l), +(196,525,l), +(196,587,ls), +(196,637,o), +(218,659,o), +(273,659,cs), +(346,659,l), +(346,729,l), +(246,729,ls), +(158,729,o), +(107,684,o), +(107,595,cs), +(107,525,l), +(4,525,l), +(4,455,l), +(107,455,l), +(107,0,l) +); +} +); +width = 350; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-1,0); +}, +{ +name = "#exit"; +pos = (422,0); +}, +{ +name = bottom; +pos = (217,0); +}, +{ +name = top; +pos = (217,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,l), +(314,379,l), +(428,379,l), +(428,544,l), +(314,544,l), +(314,554,ls), +(314,576,o), +(331,589,o), +(359,589,cs), +(440,589,l), +(440,729,l), +(325,729,ls), +(171,729,o), +(93,678,o), +(93,559,cs), +(93,544,l), +(4,544,l), +(4,379,l), +(93,379,l), +(93,0,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,0,l), +(309,379,l), +(423,379,l), +(423,544,l), +(309,544,l), +(309,558,ls), +(309,579,o), +(321,589,o), +(349,589,cs), +(435,589,l), +(435,729,l), +(269,729,ls), +(152,729,o), +(88,675,o), +(88,576,cs), +(88,544,l), +(-1,544,l), +(-1,379,l), +(88,379,l), +(88,0,l) +); +} +); +width = 435; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (25,0); +}, +{ +name = "#exit"; +pos = (288,0); +}, +{ +name = bottom; +pos = (155,0); +}, +{ +name = top; +pos = (155,759); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,0,l), +(167,485,l), +(294,485,l), +(294,517,l), +(167,517,l), +(167,620,ls), +(167,665,o), +(181,695,o), +(237,695,cs), +(307,695,l), +(307,729,l), +(234,729,ls), +(172,729,o), +(130,696,o), +(130,627,cs), +(130,517,l), +(22,517,l), +(22,485,l), +(130,485,l), +(130,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(166,0,l), +(166,485,l), +(291,485,l), +(291,517,l), +(166,517,l), +(166,636,ls), +(166,699,o), +(190,725,o), +(250,725,cs), +(304,725,l), +(304,759,l), +(243,759,ls), +(173,759,o), +(131,721,o), +(131,642,cs), +(131,517,l), +(25,517,l), +(25,485,l), +(131,485,l), +(131,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 315; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (11,0); +}, +{ +name = "#exit"; +pos = (282,0); +}, +{ +name = bottom; +pos = (149,0); +}, +{ +name = top; +pos = (152,758); +} +); +associatedMasterId = m019; +attr = { +coordinates = ( +100, +400, +1, +0 +); +}; +layerId = "C8D736D1-4231-457C-8067-82A870B1DF78"; +name = "{100, 400, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,0,l), +(182,459,l), +(286,459,l), +(286,524,l), +(182,524,l), +(182,636,ls), +(182,677,o), +(198,694,o), +(238,694,cs), +(295,694,l), +(295,759,l), +(229,759,ls), +(148,759,o), +(102,719,o), +(102,636,cs), +(102,524,l), +(17,524,l), +(17,459,l), +(102,459,l), +(102,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 305; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (16,0); +}, +{ +name = "#exit"; +pos = (375,0); +}, +{ +name = bottom; +pos = (197,0); +}, +{ +name = top; +pos = (197,759); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,0,l), +(288,391,l), +(390,391,l), +(390,544,l), +(288,544,l), +(288,572,ls), +(288,592,o), +(299,606,o), +(334,606,cs), +(398,606,l), +(398,729,l), +(275,729,ls), +(161,729,o), +(97,675,o), +(97,580,cs), +(97,544,l), +(17,544,l), +(17,391,l), +(97,391,l), +(97,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(280,0,l), +(280,391,l), +(375,391,l), +(375,544,l), +(280,544,l), +(280,591,ls), +(280,619,o), +(295,626,o), +(315,626,cs), +(383,626,l), +(383,759,l), +(262,759,ls), +(152,759,o), +(90,705,o), +(90,610,cs), +(90,544,l), +(16,544,l), +(16,391,l), +(90,391,l), +(90,0,l) +); +} +); +width = 390; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-54,0); +}, +{ +name = "#exit"; +pos = (66,0); +}, +{ +name = bottom; +pos = (48,0); +}, +{ +name = top; +pos = (199,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(38,0,l), +(140,489,l), +(192,489,l), +(197,516,l), +(146,516,l), +(173,648,ls), +(182,688,o), +(196,700,o), +(225,700,cs), +(240,700,l), +(245,729,l), +(229,729,ls), +(187,729,o), +(158,710,o), +(146,654,cs), +(117,516,l), +(78,516,l), +(72,489,l), +(111,489,l), +(9,0,l) +); +} +); +width = 156; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-51,0); +}, +{ +name = "#exit"; +pos = (112,0); +}, +{ +name = bottom; +pos = (47,0); +}, +{ +name = top; +pos = (198,729); +} +); +associatedMasterId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +attr = { +coordinates = ( +75, +400, +1, +1 +); +}; +layerId = "0B568F17-BA3E-4D60-9365-4563D084473E"; +name = "{75, 400, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,l), +(155,463,l), +(208,463,l), +(220,523,l), +(168,523,l), +(187,620,ls), +(193,653,o), +(205,669,o), +(236,669,cs), +(256,669,l), +(267,729,l), +(234,729,ls), +(170,729,o), +(134,700,o), +(120,632,cs), +(97,523,l), +(56,523,l), +(43,463,l), +(84,463,l), +(-12,0,l) +); +} +); +width = 201; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-54,0); +}, +{ +name = "#exit"; +pos = (223,0); +}, +{ +name = bottom; +pos = (111,0); +}, +{ +name = top; +pos = (262,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,0,l), +(260,402,l), +(316,399,l), +(344,541,l), +(288,539,l), +(293,563,ls), +(301,597,o), +(309,606,o), +(335,606,cs), +(365,606,l), +(390,729,l), +(314,729,ls), +(196,729,o), +(142,675,o), +(121,576,cs), +(113,539,l), +(67,541,l), +(38,399,l), +(85,402,l), +(1,0,l) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-52,0); +}, +{ +name = "#exit"; +pos = (207,0); +}, +{ +name = bottom; +pos = (105,0); +}, +{ +name = top; +pos = (256,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(207,485,l), +(328,485,l), +(335,517,l), +(214,517,l), +(239,636,ls), +(247,674,o), +(272,696,o), +(314,696,cs), +(385,696,l), +(392,729,l), +(314,729,ls), +(259,729,o), +(217,701,o), +(204,642,cs), +(177,517,l), +(76,517,l), +(69,485,l), +(171,485,l), +(69,0,l) +); +} +); +width = 305; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-51,0); +}, +{ +name = "#exit"; +pos = (202,0); +}, +{ +name = bottom; +pos = (91,0); +}, +{ +name = top; +pos = (242,729); +} +); +associatedMasterId = "095FE76F-1953-440B-9108-AA0678D151F9"; +attr = { +coordinates = ( +100, +400, +1, +1 +); +}; +layerId = "5C1270BD-9BF7-44A1-802C-05468B858737"; +name = "{100, 400, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(207,460,l), +(310,460,l), +(324,525,l), +(221,525,l), +(239,611,ls), +(247,648,o), +(267,664,o), +(309,664,cs), +(363,664,l), +(377,729,l), +(297,729,ls), +(222,729,o), +(176,695,o), +(162,626,cs), +(141,525,l), +(56,525,l), +(42,460,l), +(127,460,l), +(31,0,l) +); +} +); +width = 290; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-54,0); +}, +{ +name = "#exit"; +pos = (318,0); +}, +{ +name = bottom; +pos = (157,0); +}, +{ +name = top; +pos = (308,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,0,l), +(311,391,l), +(414,391,l), +(445,544,l), +(343,544,l), +(347,560,ls), +(354,591,o), +(375,599,o), +(412,599,cs), +(467,599,l), +(494,729,l), +(360,729,ls), +(240,729,o), +(181,676,o), +(164,593,cs), +(154,544,l), +(73,544,l), +(42,391,l), +(122,391,l), +(40,0,l) +); +} +); +width = 405; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-49,0); +}, +{ +name = "#exit"; +pos = (218,0); +}, +{ +name = bottom; +pos = (81,0); +}, +{ +name = top; +pos = (245,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(200,485,l), +(326,485,l), +(333,517,l), +(207,517,l), +(224,599,ls), +(239,673,o), +(264,695,o), +(330,695,cs), +(384,695,l), +(391,729,l), +(323,729,ls), +(253,729,o), +(208,697,o), +(191,614,cs), +(171,517,l), +(65,517,l), +(59,485,l), +(164,485,l), +(64,0,l) +); +} +); +width = 290; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-51,0); +}, +{ +name = "#exit"; +pos = (240,0); +}, +{ +name = bottom; +pos = (107,0); +}, +{ +name = top; +pos = (258,729); +} +); +associatedMasterId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +attr = { +coordinates = ( +125, +400, +1, +1 +); +}; +layerId = "33247132-9097-4752-BA40-720313E095E2"; +name = "{125, 400, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,0,l), +(228,455,l), +(350,455,l), +(364,525,l), +(242,525,l), +(257,593,ls), +(268,641,o), +(286,659,o), +(346,659,cs), +(403,659,l), +(418,729,l), +(327,729,ls), +(240,729,o), +(189,691,o), +(173,613,cs), +(154,525,l), +(53,525,l), +(39,455,l), +(140,455,l), +(45,0,l) +); +} +); +width = 321; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-55,0); +}, +{ +name = "#exit"; +pos = (364,0); +}, +{ +name = bottom; +pos = (174,0); +}, +{ +name = top; +pos = (325,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,0,l), +(333,379,l), +(447,379,l), +(481,544,l), +(368,544,l), +(370,554,ls), +(375,578,o), +(387,589,o), +(430,589,cs), +(495,589,l), +(525,729,l), +(374,729,ls), +(244,729,o), +(176,677,o), +(157,587,cs), +(148,544,l), +(61,544,l), +(26,379,l), +(114,379,l), +(36,0,l) +); +} +); +width = 428; +} +); +unicode = 102; +userData = { +KernOnName = f; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/f.longarm.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/f.longarm.glyph new file mode 100644 index 00000000..85c24148 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/f.longarm.glyph @@ -0,0 +1,167 @@ +{ +glyphname = f.longarm; +layers = ( +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = f; +} +); +width = 189; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = f; +} +); +width = 312; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = f; +} +); +width = 287; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = f; +} +); +width = 380; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = f; +} +); +width = 320; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = f; +} +); +width = 435; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = f; +} +); +width = 157; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = f; +} +); +width = 304; +}, +{ +layerId = m019; +shapes = ( +{ +ref = f; +} +); +width = 315; +}, +{ +layerId = m020; +shapes = ( +{ +ref = f; +} +); +width = 390; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = f; +} +); +width = 304; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = f; +} +); +width = 432; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = f; +} +); +width = 156; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = f; +} +); +width = 300; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = f; +} +); +width = 305; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = f; +} +); +width = 405; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = f; +} +); +width = 290; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = f; +} +); +width = 428; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/f_f.liga.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/f_f.liga.glyph new file mode 100644 index 00000000..a5b742e3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/f_f.liga.glyph @@ -0,0 +1,515 @@ +{ +glyphname = f_f.liga; +kernLeft = KO_f; +kernRight = KO_f_f.liga; +layers = ( +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = f; +}, +{ +pos = (282,0); +ref = f; +} +); +width = 586; +}, +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = f; +}, +{ +pos = (119,0); +ref = f; +} +); +width = 276; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = f; +}, +{ +pos = (281,0); +ref = f; +} +); +width = 585; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = f; +}, +{ +pos = (424,0); +ref = f; +} +); +width = 856; +}, +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = f; +}, +{ +pos = (185,0); +ref = f; +} +); +width = 374; +}, +{ +background = { +shapes = ( +{ +pos = (296,0); +ref = f; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = f; +}, +{ +pos = (293,0); +ref = f; +} +); +width = 605; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = f; +}, +{ +pos = (277,0); +ref = f; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 564; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = f; +}, +{ +pos = (372,0); +ref = f; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +}; +width = 752; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = f; +}, +{ +pos = (281,0); +ref = f; +} +); +width = 601; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = f; +}, +{ +pos = (423,0); +ref = f; +} +); +width = 858; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (263,0); +ref = f; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 578; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (359,0); +ref = f; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +}; +width = 749; +}, +{ +background = { +shapes = ( +{ +pos = (12,0); +ref = f; +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = f; +}, +{ +pos = (120,0); +ref = f; +} +); +width = 276; +}, +{ +background = { +shapes = ( +{ +pos = (277,0); +ref = f; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = f; +}, +{ +pos = (277,0); +ref = f; +} +); +width = 577; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = f; +}, +{ +pos = (259,0); +ref = f; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = f; +}, +{ +pos = (372,0); +ref = f; +} +); +width = 777; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = f; +}, +{ +pos = (267,0); +ref = f; +} +); +width = 557; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = f; +}, +{ +pos = (419,0); +ref = f; +} +); +width = 847; +} +); +metricLeft = f; +metricRight = f; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/f_f_i.liga.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/f_f_i.liga.glyph new file mode 100644 index 00000000..4e853dc2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/f_f_i.liga.glyph @@ -0,0 +1,459 @@ +{ +glyphname = f_f_i.liga; +kernLeft = KO_f; +kernRight = KO_fi; +layers = ( +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = f; +}, +{ +pos = (119,0); +ref = _f.longarm; +}, +{ +pos = (243,0); +ref = i; +} +); +width = 392; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = f; +}, +{ +pos = (282,0); +ref = _f.longarm; +}, +{ +pos = (589,0); +ref = i; +} +); +width = 820; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = f; +}, +{ +pos = (281,0); +ref = _f.longarm; +}, +{ +pos = (583,0); +ref = i; +} +); +width = 752; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = f; +}, +{ +pos = (424,0); +ref = _f.longarm; +}, +{ +pos = (864,0); +ref = i; +} +); +width = 1171; +}, +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = f; +}, +{ +pos = (185,0); +ref = _f.longarm; +}, +{ +pos = (384,0); +ref = i; +} +); +width = 486; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = f; +}, +{ +pos = (293,0); +ref = _f.longarm; +}, +{ +pos = (628,0); +ref = i; +} +); +width = 837; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = f; +}, +{ +pos = (277,0); +ref = _f.longarm; +}, +{ +pos = (616,0); +ref = i; +} +); +width = 770; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = f; +}, +{ +pos = (372,0); +ref = _f.longarm; +}, +{ +pos = (806,0); +ref = i; +} +); +width = 1057; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = f; +}, +{ +pos = (281,0); +ref = _f.longarm; +}, +{ +pos = (654,0); +ref = i; +} +); +width = 803; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = f; +}, +{ +pos = (423,0); +ref = _f.longarm; +}, +{ +pos = (890,0); +ref = i; +} +); +width = 1177; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (263,0); +ref = _f.longarm; +}, +{ +pos = (556,0); +ref = i; +} +); +width = 763; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (359,0); +ref = _f.longarm; +}, +{ +pos = (744,0); +ref = i; +} +); +width = 1047; +}, +{ +background = { +shapes = ( +{ +pos = (12,0); +ref = f; +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = f; +}, +{ +pos = (120,0); +ref = _f.longarm; +}, +{ +pos = (233,0); +ref = i; +} +); +width = 384; +}, +{ +background = { +shapes = ( +{ +pos = (277,0); +ref = f; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = f; +}, +{ +pos = (277,0); +ref = _f.longarm; +}, +{ +pos = (580,0); +ref = i; +} +); +width = 809; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = f; +}, +{ +pos = (259,0); +ref = _f.longarm; +}, +{ +pos = (540,0); +ref = i; +} +); +width = 746; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = f; +}, +{ +pos = (372,0); +ref = _f.longarm; +}, +{ +pos = (770,0); +ref = i; +} +); +width = 1072; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = f; +}, +{ +pos = (267,0); +ref = _f.longarm; +}, +{ +pos = (558,0); +ref = i; +} +); +width = 726; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = f; +}, +{ +pos = (419,0); +ref = _f.longarm; +}, +{ +pos = (861,0); +ref = i; +} +); +width = 1167; +} +); +metricLeft = f; +metricRight = i; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/f_f_i.liga.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/f_f_i.liga.ss01.glyph new file mode 100644 index 00000000..7a575e41 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/f_f_i.liga.ss01.glyph @@ -0,0 +1,459 @@ +{ +glyphname = f_f_i.liga.ss01; +kernLeft = KO_f; +kernRight = KO_l; +layers = ( +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = f; +}, +{ +pos = (119,0); +ref = _f.longarm; +}, +{ +pos = (243,0); +ref = i.ss01; +} +); +width = 392; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = f; +}, +{ +pos = (282,0); +ref = _f.longarm; +}, +{ +pos = (589,0); +ref = i.ss01; +} +); +width = 820; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = f; +}, +{ +pos = (281,0); +ref = _f.longarm; +}, +{ +pos = (583,0); +ref = i.ss01; +} +); +width = 752; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = f; +}, +{ +pos = (424,0); +ref = _f.longarm; +}, +{ +pos = (864,0); +ref = i.ss01; +} +); +width = 1171; +}, +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = f; +}, +{ +pos = (185,0); +ref = _f.longarm; +}, +{ +pos = (384,0); +ref = i.ss01; +} +); +width = 486; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = f; +}, +{ +pos = (293,0); +ref = _f.longarm; +}, +{ +pos = (628,0); +ref = i.ss01; +} +); +width = 837; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = f; +}, +{ +pos = (277,0); +ref = _f.longarm; +}, +{ +pos = (616,0); +ref = i.ss01; +} +); +width = 770; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = f; +}, +{ +pos = (372,0); +ref = _f.longarm; +}, +{ +pos = (806,0); +ref = i.ss01; +} +); +width = 1057; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = f; +}, +{ +pos = (281,0); +ref = _f.longarm; +}, +{ +pos = (654,0); +ref = i.ss01; +} +); +width = 823; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = f; +}, +{ +pos = (423,0); +ref = _f.longarm; +}, +{ +pos = (890,0); +ref = i.ss01; +} +); +width = 1197; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (263,0); +ref = _f.longarm; +}, +{ +pos = (556,0); +ref = i.ss01; +} +); +width = 763; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (359,0); +ref = _f.longarm; +}, +{ +pos = (744,0); +ref = i.ss01; +} +); +width = 1047; +}, +{ +background = { +shapes = ( +{ +pos = (155,0); +ref = f; +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = f; +}, +{ +pos = (120,0); +ref = _f.longarm; +}, +{ +pos = (233,0); +ref = i.ss01; +} +); +width = 384; +}, +{ +background = { +shapes = ( +{ +pos = (280,0); +ref = f; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = f; +}, +{ +pos = (277,0); +ref = _f.longarm; +}, +{ +pos = (580,0); +ref = i.ss01; +} +); +width = 809; +}, +{ +background = { +shapes = ( +{ +pos = (255,0); +ref = f; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = f; +}, +{ +pos = (259,0); +ref = _f.longarm; +}, +{ +pos = (540,0); +ref = i.ss01; +} +); +width = 746; +}, +{ +background = { +shapes = ( +{ +pos = (351,0); +ref = f; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = f; +}, +{ +pos = (372,0); +ref = _f.longarm; +}, +{ +pos = (770,0); +ref = i.ss01; +} +); +width = 1072; +}, +{ +background = { +shapes = ( +{ +pos = (253,0); +ref = f; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = f; +}, +{ +pos = (267,0); +ref = _f.longarm; +}, +{ +pos = (558,0); +ref = i.ss01; +} +); +width = 726; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = f; +}, +{ +pos = (419,0); +ref = _f.longarm; +}, +{ +pos = (861,0); +ref = i.ss01; +} +); +width = 1167; +} +); +metricLeft = f; +metricRight = i.ss01; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/f_y.liga.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/f_y.liga.glyph new file mode 100644 index 00000000..cf318682 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/f_y.liga.glyph @@ -0,0 +1,387 @@ +{ +glyphname = f_y.liga; +kernLeft = KO_f; +kernRight = KO_v; +layers = ( +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = f; +}, +{ +pos = (122,0); +ref = y; +} +); +width = 376; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = f; +}, +{ +pos = (249,0); +ref = y; +} +); +width = 688; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = f; +}, +{ +pos = (262,0); +ref = y; +} +); +width = 820; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = f; +}, +{ +pos = (358,0); +ref = y; +} +); +width = 1031; +}, +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = f; +}, +{ +pos = (175,0); +ref = y; +} +); +width = 420; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = f; +}, +{ +pos = (263,0); +ref = y; +} +); +width = 687; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = f; +}, +{ +pos = (259,0); +ref = y; +} +); +width = 707; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = f; +}, +{ +pos = (315,0); +ref = y; +} +); +width = 892; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = f; +}, +{ +pos = (267,0); +ref = y; +} +); +width = 815; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = f; +}, +{ +pos = (356,0); +ref = y; +} +); +width = 1019; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (246,0); +ref = y; +} +); +width = 733; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (310,0); +ref = y; +} +); +width = 892; +}, +{ +background = { +shapes = ( +{ +pos = (12,0); +ref = f; +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = f; +}, +{ +pos = (122,0); +ref = y; +} +); +width = 374; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = f; +}, +{ +pos = (249,0); +ref = y; +} +); +width = 683; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = f; +}, +{ +pos = (239,0); +ref = y; +} +); +width = 718; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = f; +}, +{ +pos = (326,0); +ref = y; +} +); +width = 912; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = f; +}, +{ +pos = (251,0); +ref = y; +} +); +width = 805; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = f; +}, +{ +pos = (355,0); +ref = y; +} +); +width = 1021; +} +); +metricLeft = f; +metricRight = y; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/fi.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/fi.glyph new file mode 100644 index 00000000..cb57b8fa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/fi.glyph @@ -0,0 +1,392 @@ +{ +glyphname = fi; +kernLeft = KO_f; +kernRight = KO_fi; +layers = ( +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (124,0); +ref = i; +} +); +width = 273; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (307,0); +ref = i; +} +); +width = 538; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (302,0); +ref = i; +} +); +width = 471; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (440,0); +ref = i; +} +); +width = 747; +}, +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (199,0); +ref = i; +} +); +width = 301; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (335,0); +ref = i; +} +); +width = 544; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (339,0); +ref = i; +} +); +width = 493; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (434,0); +ref = i; +} +); +width = 685; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (373,0); +ref = i; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (467,0); +ref = i; +} +); +width = 754; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (293,0); +ref = i; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (385,0); +ref = i; +} +); +width = 688; +}, +{ +background = { +shapes = ( +{ +pos = (12,0); +ref = f; +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (113,0); +ref = i; +} +); +width = 264; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +}, +{ +pos = (312,0); +ref = i; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (303,0); +ref = i; +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (281,0); +ref = i; +} +); +width = 487; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (398,0); +ref = i; +} +); +width = 700; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (291,0); +ref = i; +} +); +width = 459; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (442,0); +ref = i; +} +); +width = 748; +} +); +metricLeft = f; +metricRight = i; +unicode = 64257; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/fi.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/fi.ss01.glyph new file mode 100644 index 00000000..7b8d8544 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/fi.ss01.glyph @@ -0,0 +1,387 @@ +{ +glyphname = fi.ss01; +kernLeft = KO_f; +kernRight = KO_l; +layers = ( +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (124,0); +ref = i.ss01; +} +); +width = 273; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (307,0); +ref = i.ss01; +} +); +width = 538; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (302,0); +ref = i.ss01; +} +); +width = 471; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (440,0); +ref = i.ss01; +} +); +width = 747; +}, +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (199,0); +ref = i.ss01; +} +); +width = 301; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (335,0); +ref = i.ss01; +} +); +width = 544; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (339,0); +ref = i.ss01; +} +); +width = 493; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (434,0); +ref = i.ss01; +} +); +width = 685; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (373,0); +ref = i.ss01; +} +); +width = 542; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (467,0); +ref = i.ss01; +} +); +width = 774; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (293,0); +ref = i.ss01; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (385,0); +ref = i.ss01; +} +); +width = 688; +}, +{ +background = { +shapes = ( +{ +pos = (12,0); +ref = f; +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (113,0); +ref = i.ss01; +} +); +width = 264; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (303,0); +ref = i.ss01; +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (281,0); +ref = i.ss01; +} +); +width = 487; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (398,0); +ref = i.ss01; +} +); +width = 700; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (291,0); +ref = i.ss01; +} +); +width = 459; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (442,0); +ref = i.ss01; +} +); +width = 748; +} +); +metricLeft = f; +metricRight = i.ss01; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/five.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/five.blackC_ircled.glyph new file mode 100644 index 00000000..f848a0ec --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/five.blackC_ircled.glyph @@ -0,0 +1,2654 @@ +{ +color = 0; +glyphname = five.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,133,o), +(222,188,o), +(218,270,c), +(328,270,l), +(328,238,o), +(337,225,o), +(352,225,cs), +(371,225,o), +(378,245,o), +(378,284,cs), +(378,326,o), +(369,343,o), +(353,343,cs), +(338,343,o), +(330,325,o), +(330,305,c), +(223,305,l), +(234,572,l), +(464,572,l), +(464,479,l), +(335,479,l), +(330,414,l), +(334,412,l), +(343,428,o), +(363,433,o), +(381,433,cs), +(453,433,o), +(488,374,o), +(488,287,cs), +(488,182,o), +(433,133,o), +(352,133,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,143,o), +(222,198,o), +(218,280,c), +(328,280,l), +(328,248,o), +(337,235,o), +(352,235,cs), +(371,235,o), +(378,255,o), +(378,294,cs), +(378,336,o), +(369,353,o), +(353,353,cs), +(338,353,o), +(330,335,o), +(330,315,c), +(223,315,l), +(234,582,l), +(464,582,l), +(464,489,l), +(335,489,l), +(330,424,l), +(334,422,l), +(343,438,o), +(363,443,o), +(381,443,cs), +(453,443,o), +(488,384,o), +(488,297,cs), +(488,192,o), +(433,143,o), +(352,143,cs) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,134,o), +(256,189,o), +(256,271,c), +(285,271,l), +(284,187,o), +(313,159,o), +(350,159,cs), +(393,159,o), +(412,196,o), +(412,280,cs), +(412,367,o), +(389,396,o), +(351,396,cs), +(318,396,o), +(297,374,o), +(291,326,c), +(261,326,l), +(269,572,l), +(439,572,l), +(439,545,l), +(296,545,l), +(290,381,l), +(292,381,l), +(304,406,o), +(326,421,o), +(355,421,cs), +(417,421,o), +(442,370,o), +(442,281,cs), +(442,180,o), +(409,134,o), +(350,134,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,143,o), +(256,198,o), +(256,280,c), +(285,280,l), +(284,196,o), +(313,168,o), +(350,168,cs), +(393,168,o), +(412,205,o), +(412,289,cs), +(412,376,o), +(389,405,o), +(351,405,cs), +(318,405,o), +(297,383,o), +(291,335,c), +(261,335,l), +(269,581,l), +(439,581,l), +(439,554,l), +(296,554,l), +(290,390,l), +(292,390,l), +(304,415,o), +(326,430,o), +(355,430,cs), +(417,430,o), +(442,379,o), +(442,290,cs), +(442,189,o), +(409,143,o), +(350,143,cs) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,134,o), +(263,189,o), +(263,271,c), +(299,271,l), +(298,207,o), +(355,165,o), +(438,165,cs), +(535,165,o), +(583,211,o), +(583,280,cs), +(583,355,o), +(532,394,o), +(442,394,cs), +(374,394,o), +(329,368,o), +(309,337,c), +(273,337,l), +(286,572,l), +(611,572,l), +(611,541,l), +(319,541,l), +(309,371,l), +(312,371,l), +(337,402,o), +(390,424,o), +(448,424,cs), +(562,424,o), +(622,367,o), +(622,281,cs), +(622,187,o), +(546,134,o), +(438,134,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,145,o), +(262,200,o), +(262,282,c), +(298,282,l), +(297,218,o), +(354,176,o), +(437,176,cs), +(534,176,o), +(582,222,o), +(582,291,cs), +(582,366,o), +(531,405,o), +(441,405,cs), +(373,405,o), +(328,379,o), +(308,348,c), +(272,348,l), +(285,583,l), +(610,583,l), +(610,552,l), +(318,552,l), +(308,382,l), +(311,382,l), +(336,413,o), +(389,435,o), +(447,435,cs), +(561,435,o), +(621,378,o), +(621,292,cs), +(621,198,o), +(545,145,o), +(437,145,cs) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,135,o), +(236,192,o), +(229,272,c), +(379,272,l), +(385,250,o), +(405,246,o), +(431,246,cs), +(466,246,o), +(484,263,o), +(484,288,cs), +(484,313,o), +(463,328,o), +(433,328,cs), +(405,328,o), +(381,316,o), +(372,299,c), +(236,299,l), +(251,574,l), +(613,574,l), +(613,457,l), +(387,457,l), +(382,407,l), +(388,405,l), +(399,419,o), +(437,431,o), +(474,431,cs), +(563,431,o), +(635,383,o), +(635,288,cs), +(635,184,o), +(544,135,o), +(429,135,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(291,147,o), +(234,204,o), +(227,284,c), +(377,284,l), +(383,262,o), +(403,258,o), +(429,258,cs), +(464,258,o), +(482,275,o), +(482,300,cs), +(482,325,o), +(461,340,o), +(431,340,cs), +(403,340,o), +(379,328,o), +(370,311,c), +(234,311,l), +(249,586,l), +(611,586,l), +(611,469,l), +(385,469,l), +(380,419,l), +(386,417,l), +(397,431,o), +(435,443,o), +(472,443,cs), +(561,443,o), +(633,395,o), +(633,300,cs), +(633,196,o), +(542,147,o), +(427,147,cs) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,134,o), +(256,189,o), +(256,271,c), +(285,271,l), +(284,187,o), +(313,159,o), +(350,159,cs), +(393,159,o), +(412,196,o), +(412,280,cs), +(412,367,o), +(389,396,o), +(351,396,cs), +(318,396,o), +(297,374,o), +(291,326,c), +(261,326,l), +(269,572,l), +(439,572,l), +(439,545,l), +(296,545,l), +(290,381,l), +(292,381,l), +(304,406,o), +(326,421,o), +(355,421,cs), +(417,421,o), +(442,370,o), +(442,281,cs), +(442,180,o), +(409,134,o), +(350,134,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(263,143,o), +(236,198,o), +(236,280,c), +(265,280,l), +(264,196,o), +(293,168,o), +(330,168,cs), +(373,168,o), +(392,205,o), +(392,289,cs), +(392,376,o), +(369,405,o), +(331,405,cs), +(298,405,o), +(277,383,o), +(271,335,c), +(241,335,l), +(249,581,l), +(419,581,l), +(419,554,l), +(276,554,l), +(270,390,l), +(272,390,l), +(284,415,o), +(306,430,o), +(335,430,cs), +(397,430,o), +(422,379,o), +(422,290,cs), +(422,189,o), +(389,143,o), +(330,143,cs) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,133,o), +(222,188,o), +(218,270,c), +(328,270,l), +(328,238,o), +(337,225,o), +(352,225,cs), +(371,225,o), +(378,245,o), +(378,284,cs), +(378,326,o), +(369,343,o), +(353,343,cs), +(338,343,o), +(330,325,o), +(330,305,c), +(223,305,l), +(234,572,l), +(464,572,l), +(464,479,l), +(335,479,l), +(330,414,l), +(334,412,l), +(343,428,o), +(363,433,o), +(381,433,cs), +(453,433,o), +(488,374,o), +(488,287,cs), +(488,182,o), +(433,133,o), +(352,133,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,143,o), +(212,198,o), +(208,280,c), +(318,280,l), +(318,248,o), +(327,235,o), +(342,235,cs), +(361,235,o), +(368,255,o), +(368,294,cs), +(368,336,o), +(359,353,o), +(343,353,cs), +(328,353,o), +(320,335,o), +(320,315,c), +(213,315,l), +(224,582,l), +(454,582,l), +(454,489,l), +(325,489,l), +(320,424,l), +(324,422,l), +(333,438,o), +(353,443,o), +(371,443,cs), +(443,443,o), +(478,384,o), +(478,297,cs), +(478,192,o), +(423,143,o), +(342,143,cs) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,134,o), +(297,186,o), +(294,253,c), +(329,253,l), +(333,200,o), +(372,165,o), +(431,165,cs), +(501,165,o), +(542,210,o), +(542,276,cs), +(542,346,o), +(498,387,o), +(433,387,cs), +(387,387,o), +(350,364,o), +(336,331,c), +(299,331,l), +(317,572,l), +(567,572,l), +(567,541,l), +(347,541,l), +(333,366,l), +(335,365,l), +(356,398,o), +(397,416,o), +(440,416,cs), +(523,416,o), +(577,360,o), +(577,278,cs), +(577,192,o), +(519,134,o), +(430,134,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(328,144,o), +(277,196,o), +(274,263,c), +(309,263,l), +(313,210,o), +(352,175,o), +(411,175,cs), +(481,175,o), +(522,220,o), +(522,286,cs), +(522,356,o), +(478,397,o), +(413,397,cs), +(367,397,o), +(330,374,o), +(316,341,c), +(279,341,l), +(297,582,l), +(547,582,l), +(547,551,l), +(327,551,l), +(313,376,l), +(315,375,l), +(336,408,o), +(377,426,o), +(420,426,cs), +(503,426,o), +(557,370,o), +(557,288,cs), +(557,202,o), +(499,144,o), +(410,144,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +142, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +445, +30 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +621, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +630, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +354, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +138, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +440, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +613, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +582, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +297, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,133,o), +(261,186,o), +(253,265,c), +(381,265,l), +(386,250,o), +(402,241,o), +(423,241,cs), +(449,241,o), +(466,261,o), +(466,282,cs), +(466,306,o), +(448,323,o), +(424,323,cs), +(404,323,o), +(388,312,o), +(384,297,c), +(263,297,l), +(282,572,l), +(583,572,l), +(583,461,l), +(395,461,l), +(386,406,l), +(392,404,l), +(401,414,o), +(432,423,o), +(459,423,cs), +(541,423,o), +(594,369,o), +(594,287,cs), +(594,195,o), +(525,133,o), +(420,133,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(303,145,o), +(244,198,o), +(236,277,c), +(364,277,l), +(369,262,o), +(385,253,o), +(406,253,cs), +(432,253,o), +(449,273,o), +(449,294,cs), +(449,318,o), +(431,335,o), +(407,335,cs), +(387,335,o), +(371,324,o), +(367,309,c), +(246,309,l), +(265,584,l), +(566,584,l), +(566,473,l), +(378,473,l), +(369,418,l), +(375,416,l), +(384,426,o), +(415,435,o), +(442,435,cs), +(524,435,o), +(577,381,o), +(577,299,cs), +(577,207,o), +(508,145,o), +(403,145,cs) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,134,o), +(263,189,o), +(263,271,c), +(299,271,l), +(298,207,o), +(355,165,o), +(438,165,cs), +(535,165,o), +(583,211,o), +(583,280,cs), +(583,355,o), +(532,394,o), +(442,394,cs), +(374,394,o), +(329,368,o), +(309,337,c), +(273,337,l), +(286,572,l), +(611,572,l), +(611,541,l), +(319,541,l), +(309,371,l), +(312,371,l), +(337,402,o), +(390,424,o), +(448,424,cs), +(562,424,o), +(622,367,o), +(622,281,cs), +(622,187,o), +(546,134,o), +(438,134,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,145,o), +(252,200,o), +(252,282,c), +(288,282,l), +(287,218,o), +(344,176,o), +(427,176,cs), +(524,176,o), +(572,222,o), +(572,291,cs), +(572,366,o), +(521,405,o), +(431,405,cs), +(363,405,o), +(318,379,o), +(298,348,c), +(262,348,l), +(275,583,l), +(600,583,l), +(600,552,l), +(308,552,l), +(298,382,l), +(301,382,l), +(326,413,o), +(379,435,o), +(437,435,cs), +(551,435,o), +(611,378,o), +(611,292,cs), +(611,198,o), +(535,145,o), +(427,145,cs) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,135,o), +(236,192,o), +(229,272,c), +(379,272,l), +(385,250,o), +(405,246,o), +(431,246,cs), +(466,246,o), +(484,263,o), +(484,288,cs), +(484,313,o), +(463,328,o), +(433,328,cs), +(405,328,o), +(381,316,o), +(372,299,c), +(236,299,l), +(251,574,l), +(613,574,l), +(613,457,l), +(387,457,l), +(382,407,l), +(388,405,l), +(399,419,o), +(437,431,o), +(474,431,cs), +(563,431,o), +(635,383,o), +(635,288,cs), +(635,184,o), +(544,135,o), +(429,135,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,147,o), +(224,204,o), +(217,284,c), +(367,284,l), +(373,262,o), +(393,258,o), +(419,258,cs), +(454,258,o), +(472,275,o), +(472,300,cs), +(472,325,o), +(451,340,o), +(421,340,cs), +(393,340,o), +(369,328,o), +(360,311,c), +(224,311,l), +(239,586,l), +(601,586,l), +(601,469,l), +(375,469,l), +(370,419,l), +(376,417,l), +(387,431,o), +(425,443,o), +(462,443,cs), +(551,443,o), +(623,395,o), +(623,300,cs), +(623,196,o), +(532,147,o), +(417,147,cs) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,134,o), +(297,186,o), +(294,253,c), +(329,253,l), +(333,200,o), +(372,165,o), +(431,165,cs), +(501,165,o), +(542,210,o), +(542,276,cs), +(542,346,o), +(498,387,o), +(433,387,cs), +(387,387,o), +(350,364,o), +(336,331,c), +(299,331,l), +(317,572,l), +(567,572,l), +(567,541,l), +(347,541,l), +(333,366,l), +(335,365,l), +(356,398,o), +(397,416,o), +(440,416,cs), +(523,416,o), +(577,360,o), +(577,278,cs), +(577,192,o), +(519,134,o), +(430,134,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,144,o), +(294,196,o), +(291,263,c), +(326,263,l), +(330,210,o), +(367,175,o), +(426,175,cs), +(494,175,o), +(535,220,o), +(535,286,cs), +(535,356,o), +(491,397,o), +(428,397,cs), +(382,397,o), +(346,374,o), +(333,341,c), +(296,341,l), +(314,582,l), +(558,582,l), +(558,551,l), +(344,551,l), +(330,376,l), +(332,375,l), +(351,408,o), +(392,426,o), +(435,426,cs), +(516,426,o), +(568,370,o), +(568,288,cs), +(568,202,o), +(512,144,o), +(425,144,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +142, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +445, +30 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +621, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +630, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +354, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +138, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +440, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +613, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +582, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +297, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,133,o), +(261,186,o), +(253,265,c), +(381,265,l), +(386,250,o), +(402,241,o), +(423,241,cs), +(449,241,o), +(466,261,o), +(466,282,cs), +(466,306,o), +(448,323,o), +(424,323,cs), +(404,323,o), +(388,312,o), +(384,297,c), +(263,297,l), +(282,572,l), +(583,572,l), +(583,461,l), +(395,461,l), +(386,406,l), +(392,404,l), +(401,414,o), +(432,423,o), +(459,423,cs), +(541,423,o), +(594,369,o), +(594,287,cs), +(594,195,o), +(525,133,o), +(420,133,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,145,o), +(258,198,o), +(250,277,c), +(377,277,l), +(382,262,o), +(397,253,o), +(417,253,cs), +(442,253,o), +(457,273,o), +(457,294,cs), +(457,318,o), +(441,335,o), +(418,335,cs), +(399,335,o), +(384,324,o), +(380,309,c), +(260,309,l), +(279,584,l), +(573,584,l), +(573,473,l), +(390,473,l), +(382,418,l), +(388,416,l), +(397,426,o), +(426,435,o), +(452,435,cs), +(533,435,o), +(584,381,o), +(584,299,cs), +(584,207,o), +(517,145,o), +(414,145,cs) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,134,o), +(293,189,o), +(293,271,c), +(322,271,l), +(321,187,o), +(350,159,o), +(387,159,cs), +(430,159,o), +(449,196,o), +(449,280,cs), +(449,367,o), +(426,396,o), +(388,396,cs), +(355,396,o), +(334,374,o), +(328,326,c), +(298,326,l), +(306,572,l), +(476,572,l), +(476,545,l), +(333,545,l), +(327,381,l), +(329,381,l), +(341,406,o), +(363,421,o), +(392,421,cs), +(454,421,o), +(479,370,o), +(479,281,cs), +(479,180,o), +(446,134,o), +(387,134,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,143,o), +(293,198,o), +(293,280,c), +(322,280,l), +(321,196,o), +(350,168,o), +(387,168,cs), +(430,168,o), +(449,205,o), +(449,289,cs), +(449,376,o), +(426,405,o), +(388,405,cs), +(355,405,o), +(334,383,o), +(328,335,c), +(298,335,l), +(306,581,l), +(476,581,l), +(476,554,l), +(333,554,l), +(327,390,l), +(329,390,l), +(341,415,o), +(363,430,o), +(392,430,cs), +(454,430,o), +(479,379,o), +(479,290,cs), +(479,189,o), +(446,143,o), +(387,143,cs) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,133,o), +(254,188,o), +(250,270,c), +(360,270,l), +(360,238,o), +(369,225,o), +(384,225,cs), +(403,225,o), +(410,245,o), +(410,284,cs), +(410,326,o), +(401,343,o), +(385,343,cs), +(370,343,o), +(362,325,o), +(362,305,c), +(255,305,l), +(266,572,l), +(496,572,l), +(496,479,l), +(367,479,l), +(362,414,l), +(366,412,l), +(375,428,o), +(395,433,o), +(413,433,cs), +(485,433,o), +(520,374,o), +(520,287,cs), +(520,182,o), +(465,133,o), +(384,133,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,143,o), +(254,198,o), +(250,280,c), +(360,280,l), +(360,248,o), +(369,235,o), +(384,235,cs), +(403,235,o), +(410,255,o), +(410,294,cs), +(410,336,o), +(401,353,o), +(385,353,cs), +(370,353,o), +(362,335,o), +(362,315,c), +(255,315,l), +(266,582,l), +(496,582,l), +(496,489,l), +(367,489,l), +(362,424,l), +(366,422,l), +(375,438,o), +(395,443,o), +(413,443,cs), +(485,443,o), +(520,384,o), +(520,297,cs), +(520,192,o), +(465,143,o), +(384,143,cs) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,134,o), +(329,186,o), +(326,253,c), +(361,253,l), +(365,200,o), +(404,165,o), +(463,165,cs), +(533,165,o), +(574,210,o), +(574,276,cs), +(574,346,o), +(530,387,o), +(465,387,cs), +(419,387,o), +(382,364,o), +(368,331,c), +(331,331,l), +(349,572,l), +(599,572,l), +(599,541,l), +(379,541,l), +(365,366,l), +(367,365,l), +(388,398,o), +(429,416,o), +(472,416,cs), +(555,416,o), +(609,360,o), +(609,278,cs), +(609,192,o), +(551,134,o), +(462,134,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,144,o), +(329,196,o), +(326,263,c), +(361,263,l), +(365,210,o), +(404,175,o), +(463,175,cs), +(533,175,o), +(574,220,o), +(574,286,cs), +(574,356,o), +(530,397,o), +(465,397,cs), +(419,397,o), +(382,374,o), +(368,341,c), +(331,341,l), +(349,582,l), +(599,582,l), +(599,551,l), +(379,551,l), +(365,376,l), +(367,375,l), +(388,408,o), +(429,426,o), +(472,426,cs), +(555,426,o), +(609,370,o), +(609,288,cs), +(609,202,o), +(551,144,o), +(462,144,cs) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,133,o), +(289,186,o), +(281,265,c), +(409,265,l), +(414,250,o), +(430,241,o), +(451,241,cs), +(477,241,o), +(494,261,o), +(494,282,cs), +(494,306,o), +(476,323,o), +(452,323,cs), +(432,323,o), +(416,312,o), +(412,297,c), +(291,297,l), +(310,572,l), +(611,572,l), +(611,461,l), +(423,461,l), +(414,406,l), +(420,404,l), +(429,414,o), +(460,423,o), +(487,423,cs), +(569,423,o), +(622,369,o), +(622,287,cs), +(622,195,o), +(553,133,o), +(448,133,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(352,145,o), +(293,198,o), +(285,277,c), +(413,277,l), +(418,262,o), +(434,253,o), +(455,253,cs), +(481,253,o), +(498,273,o), +(498,294,cs), +(498,318,o), +(480,335,o), +(456,335,cs), +(436,335,o), +(420,324,o), +(416,309,c), +(295,309,l), +(314,584,l), +(615,584,l), +(615,473,l), +(427,473,l), +(418,418,l), +(424,416,l), +(433,426,o), +(464,435,o), +(491,435,cs), +(573,435,o), +(626,381,o), +(626,299,cs), +(626,207,o), +(557,145,o), +(452,145,cs) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,134,o), +(294,189,o), +(294,271,c), +(330,271,l), +(329,207,o), +(386,165,o), +(469,165,cs), +(566,165,o), +(614,211,o), +(614,280,cs), +(614,355,o), +(563,394,o), +(473,394,cs), +(405,394,o), +(360,368,o), +(340,337,c), +(304,337,l), +(317,572,l), +(642,572,l), +(642,541,l), +(350,541,l), +(340,371,l), +(343,371,l), +(368,402,o), +(421,424,o), +(479,424,cs), +(593,424,o), +(653,367,o), +(653,281,cs), +(653,187,o), +(577,134,o), +(469,134,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(362,145,o), +(293,200,o), +(293,282,c), +(329,282,l), +(328,218,o), +(385,176,o), +(468,176,cs), +(565,176,o), +(613,222,o), +(613,291,cs), +(613,366,o), +(562,405,o), +(472,405,cs), +(404,405,o), +(359,379,o), +(339,348,c), +(303,348,l), +(316,583,l), +(641,583,l), +(641,552,l), +(349,552,l), +(339,382,l), +(342,382,l), +(367,413,o), +(420,435,o), +(478,435,cs), +(592,435,o), +(652,378,o), +(652,292,cs), +(652,198,o), +(576,145,o), +(468,145,cs) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,135,o), +(265,192,o), +(258,272,c), +(408,272,l), +(414,250,o), +(434,246,o), +(460,246,cs), +(495,246,o), +(513,263,o), +(513,288,cs), +(513,313,o), +(492,328,o), +(462,328,cs), +(434,328,o), +(410,316,o), +(401,299,c), +(265,299,l), +(280,574,l), +(642,574,l), +(642,457,l), +(416,457,l), +(411,407,l), +(417,405,l), +(428,419,o), +(466,431,o), +(503,431,cs), +(592,431,o), +(664,383,o), +(664,288,cs), +(664,184,o), +(573,135,o), +(458,135,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,147,o), +(263,204,o), +(256,284,c), +(406,284,l), +(412,262,o), +(432,258,o), +(458,258,cs), +(493,258,o), +(511,275,o), +(511,300,cs), +(511,325,o), +(490,340,o), +(460,340,cs), +(432,340,o), +(408,328,o), +(399,311,c), +(263,311,l), +(278,586,l), +(640,586,l), +(640,469,l), +(414,469,l), +(409,419,l), +(415,417,l), +(426,431,o), +(464,443,o), +(501,443,cs), +(590,443,o), +(662,395,o), +(662,300,cs), +(662,196,o), +(571,147,o), +(456,147,cs) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 10106; +userData = { +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/five.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/five.circled.glyph new file mode 100644 index 00000000..304fa8a7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/five.circled.glyph @@ -0,0 +1,1683 @@ +{ +color = 0; +glyphname = five.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,134,o), +(442,180,o), +(442,281,cs), +(442,370,o), +(417,421,o), +(355,421,cs), +(326,421,o), +(304,406,o), +(292,381,c), +(290,381,l), +(296,545,l), +(439,545,l), +(439,572,l), +(269,572,l), +(261,326,l), +(291,326,l), +(297,374,o), +(318,396,o), +(351,396,cs), +(389,396,o), +(412,367,o), +(412,280,cs), +(412,196,o), +(393,159,o), +(350,159,cs), +(313,159,o), +(284,187,o), +(285,271,c), +(256,271,l), +(256,189,o), +(283,134,o), +(350,134,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (207,188); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(433,133,o), +(488,182,o), +(488,287,cs), +(488,374,o), +(453,433,o), +(381,433,cs), +(363,433,o), +(343,428,o), +(334,412,c), +(330,414,l), +(335,479,l), +(464,479,l), +(464,572,l), +(234,572,l), +(223,305,l), +(330,305,l), +(330,325,o), +(338,343,o), +(353,343,cs), +(369,343,o), +(378,326,o), +(378,284,cs), +(378,245,o), +(371,225,o), +(352,225,cs), +(337,225,o), +(328,238,o), +(328,270,c), +(218,270,l), +(222,188,o), +(265,133,o), +(352,133,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (203,189); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(546,134,o), +(622,187,o), +(622,281,cs), +(622,367,o), +(562,424,o), +(448,424,cs), +(390,424,o), +(337,402,o), +(312,371,c), +(309,371,l), +(319,541,l), +(611,541,l), +(611,572,l), +(286,572,l), +(273,337,l), +(309,337,l), +(329,368,o), +(374,394,o), +(442,394,cs), +(532,394,o), +(583,355,o), +(583,280,cs), +(583,211,o), +(535,165,o), +(438,165,cs), +(355,165,o), +(298,207,o), +(299,271,c), +(263,271,l), +(263,189,o), +(332,134,o), +(438,134,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (216,190); +ref = fiveinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(544,135,o), +(635,184,o), +(635,288,cs), +(635,383,o), +(563,431,o), +(474,431,cs), +(437,431,o), +(399,419,o), +(388,405,c), +(382,407,l), +(387,457,l), +(613,457,l), +(613,574,l), +(251,574,l), +(236,299,l), +(372,299,l), +(381,316,o), +(405,328,o), +(433,328,cs), +(463,328,o), +(484,313,o), +(484,288,cs), +(484,263,o), +(466,246,o), +(431,246,cs), +(405,246,o), +(385,250,o), +(379,272,c), +(229,272,l), +(236,192,o), +(293,135,o), +(429,135,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (202,193); +ref = fiveinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,134,o), +(442,180,o), +(442,281,cs), +(442,370,o), +(417,421,o), +(355,421,cs), +(326,421,o), +(304,406,o), +(292,381,c), +(290,381,l), +(296,545,l), +(439,545,l), +(439,572,l), +(269,572,l), +(261,326,l), +(291,326,l), +(297,374,o), +(318,396,o), +(351,396,cs), +(389,396,o), +(412,367,o), +(412,280,cs), +(412,196,o), +(393,159,o), +(350,159,cs), +(313,159,o), +(284,187,o), +(285,271,c), +(256,271,l), +(256,189,o), +(283,134,o), +(350,134,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (207,188); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(433,133,o), +(488,182,o), +(488,287,cs), +(488,374,o), +(453,433,o), +(381,433,cs), +(363,433,o), +(343,428,o), +(334,412,c), +(330,414,l), +(335,479,l), +(464,479,l), +(464,572,l), +(234,572,l), +(223,305,l), +(330,305,l), +(330,325,o), +(338,343,o), +(353,343,cs), +(369,343,o), +(378,326,o), +(378,284,cs), +(378,245,o), +(371,225,o), +(352,225,cs), +(337,225,o), +(328,238,o), +(328,270,c), +(218,270,l), +(222,188,o), +(265,133,o), +(352,133,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (202,189); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,134,o), +(577,192,o), +(577,278,cs), +(577,360,o), +(523,416,o), +(440,416,cs), +(397,416,o), +(356,398,o), +(335,365,c), +(333,366,l), +(347,541,l), +(567,541,l), +(567,572,l), +(317,572,l), +(299,331,l), +(336,331,l), +(350,364,o), +(387,387,o), +(433,387,cs), +(498,387,o), +(542,346,o), +(542,276,cs), +(542,210,o), +(501,165,o), +(431,165,cs), +(372,165,o), +(333,200,o), +(329,253,c), +(294,253,l), +(297,186,o), +(348,134,o), +(430,134,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (226,189); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 871; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(525,133,o), +(594,195,o), +(594,287,cs), +(594,369,o), +(541,423,o), +(459,423,cs), +(432,423,o), +(401,414,o), +(392,404,c), +(386,406,l), +(395,461,l), +(583,461,l), +(583,572,l), +(282,572,l), +(263,297,l), +(384,297,l), +(388,312,o), +(404,323,o), +(424,323,cs), +(448,323,o), +(466,306,o), +(466,282,cs), +(466,261,o), +(449,241,o), +(423,241,cs), +(402,241,o), +(386,250,o), +(381,265,c), +(253,265,l), +(261,186,o), +(320,133,o), +(420,133,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (223,191); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 835; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(546,134,o), +(622,187,o), +(622,281,cs), +(622,367,o), +(562,424,o), +(448,424,cs), +(390,424,o), +(337,402,o), +(312,371,c), +(309,371,l), +(319,541,l), +(611,541,l), +(611,572,l), +(286,572,l), +(273,337,l), +(309,337,l), +(329,368,o), +(374,394,o), +(442,394,cs), +(532,394,o), +(583,355,o), +(583,280,cs), +(583,211,o), +(535,165,o), +(438,165,cs), +(355,165,o), +(298,207,o), +(299,271,c), +(263,271,l), +(263,189,o), +(332,134,o), +(438,134,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (216,190); +ref = fiveinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(544,135,o), +(635,184,o), +(635,288,cs), +(635,383,o), +(563,431,o), +(474,431,cs), +(437,431,o), +(399,419,o), +(388,405,c), +(382,407,l), +(387,457,l), +(613,457,l), +(613,574,l), +(251,574,l), +(236,299,l), +(372,299,l), +(381,316,o), +(405,328,o), +(433,328,cs), +(463,328,o), +(484,313,o), +(484,288,cs), +(484,263,o), +(466,246,o), +(431,246,cs), +(405,246,o), +(385,250,o), +(379,272,c), +(229,272,l), +(236,192,o), +(293,135,o), +(429,135,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (202,193); +ref = fiveinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,134,o), +(577,192,o), +(577,278,cs), +(577,360,o), +(523,416,o), +(440,416,cs), +(397,416,o), +(356,398,o), +(335,365,c), +(333,366,l), +(347,541,l), +(567,541,l), +(567,572,l), +(317,572,l), +(299,331,l), +(336,331,l), +(350,364,o), +(387,387,o), +(433,387,cs), +(498,387,o), +(542,346,o), +(542,276,cs), +(542,210,o), +(501,165,o), +(431,165,cs), +(372,165,o), +(333,200,o), +(329,253,c), +(294,253,l), +(297,186,o), +(348,134,o), +(430,134,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (222,189); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(525,133,o), +(594,195,o), +(594,287,cs), +(594,369,o), +(541,423,o), +(459,423,cs), +(432,423,o), +(401,414,o), +(392,404,c), +(386,406,l), +(395,461,l), +(583,461,l), +(583,572,l), +(282,572,l), +(263,297,l), +(384,297,l), +(388,312,o), +(404,323,o), +(424,323,cs), +(448,323,o), +(466,306,o), +(466,282,cs), +(466,261,o), +(449,241,o), +(423,241,cs), +(402,241,o), +(386,250,o), +(381,265,c), +(253,265,l), +(261,186,o), +(320,133,o), +(420,133,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (221,191); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,134,o), +(479,180,o), +(479,281,cs), +(479,370,o), +(454,421,o), +(392,421,cs), +(363,421,o), +(341,406,o), +(329,381,c), +(327,381,l), +(333,545,l), +(476,545,l), +(476,572,l), +(306,572,l), +(298,326,l), +(328,326,l), +(334,374,o), +(355,396,o), +(388,396,cs), +(426,396,o), +(449,367,o), +(449,280,cs), +(449,196,o), +(430,159,o), +(387,159,cs), +(350,159,o), +(321,187,o), +(322,271,c), +(293,271,l), +(293,189,o), +(320,134,o), +(387,134,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (244,188); +ref = fiveinferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(465,133,o), +(520,182,o), +(520,287,cs), +(520,374,o), +(485,433,o), +(413,433,cs), +(395,433,o), +(375,428,o), +(366,412,c), +(362,414,l), +(367,479,l), +(496,479,l), +(496,572,l), +(266,572,l), +(255,305,l), +(362,305,l), +(362,325,o), +(370,343,o), +(385,343,cs), +(401,343,o), +(410,326,o), +(410,284,cs), +(410,245,o), +(403,225,o), +(384,225,cs), +(369,225,o), +(360,238,o), +(360,270,c), +(250,270,l), +(254,188,o), +(297,133,o), +(384,133,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (235,189); +ref = fiveinferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(551,134,o), +(609,192,o), +(609,278,cs), +(609,360,o), +(555,416,o), +(472,416,cs), +(429,416,o), +(388,398,o), +(367,365,c), +(365,366,l), +(379,541,l), +(599,541,l), +(599,572,l), +(349,572,l), +(331,331,l), +(368,331,l), +(382,364,o), +(419,387,o), +(465,387,cs), +(530,387,o), +(574,346,o), +(574,276,cs), +(574,210,o), +(533,165,o), +(463,165,cs), +(404,165,o), +(365,200,o), +(361,253,c), +(326,253,l), +(329,186,o), +(380,134,o), +(462,134,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = master01; +pos = (276,186); +ref = fiveinferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(553,133,o), +(622,195,o), +(622,287,cs), +(622,369,o), +(569,423,o), +(487,423,cs), +(460,423,o), +(429,414,o), +(420,404,c), +(414,406,l), +(423,461,l), +(611,461,l), +(611,572,l), +(310,572,l), +(291,297,l), +(412,297,l), +(416,312,o), +(432,323,o), +(452,323,cs), +(476,323,o), +(494,306,o), +(494,282,cs), +(494,261,o), +(477,241,o), +(451,241,cs), +(430,241,o), +(414,250,o), +(409,265,c), +(281,265,l), +(289,186,o), +(348,133,o), +(448,133,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (269,188); +ref = fiveinferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(577,134,o), +(653,187,o), +(653,281,cs), +(653,367,o), +(593,424,o), +(479,424,cs), +(421,424,o), +(368,402,o), +(343,371,c), +(340,371,l), +(350,541,l), +(642,541,l), +(642,572,l), +(317,572,l), +(304,337,l), +(340,337,l), +(360,368,o), +(405,394,o), +(473,394,cs), +(563,394,o), +(614,355,o), +(614,280,cs), +(614,211,o), +(566,165,o), +(469,165,cs), +(386,165,o), +(329,207,o), +(330,271,c), +(294,271,l), +(294,189,o), +(363,134,o), +(469,134,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (247,190); +ref = fiveinferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(573,135,o), +(664,184,o), +(664,288,cs), +(664,383,o), +(592,431,o), +(503,431,cs), +(466,431,o), +(428,419,o), +(417,405,c), +(411,407,l), +(416,457,l), +(642,457,l), +(642,574,l), +(280,574,l), +(265,299,l), +(401,299,l), +(410,316,o), +(434,328,o), +(462,328,cs), +(492,328,o), +(513,313,o), +(513,288,cs), +(513,263,o), +(495,246,o), +(460,246,cs), +(434,246,o), +(414,250,o), +(408,272,c), +(258,272,l), +(265,192,o), +(322,135,o), +(458,135,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (231,193); +ref = fiveinferior; +} +); +width = 880; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9316; +userData = { +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/five.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/five.dnom.glyph new file mode 100644 index 00000000..62357768 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/five.dnom.glyph @@ -0,0 +1,1078 @@ +{ +glyphname = five.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,-5,o), +(255,38,o), +(255,128,cs), +(255,205,o), +(224,256,o), +(161,256,cs), +(149,256,o), +(130,253,o), +(122,239,c), +(118,240,l), +(122,290,l), +(234,290,l), +(234,375,l), +(30,375,l), +(21,142,l), +(118,142,l), +(118,159,o), +(124,173,o), +(135,173,cs), +(148,173,o), +(155,160,o), +(155,126,cs), +(155,96,o), +(150,78,o), +(134,78,cs), +(124,78,o), +(117,86,o), +(116,114,c), +(16,114,l), +(19,46,o), +(55,-5,o), +(134,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 267; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,-5,o), +(220,37,o), +(220,130,cs), +(220,211,o), +(197,259,o), +(140,259,cs), +(113,259,o), +(92,244,o), +(82,222,c), +(80,222,l), +(86,373,l), +(217,373,l), +(217,397,l), +(61,397,l), +(54,172,l), +(81,172,l), +(86,213,o), +(104,236,o), +(136,236,cs), +(171,236,o), +(192,209,o), +(192,130,cs), +(192,51,o), +(174,18,o), +(135,18,cs), +(99,18,o), +(75,47,o), +(76,121,c), +(49,121,l), +(49,46,o), +(74,-5,o), +(135,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 257; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,-5,o), +(377,44,o), +(377,130,cs), +(377,210,o), +(322,261,o), +(218,261,cs), +(167,261,o), +(117,242,o), +(94,213,c), +(92,213,l), +(101,367,l), +(367,367,l), +(367,397,l), +(69,397,l), +(57,181,l), +(91,181,l), +(112,213,o), +(156,233,o), +(212,233,cs), +(293,233,o), +(341,198,o), +(341,129,cs), +(341,66,o), +(297,25,o), +(209,25,cs), +(132,25,o), +(82,63,o), +(82,121,c), +(48,121,l), +(48,46,o), +(111,-5,o), +(209,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 413; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,-5,o), +(389,38,o), +(389,127,cs), +(389,210,o), +(324,251,o), +(243,251,cs), +(211,251,o), +(175,242,o), +(162,228,c), +(157,230,l), +(162,276,l), +(370,276,l), +(370,375,l), +(47,375,l), +(33,137,l), +(149,137,l), +(158,153,o), +(181,163,o), +(209,163,cs), +(239,163,o), +(261,151,o), +(261,127,cs), +(261,104,o), +(242,89,o), +(207,89,cs), +(175,89,o), +(158,96,o), +(154,114,c), +(27,114,l), +(33,44,o), +(85,-5,o), +(205,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 409; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,-5,o), +(200,37,o), +(200,130,cs), +(200,211,o), +(177,259,o), +(120,259,cs), +(93,259,o), +(72,244,o), +(62,222,c), +(60,222,l), +(66,373,l), +(197,373,l), +(197,397,l), +(41,397,l), +(34,172,l), +(61,172,l), +(66,213,o), +(84,236,o), +(116,236,cs), +(151,236,o), +(172,209,o), +(172,130,cs), +(172,51,o), +(154,18,o), +(115,18,cs), +(79,18,o), +(55,47,o), +(56,121,c), +(29,121,l), +(29,46,o), +(54,-5,o), +(115,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 217; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,-5,o), +(246,38,o), +(246,128,cs), +(246,205,o), +(215,256,o), +(152,256,cs), +(140,256,o), +(121,253,o), +(113,239,c), +(109,240,l), +(113,290,l), +(225,290,l), +(225,375,l), +(21,375,l), +(12,142,l), +(109,142,l), +(109,159,o), +(115,173,o), +(126,173,cs), +(139,173,o), +(146,160,o), +(146,126,cs), +(146,96,o), +(141,78,o), +(125,78,cs), +(115,78,o), +(108,86,o), +(107,114,c), +(7,114,l), +(10,46,o), +(46,-5,o), +(125,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 249; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,-5,o), +(309,48,o), +(309,127,cs), +(309,203,o), +(258,254,o), +(183,254,cs), +(140,254,o), +(104,235,o), +(87,208,c), +(85,208,l), +(97,368,l), +(299,368,l), +(299,397,l), +(70,397,l), +(54,176,l), +(87,176,l), +(100,205,o), +(132,227,o), +(176,227,cs), +(236,227,o), +(276,190,o), +(276,126,cs), +(276,66,o), +(239,23,o), +(174,23,cs), +(121,23,o), +(84,56,o), +(81,104,c), +(49,104,l), +(52,39,o), +(103,-5,o), +(174,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 344; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,-5,o), +(320,48,o), +(320,128,cs), +(320,200,o), +(271,246,o), +(198,246,cs), +(171,246,o), +(144,238,o), +(136,231,c), +(132,233,l), +(139,277,l), +(309,277,l), +(309,375,l), +(40,375,l), +(23,136,l), +(130,136,l), +(134,150,o), +(150,158,o), +(167,158,cs), +(190,158,o), +(206,144,o), +(206,124,cs), +(206,108,o), +(191,90,o), +(166,90,cs), +(146,90,o), +(131,98,o), +(127,109,c), +(14,109,l), +(21,41,o), +(74,-5,o), +(164,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 334; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,-5,o), +(367,44,o), +(367,130,cs), +(367,210,o), +(312,261,o), +(208,261,cs), +(157,261,o), +(107,242,o), +(84,213,c), +(82,213,l), +(91,367,l), +(357,367,l), +(357,397,l), +(59,397,l), +(47,181,l), +(81,181,l), +(102,213,o), +(146,233,o), +(202,233,cs), +(283,233,o), +(331,198,o), +(331,129,cs), +(331,66,o), +(287,25,o), +(199,25,cs), +(122,25,o), +(72,63,o), +(72,121,c), +(38,121,l), +(38,46,o), +(101,-5,o), +(199,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 393; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-5,o), +(379,38,o), +(379,127,cs), +(379,210,o), +(314,251,o), +(233,251,cs), +(201,251,o), +(165,242,o), +(152,228,c), +(147,230,l), +(152,276,l), +(360,276,l), +(360,375,l), +(37,375,l), +(23,137,l), +(139,137,l), +(148,153,o), +(171,163,o), +(199,163,cs), +(229,163,o), +(251,151,o), +(251,127,cs), +(251,104,o), +(232,89,o), +(197,89,cs), +(165,89,o), +(148,96,o), +(144,114,c), +(17,114,l), +(23,44,o), +(75,-5,o), +(195,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 389; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(271,-5,o), +(326,48,o), +(326,127,cs), +(326,203,o), +(275,254,o), +(202,254,cs), +(159,254,o), +(125,235,o), +(108,208,c), +(106,208,l), +(118,368,l), +(316,368,l), +(316,397,l), +(91,397,l), +(75,176,l), +(108,176,l), +(121,205,o), +(151,227,o), +(195,227,cs), +(253,227,o), +(293,190,o), +(293,126,cs), +(293,66,o), +(256,23,o), +(193,23,cs), +(142,23,o), +(105,56,o), +(102,104,c), +(70,104,l), +(73,39,o), +(124,-5,o), +(193,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 381; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(266,-5,o), +(327,48,o), +(327,128,cs), +(327,200,o), +(280,246,o), +(211,246,cs), +(186,246,o), +(160,238,o), +(153,231,c), +(149,233,l), +(156,277,l), +(316,277,l), +(316,375,l), +(58,375,l), +(43,136,l), +(148,136,l), +(150,149,o), +(164,158,o), +(180,158,cs), +(200,158,o), +(214,144,o), +(214,124,cs), +(214,108,o), +(201,90,o), +(179,90,cs), +(162,90,o), +(149,98,o), +(146,109,c), +(34,109,l), +(41,41,o), +(91,-5,o), +(177,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 359; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,-8,o), +(171,31,o), +(190,123,cs), +(206,199,o), +(195,258,o), +(133,258,cs), +(111,258,o), +(90,248,o), +(75,226,c), +(73,226,l), +(109,373,l), +(234,373,l), +(239,397,l), +(89,397,l), +(36,178,l), +(63,176,l), +(76,214,o), +(96,236,o), +(124,236,cs), +(175,236,o), +(176,187,o), +(163,123,cs), +(148,52,o), +(125,18,o), +(89,18,cs), +(46,18,o), +(32,56,o), +(48,125,c), +(22,125,l), +(8,58,o), +(17,1,o), +(82,-4,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 254; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(156,-5,o), +(204,37,o), +(221,118,cs), +(236,191,o), +(218,253,o), +(151,253,cs), +(134,253,o), +(121,247,o), +(114,240,c), +(110,242,l), +(125,290,l), +(236,290,l), +(253,375,l), +(51,375,l), +(-7,144,l), +(90,144,l), +(94,161,o), +(102,173,o), +(113,173,cs), +(126,173,o), +(129,157,o), +(123,126,cs), +(117,95,o), +(109,79,o), +(94,79,cs), +(79,79,o), +(79,94,o), +(82,113,c), +(-16,113,l), +(-25,42,o), +(3,-5,o), +(91,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 265; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,-6,o), +(296,54,o), +(296,135,cs), +(296,205,o), +(253,252,o), +(187,252,cs), +(154,252,o), +(119,240,o), +(99,220,c), +(96,220,l), +(135,368,l), +(329,368,l), +(334,397,l), +(112,397,l), +(59,185,l), +(92,185,l), +(110,210,o), +(145,225,o), +(178,225,cs), +(229,225,o), +(263,191,o), +(263,134,cs), +(263,72,o), +(223,22,o), +(155,22,cs), +(101,22,o), +(66,55,o), +(66,103,c), +(35,103,l), +(35,38,o), +(82,-6,o), +(153,-6,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 377; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,-5,o), +(310,51,o), +(310,136,cs), +(310,201,o), +(265,246,o), +(200,246,cs), +(183,246,o), +(163,244,o), +(146,235,c), +(142,237,l), +(158,277,l), +(319,277,l), +(339,375,l), +(76,375,l), +(14,134,l), +(122,134,l), +(125,149,o), +(143,158,o), +(160,158,cs), +(182,158,o), +(197,146,o), +(197,128,cs), +(197,107,o), +(182,90,o), +(155,90,cs), +(139,90,o), +(125,96,o), +(119,108,c), +(4,108,l), +(7,38,o), +(63,-5,o), +(145,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 371; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-5,o), +(345,44,o), +(348,141,cs), +(350,215,o), +(298,259,o), +(206,259,cs), +(154,259,o), +(107,240,o), +(83,217,c), +(81,218,l), +(122,367,l), +(379,367,l), +(385,397,l), +(96,397,l), +(40,184,l), +(74,184,l), +(99,213,o), +(142,232,o), +(196,232,cs), +(277,232,o), +(313,196,o), +(311,137,cs), +(308,71,o), +(264,24,o), +(169,24,cs), +(96,24,o), +(48,62,o), +(52,123,c), +(18,123,l), +(13,44,o), +(72,-5,o), +(166,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 409; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-5,o), +(352,43,o), +(355,134,cs), +(357,208,o), +(307,249,o), +(227,249,cs), +(198,249,o), +(167,243,o), +(152,235,c), +(147,237,l), +(160,275,l), +(355,275,l), +(376,375,l), +(67,375,l), +(4,141,l), +(122,141,l), +(134,156,o), +(156,163,o), +(179,163,cs), +(209,163,o), +(227,151,o), +(227,129,cs), +(227,104,o), +(205,89,o), +(169,89,cs), +(137,89,o), +(122,98,o), +(119,118,c), +(-7,118,l), +(-5,33,o), +(54,-5,o), +(159,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 402; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/five.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/five.glyph new file mode 100644 index 00000000..bb6237f2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/five.glyph @@ -0,0 +1,1447 @@ +{ +glyphname = five; +kernLeft = KO_five; +kernRight = KO_five; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,-10,o), +(465,73,o), +(465,249,cs), +(465,397,o), +(407,496,o), +(286,496,cs), +(253,496,o), +(221,486,o), +(206,460,c), +(198,463,l), +(208,576,l), +(426,576,l), +(426,730,l), +(41,730,l), +(22,280,l), +(198,280,l), +(199,318,o), +(214,346,o), +(239,346,cs), +(267,346,o), +(282,318,o), +(282,244,cs), +(282,178,o), +(271,142,o), +(237,142,cs), +(212,142,o), +(195,164,o), +(195,222,c), +(13,222,l), +(19,83,o), +(91,-10,o), +(237,-10,cs) +); +} +); +width = 478; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(284,-8,o), +(335,65,o), +(335,235,cs), +(335,375,o), +(296,468,o), +(197,468,cs), +(151,468,o), +(110,440,o), +(87,381,c), +(84,382,l), +(93,694,l), +(334,694,l), +(334,721,l), +(66,721,l), +(54,338,l), +(91,338,l), +(108,400,o), +(138,441,o), +(198,441,cs), +(262,441,o), +(305,383,o), +(305,235,cs), +(305,81,o), +(269,17,o), +(192,17,cs), +(119,17,o), +(72,74,o), +(74,220,c), +(45,220,l), +(44,83,o), +(85,-8,o), +(192,-8,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,-8,o), +(341,67,o), +(341,238,cs), +(341,389,o), +(302,474,o), +(198,474,cs), +(149,474,o), +(109,447,o), +(89,401,c), +(86,401,l), +(96,701,l), +(340,701,l), +(340,730,l), +(67,730,l), +(55,321,l), +(87,321,l), +(98,401,o), +(133,446,o), +(197,446,cs), +(265,446,o), +(309,396,o), +(309,238,cs), +(309,83,o), +(272,19,o), +(195,19,cs), +(124,19,o), +(75,76,o), +(77,223,c), +(46,223,l), +(45,84,o), +(87,-8,o), +(195,-8,cs) +); +} +); +width = 375; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(513,-8,o), +(637,82,o), +(637,238,cs), +(637,383,o), +(539,479,o), +(340,479,cs), +(238,479,o), +(145,440,o), +(100,384,c), +(96,385,l), +(114,697,l), +(621,697,l), +(621,730,l), +(80,730,l), +(59,342,l), +(97,342,l), +(137,403,o), +(223,444,o), +(337,444,cs), +(502,444,o), +(596,375,o), +(596,236,cs), +(596,110,o), +(509,26,o), +(331,26,cs), +(177,26,o), +(75,105,o), +(77,223,c), +(42,223,l), +(41,84,o), +(158,-8,o), +(331,-8,cs) +); +} +); +width = 670; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(545,-10,o), +(685,73,o), +(685,241,cs), +(685,401,o), +(578,482,o), +(414,482,cs), +(355,482,o), +(288,466,o), +(259,443,c), +(250,446,l), +(260,547,l), +(651,547,l), +(651,721,l), +(57,721,l), +(32,272,l), +(235,272,l), +(253,305,o), +(299,327,o), +(354,327,cs), +(418,327,o), +(461,298,o), +(461,243,cs), +(461,191,o), +(423,156,o), +(350,156,cs), +(292,156,o), +(251,173,o), +(243,219,c), +(20,219,l), +(30,84,o), +(129,-10,o), +(347,-10,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(546,-10,o), +(694,74,o), +(694,247,cs), +(694,406,o), +(575,488,o), +(419,488,cs), +(351,488,o), +(285,466,o), +(262,438,c), +(253,441,l), +(263,554,l), +(659,554,l), +(659,730,l), +(58,730,l), +(32,275,l), +(238,275,l), +(256,309,o), +(303,331,o), +(358,331,cs), +(423,331,o), +(467,302,o), +(467,246,cs), +(467,193,o), +(428,158,o), +(354,158,cs), +(296,158,o), +(254,175,o), +(246,222,c), +(20,222,l), +(30,85,o), +(131,-10,o), +(351,-10,cs) +); +} +); +width = 707; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(284,-8,o), +(335,65,o), +(335,235,cs), +(335,375,o), +(296,468,o), +(197,468,cs), +(151,468,o), +(110,440,o), +(87,381,c), +(84,382,l), +(93,694,l), +(334,694,l), +(334,721,l), +(66,721,l), +(54,338,l), +(91,338,l), +(108,400,o), +(138,441,o), +(198,441,cs), +(262,441,o), +(305,383,o), +(305,235,cs), +(305,81,o), +(269,17,o), +(192,17,cs), +(119,17,o), +(72,74,o), +(74,220,c), +(45,220,l), +(44,83,o), +(85,-8,o), +(192,-8,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,-8,o), +(317,66,o), +(317,248,cs), +(317,425,o), +(272,498,o), +(176,498,cs), +(130,498,o), +(88,470,o), +(68,426,c), +(67,426,l), +(75,700,l), +(316,700,l), +(316,729,l), +(46,729,l), +(34,331,l), +(65,331,l), +(77,423,o), +(113,470,o), +(175,470,cs), +(242,470,o), +(285,421,o), +(285,248,cs), +(285,82,o), +(249,19,o), +(173,19,cs), +(99,19,o), +(56,94,o), +(56,220,c), +(25,220,l), +(26,77,o), +(80,-8,o), +(173,-8,cs) +); +} +); +width = 330; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,-10,o), +(450,83,o), +(450,253,cs), +(450,419,o), +(390,504,o), +(273,504,cs), +(241,504,o), +(209,491,o), +(191,470,c), +(190,470,l), +(196,572,l), +(412,572,l), +(412,729,l), +(31,729,l), +(12,288,l), +(186,288,l), +(191,327,o), +(205,348,o), +(227,348,cs), +(256,348,o), +(270,320,o), +(270,245,cs), +(270,169,o), +(256,140,o), +(225,140,cs), +(200,140,o), +(184,171,o), +(184,219,c), +(4,219,l), +(11,67,o), +(85,-10,o), +(225,-10,cs) +); +} +); +width = 454; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(428,-8,o), +(524,89,o), +(524,235,cs), +(524,378,o), +(433,474,o), +(296,474,cs), +(214,474,o), +(147,436,o), +(113,379,c), +(110,380,l), +(124,687,l), +(493,687,l), +(493,721,l), +(91,721,l), +(77,338,l), +(111,338,l), +(140,399,o), +(205,441,o), +(290,441,cs), +(406,441,o), +(483,366,o), +(483,233,cs), +(483,109,o), +(412,26,o), +(286,26,cs), +(168,26,o), +(92,104,o), +(96,220,c), +(61,220,l), +(59,83,o), +(149,-8,o), +(285,-8,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-8,o), +(510,87,o), +(510,235,cs), +(510,381,o), +(417,475,o), +(276,475,cs), +(196,475,o), +(128,439,o), +(92,384,c), +(91,384,l), +(114,695,l), +(486,695,l), +(486,729,l), +(82,729,l), +(53,342,l), +(95,342,l), +(124,400,o), +(188,441,o), +(270,441,cs), +(390,441,o), +(470,368,o), +(470,233,cs), +(470,108,o), +(397,26,o), +(268,26,cs), +(155,26,o), +(79,95,o), +(72,212,c), +(34,212,l), +(40,75,o), +(134,-8,o), +(267,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 536; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(600,93,o), +(600,248,cs), +(600,388,o), +(504,482,o), +(368,482,cs), +(316,482,o), +(266,468,o), +(243,448,c), +(235,451,l), +(243,555,l), +(573,555,l), +(573,721,l), +(75,721,l), +(54,277,l), +(236,277,l), +(246,310,o), +(280,332,o), +(319,332,cs), +(377,332,o), +(408,296,o), +(408,241,cs), +(408,193,o), +(374,152,o), +(319,152,cs), +(265,152,o), +(229,178,o), +(228,225,c), +(38,225,l), +(44,84,o), +(144,-10,o), +(313,-10,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,-10,o), +(584,94,o), +(584,253,cs), +(584,400,o), +(491,493,o), +(347,493,cs), +(291,493,o), +(241,476,o), +(218,453,c), +(217,453,l), +(230,563,l), +(564,563,l), +(564,729,l), +(58,729,l), +(23,289,l), +(215,289,l), +(225,318,o), +(257,338,o), +(295,338,cs), +(347,338,o), +(382,303,o), +(382,246,cs), +(382,194,o), +(349,152,o), +(295,152,cs), +(249,152,o), +(215,178,o), +(207,221,c), +(2,222,l), +(15,82,o), +(120,-10,o), +(291,-10,cs) +); +} +); +width = 592; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(522,-8,o), +(634,84,o), +(634,241,cs), +(634,400,o), +(530,487,o), +(340,487,cs), +(232,487,o), +(136,450,o), +(89,393,c), +(88,394,l), +(106,696,l), +(618,696,l), +(618,729,l), +(72,729,l), +(51,352,l), +(89,352,l), +(131,414,o), +(225,453,o), +(337,453,cs), +(503,453,o), +(594,377,o), +(594,239,cs), +(594,105,o), +(497,26,o), +(328,26,cs), +(170,26,o), +(69,106,o), +(61,229,c), +(24,229,l), +(33,85,o), +(149,-8,o), +(328,-8,cs) +); +} +); +width = 657; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(555,-10,o), +(695,73,o), +(695,241,cs), +(695,401,o), +(588,482,o), +(424,482,cs), +(365,482,o), +(298,466,o), +(269,443,c), +(260,446,l), +(270,547,l), +(661,547,l), +(661,721,l), +(67,721,l), +(42,272,l), +(245,272,l), +(263,305,o), +(309,327,o), +(364,327,cs), +(428,327,o), +(471,298,o), +(471,243,cs), +(471,191,o), +(433,156,o), +(360,156,cs), +(302,156,o), +(261,173,o), +(253,219,c), +(30,219,l), +(40,84,o), +(139,-10,o), +(357,-10,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(545,-10,o), +(695,73,o), +(695,246,cs), +(695,412,o), +(574,494,o), +(416,494,cs), +(344,494,o), +(273,472,o), +(248,443,c), +(247,443,l), +(257,555,l), +(660,555,l), +(660,729,l), +(48,729,l), +(22,280,l), +(232,280,l), +(253,308,o), +(301,326,o), +(354,326,cs), +(420,326,o), +(464,299,o), +(464,241,cs), +(464,189,o), +(425,156,o), +(350,156,cs), +(290,156,o), +(248,173,o), +(238,226,c), +(8,226,l), +(20,84,o), +(122,-10,o), +(347,-10,cs) +); +} +); +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(428,-8,o), +(524,89,o), +(524,235,cs), +(524,378,o), +(433,474,o), +(296,474,cs), +(214,474,o), +(147,436,o), +(113,379,c), +(110,380,l), +(124,687,l), +(493,687,l), +(493,721,l), +(91,721,l), +(77,338,l), +(111,338,l), +(140,399,o), +(205,441,o), +(290,441,cs), +(406,441,o), +(483,366,o), +(483,233,cs), +(483,109,o), +(412,26,o), +(286,26,cs), +(168,26,o), +(92,104,o), +(96,220,c), +(61,220,l), +(59,83,o), +(149,-8,o), +(285,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(418,-8,o), +(511,90,o), +(511,237,cs), +(511,384,o), +(427,478,o), +(294,478,cs), +(226,478,o), +(158,440,o), +(128,384,c), +(125,385,l), +(148,694,l), +(493,694,l), +(493,730,l), +(117,730,l), +(88,342,l), +(130,342,l), +(153,401,o), +(218,442,o), +(288,442,cs), +(401,442,o), +(472,362,o), +(473,235,cs), +(473,113,o), +(404,28,o), +(280,28,cs), +(181,28,o), +(108,93,o), +(102,189,c), +(65,189,l), +(70,72,o), +(158,-8,o), +(279,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(476,-10,o), +(590,93,o), +(590,248,cs), +(590,388,o), +(494,482,o), +(358,482,cs), +(306,482,o), +(256,468,o), +(233,448,c), +(225,451,l), +(233,555,l), +(563,555,l), +(563,721,l), +(65,721,l), +(44,277,l), +(226,277,l), +(236,310,o), +(270,332,o), +(309,332,cs), +(367,332,o), +(398,296,o), +(398,241,cs), +(398,193,o), +(364,152,o), +(309,152,cs), +(255,152,o), +(219,178,o), +(218,225,c), +(28,225,l), +(34,84,o), +(134,-10,o), +(303,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-10,o), +(569,93,o), +(569,247,cs), +(569,394,o), +(484,488,o), +(352,488,cs), +(306,488,o), +(266,467,o), +(248,438,c), +(236,441,l), +(251,558,l), +(550,558,l), +(550,730,l), +(73,730,l), +(43,274,l), +(235,274,l), +(243,303,o), +(268,321,o), +(299,321,cs), +(340,321,o), +(367,289,o), +(367,240,cs), +(367,197,o), +(341,159,o), +(297,159,cs), +(262,159,o), +(237,179,o), +(230,212,c), +(28,212,l), +(41,78,o), +(136,-10,o), +(293,-10,cs) +); +} +); +width = 598; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-15,o), +(297,55,o), +(333,224,cs), +(359,351,o), +(353,474,o), +(232,474,cs), +(186,474,o), +(148,450,o), +(120,410,c), +(117,410,l), +(188,701,l), +(421,701,l), +(426,730,l), +(164,730,l), +(70,333,l), +(102,330,l), +(128,404,o), +(167,446,o), +(223,446,cs), +(323,446,o), +(327,350,o), +(301,225,cs), +(270,80,o), +(224,19,o), +(155,19,cs), +(56,19,o), +(47,118,o), +(73,232,c), +(43,232,l), +(16,108,o), +(28,3,o), +(141,-7,cs) +); +} +); +width = 374; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,-9,o), +(416,67,o), +(452,232,cs), +(480,371,o), +(446,491,o), +(318,491,cs), +(286,492,o), +(256,479,o), +(242,463,c), +(235,466,l), +(266,576,l), +(484,576,l), +(516,730,l), +(134,730,l), +(21,285,l), +(197,285,l), +(207,321,o), +(225,346,o), +(248,346,cs), +(286,346,o), +(282,295,o), +(272,242,cs), +(259,176,o), +(241,143,o), +(210,143,cs), +(172,143,o), +(174,183,o), +(181,222,c), +(3,222,l), +(-15,83,o), +(36,-9,o), +(203,-9,cs) +); +} +); +width = 474; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(396,-10,o), +(505,91,o), +(510,249,cs), +(514,387,o), +(428,461,o), +(314,461,cs), +(249,461,o), +(183,436,o), +(143,397,c), +(139,397,l), +(214,687,l), +(575,687,l), +(582,721,l), +(188,721,l), +(93,351,l), +(135,351,l), +(175,402,o), +(243,428,o), +(304,428,cs), +(412,428,o), +(475,361,o), +(471,248,cs), +(467,117,o), +(386,24,o), +(248,24,cs), +(141,24,o), +(75,85,o), +(83,187,c), +(47,187,l), +(41,72,o), +(117,-10,o), +(244,-10,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(410,-10,o), +(515,99,o), +(515,247,cs), +(515,377,o), +(436,462,o), +(315,462,cs), +(250,462,o), +(182,437,o), +(145,398,c), +(141,398,l), +(217,696,l), +(581,696,l), +(588,730,l), +(189,730,l), +(94,351,l), +(137,351,l), +(174,399,o), +(241,428,o), +(307,428,cs), +(408,428,o), +(475,359,o), +(475,246,cs), +(475,124,o), +(396,24,o), +(260,24,cs), +(153,24,o), +(82,89,o), +(84,187,c), +(48,187,l), +(48,69,o), +(132,-10,o), +(259,-10,cs) +); +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(443,-10,o), +(570,108,o), +(576,278,cs), +(580,405,o), +(501,490,o), +(376,490,cs), +(342,490,o), +(305,482,o), +(279,466,c), +(272,469,l), +(293,552,l), +(588,552,l), +(623,721,l), +(157,721,l), +(43,275,l), +(227,275,l), +(239,309,o), +(275,329,o), +(310,329,cs), +(353,329,o), +(379,302,o), +(377,257,cs), +(375,201,o), +(335,159,o), +(284,159,cs), +(246,159,o), +(220,182,o), +(216,217,c), +(21,217,l), +(19,81,o), +(117,-10,o), +(265,-10,cs) +); +} +); +}; +guides = ( +{ +pos = (233,207); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-10,o), +(584,99,o), +(584,264,cs), +(584,389,o), +(503,476,o), +(381,476,cs), +(346,476,o), +(304,470,o), +(271,449,c), +(264,452,l), +(301,562,l), +(610,562,l), +(644,730,l), +(160,730,l), +(44,274,l), +(230,274,l), +(239,304,o), +(273,325,o), +(313,325,cs), +(359,325,o), +(390,296,o), +(390,250,cs), +(390,196,o), +(356,154,o), +(296,154,cs), +(255,154,o), +(228,173,o), +(219,207,c), +(21,207,l), +(25,74,o), +(127,-10,o), +(279,-10,cs) +); +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,-10,o), +(615,79,o), +(621,256,cs), +(625,390,o), +(529,470,o), +(359,470,cs), +(267,470,o), +(174,437,o), +(122,386,c), +(119,387,l), +(201,687,l), +(686,687,l), +(692,721,l), +(174,721,l), +(75,345,l), +(112,345,l), +(161,401,o), +(249,437,o), +(353,437,cs), +(502,437,o), +(585,375,o), +(580,249,cs), +(575,119,o), +(488,24,o), +(299,24,cs), +(151,24,o), +(59,103,o), +(68,224,c), +(32,224,l), +(21,83,o), +(126,-10,o), +(296,-10,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(628,86,o), +(628,252,cs), +(628,389,o), +(529,476,o), +(363,476,cs), +(270,476,o), +(176,442,o), +(124,391,c), +(120,392,l), +(204,696,l), +(695,696,l), +(701,730,l), +(176,730,l), +(76,349,l), +(113,349,l), +(167,405,o), +(263,442,o), +(360,442,cs), +(497,442,o), +(588,374,o), +(588,252,cs), +(588,115,o), +(488,24,o), +(308,24,cs), +(165,24,o), +(70,105,o), +(69,227,c), +(32,227,l), +(34,85,o), +(144,-10,o), +(305,-10,cs) +); +} +); +width = 667; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(524,-9,o), +(668,89,o), +(674,258,cs), +(679,399,o), +(584,478,o), +(436,478,cs), +(384,478,o), +(322,465,o), +(292,445,c), +(283,448,l), +(313,546,l), +(681,546,l), +(718,721,l), +(149,721,l), +(30,278,l), +(239,278,l), +(260,307,o), +(300,326,o), +(353,326,cs), +(415,326,o), +(450,299,o), +(448,249,cs), +(446,191,o), +(402,156,o), +(329,156,cs), +(272,156,o), +(234,175,o), +(229,226,c), +(8,226,l), +(10,65,o), +(120,-9,o), +(312,-9,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-9,o), +(682,101,o), +(682,265,cs), +(682,397,o), +(583,480,o), +(441,480,cs), +(389,480,o), +(326,470,o), +(296,451,c), +(287,454,l), +(317,553,l), +(690,553,l), +(727,730,l), +(151,730,l), +(30,281,l), +(242,281,l), +(263,311,o), +(304,330,o), +(357,330,cs), +(416,330,o), +(454,301,o), +(454,254,cs), +(454,195,o), +(409,158,o), +(333,158,cs), +(276,158,o), +(236,183,o), +(232,229,c), +(8,229,l), +(10,86,o), +(120,-9,o), +(316,-9,cs) +); +} +); +width = 696; +} +); +unicode = 53; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/five.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/five.numr.glyph new file mode 100644 index 00000000..cb13eddd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/five.numr.glyph @@ -0,0 +1,498 @@ +{ +color = 6; +glyphname = five.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 267; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 257; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 413; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 409; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 257; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 249; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,332); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 384; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.dnom; +}; +width = 356; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 413; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 409; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 381; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.dnom; +}; +width = 359; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 254; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 265; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 377; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 371; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 409; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 402; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/five.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/five.tf.glyph new file mode 100644 index 00000000..0a767baa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/five.tf.glyph @@ -0,0 +1,1104 @@ +{ +glyphname = five.tf; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(464,72,o), +(464,246,cs), +(464,391,o), +(407,490,o), +(287,490,cs), +(255,490,o), +(222,480,o), +(207,454,c), +(200,457,l), +(209,569,l), +(426,569,l), +(426,721,l), +(44,721,l), +(26,277,l), +(200,277,l), +(201,314,o), +(216,342,o), +(241,342,cs), +(269,342,o), +(284,313,o), +(284,241,cs), +(284,177,o), +(273,140,o), +(239,140,cs), +(213,140,o), +(197,163,o), +(197,219,c), +(17,219,l), +(23,82,o), +(95,-10,o), +(239,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-8,o), +(394,66,o), +(394,235,cs), +(394,383,o), +(355,468,o), +(251,468,cs), +(203,468,o), +(162,441,o), +(142,396,c), +(139,396,l), +(149,692,l), +(393,692,l), +(393,721,l), +(120,721,l), +(108,317,l), +(140,317,l), +(151,396,o), +(186,440,o), +(251,440,cs), +(318,440,o), +(362,391,o), +(362,235,cs), +(362,83,o), +(326,19,o), +(249,19,cs), +(177,19,o), +(128,75,o), +(130,220,c), +(99,220,l), +(98,83,o), +(141,-8,o), +(249,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-8,o), +(648,81,o), +(648,235,cs), +(648,378,o), +(554,473,o), +(366,473,cs), +(269,473,o), +(180,435,o), +(138,379,c), +(134,380,l), +(151,688,l), +(632,688,l), +(632,721,l), +(117,721,l), +(96,338,l), +(135,338,l), +(172,398,o), +(254,439,o), +(362,439,cs), +(518,439,o), +(608,370,o), +(608,233,cs), +(608,109,o), +(525,26,o), +(356,26,cs), +(211,26,o), +(114,104,o), +(116,220,c), +(80,220,l), +(79,83,o), +(191,-8,o), +(356,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(547,-10,o), +(690,73,o), +(690,244,cs), +(690,401,o), +(575,482,o), +(426,482,cs), +(361,482,o), +(297,460,o), +(276,433,c), +(267,436,l), +(276,547,l), +(656,547,l), +(656,721,l), +(75,721,l), +(51,272,l), +(252,272,l), +(269,305,o), +(314,327,o), +(366,327,cs), +(426,327,o), +(468,298,o), +(468,243,cs), +(468,191,o), +(431,156,o), +(362,156,cs), +(308,156,o), +(268,173,o), +(260,219,c), +(39,219,l), +(49,84,o), +(146,-10,o), +(359,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-8,o), +(374,66,o), +(374,235,cs), +(374,383,o), +(335,468,o), +(231,468,cs), +(183,468,o), +(142,441,o), +(122,396,c), +(119,396,l), +(129,692,l), +(373,692,l), +(373,721,l), +(100,721,l), +(88,317,l), +(120,317,l), +(131,396,o), +(166,440,o), +(231,440,cs), +(298,440,o), +(342,391,o), +(342,235,cs), +(342,83,o), +(306,19,o), +(229,19,cs), +(157,19,o), +(108,75,o), +(110,220,c), +(79,220,l), +(78,83,o), +(121,-8,o), +(229,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,-10,o), +(454,72,o), +(454,246,cs), +(454,391,o), +(397,490,o), +(277,490,cs), +(245,490,o), +(212,480,o), +(197,454,c), +(190,457,l), +(199,569,l), +(416,569,l), +(416,721,l), +(34,721,l), +(16,277,l), +(190,277,l), +(191,314,o), +(206,342,o), +(231,342,cs), +(259,342,o), +(274,313,o), +(274,241,cs), +(274,177,o), +(263,140,o), +(229,140,cs), +(203,140,o), +(187,163,o), +(187,219,c), +(7,219,l), +(13,82,o), +(85,-10,o), +(229,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 461; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(421,-8,o), +(518,87,o), +(518,229,cs), +(518,367,o), +(426,461,o), +(288,461,cs), +(206,461,o), +(138,424,o), +(104,369,c), +(101,370,l), +(125,687,l), +(500,687,l), +(500,721,l), +(93,721,l), +(64,328,l), +(106,328,l), +(133,386,o), +(198,427,o), +(282,427,cs), +(399,427,o), +(478,354,o), +(478,227,cs), +(478,108,o), +(405,26,o), +(278,26,cs), +(171,26,o), +(100,91,o), +(94,187,c), +(56,187,l), +(61,71,o), +(151,-8,o), +(277,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +29, +29 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,-10,o), +(550,92,o), +(550,244,cs), +(550,382,o), +(463,472,o), +(329,472,cs), +(280,472,o), +(229,454,o), +(211,433,c), +(203,436,l), +(218,555,l), +(531,555,l), +(531,721,l), +(52,721,l), +(21,271,l), +(200,271,l), +(210,302,o), +(241,322,o), +(278,322,cs), +(326,322,o), +(360,288,o), +(360,237,cs), +(360,192,o), +(328,152,o), +(276,152,cs), +(234,152,o), +(202,174,o), +(195,207,c), +(6,207,l), +(18,77,o), +(114,-10,o), +(272,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(520,-8,o), +(638,81,o), +(638,235,cs), +(638,378,o), +(544,473,o), +(356,473,cs), +(259,473,o), +(170,435,o), +(128,379,c), +(124,380,l), +(141,688,l), +(622,688,l), +(622,721,l), +(107,721,l), +(86,338,l), +(125,338,l), +(162,398,o), +(244,439,o), +(352,439,cs), +(508,439,o), +(598,370,o), +(598,233,cs), +(598,109,o), +(515,26,o), +(346,26,cs), +(201,26,o), +(104,104,o), +(106,220,c), +(70,220,l), +(69,83,o), +(181,-8,o), +(346,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,-10,o), +(680,73,o), +(680,244,cs), +(680,401,o), +(565,482,o), +(416,482,cs), +(351,482,o), +(287,460,o), +(266,433,c), +(257,436,l), +(266,547,l), +(646,547,l), +(646,721,l), +(65,721,l), +(41,272,l), +(242,272,l), +(259,305,o), +(304,327,o), +(356,327,cs), +(416,327,o), +(458,298,o), +(458,243,cs), +(458,191,o), +(421,156,o), +(352,156,cs), +(298,156,o), +(258,173,o), +(250,219,c), +(29,219,l), +(39,84,o), +(136,-10,o), +(349,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(436,-8,o), +(531,87,o), +(531,229,cs), +(531,367,o), +(441,461,o), +(305,461,cs), +(225,461,o), +(157,424,o), +(125,369,c), +(122,370,l), +(146,687,l), +(513,687,l), +(513,721,l), +(114,721,l), +(85,328,l), +(127,328,l), +(152,386,o), +(217,427,o), +(299,427,cs), +(414,427,o), +(491,354,o), +(491,227,cs), +(491,108,o), +(420,26,o), +(295,26,cs), +(190,26,o), +(121,91,o), +(115,187,c), +(77,187,l), +(82,71,o), +(170,-8,o), +(294,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +29, +29 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(554,92,o), +(554,244,cs), +(554,382,o), +(470,472,o), +(341,472,cs), +(295,472,o), +(246,454,o), +(229,433,c), +(221,436,l), +(235,555,l), +(536,555,l), +(536,721,l), +(70,721,l), +(41,271,l), +(218,271,l), +(227,302,o), +(256,322,o), +(290,322,cs), +(335,322,o), +(366,288,o), +(366,237,cs), +(366,192,o), +(337,152,o), +(288,152,cs), +(249,152,o), +(220,174,o), +(213,207,c), +(26,207,l), +(38,77,o), +(131,-10,o), +(284,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,-15,o), +(350,54,o), +(386,222,cs), +(412,347,o), +(406,468,o), +(284,468,cs), +(239,468,o), +(200,444,o), +(173,405,c), +(170,405,l), +(240,692,l), +(473,692,l), +(478,721,l), +(216,721,l), +(123,329,l), +(155,326,l), +(180,399,o), +(220,440,o), +(275,440,cs), +(376,440,o), +(380,346,o), +(354,221,cs), +(324,79,o), +(278,19,o), +(209,19,cs), +(109,19,o), +(100,117,o), +(126,229,c), +(96,229,l), +(70,108,o), +(82,3,o), +(194,-7,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,-9,o), +(421,71,o), +(454,229,cs), +(482,361,o), +(450,485,o), +(321,485,cs), +(288,485,o), +(259,473,o), +(245,457,c), +(238,460,l), +(269,569,l), +(486,569,l), +(518,721,l), +(137,721,l), +(26,281,l), +(201,281,l), +(210,317,o), +(228,342,o), +(252,342,cs), +(289,342,o), +(287,293,o), +(276,237,cs), +(264,176,o), +(246,141,o), +(214,141,cs), +(175,141,o), +(178,183,o), +(185,219,c), +(8,219,l), +(-10,82,o), +(42,-9,o), +(207,-9,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(528,98,o), +(528,243,cs), +(528,372,o), +(448,456,o), +(327,456,cs), +(260,456,o), +(192,430,o), +(157,393,c), +(153,393,l), +(228,687,l), +(593,687,l), +(600,721,l), +(201,721,l), +(107,347,l), +(149,347,l), +(187,394,o), +(253,423,o), +(319,423,cs), +(420,423,o), +(488,355,o), +(488,242,cs), +(488,122,o), +(410,24,o), +(274,24,cs), +(166,24,o), +(95,88,o), +(97,185,c), +(61,185,l), +(61,68,o), +(146,-10,o), +(273,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 85; +}; +}; +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,-10,o), +(567,98,o), +(567,262,cs), +(567,385,o), +(489,470,o), +(371,470,cs), +(338,470,o), +(298,464,o), +(266,443,c), +(259,446,l), +(295,555,l), +(593,555,l), +(627,721,l), +(157,721,l), +(43,271,l), +(225,271,l), +(234,300,o), +(267,321,o), +(305,321,cs), +(348,321,o), +(377,292,o), +(377,248,cs), +(377,194,o), +(344,152,o), +(287,152,cs), +(249,152,o), +(223,171,o), +(215,204,c), +(21,204,l), +(24,79,o), +(116,-10,o), +(271,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(505,-10,o), +(635,79,o), +(642,251,cs), +(647,390,o), +(559,470,o), +(391,470,cs), +(304,470,o), +(213,437,o), +(163,386,c), +(160,387,l), +(241,687,l), +(708,687,l), +(714,721,l), +(214,721,l), +(115,345,l), +(153,345,l), +(200,401,o), +(286,437,o), +(385,437,cs), +(527,437,o), +(607,375,o), +(601,250,cs), +(595,119,o), +(511,24,o), +(329,24,cs), +(188,24,o), +(100,103,o), +(110,224,c), +(73,224,l), +(61,82,o), +(164,-10,o), +(326,-10,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(642,83,o), +(642,262,cs), +(642,394,o), +(554,470,o), +(391,470,cs), +(304,470,o), +(213,437,o), +(163,386,c), +(160,387,l), +(241,687,l), +(708,687,l), +(714,721,l), +(214,721,l), +(115,345,l), +(153,345,l), +(200,401,o), +(286,437,o), +(385,437,cs), +(522,437,o), +(601,379,o), +(601,263,cs), +(601,125,o), +(517,24,o), +(329,24,cs), +(188,24,o), +(100,103,o), +(110,224,c), +(73,224,l), +(61,82,o), +(164,-10,o), +(326,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-9,o), +(677,89,o), +(683,251,cs), +(689,399,o), +(601,478,o), +(453,478,cs), +(403,478,o), +(344,465,o), +(315,445,c), +(306,448,l), +(335,546,l), +(691,546,l), +(728,721,l), +(172,721,l), +(54,278,l), +(262,278,l), +(282,307,o), +(320,326,o), +(370,326,cs), +(431,326,o), +(460,298,o), +(458,249,cs), +(455,188,o), +(411,156,o), +(345,156,cs), +(291,156,o), +(257,175,o), +(252,226,c), +(32,226,l), +(34,65,o), +(140,-9,o), +(328,-9,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 80; +monoWidth = 700; +}; +}; +width = 720; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/fiveeighths.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/fiveeighths.glyph new file mode 100644 index 00000000..68a9bdab --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/fiveeighths.glyph @@ -0,0 +1,350 @@ +{ +color = 6; +glyphname = fiveeighths; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (255,0); +ref = fraction; +}, +{ +pos = (374,0); +ref = eight.dnom; +} +); +width = 635; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (257,0); +ref = fraction; +}, +{ +pos = (308,0); +ref = eight.dnom; +} +); +width = 579; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (413,0); +ref = fraction; +}, +{ +pos = (514,0); +ref = eight.dnom; +} +); +width = 929; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (390,0); +ref = fraction; +}, +{ +pos = (513,0); +ref = eight.dnom; +} +); +width = 920; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = five.numr; +}, +{ +alignment = -1; +pos = (257,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (297,0); +ref = eight.dnom; +} +); +width = 528; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (238,0); +ref = fraction; +}, +{ +pos = (345,0); +ref = eight.dnom; +} +); +width = 588; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = five.numr; +}, +{ +alignment = -1; +pos = (375,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (445,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.numr; +}; +width = 796; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = five.numr; +}, +{ +alignment = -1; +pos = (338,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (473,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.numr; +}; +width = 812; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = five.numr; +}, +{ +alignment = -1; +pos = (413,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (503,0); +ref = eight.dnom; +} +); +width = 898; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = five.numr; +}, +{ +alignment = -1; +pos = (395,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (514,0); +ref = eight.dnom; +} +); +width = 901; +}, +{ +layerId = m019; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (381,0); +ref = fraction; +}, +{ +pos = (490,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.numr; +}; +width = 878; +}, +{ +layerId = m020; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (339,0); +ref = fraction; +}, +{ +pos = (468,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.numr; +}; +width = 820; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (254,0); +ref = fraction; +}, +{ +pos = (314,0); +ref = eight.dnom; +} +); +width = 585; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (259,0); +ref = fraction; +}, +{ +pos = (393,0); +ref = eight.dnom; +} +); +width = 652; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (377,0); +ref = fraction; +}, +{ +pos = (497,0); +ref = eight.dnom; +} +); +width = 888; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (361,0); +ref = fraction; +}, +{ +pos = (528,0); +ref = eight.dnom; +} +); +width = 901; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (419,0); +ref = fraction; +}, +{ +pos = (531,0); +ref = eight.dnom; +} +); +width = 945; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (392,0); +ref = fraction; +}, +{ +pos = (532,0); +ref = eight.dnom; +} +); +width = 937; +} +); +unicode = 8541; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/fiveinferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/fiveinferior.glyph new file mode 100644 index 00000000..6c1cfcaf --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/fiveinferior.glyph @@ -0,0 +1,1195 @@ +{ +glyphname = fiveinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (150,177); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(230,-46,o), +(285,3,o), +(285,108,cs), +(285,195,o), +(250,254,o), +(178,254,cs), +(160,254,o), +(140,249,o), +(131,233,c), +(127,235,l), +(132,300,l), +(261,300,l), +(261,393,l), +(31,393,l), +(20,126,l), +(127,126,l), +(127,146,o), +(135,164,o), +(150,164,cs), +(166,164,o), +(175,147,o), +(175,105,cs), +(175,66,o), +(168,46,o), +(149,46,cs), +(134,46,o), +(125,59,o), +(125,91,c), +(15,91,l), +(19,9,o), +(62,-46,o), +(149,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 297; +}, +{ +anchors = ( +{ +name = _center; +pos = (142,177); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-45,o), +(235,1,o), +(235,102,cs), +(235,191,o), +(210,242,o), +(148,242,cs), +(119,242,o), +(97,227,o), +(85,202,c), +(83,202,l), +(89,366,l), +(232,366,l), +(232,393,l), +(62,393,l), +(54,147,l), +(84,147,l), +(90,195,o), +(111,217,o), +(144,217,cs), +(182,217,o), +(205,188,o), +(205,101,cs), +(205,17,o), +(186,-20,o), +(143,-20,cs), +(106,-20,o), +(77,8,o), +(78,92,c), +(49,92,l), +(49,10,o), +(76,-45,o), +(143,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 271; +}, +{ +anchors = ( +{ +name = _center; +pos = (226,173); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(329,-45,o), +(405,8,o), +(405,102,cs), +(405,188,o), +(345,245,o), +(231,245,cs), +(173,245,o), +(120,223,o), +(95,192,c), +(92,192,l), +(102,362,l), +(394,362,l), +(394,393,l), +(69,393,l), +(56,158,l), +(92,158,l), +(112,189,o), +(157,215,o), +(225,215,cs), +(315,215,o), +(366,176,o), +(366,101,cs), +(366,32,o), +(318,-14,o), +(221,-14,cs), +(138,-14,o), +(81,28,o), +(82,92,c), +(46,92,l), +(46,10,o), +(115,-45,o), +(221,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 440; +}, +{ +anchors = ( +{ +name = _center; +pos = (228,171); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-46,o), +(431,3,o), +(431,107,cs), +(431,202,o), +(359,250,o), +(270,250,cs), +(233,250,o), +(195,238,o), +(184,224,c), +(178,226,l), +(183,276,l), +(409,276,l), +(409,393,l), +(47,393,l), +(32,118,l), +(168,118,l), +(177,135,o), +(201,147,o), +(229,147,cs), +(259,147,o), +(280,132,o), +(280,107,cs), +(280,82,o), +(262,65,o), +(227,65,cs), +(201,65,o), +(181,69,o), +(175,91,c), +(25,91,l), +(32,11,o), +(89,-46,o), +(225,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 449; +}, +{ +anchors = ( +{ +name = _center; +pos = (122,177); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,-45,o), +(215,1,o), +(215,102,cs), +(215,191,o), +(190,242,o), +(128,242,cs), +(99,242,o), +(77,227,o), +(65,202,c), +(63,202,l), +(69,366,l), +(212,366,l), +(212,393,l), +(42,393,l), +(34,147,l), +(64,147,l), +(70,195,o), +(91,217,o), +(124,217,cs), +(162,217,o), +(185,188,o), +(185,101,cs), +(185,17,o), +(166,-20,o), +(123,-20,cs), +(86,-20,o), +(57,8,o), +(58,92,c), +(29,92,l), +(29,10,o), +(56,-45,o), +(123,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 231; +}, +{ +anchors = ( +{ +name = _center; +pos = (141,177); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-46,o), +(276,3,o), +(276,108,cs), +(276,195,o), +(241,254,o), +(169,254,cs), +(151,254,o), +(131,249,o), +(122,233,c), +(118,235,l), +(123,300,l), +(252,300,l), +(252,393,l), +(22,393,l), +(11,126,l), +(118,126,l), +(118,146,o), +(126,164,o), +(141,164,cs), +(157,164,o), +(166,147,o), +(166,105,cs), +(166,66,o), +(159,46,o), +(140,46,cs), +(125,46,o), +(116,59,o), +(116,91,c), +(6,91,l), +(10,9,o), +(53,-46,o), +(140,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 279; +}, +{ +anchors = ( +{ +name = _center; +pos = (189,174); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,-45,o), +(330,13,o), +(330,99,cs), +(330,181,o), +(276,237,o), +(193,237,cs), +(150,237,o), +(109,219,o), +(88,186,c), +(86,187,l), +(100,362,l), +(320,362,l), +(320,393,l), +(70,393,l), +(52,152,l), +(89,152,l), +(103,185,o), +(140,208,o), +(186,208,cs), +(251,208,o), +(295,167,o), +(295,97,cs), +(295,31,o), +(254,-14,o), +(184,-14,cs), +(125,-14,o), +(86,21,o), +(82,74,c), +(47,74,l), +(50,7,o), +(101,-45,o), +(183,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 363; +}, +{ +anchors = ( +{ +name = _center; +pos = (184,174); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,-46,o), +(354,16,o), +(354,108,cs), +(354,190,o), +(301,244,o), +(219,244,cs), +(192,244,o), +(161,235,o), +(152,225,c), +(146,227,l), +(155,282,l), +(343,282,l), +(343,393,l), +(42,393,l), +(23,118,l), +(144,118,l), +(148,133,o), +(164,144,o), +(184,144,cs), +(208,144,o), +(226,127,o), +(226,103,cs), +(226,82,o), +(209,62,o), +(183,62,cs), +(162,62,o), +(146,71,o), +(141,86,c), +(13,86,l), +(21,7,o), +(80,-46,o), +(180,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 366; +}, +{ +anchors = ( +{ +name = _center; +pos = (216,173); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-45,o), +(395,8,o), +(395,102,cs), +(395,188,o), +(335,245,o), +(221,245,cs), +(163,245,o), +(110,223,o), +(85,192,c), +(82,192,l), +(92,362,l), +(384,362,l), +(384,393,l), +(59,393,l), +(46,158,l), +(82,158,l), +(102,189,o), +(147,215,o), +(215,215,cs), +(305,215,o), +(356,176,o), +(356,101,cs), +(356,32,o), +(308,-14,o), +(211,-14,cs), +(128,-14,o), +(71,28,o), +(72,92,c), +(36,92,l), +(36,10,o), +(105,-45,o), +(211,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 420; +}, +{ +anchors = ( +{ +name = _center; +pos = (218,171); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,-46,o), +(421,3,o), +(421,107,cs), +(421,202,o), +(349,250,o), +(260,250,cs), +(223,250,o), +(185,238,o), +(174,224,c), +(168,226,l), +(173,276,l), +(399,276,l), +(399,393,l), +(37,393,l), +(22,118,l), +(158,118,l), +(167,135,o), +(191,147,o), +(219,147,cs), +(249,147,o), +(270,132,o), +(270,107,cs), +(270,82,o), +(252,65,o), +(217,65,cs), +(191,65,o), +(171,69,o), +(165,91,c), +(15,91,l), +(22,11,o), +(79,-46,o), +(215,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 429; +}, +{ +anchors = ( +{ +name = _center; +pos = (208,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(289,-45,o), +(346,13,o), +(346,99,cs), +(346,181,o), +(293,237,o), +(212,237,cs), +(169,237,o), +(130,219,o), +(109,186,c), +(107,187,l), +(121,362,l), +(337,362,l), +(337,393,l), +(91,393,l), +(73,152,l), +(110,152,l), +(124,185,o), +(159,208,o), +(205,208,cs), +(268,208,o), +(312,167,o), +(312,97,cs), +(312,31,o), +(271,-14,o), +(203,-14,cs), +(146,-14,o), +(107,21,o), +(103,74,c), +(68,74,l), +(71,7,o), +(122,-45,o), +(202,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 400; +}, +{ +anchors = ( +{ +name = _center; +pos = (197,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(294,-46,o), +(360,16,o), +(360,108,cs), +(360,190,o), +(310,244,o), +(232,244,cs), +(207,244,o), +(178,235,o), +(170,225,c), +(164,227,l), +(172,282,l), +(349,282,l), +(349,393,l), +(60,393,l), +(43,118,l), +(161,118,l), +(164,132,o), +(178,144,o), +(197,144,cs), +(218,144,o), +(234,127,o), +(234,103,cs), +(234,82,o), +(219,62,o), +(196,62,cs), +(178,62,o), +(164,71,o), +(159,86,c), +(33,86,l), +(41,7,o), +(97,-46,o), +(193,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 391; +}, +{ +anchors = ( +{ +name = _center; +pos = (131,177); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,-48,o), +(177,-12,o), +(199,92,cs), +(216,172,o), +(208,242,o), +(137,242,cs), +(112,242,o), +(89,229,o), +(74,207,c), +(71,207,l), +(111,366,l), +(248,366,l), +(253,393,l), +(89,393,l), +(32,154,l), +(61,152,l), +(76,197,o), +(99,217,o), +(127,217,cs), +(182,217,o), +(184,164,o), +(170,95,cs), +(153,14,o), +(127,-20,o), +(89,-20,cs), +(35,-20,o), +(30,35,o), +(44,97,c), +(16,97,l), +(1,22,o), +(11,-39,o), +(81,-44,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 268; +}, +{ +anchors = ( +{ +name = _center; +pos = (130.969,177); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,-45,o), +(226,0,o), +(247,98,cs), +(264,180,o), +(243,251,o), +(167,251,cs), +(148,251,o), +(131,244,o), +(123,235,c), +(119,237,l), +(137,300,l), +(265,300,l), +(285,393,l), +(57,393,l), +(-10,128,l), +(96,128,l), +(101,150,o), +(113,164,o), +(125,164,cs), +(147,164,o), +(144,131,o), +(139,105,cs), +(132,69,o), +(122,46,o), +(103,46,cs), +(83,46,o), +(82,66,o), +(87,91,c), +(-21,91,l), +(-32,9,o), +(0,-45,o), +(99,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 295; +}, +{ +anchors = ( +{ +name = _center; +pos = (191,177); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,-46,o), +(312,19,o), +(312,108,cs), +(312,184,o), +(264,235,o), +(193,235,cs), +(158,235,o), +(118,222,o), +(96,200,c), +(94,200,l), +(136,362,l), +(347,362,l), +(354,393,l), +(111,393,l), +(53,162,l), +(89,162,l), +(109,189,o), +(147,206,o), +(183,206,cs), +(239,206,o), +(276,168,o), +(276,106,cs), +(276,39,o), +(232,-16,o), +(158,-16,cs), +(100,-16,o), +(61,19,o), +(61,72,c), +(27,72,l), +(27,1,o), +(79,-46,o), +(156,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 397; +}, +{ +anchors = ( +{ +name = _center; +pos = (187,177); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-46,o), +(341,19,o), +(341,118,cs), +(341,191,o), +(293,243,o), +(220,243,cs), +(201,243,o), +(179,241,o), +(160,230,c), +(156,232,l), +(174,282,l), +(352,282,l), +(375,393,l), +(81,393,l), +(10,116,l), +(133,116,l), +(136,132,o), +(153,144,o), +(175,144,cs), +(197,144,o), +(212,130,o), +(212,109,cs), +(212,82,o), +(196,62,o), +(167,62,cs), +(148,62,o), +(136,70,o), +(130,84,c), +(-1,84,l), +(2,4,o), +(63,-46,o), +(156,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 405; +}, +{ +anchors = ( +{ +name = _center; +pos = (210,177); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(280,-46,o), +(366,8,o), +(369,106,cs), +(372,195,o), +(319,243,o), +(214,243,cs), +(160,243,o), +(107,223,o), +(79,196,c), +(77,197,l), +(122,361,l), +(404,361,l), +(410,393,l), +(95,393,l), +(34,162,l), +(70,162,l), +(97,193,o), +(146,213,o), +(204,213,cs), +(288,213,o), +(333,179,o), +(330,109,cs), +(327,33,o), +(275,-15,o), +(174,-15,cs), +(93,-15,o), +(42,27,o), +(46,95,c), +(10,95,l), +(4,7,o), +(70,-46,o), +(172,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 436; +}, +{ +anchors = ( +{ +name = _center; +pos = (202,177); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-45,o), +(389,11,o), +(393,115,cs), +(396,200,o), +(340,247,o), +(252,247,cs), +(223,247,o), +(190,241,o), +(174,232,c), +(168,234,l), +(182,276,l), +(392,276,l), +(417,393,l), +(72,393,l), +(-2,121,l), +(139,121,l), +(149,136,o), +(168,146,o), +(196,146,cs), +(224,146,o), +(243,133,o), +(242,110,cs), +(241,81,o), +(218,65,o), +(184,65,cs), +(157,65,o), +(140,71,o), +(135,96,c), +(-13,96,l), +(-11,2,o), +(50,-45,o), +(173,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 441; +} +); +unicode = 8325; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/fivesuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/fivesuperior.glyph new file mode 100644 index 00000000..749316c7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/fivesuperior.glyph @@ -0,0 +1,500 @@ +{ +color = 6; +glyphname = fivesuperior; +kernLeft = KO_fivesuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 297; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 271; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 440; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 449; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 271; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 279; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fiveinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fiveinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 403; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fiveinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fiveinferior; +}; +width = 388; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 440; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 449; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fiveinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fiveinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 400; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fiveinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fiveinferior; +}; +width = 391; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 268; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 295; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 397; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 405; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 436; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 441; +} +); +unicode = 8309; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/fl.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/fl.glyph new file mode 100644 index 00000000..4bd52d43 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/fl.glyph @@ -0,0 +1,612 @@ +{ +glyphname = fl; +kernLeft = KO_f; +kernRight = KO_l; +layers = ( +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (307,0); +ref = l; +} +); +width = 538; +}, +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (124,0); +ref = l; +} +); +width = 273; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (302,0); +ref = l; +} +); +width = 471; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (430,0); +ref = l; +} +); +width = 737; +}, +{ +background = { +shapes = ( +{ +pos = (11,0); +ref = f; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (199,0); +ref = l; +} +); +width = 300; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (335,0); +ref = l; +} +); +width = 544; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (339,0); +ref = l; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 494; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (434,0); +ref = l; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 685; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (373,0); +ref = l; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (467,0); +ref = l; +} +); +width = 748; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (291,0); +ref = l; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 498; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (385,0); +ref = l; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 696; +}, +{ +background = { +shapes = ( +{ +pos = (12,0); +ref = f; +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (114,0); +ref = l; +} +); +width = 263; +}, +{ +background = { +shapes = ( +{ +pos = (3,0); +ref = f; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (313,0); +ref = l; +} +); +width = 541; +}, +{ +background = { +shapes = ( +{ +pos = (-5,0); +ref = f; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (286,0); +ref = l; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +pos = (10,0); +ref = f; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (398,0); +ref = l; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +pos = (-3,0); +ref = f; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (279,0); +ref = l; +} +); +width = 448; +}, +{ +background = { +shapes = ( +{ +pos = (-7,0); +ref = f; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = _f.longarm; +}, +{ +pos = (455,0); +ref = l; +} +); +width = 760; +} +); +metricLeft = f; +metricRight = l; +unicode = 64258; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/florin.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/florin.glyph new file mode 100644 index 00000000..9491ba0d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/florin.glyph @@ -0,0 +1,732 @@ +{ +glyphname = florin; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,-167,ls), +(93,-167,o), +(121,-150,o), +(121,-92,cs), +(121,648,ls), +(121,684,o), +(129,700,o), +(161,700,cs), +(178,700,l), +(178,729,l), +(161,729,ls), +(120,729,o), +(92,712,o), +(92,654,cs), +(92,-86,ls), +(92,-122,o), +(84,-138,o), +(52,-138,cs), +(35,-138,l), +(35,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(176,431,l), +(176,459,l), +(38,459,l), +(38,431,l) +); +} +); +width = 213; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,-177,ls), +(208,-177,o), +(261,-107,o), +(261,11,cs), +(261,541,ls), +(261,579,o), +(274,605,o), +(313,605,cs), +(325,605,l), +(325,729,l), +(283,729,ls), +(137,729,o), +(84,659,o), +(84,541,cs), +(84,11,ls), +(84,-27,o), +(71,-53,o), +(32,-53,cs), +(20,-53,l), +(20,-177,l) +); +}, +{ +closed = 1; +nodes = ( +(311,320,l), +(311,440,l), +(35,440,l), +(35,320,l) +); +} +); +width = 345; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(80,-167,ls), +(168,-167,o), +(222,-120,o), +(222,-22,cs), +(222,580,ls), +(222,661,o), +(253,695,o), +(331,695,cs), +(382,695,l), +(382,729,l), +(327,729,ls), +(239,729,o), +(185,682,o), +(185,584,cs), +(185,-18,ls), +(185,-99,o), +(154,-133,o), +(76,-133,cs), +(25,-133,l), +(25,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(360,384,l), +(360,418,l), +(52,418,l), +(52,384,l) +); +} +); +width = 407; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(139,-167,ls), +(260,-167,o), +(342,-98,o), +(342,33,cs), +(342,489,ls), +(342,551,o), +(366,571,o), +(421,571,cs), +(459,571,l), +(459,729,l), +(340,729,ls), +(219,729,o), +(137,660,o), +(137,529,cs), +(137,73,ls), +(137,11,o), +(113,-9,o), +(58,-9,cs), +(20,-9,l), +(20,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(452,302,l), +(452,452,l), +(44,452,l), +(44,302,l) +); +} +); +width = 479; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(32,-167,ls), +(73,-167,o), +(101,-150,o), +(101,-92,cs), +(101,648,ls), +(101,684,o), +(109,700,o), +(141,700,cs), +(158,700,l), +(158,729,l), +(141,729,ls), +(100,729,o), +(72,712,o), +(72,654,cs), +(72,-86,ls), +(72,-122,o), +(64,-138,o), +(32,-138,cs), +(15,-138,l), +(15,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(156,431,l), +(156,459,l), +(18,459,l), +(18,431,l) +); +} +); +width = 173; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,-177,ls), +(198,-177,o), +(251,-107,o), +(251,11,cs), +(251,541,ls), +(251,579,o), +(264,605,o), +(303,605,cs), +(315,605,l), +(315,729,l), +(273,729,ls), +(127,729,o), +(74,659,o), +(74,541,cs), +(74,11,ls), +(74,-27,o), +(61,-53,o), +(22,-53,cs), +(10,-53,l), +(10,-177,l) +); +}, +{ +closed = 1; +nodes = ( +(301,320,l), +(301,440,l), +(25,440,l), +(25,320,l) +); +} +); +width = 325; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,-167,ls), +(148,-167,o), +(202,-120,o), +(202,-23,cs), +(202,581,ls), +(202,662,o), +(233,695,o), +(313,695,cs), +(342,695,l), +(342,729,l), +(305,729,ls), +(219,729,o), +(165,682,o), +(165,585,cs), +(165,-19,ls), +(165,-100,o), +(134,-133,o), +(54,-133,cs), +(25,-133,l), +(25,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(303,384,l), +(303,418,l), +(65,418,l), +(65,384,l) +); +} +); +width = 367; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,-167,ls), +(233,-167,o), +(310,-102,o), +(310,33,cs), +(310,529,ls), +(310,575,o), +(336,586,o), +(374,586,cs), +(420,586,l), +(420,729,l), +(334,729,ls), +(196,729,o), +(119,664,o), +(119,529,cs), +(119,33,ls), +(119,-13,o), +(93,-24,o), +(55,-24,cs), +(9,-24,l), +(9,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(405,320,l), +(405,460,l), +(35,460,l), +(35,320,l) +); +} +); +width = 429; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(70,-167,ls), +(158,-167,o), +(212,-120,o), +(212,-22,cs), +(212,580,ls), +(212,661,o), +(243,695,o), +(321,695,cs), +(372,695,l), +(372,729,l), +(317,729,ls), +(229,729,o), +(175,682,o), +(175,584,cs), +(175,-18,ls), +(175,-99,o), +(144,-133,o), +(66,-133,cs), +(15,-133,l), +(15,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(350,384,l), +(350,418,l), +(42,418,l), +(42,384,l) +); +} +); +width = 387; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,-167,ls), +(250,-167,o), +(332,-98,o), +(332,33,cs), +(332,489,ls), +(332,551,o), +(356,571,o), +(411,571,cs), +(449,571,l), +(449,729,l), +(330,729,ls), +(209,729,o), +(127,660,o), +(127,529,cs), +(127,73,ls), +(127,11,o), +(103,-9,o), +(48,-9,cs), +(10,-9,l), +(10,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(442,302,l), +(442,452,l), +(34,452,l), +(34,302,l) +); +} +); +width = 459; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(83,-167,ls), +(167,-167,o), +(221,-120,o), +(221,-23,cs), +(221,581,ls), +(221,662,o), +(250,695,o), +(330,695,cs), +(357,695,l), +(357,729,l), +(322,729,ls), +(238,729,o), +(184,682,o), +(184,585,cs), +(184,-19,ls), +(184,-100,o), +(153,-133,o), +(75,-133,cs), +(48,-133,l), +(48,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(320,384,l), +(320,418,l), +(86,418,l), +(86,384,l) +); +} +); +width = 404; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(113,-167,ls), +(248,-167,o), +(322,-102,o), +(322,33,cs), +(322,529,ls), +(322,575,o), +(347,586,o), +(381,586,cs), +(426,586,l), +(426,729,l), +(342,729,ls), +(207,729,o), +(133,664,o), +(133,529,cs), +(133,33,ls), +(133,-13,o), +(108,-24,o), +(73,-24,cs), +(29,-24,l), +(29,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(413,320,l), +(413,460,l), +(52,460,l), +(52,320,l) +); +} +); +width = 453; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-41,-167,ls), +(0,-167,o), +(32,-150,o), +(44,-92,cs), +(197,648,ls), +(204,684,o), +(216,700,o), +(248,700,cs), +(265,700,l), +(271,729,l), +(254,729,ls), +(213,729,o), +(181,712,o), +(169,654,cs), +(16,-86,ls), +(9,-122,o), +(-3,-138,o), +(-35,-138,cs), +(-52,-138,l), +(-58,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(207,431,l), +(213,459,l), +(75,459,l), +(69,431,l) +); +} +); +width = 203; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(-26,-177,ls), +(120,-177,o), +(188,-107,o), +(212,11,cs), +(322,541,ls), +(330,579,o), +(348,605,o), +(387,605,cs), +(399,605,l), +(425,729,l), +(383,729,ls), +(237,729,o), +(169,659,o), +(145,541,cs), +(35,11,ls), +(27,-27,o), +(9,-53,o), +(-30,-53,cs), +(-42,-53,l), +(-68,-177,l) +); +}, +{ +closed = 1; +nodes = ( +(326,320,l), +(351,440,l), +(75,440,l), +(50,320,l) +); +} +); +width = 355; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-11,-167,ls), +(75,-167,o), +(139,-120,o), +(159,-23,cs), +(284,581,ls), +(301,662,o), +(339,695,o), +(419,695,cs), +(448,695,l), +(455,729,l), +(418,729,ls), +(332,729,o), +(268,682,o), +(248,585,cs), +(123,-19,ls), +(106,-100,o), +(68,-133,o), +(-12,-133,cs), +(-41,-133,l), +(-48,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(344,384,l), +(351,418,l), +(113,418,l), +(106,384,l) +); +} +); +width = 398; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(23,-167,ls), +(161,-167,o), +(252,-102,o), +(280,33,cs), +(382,529,ls), +(392,575,o), +(420,586,o), +(458,586,cs), +(504,586,l), +(534,729,l), +(448,729,ls), +(310,729,o), +(219,664,o), +(191,529,cs), +(89,33,ls), +(79,-13,o), +(51,-24,o), +(13,-24,cs), +(-33,-24,l), +(-63,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(434,320,l), +(463,460,l), +(93,460,l), +(64,320,l) +); +} +); +width = 467; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-8,-167,ls), +(80,-167,o), +(144,-120,o), +(164,-22,cs), +(289,580,ls), +(306,661,o), +(344,695,o), +(422,695,cs), +(473,695,l), +(480,729,l), +(425,729,ls), +(337,729,o), +(273,682,o), +(253,584,cs), +(128,-18,ls), +(111,-99,o), +(73,-133,o), +(-5,-133,cs), +(-56,-133,l), +(-63,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(386,384,l), +(393,418,l), +(85,418,l), +(78,384,l) +); +} +); +width = 408; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(46,-167,ls), +(167,-167,o), +(264,-98,o), +(291,33,cs), +(385,489,ls), +(398,551,o), +(426,571,o), +(481,571,cs), +(519,571,l), +(552,729,l), +(433,729,ls), +(312,729,o), +(215,660,o), +(188,529,cs), +(94,73,ls), +(81,11,o), +(53,-9,o), +(-2,-9,cs), +(-40,-9,l), +(-73,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(456,302,l), +(487,452,l), +(79,452,l), +(48,302,l) +); +} +); +width = 475; +} +); +unicode = 402; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/four.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/four.blackC_ircled.glyph new file mode 100644 index 00000000..55894a42 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/four.blackC_ircled.glyph @@ -0,0 +1,1954 @@ +{ +color = 0; +glyphname = four.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,122,o), +(173,-7,o), +(353,-7,cs), +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,327,l), +(319,583,l), +(451,583,l), +(451,335,l), +(491,335,l), +(490,241,l), +(451,241,l), +(451,150,l), +(341,150,l), +(341,241,l), +(195,241,l) +); +}, +{ +closed = 1; +nodes = ( +(341,335,l), +(341,446,l), +(292,335,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(351,240,l), +(205,240,l), +(205,326,l), +(329,582,l), +(461,582,l), +(461,334,l), +(501,334,l), +(501,240,l), +(461,240,l), +(461,149,l), +(351,149,l) +); +}, +{ +closed = 1; +nodes = ( +(351,334,l), +(351,445,l), +(302,334,l) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,142,o), +(155,-9,o), +(349,-9,cs), +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs) +); +}, +{ +closed = 1; +nodes = ( +(219,288,l), +(359,583,l), +(398,583,l), +(398,290,l), +(441,290,l), +(441,264,l), +(398,264,l), +(398,150,l), +(369,150,l), +(369,264,l), +(219,264,l) +); +}, +{ +closed = 1; +nodes = ( +(369,290,l), +(369,548,l), +(248,290,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(388,262,l), +(238,262,l), +(238,286,l), +(378,581,l), +(417,581,l), +(417,288,l), +(460,288,l), +(460,262,l), +(417,262,l), +(417,148,l), +(388,148,l) +); +}, +{ +closed = 1; +nodes = ( +(388,288,l), +(388,546,l), +(267,288,l) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,139,o), +(219,-10,o), +(442,-10,cs), +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,291,l), +(502,580,l), +(545,580,l), +(545,291,l), +(636,291,l), +(636,261,l), +(545,261,l), +(545,147,l), +(508,147,l), +(508,261,l), +(229,261,l) +); +}, +{ +closed = 1; +nodes = ( +(508,291,l), +(508,540,l), +(269,291,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(518,264,l), +(239,264,l), +(239,294,l), +(512,583,l), +(555,583,l), +(555,294,l), +(646,294,l), +(646,264,l), +(555,264,l), +(555,150,l), +(518,150,l) +); +}, +{ +closed = 1; +nodes = ( +(518,294,l), +(518,543,l), +(279,294,l) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,135,o), +(202,-11,o), +(430,-11,cs), +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs) +); +}, +{ +closed = 1; +nodes = ( +(211,329,l), +(400,581,l), +(578,581,l), +(578,345,l), +(640,345,l), +(639,230,l), +(578,230,l), +(578,148,l), +(429,148,l), +(428,230,l), +(211,230,l) +); +}, +{ +closed = 1; +nodes = ( +(429,345,l), +(429,436,l), +(369,345,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(433,235,l), +(215,235,l), +(215,334,l), +(404,586,l), +(582,586,l), +(582,350,l), +(644,350,l), +(644,235,l), +(582,235,l), +(582,153,l), +(433,153,l) +); +}, +{ +closed = 1; +nodes = ( +(433,350,l), +(433,441,l), +(373,350,l) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,142,o), +(155,-9,o), +(349,-9,cs), +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs) +); +}, +{ +closed = 1; +nodes = ( +(219,288,l), +(359,583,l), +(398,583,l), +(398,290,l), +(441,290,l), +(441,264,l), +(398,264,l), +(398,150,l), +(369,150,l), +(369,264,l), +(219,264,l) +); +}, +{ +closed = 1; +nodes = ( +(369,290,l), +(369,548,l), +(248,290,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,262,l), +(218,262,l), +(218,286,l), +(358,581,l), +(397,581,l), +(397,288,l), +(440,288,l), +(440,262,l), +(397,262,l), +(397,148,l), +(368,148,l) +); +}, +{ +closed = 1; +nodes = ( +(368,288,l), +(368,546,l), +(247,288,l) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,122,o), +(173,-7,o), +(353,-7,cs), +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,327,l), +(319,583,l), +(451,583,l), +(451,335,l), +(491,335,l), +(490,241,l), +(451,241,l), +(451,150,l), +(341,150,l), +(341,241,l), +(195,241,l) +); +}, +{ +closed = 1; +nodes = ( +(341,335,l), +(341,446,l), +(292,335,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,240,l), +(195,240,l), +(195,326,l), +(319,582,l), +(451,582,l), +(451,334,l), +(491,334,l), +(491,240,l), +(451,240,l), +(451,149,l), +(341,149,l) +); +}, +{ +closed = 1; +nodes = ( +(341,334,l), +(341,445,l), +(292,334,l) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,140,o), +(211,-10,o), +(435,-10,cs), +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,290,l), +(458,580,l), +(498,580,l), +(498,291,l), +(581,291,l), +(581,261,l), +(498,261,l), +(498,147,l), +(464,147,l), +(464,261,l), +(251,261,l) +); +}, +{ +closed = 1; +nodes = ( +(464,291,l), +(464,537,l), +(288,291,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,263,l), +(251,263,l), +(251,292,l), +(458,582,l), +(498,582,l), +(498,293,l), +(581,293,l), +(581,263,l), +(498,263,l), +(498,149,l), +(464,149,l) +); +}, +{ +closed = 1; +nodes = ( +(464,293,l), +(464,539,l), +(288,293,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +272, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +515, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-20, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-20, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,141,o), +(204,-9,o), +(428,-9,cs), +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,330,l), +(393,582,l), +(547,582,l), +(547,340,l), +(609,340,l), +(609,236,l), +(547,236,l), +(547,149,l), +(420,149,l), +(419,236,l), +(229,236,l) +); +}, +{ +closed = 1; +nodes = ( +(420,340,l), +(420,443,l), +(354,340,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(408,238,l), +(217,238,l), +(217,332,l), +(381,584,l), +(535,584,l), +(535,342,l), +(597,342,l), +(597,238,l), +(535,238,l), +(535,151,l), +(408,151,l) +); +}, +{ +closed = 1; +nodes = ( +(408,342,l), +(408,445,l), +(342,342,l) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,139,o), +(219,-10,o), +(442,-10,cs), +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,291,l), +(502,580,l), +(545,580,l), +(545,291,l), +(636,291,l), +(636,261,l), +(545,261,l), +(545,147,l), +(508,147,l), +(508,261,l), +(229,261,l) +); +}, +{ +closed = 1; +nodes = ( +(508,291,l), +(508,540,l), +(269,291,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(508,264,l), +(229,264,l), +(229,294,l), +(502,583,l), +(545,583,l), +(545,294,l), +(636,294,l), +(636,264,l), +(545,264,l), +(545,150,l), +(508,150,l) +); +}, +{ +closed = 1; +nodes = ( +(508,294,l), +(508,543,l), +(269,294,l) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,135,o), +(202,-11,o), +(430,-11,cs), +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs) +); +}, +{ +closed = 1; +nodes = ( +(211,329,l), +(400,581,l), +(578,581,l), +(578,345,l), +(640,345,l), +(639,230,l), +(578,230,l), +(578,148,l), +(429,148,l), +(428,230,l), +(211,230,l) +); +}, +{ +closed = 1; +nodes = ( +(429,345,l), +(429,436,l), +(369,345,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(423,235,l), +(205,235,l), +(205,334,l), +(394,586,l), +(572,586,l), +(572,350,l), +(634,350,l), +(634,235,l), +(572,235,l), +(572,153,l), +(423,153,l) +); +}, +{ +closed = 1; +nodes = ( +(423,350,l), +(423,441,l), +(363,350,l) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,140,o), +(211,-10,o), +(435,-10,cs), +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,290,l), +(458,580,l), +(498,580,l), +(498,291,l), +(581,291,l), +(581,261,l), +(498,261,l), +(498,147,l), +(464,147,l), +(464,261,l), +(251,261,l) +); +}, +{ +closed = 1; +nodes = ( +(464,291,l), +(464,537,l), +(288,291,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(477,263,l), +(268,263,l), +(268,292,l), +(471,582,l), +(511,582,l), +(511,293,l), +(592,293,l), +(592,263,l), +(511,263,l), +(511,149,l), +(477,149,l) +); +}, +{ +closed = 1; +nodes = ( +(477,293,l), +(477,539,l), +(305,293,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +272, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +515, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-20, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-20, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,141,o), +(204,-9,o), +(428,-9,cs), +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,330,l), +(393,582,l), +(547,582,l), +(547,340,l), +(609,340,l), +(609,236,l), +(547,236,l), +(547,149,l), +(420,149,l), +(419,236,l), +(229,236,l) +); +}, +{ +closed = 1; +nodes = ( +(420,340,l), +(420,443,l), +(354,340,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(418,238,l), +(232,238,l), +(232,332,l), +(391,584,l), +(544,584,l), +(544,342,l), +(604,342,l), +(604,238,l), +(544,238,l), +(544,151,l), +(418,151,l) +); +}, +{ +closed = 1; +nodes = ( +(418,342,l), +(418,445,l), +(355,342,l) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(97,142,o), +(192,-9,o), +(386,-9,cs), +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,288,l), +(396,583,l), +(435,583,l), +(435,290,l), +(478,290,l), +(478,264,l), +(435,264,l), +(435,150,l), +(406,150,l), +(406,264,l), +(256,264,l) +); +}, +{ +closed = 1; +nodes = ( +(406,290,l), +(406,548,l), +(285,290,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,262,l), +(275,262,l), +(275,286,l), +(415,581,l), +(454,581,l), +(454,288,l), +(497,288,l), +(497,262,l), +(454,262,l), +(454,148,l), +(425,148,l) +); +}, +{ +closed = 1; +nodes = ( +(425,288,l), +(425,546,l), +(304,288,l) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(72,122,o), +(205,-7,o), +(385,-7,cs), +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,327,l), +(351,583,l), +(483,583,l), +(483,335,l), +(523,335,l), +(522,241,l), +(483,241,l), +(483,150,l), +(373,150,l), +(373,241,l), +(227,241,l) +); +}, +{ +closed = 1; +nodes = ( +(373,335,l), +(373,446,l), +(324,335,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,240,l), +(237,240,l), +(237,326,l), +(361,582,l), +(493,582,l), +(493,334,l), +(533,334,l), +(533,240,l), +(493,240,l), +(493,149,l), +(383,149,l) +); +}, +{ +closed = 1; +nodes = ( +(383,334,l), +(383,445,l), +(334,334,l) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,140,o), +(243,-10,o), +(467,-10,cs), +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,290,l), +(490,580,l), +(530,580,l), +(530,291,l), +(613,291,l), +(613,261,l), +(530,261,l), +(530,147,l), +(496,147,l), +(496,261,l), +(283,261,l) +); +}, +{ +closed = 1; +nodes = ( +(496,291,l), +(496,537,l), +(320,291,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,263,l), +(303,263,l), +(303,292,l), +(510,582,l), +(550,582,l), +(550,293,l), +(633,293,l), +(633,263,l), +(550,263,l), +(550,149,l), +(516,149,l) +); +}, +{ +closed = 1; +nodes = ( +(516,293,l), +(516,539,l), +(340,293,l) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(68,141,o), +(232,-9,o), +(456,-9,cs), +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,330,l), +(421,582,l), +(575,582,l), +(575,340,l), +(637,340,l), +(637,236,l), +(575,236,l), +(575,149,l), +(448,149,l), +(447,236,l), +(257,236,l) +); +}, +{ +closed = 1; +nodes = ( +(448,340,l), +(448,443,l), +(382,340,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(457,238,l), +(266,238,l), +(266,332,l), +(430,584,l), +(584,584,l), +(584,342,l), +(646,342,l), +(646,238,l), +(584,238,l), +(584,151,l), +(457,151,l) +); +}, +{ +closed = 1; +nodes = ( +(457,342,l), +(457,445,l), +(391,342,l) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(91,139,o), +(250,-10,o), +(473,-10,cs), +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,291,l), +(533,580,l), +(576,580,l), +(576,291,l), +(667,291,l), +(667,261,l), +(576,261,l), +(576,147,l), +(539,147,l), +(539,261,l), +(260,261,l) +); +}, +{ +closed = 1; +nodes = ( +(539,291,l), +(539,540,l), +(300,291,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(549,264,l), +(270,264,l), +(270,294,l), +(543,583,l), +(586,583,l), +(586,294,l), +(677,294,l), +(677,264,l), +(586,264,l), +(586,150,l), +(549,150,l) +); +}, +{ +closed = 1; +nodes = ( +(549,294,l), +(549,543,l), +(310,294,l) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(69,135,o), +(231,-11,o), +(459,-11,cs), +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,329,l), +(429,581,l), +(607,581,l), +(607,345,l), +(669,345,l), +(668,230,l), +(607,230,l), +(607,148,l), +(458,148,l), +(457,230,l), +(240,230,l) +); +}, +{ +closed = 1; +nodes = ( +(458,345,l), +(458,436,l), +(398,345,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(462,235,l), +(244,235,l), +(244,334,l), +(433,586,l), +(611,586,l), +(611,350,l), +(673,350,l), +(673,235,l), +(611,235,l), +(611,153,l), +(462,153,l) +); +}, +{ +closed = 1; +nodes = ( +(462,350,l), +(462,441,l), +(402,350,l) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 10105; +userData = { +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/four.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/four.circled.glyph new file mode 100644 index 00000000..ff0e660b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/four.circled.glyph @@ -0,0 +1,1446 @@ +{ +color = 0; +glyphname = four.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(398,150,l), +(398,264,l), +(441,264,l), +(441,290,l), +(398,290,l), +(398,583,l), +(359,583,l), +(219,288,l), +(219,264,l), +(369,264,l), +(369,150,l) +); +}, +{ +closed = 1; +nodes = ( +(369,548,l), +(369,290,l), +(248,290,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (228,188); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(451,150,l), +(451,241,l), +(490,241,l), +(491,335,l), +(451,335,l), +(451,583,l), +(319,583,l), +(195,327,l), +(195,241,l), +(341,241,l), +(341,150,l) +); +}, +{ +closed = 1; +nodes = ( +(341,446,l), +(341,335,l), +(292,335,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (194,189); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(545,147,l), +(545,261,l), +(636,261,l), +(636,291,l), +(545,291,l), +(545,580,l), +(502,580,l), +(229,291,l), +(229,261,l), +(508,261,l), +(508,147,l) +); +}, +{ +closed = 1; +nodes = ( +(508,540,l), +(508,291,l), +(269,291,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (222,190); +ref = fourinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(578,148,l), +(578,230,l), +(639,230,l), +(640,345,l), +(578,345,l), +(578,581,l), +(400,581,l), +(211,329,l), +(211,230,l), +(428,230,l), +(429,148,l) +); +}, +{ +closed = 1; +nodes = ( +(429,436,l), +(429,345,l), +(369,345,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (209,193); +ref = fourinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(398,150,l), +(398,264,l), +(441,264,l), +(441,290,l), +(398,290,l), +(398,583,l), +(359,583,l), +(219,288,l), +(219,264,l), +(369,264,l), +(369,150,l) +); +}, +{ +closed = 1; +nodes = ( +(369,548,l), +(369,290,l), +(248,290,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (216,188); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 658; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(451,150,l), +(451,241,l), +(490,241,l), +(491,335,l), +(451,335,l), +(451,583,l), +(319,583,l), +(195,327,l), +(195,241,l), +(341,241,l), +(341,150,l) +); +}, +{ +closed = 1; +nodes = ( +(341,446,l), +(341,335,l), +(292,335,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (191,189); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(498,147,l), +(498,261,l), +(581,261,l), +(581,291,l), +(498,291,l), +(498,580,l), +(458,580,l), +(251,290,l), +(251,261,l), +(464,261,l), +(464,147,l) +); +}, +{ +closed = 1; +nodes = ( +(464,537,l), +(464,291,l), +(288,291,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (243,189); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 831; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(547,149,l), +(547,236,l), +(609,236,l), +(609,340,l), +(547,340,l), +(547,582,l), +(393,582,l), +(229,330,l), +(229,236,l), +(420,236,l), +(420,149,l) +); +}, +{ +closed = 1; +nodes = ( +(420,443,l), +(420,340,l), +(354,340,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (214,191); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 825; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(545,147,l), +(545,261,l), +(636,261,l), +(636,291,l), +(545,291,l), +(545,580,l), +(502,580,l), +(229,291,l), +(229,261,l), +(508,261,l), +(508,147,l) +); +}, +{ +closed = 1; +nodes = ( +(508,540,l), +(508,291,l), +(269,291,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (221,190); +ref = fourinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(578,148,l), +(578,230,l), +(639,230,l), +(640,345,l), +(578,345,l), +(578,581,l), +(400,581,l), +(211,329,l), +(211,230,l), +(428,230,l), +(429,148,l) +); +}, +{ +closed = 1; +nodes = ( +(429,436,l), +(429,345,l), +(369,345,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (204,193); +ref = fourinferior; +} +); +width = 840; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(498,147,l), +(498,261,l), +(581,261,l), +(581,291,l), +(498,291,l), +(498,580,l), +(458,580,l), +(251,290,l), +(251,261,l), +(464,261,l), +(464,147,l) +); +}, +{ +closed = 1; +nodes = ( +(464,537,l), +(464,291,l), +(288,291,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (234,189); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(547,149,l), +(547,236,l), +(609,236,l), +(609,340,l), +(547,340,l), +(547,582,l), +(393,582,l), +(229,330,l), +(229,236,l), +(420,236,l), +(420,149,l) +); +}, +{ +closed = 1; +nodes = ( +(420,443,l), +(420,340,l), +(354,340,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (216,191); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,150,l), +(435,264,l), +(478,264,l), +(478,290,l), +(435,290,l), +(435,583,l), +(396,583,l), +(256,288,l), +(256,264,l), +(406,264,l), +(406,150,l) +); +}, +{ +closed = 1; +nodes = ( +(406,548,l), +(406,290,l), +(285,290,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (265,188); +ref = fourinferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(483,150,l), +(483,241,l), +(522,241,l), +(523,335,l), +(483,335,l), +(483,583,l), +(351,583,l), +(227,327,l), +(227,241,l), +(373,241,l), +(373,150,l) +); +}, +{ +closed = 1; +nodes = ( +(373,446,l), +(373,335,l), +(324,335,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (226,189); +ref = fourinferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(530,147,l), +(530,261,l), +(613,261,l), +(613,291,l), +(530,291,l), +(530,580,l), +(490,580,l), +(283,290,l), +(283,261,l), +(496,261,l), +(496,147,l) +); +}, +{ +closed = 1; +nodes = ( +(496,537,l), +(496,291,l), +(320,291,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = master01; +pos = (305,186); +ref = fourinferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(575,149,l), +(575,236,l), +(637,236,l), +(637,340,l), +(575,340,l), +(575,582,l), +(421,582,l), +(257,330,l), +(257,236,l), +(447,236,l), +(448,149,l) +); +}, +{ +closed = 1; +nodes = ( +(448,443,l), +(448,340,l), +(382,340,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (281,188); +ref = fourinferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(576,147,l), +(576,261,l), +(667,261,l), +(667,291,l), +(576,291,l), +(576,580,l), +(533,580,l), +(260,291,l), +(260,261,l), +(539,261,l), +(539,147,l) +); +}, +{ +closed = 1; +nodes = ( +(539,540,l), +(539,291,l), +(300,291,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (253,190); +ref = fourinferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(607,148,l), +(607,230,l), +(668,230,l), +(669,345,l), +(607,345,l), +(607,581,l), +(429,581,l), +(240,329,l), +(240,230,l), +(457,230,l), +(458,148,l) +); +}, +{ +closed = 1; +nodes = ( +(458,436,l), +(458,345,l), +(398,345,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (238,193); +ref = fourinferior; +} +); +width = 880; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9315; +userData = { +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/four.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/four.dnom.glyph new file mode 100644 index 00000000..ac8c2086 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/four.dnom.glyph @@ -0,0 +1,644 @@ +{ +glyphname = four.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,0,l), +(238,375,l), +(118,375,l), +(11,156,l), +(11,77,l), +(272,77,l), +(272,163,l), +(99,163,l), +(171,323,l), +(138,330,l), +(138,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 283; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,0,l), +(176,397,l), +(140,397,l), +(12,126,l), +(12,104,l), +(215,104,l), +(215,129,l), +(38,129,l), +(155,377,l), +(149,378,l), +(149,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 242; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,0,l), +(308,397,l), +(268,397,l), +(18,132,l), +(18,104,l), +(391,104,l), +(391,133,l), +(56,133,l), +(285,371,l), +(273,376,l), +(273,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 408; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,0,l), +(334,375,l), +(183,375,l), +(7,156,l), +(7,72,l), +(392,72,l), +(392,170,l), +(141,170,l), +(269,329,l), +(207,351,l), +(207,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 400; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,0,l), +(166,397,l), +(130,397,l), +(2,126,l), +(2,104,l), +(205,104,l), +(205,129,l), +(28,129,l), +(145,377,l), +(139,378,l), +(139,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 212; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,0,l), +(231,375,l), +(111,375,l), +(4,156,l), +(4,77,l), +(265,77,l), +(265,163,l), +(92,163,l), +(164,323,l), +(131,330,l), +(131,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 269; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(235,397,l), +(198,397,l), +(8,131,l), +(8,105,l), +(310,105,l), +(310,132,l), +(42,132,l), +(212,371,l), +(203,374,l), +(203,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 316; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,0,l), +(289,375,l), +(152,375,l), +(4,158,l), +(4,75,l), +(345,75,l), +(345,167,l), +(114,167,l), +(227,321,l), +(176,338,l), +(176,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 348; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,0,l), +(298,397,l), +(258,397,l), +(8,132,l), +(8,104,l), +(381,104,l), +(381,133,l), +(46,133,l), +(275,371,l), +(263,376,l), +(263,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 388; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,0,l), +(329,375,l), +(178,375,l), +(2,156,l), +(2,72,l), +(387,72,l), +(387,170,l), +(136,170,l), +(264,329,l), +(202,351,l), +(202,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 390; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(257,0,l), +(257,397,l), +(222,397,l), +(36,131,l), +(36,105,l), +(332,105,l), +(332,132,l), +(68,132,l), +(236,371,l), +(227,374,l), +(227,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 363; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(295,375,l), +(159,375,l), +(20,158,l), +(20,75,l), +(347,75,l), +(347,167,l), +(129,167,l), +(234,321,l), +(183,338,l), +(183,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 365; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,l), +(205,397,l), +(169,397,l), +(-15,126,l), +(-19,104,l), +(182,104,l), +(187,129,l), +(12,129,l), +(179,376,l), +(175,378,l), +(94,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 241; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,0,l), +(258,375,l), +(139,375,l), +(-13,156,l), +(-29,77,l), +(229,77,l), +(248,163,l), +(76,163,l), +(177,317,l), +(150,328,l), +(80,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 281; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,0,l), +(290,397,l), +(255,397,l), +(7,131,l), +(2,105,l), +(303,105,l), +(309,132,l), +(42,132,l), +(261,364,l), +(253,368,l), +(176,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 365; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,l), +(327,375,l), +(190,375,l), +(-3,158,l), +(-20,75,l), +(321,75,l), +(340,167,l), +(109,167,l), +(248,316,l), +(207,337,l), +(136,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 382; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,0,l), +(320,397,l), +(280,397,l), +(-7,132,l), +(-13,104,l), +(336,104,l), +(342,133,l), +(33,133,l), +(289,368,l), +(280,373,l), +(203,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 385; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,0,l), +(354,375,l), +(205,375,l), +(-16,156,l), +(-34,72,l), +(335,72,l), +(356,170,l), +(118,170,l), +(274,322,l), +(223,350,l), +(150,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 391; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/four.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/four.glyph new file mode 100644 index 00000000..1bc93f88 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/four.glyph @@ -0,0 +1,547 @@ +{ +glyphname = four; +kernLeft = KO_four; +kernRight = KO_four; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,0,l), +(442,730,l), +(224,730,l), +(13,297,l), +(13,154,l), +(509,154,l), +(509,311,l), +(173,311,l), +(280,550,l), +(260,550,l), +(260,0,l) +); +} +); +width = 522; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(293,0,l), +(293,730,l), +(246,730,l), +(7,224,l), +(7,197,l), +(366,197,l), +(366,227,l), +(41,227,l), +(261,697,l), +(260,697,l), +(260,0,l) +); +} +); +width = 370; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(541,0,l), +(541,730,l), +(499,730,l), +(19,235,l), +(19,199,l), +(701,199,l), +(701,232,l), +(66,232,l), +(505,685,l), +(503,685,l), +(503,0,l) +); +} +); +width = 719; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(613,0,l), +(613,730,l), +(344,730,l), +(5,297,l), +(5,146,l), +(724,146,l), +(724,320,l), +(244,320,l), +(388,513,l), +(387,513,l), +(387,0,l) +); +} +); +width = 730; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(278,729,l), +(235,729,l), +(0,213,l), +(0,187,l), +(350,187,l), +(350,216,l), +(33,216,l), +(250,696,l), +(246,696,l), +(246,0,l) +); +} +); +width = 346; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,0,l), +(423,729,l), +(207,729,l), +(4,286,l), +(4,145,l), +(489,145,l), +(489,300,l), +(162,300,l), +(263,551,l), +(243,551,l), +(243,0,l) +); +} +); +width = 493; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,0,l), +(405,729,l), +(363,729,l), +(8,226,l), +(8,192,l), +(547,192,l), +(547,225,l), +(51,225,l), +(378,693,l), +(368,693,l), +(368,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 553; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(517,0,l), +(517,729,l), +(286,729,l), +(3,293,l), +(3,152,l), +(625,152,l), +(625,307,l), +(190,307,l), +(377,597,l), +(326,597,l), +(326,0,l) +); +} +); +width = 628; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(524,0,l), +(524,729,l), +(483,729,l), +(9,232,l), +(9,197,l), +(682,197,l), +(682,229,l), +(55,229,l), +(489,685,l), +(487,685,l), +(487,0,l) +); +} +); +width = 690; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(600,0,l), +(600,729,l), +(335,729,l), +(0,293,l), +(0,144,l), +(710,144,l), +(710,316,l), +(236,316,l), +(378,515,l), +(377,515,l), +(377,0,l) +); +} +); +width = 711; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(434,0,l), +(434,730,l), +(392,730,l), +(47,223,l), +(47,188,l), +(570,188,l), +(570,222,l), +(88,222,l), +(406,694,l), +(397,694,l), +(397,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 610; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(524,0,l), +(524,730,l), +(292,730,l), +(19,287,l), +(19,144,l), +(628,144,l), +(628,301,l), +(207,301,l), +(373,596,l), +(322,596,l), +(322,0,l) +); +} +); +width = 645; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,l), +(374,730,l), +(328,730,l), +(0,224,l), +(-5,197,l), +(349,197,l), +(355,227,l), +(36,227,l), +(334,690,l), +(333,690,l), +(188,0,l) +); +} +); +width = 366; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(535,730,l), +(318,730,l), +(18,297,l), +(-11,154,l), +(479,154,l), +(513,311,l), +(180,311,l), +(308,506,l), +(307,506,l), +(200,0,l) +); +} +); +width = 517; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(382,0,l), +(534,730,l), +(494,730,l), +(27,233,l), +(20,198,l), +(564,198,l), +(571,232,l), +(71,232,l), +(486,670,l), +(484,670,l), +(345,0,l) +); +} +); +width = 609; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(471,0,l), +(502,152,l), +(588,152,l), +(621,307,l), +(535,307,l), +(621,721,l), +(395,721,l), +(32,293,l), +(2,152,l), +(313,152,l), +(282,0,l) +); +}, +{ +closed = 1; +nodes = ( +(389,512,l), +(345,307,l), +(219,307,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(635,730,l), +(401,730,l), +(24,297,l), +(-5,154,l), +(624,154,l), +(657,311,l), +(217,311,l), +(398,520,l), +(397,520,l), +(290,0,l) +); +} +); +width = 670; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,0,l), +(601,730,l), +(561,730,l), +(14,235,l), +(7,199,l), +(641,199,l), +(648,232,l), +(63,232,l), +(556,679,l), +(554,679,l), +(413,0,l) +); +} +); +width = 672; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(547,0,l), +(701,730,l), +(435,730,l), +(9,297,l), +(-22,146,l), +(686,146,l), +(724,320,l), +(249,320,l), +(465,547,l), +(438,547,l), +(324,0,l) +); +} +); +width = 721; +} +); +unicode = 52; +userData = { +KernOnName = four; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/four.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/four.numr.glyph new file mode 100644 index 00000000..c0ac7244 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/four.numr.glyph @@ -0,0 +1,439 @@ +{ +color = 6; +glyphname = four.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 283; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 242; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 408; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 400; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +pos = (0,333); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 212; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 269; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +pos = (0,332); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = four.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = four.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 316; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = four.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = four.dnom; +}; +width = 360; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 408; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +pos = (0,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 390; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = four.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = four.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 363; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = four.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = four.dnom; +}; +width = 365; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 241; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 281; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 365; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 382; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 385; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 391; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/four.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/four.tf.glyph new file mode 100644 index 00000000..83679357 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/four.tf.glyph @@ -0,0 +1,629 @@ +{ +glyphname = four.tf; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,0,l), +(416,721,l), +(203,721,l), +(0,293,l), +(0,152,l), +(481,152,l), +(481,307,l), +(156,307,l), +(240,500,l), +(239,500,l), +(239,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(346,0,l), +(346,721,l), +(300,721,l), +(65,221,l), +(65,195,l), +(418,195,l), +(418,224,l), +(98,224,l), +(315,688,l), +(314,688,l), +(314,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,0,l), +(531,721,l), +(489,721,l), +(40,232,l), +(40,197,l), +(681,197,l), +(681,229,l), +(82,229,l), +(496,680,l), +(494,680,l), +(494,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(595,0,l), +(595,721,l), +(335,721,l), +(23,293,l), +(23,144,l), +(697,144,l), +(697,316,l), +(254,316,l), +(377,507,l), +(376,507,l), +(376,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,0,l), +(326,721,l), +(280,721,l), +(45,221,l), +(45,195,l), +(398,195,l), +(398,224,l), +(78,224,l), +(295,688,l), +(294,688,l), +(294,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(411,0,l), +(411,721,l), +(198,721,l), +(-5,293,l), +(-5,152,l), +(476,152,l), +(476,307,l), +(151,307,l), +(235,500,l), +(234,500,l), +(234,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 470; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(404,0,l), +(404,721,l), +(362,721,l), +(7,230,l), +(7,196,l), +(546,196,l), +(546,229,l), +(50,229,l), +(377,685,l), +(367,688,l), +(367,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +19, +19 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 550; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(483,721,l), +(256,721,l), +(-3,293,l), +(-3,152,l), +(581,152,l), +(581,307,l), +(180,307,l), +(341,592,l), +(296,604,l), +(296,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 576; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,0,l), +(521,721,l), +(479,721,l), +(30,232,l), +(30,197,l), +(671,197,l), +(671,229,l), +(72,229,l), +(486,680,l), +(484,680,l), +(484,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(585,0,l), +(585,721,l), +(325,721,l), +(13,293,l), +(13,144,l), +(687,144,l), +(687,316,l), +(244,316,l), +(367,507,l), +(366,507,l), +(366,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(424,0,l), +(424,721,l), +(382,721,l), +(35,230,l), +(35,196,l), +(562,196,l), +(562,229,l), +(76,229,l), +(397,685,l), +(387,688,l), +(387,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +19, +19 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,0,l), +(482,721,l), +(257,721,l), +(8,293,l), +(8,152,l), +(576,152,l), +(576,307,l), +(189,307,l), +(342,592,l), +(297,604,l), +(297,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,0,l), +(441,721,l), +(396,721,l), +(58,221,l), +(53,195,l), +(402,195,l), +(408,224,l), +(91,224,l), +(404,688,l), +(403,688,l), +(258,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,0,l), +(509,721,l), +(297,721,l), +(5,293,l), +(-25,152,l), +(453,152,l), +(487,307,l), +(164,307,l), +(286,500,l), +(285,500,l), +(180,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(376,0,l), +(526,721,l), +(487,721,l), +(27,230,l), +(20,196,l), +(555,196,l), +(562,229,l), +(70,229,l), +(479,662,l), +(477,662,l), +(340,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 85; +}; +}; +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,0,l), +(589,721,l), +(360,721,l), +(10,293,l), +(-20,152,l), +(569,152,l), +(602,307,l), +(198,307,l), +(356,514,l), +(355,514,l), +(249,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,0,l), +(619,721,l), +(578,721,l), +(48,232,l), +(41,197,l), +(654,197,l), +(661,229,l), +(93,229,l), +(574,675,l), +(572,675,l), +(432,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(552,0,l), +(704,721,l), +(442,721,l), +(26,293,l), +(-5,144,l), +(668,144,l), +(705,316,l), +(263,316,l), +(440,507,l), +(438,507,l), +(332,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 80; +monoWidth = 700; +}; +}; +width = 720; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/fourinferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/fourinferior.glyph new file mode 100644 index 00000000..b909f6ac --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/fourinferior.glyph @@ -0,0 +1,761 @@ +{ +glyphname = fourinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (159,177); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(267,-40,l), +(267,393,l), +(135,393,l), +(11,137,l), +(11,51,l), +(307,51,l), +(307,145,l), +(108,145,l), +(158,258,l), +(157,258,l), +(157,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 318; +}, +{ +anchors = ( +{ +name = _center; +pos = (121,177); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(189,-40,l), +(189,393,l), +(150,393,l), +(10,98,l), +(10,74,l), +(232,74,l), +(232,100,l), +(39,100,l), +(161,360,l), +(160,360,l), +(160,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 255; +}, +{ +anchors = ( +{ +name = _center; +pos = (220.5,173); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(333,-40,l), +(333,393,l), +(290,393,l), +(17,104,l), +(17,74,l), +(424,74,l), +(424,104,l), +(57,104,l), +(298,355,l), +(296,355,l), +(296,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 441; +}, +{ +anchors = ( +{ +name = _center; +pos = (221,171); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-40,l), +(373,393,l), +(195,393,l), +(6,141,l), +(6,42,l), +(435,42,l), +(435,157,l), +(164,157,l), +(225,250,l), +(224,250,l), +(224,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 442; +}, +{ +anchors = ( +{ +name = _center; +pos = (113,177); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,-40,l), +(181,393,l), +(142,393,l), +(2,98,l), +(2,74,l), +(224,74,l), +(224,100,l), +(31,100,l), +(153,360,l), +(152,360,l), +(152,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 227; +}, +{ +anchors = ( +{ +name = _center; +pos = (152,177); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,-40,l), +(260,393,l), +(128,393,l), +(4,137,l), +(4,51,l), +(300,51,l), +(300,145,l), +(101,145,l), +(151,258,l), +(150,258,l), +(150,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 304; +}, +{ +anchors = ( +{ +name = _center; +pos = (172,174); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,-40,l), +(254,393,l), +(214,393,l), +(7,103,l), +(7,74,l), +(337,74,l), +(337,104,l), +(44,104,l), +(230,364,l), +(220,367,l), +(220,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 342; +}, +{ +anchors = ( +{ +name = _center; +pos = (193,174); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(321,-40,l), +(321,393,l), +(167,393,l), +(3,141,l), +(3,47,l), +(383,47,l), +(383,151,l), +(128,151,l), +(244,332,l), +(194,346,l), +(194,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 385; +}, +{ +anchors = ( +{ +name = _center; +pos = (211,173); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-40,l), +(323,393,l), +(280,393,l), +(7,104,l), +(7,74,l), +(414,74,l), +(414,104,l), +(47,104,l), +(288,355,l), +(286,355,l), +(286,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 421; +}, +{ +anchors = ( +{ +name = _center; +pos = (216,171); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,-40,l), +(368,393,l), +(190,393,l), +(1,141,l), +(1,42,l), +(430,42,l), +(430,157,l), +(159,157,l), +(220,250,l), +(219,250,l), +(219,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 432; +}, +{ +anchors = ( +{ +name = _center; +pos = (196,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(276,-40,l), +(276,393,l), +(238,393,l), +(35,103,l), +(35,74,l), +(357,74,l), +(357,104,l), +(70,104,l), +(252,364,l), +(244,367,l), +(244,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 389; +}, +{ +anchors = ( +{ +name = _center; +pos = (202,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(327,-40,l), +(327,393,l), +(174,393,l), +(19,141,l), +(19,47,l), +(385,47,l), +(385,151,l), +(143,151,l), +(250,332,l), +(201,346,l), +(201,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 402; +}, +{ +anchors = ( +{ +name = _center; +pos = (94,177); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,-40,l), +(216,393,l), +(177,393,l), +(-23,98,l), +(-28,74,l), +(192,74,l), +(197,100,l), +(6,100,l), +(181,360,l), +(180,360,l), +(96,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 254; +}, +{ +anchors = ( +{ +name = _center; +pos = (129,177); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,-40,l), +(292,393,l), +(161,393,l), +(-16,137,l), +(-34,51,l), +(258,51,l), +(279,145,l), +(82,145,l), +(155,258,l), +(154,258,l), +(91,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 315; +}, +{ +anchors = ( +{ +name = _center; +pos = (162,177); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,-40,l), +(308,393,l), +(270,393,l), +(0,103,l), +(-6,74,l), +(323,74,l), +(329,104,l), +(37,104,l), +(266,346,l), +(264,346,l), +(184,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 391; +}, +{ +anchors = ( +{ +name = _center; +pos = (175,177); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,-40,l), +(364,393,l), +(209,393,l), +(-7,141,l), +(-26,47,l), +(354,47,l), +(376,151,l), +(120,151,l), +(208,257,l), +(207,257,l), +(146,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 420; +}, +{ +anchors = ( +{ +name = _center; +pos = (172,177); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,-40,l), +(341,393,l), +(300,393,l), +(-15,104,l), +(-21,74,l), +(359,74,l), +(365,104,l), +(27,104,l), +(298,353,l), +(296,353,l), +(215,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 414; +}, +{ +anchors = ( +{ +name = _center; +pos = (178,177); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,-40,l), +(397,393,l), +(221,393,l), +(-21,141,l), +(-42,42,l), +(371,42,l), +(395,157,l), +(137,157,l), +(220,251,l), +(219,251,l), +(158,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 432; +} +); +unicode = 8324; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/foursuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/foursuperior.glyph new file mode 100644 index 00000000..47725792 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/foursuperior.glyph @@ -0,0 +1,441 @@ +{ +color = 6; +glyphname = foursuperior; +kernLeft = KO_foursuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 318; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 255; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 441; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 442; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 227; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 304; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fourinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fourinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 342; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fourinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fourinferior; +}; +width = 397; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 441; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 432; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fourinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fourinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 389; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fourinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fourinferior; +}; +width = 402; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 254; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 315; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 391; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 420; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 414; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 432; +} +); +unicode = 8308; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/fraction.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/fraction.glyph new file mode 100644 index 00000000..60b38159 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/fraction.glyph @@ -0,0 +1,284 @@ +{ +glyphname = fraction; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(-59,0,l), +(301,729,l), +(188,729,l), +(-172,0,l) +); +} +); +width = 129; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(-137,0,l), +(222,729,l), +(193,729,l), +(-166,0,l) +); +} +); +width = 57; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(-223,0,l), +(365,729,l), +(324,729,l), +(-264,0,l) +); +} +); +width = 101; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(-152,0,l), +(437,729,l), +(286,729,l), +(-301,0,l) +); +} +); +width = 136; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(-145,0,l), +(214,729,l), +(185,729,l), +(-174,0,l) +); +} +); +width = 40; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(-64,0,l), +(296,729,l), +(183,729,l), +(-177,0,l) +); +} +); +width = 119; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(-191,0,l), +(311,729,l), +(273,729,l), +(-229,0,l) +); +} +); +width = 83; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(-115,0,l), +(387,729,l), +(248,729,l), +(-254,0,l) +); +} +); +width = 133; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(-229,0,l), +(360,729,l), +(319,729,l), +(-269,0,l) +); +} +); +width = 91; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(-157,0,l), +(432,729,l), +(281,729,l), +(-306,0,l) +); +} +); +width = 125; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(-167,0,l), +(326,729,l), +(287,729,l), +(-204,0,l) +); +} +); +width = 120; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(-103,0,l), +(384,729,l), +(247,729,l), +(-241,0,l) +); +} +); +width = 144; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-198,0,l), +(337,729,l), +(303,729,l), +(-232,0,l) +); +} +); +width = 62; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(-97,0,l), +(392,729,l), +(271,729,l), +(-218,0,l) +); +} +); +width = 137; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-214,0,l), +(418,729,l), +(376,729,l), +(-255,0,l) +); +} +); +width = 120; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(-138,0,l), +(495,729,l), +(343,729,l), +(-288,0,l) +); +} +); +width = 169; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-264,0,l), +(454,729,l), +(410,729,l), +(-307,0,l) +); +} +); +width = 104; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(-184,0,l), +(534,729,l), +(369,729,l), +(-348,0,l) +); +} +); +width = 149; +} +); +metricRight = "=|"; +unicode = 8260; +userData = { +KernOnName = fraction; +KernOnSpecialSpacing = { +L = fraction; +R = fraction; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/g.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/g.glyph new file mode 100644 index 00000000..ffe5783c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/g.glyph @@ -0,0 +1,2281 @@ +{ +glyphname = g; +kernLeft = KO_g; +kernRight = KO_a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (232,-167); +}, +{ +name = top; +pos = (232,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(39,0,l), +(47,-107,o), +(151,-177,o), +(311,-177,cs), +(485,-177,o), +(602,-93,o), +(602,57,cs), +(602,544,l), +(439,544,l), +(427,443,l), +(417,443,l), +(384,521,o), +(320,554,o), +(243,554,cs), +(106,554,o), +(23,447,o), +(23,293,cs), +(23,133,o), +(111,31,o), +(242,31,cs), +(319,31,o), +(375,69,o), +(402,125,c), +(412,125,l), +(412,32,ls), +(412,-14,o), +(374,-44,o), +(311,-44,cs), +(267,-44,o), +(236,-26,o), +(228,0,c) +); +}, +{ +closed = 1; +nodes = ( +(251,177,o), +(216,226,o), +(216,286,cs), +(216,345,o), +(251,395,o), +(316,395,cs), +(375,395,o), +(412,352,o), +(412,297,cs), +(412,275,ls), +(412,227,o), +(376,177,o), +(315,177,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(377,-177,o), +(440,-125,o), +(440,39,cs), +(440,541,l), +(269,541,l), +(264,480,l), +(257,480,l), +(241,526,o), +(207,551,o), +(156,551,cs), +(73,551,o), +(15,494,o), +(15,292,cs), +(15,135,o), +(45,31,o), +(156,31,cs), +(196,31,o), +(237,50,o), +(257,104,c), +(264,104,l), +(264,7,ls), +(264,-33,o), +(257,-61,o), +(232,-61,cs), +(214,-61,o), +(200,-47,o), +(200,-5,c), +(38,-5,l), +(37,-113,o), +(105,-177,o), +(218,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(203,159,o), +(193,191,o), +(193,292,cs), +(193,375,o), +(198,422,o), +(229,422,cs), +(252,422,o), +(264,394,o), +(264,305,cs), +(264,277,ls), +(264,201,o), +(256,159,o), +(229,159,cs) +); +} +); +width = 467; +}, +{ +anchors = ( +{ +name = bottom; +pos = (173,-167); +}, +{ +name = top; +pos = (173,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,-177,o), +(281,-137,o), +(281,10,cs), +(281,516,l), +(253,516,l), +(252,439,l), +(250,439,l), +(234,491,o), +(208,526,o), +(156,526,cs), +(87,526,o), +(42,461,o), +(42,267,cs), +(42,69,o), +(89,9,o), +(156,9,cs), +(210,9,o), +(235,46,o), +(250,96,c), +(252,96,l), +(252,15,ls), +(252,-80,o), +(234,-150,o), +(167,-150,cs), +(128,-150,o), +(94,-135,o), +(87,-52,c), +(59,-52,l), +(66,-127,o), +(94,-177,o), +(168,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,35,o), +(72,123,o), +(72,267,cs), +(72,414,o), +(91,499,o), +(164,499,cs), +(217,499,o), +(252,436,o), +(252,319,cs), +(252,216,ls), +(252,96,o), +(216,35,o), +(164,35,cs) +); +} +); +width = 341; +}, +{ +anchors = ( +{ +name = bottom; +pos = (307,-167); +}, +{ +name = top; +pos = (307,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-177,o), +(557,-105,o), +(557,32,cs), +(557,517,l), +(520,517,l), +(520,399,l), +(515,399,l), +(478,475,o), +(401,526,o), +(293,526,cs), +(141,526,o), +(33,426,o), +(33,277,cs), +(33,128,o), +(128,28,o), +(287,28,cs), +(392,28,o), +(483,78,o), +(515,153,c), +(520,153,l), +(520,34,ls), +(520,-91,o), +(433,-143,o), +(297,-143,cs), +(186,-143,o), +(106,-103,o), +(92,-20,c), +(56,-20,l), +(67,-119,o), +(161,-177,o), +(297,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,61,o), +(71,140,o), +(71,277,cs), +(71,406,o), +(159,492,o), +(294,492,cs), +(431,492,o), +(520,409,o), +(520,292,cs), +(520,245,ls), +(520,138,o), +(429,61,o), +(291,61,cs) +); +} +); +width = 623; +}, +{ +anchors = ( +{ +name = bottom; +pos = (346,-167); +}, +{ +name = top; +pos = (346,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(481,-177,o), +(659,-127,o), +(659,95,cs), +(659,544,l), +(452,544,l), +(442,478,l), +(433,478,l), +(404,526,o), +(336,554,o), +(256,554,cs), +(111,554,o), +(11,451,o), +(11,296,cs), +(11,139,o), +(110,37,o), +(256,37,cs), +(328,37,o), +(399,62,o), +(431,116,c), +(439,116,l), +(439,51,ls), +(439,-9,o), +(392,-35,o), +(319,-35,cs), +(277,-35,o), +(245,-24,o), +(238,1,c), +(28,1,l), +(35,-102,o), +(133,-177,o), +(312,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,196,o), +(233,234,o), +(233,296,cs), +(233,359,o), +(274,398,o), +(338,398,cs), +(400,398,o), +(439,359,o), +(439,304,cs), +(439,291,ls), +(439,235,o), +(400,196,o), +(337,196,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(552,-177,o), +(659,-86,o), +(659,75,cs), +(659,544,l), +(452,544,l), +(442,478,l), +(433,478,l), +(404,526,o), +(335,554,o), +(258,554,cs), +(110,554,o), +(11,451,o), +(11,295,cs), +(11,139,o), +(110,37,o), +(256,37,cs), +(328,37,o), +(399,62,o), +(431,116,c), +(439,116,l), +(439,45,ls), +(439,-14,o), +(394,-35,o), +(327,-35,cs), +(274,-35,o), +(245,-22,o), +(238,1,c), +(28,1,l), +(38,-106,o), +(134,-177,o), +(324,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,196,o), +(233,234,o), +(233,296,cs), +(233,359,o), +(274,398,o), +(338,398,cs), +(400,398,o), +(439,359,o), +(439,304,cs), +(439,291,ls), +(439,235,o), +(400,196,o), +(337,196,cs) +); +} +); +width = 701; +}, +{ +anchors = ( +{ +name = bottom; +pos = (167,-167); +}, +{ +name = top; +pos = (167,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,-173,o), +(276,-116,o), +(276,10,cs), +(276,516,l), +(247,516,l), +(246,439,l), +(245,439,l), +(228,491,o), +(199,526,o), +(143,526,cs), +(61,526,o), +(23,442,o), +(23,265,cs), +(24,88,o), +(62,5,o), +(142,5,cs), +(201,5,o), +(229,42,o), +(245,92,c), +(246,92,l), +(246,11,ls), +(246,-96,o), +(221,-146,o), +(154,-146,cs), +(99,-146,o), +(69,-113,o), +(64,-42,c), +(33,-42,l), +(40,-123,o), +(71,-173,o), +(155,-173,cs) +); +}, +{ +closed = 1; +nodes = ( +(83,32,o), +(54,105,o), +(54,265,cs), +(54,426,o), +(83,499,o), +(151,499,cs), +(208,499,o), +(246,436,o), +(246,319,cs), +(246,212,ls), +(246,93,o), +(207,32,o), +(151,32,cs) +); +} +); +width = 311; +}, +{ +anchors = ( +{ +name = bottom; +pos = (227,-167); +}, +{ +name = top; +pos = (227,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(51,-107,o), +(155,-177,o), +(315,-177,cs), +(489,-177,o), +(606,-93,o), +(606,57,cs), +(606,544,l), +(443,544,l), +(431,443,l), +(421,443,l), +(388,521,o), +(324,554,o), +(247,554,cs), +(110,554,o), +(27,447,o), +(27,293,cs), +(27,133,o), +(115,31,o), +(246,31,cs), +(323,31,o), +(379,69,o), +(406,125,c), +(416,125,l), +(416,32,ls), +(416,-14,o), +(378,-44,o), +(315,-44,cs), +(271,-44,o), +(240,-26,o), +(232,0,c) +); +}, +{ +closed = 1; +nodes = ( +(255,177,o), +(220,226,o), +(220,286,cs), +(220,345,o), +(255,395,o), +(320,395,cs), +(379,395,o), +(416,352,o), +(416,297,cs), +(416,275,ls), +(416,227,o), +(380,177,o), +(319,177,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,-179,o), +(435,-127,o), +(435,37,cs), +(435,541,l), +(264,541,l), +(258,467,l), +(257,467,l), +(236,526,o), +(201,551,o), +(149,551,cs), +(65,551,o), +(6,494,o), +(6,282,cs), +(6,115,o), +(36,11,o), +(149,11,cs), +(190,11,o), +(232,30,o), +(258,97,c), +(259,97,l), +(259,5,ls), +(259,-26,o), +(252,-47,o), +(226,-47,cs), +(209,-47,o), +(194,-38,o), +(191,-12,c), +(26,-12,l), +(28,-120,o), +(98,-179,o), +(223,-179,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,147,o), +(184,177,o), +(184,282,cs), +(184,370,o), +(189,415,o), +(222,415,cs), +(246,415,o), +(259,389,o), +(259,295,cs), +(259,267,ls), +(259,186,o), +(250,147,o), +(222,147,cs) +); +} +); +width = 451; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,-167); +}, +{ +name = top; +pos = (284,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(414,-177,o), +(505,-120,o), +(505,25,cs), +(505,517,l), +(471,517,l), +(468,339,l), +(468,31,ls), +(468,-103,o), +(393,-144,o), +(285,-144,cs), +(199,-144,o), +(140,-106,o), +(128,-43,c), +(92,-43,l), +(106,-128,o), +(180,-177,o), +(285,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,13,o), +(440,63,o), +(466,137,c), +(484,137,l), +(484,237,l), +(468,237,l), +(468,139,o), +(400,47,o), +(286,47,cs), +(178,47,o), +(106,130,o), +(106,270,cs), +(106,412,o), +(178,494,o), +(286,494,cs), +(401,494,o), +(468,402,o), +(468,305,c), +(484,305,l), +(484,404,l), +(466,404,l), +(440,478,o), +(371,527,o), +(277,527,cs), +(153,527,o), +(68,430,o), +(68,270,cs), +(68,112,o), +(153,13,o), +(277,13,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,-177,o), +(485,-112,o), +(485,25,cs), +(485,517,l), +(451,517,l), +(449,400,l), +(448,400,l), +(418,480,o), +(343,527,o), +(248,527,cs), +(118,527,o), +(30,430,o), +(30,265,cs), +(30,102,o), +(118,2,o), +(248,2,cs), +(343,2,o), +(418,49,o), +(447,128,c), +(448,128,l), +(448,25,ls), +(448,-95,o), +(389,-144,o), +(270,-144,cs), +(162,-144,o), +(99,-110,o), +(81,-33,c), +(42,-33,l), +(62,-132,o), +(138,-177,o), +(270,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,36,o), +(68,120,o), +(68,265,cs), +(68,412,o), +(143,494,o), +(257,494,cs), +(378,494,o), +(448,392,o), +(448,295,cs), +(448,236,ls), +(448,138,o), +(377,36,o), +(257,36,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +12 +); +stem = -2; +target = ( +0, +51 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +0, +24 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +44 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +48 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +9 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +41 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +} +); +}; +width = 544; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,-154); +}, +{ +name = top; +pos = (317,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-305,-177,o), +(-190,-113,o), +(-190,80,cs), +(-190,544,l), +(-375,544,l), +(-381,469,l), +(-391,469,l), +(-413,520,o), +(-470,554,o), +(-541,554,cs), +(-667,554,o), +(-751,471,o), +(-751,294,cs), +(-751,117,o), +(-667,34,o), +(-541,34,cs), +(-470,34,o), +(-413,68,o), +(-391,119,c), +(-381,119,l), +(-381,40,ls), +(-381,-10,o), +(-400,-44,o), +(-476,-44,cs), +(-518,-44,o), +(-545,-27,o), +(-549,-2,c), +(-733,-2,l), +(-727,-107,o), +(-637,-177,o), +(-481,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(-521,178,o), +(-556,211,o), +(-556,294,cs), +(-556,377,o), +(-521,410,o), +(-468,410,cs), +(-411,410,o), +(-386,371,o), +(-382,327,c), +(-381,263,l), +(-385,218,o), +(-410,178,o), +(-468,178,cs) +); +}, +{ +closed = 1; +nodes = ( +(493,-177,o), +(609,-111,o), +(609,58,cs), +(609,544,l), +(425,544,l), +(421,478,l), +(410,478,l), +(390,523,o), +(331,554,o), +(260,554,cs), +(130,554,o), +(45,459,o), +(45,297,cs), +(45,133,o), +(130,38,o), +(260,38,cs), +(334,38,o), +(392,72,o), +(410,114,c), +(418,114,l), +(418,30,ls), +(418,-25,o), +(379,-44,o), +(324,-44,cs), +(282,-44,o), +(255,-27,o), +(251,-2,c), +(67,-2,l), +(76,-107,o), +(177,-177,o), +(324,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(263,178,o), +(240,229,o), +(240,297,cs), +(240,363,o), +(266,414,o), +(336,414,cs), +(385,414,o), +(418,382,o), +(418,317,cs), +(418,275,ls), +(418,214,o), +(391,178,o), +(331,178,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-179,o), +(579,-118,o), +(579,67,cs), +(579,544,l), +(394,544,l), +(389,452,l), +(388,452,l), +(360,516,o), +(298,554,o), +(221,554,cs), +(91,554,o), +(5,458,o), +(5,287,cs), +(5,117,o), +(91,23,o), +(221,23,cs), +(299,23,o), +(361,59,o), +(387,118,c), +(388,118,l), +(388,37,ls), +(388,-13,o), +(361,-37,o), +(303,-37,cs), +(255,-37,o), +(234,-28,o), +(224,-10,c), +(13,-10,l), +(22,-117,o), +(127,-179,o), +(295,-179,cs) +); +}, +{ +closed = 1; +nodes = ( +(230,176,o), +(200,215,o), +(200,287,cs), +(200,361,o), +(232,401,o), +(291,401,cs), +(346,401,o), +(387,356,o), +(387,295,cs), +(387,284,ls), +(387,222,o), +(344,176,o), +(286,176,cs) +); +} +); +width = 611; +}, +{ +anchors = ( +{ +name = bottom; +pos = (326,-167); +}, +{ +name = top; +pos = (326,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-177,o), +(593,-107,o), +(593,32,cs), +(593,517,l), +(556,517,l), +(556,394,l), +(555,394,l), +(515,473,o), +(426,526,o), +(307,526,cs), +(142,526,o), +(24,425,o), +(24,267,cs), +(24,108,o), +(127,8,o), +(301,8,cs), +(424,8,o), +(518,54,o), +(555,134,c), +(556,134,l), +(556,34,ls), +(556,-83,o), +(474,-143,o), +(312,-143,cs), +(188,-143,o), +(99,-103,o), +(83,-20,c), +(43,-20,l), +(55,-119,o), +(160,-177,o), +(312,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,41,o), +(62,120,o), +(62,267,cs), +(62,405,o), +(160,492,o), +(308,492,cs), +(452,492,o), +(556,402,o), +(556,279,cs), +(556,241,ls), +(556,125,o), +(450,41,o), +(305,41,cs) +); +} +); +width = 649; +}, +{ +anchors = ( +{ +name = bottom; +pos = (378,-167); +}, +{ +name = top; +pos = (378,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,-177,o), +(701,-127,o), +(701,95,cs), +(701,544,l), +(494,544,l), +(484,478,l), +(475,478,l), +(446,526,o), +(378,554,o), +(298,554,cs), +(153,554,o), +(53,451,o), +(53,296,cs), +(53,139,o), +(152,37,o), +(298,37,cs), +(370,37,o), +(441,62,o), +(473,116,c), +(481,116,l), +(481,51,ls), +(481,-9,o), +(434,-35,o), +(361,-35,cs), +(319,-35,o), +(287,-24,o), +(280,1,c), +(70,1,l), +(77,-102,o), +(175,-177,o), +(354,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,196,o), +(275,234,o), +(275,296,cs), +(275,359,o), +(316,398,o), +(380,398,cs), +(442,398,o), +(481,359,o), +(481,304,cs), +(481,291,ls), +(481,235,o), +(442,196,o), +(379,196,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(581,-177,o), +(691,-96,o), +(691,75,cs), +(691,544,l), +(484,544,l), +(477,471,l), +(476,471,l), +(434,525,o), +(365,554,o), +(276,554,cs), +(119,554,o), +(14,447,o), +(14,286,cs), +(14,126,o), +(119,20,o), +(274,20,cs), +(361,20,o), +(433,54,o), +(469,113,c), +(471,113,l), +(471,40,ls), +(471,-12,o), +(439,-35,o), +(361,-35,cs), +(302,-35,o), +(270,-26,o), +(261,-6,c), +(27,-6,l), +(40,-114,o), +(158,-177,o), +(346,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,179,o), +(236,219,o), +(236,287,cs), +(236,357,o), +(280,398,o), +(354,398,cs), +(420,398,o), +(471,350,o), +(471,290,cs), +(471,289,ls), +(471,227,o), +(419,179,o), +(353,179,cs) +); +} +); +width = 723; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,-189); +}, +{ +name = top; +pos = (298,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(411,-177,o), +(502,-120,o), +(502,25,cs), +(502,517,l), +(468,517,l), +(465,339,l), +(465,31,ls), +(465,-103,o), +(390,-144,o), +(282,-144,cs), +(196,-144,o), +(137,-106,o), +(125,-43,c), +(89,-43,l), +(103,-128,o), +(177,-177,o), +(282,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,13,o), +(437,63,o), +(463,137,c), +(481,137,l), +(481,237,l), +(465,237,l), +(465,139,o), +(397,47,o), +(283,47,cs), +(175,47,o), +(103,130,o), +(103,270,cs), +(103,412,o), +(175,494,o), +(283,494,cs), +(398,494,o), +(465,402,o), +(465,305,c), +(481,305,l), +(481,404,l), +(463,404,l), +(437,478,o), +(368,527,o), +(274,527,cs), +(150,527,o), +(65,430,o), +(65,270,cs), +(65,112,o), +(150,13,o), +(274,13,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-189,o), +(497,-124,o), +(497,22,cs), +(497,517,l), +(463,517,l), +(461,404,l), +(458,404,l), +(433,478,o), +(365,527,o), +(273,527,cs), +(152,527,o), +(70,428,o), +(70,265,cs), +(70,105,o), +(152,5,o), +(274,5,cs), +(366,5,o), +(433,56,o), +(458,132,c), +(460,132,l), +(460,22,ls), +(460,-107,o), +(412,-156,o), +(298,-156,cs), +(193,-156,o), +(128,-119,o), +(114,-45,c), +(78,-45,l), +(94,-140,o), +(171,-189,o), +(298,-189,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,39,o), +(108,123,o), +(108,265,cs), +(108,410,o), +(177,494,o), +(282,494,cs), +(396,494,o), +(460,402,o), +(460,305,cs), +(460,232,ls), +(460,132,o), +(394,39,o), +(283,39,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +12 +); +stem = -2; +target = ( +0, +51 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +0, +24 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +44 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +48 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +9 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +41 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +} +); +}; +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (300,-195); +}, +{ +name = top; +pos = (309,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-325,-177,o), +(-210,-113,o), +(-210,80,cs), +(-210,544,l), +(-395,544,l), +(-401,469,l), +(-411,469,l), +(-433,520,o), +(-490,554,o), +(-561,554,cs), +(-687,554,o), +(-771,471,o), +(-771,294,cs), +(-771,117,o), +(-687,34,o), +(-561,34,cs), +(-490,34,o), +(-433,68,o), +(-411,119,c), +(-401,119,l), +(-401,40,ls), +(-401,-10,o), +(-420,-44,o), +(-496,-44,cs), +(-538,-44,o), +(-565,-27,o), +(-569,-2,c), +(-753,-2,l), +(-747,-107,o), +(-657,-177,o), +(-501,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(-541,178,o), +(-576,211,o), +(-576,294,cs), +(-576,377,o), +(-541,410,o), +(-488,410,cs), +(-431,410,o), +(-406,371,o), +(-402,327,c), +(-401,263,l), +(-405,218,o), +(-430,178,o), +(-488,178,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,-177,o), +(589,-111,o), +(589,58,cs), +(589,544,l), +(405,544,l), +(401,478,l), +(390,478,l), +(370,523,o), +(311,554,o), +(240,554,cs), +(110,554,o), +(25,459,o), +(25,297,cs), +(25,133,o), +(110,38,o), +(240,38,cs), +(314,38,o), +(372,72,o), +(390,114,c), +(398,114,l), +(398,30,ls), +(398,-25,o), +(359,-44,o), +(304,-44,cs), +(262,-44,o), +(235,-27,o), +(231,-2,c), +(47,-2,l), +(56,-107,o), +(157,-177,o), +(304,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,178,o), +(220,229,o), +(220,297,cs), +(220,363,o), +(246,414,o), +(316,414,cs), +(365,414,o), +(398,382,o), +(398,317,cs), +(398,275,ls), +(398,214,o), +(371,178,o), +(311,178,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-197,o), +(563,-143,o), +(563,54,cs), +(563,544,l), +(380,544,l), +(377,475,l), +(365,475,l), +(346,523,o), +(292,554,o), +(225,554,cs), +(102,554,o), +(22,455,o), +(22,284,cs), +(22,113,o), +(103,17,o), +(225,17,cs), +(291,17,o), +(346,49,o), +(364,95,c), +(376,95,l), +(374,22,ls), +(374,-28,o), +(358,-61,o), +(296,-61,cs), +(253,-61,o), +(228,-47,o), +(223,-22,c), +(28,-22,l), +(34,-127,o), +(127,-197,o), +(291,-197,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,170,o), +(215,208,o), +(215,284,cs), +(215,362,o), +(244,401,o), +(297,401,cs), +(345,401,o), +(374,358,o), +(374,295,cs), +(374,274,ls), +(374,210,o), +(344,170,o), +(297,170,cs) +); +} +); +width = 614; +}, +{ +anchors = ( +{ +name = bottom; +pos = (94,-167); +}, +{ +name = top; +pos = (235,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-177,o), +(194,-154,o), +(219,-31,cs), +(332,516,l), +(304,516,l), +(286,432,l), +(284,432,l), +(281,488,o), +(258,526,o), +(202,526,cs), +(139,526,o), +(84,463,o), +(44,270,cs), +(10,105,o), +(24,10,o), +(111,10,cs), +(158,10,o), +(189,41,o), +(214,89,c), +(215,89,l), +(192,-21,ls), +(173,-113,o), +(150,-150,o), +(88,-150,cs), +(39,-150,o), +(15,-118,o), +(24,-52,c), +(-5,-52,l), +(-12,-134,o), +(24,-177,o), +(86,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(37,35,o), +(49,144,o), +(74,268,cs), +(104,416,o), +(138,498,o), +(206,498,cs), +(276,498,o), +(280,406,o), +(259,302,cs), +(240,210,ls), +(216,94,o), +(170,35,o), +(121,35,cs) +); +} +); +width = 338; +}, +{ +anchors = ( +{ +name = bottom; +pos = (152,-167); +}, +{ +name = top; +pos = (299,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,-175,o), +(358,-118,o), +(387,21,cs), +(495,541,l), +(325,541,l), +(304,472,l), +(297,472,l), +(289,524,o), +(258,551,o), +(202,551,cs), +(129,551,o), +(62,501,o), +(22,303,cs), +(-7,165,o), +(-7,36,o), +(116,36,cs), +(154,36,o), +(196,56,o), +(221,101,c), +(227,100,l), +(206,1,ls), +(198,-37,o), +(187,-59,o), +(164,-59,cs), +(144,-59,o), +(134,-42,o), +(141,-5,c), +(-20,-5,l), +(-35,-105,o), +(21,-175,o), +(165,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(183,159,o), +(175,186,o), +(196,295,cs), +(211,368,o), +(228,416,o), +(256,416,cs), +(280,416,o), +(286,393,o), +(268,299,cs), +(263,273,ls), +(247,192,o), +(230,159,o), +(207,159,cs) +); +} +); +width = 465; +}, +{ +anchors = ( +{ +name = bottom; +pos = (213,-167); +}, +{ +name = top; +pos = (355,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,-177,o), +(425,-95,o), +(448,17,cs), +(553,517,l), +(517,517,l), +(489,390,l), +(485,390,l), +(476,470,o), +(412,526,o), +(316,526,cs), +(174,526,o), +(69,404,o), +(63,234,cs), +(59,113,o), +(123,31,o), +(245,31,cs), +(328,31,o), +(397,75,o), +(434,142,c), +(438,142,l), +(414,24,ls), +(392,-82,o), +(328,-143,o), +(224,-143,cs), +(133,-143,o), +(69,-97,o), +(68,-23,c), +(32,-23,l), +(31,-116,o), +(106,-177,o), +(219,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,65,o), +(99,128,o), +(103,238,cs), +(108,388,o), +(198,492,o), +(319,492,cs), +(426,492,o), +(494,402,o), +(471,296,cs), +(457,233,ls), +(437,146,o), +(358,65,o), +(252,65,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-177,o), +(417,-95,o), +(440,17,cs), +(545,517,l), +(512,517,l), +(483,390,l), +(481,390,l), +(469,469,o), +(404,527,o), +(308,527,cs), +(162,527,o), +(53,394,o), +(53,213,cs), +(53,90,o), +(123,12,o), +(230,12,cs), +(312,12,o), +(384,54,o), +(424,120,c), +(426,120,l), +(406,24,ls), +(384,-82,o), +(320,-143,o), +(216,-143,cs), +(125,-143,o), +(61,-97,o), +(60,-23,c), +(24,-23,l), +(23,-116,o), +(98,-177,o), +(211,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(151,45,o), +(91,106,o), +(91,216,cs), +(91,376,o), +(185,493,o), +(310,493,cs), +(416,493,o), +(482,407,o), +(462,289,cs), +(448,225,ls), +(430,127,o), +(348,45,o), +(241,45,cs) +); +} +); +width = 575; +}, +{ +anchors = ( +{ +name = bottom; +pos = (238,-167); +}, +{ +name = top; +pos = (385,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(372,-176,o), +(502,-140,o), +(544,61,cs), +(644,544,l), +(463,544,l), +(437,466,l), +(428,466,l), +(409,519,o), +(351,554,o), +(283,554,cs), +(144,554,o), +(59,451,o), +(38,267,cs), +(22,117,o), +(94,36,o), +(212,36,cs), +(275,36,o), +(330,63,o), +(352,104,c), +(361,104,l), +(344,29,ls), +(331,-27,o), +(297,-44,o), +(259,-44,cs), +(215,-44,o), +(190,-27,o), +(186,-2,c), +(6,-2,l), +(5,-106,o), +(101,-176,o), +(244,-176,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,176,o), +(223,197,o), +(233,277,cs), +(244,366,o), +(277,410,o), +(339,410,cs), +(390,410,o), +(417,372,o), +(405,316,cs), +(395,265,ls), +(384,212,o), +(355,176,o), +(304,176,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(426,-176,o), +(512,-86,o), +(540,48,cs), +(643,544,l), +(464,544,l), +(436,457,l), +(430,457,l), +(413,514,o), +(357,554,o), +(274,554,cs), +(126,554,o), +(28,419,o), +(28,241,cs), +(28,116,o), +(94,34,o), +(205,34,cs), +(268,34,o), +(326,64,o), +(354,107,c), +(361,107,l), +(344,26,ls), +(335,-16,o), +(310,-44,o), +(258,-44,cs), +(217,-44,o), +(189,-32,o), +(185,-2,c), +(9,-2,l), +(14,-110,o), +(115,-176,o), +(254,-176,cs) +); +}, +{ +closed = 1; +nodes = ( +(253,173,o), +(222,202,o), +(222,260,cs), +(222,348,o), +(264,415,o), +(332,415,cs), +(385,415,o), +(415,378,o), +(402,304,cs), +(393,263,ls), +(381,207,o), +(352,173,o), +(299,173,cs) +); +} +); +width = 641; +}, +{ +anchors = ( +{ +name = bottom; +pos = (227,-167); +}, +{ +name = top; +pos = (327,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,-177,o), +(471,-113,o), +(498,14,cs), +(603,517,l), +(567,517,l), +(539,383,l), +(534,383,l), +(514,468,o), +(433,526,o), +(323,526,cs), +(161,526,o), +(41,408,o), +(35,243,cs), +(31,115,o), +(124,28,o), +(268,28,cs), +(359,28,o), +(439,68,o), +(483,138,c), +(488,138,l), +(463,19,ls), +(443,-79,o), +(381,-144,o), +(238,-144,cs), +(141,-144,o), +(41,-112,o), +(34,-20,c), +(-2,-20,l), +(0,-114,o), +(94,-177,o), +(235,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(149,61,o), +(70,136,o), +(74,247,cs), +(79,390,o), +(182,492,o), +(322,492,cs), +(464,492,o), +(551,400,o), +(518,267,cs), +(509,230,ls), +(486,131,o), +(390,61,o), +(275,61,cs) +); +} +); +width = 614; +}, +{ +anchors = ( +{ +name = bottom; +pos = (262,-167); +}, +{ +name = top; +pos = (409,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,-177,o), +(569,-125,o), +(606,53,cs), +(709,544,l), +(505,544,l), +(476,467,l), +(467,467,l), +(443,518,o), +(371,554,o), +(286,554,cs), +(130,554,o), +(24,442,o), +(16,270,cs), +(9,129,o), +(101,38,o), +(247,38,cs), +(309,38,o), +(365,60,o), +(389,96,c), +(395,96,l), +(383,38,ls), +(370,-24,o), +(323,-36,o), +(276,-36,cs), +(228,-36,o), +(188,-24,o), +(184,3,c), +(-22,3,l), +(-20,-105,o), +(79,-177,o), +(272,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,196,o), +(235,228,o), +(238,288,cs), +(241,356,o), +(281,398,o), +(347,398,cs), +(408,398,o), +(451,356,o), +(437,292,cs), +(433,275,ls), +(423,223,o), +(388,196,o), +(329,196,cs) +); +} +); +width = 695; +} +); +unicode = 103; +userData = { +KernOnName = g; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/g.ss06.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/g.ss06.glyph new file mode 100644 index 00000000..335f28a9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/g.ss06.glyph @@ -0,0 +1,3833 @@ +{ +glyphname = g.ss06; +kernRight = KO_g.ss06; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (226,-167); +}, +{ +name = top; +pos = (222,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-167,ls), +(383,-167,o), +(459,-99,o), +(459,2,cs), +(459,99,o), +(390,164,o), +(268,164,cs), +(195,164,ls), +(165,164,o), +(151,172,o), +(151,189,cs), +(151,206,o), +(169,219,o), +(194,239,c), +(114,262,l), +(50,238,o), +(10,191,o), +(10,142,cs), +(10,107,o), +(29,72,o), +(73,58,c), +(73,51,l), +(20,30,o), +(-11,-11,o), +(-11,-60,cs), +(-11,-127,o), +(45,-167,o), +(137,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,-50,o), +(133,-40,o), +(133,-17,cs), +(133,-5,o), +(140,9,o), +(151,18,c), +(242,18,ls), +(266,18,o), +(282,6,o), +(282,-15,cs), +(282,-36,o), +(268,-50,o), +(242,-50,cs), +(175,-50,ls) +); +}, +{ +closed = 1; +nodes = ( +(342,211,o), +(422,274,o), +(422,381,cs), +(422,488,o), +(342,551,o), +(222,551,cs), +(102,551,o), +(22,488,o), +(22,381,cs), +(22,274,o), +(102,211,o), +(222,211,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,312,o), +(186,338,o), +(186,381,cs), +(186,424,o), +(196,450,o), +(222,450,cs), +(248,450,o), +(258,424,o), +(258,381,cs), +(258,338,o), +(248,312,o), +(222,312,cs) +); +}, +{ +closed = 1; +nodes = ( +(353,539,o), +(383,548,o), +(418,548,c), +(418,680,l), +(315,679,o), +(262,615,o), +(259,532,c), +(335,508,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-167,ls), +(383,-167,o), +(459,-99,o), +(459,2,cs), +(459,99,o), +(390,164,o), +(268,164,cs), +(195,164,ls), +(165,164,o), +(151,172,o), +(151,189,cs), +(151,206,o), +(169,220,o), +(194,239,c), +(114,262,l), +(50,238,o), +(10,191,o), +(10,142,cs), +(10,107,o), +(29,72,o), +(73,58,c), +(73,51,l), +(21,25,o), +(-11,-16,o), +(-11,-65,cs), +(-11,-129,o), +(43,-167,o), +(124,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,-50,o), +(133,-40,o), +(133,-17,cs), +(133,-5,o), +(140,9,o), +(151,18,c), +(242,18,ls), +(266,18,o), +(282,6,o), +(282,-15,cs), +(282,-36,o), +(268,-50,o), +(242,-50,cs), +(175,-50,ls) +); +}, +{ +closed = 1; +nodes = ( +(342,211,o), +(422,274,o), +(422,381,cs), +(422,488,o), +(342,551,o), +(222,551,cs), +(102,551,o), +(22,488,o), +(22,381,cs), +(22,274,o), +(102,211,o), +(222,211,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,312,o), +(186,338,o), +(186,381,cs), +(186,424,o), +(196,450,o), +(222,450,cs), +(248,450,o), +(258,424,o), +(258,381,cs), +(258,338,o), +(248,312,o), +(222,312,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,511,o), +(418,523,o), +(466,521,c), +(466,642,l), +(377,643,o), +(319,593,o), +(308,506,c), +(358,473,l) +); +} +); +width = 474; +}, +{ +anchors = ( +{ +name = bottom; +pos = (164,-167); +}, +{ +name = top; +pos = (164,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,-167,ls), +(271,-167,o), +(323,-120,o), +(323,-49,cs), +(323,21,o), +(278,67,o), +(198,67,cs), +(117,67,ls), +(89,67,o), +(70,86,o), +(70,115,cs), +(70,146,o), +(92,168,o), +(116,183,c), +(100,196,l), +(67,173,o), +(43,143,o), +(43,110,cs), +(43,86,o), +(55,63,o), +(77,51,c), +(77,49,l), +(35,23,o), +(8,-16,o), +(8,-61,cs), +(8,-128,o), +(57,-167,o), +(130,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(74,-139,o), +(36,-112,o), +(36,-54,cs), +(36,-16,o), +(58,17,o), +(90,38,c), +(203,38,ls), +(257,38,o), +(293,7,o), +(293,-49,cs), +(293,-103,o), +(260,-139,o), +(200,-139,cs), +(130,-139,ls) +); +}, +{ +closed = 1; +nodes = ( +(235,164,o), +(282,216,o), +(282,345,cs), +(282,474,o), +(235,526,o), +(166,526,cs), +(97,526,o), +(50,474,o), +(50,345,cs), +(50,216,o), +(97,164,o), +(166,164,cs) +); +}, +{ +closed = 1; +nodes = ( +(103,192,o), +(80,249,o), +(80,345,cs), +(80,441,o), +(103,498,o), +(166,498,cs), +(229,498,o), +(252,441,o), +(252,345,cs), +(252,249,o), +(229,192,o), +(166,192,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,543,o), +(287,572,o), +(324,566,c), +(324,594,l), +(272,602,o), +(237,561,o), +(222,502,c), +(241,488,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,-167,ls), +(271,-167,o), +(323,-120,o), +(323,-49,cs), +(323,21,o), +(278,67,o), +(198,67,cs), +(117,67,ls), +(89,67,o), +(70,86,o), +(70,115,cs), +(70,146,o), +(92,168,o), +(116,183,c), +(100,196,l), +(67,173,o), +(43,143,o), +(43,110,cs), +(43,86,o), +(55,63,o), +(77,51,c), +(77,49,l), +(36,20,o), +(8,-19,o), +(8,-67,cs), +(8,-135,o), +(57,-167,o), +(130,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(62,-139,o), +(36,-107,o), +(36,-60,cs), +(36,-24,o), +(58,15,o), +(90,38,c), +(203,38,ls), +(257,38,o), +(293,7,o), +(293,-49,cs), +(293,-103,o), +(260,-139,o), +(200,-139,cs), +(130,-139,ls) +); +}, +{ +closed = 1; +nodes = ( +(235,164,o), +(282,216,o), +(282,345,cs), +(282,474,o), +(235,526,o), +(166,526,cs), +(97,526,o), +(50,474,o), +(50,345,cs), +(50,216,o), +(97,164,o), +(166,164,cs) +); +}, +{ +closed = 1; +nodes = ( +(103,192,o), +(80,249,o), +(80,345,cs), +(80,441,o), +(103,498,o), +(166,498,cs), +(229,498,o), +(252,441,o), +(252,345,cs), +(252,249,o), +(229,192,o), +(166,192,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,543,o), +(287,572,o), +(324,566,c), +(324,594,l), +(272,602,o), +(237,561,o), +(222,502,c), +(241,488,l) +); +} +); +width = 325; +}, +{ +anchors = ( +{ +name = bottom; +pos = (258,-167); +}, +{ +name = top; +pos = (264,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,-167,ls), +(462,-167,o), +(536,-118,o), +(536,-29,cs), +(536,58,o), +(475,102,o), +(359,102,cs), +(160,102,ls), +(117,102,o), +(89,117,o), +(89,148,cs), +(89,174,o), +(109,203,o), +(150,224,c), +(129,241,l), +(84,213,o), +(54,181,o), +(54,144,cs), +(54,120,o), +(65,95,o), +(95,83,c), +(95,80,l), +(40,49,o), +(3,-4,o), +(3,-54,cs), +(3,-122,o), +(47,-167,o), +(181,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(92,-132,o), +(39,-112,o), +(39,-49,cs), +(39,-9,o), +(69,38,o), +(113,67,c), +(362,67,ls), +(450,67,o), +(498,38,o), +(498,-32,cs), +(498,-94,o), +(455,-132,o), +(362,-132,cs), +(181,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(388,189,o), +(471,257,o), +(471,358,cs), +(471,459,o), +(388,527,o), +(264,527,cs), +(140,527,o), +(57,459,o), +(57,358,cs), +(57,257,o), +(140,189,o), +(264,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,221,o), +(92,270,o), +(92,358,cs), +(92,446,o), +(154,495,o), +(264,495,cs), +(367,495,o), +(436,446,o), +(436,358,cs), +(436,276,o), +(374,221,o), +(264,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(432,548,o), +(479,581,o), +(538,574,c), +(538,608,l), +(467,616,o), +(412,576,o), +(378,491,c), +(401,477,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(369,-167,ls), +(462,-167,o), +(536,-118,o), +(536,-29,cs), +(536,58,o), +(475,102,o), +(369,102,cs), +(160,102,ls), +(117,102,o), +(89,117,o), +(89,148,cs), +(89,174,o), +(109,203,o), +(150,224,c), +(129,241,l), +(84,213,o), +(54,181,o), +(54,144,cs), +(54,120,o), +(65,95,o), +(95,83,c), +(95,80,l), +(40,49,o), +(3,-4,o), +(3,-54,cs), +(3,-122,o), +(47,-167,o), +(161,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(92,-132,o), +(39,-112,o), +(39,-49,cs), +(39,-9,o), +(69,38,o), +(113,67,c), +(369,67,ls), +(450,67,o), +(498,38,o), +(498,-32,cs), +(498,-94,o), +(455,-132,o), +(369,-132,cs), +(161,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(388,189,o), +(471,257,o), +(471,358,cs), +(471,459,o), +(388,527,o), +(264,527,cs), +(140,527,o), +(57,459,o), +(57,358,cs), +(57,257,o), +(140,189,o), +(264,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,221,o), +(92,270,o), +(92,358,cs), +(92,446,o), +(154,495,o), +(264,495,cs), +(367,495,o), +(436,446,o), +(436,358,cs), +(436,276,o), +(374,221,o), +(264,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(432,548,o), +(479,581,o), +(538,574,c), +(538,608,l), +(467,616,o), +(412,576,o), +(378,491,c), +(401,477,l) +); +} +); +width = 544; +}, +{ +anchors = ( +{ +name = bottom; +pos = (314,-167); +}, +{ +name = top; +pos = (306,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(396,-167,ls), +(555,-167,o), +(647,-97,o), +(647,9,cs), +(647,112,o), +(579,180,o), +(400,180,cs), +(274,180,ls), +(235,180,o), +(203,180,o), +(203,196,cs), +(203,215,o), +(223,223,o), +(253,238,c), +(152,277,l), +(61,232,o), +(11,191,o), +(11,132,cs), +(11,98,o), +(33,68,o), +(82,52,c), +(82,44,l), +(21,20,o), +(-15,-15,o), +(-15,-65,cs), +(-15,-129,o), +(36,-167,o), +(140,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,-34,o), +(175,-25,o), +(175,-5,cs), +(175,3,o), +(178,13,o), +(188,24,c), +(377,24,ls), +(411,24,o), +(427,16,o), +(427,-5,cs), +(427,-22,o), +(412,-34,o), +(381,-34,cs), +(224,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(472,216,o), +(583,277,o), +(583,385,cs), +(583,486,o), +(494,554,o), +(306,554,cs), +(140,554,o), +(29,493,o), +(29,385,cs), +(29,284,o), +(118,216,o), +(306,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,327,o), +(235,347,o), +(235,385,cs), +(235,420,o), +(260,443,o), +(306,443,cs), +(350,443,o), +(377,424,o), +(377,385,cs), +(377,350,o), +(352,327,o), +(306,327,cs) +); +}, +{ +closed = 1; +nodes = ( +(510,525,o), +(561,532,o), +(623,533,c), +(623,669,l), +(502,665,o), +(427,608,o), +(393,519,c), +(450,491,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-167,ls), +(557,-167,o), +(647,-97,o), +(647,9,cs), +(647,118,o), +(563,180,o), +(437,180,cs), +(248,180,ls), +(223,180,o), +(203,180,o), +(203,199,cs), +(203,215,o), +(223,225,o), +(253,238,c), +(152,277,l), +(61,232,o), +(11,191,o), +(11,132,cs), +(11,98,o), +(33,68,o), +(82,52,c), +(82,44,l), +(21,20,o), +(-15,-15,o), +(-15,-65,cs), +(-15,-126,o), +(32,-167,o), +(131,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,-34,o), +(175,-25,o), +(175,-5,cs), +(175,3,o), +(178,13,o), +(188,24,c), +(389,24,ls), +(413,24,o), +(427,14,o), +(427,-5,cs), +(427,-22,o), +(414,-34,o), +(389,-34,cs), +(224,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(472,216,o), +(583,277,o), +(583,385,cs), +(583,486,o), +(494,554,o), +(306,554,cs), +(140,554,o), +(29,493,o), +(29,385,cs), +(29,284,o), +(118,216,o), +(306,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,327,o), +(235,347,o), +(235,385,cs), +(235,420,o), +(260,443,o), +(306,443,cs), +(350,443,o), +(377,424,o), +(377,385,cs), +(377,350,o), +(352,327,o), +(306,327,cs) +); +}, +{ +closed = 1; +nodes = ( +(530,525,o), +(572,532,o), +(623,533,c), +(623,669,l), +(518,665,o), +(453,608,o), +(423,519,c), +(480,491,l) +); +} +); +width = 643; +}, +{ +anchors = ( +{ +name = bottom; +pos = (156,-167); +}, +{ +name = top; +pos = (156,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,-167,ls), +(271,-167,o), +(323,-120,o), +(323,-49,cs), +(323,21,o), +(278,67,o), +(198,67,cs), +(117,67,ls), +(89,67,o), +(70,86,o), +(70,115,cs), +(70,146,o), +(92,168,o), +(116,183,c), +(100,196,l), +(67,173,o), +(43,143,o), +(43,110,cs), +(43,86,o), +(55,63,o), +(77,51,c), +(77,49,l), +(35,23,o), +(8,-16,o), +(8,-61,cs), +(8,-128,o), +(57,-167,o), +(130,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(74,-139,o), +(36,-112,o), +(36,-54,cs), +(36,-16,o), +(58,17,o), +(90,38,c), +(203,38,ls), +(257,38,o), +(293,7,o), +(293,-49,cs), +(293,-103,o), +(260,-139,o), +(200,-139,cs), +(130,-139,ls) +); +}, +{ +closed = 1; +nodes = ( +(235,164,o), +(282,216,o), +(282,345,cs), +(282,474,o), +(235,526,o), +(166,526,cs), +(97,526,o), +(50,474,o), +(50,345,cs), +(50,216,o), +(97,164,o), +(166,164,cs) +); +}, +{ +closed = 1; +nodes = ( +(103,192,o), +(80,249,o), +(80,345,cs), +(80,441,o), +(103,498,o), +(166,498,cs), +(229,498,o), +(252,441,o), +(252,345,cs), +(252,249,o), +(229,192,o), +(166,192,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,543,o), +(287,572,o), +(324,566,c), +(324,594,l), +(272,602,o), +(237,561,o), +(222,502,c), +(241,488,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(190,-167,ls), +(263,-167,o), +(315,-120,o), +(315,-49,cs), +(315,21,o), +(270,67,o), +(190,67,cs), +(109,67,ls), +(81,67,o), +(62,86,o), +(62,115,cs), +(62,146,o), +(84,168,o), +(108,183,c), +(92,196,l), +(59,173,o), +(35,143,o), +(35,110,cs), +(35,86,o), +(47,63,o), +(69,51,c), +(69,49,l), +(28,20,o), +(0,-19,o), +(0,-67,cs), +(0,-135,o), +(49,-167,o), +(122,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(54,-139,o), +(28,-107,o), +(28,-60,cs), +(28,-24,o), +(50,15,o), +(82,38,c), +(195,38,ls), +(249,38,o), +(285,7,o), +(285,-49,cs), +(285,-103,o), +(252,-139,o), +(192,-139,cs), +(122,-139,ls) +); +}, +{ +closed = 1; +nodes = ( +(227,164,o), +(274,216,o), +(274,345,cs), +(274,474,o), +(227,526,o), +(158,526,cs), +(89,526,o), +(42,474,o), +(42,345,cs), +(42,216,o), +(89,164,o), +(158,164,cs) +); +}, +{ +closed = 1; +nodes = ( +(95,192,o), +(72,249,o), +(72,345,cs), +(72,441,o), +(95,498,o), +(158,498,cs), +(221,498,o), +(244,441,o), +(244,345,cs), +(244,249,o), +(221,192,o), +(158,192,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,543,o), +(279,572,o), +(316,566,c), +(316,594,l), +(264,602,o), +(229,561,o), +(214,502,c), +(233,488,l) +); +} +); +width = 309; +}, +{ +anchors = ( +{ +name = bottom; +pos = (221,-167); +}, +{ +name = top; +pos = (217,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-167,ls), +(383,-167,o), +(459,-99,o), +(459,2,cs), +(459,99,o), +(390,164,o), +(268,164,cs), +(195,164,ls), +(165,164,o), +(151,172,o), +(151,189,cs), +(151,206,o), +(169,219,o), +(194,239,c), +(114,262,l), +(50,238,o), +(10,191,o), +(10,142,cs), +(10,107,o), +(29,72,o), +(73,58,c), +(73,51,l), +(20,30,o), +(-11,-11,o), +(-11,-60,cs), +(-11,-127,o), +(45,-167,o), +(137,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,-50,o), +(133,-40,o), +(133,-17,cs), +(133,-5,o), +(140,9,o), +(151,18,c), +(242,18,ls), +(266,18,o), +(282,6,o), +(282,-15,cs), +(282,-36,o), +(268,-50,o), +(242,-50,cs), +(175,-50,ls) +); +}, +{ +closed = 1; +nodes = ( +(342,211,o), +(422,274,o), +(422,381,cs), +(422,488,o), +(342,551,o), +(222,551,cs), +(102,551,o), +(22,488,o), +(22,381,cs), +(22,274,o), +(102,211,o), +(222,211,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,312,o), +(186,338,o), +(186,381,cs), +(186,424,o), +(196,450,o), +(222,450,cs), +(248,450,o), +(258,424,o), +(258,381,cs), +(258,338,o), +(248,312,o), +(222,312,cs) +); +}, +{ +closed = 1; +nodes = ( +(353,539,o), +(383,548,o), +(418,548,c), +(418,680,l), +(315,679,o), +(262,615,o), +(259,532,c), +(335,508,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-167,ls), +(378,-167,o), +(454,-99,o), +(454,2,cs), +(454,99,o), +(385,164,o), +(263,164,cs), +(190,164,ls), +(160,164,o), +(146,172,o), +(146,189,cs), +(146,206,o), +(164,220,o), +(189,239,c), +(109,262,l), +(45,238,o), +(5,191,o), +(5,142,cs), +(5,107,o), +(24,72,o), +(68,58,c), +(68,51,l), +(16,25,o), +(-16,-16,o), +(-16,-65,cs), +(-16,-129,o), +(38,-167,o), +(119,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(145,-50,o), +(128,-40,o), +(128,-17,cs), +(128,-5,o), +(135,9,o), +(146,18,c), +(237,18,ls), +(261,18,o), +(277,6,o), +(277,-15,cs), +(277,-36,o), +(263,-50,o), +(237,-50,cs), +(170,-50,ls) +); +}, +{ +closed = 1; +nodes = ( +(337,211,o), +(417,274,o), +(417,381,cs), +(417,488,o), +(337,551,o), +(217,551,cs), +(97,551,o), +(17,488,o), +(17,381,cs), +(17,274,o), +(97,211,o), +(217,211,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,312,o), +(181,338,o), +(181,381,cs), +(181,424,o), +(191,450,o), +(217,450,cs), +(243,450,o), +(253,424,o), +(253,381,cs), +(253,338,o), +(243,312,o), +(217,312,cs) +); +}, +{ +closed = 1; +nodes = ( +(375,511,o), +(413,523,o), +(461,521,c), +(461,642,l), +(372,643,o), +(314,593,o), +(303,506,c), +(353,473,l) +); +} +); +width = 464; +}, +{ +anchors = ( +{ +name = bottom; +pos = (243,-167); +}, +{ +name = top; +pos = (235,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(339,-167,ls), +(435,-167,o), +(497,-115,o), +(497,-35,cs), +(497,43,o), +(447,92,o), +(339,92,cs), +(177,92,ls), +(134,92,o), +(105,112,o), +(105,148,cs), +(105,176,o), +(124,204,o), +(160,223,c), +(139,241,l), +(101,217,o), +(70,183,o), +(70,144,cs), +(70,115,o), +(85,89,o), +(115,76,c), +(115,75,l), +(62,52,o), +(26,4,o), +(26,-45,cs), +(26,-118,o), +(75,-167,o), +(178,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(109,-132,o), +(62,-101,o), +(62,-45,cs), +(62,-5,o), +(80,31,o), +(125,57,c), +(345,57,ls), +(415,57,o), +(459,32,o), +(459,-38,cs), +(459,-94,o), +(419,-132,o), +(338,-132,cs), +(180,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(368,189,o), +(445,260,o), +(445,358,cs), +(445,456,o), +(368,527,o), +(257,527,cs), +(146,527,o), +(69,456,o), +(69,358,cs), +(69,260,o), +(146,189,o), +(257,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,221,o), +(105,280,o), +(105,358,cs), +(105,436,o), +(160,495,o), +(257,495,cs), +(354,495,o), +(409,436,o), +(409,358,cs), +(409,280,o), +(354,221,o), +(257,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(406,540,o), +(465,570,o), +(535,564,c), +(535,598,l), +(451,605,o), +(386,566,o), +(352,486,c), +(374,472,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,-167,ls), +(413,-167,o), +(475,-115,o), +(475,-35,cs), +(475,43,o), +(425,92,o), +(317,92,cs), +(155,92,ls), +(112,92,o), +(83,112,o), +(83,148,cs), +(83,176,o), +(102,204,o), +(138,223,c), +(117,241,l), +(79,217,o), +(48,183,o), +(48,144,cs), +(48,117,o), +(61,93,o), +(89,78,c), +(89,75,l), +(35,39,o), +(4,-8,o), +(4,-57,cs), +(4,-123,o), +(57,-167,o), +(151,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(83,-132,o), +(41,-103,o), +(41,-52,cs), +(41,-13,o), +(64,29,o), +(104,57,c), +(323,57,ls), +(393,57,o), +(437,32,o), +(437,-38,cs), +(437,-94,o), +(397,-132,o), +(316,-132,cs), +(148,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(346,189,o), +(423,260,o), +(423,358,cs), +(423,456,o), +(346,527,o), +(235,527,cs), +(124,527,o), +(47,456,o), +(47,358,cs), +(47,260,o), +(124,189,o), +(235,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(138,221,o), +(83,280,o), +(83,358,cs), +(83,436,o), +(138,495,o), +(235,495,cs), +(332,495,o), +(387,436,o), +(387,358,cs), +(387,280,o), +(332,221,o), +(235,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,548,o), +(424,581,o), +(483,574,c), +(483,608,l), +(412,616,o), +(357,576,o), +(323,491,c), +(346,477,l) +); +} +); +width = 480; +}, +{ +anchors = ( +{ +name = bottom; +pos = (268,-167); +}, +{ +name = top; +pos = (268,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(360,-167,ls), +(487,-167,o), +(571,-104,o), +(571,9,cs), +(571,109,o), +(495,176,o), +(360,176,cs), +(218,176,ls), +(199,176,o), +(186,180,o), +(186,196,cs), +(186,215,o), +(206,223,o), +(233,238,c), +(153,277,l), +(67,232,o), +(24,190,o), +(24,132,cs), +(24,94,o), +(48,61,o), +(85,47,c), +(85,41,l), +(33,19,o), +(-1,-14,o), +(-1,-64,cs), +(-1,-126,o), +(49,-167,o), +(141,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(172,-34,o), +(155,-26,o), +(155,-5,cs), +(155,4,o), +(160,14,o), +(170,24,c), +(339,24,ls), +(362,24,o), +(378,15,o), +(378,-5,cs), +(378,-22,o), +(365,-34,o), +(339,-34,cs), +(204,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(427,216,o), +(519,281,o), +(519,385,cs), +(519,489,o), +(427,554,o), +(281,554,cs), +(135,554,o), +(43,489,o), +(43,385,cs), +(43,281,o), +(135,216,o), +(281,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(249,320,o), +(228,343,o), +(228,385,cs), +(228,424,o), +(245,450,o), +(281,450,cs), +(313,450,o), +(334,429,o), +(334,385,cs), +(334,346,o), +(317,320,o), +(281,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(453,525,o), +(488,532,o), +(534,533,c), +(534,669,l), +(430,665,o), +(370,608,o), +(344,519,c), +(420,501,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(348,-167,ls), +(475,-167,o), +(559,-104,o), +(559,9,cs), +(559,109,o), +(483,176,o), +(348,176,cs), +(206,176,ls), +(187,176,o), +(174,180,o), +(174,196,cs), +(174,215,o), +(194,225,o), +(221,238,c), +(141,277,l), +(55,232,o), +(12,190,o), +(12,132,cs), +(12,94,o), +(36,61,o), +(73,47,c), +(73,41,l), +(21,19,o), +(-13,-14,o), +(-13,-64,cs), +(-13,-126,o), +(37,-167,o), +(129,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,-34,o), +(143,-26,o), +(143,-5,cs), +(143,4,o), +(148,14,o), +(158,24,c), +(327,24,ls), +(350,24,o), +(366,15,o), +(366,-5,cs), +(366,-22,o), +(353,-34,o), +(327,-34,cs), +(192,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(415,216,o), +(507,281,o), +(507,385,cs), +(507,489,o), +(415,554,o), +(269,554,cs), +(123,554,o), +(31,489,o), +(31,385,cs), +(31,281,o), +(123,216,o), +(269,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,320,o), +(216,343,o), +(216,385,cs), +(216,424,o), +(233,450,o), +(269,450,cs), +(301,450,o), +(322,429,o), +(322,385,cs), +(322,346,o), +(305,320,o), +(269,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(466,513,o), +(500,522,o), +(548,523,c), +(548,659,l), +(451,655,o), +(395,598,o), +(373,509,c), +(419,481,l) +); +} +); +width = 554; +}, +{ +anchors = ( +{ +name = bottom; +pos = (253,-167); +}, +{ +name = top; +pos = (259,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,-167,ls), +(462,-167,o), +(536,-118,o), +(536,-29,cs), +(536,58,o), +(475,102,o), +(359,102,cs), +(160,102,ls), +(117,102,o), +(89,117,o), +(89,148,cs), +(89,174,o), +(109,203,o), +(150,224,c), +(129,241,l), +(84,213,o), +(54,181,o), +(54,144,cs), +(54,120,o), +(65,95,o), +(95,83,c), +(95,80,l), +(40,49,o), +(3,-4,o), +(3,-54,cs), +(3,-122,o), +(47,-167,o), +(181,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(92,-132,o), +(39,-112,o), +(39,-49,cs), +(39,-9,o), +(69,38,o), +(113,67,c), +(362,67,ls), +(450,67,o), +(498,38,o), +(498,-32,cs), +(498,-94,o), +(455,-132,o), +(362,-132,cs), +(181,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(388,189,o), +(471,257,o), +(471,358,cs), +(471,459,o), +(388,527,o), +(264,527,cs), +(140,527,o), +(57,459,o), +(57,358,cs), +(57,257,o), +(140,189,o), +(264,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,221,o), +(92,270,o), +(92,358,cs), +(92,446,o), +(154,495,o), +(264,495,cs), +(367,495,o), +(436,446,o), +(436,358,cs), +(436,276,o), +(374,221,o), +(264,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(432,548,o), +(479,581,o), +(538,574,c), +(538,608,l), +(467,616,o), +(412,576,o), +(378,491,c), +(401,477,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-167,ls), +(457,-167,o), +(531,-118,o), +(531,-29,cs), +(531,58,o), +(470,102,o), +(364,102,cs), +(155,102,ls), +(112,102,o), +(84,117,o), +(84,148,cs), +(84,174,o), +(104,203,o), +(145,224,c), +(124,241,l), +(79,213,o), +(49,181,o), +(49,144,cs), +(49,120,o), +(60,95,o), +(90,83,c), +(90,80,l), +(35,49,o), +(-2,-4,o), +(-2,-54,cs), +(-2,-122,o), +(42,-167,o), +(156,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(87,-132,o), +(34,-112,o), +(34,-49,cs), +(34,-9,o), +(64,38,o), +(108,67,c), +(364,67,ls), +(445,67,o), +(493,38,o), +(493,-32,cs), +(493,-94,o), +(450,-132,o), +(364,-132,cs), +(156,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(383,189,o), +(466,257,o), +(466,358,cs), +(466,459,o), +(383,527,o), +(259,527,cs), +(135,527,o), +(52,459,o), +(52,358,cs), +(52,257,o), +(135,189,o), +(259,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(87,270,o), +(87,358,cs), +(87,446,o), +(149,495,o), +(259,495,cs), +(362,495,o), +(431,446,o), +(431,358,cs), +(431,276,o), +(369,221,o), +(259,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(427,548,o), +(474,581,o), +(533,574,c), +(533,608,l), +(462,616,o), +(407,576,o), +(373,491,c), +(396,477,l) +); +} +); +width = 534; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,-167); +}, +{ +name = top; +pos = (301,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(396,-167,ls), +(555,-167,o), +(647,-97,o), +(647,9,cs), +(647,112,o), +(579,180,o), +(400,180,cs), +(274,180,ls), +(235,180,o), +(203,180,o), +(203,196,cs), +(203,215,o), +(223,223,o), +(253,238,c), +(152,277,l), +(61,232,o), +(11,191,o), +(11,132,cs), +(11,98,o), +(33,68,o), +(82,52,c), +(82,44,l), +(21,20,o), +(-15,-15,o), +(-15,-65,cs), +(-15,-129,o), +(36,-167,o), +(140,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,-34,o), +(175,-25,o), +(175,-5,cs), +(175,3,o), +(178,13,o), +(188,24,c), +(377,24,ls), +(411,24,o), +(427,16,o), +(427,-5,cs), +(427,-22,o), +(412,-34,o), +(381,-34,cs), +(224,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(472,216,o), +(583,277,o), +(583,385,cs), +(583,486,o), +(494,554,o), +(306,554,cs), +(140,554,o), +(29,493,o), +(29,385,cs), +(29,284,o), +(118,216,o), +(306,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,327,o), +(235,347,o), +(235,385,cs), +(235,420,o), +(260,443,o), +(306,443,cs), +(350,443,o), +(377,424,o), +(377,385,cs), +(377,350,o), +(352,327,o), +(306,327,cs) +); +}, +{ +closed = 1; +nodes = ( +(510,525,o), +(561,532,o), +(623,533,c), +(623,669,l), +(502,665,o), +(427,608,o), +(393,519,c), +(450,491,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,-167,ls), +(552,-167,o), +(642,-97,o), +(642,9,cs), +(642,118,o), +(558,180,o), +(432,180,cs), +(243,180,ls), +(218,180,o), +(198,180,o), +(198,199,cs), +(198,215,o), +(218,225,o), +(248,238,c), +(147,277,l), +(56,232,o), +(6,191,o), +(6,132,cs), +(6,98,o), +(28,68,o), +(77,52,c), +(77,44,l), +(16,20,o), +(-20,-15,o), +(-20,-65,cs), +(-20,-126,o), +(27,-167,o), +(126,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,-34,o), +(170,-25,o), +(170,-5,cs), +(170,3,o), +(173,13,o), +(183,24,c), +(384,24,ls), +(408,24,o), +(422,14,o), +(422,-5,cs), +(422,-22,o), +(409,-34,o), +(384,-34,cs), +(219,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(467,216,o), +(578,277,o), +(578,385,cs), +(578,486,o), +(489,554,o), +(301,554,cs), +(135,554,o), +(24,493,o), +(24,385,cs), +(24,284,o), +(113,216,o), +(301,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,327,o), +(230,347,o), +(230,385,cs), +(230,420,o), +(255,443,o), +(301,443,cs), +(345,443,o), +(372,424,o), +(372,385,cs), +(372,350,o), +(347,327,o), +(301,327,cs) +); +}, +{ +closed = 1; +nodes = ( +(525,525,o), +(567,532,o), +(618,533,c), +(618,669,l), +(513,665,o), +(448,608,o), +(418,519,c), +(475,491,l) +); +} +); +width = 633; +}, +{ +anchors = ( +{ +name = bottom; +pos = (262,-167); +}, +{ +name = top; +pos = (254,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(339,-167,ls), +(435,-167,o), +(497,-115,o), +(497,-35,cs), +(497,43,o), +(447,92,o), +(339,92,cs), +(177,92,ls), +(134,92,o), +(105,112,o), +(105,148,cs), +(105,176,o), +(124,204,o), +(160,223,c), +(139,241,l), +(101,217,o), +(70,183,o), +(70,144,cs), +(70,115,o), +(85,89,o), +(115,76,c), +(115,75,l), +(62,52,o), +(26,4,o), +(26,-45,cs), +(26,-118,o), +(75,-167,o), +(178,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(109,-132,o), +(62,-101,o), +(62,-45,cs), +(62,-5,o), +(80,31,o), +(125,57,c), +(345,57,ls), +(415,57,o), +(459,32,o), +(459,-38,cs), +(459,-94,o), +(419,-132,o), +(338,-132,cs), +(180,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(368,189,o), +(445,260,o), +(445,358,cs), +(445,456,o), +(368,527,o), +(257,527,cs), +(146,527,o), +(69,456,o), +(69,358,cs), +(69,260,o), +(146,189,o), +(257,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,221,o), +(105,280,o), +(105,358,cs), +(105,436,o), +(160,495,o), +(257,495,cs), +(354,495,o), +(409,436,o), +(409,358,cs), +(409,280,o), +(354,221,o), +(257,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(406,540,o), +(465,570,o), +(535,564,c), +(535,598,l), +(451,605,o), +(386,566,o), +(352,486,c), +(374,472,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(336,-167,ls), +(430,-167,o), +(490,-115,o), +(490,-35,cs), +(490,43,o), +(442,92,o), +(336,92,cs), +(176,92,ls), +(135,92,o), +(106,112,o), +(106,148,cs), +(106,176,o), +(125,204,o), +(159,223,c), +(140,241,l), +(102,217,o), +(71,183,o), +(71,144,cs), +(71,117,o), +(84,93,o), +(112,78,c), +(112,75,l), +(58,39,o), +(29,-8,o), +(29,-57,cs), +(29,-123,o), +(80,-167,o), +(172,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(106,-132,o), +(64,-103,o), +(64,-52,cs), +(64,-13,o), +(87,29,o), +(127,57,c), +(342,57,ls), +(410,57,o), +(452,32,o), +(452,-38,cs), +(452,-94,o), +(414,-132,o), +(335,-132,cs), +(169,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(363,189,o), +(440,260,o), +(440,358,cs), +(440,456,o), +(363,527,o), +(254,527,cs), +(147,527,o), +(70,456,o), +(70,358,cs), +(70,260,o), +(147,189,o), +(254,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,221,o), +(106,280,o), +(106,358,cs), +(106,436,o), +(159,495,o), +(254,495,cs), +(349,495,o), +(404,436,o), +(404,358,cs), +(404,280,o), +(349,221,o), +(254,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(394,548,o), +(441,581,o), +(498,574,c), +(498,608,l), +(429,616,o), +(374,576,o), +(342,491,c), +(363,477,l) +); +} +); +width = 514; +}, +{ +anchors = ( +{ +name = bottom; +pos = (271,-167); +}, +{ +name = top; +pos = (271,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(360,-167,ls), +(487,-167,o), +(571,-104,o), +(571,9,cs), +(571,109,o), +(495,176,o), +(360,176,cs), +(218,176,ls), +(199,176,o), +(186,180,o), +(186,196,cs), +(186,215,o), +(206,223,o), +(233,238,c), +(153,277,l), +(67,232,o), +(24,190,o), +(24,132,cs), +(24,94,o), +(48,61,o), +(85,47,c), +(85,41,l), +(33,19,o), +(-1,-14,o), +(-1,-64,cs), +(-1,-126,o), +(49,-167,o), +(141,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(172,-34,o), +(155,-26,o), +(155,-5,cs), +(155,4,o), +(160,14,o), +(170,24,c), +(339,24,ls), +(362,24,o), +(378,15,o), +(378,-5,cs), +(378,-22,o), +(365,-34,o), +(339,-34,cs), +(204,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(427,216,o), +(519,281,o), +(519,385,cs), +(519,489,o), +(427,554,o), +(281,554,cs), +(135,554,o), +(43,489,o), +(43,385,cs), +(43,281,o), +(135,216,o), +(281,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(249,320,o), +(228,343,o), +(228,385,cs), +(228,424,o), +(245,450,o), +(281,450,cs), +(313,450,o), +(334,429,o), +(334,385,cs), +(334,346,o), +(317,320,o), +(281,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(453,525,o), +(488,532,o), +(534,533,c), +(534,669,l), +(430,665,o), +(370,608,o), +(344,519,c), +(420,501,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(348,-167,ls), +(472,-167,o), +(554,-104,o), +(554,9,cs), +(554,109,o), +(480,176,o), +(348,176,cs), +(212,176,ls), +(194,176,o), +(182,180,o), +(182,196,cs), +(182,215,o), +(203,226,o), +(228,238,c), +(149,277,l), +(62,231,o), +(22,190,o), +(22,132,cs), +(22,94,o), +(46,61,o), +(81,47,c), +(81,41,l), +(31,19,o), +(-2,-14,o), +(-2,-64,cs), +(-2,-126,o), +(47,-167,o), +(136,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,-34,o), +(152,-26,o), +(152,-5,cs), +(152,4,o), +(158,17,o), +(165,24,c), +(328,24,ls), +(348,24,o), +(363,15,o), +(363,-5,cs), +(363,-22,o), +(351,-34,o), +(328,-34,cs), +(198,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(414,216,o), +(504,281,o), +(504,385,cs), +(504,489,o), +(414,554,o), +(272,554,cs), +(131,554,o), +(41,489,o), +(41,385,cs), +(41,281,o), +(131,216,o), +(272,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,320,o), +(224,343,o), +(224,385,cs), +(224,424,o), +(240,450,o), +(272,450,cs), +(301,450,o), +(321,429,o), +(321,385,cs), +(321,346,o), +(305,320,o), +(272,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,513,o), +(497,522,o), +(544,523,c), +(544,659,l), +(448,655,o), +(394,598,o), +(373,509,c), +(419,481,l) +); +} +); +width = 564; +}, +{ +anchors = ( +{ +name = bottom; +pos = (69,-167); +}, +{ +name = top; +pos = (208,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,-167,ls), +(226,-167,o), +(283,-112,o), +(283,-37,cs), +(283,25,o), +(242,67,o), +(163,67,cs), +(87,67,ls), +(56,67,o), +(39,86,o), +(39,110,cs), +(39,145,o), +(71,168,o), +(104,189,c), +(91,205,l), +(40,175,o), +(12,139,o), +(12,105,cs), +(12,85,o), +(20,63,o), +(43,51,c), +(43,48,l), +(-11,17,o), +(-41,-24,o), +(-41,-75,cs), +(-41,-130,o), +(4,-167,o), +(72,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(22,-139,o), +(-12,-113,o), +(-12,-66,cs), +(-12,-28,o), +(9,8,o), +(54,38,c), +(159,38,ls), +(219,38,o), +(253,14,o), +(253,-40,cs), +(253,-99,o), +(211,-139,o), +(148,-139,cs), +(74,-139,ls) +); +}, +{ +closed = 1; +nodes = ( +(212,165,o), +(266,218,o), +(292,339,cs), +(316,451,o), +(290,526,o), +(210,526,cs), +(147,526,o), +(93,473,o), +(67,352,cs), +(43,240,o), +(69,165,o), +(149,165,cs) +); +}, +{ +closed = 1; +nodes = ( +(99,192,o), +(72,235,o), +(94,344,cs), +(114,442,o), +(149,499,o), +(206,499,cs), +(260,499,o), +(287,454,o), +(265,345,cs), +(245,247,o), +(210,192,o), +(153,192,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,532,o), +(341,567,o), +(380,557,c), +(386,585,l), +(333,594,o), +(296,559,o), +(258,499,c), +(274,484,l) +); +} +); +width = 329; +}, +{ +anchors = ( +{ +name = bottom; +pos = (131,-167); +}, +{ +name = top; +pos = (248,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(172,-168,ls), +(314,-168,o), +(391,-98,o), +(395,16,cs), +(398,105,o), +(330,164,o), +(226,164,cs), +(165,164,ls), +(141,164,o), +(127,173,o), +(127,189,cs), +(128,211,o), +(152,223,o), +(168,221,c), +(77,268,l), +(18,236,o), +(-23,199,o), +(-24,146,cs), +(-25,112,o), +(-8,81,o), +(24,68,c), +(23,59,l), +(-39,39,o), +(-82,-3,o), +(-84,-55,cs), +(-87,-126,o), +(-32,-168,o), +(74,-168,cs) +); +}, +{ +closed = 1; +nodes = ( +(75,-50,o), +(59,-40,o), +(60,-16,cs), +(60,-4,o), +(67,7,o), +(78,18,c), +(167,18,ls), +(199,18,o), +(211,2,o), +(210,-16,cs), +(210,-36,o), +(192,-50,o), +(163,-50,cs), +(104,-50,ls) +); +}, +{ +closed = 1; +nodes = ( +(350,209,o), +(430,284,o), +(434,393,cs), +(437,488,o), +(372,551,o), +(250,551,cs), +(124,551,o), +(44,476,o), +(40,367,cs), +(37,272,o), +(102,209,o), +(225,209,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,310,o), +(194,344,o), +(202,383,cs), +(210,427,o), +(225,450,o), +(251,450,cs), +(280,450,o), +(280,416,o), +(272,377,cs), +(264,333,o), +(249,310,o), +(223,310,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,527,o), +(422,537,o), +(463,535,c), +(491,667,l), +(393,671,o), +(324,620,o), +(304,529,c), +(379,503,l) +); +} +); +}; +guides = ( +{ +pos = (230,-50); +}, +{ +pos = (61,51); +}, +{ +pos = (61,58); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,-167,ls), +(333,-167,o), +(420,-103,o), +(420,11,cs), +(420,104,o), +(353,164,o), +(241,164,cs), +(163,164,ls), +(140,164,o), +(127,173,o), +(127,189,cs), +(128,211,o), +(152,223,o), +(168,231,c), +(87,268,l), +(27,234,o), +(-14,197,o), +(-14,140,cs), +(-14,103,o), +(6,73,o), +(36,58,c), +(34,51,l), +(-23,25,o), +(-56,-15,o), +(-56,-64,cs), +(-56,-129,o), +(-4,-167,o), +(93,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(104,-50,o), +(88,-40,o), +(89,-16,cs), +(89,-4,o), +(96,7,o), +(107,18,c), +(204,18,ls), +(233,18,o), +(244,2,o), +(243,-16,cs), +(243,-36,o), +(227,-50,o), +(200,-50,cs), +(133,-50,ls) +); +}, +{ +closed = 1; +nodes = ( +(352,209,o), +(434,287,o), +(434,399,cs), +(434,491,o), +(369,551,o), +(250,551,cs), +(122,551,o), +(40,473,o), +(40,361,cs), +(40,269,o), +(105,209,o), +(225,209,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,310,o), +(194,344,o), +(202,383,cs), +(210,427,o), +(225,450,o), +(251,450,cs), +(280,450,o), +(280,416,o), +(272,377,cs), +(264,333,o), +(249,310,o), +(223,310,cs) +); +}, +{ +closed = 1; +nodes = ( +(398,511,o), +(439,523,o), +(486,521,c), +(511,642,l), +(423,643,o), +(354,593,o), +(325,506,c), +(368,473,l) +); +} +); +width = 481; +}, +{ +anchors = ( +{ +name = bottom; +pos = (91,-160); +}, +{ +name = top; +pos = (287,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(247,-167,ls), +(366,-167,o), +(445,-113,o), +(445,-18,cs), +(445,58,o), +(394,102,o), +(295,102,cs), +(147,102,ls), +(109,102,o), +(85,114,o), +(85,139,cs), +(85,168,o), +(115,202,o), +(162,224,c), +(145,241,l), +(85,208,o), +(48,171,o), +(48,129,cs), +(48,110,o), +(57,92,o), +(78,83,c), +(78,80,l), +(12,47,o), +(-30,3,o), +(-30,-59,cs), +(-30,-120,o), +(12,-167,o), +(133,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(48,-132,o), +(8,-105,o), +(8,-50,cs), +(8,-10,o), +(29,28,o), +(93,67,c), +(294,67,ls), +(361,67,o), +(405,39,o), +(405,-20,cs), +(405,-90,o), +(347,-132,o), +(257,-132,cs), +(130,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(390,191,o), +(475,263,o), +(475,368,cs), +(475,460,o), +(413,525,o), +(299,525,cs), +(182,525,o), +(97,453,o), +(97,348,cs), +(97,256,o), +(159,191,o), +(273,191,cs) +); +}, +{ +closed = 1; +nodes = ( +(189,221,o), +(133,266,o), +(133,346,cs), +(133,440,o), +(202,495,o), +(300,495,cs), +(383,495,o), +(439,450,o), +(439,370,cs), +(439,276,o), +(370,221,o), +(272,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(460,539,o), +(519,586,o), +(578,574,c), +(585,608,l), +(516,620,o), +(448,568,o), +(401,491,c), +(421,477,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,-167,ls), +(387,-167,o), +(456,-117,o), +(456,-29,cs), +(456,44,o), +(405,92,o), +(313,92,cs), +(157,92,ls), +(109,92,o), +(84,111,o), +(84,145,cs), +(84,181,o), +(117,208,o), +(161,233,c), +(146,253,l), +(86,220,o), +(47,184,o), +(47,137,cs), +(47,112,o), +(60,90,o), +(78,81,c), +(78,76,l), +(13,40,o), +(-18,-6,o), +(-18,-56,cs), +(-18,-125,o), +(32,-167,o), +(137,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(64,-133,o), +(18,-107,o), +(18,-53,cs), +(18,-12,o), +(38,27,o), +(88,57,c), +(310,57,ls), +(373,57,o), +(416,29,o), +(416,-31,cs), +(416,-92,o), +(375,-133,o), +(288,-133,cs), +(132,-133,ls) +); +}, +{ +closed = 1; +nodes = ( +(380,191,o), +(465,263,o), +(465,368,cs), +(465,460,o), +(403,525,o), +(289,525,cs), +(172,525,o), +(87,453,o), +(87,348,cs), +(87,256,o), +(149,191,o), +(263,191,cs) +); +}, +{ +closed = 1; +nodes = ( +(179,221,o), +(123,266,o), +(123,346,cs), +(123,440,o), +(192,495,o), +(290,495,cs), +(373,495,o), +(429,450,o), +(429,370,cs), +(429,276,o), +(360,221,o), +(262,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,533,o), +(505,587,o), +(568,574,c), +(575,608,l), +(501,621,o), +(433,568,o), +(387,491,c), +(411,477,l) +); +} +); +width = 528; +}, +{ +anchors = ( +{ +name = bottom; +pos = (72,-167); +}, +{ +name = top; +pos = (310,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(286,-167,ls), +(413,-167,o), +(510,-104,o), +(534,9,cs), +(555,109,o), +(492,176,o), +(357,176,cs), +(215,176,ls), +(196,176,o), +(184,180,o), +(188,196,cs), +(192,215,o), +(213,223,o), +(243,238,c), +(171,277,l), +(76,232,o), +(24,190,o), +(12,132,cs), +(4,94,o), +(22,61,o), +(56,47,c), +(55,41,l), +(-2,19,o), +(-43,-14,o), +(-53,-64,cs), +(-66,-126,o), +(-25,-167,o), +(67,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(126,-34,o), +(111,-26,o), +(115,-5,cs), +(117,4,o), +(124,14,o), +(136,24,c), +(305,24,ls), +(328,24,o), +(342,15,o), +(338,-5,cs), +(334,-22,o), +(319,-34,o), +(293,-34,cs), +(158,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(433,216,o), +(538,281,o), +(560,385,cs), +(581,489,o), +(503,554,o), +(357,554,cs), +(211,554,o), +(105,489,o), +(84,385,cs), +(62,281,o), +(141,216,o), +(287,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,320,o), +(260,343,o), +(269,385,cs), +(277,424,o), +(299,450,o), +(335,450,cs), +(367,450,o), +(384,429,o), +(375,385,cs), +(367,346,o), +(344,320,o), +(308,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,525,o), +(559,532,o), +(605,533,c), +(634,669,l), +(529,665,o), +(457,608,o), +(413,519,c), +(485,501,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,-167,ls), +(454,-167,o), +(545,-91,o), +(545,19,cs), +(545,113,o), +(480,176,o), +(351,176,cs), +(199,176,ls), +(180,176,o), +(169,181,o), +(169,194,cs), +(169,214,o), +(191,226,o), +(218,238,c), +(151,277,l), +(52,232,o), +(-1,184,o), +(-1,126,cs), +(-1,93,o), +(17,64,o), +(49,52,c), +(48,46,l), +(-8,21,o), +(-44,-20,o), +(-44,-68,cs), +(-44,-126,o), +(3,-167,o), +(90,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(125,-34,o), +(110,-26,o), +(110,-7,cs), +(110,1,o), +(116,13,o), +(130,24,c), +(315,24,ls), +(340,24,o), +(352,13,o), +(352,-1,cs), +(352,-22,o), +(341,-34,o), +(309,-34,cs), +(154,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(441,217,o), +(542,290,o), +(542,399,cs), +(542,491,o), +(459,553,o), +(312,553,cs), +(160,553,o), +(59,480,o), +(59,371,cs), +(59,279,o), +(142,217,o), +(289,217,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,320,o), +(244,339,o), +(244,368,cs), +(244,416,o), +(272,450,o), +(312,450,cs), +(342,450,o), +(357,431,o), +(357,402,cs), +(357,354,o), +(329,320,o), +(289,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,513,o), +(555,522,o), +(605,523,c), +(629,659,l), +(534,655,o), +(466,598,o), +(425,509,c), +(466,481,l) +); +} +); +width = 606; +}, +{ +anchors = ( +{ +name = bottom; +pos = (81,-167); +}, +{ +name = top; +pos = (312,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(307,-167,ls), +(426,-167,o), +(505,-113,o), +(505,-18,cs), +(505,58,o), +(454,102,o), +(355,102,cs), +(132,102,ls), +(94,102,o), +(70,114,o), +(70,139,cs), +(70,168,o), +(100,202,o), +(147,224,c), +(130,241,l), +(70,208,o), +(33,171,o), +(33,129,cs), +(33,110,o), +(42,92,o), +(63,83,c), +(63,80,l), +(-3,47,o), +(-45,3,o), +(-45,-59,cs), +(-45,-120,o), +(-3,-167,o), +(118,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(33,-132,o), +(-7,-105,o), +(-7,-50,cs), +(-7,-10,o), +(14,28,o), +(78,67,c), +(354,67,ls), +(421,67,o), +(465,39,o), +(465,-20,cs), +(465,-90,o), +(407,-132,o), +(317,-132,cs), +(115,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(407,191,o), +(500,265,o), +(500,375,cs), +(500,465,o), +(432,525,o), +(310,525,cs), +(171,525,o), +(78,451,o), +(78,341,cs), +(78,251,o), +(146,191,o), +(268,191,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,221,o), +(113,260,o), +(113,344,cs), +(113,435,o), +(191,495,o), +(307,495,cs), +(402,495,o), +(465,456,o), +(465,372,cs), +(465,281,o), +(387,221,o), +(271,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(486,523,o), +(546,551,o), +(609,554,c), +(616,588,l), +(534,585,o), +(468,546,o), +(421,484,c), +(442,470,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(307,-167,ls), +(426,-167,o), +(505,-113,o), +(505,-18,cs), +(505,58,o), +(454,102,o), +(355,102,cs), +(132,102,ls), +(94,102,o), +(70,117,o), +(70,149,cs), +(70,175,o), +(100,205,o), +(147,224,c), +(131,247,l), +(70,214,o), +(35,179,o), +(35,139,cs), +(35,117,o), +(47,96,o), +(68,85,c), +(68,82,l), +(-1,49,o), +(-45,4,o), +(-45,-59,cs), +(-45,-120,o), +(-3,-167,o), +(118,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(33,-132,o), +(-7,-105,o), +(-7,-50,cs), +(-7,-10,o), +(14,28,o), +(78,67,c), +(354,67,ls), +(421,67,o), +(465,39,o), +(465,-20,cs), +(465,-90,o), +(407,-132,o), +(317,-132,cs), +(115,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(407,191,o), +(500,265,o), +(500,375,cs), +(500,465,o), +(432,525,o), +(310,525,cs), +(171,525,o), +(78,451,o), +(78,341,cs), +(78,251,o), +(146,191,o), +(268,191,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,221,o), +(113,260,o), +(113,344,cs), +(113,435,o), +(191,495,o), +(307,495,cs), +(402,495,o), +(465,456,o), +(465,372,cs), +(465,281,o), +(387,221,o), +(271,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(480,548,o), +(529,581,o), +(586,574,c), +(593,608,l), +(524,616,o), +(461,576,o), +(409,491,c), +(429,477,l) +); +} +); +width = 571; +}, +{ +anchors = ( +{ +name = bottom; +pos = (138,-167); +}, +{ +name = top; +pos = (337,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(228,-167,ls), +(447,-167,o), +(520,-90,o), +(524,25,cs), +(529,152,o), +(426,182,o), +(303,182,cs), +(134,182,ls), +(105,182,o), +(87,189,o), +(87,204,cs), +(87,213,o), +(98,225,o), +(135,226,c), +(168,224,o), +(211,222,o), +(239,222,cs), +(433,222,o), +(536,279,o), +(540,388,cs), +(542,446,o), +(510,491,o), +(457,508,c), +(483,521,o), +(542,528,o), +(596,526,c), +(626,673,l), +(505,675,o), +(410,627,o), +(370,545,c), +(339,551,o), +(292,554,o), +(254,554,cs), +(77,554,o), +(-37,491,o), +(-40,389,cs), +(-42,338,o), +(-14,289,o), +(45,268,c), +(42,258,l), +(-51,245,o), +(-101,207,o), +(-103,148,cs), +(-104,106,o), +(-72,74,o), +(-31,64,c), +(-32,55,l), +(-113,47,o), +(-173,13,o), +(-175,-58,cs), +(-178,-132,o), +(-105,-167,o), +(17,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(35,-65,o), +(24,-58,o), +(25,-41,cs), +(26,-28,o), +(36,-19,o), +(55,-17,c), +(251,-17,ls), +(273,-17,o), +(289,-24,o), +(288,-40,cs), +(288,-57,o), +(274,-65,o), +(242,-65,cs), +(63,-65,ls) +); +}, +{ +closed = 1; +nodes = ( +(198,350,o), +(169,361,o), +(170,389,cs), +(171,414,o), +(200,426,o), +(258,426,cs), +(304,426,o), +(332,414,o), +(331,391,cs), +(330,361,o), +(298,350,o), +(250,350,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,-167,ls), +(513,-167,o), +(608,-92,o), +(608,20,cs), +(608,122,o), +(533,180,o), +(399,180,cs), +(224,180,ls), +(195,180,o), +(188,188,o), +(188,199,cs), +(188,218,o), +(209,228,o), +(247,238,c), +(154,277,l), +(42,233,o), +(-17,187,o), +(-17,129,cs), +(-17,94,o), +(1,67,o), +(40,52,c), +(37,44,l), +(-27,18,o), +(-63,-16,o), +(-63,-69,cs), +(-63,-128,o), +(-16,-167,o), +(91,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(142,-34,o), +(127,-26,o), +(127,-7,cs), +(127,2,o), +(133,15,o), +(147,24,c), +(342,24,ls), +(367,24,o), +(381,15,o), +(381,-1,cs), +(381,-22,o), +(365,-34,o), +(333,-34,cs), +(171,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(496,217,o), +(611,283,o), +(611,399,cs), +(611,491,o), +(524,553,o), +(339,553,cs), +(166,553,o), +(50,487,o), +(50,370,cs), +(50,278,o), +(137,217,o), +(323,217,cs) +); +}, +{ +closed = 1; +nodes = ( +(284,327,o), +(258,347,o), +(258,379,cs), +(258,415,o), +(287,443,o), +(338,443,cs), +(378,443,o), +(404,423,o), +(404,391,cs), +(404,355,o), +(375,327,o), +(324,327,cs) +); +}, +{ +closed = 1; +nodes = ( +(555,523,o), +(592,532,o), +(643,533,c), +(666,669,l), +(573,665,o), +(506,608,o), +(465,519,c), +(508,491,l) +); +} +); +width = 655; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gbreve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gbreve.glyph new file mode 100644 index 00000000..cb9df7f0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gbreve.glyph @@ -0,0 +1,248 @@ +{ +color = 6; +glyphname = gbreve; +kernLeft = KO_g; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g; +}, +{ +pos = (49,-156); +ref = brevecomb; +} +); +width = 341; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,-137); +ref = brevecomb; +} +); +width = 467; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g; +}, +{ +pos = (133,-155); +ref = brevecomb; +} +); +width = 623; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g; +}, +{ +pos = (107,-129); +ref = brevecomb; +} +); +width = 701; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (63,-156); +ref = brevecomb; +} +); +width = 311; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g; +}, +{ +pos = (42,-137); +ref = brevecomb; +} +); +width = 451; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g; +}, +{ +pos = (136,-161); +ref = brevecomb; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (99,-134); +ref = brevecomb; +} +); +width = 613; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (133,-155); +ref = brevecomb; +} +); +width = 623; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (107,-129); +ref = brevecomb; +} +); +width = 701; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (131,-161); +ref = brevecomb; +} +); +width = 580; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (98,-134); +ref = brevecomb; +} +); +width = 614; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g; +}, +{ +pos = (21,-156); +ref = brevecomb; +} +); +width = 338; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (19,-137); +ref = brevecomb; +} +); +width = 465; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g; +}, +{ +pos = (99,-155); +ref = brevecomb; +} +); +width = 575; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g; +}, +{ +pos = (73,-134); +ref = brevecomb; +} +); +width = 641; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g; +}, +{ +pos = (62,-155); +ref = brevecomb; +} +); +width = 614; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g; +}, +{ +pos = (87,-134); +ref = brevecomb; +} +); +width = 695; +} +); +unicode = 287; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gbreve.ss06.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gbreve.ss06.glyph new file mode 100644 index 00000000..80e49d26 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gbreve.ss06.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = gbreve.ss06; +kernRight = KO_g.ss06; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (40,-156); +ref = brevecomb; +} +); +width = 325; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (27,-137); +ref = brevecomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (90,-155); +ref = brevecomb; +} +); +width = 544; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (67,-129); +ref = brevecomb; +} +); +width = 643; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (52,-156); +ref = brevecomb; +} +); +width = 309; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (32,-137); +ref = brevecomb; +} +); +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (87,-162); +ref = brevecomb; +} +); +width = 480; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g.ss06; +}, +{ +alignment = -1; +pos = (70,-134); +ref = brevecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (95,-155); +ref = brevecomb; +} +); +width = 534; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (72,-129); +ref = brevecomb; +} +); +width = 633; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (87,-162); +ref = brevecomb; +} +); +width = 514; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (60,-134); +ref = brevecomb; +} +); +width = 564; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-6,-156); +ref = brevecomb; +} +); +width = 329; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-32,-137); +ref = brevecomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (31,-155); +ref = brevecomb; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-2,-134); +ref = brevecomb; +} +); +width = 606; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (47,-155); +ref = brevecomb; +} +); +width = 571; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (15,-134); +ref = brevecomb; +} +); +width = 655; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gcaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gcaron.glyph new file mode 100644 index 00000000..efc74ab4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gcaron.glyph @@ -0,0 +1,248 @@ +{ +color = 6; +glyphname = gcaron; +kernLeft = KO_g; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g; +}, +{ +pos = (44,-156); +ref = caroncomb; +} +); +width = 341; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g; +}, +{ +pos = (15,-137); +ref = caroncomb; +} +); +width = 467; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g; +}, +{ +pos = (128,-155); +ref = caroncomb; +} +); +width = 623; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g; +}, +{ +pos = (55,-129); +ref = caroncomb; +} +); +width = 701; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (58,-156); +ref = caroncomb; +} +); +width = 311; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g; +}, +{ +pos = (20,-137); +ref = caroncomb; +} +); +width = 451; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g; +}, +{ +pos = (140,-155); +ref = caroncomb; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (71,-134); +ref = caroncomb; +} +); +width = 613; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (128,-155); +ref = caroncomb; +} +); +width = 623; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (55,-129); +ref = caroncomb; +} +); +width = 701; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (135,-155); +ref = caroncomb; +} +); +width = 580; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (70,-134); +ref = caroncomb; +} +); +width = 614; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g; +}, +{ +pos = (21,-156); +ref = caroncomb; +} +); +width = 338; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (3,-137); +ref = caroncomb; +} +); +width = 465; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g; +}, +{ +pos = (104,-155); +ref = caroncomb; +} +); +width = 575; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g; +}, +{ +pos = (51,-134); +ref = caroncomb; +} +); +width = 641; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g; +}, +{ +pos = (61,-155); +ref = caroncomb; +} +); +width = 614; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g; +}, +{ +pos = (35,-129); +ref = caroncomb; +} +); +width = 695; +} +); +unicode = 487; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gcaron.ss06.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gcaron.ss06.glyph new file mode 100644 index 00000000..b3fac524 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gcaron.ss06.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = gcaron.ss06; +kernRight = KO_g.ss06; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (35,-156); +ref = caroncomb; +} +); +width = 325; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (5,-137); +ref = caroncomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (85,-155); +ref = caroncomb; +} +); +width = 544; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (15,-129); +ref = caroncomb; +} +); +width = 643; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (47,-156); +ref = caroncomb; +} +); +width = 309; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (10,-137); +ref = caroncomb; +} +); +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (91,-156); +ref = caroncomb; +} +); +width = 480; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g.ss06; +}, +{ +alignment = -1; +pos = (42,-134); +ref = caroncomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (90,-155); +ref = caroncomb; +} +); +width = 534; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (20,-129); +ref = caroncomb; +} +); +width = 633; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (91,-156); +ref = caroncomb; +} +); +width = 514; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (32,-134); +ref = caroncomb; +} +); +width = 564; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-6,-156); +ref = caroncomb; +} +); +width = 329; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-48,-137); +ref = caroncomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (36,-155); +ref = caroncomb; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-24,-134); +ref = caroncomb; +} +); +width = 606; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (46,-155); +ref = caroncomb; +} +); +width = 571; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-37,-129); +ref = caroncomb; +} +); +width = 655; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gcircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gcircumflex.glyph new file mode 100644 index 00000000..0af3c2c2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gcircumflex.glyph @@ -0,0 +1,248 @@ +{ +color = 6; +glyphname = gcircumflex; +kernLeft = KO_g; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g; +}, +{ +pos = (44,-156); +ref = circumflexcomb; +} +); +width = 341; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g; +}, +{ +pos = (15,-137); +ref = circumflexcomb; +} +); +width = 467; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g; +}, +{ +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 623; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g; +}, +{ +pos = (55,-129); +ref = circumflexcomb; +} +); +width = 701; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (58,-156); +ref = circumflexcomb; +} +); +width = 311; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g; +}, +{ +pos = (20,-137); +ref = circumflexcomb; +} +); +width = 451; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g; +}, +{ +pos = (140,-155); +ref = circumflexcomb; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (71,-134); +ref = circumflexcomb; +} +); +width = 613; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 623; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (55,-129); +ref = circumflexcomb; +} +); +width = 701; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (135,-155); +ref = circumflexcomb; +} +); +width = 580; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (70,-134); +ref = circumflexcomb; +} +); +width = 614; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g; +}, +{ +pos = (20,-156); +ref = circumflexcomb; +} +); +width = 338; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (-3,-137); +ref = circumflexcomb; +} +); +width = 465; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g; +}, +{ +pos = (103,-155); +ref = circumflexcomb; +} +); +width = 575; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g; +}, +{ +pos = (56,-134); +ref = circumflexcomb; +} +); +width = 641; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g; +}, +{ +pos = (61,-155); +ref = circumflexcomb; +} +); +width = 614; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g; +}, +{ +pos = (33,-129); +ref = circumflexcomb; +} +); +width = 695; +} +); +unicode = 285; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gcircumflex.ss06.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gcircumflex.ss06.glyph new file mode 100644 index 00000000..7fe24445 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gcircumflex.ss06.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = gcircumflex.ss06; +kernRight = KO_g.ss06; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (35,-156); +ref = circumflexcomb; +} +); +width = 325; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (5,-137); +ref = circumflexcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (85,-155); +ref = circumflexcomb; +} +); +width = 544; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (15,-129); +ref = circumflexcomb; +} +); +width = 643; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (47,-156); +ref = circumflexcomb; +} +); +width = 309; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (10,-137); +ref = circumflexcomb; +} +); +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (91,-156); +ref = circumflexcomb; +} +); +width = 480; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g.ss06; +}, +{ +alignment = -1; +pos = (42,-134); +ref = circumflexcomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (90,-155); +ref = circumflexcomb; +} +); +width = 534; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (20,-129); +ref = circumflexcomb; +} +); +width = 633; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (91,-156); +ref = circumflexcomb; +} +); +width = 514; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (32,-134); +ref = circumflexcomb; +} +); +width = 564; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-7,-156); +ref = circumflexcomb; +} +); +width = 329; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-54,-137); +ref = circumflexcomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (35,-155); +ref = circumflexcomb; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-19,-134); +ref = circumflexcomb; +} +); +width = 606; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (46,-155); +ref = circumflexcomb; +} +); +width = 571; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-39,-129); +ref = circumflexcomb; +} +); +width = 655; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gcommaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gcommaaccent.glyph new file mode 100644 index 00000000..ebce9e58 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gcommaaccent.glyph @@ -0,0 +1,248 @@ +{ +color = 6; +glyphname = gcommaaccent; +kernLeft = KO_g; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g; +}, +{ +pos = (117,-156); +ref = commaturnedabovecomb; +} +); +width = 341; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g; +}, +{ +pos = (131,-137); +ref = commaturnedabovecomb; +} +); +width = 467; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g; +}, +{ +pos = (250,-155); +ref = commaturnedabovecomb; +} +); +width = 623; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g; +}, +{ +pos = (226,-134); +ref = commaturnedabovecomb; +} +); +width = 701; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (131,-156); +ref = commaturnedabovecomb; +} +); +width = 311; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g; +}, +{ +pos = (136,-137); +ref = commaturnedabovecomb; +} +); +width = 451; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g; +}, +{ +pos = (248,-155); +ref = commaturnedabovecomb; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (204,-134); +ref = commaturnedabovecomb; +} +); +width = 613; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (250,-155); +ref = commaturnedabovecomb; +} +); +width = 623; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (226,-134); +ref = commaturnedabovecomb; +} +); +width = 701; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (241,-155); +ref = commaturnedabovecomb; +} +); +width = 580; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (197,-134); +ref = commaturnedabovecomb; +} +); +width = 614; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g; +}, +{ +pos = (93,-156); +ref = commaturnedabovecomb; +} +); +width = 338; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (113,-137); +ref = commaturnedabovecomb; +} +); +width = 465; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g; +}, +{ +pos = (213,-155); +ref = commaturnedabovecomb; +} +); +width = 575; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g; +}, +{ +pos = (187,-134); +ref = commaturnedabovecomb; +} +); +width = 641; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g; +}, +{ +pos = (185,-155); +ref = commaturnedabovecomb; +} +); +width = 614; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g; +}, +{ +pos = (205,-134); +ref = commaturnedabovecomb; +} +); +width = 695; +} +); +unicode = 291; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gcommaaccent.ss06.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gcommaaccent.ss06.glyph new file mode 100644 index 00000000..c1ca7389 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gcommaaccent.ss06.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = gcommaaccent.ss06; +kernRight = KO_g.ss06; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (108,-156); +ref = commaturnedabovecomb; +} +); +width = 325; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (121,-137); +ref = commaturnedabovecomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (207,-155); +ref = commaturnedabovecomb; +} +); +width = 544; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (186,-134); +ref = commaturnedabovecomb; +} +); +width = 643; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (120,-156); +ref = commaturnedabovecomb; +} +); +width = 309; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (126,-137); +ref = commaturnedabovecomb; +} +); +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (199,-156); +ref = commaturnedabovecomb; +} +); +width = 480; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g.ss06; +}, +{ +alignment = -1; +pos = (175,-134); +ref = commaturnedabovecomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (212,-155); +ref = commaturnedabovecomb; +} +); +width = 534; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (191,-134); +ref = commaturnedabovecomb; +} +); +width = 633; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (197,-156); +ref = commaturnedabovecomb; +} +); +width = 514; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (159,-134); +ref = commaturnedabovecomb; +} +); +width = 564; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (66,-156); +ref = commaturnedabovecomb; +} +); +width = 329; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (62,-137); +ref = commaturnedabovecomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (145,-155); +ref = commaturnedabovecomb; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (112,-134); +ref = commaturnedabovecomb; +} +); +width = 606; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (170,-155); +ref = commaturnedabovecomb; +} +); +width = 571; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (133,-134); +ref = commaturnedabovecomb; +} +); +width = 655; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.glyph new file mode 100644 index 00000000..1113059b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.glyph @@ -0,0 +1,248 @@ +{ +color = 6; +glyphname = gdotaccent; +kernLeft = KO_g; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g; +}, +{ +pos = (110,-156); +ref = dotaccentcomb; +} +); +width = 341; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g; +}, +{ +pos = (98,-137); +ref = dotaccentcomb; +} +); +width = 467; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g; +}, +{ +pos = (235,-155); +ref = dotaccentcomb; +} +); +width = 623; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g; +}, +{ +pos = (188,-129); +ref = dotaccentcomb; +} +); +width = 701; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (124,-151); +ref = dotaccentcomb; +} +); +width = 311; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g; +}, +{ +pos = (103,-137); +ref = dotaccentcomb; +} +); +width = 451; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g; +}, +{ +pos = (232,-150); +ref = dotaccentcomb; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (181,-134); +ref = dotaccentcomb; +} +); +width = 613; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (235,-155); +ref = dotaccentcomb; +} +); +width = 623; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (188,-129); +ref = dotaccentcomb; +} +); +width = 701; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (225,-133); +ref = dotaccentcomb; +} +); +width = 580; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (176,-120); +ref = dotaccentcomb; +} +); +width = 614; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g; +}, +{ +pos = (81,-156); +ref = dotaccentcomb; +} +); +width = 338; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (81,-137); +ref = dotaccentcomb; +} +); +width = 465; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g; +}, +{ +pos = (198,-155); +ref = dotaccentcomb; +} +); +width = 575; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g; +}, +{ +pos = (160,-134); +ref = dotaccentcomb; +} +); +width = 641; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g; +}, +{ +pos = (170,-155); +ref = dotaccentcomb; +} +); +width = 614; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g; +}, +{ +pos = (165,-129); +ref = dotaccentcomb; +} +); +width = 695; +} +); +unicode = 289; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.ss01.glyph new file mode 100644 index 00000000..26db2a56 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.ss01.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = gdotaccent.ss01; +kernLeft = KO_g; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g; +}, +{ +pos = (118,-156); +ref = dotaccentcomb.ss01; +} +); +width = 341; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g; +}, +{ +pos = (103,-137); +ref = dotaccentcomb.ss01; +} +); +width = 467; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g; +}, +{ +pos = (248,-155); +ref = dotaccentcomb.ss01; +} +); +width = 623; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g; +}, +{ +pos = (195,-129); +ref = dotaccentcomb.ss01; +} +); +width = 701; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (132,-156); +ref = dotaccentcomb.ss01; +} +); +width = 311; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g; +}, +{ +pos = (108,-137); +ref = dotaccentcomb.ss01; +} +); +width = 451; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g; +}, +{ +pos = (245,-155); +ref = dotaccentcomb.ss01; +} +); +width = 544; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (182,-134); +ref = dotaccentcomb.ss01; +} +); +width = 613; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (248,-155); +ref = dotaccentcomb.ss01; +} +); +width = 623; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = g; +}, +{ +alignment = -1; +pos = (195,-129); +ref = dotaccentcomb.ss01; +} +); +width = 701; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (238,-155); +ref = dotaccentcomb.ss01; +} +); +width = 580; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (175,-134); +ref = dotaccentcomb.ss01; +} +); +width = 614; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g; +}, +{ +pos = (95,-156); +ref = dotaccentcomb.ss01; +} +); +width = 338; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g; +}, +{ +pos = (87,-137); +ref = dotaccentcomb.ss01; +} +); +width = 465; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g; +}, +{ +pos = (211,-155); +ref = dotaccentcomb.ss01; +} +); +width = 575; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g; +}, +{ +pos = (165,-134); +ref = dotaccentcomb.ss01; +} +); +width = 641; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g; +}, +{ +pos = (183,-155); +ref = dotaccentcomb.ss01; +} +); +width = 614; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g; +}, +{ +pos = (174,-134); +ref = dotaccentcomb.ss01; +} +); +width = 695; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.ss01.ss06.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.ss01.ss06.glyph new file mode 100644 index 00000000..dd18a296 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.ss01.ss06.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = gdotaccent.ss01.ss06; +kernRight = KO_g.ss06; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (109,-156); +ref = dotaccentcomb.ss01; +} +); +width = 325; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (93,-137); +ref = dotaccentcomb.ss01; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (205,-155); +ref = dotaccentcomb.ss01; +} +); +width = 544; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (155,-129); +ref = dotaccentcomb.ss01; +} +); +width = 643; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (121,-156); +ref = dotaccentcomb.ss01; +} +); +width = 309; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (98,-137); +ref = dotaccentcomb.ss01; +} +); +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (196,-156); +ref = dotaccentcomb.ss01; +} +); +width = 480; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g.ss06; +}, +{ +alignment = -1; +pos = (153,-134); +ref = dotaccentcomb.ss01; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (210,-155); +ref = dotaccentcomb.ss01; +} +); +width = 534; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (160,-129); +ref = dotaccentcomb.ss01; +} +); +width = 633; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (194,-156); +ref = dotaccentcomb.ss01; +} +); +width = 514; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (137,-134); +ref = dotaccentcomb.ss01; +} +); +width = 564; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (68,-156); +ref = dotaccentcomb.ss01; +} +); +width = 329; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (36,-137); +ref = dotaccentcomb.ss01; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (143,-155); +ref = dotaccentcomb.ss01; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (90,-134); +ref = dotaccentcomb.ss01; +} +); +width = 606; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (168,-155); +ref = dotaccentcomb.ss01; +} +); +width = 571; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (102,-134); +ref = dotaccentcomb.ss01; +} +); +width = 655; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.ss06.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.ss06.glyph new file mode 100644 index 00000000..78b044ee --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gdotaccent.ss06.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = gdotaccent.ss06; +kernRight = KO_g.ss06; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (101,-156); +ref = dotaccentcomb; +} +); +width = 325; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (88,-137); +ref = dotaccentcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (192,-155); +ref = dotaccentcomb; +} +); +width = 544; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (148,-129); +ref = dotaccentcomb; +} +); +width = 643; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (113,-151); +ref = dotaccentcomb; +} +); +width = 309; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (93,-137); +ref = dotaccentcomb; +} +); +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (183,-151); +ref = dotaccentcomb; +} +); +width = 480; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = g.ss06; +}, +{ +alignment = -1; +pos = (152,-134); +ref = dotaccentcomb; +} +); +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (197,-155); +ref = dotaccentcomb; +} +); +width = 534; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (153,-129); +ref = dotaccentcomb; +} +); +width = 633; +}, +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (181,-134); +ref = dotaccentcomb; +} +); +width = 514; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (138,-120); +ref = dotaccentcomb; +} +); +width = 564; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (54,-156); +ref = dotaccentcomb; +} +); +width = 329; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (30,-137); +ref = dotaccentcomb; +} +); +width = 481; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (130,-155); +ref = dotaccentcomb; +} +); +width = 528; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (85,-134); +ref = dotaccentcomb; +} +); +width = 606; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (155,-155); +ref = dotaccentcomb; +} +); +width = 571; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (93,-129); +ref = dotaccentcomb; +} +); +width = 655; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/germandbls.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/germandbls.glyph new file mode 100644 index 00000000..b54d98dc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/germandbls.glyph @@ -0,0 +1,1086 @@ +{ +glyphname = germandbls; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(108,572,ls), +(108,673,o), +(143,711,o), +(202,711,cs), +(268,711,o), +(304,665,o), +(304,568,cs), +(304,478,o), +(271,410,o), +(199,410,cs), +(169,410,l), +(169,382,l), +(208,382,ls), +(283,382,o), +(333,333,o), +(333,211,cs), +(333,101,o), +(287,26,o), +(176,26,cs), +(159,26,l), +(159,0,l), +(178,0,ls), +(289,0,o), +(363,60,o), +(363,213,cs), +(363,313,o), +(323,388,o), +(245,398,c), +(245,401,l), +(297,416,o), +(333,471,o), +(333,572,cs), +(333,678,o), +(283,739,o), +(202,739,cs), +(132,739,o), +(79,691,o), +(79,580,cs), +(79,0,l) +); +}, +{ +closed = 1; +nodes = ( +(90,489,l), +(90,516,l), +(-4,516,l), +(-4,489,l) +); +} +); +width = 391; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,500,ls), +(261,559,o), +(281,582,o), +(320,582,cs), +(358,582,o), +(380,559,o), +(380,510,cs), +(380,464,o), +(357,434,o), +(316,434,cs), +(297,434,l), +(297,315,l), +(319,315,ls), +(368,315,o), +(401,288,o), +(401,232,cs), +(401,179,o), +(373,143,o), +(305,143,cs), +(297,143,l), +(297,0,l), +(332,0,ls), +(478,0,o), +(576,77,o), +(576,218,cs), +(576,315,o), +(524,379,o), +(446,393,c), +(446,401,l), +(500,417,o), +(543,472,o), +(543,551,cs), +(543,664,o), +(452,739,o), +(322,739,cs), +(181,739,o), +(87,659,o), +(87,516,cs), +(87,0,l) +); +}, +{ +closed = 1; +nodes = ( +(222,408,l), +(222,544,l), +(11,544,l), +(11,408,l) +); +} +); +width = 586; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,0,l), +(166,512,ls), +(166,631,o), +(234,704,o), +(357,704,cs), +(467,704,o), +(540,656,o), +(540,554,cs), +(540,466,o), +(478,411,o), +(366,411,cs), +(316,411,l), +(316,378,l), +(401,378,ls), +(516,378,o), +(592,325,o), +(592,213,cs), +(592,106,o), +(528,35,o), +(382,35,cs), +(267,35,l), +(267,0,l), +(385,0,ls), +(538,0,o), +(629,79,o), +(629,211,cs), +(629,316,o), +(565,387,o), +(462,399,c), +(462,404,l), +(543,430,o), +(579,492,o), +(579,559,cs), +(579,674,o), +(488,739,o), +(357,739,cs), +(228,739,o), +(129,664,o), +(129,517,cs), +(129,0,l) +); +}, +{ +closed = 1; +nodes = ( +(142,483,l), +(142,517,l), +(12,517,l), +(12,483,l) +); +} +); +width = 658; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,0,l), +(339,468,ls), +(339,533,o), +(370,569,o), +(433,569,cs), +(476,569,o), +(513,547,o), +(513,502,cs), +(513,458,o), +(484,431,o), +(420,431,cs), +(398,431,l), +(398,312,l), +(452,312,ls), +(506,312,o), +(540,290,o), +(540,237,cs), +(540,188,o), +(509,158,o), +(443,158,cs), +(398,158,l), +(398,0,l), +(485,0,ls), +(675,0,o), +(763,87,o), +(763,214,cs), +(763,310,o), +(701,380,o), +(609,389,c), +(609,399,l), +(676,417,o), +(714,469,o), +(714,542,cs), +(714,660,o), +(612,739,o), +(430,739,cs), +(266,739,o), +(118,659,o), +(118,484,cs), +(118,0,l) +); +}, +{ +closed = 1; +nodes = ( +(258,387,l), +(258,544,l), +(3,544,l), +(3,387,l) +); +} +); +width = 769; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(100,572,ls), +(100,673,o), +(135,711,o), +(194,711,cs), +(260,711,o), +(296,665,o), +(296,568,cs), +(296,478,o), +(263,410,o), +(191,410,cs), +(161,410,l), +(161,382,l), +(200,382,ls), +(275,382,o), +(325,333,o), +(325,211,cs), +(325,101,o), +(279,26,o), +(168,26,cs), +(151,26,l), +(151,0,l), +(170,0,ls), +(281,0,o), +(355,60,o), +(355,213,cs), +(355,313,o), +(315,388,o), +(237,398,c), +(237,401,l), +(289,416,o), +(325,471,o), +(325,572,cs), +(325,678,o), +(275,739,o), +(194,739,cs), +(124,739,o), +(71,691,o), +(71,580,cs), +(71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(82,489,l), +(82,516,l), +(-12,516,l), +(-12,489,l) +); +} +); +width = 363; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,0,l), +(254,500,ls), +(254,559,o), +(274,582,o), +(313,582,cs), +(351,582,o), +(373,559,o), +(373,510,cs), +(373,464,o), +(350,434,o), +(309,434,cs), +(290,434,l), +(290,315,l), +(312,315,ls), +(361,315,o), +(394,288,o), +(394,232,cs), +(394,179,o), +(366,143,o), +(298,143,cs), +(290,143,l), +(290,0,l), +(325,0,ls), +(471,0,o), +(569,77,o), +(569,218,cs), +(569,315,o), +(517,379,o), +(439,393,c), +(439,401,l), +(493,417,o), +(536,472,o), +(536,551,cs), +(536,664,o), +(445,739,o), +(315,739,cs), +(174,739,o), +(80,659,o), +(80,516,cs), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(215,408,l), +(215,544,l), +(4,544,l), +(4,408,l) +); +} +); +width = 572; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,0,l), +(148,516,ls), +(148,634,o), +(209,704,o), +(320,704,cs), +(423,704,o), +(486,648,o), +(486,555,cs), +(486,467,o), +(430,411,o), +(328,411,cs), +(282,411,l), +(282,378,l), +(359,378,ls), +(470,378,o), +(533,312,o), +(533,214,cs), +(533,94,o), +(460,34,o), +(330,34,cs), +(240,34,l), +(240,0,l), +(333,0,ls), +(486,0,o), +(570,83,o), +(570,213,cs), +(570,314,o), +(503,388,o), +(413,399,c), +(413,404,l), +(487,429,o), +(521,490,o), +(521,560,cs), +(521,667,o), +(446,739,o), +(320,739,cs), +(201,739,o), +(111,666,o), +(111,521,cs), +(111,0,l) +); +}, +{ +closed = 1; +nodes = ( +(124,483,l), +(124,517,l), +(3,517,l), +(3,483,l) +); +} +); +width = 596; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,0,l), +(288,492,ls), +(288,545,o), +(319,572,o), +(367,572,cs), +(414,572,o), +(438,542,o), +(438,505,cs), +(438,465,o), +(407,435,o), +(357,435,cs), +(341,435,l), +(341,316,l), +(379,316,ls), +(436,316,o), +(467,294,o), +(467,238,cs), +(467,180,o), +(435,152,o), +(377,152,cs), +(341,152,l), +(341,0,l), +(398,0,ls), +(577,0,o), +(662,89,o), +(662,216,cs), +(662,315,o), +(601,380,o), +(524,391,c), +(524,399,l), +(578,416,o), +(613,473,o), +(613,541,cs), +(613,659,o), +(519,739,o), +(369,739,cs), +(219,739,o), +(97,666,o), +(97,467,cs), +(97,0,l) +); +}, +{ +closed = 1; +nodes = ( +(221,394,l), +(221,544,l), +(0,544,l), +(0,394,l) +); +} +); +width = 665; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,l), +(161,512,ls), +(161,631,o), +(229,704,o), +(352,704,cs), +(462,704,o), +(535,656,o), +(535,554,cs), +(535,466,o), +(473,411,o), +(361,411,cs), +(311,411,l), +(311,378,l), +(396,378,ls), +(511,378,o), +(587,325,o), +(587,213,cs), +(587,106,o), +(523,35,o), +(377,35,cs), +(262,35,l), +(262,0,l), +(380,0,ls), +(533,0,o), +(624,79,o), +(624,211,cs), +(624,316,o), +(560,387,o), +(457,399,c), +(457,404,l), +(538,430,o), +(574,492,o), +(574,559,cs), +(574,674,o), +(483,739,o), +(352,739,cs), +(223,739,o), +(124,664,o), +(124,517,cs), +(124,0,l) +); +}, +{ +closed = 1; +nodes = ( +(137,483,l), +(137,517,l), +(7,517,l), +(7,483,l) +); +} +); +width = 643; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,0,l), +(334,468,ls), +(334,533,o), +(365,569,o), +(428,569,cs), +(471,569,o), +(508,547,o), +(508,502,cs), +(508,458,o), +(479,431,o), +(415,431,cs), +(393,431,l), +(393,312,l), +(447,312,ls), +(501,312,o), +(535,290,o), +(535,237,cs), +(535,188,o), +(504,158,o), +(438,158,cs), +(393,158,l), +(393,0,l), +(480,0,ls), +(670,0,o), +(758,87,o), +(758,214,cs), +(758,310,o), +(696,380,o), +(604,389,c), +(604,399,l), +(671,417,o), +(709,469,o), +(709,542,cs), +(709,660,o), +(607,739,o), +(425,739,cs), +(261,739,o), +(113,659,o), +(113,484,cs), +(113,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,387,l), +(253,544,l), +(-2,544,l), +(-2,387,l) +); +} +); +width = 759; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(167,0,l), +(167,516,ls), +(167,634,o), +(228,704,o), +(337,704,cs), +(438,704,o), +(499,648,o), +(499,555,cs), +(499,467,o), +(444,411,o), +(345,411,cs), +(299,411,l), +(299,378,l), +(374,378,ls), +(483,378,o), +(545,312,o), +(545,214,cs), +(545,94,o), +(473,34,o), +(346,34,cs), +(257,34,l), +(257,0,l), +(349,0,ls), +(499,0,o), +(581,83,o), +(581,213,cs), +(581,314,o), +(516,388,o), +(428,399,c), +(428,404,l), +(500,429,o), +(534,490,o), +(534,560,cs), +(534,667,o), +(459,739,o), +(337,739,cs), +(220,739,o), +(132,666,o), +(132,521,cs), +(132,0,l) +); +}, +{ +closed = 1; +nodes = ( +(145,483,l), +(145,517,l), +(26,517,l), +(26,483,l) +); +} +); +width = 629; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(299,0,l), +(299,492,ls), +(299,545,o), +(329,572,o), +(373,572,cs), +(418,572,o), +(441,542,o), +(441,505,cs), +(441,465,o), +(411,435,o), +(363,435,cs), +(348,435,l), +(348,316,l), +(385,316,ls), +(439,316,o), +(468,294,o), +(468,238,cs), +(468,180,o), +(438,152,o), +(383,152,cs), +(349,152,l), +(349,0,l), +(404,0,ls), +(579,0,o), +(661,89,o), +(661,216,cs), +(661,315,o), +(602,380,o), +(528,391,c), +(528,399,l), +(580,416,o), +(614,474,o), +(614,541,cs), +(614,659,o), +(522,739,o), +(375,739,cs), +(230,739,o), +(110,666,o), +(110,467,cs), +(110,0,l) +); +}, +{ +closed = 1; +nodes = ( +(233,394,l), +(233,544,l), +(16,544,l), +(16,394,l) +); +} +); +width = 679; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,0,l), +(171,577,ls), +(191,671,o), +(229,708,o), +(284,708,cs), +(341,708,o), +(376,672,o), +(366,578,cs), +(353,475,o), +(300,408,o), +(226,408,cs), +(197,408,l), +(190,379,l), +(212,379,ls), +(297,379,o), +(341,319,o), +(316,198,cs), +(290,76,o), +(226,26,o), +(134,26,cs), +(118,26,l), +(112,0,l), +(131,0,ls), +(249,0,o), +(323,76,o), +(344,196,cs), +(360,288,o), +(344,373,o), +(269,392,c), +(269,395,l), +(342,409,o), +(385,497,o), +(394,579,cs), +(406,673,o), +(367,736,o), +(285,736,cs), +(220,736,o), +(166,691,o), +(144,588,c), +(22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(131,489,l), +(136,516,l), +(50,516,l), +(44,489,l) +); +} +); +width = 385; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,0,l), +(316,519,ls), +(325,560,o), +(348,579,o), +(380,579,cs), +(414,579,o), +(435,560,o), +(434,522,cs), +(432,467,o), +(399,431,o), +(352,431,cs), +(334,431,l), +(309,313,l), +(331,313,ls), +(380,313,o), +(405,285,o), +(394,225,cs), +(382,163,o), +(349,137,o), +(290,137,cs), +(273,137,l), +(244,0,l), +(308,0,ls), +(441,0,o), +(541,66,o), +(561,183,cs), +(576,270,o), +(550,358,o), +(471,379,c), +(473,387,l), +(539,401,o), +(586,457,o), +(598,528,cs), +(618,653,o), +(534,736,o), +(404,736,cs), +(272,736,o), +(175,668,o), +(145,526,cs), +(35,0,l) +); +}, +{ +closed = 1; +nodes = ( +(135,403,l), +(165,541,l), +(67,541,l), +(38,403,l) +); +} +); +width = 589; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(223,527,ls), +(246,636,o), +(312,700,o), +(416,700,cs), +(508,700,o), +(567,649,o), +(564,558,cs), +(561,467,o), +(498,407,o), +(389,407,cs), +(331,407,l), +(324,372,l), +(390,372,ls), +(497,372,o), +(558,306,o), +(536,192,cs), +(515,97,o), +(451,34,o), +(320,34,cs), +(200,34,l), +(193,0,l), +(316,0,ls), +(453,0,o), +(554,68,o), +(573,189,cs), +(589,290,o), +(550,364,o), +(459,387,c), +(460,392,l), +(537,409,o), +(599,476,o), +(602,560,cs), +(606,673,o), +(529,736,o), +(418,736,cs), +(306,736,o), +(213,670,o), +(185,536,cs), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(182,483,l), +(190,517,l), +(77,517,l), +(70,483,l) +); +} +); +width = 634; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,l), +(351,493,ls), +(361,541,o), +(389,563,o), +(432,563,cs), +(473,563,o), +(492,540,o), +(492,508,cs), +(492,466,o), +(463,433,o), +(410,433,cs), +(388,433,l), +(362,311,l), +(404,311,ls), +(443,311,o), +(467,291,o), +(467,256,cs), +(467,206,o), +(434,168,o), +(372,168,cs), +(332,168,l), +(298,0,l), +(394,0,ls), +(552,0,o), +(659,88,o), +(659,220,cs), +(659,299,o), +(622,356,o), +(557,373,c), +(559,381,l), +(635,400,o), +(680,467,o), +(680,551,cs), +(680,662,o), +(597,736,o), +(447,736,cs), +(318,736,o), +(192,675,o), +(161,527,cs), +(50,0,l) +); +}, +{ +closed = 1; +nodes = ( +(147,389,l), +(183,544,l), +(75,544,l), +(41,389,l) +); +} +); +width = 694; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(104,0,l), +(220,527,ls), +(243,631,o), +(322,700,o), +(435,700,cs), +(538,700,o), +(596,648,o), +(596,564,cs), +(596,467,o), +(522,407,o), +(415,407,cs), +(342,407,l), +(334,372,l), +(411,372,ls), +(510,372,o), +(573,327,o), +(573,234,cs), +(573,106,o), +(476,34,o), +(334,34,cs), +(203,34,l), +(196,0,l), +(330,0,ls), +(507,0,o), +(608,91,o), +(608,226,cs), +(608,314,o), +(561,374,o), +(480,387,c), +(481,392,l), +(567,407,o), +(634,472,o), +(634,569,cs), +(634,670,o), +(564,736,o), +(438,736,cs), +(311,736,o), +(211,661,o), +(182,529,cs), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(179,483,l), +(186,517,l), +(66,517,l), +(57,483,l) +); +} +); +width = 649; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,0,l), +(359,480,ls), +(369,530,o), +(397,560,o), +(448,560,cs), +(492,560,o), +(517,539,o), +(517,504,cs), +(517,466,o), +(492,435,o), +(444,435,cs), +(408,435,l), +(382,306,l), +(425,306,ls), +(468,306,o), +(494,285,o), +(494,246,cs), +(494,189,o), +(459,164,o), +(392,164,cs), +(351,164,l), +(317,0,l), +(417,0,ls), +(610,0,o), +(715,88,o), +(715,217,cs), +(715,303,o), +(668,359,o), +(595,372,c), +(597,380,l), +(671,398,o), +(722,464,o), +(722,545,cs), +(722,660,o), +(629,736,o), +(469,736,cs), +(312,736,o), +(181,662,o), +(149,511,cs), +(42,0,l) +); +}, +{ +closed = 1; +nodes = ( +(135,378,l), +(174,544,l), +(62,544,l), +(26,378,l) +); +} +); +width = 735; +} +); +unicode = 223; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/grave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/grave.glyph new file mode 100644 index 00000000..95064b51 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/grave.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = grave; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 189; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 321; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 203; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 351; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = gravecomb; +} +); +width = 189; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = gravecomb; +} +); +width = 321; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = gravecomb; +} +); +width = 189; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = gravecomb; +} +); +width = 301; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = gravecomb; +} +); +width = 203; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = gravecomb; +} +); +width = 351; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 190; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 308; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 185; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 305; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 187; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 323; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 199; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 343; +} +); +unicode = 96; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/gravecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/gravecomb.glyph new file mode 100644 index 00000000..67976fd6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/gravecomb.glyph @@ -0,0 +1,392 @@ +{ +glyphname = gravecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (134,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,746,l), +(75,882,l), +(40,882,l), +(118,746,l) +); +} +); +width = 189; +}, +{ +anchors = ( +{ +name = _top; +pos = (209,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,735,l), +(228,884,l), +(40,884,l), +(137,735,l) +); +} +); +width = 321; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,746,l), +(84,882,l), +(40,882,l), +(127,746,l) +); +} +); +width = 203; +}, +{ +anchors = ( +{ +name = _top; +pos = (234,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,729,l), +(248,878,l), +(40,878,l), +(157,729,l) +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = _top; +pos = (114,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,746,l), +(55,882,l), +(20,882,l), +(98,746,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = _top; +pos = (199,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,735,l), +(218,884,l), +(30,884,l), +(127,735,l) +); +} +); +width = 301; +}, +{ +anchors = ( +{ +name = _top; +pos = (114,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,746,l), +(61,882,l), +(20,882,l), +(98,746,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = _top; +pos = (188,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,735,l), +(207,884,l), +(19,884,l), +(116,735,l) +); +} +); +width = 279; +}, +{ +anchors = ( +{ +name = _top; +pos = (134,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,746,l), +(74,882,l), +(30,882,l), +(117,746,l) +); +} +); +width = 183; +}, +{ +anchors = ( +{ +name = _top; +pos = (224,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,729,l), +(238,878,l), +(30,878,l), +(147,729,l) +); +} +); +width = 331; +}, +{ +anchors = ( +{ +name = _top; +pos = (135,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(150,746,l), +(82,882,l), +(43,882,l), +(119,746,l) +); +} +); +width = 190; +}, +{ +anchors = ( +{ +name = _top; +pos = (199,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(270,735,l), +(225,884,l), +(39,884,l), +(128,735,l) +); +} +); +width = 308; +}, +{ +anchors = ( +{ +name = _top; +pos = (218,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,746,l), +(200,882,l), +(169,882,l), +(219,746,l) +); +} +); +width = 185; +}, +{ +anchors = ( +{ +name = _top; +pos = (285,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,735,l), +(340,884,l), +(167,884,l), +(232,735,l) +); +} +); +width = 305; +}, +{ +anchors = ( +{ +name = _top; +pos = (219,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(248,746,l), +(205,882,l), +(169,882,l), +(221,746,l) +); +} +); +width = 187; +}, +{ +anchors = ( +{ +name = _top; +pos = (296,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,735,l), +(353,884,l), +(167,884,l), +(237,735,l) +); +} +); +width = 323; +}, +{ +anchors = ( +{ +name = _top; +pos = (230,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,746,l), +(209,882,l), +(169,882,l), +(228,746,l) +); +} +); +width = 199; +}, +{ +anchors = ( +{ +name = _top; +pos = (317,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(398,729,l), +(365,878,l), +(165,878,l), +(252,729,l) +); +} +); +width = 343; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 768; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/greater.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/greater.glyph new file mode 100644 index 00000000..9625bfdf --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/greater.glyph @@ -0,0 +1,415 @@ +{ +glyphname = greater; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(461,252,l), +(461,466,l), +(25,644,l), +(25,453,l), +(267,366,l), +(267,352,l), +(25,268,l), +(25,77,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,339,l), +(458,383,l), +(27,577,l), +(27,545,l), +(427,363,l), +(427,359,l), +(27,177,l), +(27,145,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(628,338,l), +(628,384,l), +(96,606,l), +(96,567,l), +(587,363,l), +(587,359,l), +(96,155,l), +(96,116,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,242,l), +(649,475,l), +(89,664,l), +(89,455,l), +(441,367,l), +(441,351,l), +(89,266,l), +(89,58,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,339,l), +(438,383,l), +(7,577,l), +(7,545,l), +(407,363,l), +(407,359,l), +(7,177,l), +(7,145,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,252,l), +(451,466,l), +(15,644,l), +(15,453,l), +(257,366,l), +(257,352,l), +(15,268,l), +(15,77,l) +); +} +); +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,339,l), +(523,383,l), +(42,589,l), +(42,553,l), +(490,363,l), +(490,359,l), +(42,169,l), +(42,133,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-30, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +-30, +-30 +); +stem = -2; +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,252,l), +(537,466,l), +(31,644,l), +(31,453,l), +(345,366,l), +(345,352,l), +(31,268,l), +(31,77,l) +); +} +); +width = 555; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(618,338,l), +(618,384,l), +(86,606,l), +(86,567,l), +(577,363,l), +(577,359,l), +(86,155,l), +(86,116,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(639,242,l), +(639,475,l), +(79,664,l), +(79,455,l), +(431,367,l), +(431,351,l), +(79,266,l), +(79,58,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(536,339,l), +(536,383,l), +(63,589,l), +(63,553,l), +(503,363,l), +(503,359,l), +(63,169,l), +(63,133,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-30, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +-30, +-30 +); +stem = -2; +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(545,252,l), +(545,466,l), +(53,644,l), +(53,453,l), +(354,366,l), +(354,352,l), +(53,268,l), +(53,77,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,339,l), +(483,383,l), +(96,577,l), +(90,545,l), +(448,365,l), +(448,361,l), +(13,181,l), +(5,145,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,252,l), +(500,466,l), +(106,644,l), +(65,453,l), +(287,366,l), +(283,352,l), +(27,268,l), +(-14,77,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(557,337,l), +(567,382,l), +(133,589,l), +(126,555,l), +(530,364,l), +(529,360,l), +(45,171,l), +(38,133,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(554,252,l), +(599,466,l), +(135,644,l), +(95,453,l), +(388,366,l), +(384,352,l), +(57,268,l), +(16,77,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(641,339,l), +(651,383,l), +(171,606,l), +(163,569,l), +(607,365,l), +(606,361,l), +(77,157,l), +(68,116,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(639,242,l), +(689,475,l), +(174,664,l), +(130,455,l), +(459,367,l), +(457,351,l), +(90,266,l), +(47,58,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 62; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/greaterequal.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/greaterequal.glyph new file mode 100644 index 00000000..d1f16c28 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/greaterequal.glyph @@ -0,0 +1,578 @@ +{ +glyphname = greaterequal; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,307,l), +(477,516,l), +(9,659,l), +(9,489,l), +(285,416,l), +(285,407,l), +(9,328,l), +(9,158,l) +); +}, +{ +closed = 1; +nodes = ( +(477,0,l), +(477,132,l), +(9,132,l), +(9,0,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,339,l), +(459,383,l), +(28,577,l), +(28,545,l), +(428,363,l), +(428,359,l), +(28,177,l), +(28,145,l) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(459,28,l), +(28,28,l), +(28,0,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(634,353,l), +(634,400,l), +(92,614,l), +(92,573,l), +(594,378,l), +(594,375,l), +(92,173,l), +(92,133,l) +); +}, +{ +closed = 1; +nodes = ( +(634,0,l), +(634,34,l), +(92,34,l), +(92,0,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(639,310,l), +(639,537,l), +(94,673,l), +(94,488,l), +(432,429,l), +(432,419,l), +(94,354,l), +(94,170,l) +); +}, +{ +closed = 1; +nodes = ( +(639,0,l), +(639,143,l), +(94,143,l), +(94,0,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,339,l), +(439,383,l), +(8,577,l), +(8,545,l), +(408,363,l), +(408,359,l), +(8,177,l), +(8,145,l) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(439,28,l), +(8,28,l), +(8,0,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,307,l), +(472,516,l), +(4,659,l), +(4,489,l), +(280,416,l), +(280,407,l), +(4,328,l), +(4,158,l) +); +}, +{ +closed = 1; +nodes = ( +(472,0,l), +(472,132,l), +(4,132,l), +(4,0,l) +); +} +); +width = 470; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(524,339,l), +(524,383,l), +(43,589,l), +(43,553,l), +(491,363,l), +(491,359,l), +(43,169,l), +(43,133,l) +); +}, +{ +closed = 1; +nodes = ( +(524,0,l), +(524,32,l), +(43,32,l), +(43,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(538,307,l), +(538,516,l), +(30,659,l), +(30,489,l), +(347,416,l), +(347,407,l), +(30,328,l), +(30,158,l) +); +}, +{ +closed = 1; +nodes = ( +(538,0,l), +(538,132,l), +(30,132,l), +(30,0,l) +); +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(624,353,l), +(624,400,l), +(82,614,l), +(82,573,l), +(584,378,l), +(584,375,l), +(82,173,l), +(82,133,l) +); +}, +{ +closed = 1; +nodes = ( +(624,0,l), +(624,34,l), +(82,34,l), +(82,0,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(629,310,l), +(629,537,l), +(84,673,l), +(84,488,l), +(422,429,l), +(422,419,l), +(84,354,l), +(84,170,l) +); +}, +{ +closed = 1; +nodes = ( +(629,0,l), +(629,143,l), +(84,143,l), +(84,0,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(537,339,l), +(537,383,l), +(64,589,l), +(64,553,l), +(504,363,l), +(504,359,l), +(64,169,l), +(64,133,l) +); +}, +{ +closed = 1; +nodes = ( +(537,0,l), +(537,32,l), +(64,32,l), +(64,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(543,307,l), +(543,516,l), +(50,659,l), +(50,489,l), +(353,416,l), +(353,407,l), +(50,328,l), +(50,158,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(543,132,l), +(50,132,l), +(50,0,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(474,339,l), +(484,383,l), +(97,577,l), +(91,545,l), +(449,365,l), +(449,361,l), +(14,181,l), +(6,145,l) +); +}, +{ +closed = 1; +nodes = ( +(403,0,l), +(409,28,l), +(-18,28,l), +(-24,0,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(481,307,l), +(525,516,l), +(91,659,l), +(56,489,l), +(314,416,l), +(312,407,l), +(22,328,l), +(-14,158,l) +); +}, +{ +closed = 1; +nodes = ( +(417,0,l), +(444,132,l), +(-20,132,l), +(-48,0,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(558,337,l), +(568,382,l), +(134,589,l), +(127,555,l), +(531,364,l), +(530,360,l), +(46,171,l), +(39,133,l) +); +}, +{ +closed = 1; +nodes = ( +(488,0,l), +(495,32,l), +(19,32,l), +(12,0,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(564,307,l), +(608,516,l), +(135,659,l), +(99,489,l), +(397,416,l), +(396,407,l), +(66,328,l), +(30,158,l) +); +}, +{ +closed = 1; +nodes = ( +(500,0,l), +(527,132,l), +(24,132,l), +(-3,0,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(639,339,l), +(649,383,l), +(169,606,l), +(161,569,l), +(605,365,l), +(604,361,l), +(75,157,l), +(66,116,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(586,34,l), +(50,34,l), +(43,0,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(644,310,l), +(691,537,l), +(180,673,l), +(141,488,l), +(464,429,l), +(461,419,l), +(112,354,l), +(74,170,l) +); +}, +{ +closed = 1; +nodes = ( +(578,0,l), +(608,143,l), +(68,143,l), +(39,0,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 8805; +userData = { +com.schriftgestaltung.Glyphs.lastChange = "2017-05-03 17:00:02 +0000"; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/guillemetleft.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/guillemetleft.glyph new file mode 100644 index 00000000..9b829596 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/guillemetleft.glyph @@ -0,0 +1,570 @@ +{ +glyphname = guillemetleft; +kernLeft = KO_guillemetleft; +kernRight = KO_guillemetleft; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,100,l), +(185,321,l), +(282,541,l), +(131,541,l), +(12,321,l), +(131,100,l) +); +}, +{ +closed = 1; +nodes = ( +(518,100,l), +(421,321,l), +(518,541,l), +(367,541,l), +(248,321,l), +(367,100,l) +); +} +); +width = 540; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,100,l), +(58,308,l), +(162,516,l), +(134,516,l), +(24,308,l), +(134,100,l) +); +}, +{ +closed = 1; +nodes = ( +(302,100,l), +(198,308,l), +(302,516,l), +(274,516,l), +(164,308,l), +(274,100,l) +); +} +); +width = 325; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(187,0,l), +(70,259,l), +(187,517,l), +(153,517,l), +(33,259,l), +(153,0,l) +); +}, +{ +closed = 1; +nodes = ( +(332,0,l), +(215,259,l), +(332,517,l), +(298,517,l), +(178,259,l), +(298,0,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,80,l), +(74,299,l), +(187,517,l), +(153,517,l), +(33,299,l), +(153,80,l) +); +}, +{ +closed = 1; +nodes = ( +(332,80,l), +(219,299,l), +(332,517,l), +(298,517,l), +(178,299,l), +(298,80,l) +); +} +); +width = 366; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,72,l), +(208,309,l), +(315,544,l), +(134,544,l), +(5,309,l), +(134,72,l) +); +}, +{ +closed = 1; +nodes = ( +(591,72,l), +(484,309,l), +(591,544,l), +(410,544,l), +(281,309,l), +(410,72,l) +); +} +); +width = 598; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(142,100,l), +(38,308,l), +(142,516,l), +(114,516,l), +(4,308,l), +(114,100,l) +); +}, +{ +closed = 1; +nodes = ( +(282,100,l), +(178,308,l), +(282,516,l), +(254,516,l), +(144,308,l), +(254,100,l) +); +} +); +width = 285; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,100,l), +(176,321,l), +(273,541,l), +(122,541,l), +(3,321,l), +(122,100,l) +); +}, +{ +closed = 1; +nodes = ( +(509,100,l), +(412,321,l), +(509,541,l), +(358,541,l), +(239,321,l), +(358,100,l) +); +} +); +width = 521; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,80,l), +(72,299,l), +(185,517,l), +(152,517,l), +(32,299,l), +(152,80,l) +); +}, +{ +closed = 1; +nodes = ( +(330,80,l), +(217,299,l), +(330,517,l), +(297,517,l), +(177,299,l), +(297,80,l) +); +} +); +width = 362; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,64,l), +(187,305,l), +(294,544,l), +(130,544,l), +(1,305,l), +(130,64,l) +); +}, +{ +closed = 1; +nodes = ( +(553,64,l), +(446,305,l), +(553,544,l), +(389,544,l), +(260,305,l), +(389,64,l) +); +} +); +width = 555; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(187,0,l), +(70,259,l), +(187,517,l), +(153,517,l), +(33,259,l), +(153,0,l) +); +}, +{ +closed = 1; +nodes = ( +(332,0,l), +(215,259,l), +(332,517,l), +(298,517,l), +(178,259,l), +(298,0,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,80,l), +(64,299,l), +(177,517,l), +(143,517,l), +(23,299,l), +(143,80,l) +); +}, +{ +closed = 1; +nodes = ( +(322,80,l), +(209,299,l), +(322,517,l), +(288,517,l), +(168,299,l), +(288,80,l) +); +} +); +width = 346; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(310,72,l), +(203,309,l), +(310,544,l), +(129,544,l), +(0,309,l), +(129,72,l) +); +}, +{ +closed = 1; +nodes = ( +(586,72,l), +(479,309,l), +(586,544,l), +(405,544,l), +(276,309,l), +(405,72,l) +); +} +); +width = 588; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(204,80,l), +(93,299,l), +(204,517,l), +(171,517,l), +(53,299,l), +(171,80,l) +); +}, +{ +closed = 1; +nodes = ( +(346,80,l), +(236,299,l), +(346,517,l), +(314,517,l), +(196,299,l), +(314,80,l) +); +} +); +width = 399; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(306,64,l), +(205,305,l), +(306,544,l), +(144,544,l), +(21,305,l), +(144,64,l) +); +}, +{ +closed = 1; +nodes = ( +(557,64,l), +(456,305,l), +(557,544,l), +(395,544,l), +(272,305,l), +(395,64,l) +); +} +); +width = 578; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,79,l), +(99,297,l), +(245,516,l), +(210,516,l), +(62,297,l), +(143,79,l) +); +}, +{ +closed = 1; +nodes = ( +(316,78,l), +(243,297,l), +(390,516,l), +(356,516,l), +(206,297,l), +(287,78,l) +); +} +); +width = 403; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,100,l), +(208,320,l), +(355,541,l), +(200,541,l), +(35,320,l), +(154,100,l) +); +}, +{ +closed = 1; +nodes = ( +(529,99,l), +(441,320,l), +(596,541,l), +(434,541,l), +(270,320,l), +(376,99,l) +); +} +); +width = 586; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,80,l), +(99,298,l), +(245,517,l), +(210,517,l), +(62,298,l), +(143,80,l) +); +}, +{ +closed = 1; +nodes = ( +(316,79,l), +(243,298,l), +(390,517,l), +(356,517,l), +(206,298,l), +(287,79,l) +); +} +); +width = 403; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(307,80,l), +(212,316,l), +(362,544,l), +(199,544,l), +(32,326,l), +(149,80,l) +); +}, +{ +closed = 1; +nodes = ( +(547,80,l), +(461,306,l), +(618,544,l), +(450,544,l), +(284,314,l), +(388,80,l) +); +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,80,l), +(81,298,l), +(227,517,l), +(192,517,l), +(44,298,l), +(125,80,l) +); +}, +{ +closed = 1; +nodes = ( +(298,79,l), +(225,298,l), +(372,517,l), +(338,517,l), +(188,298,l), +(269,79,l) +); +} +); +width = 365; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,64,l), +(235,304,l), +(387,544,l), +(212,544,l), +(40,304,l), +(164,64,l) +); +}, +{ +closed = 1; +nodes = ( +(586,64,l), +(497,304,l), +(660,544,l), +(475,544,l), +(308,304,l), +(413,64,l) +); +} +); +width = 644; +} +); +unicode = 171; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/guillemetright.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/guillemetright.glyph new file mode 100644 index 00000000..4cdb50f9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/guillemetright.glyph @@ -0,0 +1,233 @@ +{ +color = 6; +glyphname = guillemetright; +kernLeft = KO_guillemetright; +kernRight = KO_guillemetright; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (540,641); +ref = guillemetleft; +} +); +width = 540; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (325,616); +ref = guillemetleft; +} +); +width = 325; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (366,597); +ref = guillemetleft; +} +); +width = 366; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (598,616); +ref = guillemetleft; +} +); +width = 598; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (325,616); +ref = guillemetleft; +} +); +width = 325; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (521,641); +ref = guillemetleft; +} +); +width = 521; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (402,597); +ref = guillemetleft; +} +); +width = 402; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (577,608); +ref = guillemetleft; +} +); +width = 577; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (366,597); +ref = guillemetleft; +} +); +width = 366; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (588,616); +ref = guillemetleft; +} +); +width = 588; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (399,597); +ref = guillemetleft; +} +); +width = 399; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (578,608); +ref = guillemetleft; +} +); +width = 578; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (419,594); +ref = guillemetleft; +} +); +width = 403; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (607,641); +ref = guillemetleft; +} +); +width = 586; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (420,601); +ref = guillemetleft; +} +); +width = 403; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (622,624); +ref = guillemetleft; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (382,597); +ref = guillemetleft; +} +); +width = 365; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (657,608); +ref = guillemetleft; +} +); +width = 644; +} +); +metricLeft = "=|guillemetleft"; +metricRight = "=|guillemetleft"; +unicode = 187; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/guilsinglleft.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/guilsinglleft.glyph new file mode 100644 index 00000000..2e855e1f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/guilsinglleft.glyph @@ -0,0 +1,322 @@ +{ +glyphname = guilsinglleft; +kernLeft = KO_guillemetleft; +kernRight = KO_guillemetleft; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,100,l), +(185,321,l), +(282,541,l), +(131,541,l), +(12,321,l), +(131,100,l) +); +} +); +width = 304; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,100,l), +(58,308,l), +(162,516,l), +(134,516,l), +(24,308,l), +(134,100,l) +); +} +); +width = 185; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,80,l), +(74,299,l), +(187,517,l), +(153,517,l), +(33,299,l), +(153,80,l) +); +} +); +width = 221; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,72,l), +(208,309,l), +(315,544,l), +(134,544,l), +(5,309,l), +(134,72,l) +); +} +); +width = 322; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(142,100,l), +(38,308,l), +(142,516,l), +(114,516,l), +(4,308,l), +(114,100,l) +); +} +); +width = 145; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,100,l), +(176,321,l), +(273,541,l), +(122,541,l), +(3,321,l), +(122,100,l) +); +} +); +width = 285; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,80,l), +(72,299,l), +(185,517,l), +(152,517,l), +(32,299,l), +(152,80,l) +); +} +); +width = 217; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,64,l), +(187,305,l), +(294,544,l), +(130,544,l), +(1,305,l), +(130,64,l) +); +} +); +width = 296; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,80,l), +(64,299,l), +(177,517,l), +(143,517,l), +(23,299,l), +(143,80,l) +); +} +); +width = 201; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(310,72,l), +(203,309,l), +(310,544,l), +(129,544,l), +(0,309,l), +(129,72,l) +); +} +); +width = 312; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(204,80,l), +(93,299,l), +(204,517,l), +(171,517,l), +(53,299,l), +(171,80,l) +); +} +); +width = 256; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(301,64,l), +(205,305,l), +(301,544,l), +(139,544,l), +(21,305,l), +(139,64,l) +); +} +); +width = 322; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,79,l), +(99,297,l), +(245,516,l), +(210,516,l), +(62,297,l), +(143,79,l) +); +} +); +width = 259; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,100,l), +(208,320,l), +(355,541,l), +(200,541,l), +(35,320,l), +(154,100,l) +); +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,80,l), +(99,298,l), +(245,517,l), +(210,517,l), +(62,298,l), +(143,80,l) +); +} +); +width = 259; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(186,257,l), +(366,544,l), +(199,544,l), +(22,275,l), +(102,0,l) +); +} +); +width = 333; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,80,l), +(81,298,l), +(227,517,l), +(192,517,l), +(44,298,l), +(125,80,l) +); +} +); +width = 221; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,64,l), +(235,304,l), +(387,544,l), +(212,544,l), +(40,304,l), +(164,64,l) +); +} +); +width = 388; +} +); +metricLeft = guillemetleft; +metricRight = guillemetleft; +unicode = 8249; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/guilsinglright.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/guilsinglright.glyph new file mode 100644 index 00000000..292664a8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/guilsinglright.glyph @@ -0,0 +1,233 @@ +{ +color = 6; +glyphname = guilsinglright; +kernLeft = KO_guillemetright; +kernRight = KO_guillemetright; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (304,641); +ref = guilsinglleft; +} +); +width = 304; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (185,616); +ref = guilsinglleft; +} +); +width = 185; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (221,597); +ref = guilsinglleft; +} +); +width = 221; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (322,617); +ref = guilsinglleft; +} +); +width = 322; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (185,616); +ref = guilsinglleft; +} +); +width = 185; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (285,641); +ref = guilsinglleft; +} +); +width = 285; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (257,597); +ref = guilsinglleft; +} +); +width = 257; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (318,608); +ref = guilsinglleft; +} +); +width = 318; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (221,597); +ref = guilsinglleft; +} +); +width = 221; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (312,617); +ref = guilsinglleft; +} +); +width = 312; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (256,597); +ref = guilsinglleft; +} +); +width = 256; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (322,608); +ref = guilsinglleft; +} +); +width = 322; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (275,595); +ref = guilsinglleft; +} +); +width = 259; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (381,642); +ref = guilsinglleft; +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (276,597); +ref = guilsinglleft; +} +); +width = 259; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (333,544); +ref = guilsinglleft; +} +); +width = 333; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (238,597); +ref = guilsinglleft; +} +); +width = 221; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (401,608); +ref = guilsinglleft; +} +); +width = 388; +} +); +metricLeft = guillemetright; +metricRight = guillemetright; +unicode = 8250; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/h.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/h.glyph new file mode 100644 index 00000000..914763d8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/h.glyph @@ -0,0 +1,1158 @@ +{ +glyphname = h; +kernLeft = KO_i; +kernRight = KO_n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = center; +pos = (136,631); +}, +{ +name = top; +pos = (116,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,291,ls), +(264,355,o), +(296,400,o), +(360,400,cs), +(414,400,o), +(444,369,o), +(444,302,cs), +(444,0,l), +(636,0,l), +(636,322,ls), +(636,458,o), +(584,554,o), +(450,554,cs), +(370,554,o), +(307,519,o), +(274,447,c), +(264,447,l), +(264,750,l), +(73,750,l), +(73,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,328,ls), +(204,381,o), +(211,411,o), +(241,411,cs), +(263,411,o), +(275,396,o), +(275,335,cs), +(275,0,l), +(451,0,l), +(451,347,ls), +(451,494,o), +(411,551,o), +(320,551,cs), +(272,551,o), +(233,526,o), +(210,477,c), +(204,477,l), +(204,729,l), +(27,729,l), +(27,0,l) +); +} +); +width = 474; +}, +{ +anchors = ( +{ +name = bottom; +pos = (179,0); +}, +{ +name = center; +pos = (95,631); +}, +{ +name = top; +pos = (75,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(156,0,l), +(156,342,ls), +(156,434,o), +(188,495,o), +(242,495,cs), +(279,495,o), +(303,469,o), +(303,367,cs), +(303,0,l), +(339,0,l), +(339,367,ls), +(339,468,o), +(317,527,o), +(250,527,cs), +(208,527,o), +(177,503,o), +(159,441,c), +(156,441,l), +(156,719,l), +(120,719,l), +(120,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,0,l), +(89,307,ls), +(89,421,o), +(116,500,o), +(189,500,cs), +(240,500,o), +(268,474,o), +(268,371,cs), +(268,0,l), +(297,0,l), +(297,378,ls), +(297,478,o), +(265,526,o), +(198,526,cs), +(147,526,o), +(107,497,o), +(91,439,c), +(89,439,l), +(89,729,l), +(60,729,l), +(60,0,l) +); +} +); +width = 354; +}, +{ +anchors = ( +{ +name = bottom; +pos = (319,0); +}, +{ +name = center; +pos = (135,631); +}, +{ +name = top; +pos = (85,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(103,256,ls), +(103,397,o), +(201,491,o), +(341,491,cs), +(466,491,o), +(535,430,o), +(535,277,cs), +(535,0,l), +(572,0,l), +(572,283,ls), +(572,462,o), +(477,525,o), +(345,525,cs), +(242,525,o), +(150,476,o), +(108,387,c), +(103,387,l), +(103,729,l), +(66,729,l), +(66,0,l) +); +} +); +width = 626; +}, +{ +anchors = ( +{ +name = bottom; +pos = (367,0); +}, +{ +name = center; +pos = (184,631); +}, +{ +name = top; +pos = (154,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,271,ls), +(264,338,o), +(305,388,o), +(376,388,cs), +(452,388,o), +(470,336,o), +(470,260,cs), +(470,0,l), +(691,0,l), +(691,299,ls), +(691,491,o), +(596,554,o), +(456,554,cs), +(379,554,o), +(305,518,o), +(274,464,c), +(264,464,l), +(264,729,l), +(43,729,l), +(43,0,l) +); +} +); +width = 722; +}, +{ +anchors = ( +{ +name = bottom; +pos = (154,0); +}, +{ +name = center; +pos = (72,631); +}, +{ +name = top; +pos = (52,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,0,l), +(157,342,ls), +(157,434,o), +(189,495,o), +(243,495,cs), +(280,495,o), +(304,469,o), +(304,367,cs), +(304,0,l), +(340,0,l), +(340,367,ls), +(340,468,o), +(318,527,o), +(251,527,cs), +(209,527,o), +(178,503,o), +(160,441,c), +(157,441,l), +(157,719,l), +(121,719,l), +(121,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(66,307,ls), +(66,422,o), +(105,499,o), +(163,499,cs), +(211,499,o), +(239,474,o), +(239,371,cs), +(239,0,l), +(269,0,l), +(269,378,ls), +(269,478,o), +(237,526,o), +(172,526,cs), +(122,526,o), +(83,494,o), +(68,439,c), +(66,439,l), +(66,729,l), +(36,729,l), +(36,0,l) +); +} +); +width = 303; +}, +{ +anchors = ( +{ +name = bottom; +pos = (227,0); +}, +{ +name = center; +pos = (124,631); +}, +{ +name = top; +pos = (104,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,l), +(263,291,ls), +(263,355,o), +(295,400,o), +(359,400,cs), +(413,400,o), +(443,369,o), +(443,302,cs), +(443,0,l), +(635,0,l), +(635,322,ls), +(635,458,o), +(583,554,o), +(449,554,cs), +(369,554,o), +(306,519,o), +(273,447,c), +(263,447,l), +(263,750,l), +(72,750,l), +(72,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,318,ls), +(193,365,o), +(200,391,o), +(229,391,cs), +(250,391,o), +(262,378,o), +(262,325,cs), +(262,0,l), +(438,0,l), +(438,347,ls), +(438,494,o), +(398,551,o), +(308,551,cs), +(260,551,o), +(217,521,o), +(194,472,c), +(193,472,l), +(193,729,l), +(16,729,l), +(16,0,l) +); +} +); +width = 451; +}, +{ +anchors = ( +{ +name = bottom; +pos = (267,0); +}, +{ +name = center; +pos = (117,631); +}, +{ +name = top; +pos = (77,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,0,l), +(95,274,ls), +(95,401,o), +(172,491,o), +(287,491,cs), +(392,491,o), +(443,430,o), +(443,294,cs), +(443,0,l), +(480,0,l), +(480,300,ls), +(480,462,o), +(401,525,o), +(292,525,cs), +(209,525,o), +(133,482,o), +(96,397,c), +(95,397,l), +(95,729,l), +(59,729,l), +(59,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 530; +}, +{ +anchors = ( +{ +name = bottom; +pos = (303,0); +}, +{ +name = center; +pos = (156,631); +}, +{ +name = top; +pos = (126,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(245,0,l), +(245,291,ls), +(245,355,o), +(277,400,o), +(341,400,cs), +(395,400,o), +(425,369,o), +(425,302,cs), +(425,0,l), +(617,0,l), +(617,322,ls), +(617,458,o), +(565,554,o), +(431,554,cs), +(351,554,o), +(288,519,o), +(255,447,c), +(245,447,l), +(245,750,l), +(54,750,l), +(54,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,l), +(221,298,ls), +(221,354,o), +(259,395,o), +(310,395,cs), +(367,395,o), +(389,356,o), +(389,281,cs), +(389,0,l), +(580,0,l), +(580,333,ls), +(580,476,o), +(513,554,o), +(390,554,cs), +(316,554,o), +(248,507,o), +(222,443,c), +(221,443,l), +(221,729,l), +(30,729,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +}; +width = 608; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (125,631); +}, +{ +name = top; +pos = (75,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(93,256,ls), +(93,397,o), +(191,491,o), +(331,491,cs), +(456,491,o), +(525,430,o), +(525,277,cs), +(525,0,l), +(562,0,l), +(562,283,ls), +(562,462,o), +(467,525,o), +(335,525,cs), +(227,525,o), +(134,471,o), +(94,387,c), +(93,387,l), +(93,729,l), +(56,729,l), +(56,0,l) +); +} +); +width = 606; +}, +{ +anchors = ( +{ +name = bottom; +pos = (354,0); +}, +{ +name = center; +pos = (171,631); +}, +{ +name = top; +pos = (141,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(251,271,ls), +(251,338,o), +(292,388,o), +(363,388,cs), +(439,388,o), +(457,336,o), +(457,260,cs), +(457,0,l), +(678,0,l), +(678,299,ls), +(678,491,o), +(583,554,o), +(443,554,cs), +(359,554,o), +(282,515,o), +(252,459,c), +(251,459,l), +(251,729,l), +(30,729,l), +(30,0,l) +); +} +); +width = 699; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = center; +pos = (138,646); +}, +{ +name = top; +pos = (104,759); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(122,0,l), +(122,278,ls), +(122,405,o), +(193,491,o), +(300,491,cs), +(396,491,o), +(444,431,o), +(444,298,cs), +(444,0,l), +(479,0,l), +(479,304,ls), +(479,463,o), +(407,525,o), +(305,525,cs), +(228,525,o), +(157,483,o), +(126,404,c), +(122,404,l), +(122,759,l), +(85,759,l), +(85,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 561; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = center; +pos = (183,647); +}, +{ +name = top; +pos = (156,759); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(248,0,l), +(248,291,ls), +(248,355,o), +(280,400,o), +(344,400,cs), +(398,400,o), +(428,369,o), +(428,302,cs), +(428,0,l), +(620,0,l), +(620,322,ls), +(620,458,o), +(568,554,o), +(434,554,cs), +(354,554,o), +(291,519,o), +(258,447,c), +(248,447,l), +(248,750,l), +(57,750,l), +(57,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,l), +(249,308,ls), +(249,352,o), +(272,400,o), +(323,400,cs), +(369,400,o), +(388,364,o), +(388,291,cs), +(388,0,l), +(577,0,l), +(577,333,ls), +(577,494,o), +(500,554,o), +(403,554,cs), +(338,554,o), +(282,521,o), +(260,455,c), +(248,455,l), +(249,759,l), +(60,759,l), +(60,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +}; +width = 630; +}, +{ +anchors = ( +{ +name = bottom; +pos = (135,0); +}, +{ +name = center; +pos = (172,631); +}, +{ +name = top; +pos = (173,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,0,l), +(110,355,l), +(135,448,o), +(176,501,o), +(231,501,cs), +(299,501,o), +(306,451,o), +(289,366,cs), +(213,0,l), +(242,0,l), +(319,371,ls), +(337,457,o), +(327,526,o), +(244,526,cs), +(197,526,o), +(154,497,o), +(131,446,c), +(130,446,l), +(187,729,l), +(158,729,l), +(7,0,l) +); +} +); +width = 352; +}, +{ +anchors = ( +{ +name = bottom; +pos = (192,0); +}, +{ +name = center; +pos = (209,631); +}, +{ +name = top; +pos = (210,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,0,l), +(222,363,l), +(231,397,o), +(243,417,o), +(266,417,cs), +(297,417,o), +(295,386,o), +(286,340,cs), +(216,0,l), +(390,0,l), +(462,338,ls), +(490,470,o), +(472,551,o), +(362,551,cs), +(317,551,o), +(282,526,o), +(253,485,c), +(246,485,l), +(297,729,l), +(122,729,l), +(-30,0,l) +); +} +); +width = 470; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (220,631); +}, +{ +name = top; +pos = (200,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(127,293,ls), +(152,415,o), +(238,493,o), +(345,493,cs), +(453,493,o), +(492,419,o), +(465,288,cs), +(405,0,l), +(441,0,l), +(501,291,ls), +(532,440,o), +(474,527,o), +(354,527,cs), +(281,527,o), +(206,493,o), +(158,415,c), +(152,415,l), +(218,729,l), +(182,729,l), +(31,0,l) +); +} +); +width = 568; +}, +{ +anchors = ( +{ +name = bottom; +pos = (277,0); +}, +{ +name = center; +pos = (244,631); +}, +{ +name = top; +pos = (245,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,0,l), +(253,310,ls), +(265,369,o), +(305,401,o), +(350,401,cs), +(404,401,o), +(420,361,o), +(406,292,cs), +(346,0,l), +(537,0,l), +(603,311,ls), +(643,501,o), +(545,554,o), +(460,554,cs), +(394,554,o), +(326,519,o), +(294,467,c), +(286,467,l), +(340,729,l), +(149,729,l), +(-2,0,l) +); +} +); +width = 638; +}, +{ +anchors = ( +{ +name = bottom; +pos = (274,0); +}, +{ +name = center; +pos = (211,631); +}, +{ +name = top; +pos = (182,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,0,l), +(108,285,ls), +(136,419,o), +(244,494,o), +(367,494,cs), +(496,494,o), +(566,429,o), +(532,266,cs), +(477,0,l), +(513,0,l), +(570,270,ls), +(605,434,o), +(531,527,o), +(376,527,cs), +(286,527,o), +(192,485,o), +(138,406,c), +(133,406,l), +(200,729,l), +(163,729,l), +(12,0,l) +); +} +); +width = 620; +}, +{ +anchors = ( +{ +name = bottom; +pos = (319,0); +}, +{ +name = center; +pos = (257,631); +}, +{ +name = top; +pos = (247,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(265,282,ls), +(280,353,o), +(322,389,o), +(389,389,cs), +(449,389,o), +(482,347,o), +(464,261,cs), +(409,0,l), +(628,0,l), +(687,282,ls), +(724,461,o), +(637,554,o), +(490,554,cs), +(420,554,o), +(348,523,o), +(312,478,c), +(306,478,l), +(356,729,l), +(138,729,l), +(-13,0,l) +); +} +); +width = 714; +} +); +metricLeft = l; +metricRight = n; +unicode = 104; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/hbar.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/hbar.glyph new file mode 100644 index 00000000..be9672a8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/hbar.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = hbar; +kernRight = KO_n; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-39,325); +ref = strokeshortcomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-45,325); +ref = strokeshortcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-67,324); +ref = strokeshortcomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-51,325); +ref = strokeshortcomb; +} +); +width = 722; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-42,325); +ref = strokeshortcomb; +} +); +width = 303; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-47,325); +ref = strokeshortcomb; +} +); +width = 451; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-55,324); +ref = strokeshortcomb; +} +); +width = 530; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-38,325); +ref = strokeshortcomb; +} +); +width = 608; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = h; +}, +{ +alignment = -1; +pos = (-67,324); +ref = strokeshortcomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = h; +}, +{ +alignment = -1; +pos = (-51,325); +ref = strokeshortcomb; +} +); +width = 722; +}, +{ +layerId = m019; +shapes = ( +{ +ref = h; +}, +{ +pos = (-53,339); +ref = strokeshortcomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = h; +}, +{ +pos = (-24,341); +ref = strokeshortcomb; +} +); +width = 630; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = h; +}, +{ +pos = (28,325); +ref = strokeshortcomb; +} +); +width = 352; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = h; +}, +{ +pos = (20,325); +ref = strokeshortcomb; +} +); +width = 470; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = h; +}, +{ +pos = (18,324); +ref = strokeshortcomb; +} +); +width = 568; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = h; +}, +{ +pos = (22,325); +ref = strokeshortcomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-2,324); +ref = strokeshortcomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = h; +}, +{ +pos = (15,325); +ref = strokeshortcomb; +} +); +width = 714; +} +); +unicode = 295; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/hcircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/hcircumflex.glyph new file mode 100644 index 00000000..80d4906e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/hcircumflex.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = hcircumflex; +kernRight = KO_n; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-54,57); +ref = circumflexcomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-101,51); +ref = circumflexcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-94,57); +ref = circumflexcomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-137,56); +ref = circumflexcomb; +} +); +width = 722; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-57,57); +ref = circumflexcomb; +} +); +width = 303; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-103,51); +ref = circumflexcomb; +} +); +width = 451; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-67,57); +ref = circumflexcomb; +} +); +width = 530; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-100,51); +ref = circumflexcomb; +} +); +width = 608; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = h; +}, +{ +alignment = -1; +pos = (-94,57); +ref = circumflexcomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = h; +}, +{ +alignment = -1; +pos = (-137,56); +ref = circumflexcomb; +} +); +width = 722; +}, +{ +layerId = m019; +shapes = ( +{ +ref = h; +}, +{ +pos = (-59,87); +ref = circumflexcomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = h; +}, +{ +pos = (-83,81); +ref = circumflexcomb; +} +); +width = 630; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-42,57); +ref = circumflexcomb; +} +); +width = 352; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-92,51); +ref = circumflexcomb; +} +); +width = 470; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-52,57); +ref = circumflexcomb; +} +); +width = 568; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-84,51); +ref = circumflexcomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-84,57); +ref = circumflexcomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-129,56); +ref = circumflexcomb; +} +); +width = 714; +} +); +unicode = 293; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/hookabovecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/hookabovecomb.glyph new file mode 100644 index 00000000..63e8f3d7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/hookabovecomb.glyph @@ -0,0 +1,906 @@ +{ +glyphname = hookabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (81,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(143,783,o), +(174,825,o), +(174,874,cs), +(174,918,o), +(143,946,o), +(96,946,cs), +(77,946,o), +(56,941,o), +(43,933,c), +(43,908,l), +(60,918,o), +(76,922,o), +(97,922,cs), +(127,922,o), +(147,904,o), +(147,872,cs), +(147,832,o), +(121,797,o), +(63,753,c), +(78,735,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,772,o), +(141,808,o), +(141,847,cs), +(141,885,o), +(115,910,o), +(75,910,cs), +(64,910,o), +(50,908,o), +(40,904,c), +(40,880,l), +(48,883,o), +(58,885,o), +(71,885,cs), +(99,885,o), +(113,869,o), +(113,844,cs), +(113,815,o), +(96,788,o), +(52,753,c), +(70,735,l) +); +} +); +width = 181; +}, +{ +anchors = ( +{ +name = _top; +pos = (139,679); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,766,o), +(258,817,o), +(258,879,cs), +(258,957,o), +(195,992,o), +(126,992,cs), +(98,992,o), +(68,988,o), +(40,976,c), +(40,880,l), +(49,886,o), +(67,890,o), +(80,890,cs), +(102,890,o), +(120,881,o), +(120,858,cs), +(120,836,o), +(106,821,o), +(67,803,c), +(123,721,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,766,o), +(256,817,o), +(256,878,cs), +(256,956,o), +(193,990,o), +(125,990,cs), +(97,990,o), +(68,986,o), +(40,975,c), +(40,880,l), +(49,886,o), +(67,890,o), +(80,890,cs), +(102,890,o), +(120,881,o), +(120,858,cs), +(120,836,o), +(106,820,o), +(67,802,c), +(122,721,l) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = _top; +pos = (108,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,763,o), +(177,800,o), +(177,840,cs), +(177,883,o), +(142,912,o), +(91,912,cs), +(74,912,o), +(57,910,o), +(40,904,c), +(41,875,l), +(55,881,o), +(69,883,o), +(86,883,cs), +(123,883,o), +(143,864,o), +(143,837,cs), +(143,804,o), +(117,780,o), +(65,753,c), +(84,729,l) +); +} +); +width = 217; +}, +{ +anchors = ( +{ +name = _top; +pos = (153,678); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,753,o), +(321,798,o), +(321,880,cs), +(321,946,o), +(265,990,o), +(148,990,cs), +(110,990,o), +(72,986,o), +(40,978,c), +(40,881,l), +(57,886,o), +(78,888,o), +(96,888,cs), +(119,888,o), +(140,883,o), +(140,863,cs), +(140,845,o), +(126,831,o), +(67,815,c), +(112,720,l) +); +} +); +width = 361; +}, +{ +anchors = ( +{ +name = _top; +pos = (61,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(143,783,o), +(174,825,o), +(174,874,cs), +(174,918,o), +(143,946,o), +(96,946,cs), +(77,946,o), +(56,941,o), +(43,933,c), +(43,908,l), +(60,918,o), +(76,922,o), +(97,922,cs), +(127,922,o), +(147,904,o), +(147,872,cs), +(147,832,o), +(121,797,o), +(63,753,c), +(78,735,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(98,772,o), +(121,808,o), +(121,847,cs), +(121,885,o), +(95,910,o), +(55,910,cs), +(44,910,o), +(30,908,o), +(20,904,c), +(20,880,l), +(28,883,o), +(38,885,o), +(51,885,cs), +(79,885,o), +(93,869,o), +(93,844,cs), +(93,815,o), +(76,788,o), +(32,753,c), +(50,735,l) +); +} +); +width = 141; +}, +{ +anchors = ( +{ +name = _top; +pos = (129,679); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,766,o), +(258,817,o), +(258,879,cs), +(258,957,o), +(195,992,o), +(126,992,cs), +(98,992,o), +(68,988,o), +(40,976,c), +(40,880,l), +(49,886,o), +(67,890,o), +(80,890,cs), +(102,890,o), +(120,881,o), +(120,858,cs), +(120,836,o), +(106,821,o), +(67,803,c), +(123,721,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,766,o), +(246,817,o), +(246,878,cs), +(246,956,o), +(183,990,o), +(115,990,cs), +(87,990,o), +(58,986,o), +(30,975,c), +(30,880,l), +(39,886,o), +(57,890,o), +(70,890,cs), +(92,890,o), +(110,881,o), +(110,858,cs), +(110,836,o), +(96,820,o), +(57,802,c), +(112,721,l) +); +} +); +width = 276; +}, +{ +anchors = ( +{ +name = _top; +pos = (88,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(142,763,o), +(167,800,o), +(167,840,cs), +(167,883,o), +(135,912,o), +(88,912,cs), +(72,912,o), +(56,910,o), +(40,904,c), +(41,875,l), +(54,881,o), +(67,883,o), +(82,883,cs), +(115,883,o), +(133,864,o), +(133,837,cs), +(133,804,o), +(110,780,o), +(63,753,c), +(81,729,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,763,o), +(157,800,o), +(157,840,cs), +(157,883,o), +(122,912,o), +(71,912,cs), +(54,912,o), +(37,910,o), +(20,904,c), +(21,875,l), +(35,881,o), +(49,883,o), +(66,883,cs), +(103,883,o), +(123,864,o), +(123,837,cs), +(123,804,o), +(97,780,o), +(45,753,c), +(64,729,l) +); +} +); +width = 177; +}, +{ +anchors = ( +{ +name = _top; +pos = (142,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,753,o), +(302,798,o), +(302,877,cs), +(302,942,o), +(251,985,o), +(141,985,cs), +(106,985,o), +(70,981,o), +(40,973,c), +(40,881,l), +(56,885,o), +(76,888,o), +(91,888,cs), +(111,888,o), +(131,882,o), +(131,861,cs), +(131,842,o), +(119,828,o), +(65,811,c), +(107,721,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,754,o), +(279,798,o), +(279,877,cs), +(279,941,o), +(227,984,o), +(119,984,cs), +(84,984,o), +(49,979,o), +(19,972,c), +(19,881,l), +(35,885,o), +(54,888,o), +(70,888,cs), +(91,888,o), +(111,882,o), +(111,861,cs), +(111,842,o), +(98,827,o), +(44,810,c), +(85,721,l) +); +} +); +width = 298; +}, +{ +anchors = ( +{ +name = _top; +pos = (98,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,763,o), +(167,800,o), +(167,840,cs), +(167,883,o), +(132,912,o), +(81,912,cs), +(64,912,o), +(47,910,o), +(30,904,c), +(31,875,l), +(45,881,o), +(59,883,o), +(76,883,cs), +(113,883,o), +(133,864,o), +(133,837,cs), +(133,804,o), +(107,780,o), +(55,753,c), +(74,729,l) +); +} +); +width = 197; +}, +{ +anchors = ( +{ +name = _top; +pos = (143,678); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,753,o), +(311,798,o), +(311,880,cs), +(311,946,o), +(255,990,o), +(138,990,cs), +(100,990,o), +(62,986,o), +(30,978,c), +(30,881,l), +(47,886,o), +(68,888,o), +(86,888,cs), +(109,888,o), +(130,883,o), +(130,863,cs), +(130,845,o), +(116,831,o), +(57,815,c), +(102,720,l) +); +} +); +width = 341; +}, +{ +anchors = ( +{ +name = _top; +pos = (109,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(142,763,o), +(167,800,o), +(167,840,cs), +(167,883,o), +(135,912,o), +(88,912,cs), +(72,912,o), +(56,910,o), +(40,904,c), +(41,875,l), +(54,881,o), +(67,883,o), +(82,883,cs), +(115,883,o), +(133,864,o), +(133,837,cs), +(133,804,o), +(110,780,o), +(63,753,c), +(81,729,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(151,763,o), +(176,800,o), +(176,840,cs), +(176,883,o), +(143,912,o), +(92,912,cs), +(75,912,o), +(58,910,o), +(43,904,c), +(44,875,l), +(56,881,o), +(70,883,o), +(87,883,cs), +(124,883,o), +(144,864,o), +(144,837,cs), +(144,804,o), +(118,780,o), +(66,753,c), +(85,729,l) +); +} +); +width = 218; +}, +{ +anchors = ( +{ +name = _top; +pos = (156,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,753,o), +(302,798,o), +(302,877,cs), +(302,942,o), +(251,985,o), +(141,985,cs), +(106,985,o), +(70,981,o), +(40,973,c), +(40,881,l), +(56,885,o), +(76,888,o), +(91,888,cs), +(111,888,o), +(131,882,o), +(131,861,cs), +(131,842,o), +(119,828,o), +(65,811,c), +(107,721,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(225,754,o), +(287,798,o), +(287,877,cs), +(287,941,o), +(238,984,o), +(135,984,cs), +(101,984,o), +(67,979,o), +(39,972,c), +(39,881,l), +(53,885,o), +(71,888,o), +(85,888,cs), +(102,888,o), +(121,882,o), +(121,861,cs), +(121,842,o), +(112,828,o), +(61,810,c), +(101,721,l) +); +} +); +width = 325; +}, +{ +anchors = ( +{ +name = _top; +pos = (189,673); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,756,o), +(299,793,o), +(299,846,cs), +(299,891,o), +(262,914,o), +(210,914,cs), +(199,914,o), +(187,913,o), +(175,910,c), +(170,881,l), +(181,884,o), +(194,885,o), +(205,885,cs), +(241,885,o), +(264,874,o), +(264,844,cs), +(264,801,o), +(220,777,o), +(171,757,c), +(185,731,l) +); +} +); +width = 219; +}, +{ +anchors = ( +{ +name = _top; +pos = (231,680); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,758,o), +(384,817,o), +(384,888,cs), +(384,955,o), +(331,993,o), +(251,993,cs), +(231,993,o), +(209,990,o), +(188,983,c), +(170,889,l), +(178,894,o), +(192,896,o), +(204,896,cs), +(227,896,o), +(245,887,o), +(245,866,cs), +(245,840,o), +(227,825,o), +(181,809,c), +(220,724,l) +); +} +); +width = 299; +}, +{ +anchors = ( +{ +name = _top; +pos = (189,673); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,755,o), +(299,791,o), +(299,846,cs), +(299,889,o), +(264,914,o), +(213,914,cs), +(199,914,o), +(187,913,o), +(175,910,c), +(170,881,l), +(182,884,o), +(194,885,o), +(206,885,cs), +(241,885,o), +(264,873,o), +(264,843,cs), +(264,801,o), +(219,776,o), +(171,757,c), +(185,731,l) +); +} +); +width = 219; +}, +{ +anchors = ( +{ +name = _top; +pos = (255,679); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,748,o), +(428,799,o), +(428,879,cs), +(428,949,o), +(362,988,o), +(259,988,cs), +(230,988,o), +(208,987,o), +(187,981,c), +(170,892,l), +(182,894,o), +(195,895,o), +(208,895,cs), +(231,895,o), +(257,891,o), +(257,869,cs), +(257,847,o), +(242,833,o), +(181,819,c), +(205,727,l) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = _top; +pos = (188,673); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,760,o), +(299,795,o), +(299,846,cs), +(299,887,o), +(269,914,o), +(216,914,cs), +(202,914,o), +(186,912,o), +(175,909,c), +(170,881,l), +(179,883,o), +(194,885,o), +(210,885,cs), +(243,885,o), +(264,872,o), +(264,844,cs), +(264,811,o), +(242,787,o), +(171,758,c), +(185,731,l) +); +} +); +width = 219; +}, +{ +anchors = ( +{ +name = _top; +pos = (252,681); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,748,o), +(449,805,o), +(449,887,cs), +(449,953,o), +(391,994,o), +(257,994,cs), +(233,994,o), +(210,993,o), +(188,989,c), +(169,893,l), +(182,895,o), +(196,896,o), +(209,896,cs), +(235,896,o), +(266,893,o), +(266,871,cs), +(266,851,o), +(250,837,o), +(184,825,c), +(210,727,l) +); +} +); +width = 364; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 777; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/horncomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/horncomb.glyph new file mode 100644 index 00000000..86fb1a81 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/horncomb.glyph @@ -0,0 +1,713 @@ +{ +glyphname = horncomb; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (40,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(97,492,o), +(127,520,o), +(115,602,c), +(87,602,l), +(100,535,o), +(81,516,o), +(40,516,c), +(40,492,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(102,492,o), +(142,522,o), +(134,636,c), +(108,636,l), +(116,538,o), +(90,516,o), +(40,516,c), +(40,492,l) +); +} +); +width = 175; +}, +{ +anchors = ( +{ +name = _topright; +pos = (40,542); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(149,467,o), +(212,520,o), +(201,631,c), +(56,631,l), +(63,589,o), +(51,564,o), +(10,562,c), +(10,467,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,450,o), +(237,497,o), +(223,601,c), +(108,601,l), +(113,555,o), +(93,537,o), +(40,542,c), +(40,459,l) +); +} +); +width = 265; +}, +{ +anchors = ( +{ +name = _topright; +pos = (40,525); +} +); +background = { +anchors = ( +{ +name = _topright; +pos = (10,522); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(118,489,o), +(165,551,o), +(143,632,c), +(107,632,l), +(123,561,o), +(102,522,o), +(10,522,c), +(10,492,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,495,o), +(191,556,o), +(182,668,c), +(147,668,l), +(156,572,o), +(119,525,o), +(40,525,c), +(40,495,l) +); +} +); +width = 223; +}, +{ +anchors = ( +{ +name = _topright; +pos = (40,610); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,468,o), +(341,519,o), +(317,689,c), +(137,689,l), +(145,622,o), +(133,600,o), +(40,610,c), +(40,485,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,477,o), +(344,550,o), +(323,689,c), +(137,689,l), +(145,623,o), +(132,604,o), +(40,610,c), +(40,495,l) +); +} +); +width = 366; +}, +{ +anchors = ( +{ +name = _topright; +pos = (20,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(97,492,o), +(127,520,o), +(115,602,c), +(87,602,l), +(100,535,o), +(81,516,o), +(40,516,c), +(40,492,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(82,492,o), +(122,522,o), +(114,636,c), +(88,636,l), +(96,538,o), +(70,516,o), +(20,516,c), +(20,492,l) +); +} +); +width = 135; +}, +{ +anchors = ( +{ +name = _topright; +pos = (30,542); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(149,467,o), +(212,520,o), +(201,631,c), +(56,631,l), +(63,589,o), +(51,564,o), +(10,562,c), +(10,467,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,450,o), +(227,497,o), +(213,601,c), +(98,601,l), +(103,555,o), +(83,537,o), +(30,542,c), +(30,459,l) +); +} +); +width = 245; +}, +{ +anchors = ( +{ +name = _topright; +pos = (20,509); +} +); +background = { +anchors = ( +{ +name = _topright; +pos = (10,522); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(118,489,o), +(165,551,o), +(143,632,c), +(107,632,l), +(123,561,o), +(102,522,o), +(10,522,c), +(10,492,l) +); +} +); +}; +guides = ( +{ +pos = (64,602); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(115,480,o), +(160,533,o), +(150,637,c), +(117,637,l), +(126,549,o), +(96,509,o), +(20,509,c), +(20,480,l) +); +} +); +width = 171; +}, +{ +anchors = ( +{ +name = _topright; +pos = (19,590); +} +); +background = { +anchors = ( +{ +name = _topright; +pos = (40,541); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(213,427,o), +(275,481,o), +(275,607,c), +(127,607,l), +(127,559,o), +(116,543,o), +(40,541,c), +(40,427,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,472,o), +(285,540,o), +(264,676,c), +(116,676,l), +(126,609,o), +(97,583,o), +(19,590,c), +(19,486,l) +); +} +); +width = 286; +}, +{ +anchors = ( +{ +name = _topright; +pos = (30,525); +} +); +background = { +anchors = ( +{ +name = _topright; +pos = (10,522); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(118,489,o), +(165,551,o), +(143,632,c), +(107,632,l), +(123,561,o), +(102,522,o), +(10,522,c), +(10,492,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,495,o), +(181,556,o), +(172,668,c), +(137,668,l), +(146,572,o), +(109,525,o), +(30,525,c), +(30,495,l) +); +} +); +width = 203; +}, +{ +anchors = ( +{ +name = _topright; +pos = (30,610); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,468,o), +(341,519,o), +(317,689,c), +(137,689,l), +(145,622,o), +(133,600,o), +(40,610,c), +(40,485,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,477,o), +(334,550,o), +(313,689,c), +(127,689,l), +(135,623,o), +(122,604,o), +(30,610,c), +(30,495,l) +); +} +); +width = 346; +}, +{ +anchors = ( +{ +name = _topright; +pos = (43,509); +} +); +background = { +anchors = ( +{ +name = _topright; +pos = (10,522); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(118,489,o), +(165,551,o), +(143,632,c), +(107,632,l), +(123,561,o), +(102,522,o), +(10,522,c), +(10,492,l) +); +} +); +}; +guides = ( +{ +pos = (87,602); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(136,480,o), +(179,533,o), +(169,637,c), +(138,637,l), +(147,549,o), +(117,509,o), +(43,509,c), +(43,480,l) +); +} +); +width = 212; +}, +{ +anchors = ( +{ +name = _topright; +pos = (39,590); +} +); +background = { +anchors = ( +{ +name = _topright; +pos = (40,541); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(213,427,o), +(275,481,o), +(275,607,c), +(127,607,l), +(127,559,o), +(116,543,o), +(40,541,c), +(40,427,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(209,472,o), +(292,540,o), +(272,676,c), +(126,676,l), +(135,609,o), +(109,583,o), +(39,590,c), +(39,486,l) +); +} +); +width = 313; +}, +{ +anchors = ( +{ +name = _topright; +pos = (93,516); +} +); +guides = ( +{ +pos = (244,602); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,492,o), +(202,537,o), +(211,636,c), +(184,636,l), +(177,554,o), +(147,516,o), +(93,516,c), +(88,492,l) +); +} +); +width = 175; +}, +{ +anchors = ( +{ +name = _topright; +pos = (96,542); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,450,o), +(284,497,o), +(291,601,c), +(176,601,l), +(172,555,o), +(148,537,o), +(96,542,c), +(80,459,l) +); +} +); +width = 265; +}, +{ +anchors = ( +{ +name = _topright; +pos = (92,510); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(183,480,o), +(240,536,o), +(248,637,c), +(214,637,l), +(207,554,o), +(165,510,o), +(92,510,c), +(86,480,l) +); +} +); +width = 212; +}, +{ +anchors = ( +{ +name = _topright; +pos = (106,590); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,472,o), +(362,540,o), +(368,676,c), +(220,676,l), +(217,609,o), +(182,583,o), +(106,590,c), +(86,486,l) +); +} +); +width = 328; +}, +{ +anchors = ( +{ +name = _topright; +pos = (95,525); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,494,o), +(253,553,o), +(265,668,c), +(230,668,l), +(220,574,o), +(174,525,o), +(95,525,c), +(89,495,l) +); +} +); +width = 222; +}, +{ +anchors = ( +{ +name = _topright; +pos = (112,622); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,483,o), +(395,545,o), +(407,689,c), +(233,689,l), +(224,634,o), +(192,618,o), +(112,622,c), +(90,507,l) +); +} +); +width = 363; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 795; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/hungarumlaut.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/hungarumlaut.glyph new file mode 100644 index 00000000..3e4f3b16 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/hungarumlaut.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = hungarumlaut; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 274; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 484; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 355; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 581; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = hungarumlautcomb; +} +); +width = 274; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = hungarumlautcomb; +} +); +width = 484; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = hungarumlautcomb; +} +); +width = 322; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = hungarumlautcomb; +} +); +width = 553; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = hungarumlautcomb; +} +); +width = 355; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = hungarumlautcomb; +} +); +width = 581; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 321; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 555; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 276; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 529; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 323; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 563; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 357; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 591; +} +); +unicode = 733; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/hungarumlautcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/hungarumlautcomb.glyph new file mode 100644 index 00000000..196eb642 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/hungarumlautcomb.glyph @@ -0,0 +1,554 @@ +{ +glyphname = hungarumlautcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (183,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,735,l), +(239,884,l), +(75,884,l), +(40,735,l) +); +}, +{ +closed = 1; +nodes = ( +(338,735,l), +(444,884,l), +(279,884,l), +(209,735,l) +); +} +); +width = 484; +}, +{ +anchors = ( +{ +name = _top; +pos = (97,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(68,746,l), +(137,882,l), +(104,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(154,746,l), +(234,882,l), +(198,882,l), +(125,746,l) +); +} +); +width = 274; +}, +{ +anchors = ( +{ +name = _top; +pos = (129,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(75,746,l), +(165,882,l), +(121,882,l), +(40,746,l) +); +}, +{ +closed = 1; +nodes = ( +(218,746,l), +(315,882,l), +(269,882,l), +(183,746,l) +); +} +); +width = 355; +}, +{ +anchors = ( +{ +name = _top; +pos = (217,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,729,l), +(278,878,l), +(91,878,l), +(40,729,l) +); +}, +{ +closed = 1; +nodes = ( +(409,729,l), +(541,878,l), +(341,878,l), +(250,729,l) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = _top; +pos = (77,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(48,746,l), +(117,882,l), +(84,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(134,746,l), +(214,882,l), +(178,882,l), +(105,746,l) +); +} +); +width = 234; +}, +{ +anchors = ( +{ +name = _top; +pos = (173,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,735,l), +(229,884,l), +(65,884,l), +(30,735,l) +); +}, +{ +closed = 1; +nodes = ( +(328,735,l), +(434,884,l), +(269,884,l), +(199,735,l) +); +} +); +width = 464; +}, +{ +anchors = ( +{ +name = _top; +pos = (101,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,746,l), +(127,882,l), +(86,882,l), +(20,746,l) +); +}, +{ +closed = 1; +nodes = ( +(184,746,l), +(262,882,l), +(221,882,l), +(153,746,l) +); +} +); +width = 282; +}, +{ +anchors = ( +{ +name = _top; +pos = (192,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(156,735,l), +(252,884,l), +(74,884,l), +(19,735,l) +); +}, +{ +closed = 1; +nodes = ( +(380,735,l), +(512,884,l), +(322,884,l), +(228,735,l) +); +} +); +width = 531; +}, +{ +anchors = ( +{ +name = _top; +pos = (119,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(65,746,l), +(155,882,l), +(111,882,l), +(30,746,l) +); +}, +{ +closed = 1; +nodes = ( +(208,746,l), +(305,882,l), +(259,882,l), +(173,746,l) +); +} +); +width = 335; +}, +{ +anchors = ( +{ +name = _top; +pos = (207,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,729,l), +(268,878,l), +(81,878,l), +(30,729,l) +); +}, +{ +closed = 1; +nodes = ( +(399,729,l), +(531,878,l), +(331,878,l), +(240,729,l) +); +} +); +width = 561; +}, +{ +anchors = ( +{ +name = _top; +pos = (122,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(70,746,l), +(148,882,l), +(107,882,l), +(43,746,l) +); +}, +{ +closed = 1; +nodes = ( +(203,746,l), +(279,882,l), +(240,882,l), +(172,746,l) +); +} +); +width = 321; +}, +{ +anchors = ( +{ +name = _top; +pos = (207,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(174,735,l), +(265,884,l), +(89,884,l), +(39,735,l) +); +}, +{ +closed = 1; +nodes = ( +(390,735,l), +(518,884,l), +(330,884,l), +(240,735,l) +); +} +); +width = 555; +}, +{ +anchors = ( +{ +name = _top; +pos = (183,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,746,l), +(267,882,l), +(233,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(257,746,l), +(365,882,l), +(328,882,l), +(227,746,l) +); +} +); +width = 276; +}, +{ +anchors = ( +{ +name = _top; +pos = (276,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,735,l), +(375,884,l), +(215,884,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(458,735,l), +(616,884,l), +(438,884,l), +(314,735,l) +); +} +); +width = 529; +}, +{ +anchors = ( +{ +name = _top; +pos = (208,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,746,l), +(277,882,l), +(236,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(306,746,l), +(412,882,l), +(370,882,l), +(274,746,l) +); +} +); +width = 323; +}, +{ +anchors = ( +{ +name = _top; +pos = (295,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,735,l), +(392,884,l), +(216,884,l), +(136,735,l) +); +}, +{ +closed = 1; +nodes = ( +(493,735,l), +(650,884,l), +(462,884,l), +(342,735,l) +); +} +); +width = 563; +}, +{ +anchors = ( +{ +name = _top; +pos = (215,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,746,l), +(295,882,l), +(250,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(321,746,l), +(446,882,l), +(398,882,l), +(284,746,l) +); +} +); +width = 357; +}, +{ +anchors = ( +{ +name = _top; +pos = (305,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,729,l), +(408,878,l), +(216,878,l), +(135,729,l) +); +}, +{ +closed = 1; +nodes = ( +(514,729,l), +(676,878,l), +(471,878,l), +(350,729,l) +); +} +); +width = 591; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 779; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/hyphen.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/hyphen.case.glyph new file mode 100644 index 00000000..47574e93 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/hyphen.case.glyph @@ -0,0 +1,202 @@ +{ +color = 6; +glyphname = hyphen.case; +kernLeft = KO_hyphen.case; +kernRight = KO_hyphen.case; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,106); +ref = hyphen; +} +); +width = 264; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,94); +ref = hyphen; +} +); +width = 352; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,106); +ref = hyphen; +} +); +width = 378; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,94); +ref = hyphen; +} +); +width = 418; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,106); +ref = hyphen; +} +); +width = 264; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (0,94); +ref = hyphen; +} +); +width = 352; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,106); +ref = hyphen; +} +); +width = 380; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,93); +ref = hyphen; +} +); +width = 410; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,106); +ref = hyphen; +} +); +width = 378; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,94); +ref = hyphen; +} +); +width = 418; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,106); +ref = hyphen; +} +); +width = 377; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,93); +ref = hyphen; +} +); +width = 413; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (22,106); +ref = hyphen; +} +); +width = 262; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (19,94); +ref = hyphen; +} +); +width = 348; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (22,106); +ref = hyphen; +} +); +width = 378; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (19,93); +ref = hyphen; +} +); +width = 426; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (22,106); +ref = hyphen; +} +); +width = 376; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (19,94); +ref = hyphen; +} +); +width = 414; +} +); +metricLeft = hyphen; +metricRight = hyphen; +userData = { +KernOnSpecialSpacing = { +L = hyphen; +R = hyphen; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/hyphen.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/hyphen.glyph new file mode 100644 index 00000000..4ab2d416 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/hyphen.glyph @@ -0,0 +1,321 @@ +{ +glyphname = hyphen; +kernLeft = KO_hyphen; +kernRight = KO_hyphen; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,191,l), +(333,351,l), +(19,351,l), +(19,191,l) +); +} +); +width = 352; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,246,l), +(222,271,l), +(42,271,l), +(42,246,l) +); +} +); +width = 264; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,243,l), +(332,275,l), +(46,275,l), +(46,243,l) +); +} +); +width = 378; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,187,l), +(388,355,l), +(30,355,l), +(30,187,l) +); +} +); +width = 418; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,246,l), +(202,271,l), +(22,271,l), +(22,246,l) +); +} +); +width = 224; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,191,l), +(323,351,l), +(9,351,l), +(9,191,l) +); +} +); +width = 332; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,242,l), +(300,275,l), +(40,275,l), +(40,242,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 340; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,192,l), +(371,352,l), +(17,352,l), +(17,192,l) +); +} +); +width = 388; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,243,l), +(322,275,l), +(36,275,l), +(36,243,l) +); +} +); +width = 358; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(378,187,l), +(378,355,l), +(20,355,l), +(20,187,l) +); +} +); +width = 398; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(337,242,l), +(337,276,l), +(43,276,l), +(43,242,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 377; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(377,192,l), +(377,352,l), +(37,352,l), +(37,192,l) +); +} +); +width = 413; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,246,l), +(223,271,l), +(45,271,l), +(40,246,l) +); +} +); +width = 262; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,191,l), +(347,351,l), +(36,351,l), +(3,191,l) +); +} +); +width = 348; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,242,l), +(322,275,l), +(64,275,l), +(57,242,l) +); +} +); +width = 378; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(372,192,l), +(406,352,l), +(55,352,l), +(22,192,l) +); +} +); +width = 426; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,243,l), +(333,275,l), +(50,275,l), +(43,243,l) +); +} +); +width = 376; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,187,l), +(402,355,l), +(47,355,l), +(12,187,l) +); +} +); +width = 414; +} +); +unicode = 45; +userData = { +KernOnName = hyphen; +KernOnSpecialSpacing = { +L = hyphen; +R = hyphen; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/i.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/i.glyph new file mode 100644 index 00000000..d9e49f9a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/i.glyph @@ -0,0 +1,630 @@ +{ +color = 6; +glyphname = i; +kernLeft = KO_i; +kernRight = KO_l; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (231,0); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-18,-137); +ref = dotaccentcomb; +} +); +width = 231; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (149,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(89,609,l), +(89,729,l), +(60,729,l), +(60,609,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (12,-156); +ref = dotaccentcomb; +} +); +width = 149; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (169,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,-155); +ref = dotaccentcomb; +} +); +width = 169; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (307,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-4,-129); +ref = dotaccentcomb; +} +); +width = 307; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (102,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(89,609,l), +(89,729,l), +(60,729,l), +(60,609,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (8,-151); +ref = dotaccentcomb; +} +); +width = 102; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (209,0); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-19,-137); +ref = dotaccentcomb; +} +); +width = 209; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (154,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (25,-150); +ref = dotaccentcomb; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 154; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (251,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (10,-134); +ref = dotaccentcomb; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 251; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (149,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,-155); +ref = dotaccentcomb; +} +); +width = 149; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (287,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-4,-129); +ref = dotaccentcomb; +} +); +width = 287; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (203,0); +} +); +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (31,-133); +ref = dotaccentcomb; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 207; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (303,0); +} +); +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (18,-120); +ref = dotaccentcomb; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 303; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (151,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-26,-156); +ref = dotaccentcomb; +} +); +width = 151; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (229,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(139,0,l), +(252,541,l), +(76,541,l), +(-37,0,l) +); +}, +{ +closed = 1; +nodes = ( +(248,586,o), +(287,621,o), +(287,671,cs), +(287,722,o), +(250,751,o), +(197,751,cs), +(138,751,o), +(99,716,o), +(99,666,cs), +(99,615,o), +(136,586,o), +(189,586,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-47,-137); +ref = dotaccentcomb; +} +); +width = 229; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (206,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (0,-155); +ref = dotaccentcomb; +} +); +width = 206; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (302,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(179,0,l), +(294,544,l), +(102,544,l), +(-12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,588,o), +(319,623,o), +(319,673,cs), +(319,725,o), +(279,754,o), +(224,754,cs), +(162,754,o), +(121,720,o), +(121,669,cs), +(121,617,o), +(162,588,o), +(217,588,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-17,-134); +ref = dotaccentcomb; +} +); +width = 302; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (168,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-19,-155); +ref = dotaccentcomb; +} +); +width = 168; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (306,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-35,-129); +ref = dotaccentcomb; +} +); +width = 306; +} +); +unicode = 105; +userData = { +KernOnName = i; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/i.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/i.ss01.glyph new file mode 100644 index 00000000..71392f09 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/i.ss01.glyph @@ -0,0 +1,590 @@ +{ +color = 6; +glyphname = i.ss01; +kernLeft = KO_i; +kernRight = KO_i.ss01; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (231,0); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-13,-137); +ref = dotaccentcomb.ss01; +} +); +width = 231; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (149,0); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (20,-156); +ref = dotaccentcomb.ss01; +} +); +width = 149; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (169,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (26,-155); +ref = dotaccentcomb.ss01; +} +); +width = 169; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (307,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,544,l), +(43,544,l), +(43,0,l) +); +}, +{ +closed = 1; +nodes = ( +(264,600,l), +(264,729,l), +(43,729,l), +(43,600,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (3,-129); +ref = dotaccentcomb.ss01; +} +); +width = 307; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (102,0); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (16,-156); +ref = dotaccentcomb.ss01; +} +); +width = 102; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (209,0); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-14,-137); +ref = dotaccentcomb.ss01; +} +); +width = 209; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (154,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (38,-155); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 154; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (251,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (11,-134); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 251; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (169,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (26,-155); +ref = dotaccentcomb.ss01; +} +); +width = 169; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (307,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,544,l), +(43,544,l), +(43,0,l) +); +}, +{ +closed = 1; +nodes = ( +(264,600,l), +(264,729,l), +(43,729,l), +(43,600,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (3,-129); +ref = dotaccentcomb.ss01; +} +); +width = 307; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (203,0); +} +); +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (44,-155); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 207; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (303,0); +} +); +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (17,-134); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 303; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (151,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-12,-156); +ref = dotaccentcomb.ss01; +} +); +width = 151; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (229,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-41,-137); +ref = dotaccentcomb.ss01; +} +); +width = 229; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (206,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,-155); +ref = dotaccentcomb.ss01; +} +); +width = 206; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (302,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-12,-134); +ref = dotaccentcomb.ss01; +} +); +width = 302; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (168,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-6,-155); +ref = dotaccentcomb.ss01; +} +); +width = 168; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (306,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-26,-134); +ref = dotaccentcomb.ss01; +} +); +width = 306; +} +); +metricLeft = l; +metricRight = l; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/iacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/iacute.glyph new file mode 100644 index 00000000..e8e92a60 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/iacute.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = iacute; +kernLeft = KO_n; +kernRight = KO_jacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (19,-156); +ref = acutecomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (4,-137); +ref = acutecomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (27,-155); +ref = acutecomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (37,-129); +ref = acutecomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (15,-156); +ref = acutecomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (3,-137); +ref = acutecomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (42,-155); +ref = acutecomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (35,-134); +ref = acutecomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (27,-155); +ref = acutecomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (37,-129); +ref = acutecomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (48,-155); +ref = acutecomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (41,-134); +ref = acutecomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-13,-156); +ref = acutecomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-24,-137); +ref = acutecomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (15,-155); +ref = acutecomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,-134); +ref = acutecomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-5,-155); +ref = acutecomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (9,-129); +ref = acutecomb; +} +); +width = 306; +} +); +unicode = 237; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ibreve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ibreve.glyph new file mode 100644 index 00000000..76d9c510 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ibreve.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = ibreve; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-49,-156); +ref = brevecomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-79,-137); +ref = brevecomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-89,-155); +ref = brevecomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-85,-129); +ref = brevecomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-53,-156); +ref = brevecomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-80,-137); +ref = brevecomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-71,-161); +ref = brevecomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-72,-134); +ref = brevecomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-89,-155); +ref = brevecomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-85,-129); +ref = brevecomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-63,-161); +ref = brevecomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-60,-134); +ref = brevecomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-86,-156); +ref = brevecomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-109,-137); +ref = brevecomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-99,-155); +ref = brevecomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-104,-134); +ref = brevecomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-127,-155); +ref = brevecomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-113,-134); +ref = brevecomb; +} +); +width = 306; +} +); +unicode = 301; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/icircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/icircumflex.glyph new file mode 100644 index 00000000..2dca782d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/icircumflex.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = icircumflex; +kernLeft = KO_icircumflex; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-54,-156); +ref = circumflexcomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-101,-137); +ref = circumflexcomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-94,-155); +ref = circumflexcomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-137,-129); +ref = circumflexcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-58,-156); +ref = circumflexcomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-102,-137); +ref = circumflexcomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-67,-155); +ref = circumflexcomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-100,-134); +ref = circumflexcomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-94,-155); +ref = circumflexcomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-137,-129); +ref = circumflexcomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-59,-155); +ref = circumflexcomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-88,-134); +ref = circumflexcomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-87,-156); +ref = circumflexcomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-131,-137); +ref = circumflexcomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-95,-155); +ref = circumflexcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-121,-134); +ref = circumflexcomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-128,-155); +ref = circumflexcomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-167,-129); +ref = circumflexcomb; +} +); +width = 306; +} +); +unicode = 238; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/idieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/idieresis.glyph new file mode 100644 index 00000000..3a063cbc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/idieresis.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = idieresis; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-43,-156); +ref = dieresiscomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-109,-137); +ref = dieresiscomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-92,-155); +ref = dieresiscomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-129,-134); +ref = dieresiscomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-47,-156); +ref = dieresiscomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-110,-137); +ref = dieresiscomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-65,-155); +ref = dieresiscomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-96,-134); +ref = dieresiscomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-92,-155); +ref = dieresiscomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-129,-134); +ref = dieresiscomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-57,-155); +ref = dieresiscomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-84,-134); +ref = dieresiscomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-81,-156); +ref = dieresiscomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-146,-137); +ref = dieresiscomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-90,-155); +ref = dieresiscomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-121,-134); +ref = dieresiscomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-124,-155); +ref = dieresiscomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-160,-134); +ref = dieresiscomb; +} +); +width = 306; +} +); +unicode = 239; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/idieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/idieresis.ss01.glyph new file mode 100644 index 00000000..5d956c36 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/idieresis.ss01.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = idieresis.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-32,-156); +ref = dieresiscomb.ss01; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-108,-137); +ref = dieresiscomb.ss01; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-59,-155); +ref = dieresiscomb.ss01; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-107,-134); +ref = dieresiscomb.ss01; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-36,-156); +ref = dieresiscomb.ss01; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-109,-137); +ref = dieresiscomb.ss01; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-38,-155); +ref = dieresiscomb.ss01; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-84,-134); +ref = dieresiscomb.ss01; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-59,-155); +ref = dieresiscomb.ss01; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-107,-134); +ref = dieresiscomb.ss01; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-32,-155); +ref = dieresiscomb.ss01; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-72,-134); +ref = dieresiscomb.ss01; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-68,-156); +ref = dieresiscomb.ss01; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-138,-137); +ref = dieresiscomb.ss01; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-68,-155); +ref = dieresiscomb.ss01; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-105,-134); +ref = dieresiscomb.ss01; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-87,-155); +ref = dieresiscomb.ss01; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-131,-134); +ref = dieresiscomb.ss01; +} +); +width = 306; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/idotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/idotaccent.glyph new file mode 100644 index 00000000..3259bc3a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/idotaccent.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = idotaccent; +kernLeft = KO_i; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (12,-156); +ref = dotaccentcomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-18,-137); +ref = dotaccentcomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,-155); +ref = dotaccentcomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-4,-129); +ref = dotaccentcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (8,-151); +ref = dotaccentcomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-19,-137); +ref = dotaccentcomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (25,-150); +ref = dotaccentcomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (10,-134); +ref = dotaccentcomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (13,-155); +ref = dotaccentcomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-4,-129); +ref = dotaccentcomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (31,-133); +ref = dotaccentcomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (18,-120); +ref = dotaccentcomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-26,-156); +ref = dotaccentcomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-47,-137); +ref = dotaccentcomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (0,-155); +ref = dotaccentcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-17,-134); +ref = dotaccentcomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-19,-155); +ref = dotaccentcomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-35,-129); +ref = dotaccentcomb; +} +); +width = 306; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/idotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/idotaccent.ss01.glyph new file mode 100644 index 00000000..12ca4755 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/idotaccent.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = idotaccent.ss01; +kernLeft = KO_i; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (20,-156); +ref = dotaccentcomb.ss01; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-13,-137); +ref = dotaccentcomb.ss01; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (26,-155); +ref = dotaccentcomb.ss01; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (3,-129); +ref = dotaccentcomb.ss01; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (16,-156); +ref = dotaccentcomb.ss01; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-14,-137); +ref = dotaccentcomb.ss01; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (38,-155); +ref = dotaccentcomb.ss01; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (11,-134); +ref = dotaccentcomb.ss01; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (26,-155); +ref = dotaccentcomb.ss01; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (3,-129); +ref = dotaccentcomb.ss01; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (44,-155); +ref = dotaccentcomb.ss01; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (17,-134); +ref = dotaccentcomb.ss01; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-12,-156); +ref = dotaccentcomb.ss01; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-41,-137); +ref = dotaccentcomb.ss01; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,-155); +ref = dotaccentcomb.ss01; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-12,-134); +ref = dotaccentcomb.ss01; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-6,-155); +ref = dotaccentcomb.ss01; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-26,-134); +ref = dotaccentcomb.ss01; +} +); +width = 306; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.dotless.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.dotless.glyph new file mode 100644 index 00000000..addd6729 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.dotless.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = idotbelow.dotless; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (12,0); +ref = dotbelowcomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-2,0); +ref = dotbelowcomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,0); +ref = dotbelowcomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (8,0); +ref = dotbelowcomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-3,0); +ref = dotbelowcomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (25,0); +ref = dotbelowcomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (22,0); +ref = dotbelowcomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (13,0); +ref = dotbelowcomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (31,0); +ref = dotbelowcomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (30,0); +ref = dotbelowcomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (12,0); +ref = dotbelowcomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-7,0); +ref = dotbelowcomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (31,0); +ref = dotbelowcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (23,0); +ref = dotbelowcomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,0); +ref = dotbelowcomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +ref = dotbelowcomb; +} +); +width = 306; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.dotless.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.dotless.ss01.glyph new file mode 100644 index 00000000..396f6ab0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.dotless.ss01.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = idotbelow.dotless.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (20,0); +ref = dotbelowcomb.ss01; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-13,0); +ref = dotbelowcomb.ss01; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (26,0); +ref = dotbelowcomb.ss01; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,0); +ref = dotbelowcomb.ss01; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (16,0); +ref = dotbelowcomb.ss01; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-14,0); +ref = dotbelowcomb.ss01; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (38,0); +ref = dotbelowcomb.ss01; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (11,0); +ref = dotbelowcomb.ss01; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (26,0); +ref = dotbelowcomb.ss01; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (13,0); +ref = dotbelowcomb.ss01; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (44,0); +ref = dotbelowcomb.ss01; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (17,0); +ref = dotbelowcomb.ss01; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (20,0); +ref = dotbelowcomb.ss01; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-16,0); +ref = dotbelowcomb.ss01; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (44,0); +ref = dotbelowcomb.ss01; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (14,0); +ref = dotbelowcomb.ss01; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (24,0); +ref = dotbelowcomb.ss01; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (14,0); +ref = dotbelowcomb.ss01; +} +); +width = 306; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.glyph new file mode 100644 index 00000000..0b845abc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.glyph @@ -0,0 +1,240 @@ +{ +color = 6; +glyphname = idotbelow; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = i; +}, +{ +pos = (12,0); +ref = dotbelowcomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = i; +}, +{ +pos = (-2,0); +ref = dotbelowcomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = i; +}, +{ +pos = (13,0); +ref = dotbelowcomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = i; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = i; +}, +{ +pos = (8,0); +ref = dotbelowcomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = i; +}, +{ +pos = (-3,0); +ref = dotbelowcomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = i; +}, +{ +pos = (25,0); +ref = dotbelowcomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = i; +}, +{ +pos = (22,0); +ref = dotbelowcomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = i; +}, +{ +pos = (13,0); +ref = dotbelowcomb; +} +); +width = 149; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = i; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 287; +}, +{ +layerId = m019; +shapes = ( +{ +ref = i; +}, +{ +pos = (31,0); +ref = dotbelowcomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = i; +}, +{ +pos = (30,0); +ref = dotbelowcomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = i; +}, +{ +pos = (12,0); +ref = dotbelowcomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = i; +}, +{ +pos = (-7,0); +ref = dotbelowcomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = i; +}, +{ +pos = (31,0); +ref = dotbelowcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = i; +}, +{ +pos = (23,0); +ref = dotbelowcomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = i; +}, +{ +pos = (13,0); +ref = dotbelowcomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = i; +}, +{ +ref = dotbelowcomb; +} +); +width = 306; +} +); +unicode = 7883; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.ss01.glyph new file mode 100644 index 00000000..59c8962a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/idotbelow.ss01.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = idotbelow.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (20,0); +ref = dotbelowcomb.ss01; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (-13,0); +ref = dotbelowcomb.ss01; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (26,0); +ref = dotbelowcomb.ss01; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (13,0); +ref = dotbelowcomb.ss01; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (16,0); +ref = dotbelowcomb.ss01; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (-14,0); +ref = dotbelowcomb.ss01; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (38,0); +ref = dotbelowcomb.ss01; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (11,0); +ref = dotbelowcomb.ss01; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = i.ss01; +}, +{ +alignment = -1; +pos = (26,0); +ref = dotbelowcomb.ss01; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = i.ss01; +}, +{ +alignment = -1; +pos = (13,0); +ref = dotbelowcomb.ss01; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (44,0); +ref = dotbelowcomb.ss01; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (17,0); +ref = dotbelowcomb.ss01; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (20,0); +ref = dotbelowcomb.ss01; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (-16,0); +ref = dotbelowcomb.ss01; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (44,0); +ref = dotbelowcomb.ss01; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (14,0); +ref = dotbelowcomb.ss01; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (24,0); +ref = dotbelowcomb.ss01; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = i.ss01; +}, +{ +pos = (14,0); +ref = dotbelowcomb.ss01; +} +); +width = 306; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/idotless.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/idotless.glyph new file mode 100644 index 00000000..ae7a20f3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/idotless.glyph @@ -0,0 +1,532 @@ +{ +glyphname = idotless; +kernLeft = KO_n; +kernRight = KO_a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (75,0); +}, +{ +name = ogonek; +pos = (89,0); +}, +{ +name = top; +pos = (75,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,0,l), +(89,516,l), +(60,516,l), +(60,0,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = bottom; +pos = (116,0); +}, +{ +name = ogonek; +pos = (204,0); +}, +{ +name = top; +pos = (116,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,541,l), +(27,541,l), +(27,0,l) +); +} +); +width = 231; +}, +{ +anchors = ( +{ +name = bottom; +pos = (85,0); +}, +{ +name = ogonek; +pos = (103,0); +}, +{ +name = top; +pos = (85,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(103,517,l), +(66,517,l), +(66,0,l) +); +} +); +width = 169; +}, +{ +anchors = ( +{ +name = bottom; +pos = (154,0); +}, +{ +name = ogonek; +pos = (264,0); +}, +{ +name = top; +pos = (154,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,544,l), +(43,544,l), +(43,0,l) +); +} +); +width = 307; +}, +{ +anchors = ( +{ +name = bottom; +pos = (51,0); +}, +{ +name = ogonek; +pos = (65,0); +}, +{ +name = top; +pos = (51,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(66,516,l), +(36,516,l), +(36,0,l) +); +} +); +width = 102; +}, +{ +anchors = ( +{ +name = bottom; +pos = (105,0); +}, +{ +name = ogonek; +pos = (193,0); +}, +{ +name = top; +pos = (105,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,541,l), +(16,541,l), +(16,0,l) +); +} +); +width = 209; +}, +{ +anchors = ( +{ +name = bottom; +pos = (77,0); +}, +{ +name = ogonek; +pos = (95,0); +}, +{ +name = top; +pos = (77,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,0,l), +(95,517,l), +(59,517,l), +(59,0,l) +); +} +); +width = 154; +}, +{ +anchors = ( +{ +name = bottom; +pos = (126,0); +}, +{ +name = ogonek; +pos = (221,0); +}, +{ +name = top; +pos = (126,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,l), +(221,544,l), +(30,544,l), +(30,0,l) +); +} +); +width = 251; +}, +{ +anchors = ( +{ +name = bottom; +pos = (75,0); +}, +{ +name = ogonek; +pos = (93,0); +}, +{ +name = top; +pos = (75,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(93,517,l), +(56,517,l), +(56,0,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = bottom; +pos = (144,0); +}, +{ +name = ogonek; +pos = (254,0); +}, +{ +name = top; +pos = (144,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,0,l), +(254,544,l), +(33,544,l), +(33,0,l) +); +} +); +width = 287; +}, +{ +anchors = ( +{ +name = bottom; +pos = (104,0); +}, +{ +name = ogonek; +pos = (122,0); +}, +{ +name = top; +pos = (104,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(122,0,l), +(122,517,l), +(85,517,l), +(85,0,l) +); +} +); +width = 207; +}, +{ +anchors = ( +{ +name = bottom; +pos = (151,0); +}, +{ +name = ogonek; +pos = (247,0); +}, +{ +name = top; +pos = (151,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,l), +(247,544,l), +(56,544,l), +(56,0,l) +); +} +); +width = 303; +}, +{ +anchors = ( +{ +name = bottom; +pos = (22,0); +}, +{ +name = ogonek; +pos = (36,0); +}, +{ +name = top; +pos = (128,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,0,l), +(144,516,l), +(115,516,l), +(7,0,l) +); +} +); +width = 151; +}, +{ +anchors = ( +{ +name = bottom; +pos = (58,0); +}, +{ +name = ogonek; +pos = (146,0); +}, +{ +name = top; +pos = (171,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,0,l), +(259,541,l), +(83,541,l), +(-30,0,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = bottom; +pos = (49,0); +}, +{ +name = ogonek; +pos = (66,0); +}, +{ +name = top; +pos = (157,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(175,517,l), +(139,517,l), +(31,0,l) +); +} +); +width = 206; +}, +{ +anchors = ( +{ +name = bottom; +pos = (94,0); +}, +{ +name = ogonek; +pos = (189,0); +}, +{ +name = top; +pos = (208,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,0,l), +(304,544,l), +(112,544,l), +(-2,0,l) +); +} +); +width = 302; +}, +{ +anchors = ( +{ +name = bottom; +pos = (30,0); +}, +{ +name = ogonek; +pos = (48,0); +}, +{ +name = top; +pos = (138,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(48,0,l), +(156,517,l), +(120,517,l), +(12,0,l) +); +} +); +width = 168; +}, +{ +anchors = ( +{ +name = bottom; +pos = (97,0); +}, +{ +name = ogonek; +pos = (206,0); +}, +{ +name = top; +pos = (209,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(319,544,l), +(100,544,l), +(-13,0,l) +); +} +); +width = 306; +} +); +metricLeft = n; +metricRight = "=|"; +unicode = 305; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/igrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/igrave.glyph new file mode 100644 index 00000000..9262a6e1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/igrave.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = igrave; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-59,-156); +ref = gravecomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-93,-137); +ref = gravecomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-59,-155); +ref = gravecomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-80,-129); +ref = gravecomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-63,-156); +ref = gravecomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-94,-137); +ref = gravecomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-37,-155); +ref = gravecomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-62,-134); +ref = gravecomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-59,-155); +ref = gravecomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-80,-129); +ref = gravecomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-31,-155); +ref = gravecomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-48,-134); +ref = gravecomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-90,-156); +ref = gravecomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-114,-137); +ref = gravecomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-62,-155); +ref = gravecomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-88,-134); +ref = gravecomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-92,-155); +ref = gravecomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-108,-129); +ref = gravecomb; +} +); +width = 306; +} +); +unicode = 236; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ihookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ihookabove.glyph new file mode 100644 index 00000000..f84952b4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ihookabove.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = ihookabove; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-6,-156); +ref = hookabovecomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-23,-138); +ref = hookabovecomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-23,-155); +ref = hookabovecomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (1,-134); +ref = hookabovecomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-10,-156); +ref = hookabovecomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-24,-138); +ref = hookabovecomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-11,-155); +ref = hookabovecomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-16,-134); +ref = hookabovecomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-23,-155); +ref = hookabovecomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (1,-134); +ref = hookabovecomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-5,-155); +ref = hookabovecomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-5,-134); +ref = hookabovecomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-61,-157); +ref = hookabovecomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-60,-139); +ref = hookabovecomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-32,-156); +ref = hookabovecomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-47,-135); +ref = hookabovecomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-50,-156); +ref = hookabovecomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-43,-137); +ref = hookabovecomb; +} +); +width = 306; +} +); +unicode = 7881; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ij.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ij.glyph new file mode 100644 index 00000000..60a721cc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ij.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = ij; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = i; +}, +{ +pos = (149,0); +ref = j; +} +); +width = 298; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = i; +}, +{ +pos = (231,0); +ref = j; +} +); +width = 462; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = i; +}, +{ +pos = (171,0); +ref = j; +} +); +width = 340; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = i; +}, +{ +pos = (307,0); +ref = j; +} +); +width = 614; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = i; +}, +{ +pos = (88,0); +ref = j; +} +); +width = 205; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = i; +}, +{ +pos = (207,0); +ref = j; +} +); +width = 422; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = i; +}, +{ +pos = (156,0); +ref = j; +} +); +width = 320; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = i; +}, +{ +alignment = -1; +pos = (261,0); +ref = j; +} +); +width = 539; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = i; +}, +{ +pos = (149,0); +ref = j; +} +); +width = 303; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = i; +}, +{ +pos = (287,0); +ref = j; +} +); +width = 579; +}, +{ +layerId = m019; +shapes = ( +{ +ref = i; +}, +{ +pos = (206,0); +ref = j; +} +); +width = 414; +}, +{ +layerId = m020; +shapes = ( +{ +ref = i; +}, +{ +pos = (321,0); +ref = j; +} +); +width = 604; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = i; +}, +{ +pos = (149,0); +ref = j; +} +); +width = 299; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = i; +}, +{ +pos = (229,0); +ref = j; +} +); +width = 457; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = i; +}, +{ +pos = (207,0); +ref = j; +} +); +width = 413; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = i; +}, +{ +pos = (302,0); +ref = j; +} +); +width = 602; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = i; +}, +{ +pos = (168,0); +ref = j; +} +); +width = 337; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = i; +}, +{ +pos = (306,0); +ref = j; +} +); +width = 613; +} +); +unicode = 307; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/imacron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/imacron.glyph new file mode 100644 index 00000000..4b46e7ff --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/imacron.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = imacron; +kernLeft = KO_imacron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-62,-155); +ref = macroncomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-78,-139); +ref = macroncomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-143,-154); +ref = macroncomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-110,-129); +ref = macroncomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-66,-155); +ref = macroncomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-79,-139); +ref = macroncomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-103,-155); +ref = macroncomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-95,-134); +ref = macroncomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-143,-154); +ref = macroncomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-110,-129); +ref = macroncomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-95,-155); +ref = macroncomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-83,-134); +ref = macroncomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-95,-155); +ref = macroncomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-108,-139); +ref = macroncomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-129,-155); +ref = macroncomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-100,-134); +ref = macroncomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-176,-154); +ref = macroncomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-139,-129); +ref = macroncomb; +} +); +width = 306; +} +); +unicode = 299; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/infinity.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/infinity.glyph new file mode 100644 index 00000000..668f298f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/infinity.glyph @@ -0,0 +1,1368 @@ +{ +glyphname = infinity; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,121,o), +(402,166,o), +(443,234,c), +(486,166,o), +(554,121,o), +(643,121,cs), +(772,121,o), +(877,216,o), +(877,362,cs), +(877,504,o), +(774,608,o), +(642,608,cs), +(553,608,o), +(484,555,o), +(443,490,c), +(403,555,o), +(333,608,o), +(245,608,cs), +(113,608,o), +(11,504,o), +(11,362,cs), +(11,216,o), +(115,121,o), +(244,121,cs) +); +}, +{ +closed = 1; +nodes = ( +(214,297,o), +(190,329,o), +(190,366,cs), +(190,402,o), +(215,433,o), +(257,433,cs), +(302,433,o), +(338,397,o), +(358,366,c), +(337,334,o), +(302,297,o), +(257,297,cs) +); +}, +{ +closed = 1; +nodes = ( +(586,297,o), +(551,332,o), +(530,366,c), +(549,397,o), +(585,433,o), +(629,433,cs), +(671,433,o), +(696,402,o), +(696,366,cs), +(696,329,o), +(671,297,o), +(629,297,cs) +); +} +); +width = 888; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(293,189,o), +(350,262,o), +(399,342,c), +(452,254,o), +(506,189,o), +(601,189,cs), +(705,189,o), +(763,274,o), +(763,363,cs), +(763,456,o), +(705,540,o), +(601,540,cs), +(502,540,o), +(448,466,o), +(399,388,c), +(350,466,o), +(295,540,o), +(197,540,cs), +(94,540,o), +(32,458,o), +(32,363,cs), +(32,266,o), +(93,189,o), +(198,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,218,o), +(60,275,o), +(60,364,cs), +(60,450,o), +(115,512,o), +(196,512,cs), +(271,512,o), +(316,462,o), +(381,365,c), +(314,261,o), +(264,218,o), +(197,218,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,218,o), +(482,266,o), +(416,365,c), +(481,463,o), +(527,512,o), +(601,512,cs), +(682,512,o), +(737,448,o), +(737,364,cs), +(737,282,o), +(682,218,o), +(601,218,cs) +); +} +); +width = 795; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,154,o), +(394,243,o), +(448,340,c), +(507,234,o), +(568,154,o), +(674,154,cs), +(791,154,o), +(856,257,o), +(856,364,cs), +(856,475,o), +(791,576,o), +(674,576,cs), +(563,576,o), +(503,486,o), +(448,391,c), +(394,486,o), +(333,576,o), +(223,576,cs), +(107,576,o), +(38,477,o), +(38,364,cs), +(38,246,o), +(107,154,o), +(224,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,186,o), +(71,256,o), +(71,364,cs), +(71,467,o), +(131,543,o), +(221,543,cs), +(303,543,o), +(355,485,o), +(428,365,c), +(355,241,o), +(299,186,o), +(222,186,cs) +); +}, +{ +closed = 1; +nodes = ( +(589,186,o), +(542,245,o), +(467,365,c), +(541,483,o), +(590,543,o), +(674,543,cs), +(764,543,o), +(826,466,o), +(826,364,cs), +(826,265,o), +(764,186,o), +(674,186,cs) +); +} +); +width = 894; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,107,o), +(417,152,o), +(459,222,c), +(503,151,o), +(575,107,o), +(663,107,cs), +(809,107,o), +(908,208,o), +(908,361,cs), +(908,517,o), +(808,622,o), +(662,622,cs), +(572,622,o), +(500,567,o), +(459,500,c), +(416,571,o), +(342,622,o), +(257,622,cs), +(111,622,o), +(12,517,o), +(12,361,cs), +(12,208,o), +(111,107,o), +(255,107,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,299,o), +(207,331,o), +(207,366,cs), +(207,401,o), +(230,431,o), +(270,431,cs), +(314,431,o), +(350,394,o), +(367,366,c), +(343,328,o), +(308,299,o), +(270,299,cs) +); +}, +{ +closed = 1; +nodes = ( +(606,299,o), +(571,335,o), +(553,366,c), +(568,393,o), +(604,431,o), +(648,431,cs), +(687,431,o), +(711,401,o), +(711,366,cs), +(711,332,o), +(688,299,o), +(648,299,cs) +); +} +); +width = 920; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,189,o), +(330,262,o), +(379,342,c), +(432,254,o), +(486,189,o), +(581,189,cs), +(685,189,o), +(743,274,o), +(743,363,cs), +(743,456,o), +(685,540,o), +(581,540,cs), +(482,540,o), +(428,466,o), +(379,388,c), +(330,466,o), +(275,540,o), +(177,540,cs), +(74,540,o), +(12,458,o), +(12,363,cs), +(12,266,o), +(73,189,o), +(178,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(96,218,o), +(40,275,o), +(40,364,cs), +(40,450,o), +(95,512,o), +(176,512,cs), +(251,512,o), +(296,462,o), +(361,365,c), +(294,261,o), +(244,218,o), +(177,218,cs) +); +}, +{ +closed = 1; +nodes = ( +(506,218,o), +(462,266,o), +(396,365,c), +(461,463,o), +(507,512,o), +(581,512,cs), +(662,512,o), +(717,448,o), +(717,364,cs), +(717,282,o), +(662,218,o), +(581,218,cs) +); +} +); +width = 755; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,121,o), +(395,166,o), +(436,234,c), +(479,166,o), +(547,121,o), +(636,121,cs), +(765,121,o), +(870,216,o), +(870,362,cs), +(870,504,o), +(767,608,o), +(635,608,cs), +(546,608,o), +(477,555,o), +(436,490,c), +(396,555,o), +(326,608,o), +(238,608,cs), +(106,608,o), +(4,504,o), +(4,362,cs), +(4,216,o), +(108,121,o), +(237,121,cs) +); +}, +{ +closed = 1; +nodes = ( +(207,297,o), +(183,329,o), +(183,366,cs), +(183,402,o), +(208,433,o), +(250,433,cs), +(295,433,o), +(331,397,o), +(351,366,c), +(330,334,o), +(295,297,o), +(250,297,cs) +); +}, +{ +closed = 1; +nodes = ( +(579,297,o), +(544,332,o), +(523,366,c), +(542,397,o), +(578,433,o), +(622,433,cs), +(664,433,o), +(689,402,o), +(689,366,cs), +(689,329,o), +(664,297,o), +(622,297,cs) +); +} +); +width = 874; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,167,o), +(377,248,o), +(429,337,c), +(484,242,o), +(542,167,o), +(645,167,cs), +(757,167,o), +(821,262,o), +(821,364,cs), +(821,469,o), +(757,563,o), +(645,563,cs), +(539,563,o), +(481,481,o), +(429,394,c), +(377,481,o), +(319,563,o), +(214,563,cs), +(102,563,o), +(35,471,o), +(35,364,cs), +(35,253,o), +(102,167,o), +(215,167,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,202,o), +(71,266,o), +(71,364,cs), +(71,458,o), +(128,527,o), +(213,527,cs), +(291,527,o), +(339,473,o), +(407,365,c), +(339,253,o), +(287,202,o), +(214,202,cs) +); +}, +{ +closed = 1; +nodes = ( +(565,202,o), +(519,256,o), +(450,365,c), +(518,472,o), +(565,527,o), +(644,527,cs), +(729,527,o), +(787,457,o), +(787,364,cs), +(787,273,o), +(729,202,o), +(644,202,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 856; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,121,o), +(394,166,o), +(435,234,c), +(478,166,o), +(546,121,o), +(635,121,cs), +(764,121,o), +(869,216,o), +(869,362,cs), +(869,504,o), +(766,608,o), +(634,608,cs), +(545,608,o), +(476,555,o), +(435,490,c), +(395,555,o), +(325,608,o), +(237,608,cs), +(105,608,o), +(3,504,o), +(3,362,cs), +(3,216,o), +(107,121,o), +(236,121,cs) +); +}, +{ +closed = 1; +nodes = ( +(206,297,o), +(182,329,o), +(182,366,cs), +(182,402,o), +(207,433,o), +(249,433,cs), +(294,433,o), +(330,397,o), +(350,366,c), +(329,334,o), +(294,297,o), +(249,297,cs) +); +}, +{ +closed = 1; +nodes = ( +(578,297,o), +(543,332,o), +(522,366,c), +(541,397,o), +(577,433,o), +(621,433,cs), +(663,433,o), +(688,402,o), +(688,366,cs), +(688,329,o), +(663,297,o), +(621,297,cs) +); +} +); +width = 872; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,154,o), +(384,243,o), +(438,340,c), +(497,234,o), +(558,154,o), +(664,154,cs), +(781,154,o), +(846,257,o), +(846,364,cs), +(846,475,o), +(781,576,o), +(664,576,cs), +(553,576,o), +(493,486,o), +(438,391,c), +(384,486,o), +(323,576,o), +(213,576,cs), +(97,576,o), +(28,477,o), +(28,364,cs), +(28,246,o), +(97,154,o), +(214,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(123,186,o), +(61,256,o), +(61,364,cs), +(61,467,o), +(121,543,o), +(211,543,cs), +(293,543,o), +(345,485,o), +(418,365,c), +(345,241,o), +(289,186,o), +(212,186,cs) +); +}, +{ +closed = 1; +nodes = ( +(579,186,o), +(532,245,o), +(457,365,c), +(531,483,o), +(580,543,o), +(664,543,cs), +(754,543,o), +(816,466,o), +(816,364,cs), +(816,265,o), +(754,186,o), +(664,186,cs) +); +} +); +width = 874; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,107,o), +(407,152,o), +(449,222,c), +(493,151,o), +(565,107,o), +(653,107,cs), +(799,107,o), +(898,208,o), +(898,361,cs), +(898,517,o), +(798,622,o), +(652,622,cs), +(562,622,o), +(490,567,o), +(449,500,c), +(406,571,o), +(332,622,o), +(247,622,cs), +(101,622,o), +(2,517,o), +(2,361,cs), +(2,208,o), +(101,107,o), +(245,107,cs) +); +}, +{ +closed = 1; +nodes = ( +(219,299,o), +(197,331,o), +(197,366,cs), +(197,401,o), +(220,431,o), +(260,431,cs), +(304,431,o), +(340,394,o), +(357,366,c), +(333,328,o), +(298,299,o), +(260,299,cs) +); +}, +{ +closed = 1; +nodes = ( +(596,299,o), +(561,335,o), +(543,366,c), +(558,393,o), +(594,431,o), +(638,431,cs), +(677,431,o), +(701,401,o), +(701,366,cs), +(701,332,o), +(678,299,o), +(638,299,cs) +); +} +); +width = 900; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(334,167,o), +(392,248,o), +(444,337,c), +(497,242,o), +(553,167,o), +(654,167,cs), +(764,167,o), +(828,262,o), +(828,364,cs), +(828,469,o), +(764,563,o), +(654,563,cs), +(550,563,o), +(494,481,o), +(444,394,c), +(392,481,o), +(336,563,o), +(233,563,cs), +(123,563,o), +(56,471,o), +(56,364,cs), +(56,253,o), +(123,167,o), +(234,167,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,202,o), +(92,266,o), +(92,364,cs), +(92,458,o), +(149,527,o), +(232,527,cs), +(308,527,o), +(354,473,o), +(422,365,c), +(354,253,o), +(304,202,o), +(233,202,cs) +); +}, +{ +closed = 1; +nodes = ( +(576,202,o), +(532,256,o), +(463,365,c), +(531,472,o), +(576,527,o), +(653,527,cs), +(738,527,o), +(794,457,o), +(794,364,cs), +(794,273,o), +(738,202,o), +(653,202,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 883; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(336,121,o), +(405,165,o), +(446,234,c), +(487,166,o), +(554,121,o), +(641,121,cs), +(766,121,o), +(870,216,o), +(870,362,cs), +(870,504,o), +(768,608,o), +(640,608,cs), +(553,608,o), +(486,556,o), +(446,490,c), +(406,556,o), +(338,608,o), +(252,608,cs), +(123,608,o), +(23,503,o), +(23,362,cs), +(23,216,o), +(126,121,o), +(251,121,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,297,o), +(200,329,o), +(200,366,cs), +(200,402,o), +(224,433,o), +(264,433,cs), +(308,433,o), +(343,397,o), +(361,366,c), +(342,334,o), +(308,297,o), +(264,297,cs) +); +}, +{ +closed = 1; +nodes = ( +(585,297,o), +(551,332,o), +(532,366,c), +(549,397,o), +(584,433,o), +(627,433,cs), +(667,433,o), +(691,402,o), +(691,366,cs), +(691,329,o), +(667,297,o), +(627,297,cs) +); +} +); +width = 892; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,189,o), +(374,262,o), +(423,342,c), +(476,254,o), +(530,189,o), +(625,189,cs), +(729,189,o), +(787,274,o), +(787,363,cs), +(787,456,o), +(729,540,o), +(625,540,cs), +(526,540,o), +(472,466,o), +(423,388,c), +(374,466,o), +(319,540,o), +(221,540,cs), +(118,540,o), +(56,458,o), +(56,363,cs), +(56,266,o), +(117,189,o), +(222,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(140,218,o), +(84,275,o), +(84,364,cs), +(84,450,o), +(139,512,o), +(220,512,cs), +(295,512,o), +(340,462,o), +(405,365,c), +(338,261,o), +(288,218,o), +(221,218,cs) +); +}, +{ +closed = 1; +nodes = ( +(550,218,o), +(506,266,o), +(440,365,c), +(505,463,o), +(551,512,o), +(625,512,cs), +(706,512,o), +(761,448,o), +(761,364,cs), +(761,282,o), +(706,218,o), +(625,218,cs) +); +} +); +width = 800; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,121,o), +(427,166,o), +(468,234,c), +(511,166,o), +(579,121,o), +(668,121,cs), +(797,121,o), +(902,216,o), +(902,362,cs), +(902,504,o), +(799,608,o), +(667,608,cs), +(578,608,o), +(509,555,o), +(468,490,c), +(428,555,o), +(358,608,o), +(270,608,cs), +(138,608,o), +(36,504,o), +(36,362,cs), +(36,216,o), +(140,121,o), +(269,121,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,297,o), +(215,329,o), +(215,366,cs), +(215,402,o), +(240,433,o), +(282,433,cs), +(327,433,o), +(363,397,o), +(383,366,c), +(362,334,o), +(327,297,o), +(282,297,cs) +); +}, +{ +closed = 1; +nodes = ( +(611,297,o), +(576,332,o), +(555,366,c), +(574,397,o), +(610,433,o), +(654,433,cs), +(696,433,o), +(721,402,o), +(721,366,cs), +(721,329,o), +(696,297,o), +(654,297,cs) +); +} +); +width = 900; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,167,o), +(423,248,o), +(475,337,c), +(530,242,o), +(588,167,o), +(691,167,cs), +(803,167,o), +(867,262,o), +(867,364,cs), +(867,469,o), +(803,563,o), +(691,563,cs), +(585,563,o), +(527,481,o), +(475,394,c), +(423,481,o), +(365,563,o), +(260,563,cs), +(148,563,o), +(81,471,o), +(81,364,cs), +(81,253,o), +(148,167,o), +(261,167,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,202,o), +(117,266,o), +(117,364,cs), +(117,458,o), +(174,527,o), +(259,527,cs), +(337,527,o), +(385,473,o), +(453,365,c), +(385,253,o), +(333,202,o), +(260,202,cs) +); +}, +{ +closed = 1; +nodes = ( +(611,202,o), +(565,256,o), +(496,365,c), +(564,472,o), +(611,527,o), +(690,527,cs), +(775,527,o), +(833,457,o), +(833,364,cs), +(833,273,o), +(775,202,o), +(690,202,cs) +); +} +); +width = 903; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,121,o), +(439,166,o), +(480,234,c), +(523,166,o), +(591,121,o), +(680,121,cs), +(809,121,o), +(914,216,o), +(914,362,cs), +(914,504,o), +(811,608,o), +(679,608,cs), +(590,608,o), +(521,555,o), +(480,490,c), +(440,555,o), +(370,608,o), +(282,608,cs), +(150,608,o), +(48,504,o), +(48,362,cs), +(48,216,o), +(152,121,o), +(281,121,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,297,o), +(227,329,o), +(227,366,cs), +(227,402,o), +(252,433,o), +(294,433,cs), +(339,433,o), +(375,397,o), +(395,366,c), +(374,334,o), +(339,297,o), +(294,297,cs) +); +}, +{ +closed = 1; +nodes = ( +(623,297,o), +(588,332,o), +(567,366,c), +(586,397,o), +(622,433,o), +(666,433,cs), +(708,433,o), +(733,402,o), +(733,366,cs), +(733,329,o), +(708,297,o), +(666,297,cs) +); +} +); +width = 924; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,154,o), +(420,243,o), +(474,340,c), +(533,234,o), +(594,154,o), +(700,154,cs), +(817,154,o), +(882,257,o), +(882,364,cs), +(882,475,o), +(817,576,o), +(700,576,cs), +(589,576,o), +(529,486,o), +(474,391,c), +(420,486,o), +(359,576,o), +(249,576,cs), +(133,576,o), +(64,477,o), +(64,364,cs), +(64,246,o), +(133,154,o), +(250,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,186,o), +(97,256,o), +(97,364,cs), +(97,467,o), +(157,543,o), +(247,543,cs), +(329,543,o), +(381,485,o), +(454,365,c), +(381,241,o), +(325,186,o), +(248,186,cs) +); +}, +{ +closed = 1; +nodes = ( +(615,186,o), +(568,245,o), +(493,365,c), +(567,483,o), +(616,543,o), +(700,543,cs), +(790,543,o), +(852,466,o), +(852,364,cs), +(852,265,o), +(790,186,o), +(700,186,cs) +); +} +); +width = 902; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,107,o), +(441,152,o), +(483,222,c), +(527,151,o), +(599,107,o), +(687,107,cs), +(833,107,o), +(932,208,o), +(932,361,cs), +(932,517,o), +(832,622,o), +(686,622,cs), +(596,622,o), +(524,567,o), +(483,500,c), +(440,571,o), +(366,622,o), +(281,622,cs), +(135,622,o), +(36,517,o), +(36,361,cs), +(36,208,o), +(135,107,o), +(279,107,cs) +); +}, +{ +closed = 1; +nodes = ( +(253,299,o), +(231,331,o), +(231,366,cs), +(231,401,o), +(254,431,o), +(294,431,cs), +(338,431,o), +(374,394,o), +(391,366,c), +(367,328,o), +(332,299,o), +(294,299,cs) +); +}, +{ +closed = 1; +nodes = ( +(630,299,o), +(595,335,o), +(577,366,c), +(592,393,o), +(628,431,o), +(672,431,cs), +(711,431,o), +(735,401,o), +(735,366,cs), +(735,332,o), +(712,299,o), +(672,299,cs) +); +} +); +width = 931; +} +); +unicode = 8734; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/integral.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/integral.glyph new file mode 100644 index 00000000..88cbfb18 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/integral.glyph @@ -0,0 +1,551 @@ +{ +glyphname = integral; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,-151,ls), +(220,-151,o), +(284,-94,o), +(284,7,cs), +(284,577,l), +(378,577,l), +(378,729,l), +(251,729,ls), +(156,729,o), +(93,672,o), +(93,570,cs), +(93,0,l), +(9,0,l), +(9,-151,l) +); +} +); +width = 387; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(107,-151,ls), +(140,-151,o), +(148,-129,o), +(148,-106,cs), +(148,699,l), +(271,699,l), +(271,729,l), +(155,729,ls), +(131,729,o), +(117,712,o), +(117,680,cs), +(117,-122,l), +(-7,-122,l), +(-7,-151,l) +); +} +); +width = 264; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-151,ls), +(219,-151,o), +(227,-127,o), +(227,-101,cs), +(227,695,l), +(410,695,l), +(410,729,l), +(237,729,ls), +(208,729,o), +(191,708,o), +(191,675,cs), +(191,-118,l), +(8,-118,l), +(8,-151,l) +); +} +); +width = 418; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,-151,ls), +(302,-151,o), +(363,-86,o), +(363,16,cs), +(363,560,l), +(506,560,l), +(506,729,l), +(305,729,ls), +(199,729,o), +(138,663,o), +(138,562,cs), +(138,17,l), +(-4,17,l), +(-4,-151,l) +); +} +); +width = 502; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,-151,ls), +(122,-151,o), +(130,-129,o), +(130,-106,cs), +(130,699,l), +(253,699,l), +(253,729,l), +(137,729,ls), +(113,729,o), +(99,712,o), +(99,680,cs), +(99,-122,l), +(-25,-122,l), +(-25,-151,l) +); +} +); +width = 228; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,-151,ls), +(215,-151,o), +(279,-94,o), +(279,7,cs), +(279,577,l), +(373,577,l), +(373,729,l), +(246,729,ls), +(151,729,o), +(88,672,o), +(88,570,cs), +(88,0,l), +(4,0,l), +(4,-151,l) +); +} +); +width = 377; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(139,-151,ls), +(179,-151,o), +(187,-126,o), +(187,-99,cs), +(187,693,l), +(336,693,l), +(336,729,l), +(197,729,ls), +(166,729,o), +(149,707,o), +(149,674,cs), +(149,-116,l), +(1,-116,l), +(1,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 337; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,-151,ls), +(254,-151,o), +(318,-94,o), +(318,7,cs), +(318,577,l), +(452,577,l), +(452,729,l), +(285,729,ls), +(190,729,o), +(127,672,o), +(127,570,cs), +(127,0,l), +(-7,0,l), +(-7,-151,l) +); +} +); +width = 445; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,-151,ls), +(214,-151,o), +(222,-127,o), +(222,-101,cs), +(222,695,l), +(405,695,l), +(405,729,l), +(232,729,ls), +(203,729,o), +(186,708,o), +(186,675,cs), +(186,-118,l), +(3,-118,l), +(3,-151,l) +); +} +); +width = 408; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-151,ls), +(297,-151,o), +(358,-86,o), +(358,16,cs), +(358,560,l), +(501,560,l), +(501,729,l), +(300,729,ls), +(194,729,o), +(133,663,o), +(133,562,cs), +(133,17,l), +(-9,17,l), +(-9,-151,l) +); +} +); +width = 492; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(155,-151,ls), +(195,-151,o), +(203,-126,o), +(203,-99,cs), +(203,693,l), +(349,693,l), +(349,729,l), +(213,729,ls), +(182,729,o), +(165,707,o), +(165,674,cs), +(165,-116,l), +(21,-116,l), +(21,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 368; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(169,-151,ls), +(262,-151,o), +(326,-94,o), +(326,7,cs), +(326,577,l), +(453,577,l), +(453,729,l), +(292,729,ls), +(199,729,o), +(137,672,o), +(137,570,cs), +(137,0,l), +(9,0,l), +(9,-151,l) +); +} +); +width = 461; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(21,-151,ls), +(54,-151,o), +(67,-129,o), +(71,-106,cs), +(240,699,l), +(362,699,l), +(369,729,l), +(254,729,ls), +(230,729,o), +(213,712,o), +(206,680,cs), +(38,-122,l), +(-85,-122,l), +(-92,-151,l) +); +} +); +width = 264; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,-151,ls), +(130,-151,o), +(206,-94,o), +(227,7,cs), +(347,577,l), +(440,577,l), +(472,729,l), +(346,729,ls), +(252,729,o), +(178,672,o), +(157,570,cs), +(37,0,l), +(-46,0,l), +(-78,-151,l) +); +} +); +width = 386; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,-151,ls), +(109,-151,o), +(122,-126,o), +(128,-99,cs), +(294,693,l), +(441,693,l), +(449,729,l), +(312,729,ls), +(281,729,o), +(259,707,o), +(252,674,cs), +(87,-116,l), +(-59,-116,l), +(-67,-151,l) +); +} +); +width = 370; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(86,-151,ls), +(181,-151,o), +(253,-107,o), +(277,7,cs), +(396,577,l), +(529,577,l), +(561,729,l), +(396,729,ls), +(301,729,o), +(227,678,o), +(206,570,cs), +(86,0,l), +(-46,0,l), +(-78,-151,l) +); +} +); +width = 476; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(94,-151,ls), +(132,-151,o), +(146,-127,o), +(152,-101,cs), +(318,695,l), +(499,695,l), +(507,729,l), +(335,729,ls), +(307,729,o), +(285,708,o), +(278,675,cs), +(112,-118,l), +(-70,-118,l), +(-77,-151,l) +); +} +); +width = 418; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,-151,ls), +(211,-151,o), +(285,-87,o), +(306,16,cs), +(420,560,l), +(561,560,l), +(598,729,l), +(399,729,ls), +(294,729,o), +(219,664,o), +(199,562,cs), +(85,17,l), +(-57,17,l), +(-92,-151,l) +); +} +); +width = 499; +} +); +unicode = 8747; +userData = { +com.schriftgestaltung.Glyphs.lastChange = "2017-05-02 09:06:55 +0000"; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/iogonek.dotless.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/iogonek.dotless.glyph new file mode 100644 index 00000000..52a43697 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/iogonek.dotless.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = iogonek.dotless; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-46,0); +ref = ogonekcomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (7,0); +ref = ogonekcomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-80,0); +ref = ogonekcomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-43,0); +ref = ogonekcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-50,0); +ref = ogonekcomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (6,0); +ref = ogonekcomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-46,0); +ref = ogonekcomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-39,0); +ref = ogonekcomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-80,0); +ref = ogonekcomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-43,0); +ref = ogonekcomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-38,0); +ref = ogonekcomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-23,0); +ref = ogonekcomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-42,0); +ref = ogonekcomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (5,0); +ref = ogonekcomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-37,0); +ref = ogonekcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-34,0); +ref = ogonekcomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-77,0); +ref = ogonekcomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-43,0); +ref = ogonekcomb; +} +); +width = 306; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/iogonek.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/iogonek.glyph new file mode 100644 index 00000000..b741bd82 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/iogonek.glyph @@ -0,0 +1,319 @@ +{ +color = 6; +glyphname = iogonek; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (12,-156); +ref = dotaccentcomb; +}, +{ +pos = (-46,0); +ref = ogonekcomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-18,-137); +ref = dotaccentcomb; +}, +{ +pos = (7,0); +ref = ogonekcomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (13,-155); +ref = dotaccentcomb; +}, +{ +pos = (-80,0); +ref = ogonekcomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-4,-129); +ref = dotaccentcomb; +}, +{ +pos = (-43,0); +ref = ogonekcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (8,-151); +ref = dotaccentcomb; +}, +{ +pos = (-50,0); +ref = ogonekcomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-19,-137); +ref = dotaccentcomb; +}, +{ +pos = (6,0); +ref = ogonekcomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (25,-150); +ref = dotaccentcomb; +}, +{ +pos = (-46,0); +ref = ogonekcomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (10,-134); +ref = dotaccentcomb; +}, +{ +pos = (-39,0); +ref = ogonekcomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (13,-155); +ref = dotaccentcomb; +}, +{ +alignment = -1; +pos = (-80,0); +ref = ogonekcomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-4,-129); +ref = dotaccentcomb; +}, +{ +alignment = -1; +pos = (-43,0); +ref = ogonekcomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (31,-133); +ref = dotaccentcomb; +}, +{ +pos = (-38,0); +ref = ogonekcomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (18,-120); +ref = dotaccentcomb; +}, +{ +pos = (-23,0); +ref = ogonekcomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-26,-156); +ref = dotaccentcomb; +}, +{ +pos = (-42,0); +ref = ogonekcomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-47,-137); +ref = dotaccentcomb; +}, +{ +pos = (5,0); +ref = ogonekcomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (0,-155); +ref = dotaccentcomb; +}, +{ +pos = (-37,0); +ref = ogonekcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-17,-134); +ref = dotaccentcomb; +}, +{ +pos = (-34,0); +ref = ogonekcomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-19,-155); +ref = dotaccentcomb; +}, +{ +pos = (-77,0); +ref = ogonekcomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-35,-129); +ref = dotaccentcomb; +}, +{ +pos = (-43,0); +ref = ogonekcomb; +} +); +width = 306; +} +); +unicode = 303; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/itilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/itilde.glyph new file mode 100644 index 00000000..88333184 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/itilde.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = itilde; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-65,-156); +ref = tildecomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-116,-138); +ref = tildecomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,-155); +ref = tildecomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-110,-129); +ref = tildecomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-69,-156); +ref = tildecomb; +} +); +width = 102; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-117,-138); +ref = tildecomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-92,-155); +ref = tildecomb; +} +); +width = 154; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-111,-134); +ref = tildecomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-122,-155); +ref = tildecomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = idotless; +}, +{ +alignment = -1; +pos = (-110,-129); +ref = tildecomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-84,-155); +ref = tildecomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-99,-134); +ref = tildecomb; +} +); +width = 303; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-97,-156); +ref = tildecomb; +} +); +width = 151; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-147,-138); +ref = tildecomb; +} +); +width = 229; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-117,-155); +ref = tildecomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,-134); +ref = tildecomb; +} +); +width = 302; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-154,-155); +ref = tildecomb; +} +); +width = 168; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,-134); +ref = tildecomb; +} +); +width = 306; +} +); +unicode = 297; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/j.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/j.glyph new file mode 100644 index 00000000..f61e9e24 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/j.glyph @@ -0,0 +1,651 @@ +{ +color = 6; +glyphname = j; +kernLeft = KO_j; +kernRight = KO_l; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(124,-177,o), +(205,-152,o), +(205,-12,cs), +(205,541,l), +(28,541,l), +(28,-11,ls), +(28,-38,o), +(20,-57,o), +(-5,-57,cs), +(-13,-57,o), +(-23,-55,o), +(-30,-50,c), +(-30,-164,l), +(-8,-173,o), +(21,-177,o), +(52,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,594,l), +(205,729,l), +(28,729,l), +(28,594,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-18,-137); +ref = dotaccentcomb; +} +); +width = 231; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (12,-156); +ref = dotaccentcomb; +} +); +width = 149; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (13,-155); +ref = dotaccentcomb; +} +); +width = 169; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(136,-177,o), +(240,-132,o), +(240,36,cs), +(240,544,l), +(19,544,l), +(19,47,ls), +(19,2,o), +(5,-16,o), +(-31,-16,cs), +(-51,-16,o), +(-60,-13,o), +(-68,-9,c), +(-68,-163,l), +(-49,-171,o), +(-17,-177,o), +(26,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,600,l), +(240,729,l), +(19,729,l), +(19,600,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-4,-129); +ref = dotaccentcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (24,-151); +ref = dotaccentcomb; +} +); +width = 117; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(124,-177,o), +(205,-152,o), +(205,-12,cs), +(205,541,l), +(28,541,l), +(28,-11,ls), +(28,-38,o), +(20,-57,o), +(-5,-57,cs), +(-13,-57,o), +(-23,-55,o), +(-30,-50,c), +(-30,-164,l), +(-8,-173,o), +(21,-177,o), +(52,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,594,l), +(205,729,l), +(28,729,l), +(28,594,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-13,-137); +ref = dotaccentcomb; +} +); +width = 215; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(75,-177,o), +(116,-135,o), +(116,-60,cs), +(116,517,l), +(79,517,l), +(79,-51,ls), +(79,-116,o), +(52,-143,o), +(-5,-143,cs), +(-21,-143,o), +(-40,-140,o), +(-51,-135,c), +(-51,-169,l), +(-40,-174,o), +(-22,-177,o), +(-4,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,616,l), +(116,729,l), +(79,729,l), +(79,616,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (35,-150); +ref = dotaccentcomb; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 164; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(146,-177,o), +(222,-123,o), +(222,7,cs), +(222,544,l), +(30,544,l), +(30,17,ls), +(30,-24,o), +(19,-46,o), +(-19,-46,cs), +(-40,-46,o), +(-51,-43,o), +(-59,-39,c), +(-59,-163,l), +(-33,-173,o), +(1,-177,o), +(37,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,601,l), +(222,729,l), +(30,729,l), +(30,601,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (21,-134); +ref = dotaccentcomb; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +}; +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (18,-155); +ref = dotaccentcomb; +} +); +width = 154; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(136,-177,o), +(240,-132,o), +(240,36,cs), +(240,544,l), +(19,544,l), +(19,47,ls), +(19,2,o), +(5,-16,o), +(-31,-16,cs), +(-51,-16,o), +(-60,-13,o), +(-68,-9,c), +(-68,-163,l), +(-49,-171,o), +(-17,-177,o), +(26,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,600,l), +(240,729,l), +(19,729,l), +(19,600,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (1,-129); +ref = dotaccentcomb; +} +); +width = 292; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(75,-177,o), +(116,-135,o), +(116,-60,cs), +(116,517,l), +(79,517,l), +(79,-51,ls), +(79,-116,o), +(52,-143,o), +(-5,-143,cs), +(-21,-143,o), +(-40,-140,o), +(-51,-135,c), +(-51,-169,l), +(-40,-174,o), +(-22,-177,o), +(-4,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,616,l), +(116,729,l), +(79,729,l), +(79,616,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (32,-133); +ref = dotaccentcomb; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 208; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(146,-177,o), +(222,-123,o), +(222,7,cs), +(222,544,l), +(30,544,l), +(30,17,ls), +(30,-24,o), +(19,-46,o), +(-19,-46,cs), +(-40,-46,o), +(-51,-43,o), +(-59,-39,c), +(-59,-163,l), +(-33,-173,o), +(1,-177,o), +(37,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,601,l), +(222,729,l), +(30,729,l), +(30,601,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (3,-120); +ref = dotaccentcomb; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +}; +width = 283; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-25,-156); +ref = dotaccentcomb; +} +); +width = 150; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-48,-137); +ref = dotaccentcomb; +} +); +width = 228; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (0,-155); +ref = dotaccentcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-18,-134); +ref = dotaccentcomb; +} +); +width = 300; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-18,-155); +ref = dotaccentcomb; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-34,-129); +ref = dotaccentcomb; +} +); +width = 307; +} +); +metricRight = i; +unicode = 106; +userData = { +KernOnName = j; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/j.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/j.ss01.glyph new file mode 100644 index 00000000..6e7e67fd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/j.ss01.glyph @@ -0,0 +1,647 @@ +{ +color = 6; +glyphname = j.ss01; +kernLeft = KO_j; +kernRight = KO_l; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(88,-177,o), +(169,-152,o), +(169,-12,cs), +(169,541,l), +(-8,541,l), +(-8,-11,ls), +(-8,-38,o), +(-16,-57,o), +(-41,-57,cs), +(-49,-57,o), +(-59,-55,o), +(-66,-50,c), +(-66,-164,l), +(-44,-173,o), +(-15,-177,o), +(16,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(169,594,l), +(169,729,l), +(-8,729,l), +(-8,594,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-13,-137); +ref = dotaccentcomb.ss01; +} +); +width = 231; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (20,-156); +ref = dotaccentcomb.ss01; +} +); +width = 149; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (26,-155); +ref = dotaccentcomb.ss01; +} +); +width = 169; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(88,-177,o), +(192,-132,o), +(192,36,cs), +(192,544,l), +(-29,544,l), +(-29,47,ls), +(-29,2,o), +(-43,-16,o), +(-79,-16,cs), +(-99,-16,o), +(-108,-13,o), +(-116,-9,c), +(-116,-163,l), +(-97,-171,o), +(-65,-177,o), +(-22,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,600,l), +(192,729,l), +(-29,729,l), +(-29,600,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (3,-129); +ref = dotaccentcomb.ss01; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (32,-156); +ref = dotaccentcomb.ss01; +} +); +width = 117; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(88,-177,o), +(169,-152,o), +(169,-12,cs), +(169,541,l), +(-8,541,l), +(-8,-11,ls), +(-8,-38,o), +(-16,-57,o), +(-41,-57,cs), +(-49,-57,o), +(-59,-55,o), +(-66,-50,c), +(-66,-164,l), +(-44,-173,o), +(-15,-177,o), +(16,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(169,594,l), +(169,729,l), +(-8,729,l), +(-8,594,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-8,-137); +ref = dotaccentcomb.ss01; +} +); +width = 215; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-9,-177,o), +(32,-135,o), +(32,-60,cs), +(32,517,l), +(-5,517,l), +(-5,-51,ls), +(-5,-116,o), +(-32,-143,o), +(-89,-143,cs), +(-105,-143,o), +(-124,-140,o), +(-135,-135,c), +(-135,-169,l), +(-124,-174,o), +(-106,-177,o), +(-88,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(32,616,l), +(32,729,l), +(-5,729,l), +(-5,616,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (48,-155); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 164; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(140,-177,o), +(216,-123,o), +(216,7,cs), +(216,544,l), +(24,544,l), +(24,17,ls), +(24,-24,o), +(13,-46,o), +(-25,-46,cs), +(-46,-46,o), +(-57,-43,o), +(-65,-39,c), +(-65,-163,l), +(-39,-173,o), +(-5,-177,o), +(31,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,601,l), +(216,729,l), +(24,729,l), +(24,601,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (22,-134); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +}; +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (31,-155); +ref = dotaccentcomb.ss01; +} +); +width = 154; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(88,-177,o), +(192,-132,o), +(192,36,cs), +(192,544,l), +(-29,544,l), +(-29,47,ls), +(-29,2,o), +(-43,-16,o), +(-79,-16,cs), +(-99,-16,o), +(-108,-13,o), +(-116,-9,c), +(-116,-163,l), +(-97,-171,o), +(-65,-177,o), +(-22,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,600,l), +(192,729,l), +(-29,729,l), +(-29,600,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (8,-129); +ref = dotaccentcomb.ss01; +} +); +width = 292; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-9,-177,o), +(32,-135,o), +(32,-60,cs), +(32,517,l), +(-5,517,l), +(-5,-51,ls), +(-5,-116,o), +(-32,-143,o), +(-89,-143,cs), +(-105,-143,o), +(-124,-140,o), +(-135,-135,c), +(-135,-169,l), +(-124,-174,o), +(-106,-177,o), +(-88,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(32,616,l), +(32,729,l), +(-5,729,l), +(-5,616,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (45,-155); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 208; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(140,-177,o), +(216,-123,o), +(216,7,cs), +(216,544,l), +(24,544,l), +(24,17,ls), +(24,-24,o), +(13,-46,o), +(-25,-46,cs), +(-46,-46,o), +(-57,-43,o), +(-65,-39,c), +(-65,-163,l), +(-39,-173,o), +(-5,-177,o), +(31,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,601,l), +(216,729,l), +(24,729,l), +(24,601,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (2,-134); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +}; +width = 283; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-11,-156); +ref = dotaccentcomb.ss01; +} +); +width = 150; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-42,-137); +ref = dotaccentcomb.ss01; +} +); +width = 228; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (13,-155); +ref = dotaccentcomb.ss01; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-13,-134); +ref = dotaccentcomb.ss01; +} +); +width = 300; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-5,-155); +ref = dotaccentcomb.ss01; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-25,-134); +ref = dotaccentcomb.ss01; +} +); +width = 307; +} +); +metricRight = i; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/jacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/jacute.glyph new file mode 100644 index 00000000..4dfbd3ae --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/jacute.glyph @@ -0,0 +1,241 @@ +{ +color = 6; +glyphname = jacute; +kernRight = KO_jacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (19,-156); +ref = acutecomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (4,-137); +ref = acutecomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (27,-155); +ref = acutecomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (37,-129); +ref = acutecomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (31,-156); +ref = acutecomb; +} +); +width = 117; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (9,-137); +ref = acutecomb; +} +); +width = 215; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (52,-155); +ref = acutecomb; +} +); +width = 164; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (46,-134); +ref = acutecomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (32,-155); +ref = acutecomb; +} +); +width = 154; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (42,-129); +ref = acutecomb; +} +); +width = 292; +}, +{ +layerId = m019; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (49,-155); +ref = acutecomb; +} +); +width = 208; +}, +{ +layerId = m020; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (26,-134); +ref = acutecomb; +} +); +width = 283; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-12,-156); +ref = acutecomb; +} +); +width = 150; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-25,-137); +ref = acutecomb; +} +); +width = 228; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (15,-155); +ref = acutecomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (12,-134); +ref = acutecomb; +} +); +width = 300; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-4,-155); +ref = acutecomb; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (10,-129); +ref = acutecomb; +} +); +width = 307; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/jcircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/jcircumflex.glyph new file mode 100644 index 00000000..4bc0a5ad --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/jcircumflex.glyph @@ -0,0 +1,241 @@ +{ +color = 6; +glyphname = jcircumflex; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-54,-156); +ref = circumflexcomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-101,-137); +ref = circumflexcomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-94,-155); +ref = circumflexcomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-137,-129); +ref = circumflexcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-42,-156); +ref = circumflexcomb; +} +); +width = 117; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-96,-137); +ref = circumflexcomb; +} +); +width = 215; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-57,-155); +ref = circumflexcomb; +} +); +width = 164; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-89,-134); +ref = circumflexcomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-89,-155); +ref = circumflexcomb; +} +); +width = 154; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-132,-129); +ref = circumflexcomb; +} +); +width = 292; +}, +{ +layerId = m019; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-58,-155); +ref = circumflexcomb; +} +); +width = 208; +}, +{ +layerId = m020; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-103,-134); +ref = circumflexcomb; +} +); +width = 283; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-86,-156); +ref = circumflexcomb; +} +); +width = 150; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-132,-137); +ref = circumflexcomb; +} +); +width = 228; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-95,-155); +ref = circumflexcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-122,-134); +ref = circumflexcomb; +} +); +width = 300; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-127,-155); +ref = circumflexcomb; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-166,-129); +ref = circumflexcomb; +} +); +width = 307; +} +); +unicode = 309; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/jdotless.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/jdotless.glyph new file mode 100644 index 00000000..d90ab6e2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/jdotless.glyph @@ -0,0 +1,742 @@ +{ +glyphname = jdotless; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (116,-250); +}, +{ +name = top; +pos = (116,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,-167,ls), +(167,-167,o), +(204,-108,o), +(204,-2,cs), +(204,541,l), +(27,541,l), +(27,-1,ls), +(27,-28,o), +(20,-40,o), +(-6,-40,cs), +(-31,-40,l), +(-31,-167,l) +); +} +); +width = 231; +}, +{ +anchors = ( +{ +name = bottom; +pos = (75,-250); +}, +{ +name = top; +pos = (75,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(25,-167,ls), +(74,-167,o), +(89,-138,o), +(89,-94,cs), +(89,516,l), +(60,516,l), +(60,-89,ls), +(60,-128,o), +(49,-140,o), +(20,-140,cs), +(3,-140,l), +(3,-167,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = bottom; +pos = (104,-250); +}, +{ +name = top; +pos = (85,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(-24,-167,ls), +(41,-167,o), +(103,-140,o), +(103,-43,cs), +(103,517,l), +(66,517,l), +(66,-35,ls), +(66,-107,o), +(36,-133,o), +(-28,-133,cs), +(-74,-133,l), +(-74,-167,l) +); +} +); +width = 169; +}, +{ +anchors = ( +{ +name = bottom; +pos = (154,-250); +}, +{ +name = top; +pos = (154,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(67,-167,ls), +(201,-167,o), +(264,-104,o), +(264,29,cs), +(264,544,l), +(43,544,l), +(43,54,ls), +(43,9,o), +(29,-6,o), +(-7,-6,cs), +(-44,-6,l), +(-44,-167,l) +); +} +); +width = 307; +}, +{ +anchors = ( +{ +name = bottom; +pos = (67,-250); +}, +{ +name = top; +pos = (67,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(17,-167,ls), +(67,-167,o), +(82,-138,o), +(82,-94,cs), +(82,516,l), +(52,516,l), +(52,-89,ls), +(52,-128,o), +(41,-140,o), +(12,-140,cs), +(-5,-140,l), +(-5,-167,l) +); +} +); +width = 117; +}, +{ +anchors = ( +{ +name = bottom; +pos = (111,-250); +}, +{ +name = top; +pos = (111,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(46,-167,ls), +(162,-167,o), +(199,-108,o), +(199,-2,cs), +(199,541,l), +(22,541,l), +(22,7,ls), +(22,-16,o), +(16,-26,o), +(-8,-26,cs), +(-36,-26,l), +(-36,-167,l) +); +} +); +width = 215; +}, +{ +anchors = ( +{ +name = bottom; +pos = (134,-250); +}, +{ +name = top; +pos = (87,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(15,-167,ls), +(76,-167,o), +(105,-128,o), +(105,-70,cs), +(105,517,l), +(68,517,l), +(68,-60,ls), +(68,-113,o), +(50,-133,o), +(4,-133,cs), +(-42,-133,l), +(-42,-167,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = j; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = j; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 164; +}, +{ +anchors = ( +{ +name = bottom; +pos = (137,-250); +}, +{ +name = top; +pos = (137,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(48,-167,ls), +(183,-167,o), +(233,-97,o), +(233,25,cs), +(233,544,l), +(42,544,l), +(42,21,ls), +(42,-19,o), +(27,-34,o), +(-9,-34,cs), +(-48,-34,l), +(-48,-167,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = j; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = j; +}; +width = 263; +}, +{ +anchors = ( +{ +name = bottom; +pos = (99,-250); +}, +{ +name = top; +pos = (80,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(-29,-167,ls), +(36,-167,o), +(98,-140,o), +(98,-43,cs), +(98,517,l), +(61,517,l), +(61,-35,ls), +(61,-107,o), +(31,-133,o), +(-33,-133,cs), +(-79,-133,l), +(-79,-167,l) +); +} +); +width = 154; +}, +{ +anchors = ( +{ +name = bottom; +pos = (149,-250); +}, +{ +name = top; +pos = (149,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,-167,ls), +(196,-167,o), +(259,-104,o), +(259,29,cs), +(259,544,l), +(38,544,l), +(38,54,ls), +(38,9,o), +(24,-6,o), +(-12,-6,cs), +(-49,-6,l), +(-49,-167,l) +); +} +); +width = 292; +}, +{ +anchors = ( +{ +name = bottom; +pos = (151,-250); +}, +{ +name = top; +pos = (105,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(35,-182,ls), +(94,-182,o), +(123,-143,o), +(123,-85,cs), +(123,517,l), +(86,517,l), +(86,-75,ls), +(86,-128,o), +(68,-148,o), +(24,-148,cs), +(-22,-148,l), +(-22,-182,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = j; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = j; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 208; +}, +{ +anchors = ( +{ +name = bottom; +pos = (131,-250); +}, +{ +name = top; +pos = (136,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(54,-182,ls), +(184,-182,o), +(232,-112,o), +(232,10,cs), +(232,544,l), +(42,544,l), +(42,29,ls), +(42,-11,o), +(29,-26,o), +(-2,-26,cs), +(-37,-26,l), +(-37,-182,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = j; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = j; +}; +width = 283; +}, +{ +anchors = ( +{ +name = bottom; +pos = (-8,-200); +}, +{ +name = top; +pos = (129,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-69,-167,ls), +(-22,-167,o), +(4,-150,o), +(15,-97,cs), +(143,516,l), +(114,516,l), +(-12,-89,ls), +(-18,-122,o), +(-31,-140,o), +(-65,-140,cs), +(-79,-140,l), +(-85,-167,l) +); +} +); +width = 150; +}, +{ +anchors = ( +{ +name = bottom; +pos = (28,-200); +}, +{ +name = top; +pos = (170,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(-41,-167,ls), +(67,-167,o), +(121,-117,o), +(142,-12,cs), +(258,541,l), +(82,541,l), +(-30,-1,ls), +(-36,-29,o), +(-49,-47,o), +(-75,-47,cs), +(-97,-47,l), +(-121,-167,l) +); +} +); +width = 228; +}, +{ +anchors = ( +{ +name = bottom; +pos = (12,-200); +}, +{ +name = top; +pos = (157,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-80,-167,ls), +(-6,-167,o), +(40,-129,o), +(57,-49,cs), +(174,517,l), +(139,517,l), +(22,-43,ls), +(9,-107,o), +(-18,-134,o), +(-81,-134,cs), +(-124,-134,l), +(-132,-167,l) +); +} +); +width = 206; +}, +{ +anchors = ( +{ +name = bottom; +pos = (63,-200); +}, +{ +name = top; +pos = (207,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(-24,-167,ls), +(90,-167,o), +(164,-114,o), +(188,-1,cs), +(302,544,l), +(112,544,l), +(5,35,ls), +(-7,-21,o), +(-27,-27,o), +(-72,-27,cs), +(-91,-27,l), +(-119,-167,l) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = bottom; +pos = (0,-200); +}, +{ +name = top; +pos = (139,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-104,-167,ls), +(-25,-167,o), +(20,-134,o), +(38,-50,cs), +(157,517,l), +(120,517,l), +(2,-46,ls), +(-9,-102,o), +(-33,-133,o), +(-105,-133,cs), +(-151,-133,l), +(-158,-167,l) +); +} +); +width = 169; +}, +{ +anchors = ( +{ +name = bottom; +pos = (67,-200); +}, +{ +name = top; +pos = (210,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(-43,-167,ls), +(104,-167,o), +(186,-95,o), +(213,33,cs), +(320,544,l), +(100,544,l), +(-1,60,ls), +(-10,15,o), +(-28,-3,o), +(-68,-3,cs), +(-99,-3,l), +(-131,-167,l) +); +} +); +width = 307; +} +); +metricLeft = "=l@100"; +metricRight = l; +unicode = 567; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/k.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/k.glyph new file mode 100644 index 00000000..8ed1e305 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/k.glyph @@ -0,0 +1,901 @@ +{ +glyphname = k; +kernLeft = KO_i; +kernRight = KO_k; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (231,0); +}, +{ +name = top; +pos = (231,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,0,l), +(355,331,l), +(225,210,l), +(243,127,l), +(271,0,l) +); +}, +{ +closed = 1; +nodes = ( +(204,0,l), +(204,120,l), +(233,209,l), +(354,301,l), +(458,541,l), +(269,541,l), +(227,410,l), +(204,326,l), +(204,729,l), +(27,729,l), +(27,0,l) +); +} +); +width = 465; +}, +{ +anchors = ( +{ +name = bottom; +pos = (141,0); +}, +{ +name = top; +pos = (141,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(268,0,l), +(158,323,l), +(145,294,l), +(163,231,l), +(237,0,l) +); +}, +{ +closed = 1; +nodes = ( +(89,0,l), +(89,170,l), +(151,293,l), +(157,308,l), +(264,516,l), +(232,516,l), +(127,303,l), +(89,223,l), +(89,729,l), +(60,729,l), +(60,0,l) +); +} +); +width = 280; +}, +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = top; +pos = (282,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(552,0,l), +(278,326,l), +(252,306,l), +(301,244,l), +(505,0,l) +); +}, +{ +closed = 1; +nodes = ( +(103,0,l), +(103,182,l), +(264,304,l), +(276,315,l), +(536,517,l), +(481,517,l), +(173,277,l), +(103,221,l), +(103,729,l), +(66,729,l), +(66,0,l) +); +} +); +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (371,0); +}, +{ +name = top; +pos = (371,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(741,0,l), +(474,339,l), +(315,209,l), +(355,150,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(264,0,l), +(264,142,l), +(336,207,l), +(472,316,l), +(737,544,l), +(462,544,l), +(329,423,l), +(264,360,l), +(264,729,l), +(43,729,l), +(43,0,l) +); +} +); +width = 732; +}, +{ +anchors = ( +{ +name = bottom; +pos = (117,0); +}, +{ +name = top; +pos = (117,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,l), +(142,341,l), +(124,309,l), +(149,241,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(66,0,l), +(66,193,l), +(133,311,l), +(140,323,l), +(249,516,l), +(215,516,l), +(109,327,l), +(66,249,l), +(66,729,l), +(36,729,l), +(36,0,l) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (220,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,0,l), +(339,347,l), +(207,191,l), +(226,118,l), +(255,0,l) +); +}, +{ +closed = 1; +nodes = ( +(193,0,l), +(193,113,l), +(215,191,l), +(338,317,l), +(434,541,l), +(262,541,l), +(217,422,l), +(193,361,l), +(193,729,l), +(16,729,l), +(16,0,l) +); +} +); +width = 436; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = top; +pos = (236,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,0,l), +(240,328,l), +(212,301,l), +(253,244,l), +(423,0,l) +); +}, +{ +closed = 1; +nodes = ( +(96,0,l), +(96,175,l), +(225,300,l), +(239,313,l), +(448,517,l), +(399,517,l), +(145,269,l), +(96,221,l), +(96,729,l), +(59,729,l), +(59,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 463; +}, +{ +anchors = ( +{ +name = bottom; +pos = (306,0); +}, +{ +name = top; +pos = (306,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(590,0,l), +(390,345,l), +(252,204,l), +(290,147,l), +(373,0,l) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(221,151,l), +(287,217,l), +(379,309,l), +(582,544,l), +(368,544,l), +(263,423,l), +(221,376,l), +(221,729,l), +(30,729,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +}; +width = 597; +}, +{ +anchors = ( +{ +name = bottom; +pos = (272,0); +}, +{ +name = top; +pos = (272,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(549,0,l), +(270,328,l), +(241,305,l), +(293,244,l), +(500,0,l) +); +}, +{ +closed = 1; +nodes = ( +(93,0,l), +(93,180,l), +(254,304,l), +(269,315,l), +(527,517,l), +(471,517,l), +(163,277,l), +(93,221,l), +(93,729,l), +(56,729,l), +(56,0,l) +); +} +); +width = 551; +}, +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = top; +pos = (358,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(728,0,l), +(461,339,l), +(302,209,l), +(342,150,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(251,0,l), +(251,142,l), +(323,207,l), +(459,316,l), +(724,544,l), +(449,544,l), +(316,423,l), +(251,360,l), +(251,729,l), +(30,729,l), +(30,0,l) +); +} +); +width = 714; +}, +{ +anchors = ( +{ +name = bottom; +pos = (259,0); +}, +{ +name = top; +pos = (259,759); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(494,0,l), +(266,329,l), +(239,303,l), +(279,246,l), +(449,0,l) +); +}, +{ +closed = 1; +nodes = ( +(123,0,l), +(123,175,l), +(250,302,l), +(264,314,l), +(467,517,l), +(420,517,l), +(170,269,l), +(123,220,l), +(123,759,l), +(86,759,l), +(86,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 506; +}, +{ +anchors = ( +{ +name = bottom; +pos = (333,0); +}, +{ +name = top; +pos = (333,759); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(637,0,l), +(427,339,l), +(295,213,l), +(334,141,l), +(414,0,l) +); +}, +{ +closed = 1; +nodes = ( +(252,0,l), +(252,144,l), +(314,210,l), +(426,314,l), +(637,544,l), +(405,544,l), +(293,403,l), +(252,351,l), +(252,759,l), +(60,759,l), +(60,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +}; +width = 642; +}, +{ +anchors = ( +{ +name = bottom; +pos = (98,0); +}, +{ +name = top; +pos = (249,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(175,329,l), +(154,298,l), +(160,231,l), +(185,0,l) +); +}, +{ +closed = 1; +nodes = ( +(36,0,l), +(70,170,l), +(160,297,l), +(171,312,l), +(316,516,l), +(279,516,l), +(130,303,l), +(85,237,l), +(187,729,l), +(158,729,l), +(7,0,l) +); +} +); +width = 281; +}, +{ +anchors = ( +{ +name = bottom; +pos = (181,0); +}, +{ +name = top; +pos = (332,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,0,l), +(364,332,l), +(210,210,l), +(209,127,l), +(212,0,l) +); +}, +{ +closed = 1; +nodes = ( +(146,0,l), +(172,120,l), +(217,208,l), +(357,303,l), +(510,541,l), +(323,541,l), +(253,410,l), +(214,326,l), +(297,729,l), +(122,729,l), +(-30,0,l) +); +} +); +width = 461; +}, +{ +anchors = ( +{ +name = bottom; +pos = (211,0); +}, +{ +name = top; +pos = (362,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,0,l), +(274,330,l), +(245,306,l), +(271,244,l), +(376,0,l) +); +}, +{ +closed = 1; +nodes = ( +(68,0,l), +(104,175,l), +(256,303,l), +(271,315,l), +(514,517,l), +(461,517,l), +(189,291,l), +(115,227,l), +(220,729,l), +(183,729,l), +(31,0,l) +); +} +); +width = 497; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (431,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(574,0,l), +(433,331,l), +(281,218,l), +(308,147,l), +(366,0,l) +); +}, +{ +closed = 1; +nodes = ( +(190,0,l), +(221,144,l), +(299,214,l), +(427,305,l), +(687,544,l), +(456,544,l), +(311,400,l), +(263,351,l), +(342,729,l), +(150,729,l), +(-2,0,l) +); +} +); +width = 638; +}, +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = top; +pos = (386,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,0,l), +(287,327,l), +(259,308,l), +(296,244,l), +(446,0,l) +); +}, +{ +closed = 1; +nodes = ( +(49,0,l), +(86,182,l), +(270,305,l), +(285,315,l), +(584,517,l), +(529,517,l), +(178,280,l), +(95,222,l), +(200,729,l), +(163,729,l), +(12,0,l) +); +} +); +width = 556; +}, +{ +anchors = ( +{ +name = bottom; +pos = (322,0); +}, +{ +name = top; +pos = (473,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(677,0,l), +(478,335,l), +(306,216,l), +(338,151,l), +(422,0,l) +); +}, +{ +closed = 1; +nodes = ( +(206,0,l), +(236,142,l), +(326,212,l), +(473,311,l), +(785,544,l), +(505,544,l), +(334,409,l), +(283,366,l), +(357,729,l), +(138,729,l), +(-13,0,l) +); +} +); +width = 724; +} +); +metricLeft = l; +unicode = 107; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/kcommaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/kcommaaccent.glyph new file mode 100644 index 00000000..96c26cf9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/kcommaaccent.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = kcommaaccent; +kernRight = KO_k; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = k; +}, +{ +pos = (44,0); +ref = commaaccentcomb; +} +); +width = 280; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = k; +}, +{ +pos = (49,0); +ref = commaaccentcomb; +} +); +width = 465; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = k; +}, +{ +pos = (181,0); +ref = commaaccentcomb; +} +); +width = 563; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = k; +}, +{ +pos = (187,0); +ref = commaaccentcomb; +} +); +width = 732; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = k; +}, +{ +pos = (40,0); +ref = commaaccentcomb; +} +); +width = 255; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = k; +}, +{ +pos = (48,0); +ref = commaaccentcomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = k; +}, +{ +pos = (150,0); +ref = commaaccentcomb; +} +); +width = 463; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = k; +}, +{ +pos = (157,0); +ref = commaaccentcomb; +} +); +width = 597; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = k; +}, +{ +pos = (181,0); +ref = commaaccentcomb; +} +); +width = 551; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = k; +}, +{ +pos = (184,0); +ref = commaaccentcomb; +} +); +width = 714; +}, +{ +layerId = m019; +shapes = ( +{ +ref = k; +}, +{ +pos = (152,0); +ref = commaaccentcomb; +} +); +width = 506; +}, +{ +layerId = m020; +shapes = ( +{ +ref = k; +}, +{ +pos = (170,0); +ref = commaaccentcomb; +} +); +width = 642; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = k; +}, +{ +pos = (55,0); +ref = commaaccentcomb; +} +); +width = 281; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = k; +}, +{ +pos = (57,0); +ref = commaaccentcomb; +} +); +width = 461; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = k; +}, +{ +pos = (159,0); +ref = commaaccentcomb; +} +); +width = 497; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = k; +}, +{ +pos = (165,0); +ref = commaaccentcomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = k; +}, +{ +pos = (187,0); +ref = commaaccentcomb; +} +); +width = 556; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = k; +}, +{ +pos = (199,0); +ref = commaaccentcomb; +} +); +width = 724; +} +); +unicode = 311; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/l.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/l.glyph new file mode 100644 index 00000000..e14bdbaa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/l.glyph @@ -0,0 +1,835 @@ +{ +glyphname = l; +kernLeft = KO_i; +kernRight = KO_l; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (231,0); +}, +{ +name = bottom; +pos = (116,0); +}, +{ +name = center; +pos = (116,365); +}, +{ +name = top; +pos = (116,729); +}, +{ +name = topright; +pos = (204,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,729,l), +(27,729,l), +(27,0,l) +); +} +); +width = 231; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (149,0); +}, +{ +name = bottom; +pos = (75,0); +}, +{ +name = center; +pos = (75,365); +}, +{ +name = top; +pos = (75,729); +}, +{ +name = topright; +pos = (89,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,0,l), +(89,729,l), +(60,729,l), +(60,0,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (169,0); +}, +{ +name = bottom; +pos = (84,0); +}, +{ +name = center; +pos = (84,365); +}, +{ +name = top; +pos = (84,729); +}, +{ +name = topright; +pos = (103,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(103,729,l), +(66,729,l), +(66,0,l) +); +} +); +width = 169; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (10,0); +}, +{ +name = "#exit"; +pos = (307,0); +}, +{ +name = bottom; +pos = (154,0); +}, +{ +name = center; +pos = (154,365); +}, +{ +name = top; +pos = (154,729); +}, +{ +name = topright; +pos = (264,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,729,l), +(43,729,l), +(43,0,l) +); +} +); +width = 307; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (101,0); +}, +{ +name = bottom; +pos = (51,0); +}, +{ +name = center; +pos = (51,365); +}, +{ +name = top; +pos = (51,729); +}, +{ +name = topright; +pos = (65,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(66,729,l), +(36,729,l), +(36,0,l) +); +} +); +width = 101; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (209,0); +}, +{ +name = bottom; +pos = (105,0); +}, +{ +name = center; +pos = (105,365); +}, +{ +name = top; +pos = (105,729); +}, +{ +name = topright; +pos = (193,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,729,l), +(16,729,l), +(16,0,l) +); +} +); +width = 209; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (155,0); +}, +{ +name = bottom; +pos = (78,0); +}, +{ +name = center; +pos = (78,365); +}, +{ +name = top; +pos = (78,729); +}, +{ +name = topright; +pos = (96,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(96,0,l), +(96,729,l), +(59,729,l), +(59,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 155; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (251,0); +}, +{ +name = bottom; +pos = (126,0); +}, +{ +name = center; +pos = (126,365); +}, +{ +name = top; +pos = (126,729); +}, +{ +name = topright; +pos = (221,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,l), +(221,729,l), +(30,729,l), +(30,0,l) +); +} +); +width = 251; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (149,0); +}, +{ +name = bottom; +pos = (74,0); +}, +{ +name = center; +pos = (74,365); +}, +{ +name = top; +pos = (74,729); +}, +{ +name = topright; +pos = (93,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(93,729,l), +(56,729,l), +(56,0,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (281,0); +}, +{ +name = bottom; +pos = (141,0); +}, +{ +name = center; +pos = (141,365); +}, +{ +name = top; +pos = (141,729); +}, +{ +name = topright; +pos = (251,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(251,729,l), +(30,729,l), +(30,0,l) +); +} +); +width = 281; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (2,0); +}, +{ +name = "#exit"; +pos = (205,0); +}, +{ +name = bottom; +pos = (104,0); +}, +{ +name = center; +pos = (104,365); +}, +{ +name = top; +pos = (104,759); +}, +{ +name = topright; +pos = (122,759); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(122,0,l), +(122,759,l), +(85,759,l), +(85,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 207; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (311,0); +}, +{ +name = bottom; +pos = (155,0); +}, +{ +name = center; +pos = (155,365); +}, +{ +name = top; +pos = (155,759); +}, +{ +name = topright; +pos = (250,759); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,l), +(250,759,l), +(60,759,l), +(60,0,l) +); +} +); +width = 311; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-1,0); +}, +{ +name = "#exit"; +pos = (97,0); +}, +{ +name = bottom; +pos = (22,0); +}, +{ +name = center; +pos = (97,365); +}, +{ +name = top; +pos = (172,729); +}, +{ +name = topright; +pos = (187,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,0,l), +(187,729,l), +(158,729,l), +(7,0,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-10,0); +}, +{ +name = "#exit"; +pos = (171,0); +}, +{ +name = bottom; +pos = (58,0); +}, +{ +name = center; +pos = (134,365); +}, +{ +name = top; +pos = (209,729); +}, +{ +name = topright; +pos = (297,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,0,l), +(297,729,l), +(122,729,l), +(-30,0,l) +); +} +); +width = 228; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-5,0); +}, +{ +name = "#exit"; +pos = (149,0); +}, +{ +name = bottom; +pos = (49,0); +}, +{ +name = center; +pos = (124,365); +}, +{ +name = top; +pos = (200,729); +}, +{ +name = topright; +pos = (218,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(218,729,l), +(182,729,l), +(31,0,l) +); +} +); +width = 206; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (242,0); +}, +{ +name = bottom; +pos = (93,0); +}, +{ +name = center; +pos = (169,365); +}, +{ +name = top; +pos = (244,729); +}, +{ +name = topright; +pos = (340,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,0,l), +(340,729,l), +(149,729,l), +(-2,0,l) +); +} +); +width = 299; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (12,0); +}, +{ +name = "#exit"; +pos = (116,0); +}, +{ +name = bottom; +pos = (31,0); +}, +{ +name = center; +pos = (106,365); +}, +{ +name = top; +pos = (181,729); +}, +{ +name = topright; +pos = (200,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,0,l), +(200,729,l), +(163,729,l), +(12,0,l) +); +} +); +width = 169; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-13,0); +}, +{ +name = "#exit"; +pos = (250,0); +}, +{ +name = bottom; +pos = (97,0); +}, +{ +name = center; +pos = (172,365); +}, +{ +name = top; +pos = (248,729); +}, +{ +name = topright; +pos = (357,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(357,729,l), +(138,729,l), +(-13,0,l) +); +} +); +width = 305; +} +); +metricRight = "=|"; +unicode = 108; +userData = { +KernOnName = l; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/l.ss03.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/l.ss03.glyph new file mode 100644 index 00000000..d0012889 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/l.ss03.glyph @@ -0,0 +1,1146 @@ +{ +glyphname = l.ss03; +kernLeft = KO_i; +kernRight = KO_l.ss03; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (112,0); +}, +{ +name = center; +pos = (112,365); +}, +{ +name = top; +pos = (112,729); +}, +{ +name = topright; +pos = (200,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,0,l), +(194,729,l), +(17,729,l), +(17,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,0,l), +(239,132,l), +(221,132,ls), +(203,132,o), +(200,137,o), +(200,160,cs), +(200,729,l), +(24,729,l), +(24,124,ls), +(24,40,o), +(62,0,o), +(151,0,cs) +); +} +); +width = 250; +}, +{ +anchors = ( +{ +name = bottom; +pos = (74,0); +}, +{ +name = center; +pos = (74,365); +}, +{ +name = top; +pos = (74,729); +}, +{ +name = topright; +pos = (88,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(132,0,l), +(132,29,l), +(115,29,ls), +(92,29,o), +(88,41,o), +(88,64,cs), +(88,729,l), +(59,729,l), +(59,56,ls), +(59,14,o), +(78,0,o), +(111,0,cs) +); +} +); +width = 152; +}, +{ +anchors = ( +{ +name = bottom; +pos = (82,0); +}, +{ +name = center; +pos = (82,365); +}, +{ +name = top; +pos = (82,729); +}, +{ +name = topright; +pos = (101,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(212,0,l), +(212,36,l), +(152,36,ls), +(118,36,o), +(101,48,o), +(101,90,cs), +(101,729,l), +(64,729,l), +(64,79,ls), +(64,23,o), +(95,0,o), +(143,0,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,l), +(221,36,l), +(160,36,ls), +(119,36,o), +(101,49,o), +(101,98,cs), +(101,729,l), +(64,729,l), +(64,93,ls), +(64,29,o), +(93,0,o), +(157,0,cs) +); +} +); +width = 233; +}, +{ +anchors = ( +{ +name = bottom; +pos = (148,0); +}, +{ +name = center; +pos = (148,365); +}, +{ +name = top; +pos = (148,729); +}, +{ +name = topright; +pos = (258,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,0,l), +(313,164,l), +(289,164,ls), +(271,164,o), +(258,170,o), +(258,200,cs), +(258,729,l), +(37,729,l), +(37,159,ls), +(37,56,o), +(81,0,o), +(195,0,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,0,l), +(333,164,l), +(289,164,ls), +(271,164,o), +(258,170,o), +(258,200,cs), +(258,729,l), +(37,729,l), +(37,159,ls), +(37,56,o), +(81,0,o), +(195,0,cs) +); +} +); +width = 337; +}, +{ +anchors = ( +{ +name = bottom; +pos = (52,0); +}, +{ +name = center; +pos = (52,365); +}, +{ +name = top; +pos = (52,729); +}, +{ +name = topright; +pos = (66,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,0,l), +(110,29,l), +(93,29,ls), +(70,29,o), +(66,41,o), +(66,64,cs), +(66,729,l), +(37,729,l), +(37,56,ls), +(37,14,o), +(56,0,o), +(89,0,cs) +); +} +); +width = 110; +}, +{ +anchors = ( +{ +name = bottom; +pos = (102,0); +}, +{ +name = center; +pos = (102,365); +}, +{ +name = top; +pos = (102,729); +}, +{ +name = topright; +pos = (190,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,0,l), +(194,729,l), +(17,729,l), +(17,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,0,l), +(229,132,l), +(211,132,ls), +(193,132,o), +(190,137,o), +(190,160,cs), +(190,729,l), +(14,729,l), +(14,124,ls), +(14,40,o), +(52,0,o), +(141,0,cs) +); +} +); +width = 233; +}, +{ +anchors = ( +{ +name = bottom; +pos = (83,0); +}, +{ +name = center; +pos = (83,365); +}, +{ +name = top; +pos = (83,729); +}, +{ +name = topright; +pos = (101,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,l), +(222,36,l), +(184,36,ls), +(150,36,o), +(133,48,o), +(133,89,cs), +(133,729,l), +(96,729,l), +(96,80,ls), +(96,24,o), +(127,0,o), +(176,0,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,0,l), +(192,36,l), +(148,36,ls), +(117,36,o), +(101,47,o), +(101,85,cs), +(101,729,l), +(64,729,l), +(64,76,ls), +(64,22,o), +(92,0,o), +(142,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 195; +}, +{ +anchors = ( +{ +name = bottom; +pos = (124,0); +}, +{ +name = center; +pos = (124,365); +}, +{ +name = top; +pos = (124,729); +}, +{ +name = topright; +pos = (219,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(310,0,l), +(310,153,l), +(280,153,ls), +(259,153,o), +(245,160,o), +(245,188,cs), +(245,729,l), +(54,729,l), +(54,152,ls), +(54,61,o), +(84,0,o), +(211,0,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,0,l), +(282,148,l), +(252,148,ls), +(233,148,o), +(219,154,o), +(219,181,cs), +(219,729,l), +(28,729,l), +(28,143,ls), +(28,51,o), +(69,0,o), +(175,0,cs) +); +} +); +width = 282; +}, +{ +anchors = ( +{ +name = bottom; +pos = (72,0); +}, +{ +name = center; +pos = (72,365); +}, +{ +name = top; +pos = (72,729); +}, +{ +name = topright; +pos = (91,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(212,0,l), +(212,36,l), +(152,36,ls), +(118,36,o), +(101,48,o), +(101,90,cs), +(101,729,l), +(64,729,l), +(64,79,ls), +(64,23,o), +(95,0,o), +(143,0,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,0,l), +(211,36,l), +(150,36,ls), +(109,36,o), +(91,49,o), +(91,98,cs), +(91,729,l), +(54,729,l), +(54,93,ls), +(54,29,o), +(83,0,o), +(147,0,cs) +); +} +); +width = 218; +}, +{ +anchors = ( +{ +name = bottom; +pos = (138,0); +}, +{ +name = center; +pos = (138,365); +}, +{ +name = top; +pos = (138,729); +}, +{ +name = topright; +pos = (248,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,0,l), +(313,164,l), +(289,164,ls), +(271,164,o), +(258,170,o), +(258,200,cs), +(258,729,l), +(37,729,l), +(37,159,ls), +(37,56,o), +(81,0,o), +(195,0,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,0,l), +(323,164,l), +(279,164,ls), +(261,164,o), +(248,170,o), +(248,200,cs), +(248,729,l), +(27,729,l), +(27,159,ls), +(27,56,o), +(71,0,o), +(185,0,cs) +); +} +); +width = 322; +}, +{ +anchors = ( +{ +name = bottom; +pos = (104,0); +}, +{ +name = center; +pos = (104,365); +}, +{ +name = top; +pos = (104,729); +}, +{ +name = topright; +pos = (122,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,l), +(222,36,l), +(184,36,ls), +(150,36,o), +(133,48,o), +(133,89,cs), +(133,729,l), +(96,729,l), +(96,80,ls), +(96,24,o), +(127,0,o), +(176,0,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(211,0,l), +(211,36,l), +(167,36,ls), +(138,36,o), +(122,47,o), +(122,85,cs), +(122,729,l), +(85,729,l), +(85,76,ls), +(85,22,o), +(113,0,o), +(161,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 236; +}, +{ +anchors = ( +{ +name = bottom; +pos = (143,0); +}, +{ +name = center; +pos = (143,365); +}, +{ +name = top; +pos = (143,729); +}, +{ +name = topright; +pos = (238,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(310,0,l), +(310,153,l), +(280,153,ls), +(259,153,o), +(245,160,o), +(245,188,cs), +(245,729,l), +(54,729,l), +(54,152,ls), +(54,61,o), +(84,0,o), +(211,0,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(291,0,l), +(291,148,l), +(265,148,ls), +(249,148,o), +(238,154,o), +(238,181,cs), +(238,729,l), +(48,729,l), +(48,143,ls), +(48,51,o), +(86,0,o), +(188,0,cs) +); +} +); +width = 306; +}, +{ +anchors = ( +{ +name = bottom; +pos = (23,0); +}, +{ +name = center; +pos = (95,365); +}, +{ +name = top; +pos = (171,729); +}, +{ +name = topright; +pos = (187,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,0,l), +(87,28,l), +(70,28,ls), +(47,28,o), +(42,34,o), +(50,73,cs), +(185,729,l), +(156,729,l), +(19,65,ls), +(11,26,o), +(19,0,o), +(58,0,cs) +); +} +); +width = 153; +}, +{ +anchors = ( +{ +name = bottom; +pos = (56,0); +}, +{ +name = center; +pos = (131,365); +}, +{ +name = top; +pos = (206,729); +}, +{ +name = topright; +pos = (294,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(183,0,l), +(210,132,l), +(192,132,ls), +(174,132,o), +(172,137,o), +(177,160,cs), +(294,729,l), +(118,729,l), +(-7,124,ls), +(-24,40,o), +(6,0,o), +(95,0,cs) +); +} +); +width = 250; +}, +{ +anchors = ( +{ +name = bottom; +pos = (87,0); +}, +{ +name = center; +pos = (124,365); +}, +{ +name = top; +pos = (199,729); +}, +{ +name = topright; +pos = (225,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(152,0,l), +(159,33,l), +(121,33,ls), +(82,33,o), +(76,48,o), +(84,88,cs), +(217,729,l), +(181,729,l), +(49,91,ls), +(37,32,o), +(55,0,o), +(112,0,cs) +); +} +); +}; +guides = ( +{ +angle = 78.3; +pos = (-77,134); +}, +{ +angle = 78.3; +pos = (92,88); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,0,l), +(159,33,l), +(121,33,ls), +(82,33,o), +(74,51,o), +(84,98,cs), +(215,729,l), +(179,729,l), +(49,101,ls), +(36,36,o), +(55,0,o), +(112,0,cs) +); +} +); +width = 228; +}, +{ +anchors = ( +{ +name = bottom; +pos = (91,0); +}, +{ +name = center; +pos = (164,360); +}, +{ +name = top; +pos = (241,729); +}, +{ +name = topright; +pos = (336,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(237,0,l), +(266,138,l), +(244,138,ls), +(225,138,o), +(214,146,o), +(221,179,cs), +(336,729,l), +(145,729,l), +(31,183,ls), +(8,73,o), +(46,0,o), +(149,0,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,0,l), +(266,138,l), +(244,138,ls), +(225,138,o), +(211,141,o), +(218,174,cs), +(335,729,l), +(144,729,l), +(23,155,ls), +(3,59,o), +(48,0,o), +(145,0,cs) +); +} +); +width = 310; +}, +{ +anchors = ( +{ +name = bottom; +pos = (44,0); +}, +{ +name = center; +pos = (101,365); +}, +{ +name = top; +pos = (176,729); +}, +{ +name = topright; +pos = (196,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-350,0,l), +(-343,33,l), +(-383,33,ls), +(-422,33,o), +(-428,48,o), +(-420,88,cs), +(-287,729,l), +(-323,729,l), +(-455,91,ls), +(-467,32,o), +(-449,0,o), +(-392,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(155,0,l), +(163,36,l), +(107,36,ls), +(70,36,o), +(55,49,o), +(66,102,cs), +(196,729,l), +(160,729,l), +(29,94,ls), +(17,34,o), +(42,0,o), +(99,0,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,0,l), +(165,33,l), +(119,33,ls), +(72,33,o), +(53,51,o), +(66,112,cs), +(194,729,l), +(158,729,l), +(30,109,ls), +(15,38,o), +(42,0,o), +(109,0,cs) +); +} +); +width = 223; +}, +{ +anchors = ( +{ +name = bottom; +pos = (166,0); +}, +{ +name = center; +pos = (162,365); +}, +{ +name = top; +pos = (237,729); +}, +{ +name = topright; +pos = (347,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(274,0,l), +(309,168,l), +(272,168,ls), +(243,168,o), +(234,177,o), +(240,205,cs), +(350,729,l), +(125,729,l), +(11,181,ls), +(-16,52,o), +(45,0,o), +(151,0,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,0,l), +(309,162,l), +(272,162,ls), +(243,162,o), +(234,171,o), +(240,202,cs), +(349,729,l), +(129,729,l), +(19,198,ls), +(-10,57,o), +(53,0,o), +(159,0,cs) +); +} +); +width = 336; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/l.ss04.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/l.ss04.glyph new file mode 100644 index 00000000..310d6a56 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/l.ss04.glyph @@ -0,0 +1,734 @@ +{ +glyphname = l.ss04; +kernLeft = KO_l.ss04; +kernRight = KO_l; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (116,0); +}, +{ +name = center; +pos = (116,365); +}, +{ +name = top; +pos = (116,729); +}, +{ +name = topright; +pos = (204,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,729,l), +(-13,729,l), +(-13,576,l), +(27,576,l), +(27,0,l) +); +} +); +width = 231; +}, +{ +anchors = ( +{ +name = bottom; +pos = (75,0); +}, +{ +name = center; +pos = (75,365); +}, +{ +name = top; +pos = (75,729); +}, +{ +name = topright; +pos = (89,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,0,l), +(89,729,l), +(28,729,l), +(28,702,l), +(60,702,l), +(60,0,l) +); +} +); +width = 149; +}, +{ +anchors = ( +{ +name = bottom; +pos = (84,0); +}, +{ +name = center; +pos = (84,365); +}, +{ +name = top; +pos = (84,729); +}, +{ +name = topright; +pos = (103,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(103,729,l), +(-15,729,l), +(-15,697,l), +(66,697,l), +(66,0,l) +); +} +); +width = 169; +}, +{ +anchors = ( +{ +name = bottom; +pos = (154,0); +}, +{ +name = center; +pos = (154,365); +}, +{ +name = top; +pos = (154,729); +}, +{ +name = topright; +pos = (264,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,729,l), +(-13,729,l), +(-13,569,l), +(43,569,l), +(43,0,l) +); +} +); +width = 307; +}, +{ +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = center; +pos = (55,365); +}, +{ +name = top; +pos = (55,729); +}, +{ +name = topright; +pos = (69,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,0,l), +(69,729,l), +(8,729,l), +(8,702,l), +(40,702,l), +(40,0,l) +); +} +); +width = 105; +}, +{ +anchors = ( +{ +name = bottom; +pos = (111,0); +}, +{ +name = center; +pos = (111,365); +}, +{ +name = top; +pos = (111,729); +}, +{ +name = topright; +pos = (199,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(199,0,l), +(199,729,l), +(-18,729,l), +(-18,576,l), +(22,576,l), +(22,0,l) +); +} +); +width = 215; +}, +{ +anchors = ( +{ +name = bottom; +pos = (87,0); +}, +{ +name = center; +pos = (87,365); +}, +{ +name = top; +pos = (87,729); +}, +{ +name = topright; +pos = (105,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(105,0,l), +(105,729,l), +(-9,729,l), +(-9,697,l), +(68,697,l), +(68,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 164; +}, +{ +anchors = ( +{ +name = bottom; +pos = (138,0); +}, +{ +name = center; +pos = (138,365); +}, +{ +name = top; +pos = (138,729); +}, +{ +name = topright; +pos = (233,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(233,729,l), +(-25,729,l), +(-25,576,l), +(42,576,l), +(42,0,l) +); +} +); +width = 263; +}, +{ +anchors = ( +{ +name = bottom; +pos = (79,0); +}, +{ +name = center; +pos = (79,365); +}, +{ +name = top; +pos = (79,729); +}, +{ +name = topright; +pos = (98,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(98,0,l), +(98,729,l), +(-20,729,l), +(-20,697,l), +(61,697,l), +(61,0,l) +); +} +); +width = 154; +}, +{ +anchors = ( +{ +name = bottom; +pos = (149,0); +}, +{ +name = center; +pos = (149,365); +}, +{ +name = top; +pos = (149,729); +}, +{ +name = topright; +pos = (259,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(259,729,l), +(-18,729,l), +(-18,569,l), +(38,569,l), +(38,0,l) +); +} +); +width = 292; +}, +{ +anchors = ( +{ +name = bottom; +pos = (105,0); +}, +{ +name = center; +pos = (105,365); +}, +{ +name = top; +pos = (105,729); +}, +{ +name = topright; +pos = (123,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(123,0,l), +(123,729,l), +(11,729,l), +(11,697,l), +(86,697,l), +(86,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 208; +}, +{ +anchors = ( +{ +name = bottom; +pos = (140,0); +}, +{ +name = center; +pos = (140,365); +}, +{ +name = top; +pos = (140,729); +}, +{ +name = topright; +pos = (235,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(235,729,l), +(-14,729,l), +(-14,576,l), +(45,576,l), +(45,0,l) +); +} +); +width = 286; +}, +{ +anchors = ( +{ +name = bottom; +pos = (21,0); +}, +{ +name = center; +pos = (96,365); +}, +{ +name = top; +pos = (171,729); +}, +{ +name = topright; +pos = (186,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(35,0,l), +(186,729,l), +(125,729,l), +(119,702,l), +(151,702,l), +(6,0,l) +); +} +); +width = 148; +}, +{ +anchors = ( +{ +name = bottom; +pos = (57,0); +}, +{ +name = center; +pos = (133,365); +}, +{ +name = top; +pos = (208,729); +}, +{ +name = topright; +pos = (296,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,l), +(296,729,l), +(79,729,l), +(47,576,l), +(89,576,l), +(-31,0,l) +); +} +); +width = 227; +}, +{ +anchors = ( +{ +name = bottom; +pos = (49,0); +}, +{ +name = center; +pos = (124,365); +}, +{ +name = top; +pos = (200,729); +}, +{ +name = topright; +pos = (218,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(218,729,l), +(104,729,l), +(98,697,l), +(175,697,l), +(31,0,l) +); +} +); +width = 206; +}, +{ +anchors = ( +{ +name = bottom; +pos = (92,0); +}, +{ +name = center; +pos = (168,365); +}, +{ +name = top; +pos = (243,729); +}, +{ +name = topright; +pos = (339,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,0,l), +(339,729,l), +(81,729,l), +(49,576,l), +(116,576,l), +(-3,0,l) +); +} +); +width = 298; +}, +{ +anchors = ( +{ +name = bottom; +pos = (31,0); +}, +{ +name = center; +pos = (106,365); +}, +{ +name = top; +pos = (181,729); +}, +{ +name = topright; +pos = (200,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,0,l), +(200,729,l), +(82,729,l), +(76,697,l), +(156,697,l), +(12,0,l) +); +} +); +width = 169; +}, +{ +anchors = ( +{ +name = bottom; +pos = (97,0); +}, +{ +name = center; +pos = (172,365); +}, +{ +name = top; +pos = (248,729); +}, +{ +name = topright; +pos = (357,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(357,729,l), +(80,729,l), +(46,569,l), +(105,569,l), +(-13,0,l) +); +} +); +width = 305; +} +); +metricRight = l; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lacute.glyph new file mode 100644 index 00000000..931b7659 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lacute.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = lacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l; +}, +{ +pos = (19,57); +ref = acutecomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l; +}, +{ +pos = (4,51); +ref = acutecomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l; +}, +{ +pos = (26,57); +ref = acutecomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l; +}, +{ +pos = (37,56); +ref = acutecomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l; +}, +{ +pos = (15,57); +ref = acutecomb; +} +); +width = 101; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l; +}, +{ +pos = (3,51); +ref = acutecomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l; +}, +{ +pos = (43,57); +ref = acutecomb; +} +); +width = 155; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l; +}, +{ +pos = (35,51); +ref = acutecomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (26,57); +ref = acutecomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (37,56); +ref = acutecomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +pos = (48,87); +ref = acutecomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +pos = (45,81); +ref = acutecomb; +} +); +width = 311; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l; +}, +{ +pos = (31,57); +ref = acutecomb; +} +); +width = 149; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l; +}, +{ +pos = (14,51); +ref = acutecomb; +} +); +width = 228; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l; +}, +{ +pos = (58,57); +ref = acutecomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l; +}, +{ +pos = (49,51); +ref = acutecomb; +} +); +width = 299; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l; +}, +{ +pos = (38,57); +ref = acutecomb; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l; +}, +{ +pos = (48,56); +ref = acutecomb; +} +); +width = 305; +} +); +unicode = 314; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lacute.ss03.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lacute.ss03.glyph new file mode 100644 index 00000000..e18d29dd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lacute.ss03.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = lacute.ss03; +kernRight = KO_l.ss03; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (18,57); +ref = acutecomb; +} +); +width = 152; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (0,51); +ref = acutecomb; +} +); +width = 250; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (24,57); +ref = acutecomb; +} +); +width = 233; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (31,56); +ref = acutecomb; +} +); +width = 337; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (16,57); +ref = acutecomb; +} +); +width = 110; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (0,51); +ref = acutecomb; +} +); +width = 233; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (48,57); +ref = acutecomb; +} +); +width = 195; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = l.ss03; +}, +{ +alignment = -1; +pos = (33,51); +ref = acutecomb; +} +); +width = 294; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (24,57); +ref = acutecomb; +} +); +width = 218; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (31,56); +ref = acutecomb; +} +); +width = 322; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (48,57); +ref = acutecomb; +} +); +width = 236; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (33,51); +ref = acutecomb; +} +); +width = 306; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (30,57); +ref = acutecomb; +} +); +width = 153; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (11,51); +ref = acutecomb; +} +); +width = 250; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (57,57); +ref = acutecomb; +} +); +width = 228; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (46,51); +ref = acutecomb; +} +); +width = 310; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (33,57); +ref = acutecomb; +} +); +width = 223; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (37,56); +ref = acutecomb; +} +); +width = 336; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lacute.ss04.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lacute.ss04.glyph new file mode 100644 index 00000000..04f2d773 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lacute.ss04.glyph @@ -0,0 +1,240 @@ +{ +color = 6; +glyphname = lacute.ss04; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (19,57); +ref = acutecomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (4,51); +ref = acutecomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (26,57); +ref = acutecomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (37,56); +ref = acutecomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (19,57); +ref = acutecomb; +} +); +width = 105; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (9,51); +ref = acutecomb; +} +); +width = 215; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (52,57); +ref = acutecomb; +} +); +width = 164; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (47,51); +ref = acutecomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (31,57); +ref = acutecomb; +} +); +width = 154; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (42,56); +ref = acutecomb; +} +); +width = 292; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (49,57); +ref = acutecomb; +} +); +width = 208; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (30,51); +ref = acutecomb; +} +); +width = 286; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (30,57); +ref = acutecomb; +} +); +width = 148; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (13,51); +ref = acutecomb; +} +); +width = 227; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (58,57); +ref = acutecomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (48,51); +ref = acutecomb; +} +); +width = 298; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (38,57); +ref = acutecomb; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (48,56); +ref = acutecomb; +} +); +width = 305; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lcaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lcaron.glyph new file mode 100644 index 00000000..6a00b198 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lcaron.glyph @@ -0,0 +1,250 @@ +{ +color = 6; +glyphname = lcaron; +kernLeft = KO_i; +kernRight = KO_lcaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l; +}, +{ +pos = (98,0); +ref = caroncomb.alt; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l; +}, +{ +pos = (183,0); +ref = caroncomb.alt; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l; +}, +{ +pos = (131,0); +ref = caroncomb.alt; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l; +}, +{ +pos = (254,0); +ref = caroncomb.alt; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l; +}, +{ +pos = (94,0); +ref = caroncomb.alt; +} +); +width = 101; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l; +}, +{ +pos = (182,0); +ref = caroncomb.alt; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l; +}, +{ +pos = (134,0); +ref = caroncomb.alt; +} +); +width = 155; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l; +}, +{ +pos = (221,0); +ref = caroncomb.alt; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (131,0); +ref = caroncomb.alt; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (254,0); +ref = caroncomb.alt; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +pos = (143,30); +ref = caroncomb.alt; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +pos = (227,30); +ref = caroncomb.alt; +} +); +width = 311; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l; +}, +{ +pos = (99,0); +ref = caroncomb.alt; +} +); +width = 149; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l; +}, +{ +pos = (180,0); +ref = caroncomb.alt; +} +); +width = 228; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l; +}, +{ +pos = (139,0); +ref = caroncomb.alt; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l; +}, +{ +pos = (233,0); +ref = caroncomb.alt; +} +); +width = 299; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l; +}, +{ +pos = (131,0); +ref = caroncomb.alt; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l; +}, +{ +pos = (252,0); +ref = caroncomb.alt; +} +); +width = 305; +} +); +unicode = 318; +userData = { +KernOnName = lcaron; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lcaron.ss03.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lcaron.ss03.glyph new file mode 100644 index 00000000..09fab5e7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lcaron.ss03.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = lcaron.ss03; +kernLeft = KO_i; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (97,0); +ref = caroncomb.alt; +} +); +width = 152; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (179,0); +ref = caroncomb.alt; +} +); +width = 250; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (129,0); +ref = caroncomb.alt; +} +); +width = 233; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (248,0); +ref = caroncomb.alt; +} +); +width = 337; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (95,0); +ref = caroncomb.alt; +} +); +width = 110; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (179,0); +ref = caroncomb.alt; +} +); +width = 233; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (139,0); +ref = caroncomb.alt; +} +); +width = 195; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = l.ss03; +}, +{ +alignment = -1; +pos = (219,0); +ref = caroncomb.alt; +} +); +width = 294; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (129,0); +ref = caroncomb.alt; +} +); +width = 218; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (248,0); +ref = caroncomb.alt; +} +); +width = 322; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (143,0); +ref = caroncomb.alt; +} +); +width = 236; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (215,0); +ref = caroncomb.alt; +} +); +width = 306; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (99,0); +ref = caroncomb.alt; +} +); +width = 153; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (177,0); +ref = caroncomb.alt; +} +); +width = 250; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (146,0); +ref = caroncomb.alt; +} +); +width = 228; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (229,0); +ref = caroncomb.alt; +} +); +width = 310; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (127,0); +ref = caroncomb.alt; +} +); +width = 223; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (242,0); +ref = caroncomb.alt; +} +); +width = 336; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lcaron.ss04.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lcaron.ss04.glyph new file mode 100644 index 00000000..2fc755e8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lcaron.ss04.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = lcaron.ss04; +kernLeft = KO_l.ss04; +kernRight = KO_lcaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (98,0); +ref = caroncomb.alt; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (183,0); +ref = caroncomb.alt; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (131,0); +ref = caroncomb.alt; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (254,0); +ref = caroncomb.alt; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (98,0); +ref = caroncomb.alt; +} +); +width = 105; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (188,0); +ref = caroncomb.alt; +} +); +width = 215; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (143,0); +ref = caroncomb.alt; +} +); +width = 164; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (233,0); +ref = caroncomb.alt; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (136,0); +ref = caroncomb.alt; +} +); +width = 154; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (259,0); +ref = caroncomb.alt; +} +); +width = 292; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (144,0); +ref = caroncomb.alt; +} +); +width = 208; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (212,0); +ref = caroncomb.alt; +} +); +width = 286; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (98,0); +ref = caroncomb.alt; +} +); +width = 148; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (179,0); +ref = caroncomb.alt; +} +); +width = 227; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (139,0); +ref = caroncomb.alt; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (232,0); +ref = caroncomb.alt; +} +); +width = 298; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (131,0); +ref = caroncomb.alt; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (252,0); +ref = caroncomb.alt; +} +); +width = 305; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lcommaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lcommaaccent.glyph new file mode 100644 index 00000000..8eddb27a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lcommaaccent.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = lcommaaccent; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-22,0); +ref = commaaccentcomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-66,0); +ref = commaaccentcomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-17,0); +ref = commaaccentcomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-30,0); +ref = commaaccentcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-26,0); +ref = commaaccentcomb; +} +); +width = 101; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-67,0); +ref = commaaccentcomb; +} +); +width = 209; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-8,0); +ref = commaaccentcomb; +} +); +width = 155; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-23,0); +ref = commaaccentcomb; +} +); +width = 251; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (-17,0); +ref = commaaccentcomb; +} +); +width = 169; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (-30,0); +ref = commaaccentcomb; +} +); +width = 307; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +pos = (-3,0); +ref = commaaccentcomb; +} +); +width = 207; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +pos = (-8,0); +ref = commaaccentcomb; +} +); +width = 311; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-21,0); +ref = commaaccentcomb; +} +); +width = 149; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-66,0); +ref = commaaccentcomb; +} +); +width = 228; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-3,0); +ref = commaaccentcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-22,0); +ref = commaaccentcomb; +} +); +width = 299; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-17,0); +ref = commaaccentcomb; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-26,0); +ref = commaaccentcomb; +} +); +width = 305; +} +); +unicode = 316; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lcommaaccent.ss03.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lcommaaccent.ss03.glyph new file mode 100644 index 00000000..38f93004 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lcommaaccent.ss03.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = lcommaaccent.ss03; +kernRight = KO_l.ss03; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-23,0); +ref = commaaccentcomb; +} +); +width = 152; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-70,0); +ref = commaaccentcomb; +} +); +width = 250; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-19,0); +ref = commaaccentcomb; +} +); +width = 233; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-36,0); +ref = commaaccentcomb; +} +); +width = 337; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 110; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-70,0); +ref = commaaccentcomb; +} +); +width = 233; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-3,0); +ref = commaaccentcomb; +} +); +width = 195; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = l.ss03; +}, +{ +alignment = -1; +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 294; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-19,0); +ref = commaaccentcomb; +} +); +width = 218; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-36,0); +ref = commaaccentcomb; +} +); +width = 322; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-3,0); +ref = commaaccentcomb; +} +); +width = 236; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-20,0); +ref = commaaccentcomb; +} +); +width = 306; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-20,0); +ref = commaaccentcomb; +} +); +width = 153; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-68,0); +ref = commaaccentcomb; +} +); +width = 250; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (35,0); +ref = commaaccentcomb; +} +); +width = 228; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-24,0); +ref = commaaccentcomb; +} +); +width = 310; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-4,0); +ref = commaaccentcomb; +} +); +width = 223; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (43,0); +ref = commaaccentcomb; +} +); +width = 336; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lcommaaccent.ss04.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lcommaaccent.ss04.glyph new file mode 100644 index 00000000..8c500d41 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lcommaaccent.ss04.glyph @@ -0,0 +1,240 @@ +{ +color = 6; +glyphname = lcommaaccent.ss04; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-22,0); +ref = commaaccentcomb; +} +); +width = 149; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-66,0); +ref = commaaccentcomb; +} +); +width = 231; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-17,0); +ref = commaaccentcomb; +} +); +width = 169; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-30,0); +ref = commaaccentcomb; +} +); +width = 307; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-22,0); +ref = commaaccentcomb; +} +); +width = 105; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-61,0); +ref = commaaccentcomb; +} +); +width = 215; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (1,0); +ref = commaaccentcomb; +} +); +width = 164; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-11,0); +ref = commaaccentcomb; +} +); +width = 263; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-12,0); +ref = commaaccentcomb; +} +); +width = 154; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 292; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-2,0); +ref = commaaccentcomb; +} +); +width = 208; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-23,0); +ref = commaaccentcomb; +} +); +width = 286; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-22,0); +ref = commaaccentcomb; +} +); +width = 148; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-67,0); +ref = commaaccentcomb; +} +); +width = 227; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-3,0); +ref = commaaccentcomb; +} +); +width = 206; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-23,0); +ref = commaaccentcomb; +} +); +width = 298; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-17,0); +ref = commaaccentcomb; +} +); +width = 169; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (-26,0); +ref = commaaccentcomb; +} +); +width = 305; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.glyph new file mode 100644 index 00000000..93ada32a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.glyph @@ -0,0 +1,265 @@ +{ +color = 6; +glyphname = ldot; +kernLeft = KO_i; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (149,0); +ref = periodcentered.loclCAT; +} +); +width = 186; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (231,0); +ref = periodcentered.loclCAT; +} +); +width = 398; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (169,0); +ref = periodcentered.loclCAT; +} +); +width = 248; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (307,0); +ref = periodcentered.loclCAT; +} +); +width = 478; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (101,0); +ref = periodcentered.loclCAT; +} +); +width = 125; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (209,0); +ref = periodcentered.loclCAT; +} +); +width = 366; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (155,0); +ref = periodcentered.loclCAT; +} +); +width = 196; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (251,0); +ref = periodcentered.loclCAT; +} +); +width = 413; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (149,0); +ref = periodcentered.loclCAT; +} +); +width = 218; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (281,0); +ref = periodcentered.loclCAT; +} +); +width = 442; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (196,0); +ref = periodcentered.loclCAT; +} +); +width = 461; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (311,0); +ref = periodcentered.loclCAT; +} +); +width = 522; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (149,0); +ref = periodcentered.loclCAT; +} +); +width = 196; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (228,0); +ref = periodcentered.loclCAT; +} +); +width = 395; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (217,0); +ref = periodcentered.loclCAT; +} +); +width = 272; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (299,0); +ref = periodcentered.loclCAT; +} +); +width = 490; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (169,0); +ref = periodcentered.loclCAT; +} +); +width = 250; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (305,0); +ref = periodcentered.loclCAT; +} +); +width = 481; +} +); +unicode = 320; +userData = { +KernOnSpecialSpacing = { +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss01.glyph new file mode 100644 index 00000000..9fdb125f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss01.glyph @@ -0,0 +1,259 @@ +{ +color = 6; +glyphname = ldot.ss01; +kernLeft = KO_i; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (149,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 186; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (231,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 398; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (169,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 248; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (298,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 469; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (111,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 135; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (209,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 366; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (155,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 195; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (251,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 413; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (149,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 218; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (277,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 438; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (207,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 284; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (307,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 480; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (149,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 186; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (228,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 395; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (206,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 280; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (301,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 487; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (169,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 249; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (299,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 471; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss01.ss03.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss01.ss03.glyph new file mode 100644 index 00000000..dd96d241 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss01.ss03.glyph @@ -0,0 +1,260 @@ +{ +color = 6; +glyphname = ldot.ss01.ss03; +kernLeft = KO_i; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (152,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 189; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (235,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 402; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (201,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 280; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (303,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 474; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (112,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 136; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (210,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 367; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (195,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 235; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = l.ss03; +}, +{ +alignment = -1; +pos = (294,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 468; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (184,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 253; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (289,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 450; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (236,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 313; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (293,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 466; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (153,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 190; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (234,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 401; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (224,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 298; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (304,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 490; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (197,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 277; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (304,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 476; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss01.ss04.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss01.ss04.glyph new file mode 100644 index 00000000..1c74a860 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss01.ss04.glyph @@ -0,0 +1,259 @@ +{ +color = 6; +glyphname = ldot.ss01.ss04; +kernLeft = KO_l.ss04; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (149,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 186; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (231,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 398; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (169,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 248; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (298,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 469; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (114,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 138; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (215,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 372; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (164,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 204; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (263,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 425; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (154,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 223; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (286,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 447; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (208,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 285; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (286,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 459; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (148,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 185; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (227,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 394; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (206,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 280; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (300,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 486; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (169,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 249; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (299,0); +ref = periodcentered.loclCAT.ss01; +} +); +width = 471; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss03.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss03.glyph new file mode 100644 index 00000000..2792957c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss03.glyph @@ -0,0 +1,264 @@ +{ +glyphname = ldot.ss03; +kernLeft = KO_i; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (208,0); +ref = periodcentered.loclCAT; +} +); +width = 245; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (250,0); +ref = periodcentered.loclCAT; +} +); +width = 417; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (233,0); +ref = periodcentered.loclCAT; +} +); +width = 312; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (337,0); +ref = periodcentered.loclCAT; +} +); +width = 508; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (159,0); +ref = periodcentered.loclCAT; +} +); +width = 183; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (222,0); +ref = periodcentered.loclCAT; +} +); +width = 379; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (224,0); +ref = periodcentered.loclCAT; +} +); +width = 265; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = l.ss03; +}, +{ +alignment = -1; +pos = (282,0); +ref = periodcentered.loclCAT; +} +); +width = 456; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (218,0); +ref = periodcentered.loclCAT; +} +); +width = 287; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (318,0); +ref = periodcentered.loclCAT; +} +); +width = 479; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (203,0); +ref = periodcentered.loclCAT; +} +); +width = 468; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (306,0); +ref = periodcentered.loclCAT; +} +); +width = 517; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (205,0); +ref = periodcentered.loclCAT; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (250,0); +ref = periodcentered.loclCAT; +} +); +width = 417; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (248,0); +ref = periodcentered.loclCAT; +} +); +width = 303; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (323,0); +ref = periodcentered.loclCAT; +} +); +width = 514; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (223,0); +ref = periodcentered.loclCAT; +} +); +width = 304; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (336,0); +ref = periodcentered.loclCAT; +} +); +width = 512; +} +); +userData = { +KernOnSpecialSpacing = { +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss04.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss04.glyph new file mode 100644 index 00000000..8804a1d6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ldot.ss04.glyph @@ -0,0 +1,259 @@ +{ +color = 6; +glyphname = ldot.ss04; +kernLeft = KO_l.ss04; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (209,0); +ref = periodcentered.loclCAT; +} +); +width = 246; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (244,0); +ref = periodcentered.loclCAT; +} +); +width = 411; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (218,0); +ref = periodcentered.loclCAT; +} +); +width = 297; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (339,0); +ref = periodcentered.loclCAT; +} +); +width = 510; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (160,0); +ref = periodcentered.loclCAT; +} +); +width = 184; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (223,0); +ref = periodcentered.loclCAT; +} +); +width = 380; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (227,0); +ref = periodcentered.loclCAT; +} +); +width = 268; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (283,0); +ref = periodcentered.loclCAT; +} +); +width = 445; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (197,0); +ref = periodcentered.loclCAT; +} +); +width = 266; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (324,0); +ref = periodcentered.loclCAT; +} +); +width = 485; +}, +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (197,0); +ref = periodcentered.loclCAT; +} +); +width = 462; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (297,0); +ref = periodcentered.loclCAT; +} +); +width = 508; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (206,0); +ref = periodcentered.loclCAT; +} +); +width = 253; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (244,0); +ref = periodcentered.loclCAT; +} +); +width = 411; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (217,0); +ref = periodcentered.loclCAT; +} +); +width = 272; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (328,0); +ref = periodcentered.loclCAT; +} +); +width = 519; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (219,0); +ref = periodcentered.loclCAT; +} +); +width = 300; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (334,0); +ref = periodcentered.loclCAT; +} +); +width = 510; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/leftA_rrow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/leftA_rrow.glyph new file mode 100644 index 00000000..ada3dd3c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/leftA_rrow.glyph @@ -0,0 +1,372 @@ +{ +glyphname = leftArrow; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,440,l), +(339,559,l), +(173,559,l), +(26,365,l), +(173,171,l), +(339,171,l), +(250,290,l), +(565,290,l), +(565,440,l) +); +} +); +width = 600; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(109,380,l), +(221,533,l), +(184,533,l), +(60,365,l), +(184,197,l), +(221,197,l), +(109,350,l), +(599,350,l), +(599,380,l) +); +} +); +width = 669; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,383,l), +(244,564,l), +(203,564,l), +(55,365,l), +(203,166,l), +(244,166,l), +(111,347,l), +(594,347,l), +(594,383,l) +); +} +); +width = 684; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,460,l), +(381,605,l), +(189,605,l), +(38,365,l), +(189,125,l), +(381,125,l), +(290,270,l), +(627,270,l), +(627,460,l) +); +} +); +width = 670; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,380,l), +(201,533,l), +(164,533,l), +(40,365,l), +(164,197,l), +(201,197,l), +(89,350,l), +(579,350,l), +(579,380,l) +); +} +); +width = 629; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,440,l), +(329,559,l), +(163,559,l), +(16,365,l), +(163,171,l), +(329,171,l), +(240,290,l), +(555,290,l), +(555,440,l) +); +} +); +width = 580; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,383,l), +(255,548,l), +(213,548,l), +(77,365,l), +(213,182,l), +(255,182,l), +(133,347,l), +(616,347,l), +(616,383,l) +); +} +); +width = 698; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,447,l), +(370,595,l), +(204,595,l), +(55,365,l), +(204,135,l), +(370,135,l), +(274,283,l), +(636,283,l), +(636,447,l) +); +} +); +width = 698; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,383,l), +(234,564,l), +(193,564,l), +(45,365,l), +(193,166,l), +(234,166,l), +(101,347,l), +(584,347,l), +(584,383,l) +); +} +); +width = 664; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(280,460,l), +(371,605,l), +(179,605,l), +(28,365,l), +(179,125,l), +(371,125,l), +(280,270,l), +(617,270,l), +(617,460,l) +); +} +); +width = 650; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(156,383,l), +(276,548,l), +(236,548,l), +(102,365,l), +(236,182,l), +(276,182,l), +(156,347,l), +(631,347,l), +(631,383,l) +); +} +); +width = 737; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(294,447,l), +(386,595,l), +(222,595,l), +(77,365,l), +(222,135,l), +(386,135,l), +(294,283,l), +(643,283,l), +(643,447,l) +); +} +); +width = 726; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,380,l), +(235,533,l), +(198,533,l), +(74,365,l), +(198,197,l), +(235,197,l), +(123,350,l), +(613,350,l), +(613,380,l) +); +} +); +width = 671; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,440,l), +(415,559,l), +(249,559,l), +(102,365,l), +(249,171,l), +(415,171,l), +(326,290,l), +(641,290,l), +(641,440,l) +); +} +); +width = 762; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,383,l), +(291,548,l), +(249,548,l), +(113,365,l), +(249,182,l), +(291,182,l), +(169,347,l), +(652,347,l), +(652,383,l) +); +} +); +width = 748; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,447,l), +(405,595,l), +(239,595,l), +(90,365,l), +(239,135,l), +(405,135,l), +(309,283,l), +(671,283,l), +(671,447,l) +); +} +); +width = 761; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,383,l), +(256,564,l), +(215,564,l), +(67,365,l), +(215,166,l), +(256,166,l), +(123,347,l), +(606,347,l), +(606,383,l) +); +} +); +width = 686; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,460,l), +(391,605,l), +(199,605,l), +(48,365,l), +(199,125,l), +(391,125,l), +(300,270,l), +(637,270,l), +(637,460,l) +); +} +); +width = 689; +} +); +unicode = 8592; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/leftR_ightA_rrow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/leftR_ightA_rrow.glyph new file mode 100644 index 00000000..2983d1a4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/leftR_ightA_rrow.glyph @@ -0,0 +1,484 @@ +{ +glyphname = leftRightArrow; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,171,l), +(244,290,l), +(535,290,l), +(446,171,l), +(612,171,l), +(759,365,l), +(612,559,l), +(446,559,l), +(535,440,l), +(244,440,l), +(333,559,l), +(167,559,l), +(20,365,l), +(167,171,l) +); +} +); +width = 779; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,197,l), +(109,350,l), +(640,350,l), +(528,197,l), +(565,197,l), +(689,365,l), +(565,533,l), +(528,533,l), +(640,380,l), +(109,380,l), +(221,533,l), +(184,533,l), +(60,365,l), +(184,197,l) +); +} +); +width = 749; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,166,l), +(136,347,l), +(693,347,l), +(560,166,l), +(601,166,l), +(749,365,l), +(601,564,l), +(560,564,l), +(693,383,l), +(136,383,l), +(269,564,l), +(228,564,l), +(80,365,l), +(228,166,l) +); +} +); +width = 829; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,125,l), +(272,270,l), +(557,270,l), +(466,125,l), +(658,125,l), +(809,365,l), +(658,605,l), +(466,605,l), +(557,460,l), +(272,460,l), +(363,605,l), +(171,605,l), +(20,365,l), +(171,125,l) +); +} +); +width = 829; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,197,l), +(89,350,l), +(620,350,l), +(508,197,l), +(545,197,l), +(669,365,l), +(545,533,l), +(508,533,l), +(620,380,l), +(89,380,l), +(201,533,l), +(164,533,l), +(40,365,l), +(164,197,l) +); +} +); +width = 709; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,171,l), +(234,290,l), +(525,290,l), +(436,171,l), +(602,171,l), +(749,365,l), +(602,559,l), +(436,559,l), +(525,440,l), +(234,440,l), +(323,559,l), +(157,559,l), +(10,365,l), +(157,171,l) +); +} +); +width = 759; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,182,l), +(116,347,l), +(673,347,l), +(551,182,l), +(593,182,l), +(729,365,l), +(593,548,l), +(551,548,l), +(673,383,l), +(116,383,l), +(238,548,l), +(196,548,l), +(60,365,l), +(196,182,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 789; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,135,l), +(222,283,l), +(575,283,l), +(479,135,l), +(645,135,l), +(794,365,l), +(645,595,l), +(479,595,l), +(575,447,l), +(222,447,l), +(318,595,l), +(152,595,l), +(3,365,l), +(152,135,l) +); +} +); +width = 797; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,166,l), +(126,347,l), +(683,347,l), +(550,166,l), +(591,166,l), +(739,365,l), +(591,564,l), +(550,564,l), +(683,383,l), +(126,383,l), +(259,564,l), +(218,564,l), +(70,365,l), +(218,166,l) +); +} +); +width = 809; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,125,l), +(262,270,l), +(547,270,l), +(456,125,l), +(648,125,l), +(799,365,l), +(648,605,l), +(456,605,l), +(547,460,l), +(262,460,l), +(353,605,l), +(161,605,l), +(10,365,l), +(161,125,l) +); +} +); +width = 809; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(255,182,l), +(137,347,l), +(682,347,l), +(562,182,l), +(604,182,l), +(738,365,l), +(604,548,l), +(562,548,l), +(682,383,l), +(137,383,l), +(255,548,l), +(215,548,l), +(81,365,l), +(215,182,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 818; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(329,135,l), +(236,283,l), +(575,283,l), +(482,135,l), +(646,135,l), +(792,365,l), +(646,595,l), +(482,595,l), +(575,447,l), +(236,447,l), +(329,595,l), +(164,595,l), +(19,365,l), +(164,135,l) +); +} +); +width = 810; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,197,l), +(120,350,l), +(651,350,l), +(539,197,l), +(576,197,l), +(700,365,l), +(576,533,l), +(539,533,l), +(651,380,l), +(120,380,l), +(232,533,l), +(195,533,l), +(71,365,l), +(195,197,l) +); +} +); +width = 748; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,171,l), +(263,290,l), +(554,290,l), +(465,171,l), +(631,171,l), +(778,365,l), +(631,559,l), +(465,559,l), +(554,440,l), +(263,440,l), +(352,559,l), +(186,559,l), +(39,365,l), +(186,171,l) +); +} +); +width = 798; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(219,182,l), +(97,347,l), +(654,347,l), +(532,182,l), +(574,182,l), +(710,365,l), +(574,548,l), +(532,548,l), +(654,383,l), +(97,383,l), +(219,548,l), +(177,548,l), +(41,365,l), +(177,182,l) +); +} +); +width = 729; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,135,l), +(257,283,l), +(610,283,l), +(514,135,l), +(680,135,l), +(829,365,l), +(680,595,l), +(514,595,l), +(610,447,l), +(257,447,l), +(353,595,l), +(187,595,l), +(38,365,l), +(187,135,l) +); +} +); +width = 850; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,166,l), +(122,347,l), +(679,347,l), +(546,166,l), +(587,166,l), +(735,365,l), +(587,564,l), +(546,564,l), +(679,383,l), +(122,383,l), +(255,564,l), +(214,564,l), +(66,365,l), +(214,166,l) +); +} +); +width = 779; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,125,l), +(290,270,l), +(575,270,l), +(484,125,l), +(676,125,l), +(827,365,l), +(676,605,l), +(484,605,l), +(575,460,l), +(290,460,l), +(381,605,l), +(189,605,l), +(38,365,l), +(189,125,l) +); +} +); +width = 848; +} +); +unicode = 8596; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/less.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/less.glyph new file mode 100644 index 00000000..9c5bb525 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/less.glyph @@ -0,0 +1,291 @@ +{ +color = 6; +glyphname = less; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (480,721); +ref = greater; +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (480,722); +ref = greater; +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (720,722); +ref = greater; +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (720,722); +ref = greater; +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (480,722); +ref = greater; +} +); +width = 480; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (480,721); +ref = greater; +} +); +width = 480; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (600,722); +ref = greater; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-1, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +-1, +-1 +); +stem = -2; +type = Stem; +} +); +}; +width = 600; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (555,721); +ref = greater; +} +); +width = 555; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (720,722); +ref = greater; +} +); +width = 720; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (720,722); +ref = greater; +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (593,722); +ref = greater; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-1, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +-1, +-1 +); +stem = -2; +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (581,721); +ref = greater; +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (523,722); +ref = greater; +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (517,721); +ref = greater; +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (642,722); +ref = greater; +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (637,721); +ref = greater; +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (762,722); +ref = greater; +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (757,722); +ref = greater; +} +); +width = 720; +} +); +metricLeft = "=|greater"; +metricRight = "=|greater"; +unicode = 60; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lessequal.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lessequal.glyph new file mode 100644 index 00000000..e1afda66 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lessequal.glyph @@ -0,0 +1,559 @@ +{ +glyphname = lessequal; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,328,l), +(196,407,l), +(196,416,l), +(472,489,l), +(472,659,l), +(4,516,l), +(4,307,l), +(472,158,l) +); +}, +{ +closed = 1; +nodes = ( +(472,0,l), +(472,132,l), +(4,132,l), +(4,0,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,177,l), +(52,359,l), +(52,363,l), +(452,545,l), +(452,577,l), +(21,383,l), +(21,339,l), +(452,145,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(452,28,l), +(21,28,l), +(21,0,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(628,173,l), +(127,375,l), +(127,378,l), +(628,573,l), +(628,614,l), +(86,400,l), +(86,353,l), +(628,133,l) +); +}, +{ +closed = 1; +nodes = ( +(628,0,l), +(628,34,l), +(86,34,l), +(86,0,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(626,354,l), +(288,419,l), +(288,429,l), +(626,488,l), +(626,673,l), +(81,537,l), +(81,310,l), +(626,170,l) +); +}, +{ +closed = 1; +nodes = ( +(626,0,l), +(626,143,l), +(81,143,l), +(81,0,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,177,l), +(32,359,l), +(32,363,l), +(432,545,l), +(432,577,l), +(1,383,l), +(1,339,l), +(432,145,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(432,28,l), +(1,28,l), +(1,0,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,328,l), +(191,407,l), +(191,416,l), +(467,489,l), +(467,659,l), +(-1,516,l), +(-1,307,l), +(467,158,l) +); +}, +{ +closed = 1; +nodes = ( +(467,0,l), +(467,132,l), +(-1,132,l), +(-1,0,l) +); +} +); +width = 470; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(517,169,l), +(69,359,l), +(69,363,l), +(517,553,l), +(517,589,l), +(36,383,l), +(36,339,l), +(517,133,l) +); +}, +{ +closed = 1; +nodes = ( +(517,0,l), +(517,32,l), +(36,32,l), +(36,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-13, +-13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-13, +-13 +); +stem = -2; +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(528,328,l), +(211,407,l), +(211,416,l), +(528,489,l), +(528,659,l), +(20,516,l), +(20,307,l), +(528,158,l) +); +}, +{ +closed = 1; +nodes = ( +(528,0,l), +(528,132,l), +(20,132,l), +(20,0,l) +); +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(618,173,l), +(117,375,l), +(117,378,l), +(618,573,l), +(618,614,l), +(76,400,l), +(76,353,l), +(618,133,l) +); +}, +{ +closed = 1; +nodes = ( +(618,0,l), +(618,34,l), +(76,34,l), +(76,0,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(616,354,l), +(278,419,l), +(278,429,l), +(616,488,l), +(616,673,l), +(71,537,l), +(71,310,l), +(616,170,l) +); +}, +{ +closed = 1; +nodes = ( +(616,0,l), +(616,143,l), +(71,143,l), +(71,0,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(530,169,l), +(90,359,l), +(90,363,l), +(530,553,l), +(530,589,l), +(57,383,l), +(57,339,l), +(530,133,l) +); +}, +{ +closed = 1; +nodes = ( +(530,0,l), +(530,32,l), +(57,32,l), +(57,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-13, +-13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-13, +-13 +); +stem = -2; +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(533,328,l), +(229,407,l), +(229,416,l), +(533,489,l), +(533,659,l), +(40,516,l), +(40,307,l), +(533,158,l) +); +}, +{ +closed = 1; +nodes = ( +(533,0,l), +(533,132,l), +(40,132,l), +(40,0,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,177,l), +(75,357,l), +(75,361,l), +(510,541,l), +(518,577,l), +(50,383,l), +(40,339,l), +(427,145,l) +); +}, +{ +closed = 1; +nodes = ( +(396,0,l), +(402,28,l), +(-25,28,l), +(-31,0,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,328,l), +(227,407,l), +(227,416,l), +(516,489,l), +(552,659,l), +(59,516,l), +(15,307,l), +(447,158,l) +); +}, +{ +closed = 1; +nodes = ( +(414,0,l), +(441,132,l), +(-23,132,l), +(-51,0,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(516,166,l), +(112,357,l), +(113,361,l), +(597,550,l), +(604,588,l), +(85,384,l), +(75,339,l), +(509,132,l) +); +}, +{ +closed = 1; +nodes = ( +(480,0,l), +(487,32,l), +(11,32,l), +(4,0,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(559,328,l), +(261,407,l), +(263,416,l), +(592,489,l), +(628,659,l), +(95,516,l), +(51,307,l), +(523,158,l) +); +}, +{ +closed = 1; +nodes = ( +(490,0,l), +(517,132,l), +(14,132,l), +(-13,0,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(597,154,l), +(153,358,l), +(154,362,l), +(683,566,l), +(692,607,l), +(119,384,l), +(109,340,l), +(589,117,l) +); +}, +{ +closed = 1; +nodes = ( +(574,0,l), +(581,34,l), +(45,34,l), +(38,0,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(600,328,l), +(302,407,l), +(304,416,l), +(633,489,l), +(669,659,l), +(136,516,l), +(92,307,l), +(564,158,l) +); +}, +{ +closed = 1; +nodes = ( +(531,0,l), +(558,132,l), +(55,132,l), +(28,0,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 8804; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/liraT_urkish.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/liraT_urkish.glyph new file mode 100644 index 00000000..4898e979 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/liraT_urkish.glyph @@ -0,0 +1,860 @@ +{ +glyphname = liraTurkish; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,ls), +(440,0,o), +(585,123,o), +(585,342,c), +(396,342,l), +(396,242,o), +(340,174,o), +(258,173,c), +(258,729,l), +(76,729,l), +(76,0,l) +); +}, +{ +closed = 1; +nodes = ( +(361,354,l), +(361,489,l), +(22,333,l), +(22,200,l) +); +}, +{ +closed = 1; +nodes = ( +(361,553,l), +(361,688,l), +(22,532,l), +(22,399,l) +); +} +); +width = 601; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,0,ls), +(312,0,o), +(409,126,o), +(406,316,c), +(374,316,l), +(375,147,o), +(298,32,o), +(161,29,c), +(161,729,l), +(129,729,l), +(129,0,l) +); +}, +{ +closed = 1; +nodes = ( +(317,403,l), +(317,436,l), +(26,320,l), +(26,288,l) +); +}, +{ +closed = 1; +nodes = ( +(317,562,l), +(317,594,l), +(26,477,l), +(26,446,l) +); +} +); +width = 432; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,0,ls), +(436,0,o), +(593,102,o), +(609,317,c), +(571,317,l), +(560,146,o), +(442,31,o), +(190,33,c), +(190,729,l), +(153,729,l), +(153,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,436,l), +(453,471,l), +(40,322,l), +(40,287,l) +); +}, +{ +closed = 1; +nodes = ( +(453,595,l), +(453,630,l), +(40,481,l), +(40,446,l) +); +} +); +width = 645; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,0,ls), +(561,0,o), +(760,93,o), +(783,362,c), +(543,362,l), +(531,271,o), +(480,210,o), +(329,208,c), +(329,729,l), +(107,729,l), +(107,0,l) +); +}, +{ +closed = 1; +nodes = ( +(487,350,l), +(487,509,l), +(30,351,l), +(30,192,l) +); +}, +{ +closed = 1; +nodes = ( +(487,566,l), +(487,725,l), +(30,567,l), +(30,408,l) +); +} +); +width = 791; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(292,0,o), +(389,126,o), +(386,316,c), +(354,316,l), +(355,147,o), +(278,32,o), +(141,29,c), +(141,729,l), +(109,729,l), +(109,0,l) +); +}, +{ +closed = 1; +nodes = ( +(297,403,l), +(297,436,l), +(6,320,l), +(6,288,l) +); +}, +{ +closed = 1; +nodes = ( +(297,562,l), +(297,594,l), +(6,477,l), +(6,446,l) +); +} +); +width = 392; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(213,0,ls), +(430,0,o), +(575,123,o), +(575,342,c), +(386,342,l), +(386,242,o), +(330,174,o), +(248,173,c), +(248,729,l), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(351,354,l), +(351,489,l), +(12,333,l), +(12,200,l) +); +}, +{ +closed = 1; +nodes = ( +(351,553,l), +(351,688,l), +(12,532,l), +(12,399,l) +); +} +); +width = 582; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,ls), +(393,0,o), +(529,105,o), +(558,317,c), +(521,317,l), +(496,146,o), +(390,36,o), +(179,36,c), +(179,729,l), +(141,729,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(413,436,l), +(413,471,l), +(39,321,l), +(39,286,l) +); +}, +{ +closed = 1; +nodes = ( +(413,595,l), +(413,630,l), +(39,480,l), +(39,445,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +22 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 592; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,ls), +(495,0,o), +(663,128,o), +(673,356,c), +(475,356,l), +(466,254,o), +(427,185,o), +(286,184,c), +(286,729,l), +(96,729,l), +(96,0,l) +); +}, +{ +closed = 1; +nodes = ( +(425,367,l), +(425,509,l), +(22,347,l), +(22,205,l) +); +}, +{ +closed = 1; +nodes = ( +(425,566,l), +(425,708,l), +(22,546,l), +(22,404,l) +); +} +); +width = 679; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,0,ls), +(426,0,o), +(583,102,o), +(599,317,c), +(561,317,l), +(550,146,o), +(432,31,o), +(180,33,c), +(180,729,l), +(143,729,l), +(143,0,l) +); +}, +{ +closed = 1; +nodes = ( +(443,436,l), +(443,471,l), +(30,322,l), +(30,287,l) +); +}, +{ +closed = 1; +nodes = ( +(443,595,l), +(443,630,l), +(30,481,l), +(30,446,l) +); +} +); +width = 625; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,0,ls), +(551,0,o), +(750,93,o), +(773,362,c), +(533,362,l), +(521,271,o), +(470,210,o), +(319,208,c), +(319,729,l), +(97,729,l), +(97,0,l) +); +}, +{ +closed = 1; +nodes = ( +(477,350,l), +(477,509,l), +(20,351,l), +(20,192,l) +); +}, +{ +closed = 1; +nodes = ( +(477,566,l), +(477,725,l), +(20,567,l), +(20,408,l) +); +} +); +width = 776; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(199,0,ls), +(408,0,o), +(542,105,o), +(569,317,c), +(534,317,l), +(509,146,o), +(405,36,o), +(198,36,c), +(198,729,l), +(160,729,l), +(160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(428,436,l), +(428,471,l), +(60,321,l), +(60,286,l) +); +}, +{ +closed = 1; +nodes = ( +(428,595,l), +(428,630,l), +(60,480,l), +(60,445,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +22 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 625; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(265,0,ls), +(503,0,o), +(667,128,o), +(676,356,c), +(480,356,l), +(472,254,o), +(436,185,o), +(301,184,c), +(301,729,l), +(113,729,l), +(113,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,367,l), +(433,509,l), +(42,347,l), +(42,205,l) +); +}, +{ +closed = 1; +nodes = ( +(433,566,l), +(433,708,l), +(42,546,l), +(42,404,l) +); +} +); +width = 701; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,ls), +(258,0,o), +(381,126,o), +(417,316,c), +(385,316,l), +(351,147,o), +(250,32,o), +(113,29,c), +(257,729,l), +(225,729,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(346,403,l), +(353,436,l), +(38,320,l), +(31,288,l) +); +}, +{ +closed = 1; +nodes = ( +(379,562,l), +(386,594,l), +(70,477,l), +(64,446,l) +); +} +); +width = 431; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,0,ls), +(385,0,o), +(555,123,o), +(600,342,c), +(411,342,l), +(391,242,o), +(321,174,o), +(238,173,c), +(353,729,l), +(171,729,l), +(21,0,l) +); +}, +{ +closed = 1; +nodes = ( +(379,354,l), +(407,489,l), +(35,333,l), +(8,200,l) +); +}, +{ +closed = 1; +nodes = ( +(420,553,l), +(448,688,l), +(77,532,l), +(49,399,l) +); +} +); +width = 601; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,ls), +(356,0,o), +(515,105,o), +(586,317,c), +(545,317,l), +(487,146,o), +(359,36,o), +(151,36,c), +(296,729,l), +(259,729,l), +(106,0,l) +); +}, +{ +closed = 1; +nodes = ( +(467,436,l), +(474,471,l), +(72,321,l), +(65,286,l) +); +}, +{ +closed = 1; +nodes = ( +(500,595,l), +(508,630,l), +(105,479,l), +(98,445,l) +); +} +); +width = 628; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,0,ls), +(461,0,o), +(655,128,o), +(712,356,c), +(514,356,l), +(484,254,o), +(431,185,o), +(290,184,c), +(402,729,l), +(212,729,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(467,367,l), +(496,509,l), +(59,347,l), +(30,205,l) +); +}, +{ +closed = 1; +nodes = ( +(508,566,l), +(537,708,l), +(101,546,l), +(71,404,l) +); +} +); +width = 722; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,0,ls), +(382,0,o), +(560,102,o), +(620,317,c), +(582,317,l), +(536,146,o), +(394,31,o), +(142,33,c), +(286,729,l), +(249,729,l), +(99,0,l) +); +}, +{ +closed = 1; +nodes = ( +(489,436,l), +(496,471,l), +(52,322,l), +(45,287,l) +); +}, +{ +closed = 1; +nodes = ( +(522,595,l), +(529,630,l), +(85,481,l), +(78,446,l) +); +} +); +width = 644; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,ls), +(505,0,o), +(723,93,o), +(801,362,c), +(561,362,l), +(531,271,o), +(467,210,o), +(316,208,c), +(423,729,l), +(201,729,l), +(51,0,l) +); +}, +{ +closed = 1; +nodes = ( +(503,350,l), +(536,509,l), +(46,351,l), +(13,192,l) +); +}, +{ +closed = 1; +nodes = ( +(548,566,l), +(581,725,l), +(91,567,l), +(58,408,l) +); +} +); +width = 790; +} +); +unicode = 8378; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/literS_ign.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/literS_ign.glyph new file mode 100644 index 00000000..8a171ae4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/literS_ign.glyph @@ -0,0 +1,862 @@ +{ +glyphname = literSign; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,-9,o), +(303,35,o), +(329,117,c), +(299,125,l), +(277,57,o), +(244,23,o), +(201,23,cs), +(139,23,o), +(104,145,o), +(104,389,cs), +(104,583,o), +(144,706,o), +(203,706,cs), +(248,706,o), +(273,650,o), +(273,537,cs), +(273,320,o), +(180,168,o), +(26,136,c), +(26,104,l), +(198,136,o), +(303,301,o), +(303,537,cs), +(303,668,o), +(269,738,o), +(203,738,cs), +(121,738,o), +(74,605,o), +(74,389,cs), +(74,123,o), +(114,-9,o), +(201,-9,cs) +); +} +); +width = 364; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-8,o), +(404,50,o), +(434,144,c), +(307,182,l), +(294,136,o), +(276,120,o), +(256,120,cs), +(214,120,o), +(207,172,o), +(207,369,cs), +(207,512,o), +(215,591,o), +(245,591,cs), +(259,591,o), +(269,576,o), +(269,532,cs), +(269,393,o), +(184,256,o), +(17,231,c), +(17,120,l), +(274,142,o), +(416,346,o), +(416,538,cs), +(416,667,o), +(352,739,o), +(257,739,cs), +(117,739,o), +(51,605,o), +(51,405,cs), +(51,171,o), +(89,-8,o), +(249,-8,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,-8,o), +(418,48,o), +(448,132,c), +(324,184,l), +(310,141,o), +(291,126,o), +(269,126,cs), +(227,126,o), +(207,176,o), +(207,374,cs), +(207,539,o), +(228,585,o), +(261,585,cs), +(277,585,o), +(286,569,o), +(286,543,cs), +(286,454,o), +(230,282,o), +(17,236,c), +(17,121,l), +(287,169,o), +(433,369,o), +(433,546,cs), +(433,665,o), +(374,739,o), +(273,739,cs), +(127,739,o), +(51,611,o), +(51,386,cs), +(51,124,o), +(110,-8,o), +(257,-8,cs) +); +} +); +width = 463; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,-10,o), +(437,37,o), +(473,129,c), +(441,140,l), +(410,61,o), +(360,22,o), +(292,22,cs), +(198,22,o), +(149,143,o), +(149,388,cs), +(149,585,o), +(206,707,o), +(295,707,cs), +(362,707,o), +(397,650,o), +(397,538,cs), +(397,316,o), +(259,161,o), +(31,134,c), +(35,103,l), +(281,132,o), +(431,299,o), +(431,538,cs), +(431,667,o), +(384,739,o), +(295,739,cs), +(183,739,o), +(115,604,o), +(115,388,cs), +(115,124,o), +(173,-10,o), +(292,-10,cs) +); +} +); +width = 509; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,-8,o), +(511,52,o), +(544,136,c), +(401,199,l), +(387,166,o), +(355,147,o), +(325,147,cs), +(275,147,o), +(253,191,o), +(253,380,cs), +(253,521,o), +(278,559,o), +(315,559,cs), +(335,559,o), +(346,542,o), +(346,517,cs), +(346,400,o), +(213,298,o), +(13,263,c), +(13,130,l), +(340,174,o), +(522,336,o), +(522,534,cs), +(522,655,o), +(454,739,o), +(334,739,cs), +(159,739,o), +(61,590,o), +(61,367,cs), +(61,147,o), +(124,-8,o), +(308,-8,cs) +); +} +); +width = 556; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,-9,o), +(283,35,o), +(309,117,c), +(279,125,l), +(257,57,o), +(224,23,o), +(181,23,cs), +(119,23,o), +(84,145,o), +(84,389,cs), +(84,583,o), +(124,706,o), +(183,706,cs), +(228,706,o), +(253,650,o), +(253,537,cs), +(253,320,o), +(160,168,o), +(6,136,c), +(6,104,l), +(178,136,o), +(283,301,o), +(283,537,cs), +(283,668,o), +(249,738,o), +(183,738,cs), +(101,738,o), +(54,605,o), +(54,389,cs), +(54,123,o), +(94,-9,o), +(181,-9,cs) +); +} +); +width = 324; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-8,o), +(404,50,o), +(434,144,c), +(307,182,l), +(294,136,o), +(276,120,o), +(256,120,cs), +(214,120,o), +(207,172,o), +(207,369,cs), +(207,512,o), +(215,591,o), +(245,591,cs), +(259,591,o), +(269,576,o), +(269,532,cs), +(269,393,o), +(184,256,o), +(17,231,c), +(17,120,l), +(274,142,o), +(416,346,o), +(416,538,cs), +(416,667,o), +(352,739,o), +(257,739,cs), +(117,739,o), +(51,605,o), +(51,405,cs), +(51,171,o), +(89,-8,o), +(249,-8,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-8,o), +(408,48,o), +(438,132,c), +(314,184,l), +(300,141,o), +(281,126,o), +(259,126,cs), +(217,126,o), +(197,176,o), +(197,374,cs), +(197,539,o), +(218,585,o), +(251,585,cs), +(267,585,o), +(276,569,o), +(276,543,cs), +(276,454,o), +(220,282,o), +(7,236,c), +(7,121,l), +(277,169,o), +(423,369,o), +(423,546,cs), +(423,665,o), +(364,739,o), +(263,739,cs), +(117,739,o), +(41,611,o), +(41,386,cs), +(41,124,o), +(100,-8,o), +(247,-8,cs) +); +} +); +width = 444; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,-8,o), +(363,23,o), +(393,102,c), +(363,114,l), +(343,61,o), +(309,26,o), +(253,26,cs), +(176,26,o), +(124,113,o), +(124,389,cs), +(124,585,o), +(174,705,o), +(257,705,cs), +(308,705,o), +(337,658,o), +(337,558,cs), +(337,363,o), +(215,196,o), +(33,141,c), +(33,110,l), +(235,167,o), +(370,351,o), +(370,562,cs), +(370,668,o), +(334,739,o), +(258,739,cs), +(151,739,o), +(92,604,o), +(92,389,cs), +(92,151,o), +(131,-8,o), +(251,-8,cs) +); +} +); +width = 438; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,-8,o), +(456,49,o), +(486,135,c), +(354,192,l), +(338,147,o), +(315,137,o), +(294,137,cs), +(249,137,o), +(227,182,o), +(227,372,cs), +(227,534,o), +(250,571,o), +(284,571,cs), +(300,571,o), +(311,556,o), +(311,530,cs), +(311,463,o), +(252,292,o), +(10,247,c), +(10,122,l), +(323,171,o), +(472,377,o), +(472,549,cs), +(472,663,o), +(408,739,o), +(306,739,cs), +(134,739,o), +(53,591,o), +(53,384,cs), +(53,149,o), +(106,-8,o), +(274,-8,cs) +); +} +); +width = 497; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-10,o), +(427,37,o), +(463,129,c), +(431,140,l), +(400,61,o), +(350,22,o), +(282,22,cs), +(188,22,o), +(139,143,o), +(139,388,cs), +(139,585,o), +(196,707,o), +(285,707,cs), +(352,707,o), +(387,650,o), +(387,538,cs), +(387,316,o), +(249,161,o), +(21,134,c), +(25,103,l), +(271,132,o), +(421,299,o), +(421,538,cs), +(421,667,o), +(374,739,o), +(285,739,cs), +(173,739,o), +(105,604,o), +(105,388,cs), +(105,124,o), +(163,-10,o), +(282,-10,cs) +); +} +); +width = 489; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(407,-8,o), +(501,52,o), +(534,136,c), +(391,199,l), +(377,166,o), +(345,147,o), +(315,147,cs), +(265,147,o), +(243,191,o), +(243,380,cs), +(243,521,o), +(268,559,o), +(305,559,cs), +(325,559,o), +(336,542,o), +(336,517,cs), +(336,400,o), +(203,298,o), +(3,263,c), +(3,130,l), +(330,174,o), +(512,336,o), +(512,534,cs), +(512,655,o), +(444,739,o), +(324,739,cs), +(149,739,o), +(51,590,o), +(51,367,cs), +(51,147,o), +(114,-8,o), +(298,-8,cs) +); +} +); +width = 536; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(326,-8,o), +(378,23,o), +(408,102,c), +(378,114,l), +(358,61,o), +(326,26,o), +(270,26,cs), +(195,26,o), +(145,113,o), +(145,389,cs), +(145,585,o), +(193,705,o), +(274,705,cs), +(325,705,o), +(352,658,o), +(352,558,cs), +(352,363,o), +(234,196,o), +(54,141,c), +(54,110,l), +(252,167,o), +(385,351,o), +(385,562,cs), +(385,668,o), +(349,739,o), +(275,739,cs), +(170,739,o), +(113,604,o), +(113,389,cs), +(113,151,o), +(151,-8,o), +(268,-8,cs) +); +} +); +width = 473; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-8,o), +(462,49,o), +(491,135,c), +(360,192,l), +(346,148,o), +(325,137,o), +(305,137,cs), +(262,137,o), +(243,183,o), +(243,372,cs), +(243,533,o), +(263,571,o), +(295,571,cs), +(309,571,o), +(319,556,o), +(319,530,cs), +(319,463,o), +(264,292,o), +(30,247,c), +(30,122,l), +(335,171,o), +(478,377,o), +(478,549,cs), +(478,662,o), +(416,739,o), +(317,739,cs), +(149,739,o), +(70,590,o), +(70,384,cs), +(70,149,o), +(122,-8,o), +(285,-8,cs) +); +} +); +width = 521; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-10,o), +(255,13,o), +(302,106,c), +(274,116,l), +(245,59,o), +(214,21,o), +(166,21,cs), +(76,21,o), +(100,232,o), +(132,395,cs), +(170,589,o), +(219,707,o), +(290,707,cs), +(353,707,o), +(354,626,o), +(332,542,cs), +(286,366,o), +(161,217,o), +(7,161,c), +(1,129,l), +(176,188,o), +(320,359,o), +(366,547,cs), +(394,662,o), +(365,739,o), +(294,739,cs), +(215,739,o), +(155,660,o), +(102,399,cs), +(65,216,o), +(42,-10,o), +(163,-10,cs) +); +} +); +width = 363; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,-10,o), +(374,30,o), +(418,114,c), +(306,177,l), +(284,138,o), +(266,124,o), +(244,124,cs), +(180,124,o), +(202,249,o), +(227,377,cs), +(258,538,o), +(286,582,o), +(317,582,cs), +(338,582,o), +(341,559,o), +(334,525,cs), +(317,445,o), +(232,283,o), +(13,255,c), +(-9,141,l), +(267,165,o), +(446,352,o), +(479,509,cs), +(507,646,o), +(453,737,o), +(345,737,cs), +(208,737,o), +(115,615,o), +(75,404,cs), +(28,156,o), +(59,-10,o), +(222,-10,cs) +); +} +); +width = 464; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(340,16,o), +(381,88,c), +(353,103,l), +(325,56,o), +(292,23,o), +(238,23,cs), +(182,23,o), +(145,65,o), +(145,183,cs), +(145,366,o), +(219,701,o), +(359,701,cs), +(423,701,o), +(428,628,o), +(413,547,cs), +(375,352,o), +(223,197,o), +(33,159,c), +(27,128,l), +(236,166,o), +(406,338,o), +(446,545,cs), +(468,659,o), +(438,735,o), +(359,735,cs), +(197,735,o), +(113,393,o), +(113,178,cs), +(113,65,o), +(152,-10,o), +(234,-10,cs) +); +} +); +width = 478; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,-10,o), +(438,38,o), +(481,115,c), +(361,183,l), +(340,144,o), +(317,134,o), +(298,134,cs), +(267,134,o), +(250,151,o), +(250,210,cs), +(250,424,o), +(291,568,o), +(358,568,cs), +(370,568,o), +(384,558,o), +(384,533,cs), +(384,419,o), +(203,294,o), +(33,268,c), +(9,144,l), +(287,162,o), +(551,346,o), +(551,570,cs), +(551,677,o), +(491,737,o), +(400,737,cs), +(209,737,o), +(81,542,o), +(81,250,cs), +(81,94,o), +(132,-10,o), +(264,-10,cs) +); +} +); +width = 544; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,-10,o), +(396,31,o), +(446,114,c), +(416,127,l), +(373,57,o), +(322,22,o), +(261,22,cs), +(121,22,o), +(144,237,o), +(175,400,cs), +(212,590,o), +(288,705,o), +(376,705,cs), +(439,705,o), +(471,634,o), +(445,508,cs), +(409,332,o), +(251,185,o), +(10,157,c), +(8,126,l), +(250,154,o), +(437,301,o), +(479,508,cs), +(507,645,o), +(466,737,o), +(377,737,cs), +(271,737,o), +(182,612,o), +(142,403,cs), +(102,192,o), +(102,-10,o), +(260,-10,cs) +); +} +); +width = 509; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(383,-10,o), +(473,40,o), +(518,115,c), +(389,190,l), +(371,160,o), +(340,144,o), +(311,144,cs), +(236,144,o), +(253,254,o), +(278,382,cs), +(305,519,o), +(333,560,o), +(370,560,cs), +(389,560,o), +(398,548,o), +(398,528,cs), +(398,394,o), +(191,302,o), +(19,288,c), +(-7,155,l), +(294,169,o), +(578,312,o), +(578,559,cs), +(578,667,o), +(513,739,o), +(405,739,cs), +(204,739,o), +(70,553,o), +(70,274,cs), +(70,100,o), +(138,-10,o), +(283,-10,cs) +); +} +); +width = 561; +} +); +unicode = 8467; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/logicalnot.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/logicalnot.glyph new file mode 100644 index 00000000..af8066ac --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/logicalnot.glyph @@ -0,0 +1,378 @@ +{ +glyphname = logicalnot; +kernRight = KO_logicalnot; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,139,l), +(473,428,l), +(-2,428,l), +(-2,281,l), +(329,281,l), +(329,139,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,145,l), +(451,375,l), +(-24,375,l), +(-24,347,l), +(424,347,l), +(424,145,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(586,119,l), +(586,380,l), +(86,380,l), +(86,348,l), +(555,348,l), +(555,119,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(594,115,l), +(594,447,l), +(103,447,l), +(103,273,l), +(417,273,l), +(417,115,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,145,l), +(443,375,l), +(-32,375,l), +(-32,347,l), +(416,347,l), +(416,145,l) +); +} +); +width = 452; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,139,l), +(468,428,l), +(-7,428,l), +(-7,281,l), +(324,281,l), +(324,139,l) +); +} +); +width = 470; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(492,153,l), +(492,397,l), +(17,397,l), +(17,365,l), +(460,365,l), +(460,153,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 556; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(506,139,l), +(506,428,l), +(31,428,l), +(31,281,l), +(362,281,l), +(362,139,l) +); +} +); +width = 555; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(576,119,l), +(576,380,l), +(76,380,l), +(76,348,l), +(545,348,l), +(545,119,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(584,115,l), +(584,447,l), +(93,447,l), +(93,273,l), +(407,273,l), +(407,115,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(505,153,l), +(505,397,l), +(40,397,l), +(40,365,l), +(473,365,l), +(473,153,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(511,139,l), +(511,428,l), +(50,428,l), +(50,281,l), +(368,281,l), +(368,139,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(424,145,l), +(472,375,l), +(2,375,l), +(-4,347,l), +(440,347,l), +(397,145,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,139,l), +(503,428,l), +(33,428,l), +(2,281,l), +(330,281,l), +(300,139,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,153,l), +(538,397,l), +(68,397,l), +(61,365,l), +(499,365,l), +(455,153,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(497,139,l), +(557,428,l), +(87,428,l), +(56,281,l), +(384,281,l), +(354,139,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(555,119,l), +(610,380,l), +(115,380,l), +(108,348,l), +(572,348,l), +(524,119,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(558,115,l), +(628,447,l), +(142,447,l), +(105,273,l), +(416,273,l), +(383,115,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 172; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lslash.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lslash.glyph new file mode 100644 index 00000000..165e3c5d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lslash.glyph @@ -0,0 +1,278 @@ +{ +color = 7; +glyphname = lslash; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = l; +}, +{ +pos = (-20,11); +ref = slashshortcomb; +} +); +width = 164; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-28,73); +ref = slashshortcomb; +} +); +width = 268; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +pos = (25,0); +ref = l; +}, +{ +pos = (-25,23); +ref = slashshortcomb; +} +); +width = 218; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-24,63); +ref = slashshortcomb; +} +); +width = 343; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = l; +}, +{ +pos = (-24,11); +ref = slashshortcomb; +} +); +width = 124; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-29,73); +ref = slashshortcomb; +} +); +width = 248; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-18,23); +ref = slashshortcomb; +} +); +width = 204; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (16,0); +ref = l; +}, +{ +pos = (-17,63); +ref = slashshortcomb; +} +); +width = 289; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (25,0); +ref = l; +}, +{ +pos = (-25,23); +ref = slashshortcomb; +} +); +width = 198; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-27,63); +ref = slashshortcomb; +} +); +width = 323; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-13,23); +ref = slashshortcomb; +} +); +width = 245; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (16,0); +ref = l; +}, +{ +pos = (-1,63); +ref = slashshortcomb; +} +); +width = 325; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +pos = (6,0); +ref = l; +}, +{ +pos = (-19,11); +ref = slashshortcomb; +} +); +width = 162; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +pos = (20,0); +ref = l; +}, +{ +pos = (-13,73); +ref = slashshortcomb; +} +); +width = 269; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +pos = (20,0); +ref = l; +}, +{ +pos = (-7,23); +ref = slashshortcomb; +} +); +width = 244; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +pos = (16,0); +ref = l; +}, +{ +pos = (-1,63); +ref = slashshortcomb; +} +); +width = 330; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +pos = (29,0); +ref = l; +}, +{ +pos = (-16,23); +ref = slashshortcomb; +} +); +width = 226; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-12,63); +ref = slashshortcomb; +} +); +width = 341; +} +); +metricRight = "=|"; +unicode = 322; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lslash.ss03.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lslash.ss03.glyph new file mode 100644 index 00000000..c634e80d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lslash.ss03.glyph @@ -0,0 +1,276 @@ +{ +color = 7; +glyphname = lslash.ss03; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = l.ss03; +}, +{ +pos = (-21,11); +ref = slashshortcomb; +} +); +width = 166; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +pos = (22,0); +ref = l.ss03; +}, +{ +pos = (-28,73); +ref = slashshortcomb; +} +); +width = 277; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +pos = (27,0); +ref = l.ss03; +}, +{ +pos = (-25,23); +ref = slashshortcomb; +} +); +width = 262; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +pos = (21,0); +ref = l.ss03; +}, +{ +pos = (-27,63); +ref = slashshortcomb; +} +); +width = 369; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = l.ss03; +}, +{ +pos = (-23,11); +ref = slashshortcomb; +} +); +width = 126; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (22,0); +ref = l.ss03; +}, +{ +pos = (-28,73); +ref = slashshortcomb; +} +); +width = 257; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (19,0); +ref = l.ss03; +}, +{ +pos = (-12,23); +ref = slashshortcomb; +} +); +width = 224; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (19,0); +ref = l.ss03; +}, +{ +pos = (-16,63); +ref = slashshortcomb; +} +); +width = 309; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (27,0); +ref = l.ss03; +}, +{ +pos = (-25,23); +ref = slashshortcomb; +} +); +width = 242; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (21,0); +ref = l.ss03; +}, +{ +pos = (-27,63); +ref = slashshortcomb; +} +); +width = 349; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (19,0); +ref = l.ss03; +}, +{ +pos = (-12,23); +ref = slashshortcomb; +} +); +width = 263; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (19,0); +ref = l.ss03; +}, +{ +pos = (-10,63); +ref = slashshortcomb; +} +); +width = 345; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = l.ss03; +}, +{ +pos = (-20,11); +ref = slashshortcomb; +} +); +width = 166; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +pos = (23,0); +ref = l.ss03; +}, +{ +pos = (-13,73); +ref = slashshortcomb; +} +); +width = 278; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +pos = (20,0); +ref = l.ss03; +}, +{ +pos = (-7,23); +ref = slashshortcomb; +} +); +width = 260; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +pos = (19,0); +ref = l.ss03; +}, +{ +pos = (-3,58); +ref = slashshortcomb; +} +); +width = 345; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +pos = (30,0); +ref = l.ss03; +}, +{ +pos = (-20,23); +ref = slashshortcomb; +} +); +width = 256; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +pos = (25,0); +ref = l.ss03; +}, +{ +pos = (-15,63); +ref = slashshortcomb; +} +); +width = 370; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/lslash.ss04.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/lslash.ss04.glyph new file mode 100644 index 00000000..b83efb89 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/lslash.ss04.glyph @@ -0,0 +1,276 @@ +{ +color = 7; +glyphname = lslash.ss04; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = l; +}, +{ +pos = (-20,11); +ref = slashshortcomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-28,73); +ref = slashshortcomb; +} +); +width = 268; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +pos = (25,0); +ref = l; +}, +{ +pos = (-25,23); +ref = slashshortcomb; +} +); +width = 219; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-24,63); +ref = slashshortcomb; +} +); +width = 341; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = l; +}, +{ +pos = (-24,11); +ref = slashshortcomb; +} +); +width = 123; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-29,73); +ref = slashshortcomb; +} +); +width = 248; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-18,23); +ref = slashshortcomb; +} +); +width = 204; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (16,0); +ref = l; +}, +{ +pos = (-17,63); +ref = slashshortcomb; +} +); +width = 288; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (25,0); +ref = l; +}, +{ +pos = (-25,23); +ref = slashshortcomb; +} +); +width = 199; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-27,63); +ref = slashshortcomb; +} +); +width = 321; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-13,23); +ref = slashshortcomb; +} +); +width = 245; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (16,0); +ref = l; +}, +{ +pos = (-1,63); +ref = slashshortcomb; +} +); +width = 324; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +pos = (6,0); +ref = l; +}, +{ +pos = (-19,11); +ref = slashshortcomb; +} +); +width = 162; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +pos = (20,0); +ref = l; +}, +{ +pos = (-13,73); +ref = slashshortcomb; +} +); +width = 269; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +pos = (20,0); +ref = l; +}, +{ +pos = (-7,23); +ref = slashshortcomb; +} +); +width = 244; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +pos = (16,0); +ref = l; +}, +{ +pos = (-1,63); +ref = slashshortcomb; +} +); +width = 330; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +pos = (25,0); +ref = l; +}, +{ +pos = (-20,23); +ref = slashshortcomb; +} +); +width = 219; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = l; +}, +{ +pos = (-12,63); +ref = slashshortcomb; +} +); +width = 340; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/m.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/m.glyph new file mode 100644 index 00000000..1cece6f6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/m.glyph @@ -0,0 +1,1214 @@ +{ +glyphname = m; +kernLeft = KO_n; +kernRight = KO_n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (370,0); +}, +{ +name = top; +pos = (370,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,328,ls), +(204,381,o), +(213,411,o), +(244,411,cs), +(269,411,o), +(282,394,o), +(282,335,cs), +(282,0,l), +(459,0,l), +(459,328,ls), +(459,383,o), +(468,411,o), +(499,411,cs), +(525,411,o), +(536,391,o), +(536,335,cs), +(536,0,l), +(714,0,l), +(714,347,ls), +(714,494,o), +(668,551,o), +(570,551,cs), +(511,551,o), +(471,521,o), +(450,467,c), +(444,467,l), +(425,527,o), +(383,551,o), +(325,551,cs), +(271,551,o), +(233,524,o), +(210,477,c), +(204,477,l), +(199,541,l), +(27,541,l), +(27,0,l) +); +} +); +width = 737; +}, +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = top; +pos = (282,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,0,l), +(89,307,ls), +(89,421,o), +(116,500,o), +(189,500,cs), +(240,500,o), +(267,474,o), +(267,371,cs), +(267,0,l), +(296,0,l), +(296,307,ls), +(296,420,o), +(323,500,o), +(397,500,cs), +(447,500,o), +(475,474,o), +(475,371,cs), +(475,0,l), +(504,0,l), +(504,378,ls), +(504,477,o), +(471,526,o), +(402,526,cs), +(350,526,o), +(309,487,o), +(295,432,c), +(292,432,l), +(281,494,o), +(252,526,o), +(197,526,cs), +(146,526,o), +(107,496,o), +(91,439,c), +(89,439,l), +(88,516,l), +(60,516,l), +(60,0,l) +); +} +); +width = 560; +}, +{ +anchors = ( +{ +name = bottom; +pos = (508,0); +}, +{ +name = top; +pos = (508,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(104,0,l), +(104,273,ls), +(104,404,o), +(180,491,o), +(313,491,cs), +(427,491,o), +(489,423,o), +(489,277,cs), +(489,0,l), +(527,0,l), +(527,273,ls), +(527,404,o), +(610,491,o), +(735,491,cs), +(866,491,o), +(913,419,o), +(913,291,cs), +(913,0,l), +(951,0,l), +(951,296,ls), +(951,451,o), +(876,525,o), +(738,525,cs), +(639,525,o), +(556,475,o), +(521,384,c), +(514,384,l), +(492,471,o), +(419,525,o), +(316,525,cs), +(223,525,o), +(142,479,o), +(108,398,c), +(104,398,l), +(104,517,l), +(66,517,l), +(66,0,l) +); +} +); +width = 1006; +}, +{ +anchors = ( +{ +name = bottom; +pos = (563,0); +}, +{ +name = top; +pos = (563,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,280,ls), +(264,342,o), +(300,389,o), +(366,389,cs), +(438,389,o), +(453,338,o), +(453,271,cs), +(453,0,l), +(673,0,l), +(673,280,ls), +(673,343,o), +(710,389,o), +(776,389,cs), +(845,389,o), +(862,339,o), +(862,269,cs), +(862,0,l), +(1083,0,l), +(1083,297,ls), +(1083,474,o), +(998,554,o), +(858,554,cs), +(768,554,o), +(698,525,o), +(654,445,c), +(644,445,l), +(611,519,o), +(543,554,o), +(455,554,cs), +(372,554,o), +(308,522,o), +(274,464,c), +(264,464,l), +(254,544,l), +(43,544,l), +(43,0,l) +); +} +); +width = 1114; +}, +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = top; +pos = (252,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(66,307,ls), +(66,425,o), +(104,499,o), +(163,499,cs), +(211,499,o), +(238,474,o), +(238,371,cs), +(238,0,l), +(268,0,l), +(268,307,ls), +(268,425,o), +(306,499,o), +(366,499,cs), +(413,499,o), +(441,474,o), +(441,371,cs), +(441,0,l), +(471,0,l), +(471,378,ls), +(471,477,o), +(438,526,o), +(371,526,cs), +(320,526,o), +(279,489,o), +(264,432,c), +(263,432,l), +(252,494,o), +(223,526,o), +(171,526,cs), +(122,526,o), +(81,492,o), +(66,439,c), +(65,439,l), +(64,516,l), +(36,516,l), +(36,0,l) +); +} +); +width = 505; +}, +{ +anchors = ( +{ +name = bottom; +pos = (356,0); +}, +{ +name = top; +pos = (356,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,318,ls), +(193,365,o), +(201,391,o), +(228,391,cs), +(251,391,o), +(262,376,o), +(262,325,cs), +(262,0,l), +(439,0,l), +(439,318,ls), +(439,366,o), +(447,391,o), +(475,391,cs), +(498,391,o), +(508,374,o), +(508,325,cs), +(508,0,l), +(685,0,l), +(685,347,ls), +(685,494,o), +(641,551,o), +(546,551,cs), +(490,551,o), +(449,522,o), +(427,464,c), +(426,464,l), +(406,527,o), +(366,551,o), +(308,551,cs), +(255,551,o), +(219,524,o), +(195,472,c), +(194,472,l), +(188,541,l), +(16,541,l), +(16,0,l) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = bottom; +pos = (455,0); +}, +{ +name = top; +pos = (455,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,0,l), +(95,274,ls), +(95,401,o), +(171,491,o), +(285,491,cs), +(388,491,o), +(438,430,o), +(438,294,cs), +(438,0,l), +(476,0,l), +(476,274,ls), +(476,401,o), +(551,491,o), +(664,491,cs), +(769,491,o), +(819,430,o), +(819,294,cs), +(819,0,l), +(855,0,l), +(855,300,ls), +(855,462,o), +(778,525,o), +(670,525,cs), +(582,525,o), +(506,480,o), +(468,386,c), +(467,386,l), +(439,486,o), +(374,525,o), +(290,525,cs), +(207,525,o), +(133,482,o), +(96,395,c), +(95,395,l), +(93,517,l), +(59,517,l), +(59,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 905; +}, +{ +anchors = ( +{ +name = bottom; +pos = (467,0); +}, +{ +name = top; +pos = (467,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,l), +(221,298,ls), +(221,354,o), +(255,395,o), +(302,395,cs), +(351,395,o), +(374,358,o), +(374,281,cs), +(374,0,l), +(565,0,l), +(565,298,ls), +(565,354,o), +(599,395,o), +(646,395,cs), +(695,395,o), +(718,358,o), +(718,281,cs), +(718,0,l), +(909,0,l), +(909,333,ls), +(909,494,o), +(828,554,o), +(727,554,cs), +(651,554,o), +(587,515,o), +(554,452,c), +(553,452,l), +(526,512,o), +(472,554,o), +(385,554,cs), +(313,554,o), +(250,514,o), +(223,454,c), +(222,454,l), +(215,544,l), +(30,544,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +}; +width = 937; +}, +{ +anchors = ( +{ +name = bottom; +pos = (498,0); +}, +{ +name = top; +pos = (498,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(94,0,l), +(94,273,ls), +(94,405,o), +(170,491,o), +(303,491,cs), +(417,491,o), +(479,423,o), +(479,277,cs), +(479,0,l), +(517,0,l), +(517,273,ls), +(517,399,o), +(605,491,o), +(724,491,cs), +(856,491,o), +(903,419,o), +(903,291,cs), +(903,0,l), +(941,0,l), +(941,296,ls), +(941,451,o), +(866,525,o), +(727,525,cs), +(621,525,o), +(543,472,o), +(507,375,c), +(505,375,l), +(481,472,o), +(408,525,o), +(306,525,cs), +(213,525,o), +(131,480,o), +(95,395,c), +(94,395,l), +(94,517,l), +(56,517,l), +(56,0,l) +); +} +); +width = 985; +}, +{ +anchors = ( +{ +name = bottom; +pos = (550,0); +}, +{ +name = top; +pos = (550,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(251,280,ls), +(251,342,o), +(287,389,o), +(353,389,cs), +(425,389,o), +(440,338,o), +(440,271,cs), +(440,0,l), +(660,0,l), +(660,280,ls), +(660,343,o), +(697,389,o), +(763,389,cs), +(832,389,o), +(849,339,o), +(849,269,cs), +(849,0,l), +(1070,0,l), +(1070,297,ls), +(1070,474,o), +(985,554,o), +(845,554,cs), +(744,554,o), +(672,517,o), +(632,445,c), +(631,445,l), +(598,519,o), +(530,554,o), +(442,554,cs), +(353,554,o), +(286,522,o), +(252,464,c), +(251,464,l), +(241,544,l), +(30,544,l), +(30,0,l) +); +} +); +width = 1091; +}, +{ +anchors = ( +{ +name = bottom; +pos = (435,0); +}, +{ +name = top; +pos = (435,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,l), +(121,295,ls), +(121,412,o), +(187,491,o), +(286,491,cs), +(374,491,o), +(416,435,o), +(416,315,cs), +(416,0,l), +(452,0,l), +(452,295,ls), +(452,410,o), +(519,491,o), +(618,491,cs), +(709,491,o), +(749,435,o), +(749,315,cs), +(749,0,l), +(785,0,l), +(785,321,ls), +(785,467,o), +(718,525,o), +(624,525,cs), +(545,525,o), +(477,481,o), +(448,399,c), +(444,399,l), +(423,487,o), +(365,525,o), +(291,525,cs), +(219,525,o), +(153,484,o), +(125,411,c), +(121,411,l), +(119,517,l), +(85,517,l), +(85,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 867; +}, +{ +anchors = ( +{ +name = bottom; +pos = (470,0); +}, +{ +name = top; +pos = (470,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(246,0,l), +(246,316,ls), +(246,356,o), +(267,400,o), +(316,400,cs), +(361,400,o), +(378,364,o), +(378,299,cs), +(378,0,l), +(567,0,l), +(567,316,ls), +(567,356,o), +(590,400,o), +(637,400,cs), +(682,400,o), +(699,364,o), +(699,299,cs), +(699,0,l), +(888,0,l), +(888,333,ls), +(888,494,o), +(812,554,o), +(717,554,cs), +(646,554,o), +(583,518,o), +(563,450,c), +(551,450,l), +(527,520,o), +(478,554,o), +(403,554,cs), +(343,554,o), +(279,523,o), +(256,455,c), +(243,455,l), +(240,544,l), +(56,544,l), +(56,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +}; +width = 941; +}, +{ +anchors = ( +{ +name = bottom; +pos = (238,0); +}, +{ +name = top; +pos = (344,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,0,l), +(100,315,ls), +(123,425,o), +(165,501,o), +(231,501,cs), +(296,501,o), +(308,455,o), +(289,366,cs), +(213,0,l), +(242,0,l), +(318,361,ls), +(334,441,o), +(381,501,o), +(437,501,cs), +(502,501,o), +(514,455,o), +(495,366,cs), +(419,0,l), +(448,0,l), +(525,371,ls), +(544,462,o), +(530,526,o), +(449,526,cs), +(401,526,o), +(351,493,o), +(328,436,c), +(324,436,l), +(327,490,o), +(305,526,o), +(244,526,cs), +(195,526,o), +(153,495,o), +(131,446,c), +(130,446,l), +(140,516,l), +(113,516,l), +(7,0,l) +); +} +); +width = 558; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = top; +pos = (427,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,0,l), +(216,337,ls), +(226,387,o), +(239,417,o), +(267,417,cs), +(293,417,o), +(299,396,o), +(287,340,cs), +(217,0,l), +(391,0,l), +(462,337,ls), +(473,387,o), +(482,417,o), +(512,417,cs), +(542,417,o), +(542,385,o), +(533,340,cs), +(461,0,l), +(637,0,l), +(707,338,ls), +(734,467,o), +(719,551,o), +(608,551,cs), +(562,551,o), +(515,530,o), +(477,467,c), +(470,467,l), +(461,521,o), +(430,551,o), +(363,551,cs), +(318,551,o), +(282,525,o), +(254,485,c), +(247,485,l), +(254,541,l), +(83,541,l), +(-30,0,l) +); +} +); +width = 715; +}, +{ +anchors = ( +{ +name = bottom; +pos = (431,0); +}, +{ +name = top; +pos = (539,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(68,0,l), +(128,293,ls), +(153,415,o), +(239,493,o), +(344,493,cs), +(449,493,o), +(492,424,o), +(464,288,cs), +(404,0,l), +(441,0,l), +(502,291,ls), +(527,410,o), +(607,493,o), +(717,493,cs), +(826,493,o), +(866,419,o), +(839,288,cs), +(779,0,l), +(815,0,l), +(875,290,ls), +(909,448,o), +(843,527,o), +(728,527,cs), +(644,527,o), +(565,487,o), +(516,394,c), +(509,394,l), +(498,481,o), +(440,527,o), +(354,527,cs), +(274,527,o), +(204,487,o), +(159,415,c), +(154,415,l), +(170,517,l), +(139,517,l), +(31,0,l) +); +} +); +width = 942; +}, +{ +anchors = ( +{ +name = bottom; +pos = (442,0); +}, +{ +name = top; +pos = (554,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,0,l), +(256,311,ls), +(270,375,o), +(308,400,o), +(348,400,cs), +(402,400,o), +(412,353,o), +(398,286,cs), +(338,0,l), +(529,0,l), +(594,311,ls), +(606,368,o), +(642,400,o), +(685,400,cs), +(741,400,o), +(751,354,o), +(737,286,cs), +(676,0,l), +(867,0,l), +(935,321,ls), +(967,474,o), +(901,554,o), +(784,554,cs), +(711,554,o), +(641,516,o), +(606,448,c), +(597,448,l), +(586,512,o), +(528,554,o), +(454,554,cs), +(391,554,o), +(326,519,o), +(295,467,c), +(287,467,l), +(298,544,l), +(113,544,l), +(-2,0,l) +); +} +); +width = 968; +}, +{ +anchors = ( +{ +name = bottom; +pos = (459,0); +}, +{ +name = top; +pos = (567,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(50,0,l), +(107,276,ls), +(135,409,o), +(228,494,o), +(344,494,cs), +(455,494,o), +(521,433,o), +(487,274,cs), +(430,0,l), +(466,0,l), +(527,287,ls), +(556,424,o), +(647,494,o), +(761,494,cs), +(872,494,o), +(937,434,o), +(906,283,cs), +(848,0,l), +(884,0,l), +(944,287,ls), +(978,451,o), +(900,527,o), +(770,527,cs), +(672,527,o), +(583,477,o), +(536,385,c), +(529,385,l), +(517,481,o), +(449,527,o), +(353,527,cs), +(271,527,o), +(189,484,o), +(141,406,c), +(136,406,l), +(156,517,l), +(120,517,l), +(13,0,l) +); +} +); +width = 992; +}, +{ +anchors = ( +{ +name = bottom; +pos = (513,0); +}, +{ +name = top; +pos = (625,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,0,l), +(265,284,ls), +(280,352,o), +(318,389,o), +(381,389,cs), +(446,389,o), +(462,337,o), +(446,260,cs), +(391,0,l), +(611,0,l), +(671,291,ls), +(684,354,o), +(725,389,o), +(785,389,cs), +(850,389,o), +(866,337,o), +(851,260,cs), +(796,0,l), +(1016,0,l), +(1074,284,ls), +(1109,448,o), +(1038,554,o), +(881,554,cs), +(794,554,o), +(711,514,o), +(669,446,c), +(661,446,l), +(648,511,o), +(576,554,o), +(485,554,cs), +(416,554,o), +(350,526,o), +(314,478,c), +(307,478,l), +(309,544,l), +(100,544,l), +(-13,0,l) +); +} +); +width = 1101; +} +); +metricLeft = n; +metricRight = n; +unicode = 109; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/macron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/macron.glyph new file mode 100644 index 00000000..c1bd7e79 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/macron.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = macron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 273; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 387; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 455; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 527; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = macroncomb; +} +); +width = 273; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = macroncomb; +} +); +width = 387; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = macroncomb; +} +); +width = 399; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = macroncomb; +} +); +width = 463; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = macroncomb; +} +); +width = 455; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = macroncomb; +} +); +width = 527; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 396; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 465; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 273; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 388; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 400; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 447; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 456; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 528; +} +); +unicode = 175; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/macroncomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/macroncomb.glyph new file mode 100644 index 00000000..f18d4236 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/macroncomb.glyph @@ -0,0 +1,392 @@ +{ +glyphname = macroncomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (194,680); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,735,l), +(347,874,l), +(40,874,l), +(40,735,l) +); +} +); +width = 387; +}, +{ +anchors = ( +{ +name = _top; +pos = (137,671); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,780,l), +(233,807,l), +(40,807,l), +(40,780,l) +); +} +); +width = 273; +}, +{ +anchors = ( +{ +name = _top; +pos = (228,671); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,780,l), +(415,813,l), +(40,813,l), +(40,780,l) +); +} +); +width = 455; +}, +{ +anchors = ( +{ +name = _top; +pos = (264,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,745,l), +(487,884,l), +(40,884,l), +(40,745,l) +); +} +); +width = 527; +}, +{ +anchors = ( +{ +name = _top; +pos = (117,671); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(213,780,l), +(213,807,l), +(20,807,l), +(20,780,l) +); +} +); +width = 233; +}, +{ +anchors = ( +{ +name = _top; +pos = (184,680); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,735,l), +(337,874,l), +(30,874,l), +(30,735,l) +); +} +); +width = 367; +}, +{ +anchors = ( +{ +name = _top; +pos = (180,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,780,l), +(339,813,l), +(20,813,l), +(20,780,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = _top; +pos = (221,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(422,735,l), +(422,874,l), +(19,874,l), +(19,735,l) +); +} +); +width = 441; +}, +{ +anchors = ( +{ +name = _top; +pos = (218,671); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,780,l), +(405,813,l), +(30,813,l), +(30,780,l) +); +} +); +width = 435; +}, +{ +anchors = ( +{ +name = _top; +pos = (254,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,745,l), +(477,884,l), +(30,884,l), +(30,745,l) +); +} +); +width = 507; +}, +{ +anchors = ( +{ +name = _top; +pos = (199,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(354,780,l), +(354,813,l), +(43,813,l), +(43,780,l) +); +} +); +width = 396; +}, +{ +anchors = ( +{ +name = _top; +pos = (234,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(428,735,l), +(428,874,l), +(39,874,l), +(39,735,l) +); +} +); +width = 465; +}, +{ +anchors = ( +{ +name = _top; +pos = (223,671); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(341,780,l), +(347,807,l), +(154,807,l), +(148,780,l) +); +} +); +width = 273; +}, +{ +anchors = ( +{ +name = _top; +pos = (279,680); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(444,735,l), +(472,874,l), +(165,874,l), +(137,735,l) +); +} +); +width = 388; +}, +{ +anchors = ( +{ +name = _top; +pos = (286,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,780,l), +(474,813,l), +(155,813,l), +(149,780,l) +); +} +); +width = 400; +}, +{ +anchors = ( +{ +name = _top; +pos = (308,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,745,l), +(530,884,l), +(167,884,l), +(142,745,l) +); +} +); +width = 447; +}, +{ +anchors = ( +{ +name = _top; +pos = (314,671); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(524,780,l), +(530,813,l), +(155,813,l), +(149,780,l) +); +} +); +width = 456; +}, +{ +anchors = ( +{ +name = _top; +pos = (348,673); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(586,745,l), +(614,884,l), +(167,884,l), +(139,745,l) +); +} +); +width = 528; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 772; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/minus.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/minus.glyph new file mode 100644 index 00000000..3da395eb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/minus.glyph @@ -0,0 +1,311 @@ +{ +glyphname = minus; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(462,291,l), +(462,431,l), +(18,431,l), +(18,291,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,347,l), +(433,375,l), +(47,375,l), +(47,347,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(608,345,l), +(608,377,l), +(113,377,l), +(113,345,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(611,274,l), +(611,448,l), +(110,448,l), +(110,274,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,347,l), +(413,375,l), +(27,375,l), +(27,347,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,291,l), +(452,431,l), +(8,431,l), +(8,291,l) +); +} +); +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(519,345,l), +(519,377,l), +(41,377,l), +(41,345,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +12, +12 +); +stem = -2; +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(513,286,l), +(513,435,l), +(40,435,l), +(40,286,l) +); +} +); +width = 552; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(598,345,l), +(598,377,l), +(103,377,l), +(103,345,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(601,274,l), +(601,448,l), +(100,448,l), +(100,274,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(532,345,l), +(532,377,l), +(62,377,l), +(62,345,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +12, +12 +); +stem = -2; +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(521,286,l), +(521,435,l), +(62,435,l), +(62,286,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(449,347,l), +(455,375,l), +(73,375,l), +(67,347,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,291,l), +(492,431,l), +(53,431,l), +(23,291,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(554,345,l), +(561,377,l), +(88,377,l), +(81,345,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,286,l), +(568,435,l), +(100,435,l), +(69,286,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(623,345,l), +(630,377,l), +(140,377,l), +(133,345,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(608,274,l), +(644,448,l), +(148,448,l), +(112,274,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 8722; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/mu.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/mu.glyph new file mode 100644 index 00000000..e11e4ff7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/mu.glyph @@ -0,0 +1,806 @@ +{ +glyphname = mu; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,-132,l), +(204,43,l), +(107,22,l), +(116,2,o), +(137,-9,o), +(168,-9,cs), +(209,-9,o), +(248,18,o), +(268,64,c), +(275,64,l), +(281,0,l), +(451,0,l), +(451,541,l), +(275,541,l), +(275,213,ls), +(275,160,o), +(268,131,o), +(238,131,cs), +(215,131,o), +(204,148,o), +(204,206,cs), +(204,541,l), +(27,541,l), +(27,-132,l) +); +} +); +width = 478; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,-132,l), +(89,39,l), +(86,38,l), +(101,6,o), +(125,-10,o), +(159,-10,cs), +(212,-10,o), +(250,21,o), +(266,77,c), +(268,77,l), +(269,0,l), +(297,0,l), +(297,516,l), +(268,516,l), +(268,209,ls), +(268,95,o), +(241,16,o), +(167,16,cs), +(117,16,o), +(89,41,o), +(89,145,cs), +(89,516,l), +(60,516,l), +(60,-132,l) +); +} +); +width = 357; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,-132,l), +(103,143,l), +(87,133,l), +(104,45,o), +(186,-8,o), +(302,-8,cs), +(402,-8,o), +(494,40,o), +(530,130,c), +(535,130,l), +(535,0,l), +(572,0,l), +(572,517,l), +(535,517,l), +(535,262,ls), +(535,120,o), +(455,26,o), +(307,26,cs), +(177,26,o), +(103,86,o), +(103,234,cs), +(103,517,l), +(66,517,l), +(66,-132,l) +); +} +); +width = 638; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-132,l), +(264,37,l), +(212,3,l), +(226,-5,o), +(253,-10,o), +(278,-10,cs), +(357,-10,o), +(430,26,o), +(461,79,c), +(470,79,l), +(479,0,l), +(691,0,l), +(691,544,l), +(470,544,l), +(470,273,ls), +(470,202,o), +(442,155,o), +(357,155,cs), +(283,155,o), +(264,208,o), +(264,280,cs), +(264,544,l), +(43,544,l), +(43,-132,l) +); +} +); +width = 734; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(65,-132,l), +(65,39,l), +(62,38,l), +(77,6,o), +(101,-10,o), +(135,-10,cs), +(188,-10,o), +(226,21,o), +(242,77,c), +(244,77,l), +(245,0,l), +(273,0,l), +(273,516,l), +(244,516,l), +(244,209,ls), +(244,95,o), +(217,16,o), +(143,16,cs), +(93,16,o), +(65,41,o), +(65,145,cs), +(65,516,l), +(36,516,l), +(36,-132,l) +); +} +); +width = 309; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,-132,l), +(193,43,l), +(96,22,l), +(105,2,o), +(126,-9,o), +(157,-9,cs), +(198,-9,o), +(237,18,o), +(257,64,c), +(264,64,l), +(270,0,l), +(440,0,l), +(440,541,l), +(264,541,l), +(264,213,ls), +(264,160,o), +(257,131,o), +(227,131,cs), +(204,131,o), +(193,148,o), +(193,206,cs), +(193,541,l), +(16,541,l), +(16,-132,l) +); +} +); +width = 456; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(96,-132,l), +(96,111,l), +(91,83,l), +(111,25,o), +(173,-8,o), +(250,-8,cs), +(338,-8,o), +(407,33,o), +(438,121,c), +(442,121,l), +(445,0,l), +(479,0,l), +(479,517,l), +(442,517,l), +(442,249,ls), +(442,115,o), +(388,26,o), +(261,26,cs), +(157,26,o), +(96,83,o), +(96,183,cs), +(96,517,l), +(59,517,l), +(59,-132,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = u; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = u; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 538; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-132,l), +(221,48,l), +(129,17,l), +(148,1,o), +(185,-10,o), +(222,-10,cs), +(294,-10,o), +(356,23,o), +(381,89,c), +(389,89,l), +(396,0,l), +(580,0,l), +(580,544,l), +(389,544,l), +(389,236,ls), +(389,181,o), +(361,144,o), +(300,144,cs), +(249,144,o), +(221,173,o), +(221,228,cs), +(221,544,l), +(30,544,l), +(30,-132,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = u; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = u; +}; +width = 610; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-132,l), +(93,143,l), +(77,133,l), +(94,45,o), +(176,-8,o), +(292,-8,cs), +(392,-8,o), +(484,40,o), +(520,130,c), +(525,130,l), +(525,0,l), +(562,0,l), +(562,517,l), +(525,517,l), +(525,262,ls), +(525,120,o), +(445,26,o), +(297,26,cs), +(167,26,o), +(93,86,o), +(93,234,cs), +(93,517,l), +(56,517,l), +(56,-132,l) +); +} +); +width = 618; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,-132,l), +(254,37,l), +(202,3,l), +(216,-5,o), +(243,-10,o), +(268,-10,cs), +(347,-10,o), +(420,26,o), +(451,79,c), +(460,79,l), +(469,0,l), +(681,0,l), +(681,544,l), +(460,544,l), +(460,273,ls), +(460,202,o), +(432,155,o), +(347,155,cs), +(273,155,o), +(254,208,o), +(254,280,cs), +(254,544,l), +(33,544,l), +(33,-132,l) +); +} +); +width = 714; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(123,-132,l), +(123,111,l), +(118,83,l), +(138,25,o), +(198,-8,o), +(273,-8,cs), +(359,-8,o), +(428,33,o), +(457,121,c), +(461,121,l), +(464,0,l), +(498,0,l), +(498,517,l), +(461,517,l), +(461,249,ls), +(461,115,o), +(409,26,o), +(284,26,cs), +(182,26,o), +(123,83,o), +(123,183,cs), +(123,517,l), +(86,517,l), +(86,-132,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = u; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = u; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 583; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(242,-132,l), +(242,48,l), +(150,17,l), +(168,1,o), +(204,-10,o), +(238,-10,cs), +(306,-10,o), +(366,23,o), +(390,89,c), +(398,89,l), +(405,0,l), +(587,0,l), +(587,544,l), +(398,544,l), +(398,236,ls), +(398,181,o), +(371,144,o), +(315,144,cs), +(267,144,o), +(242,174,o), +(242,228,cs), +(242,544,l), +(52,544,l), +(52,-132,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = u; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = u; +}; +width = 639; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(28,-132,l), +(58,39,l), +(55,38,l), +(64,6,o), +(86,-10,o), +(120,-10,cs), +(173,-10,o), +(216,21,o), +(242,77,c), +(244,77,l), +(231,0,l), +(259,0,l), +(350,516,l), +(321,516,l), +(267,209,ls), +(247,95,o), +(206,16,o), +(132,16,cs), +(82,16,o), +(59,41,o), +(77,145,cs), +(142,516,l), +(113,516,l), +(-1,-132,l) +); +} +); +width = 372; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,-132,l), +(171,43,l), +(70,22,l), +(75,4,o), +(92,-9,o), +(126,-9,cs), +(165,-9,o), +(209,16,o), +(239,64,c), +(246,64,l), +(240,0,l), +(410,0,l), +(506,541,l), +(330,541,l), +(272,213,ls), +(262,155,o), +(248,131,o), +(220,131,cs), +(197,131,o), +(190,148,o), +(200,206,cs), +(259,541,l), +(82,541,l), +(-37,-132,l) +); +} +); +width = 492; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,-132,l), +(105,111,l), +(95,83,l), +(104,25,o), +(161,-8,o), +(238,-8,cs), +(326,-8,o), +(402,33,o), +(448,121,c), +(452,121,l), +(434,0,l), +(468,0,l), +(559,517,l), +(522,517,l), +(475,249,ls), +(451,115,o), +(382,26,o), +(255,26,cs), +(151,26,o), +(100,83,o), +(117,183,cs), +(176,517,l), +(139,517,l), +(25,-132,l) +); +} +); +width = 607; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,-132,l), +(213,48,l), +(116,17,l), +(132,1,o), +(167,-10,o), +(204,-10,cs), +(276,-10,o), +(344,23,o), +(380,89,c), +(388,89,l), +(380,0,l), +(564,0,l), +(660,544,l), +(469,544,l), +(414,236,ls), +(405,181,o), +(370,144,o), +(309,144,cs), +(258,144,o), +(235,173,o), +(245,228,cs), +(301,544,l), +(110,544,l), +(-10,-132,l) +); +} +); +width = 674; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,-132,l), +(91,143,l), +(74,133,l), +(75,45,o), +(148,-8,o), +(264,-8,cs), +(364,-8,o), +(464,40,o), +(516,130,c), +(521,130,l), +(498,0,l), +(535,0,l), +(626,517,l), +(589,517,l), +(545,262,ls), +(519,120,o), +(423,26,o), +(275,26,cs), +(145,26,o), +(81,86,o), +(107,234,cs), +(157,517,l), +(120,517,l), +(6,-132,l) +); +} +); +width = 655; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,-132,l), +(230,37,l), +(172,3,l), +(185,-5,o), +(211,-10,o), +(236,-10,cs), +(315,-10,o), +(394,26,o), +(435,79,c), +(443,79,l), +(439,0,l), +(651,0,l), +(747,544,l), +(526,544,l), +(478,273,ls), +(466,202,o), +(429,155,o), +(344,155,cs), +(269,155,o), +(260,208,o), +(273,280,cs), +(320,544,l), +(99,544,l), +(-21,-132,l) +); +} +); +width = 750; +} +); +metricLeft = l; +metricRight = l; +unicode = 956; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/multiply.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/multiply.glyph new file mode 100644 index 00000000..3da02bbb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/multiply.glyph @@ -0,0 +1,427 @@ +{ +glyphname = multiply; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,263,l), +(364,141,l), +(462,239,l), +(340,361,l), +(462,483,l), +(364,581,l), +(242,459,l), +(120,581,l), +(22,483,l), +(144,361,l), +(22,239,l), +(120,141,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,340,l), +(367,214,l), +(388,235,l), +(262,361,l), +(388,487,l), +(367,508,l), +(241,382,l), +(115,508,l), +(94,487,l), +(220,361,l), +(94,235,l), +(115,214,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,337,l), +(537,160,l), +(561,184,l), +(384,361,l), +(561,538,l), +(537,562,l), +(360,385,l), +(183,562,l), +(159,538,l), +(336,361,l), +(159,184,l), +(183,160,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,236,l), +(498,98,l), +(623,223,l), +(485,361,l), +(623,499,l), +(498,623,l), +(360,486,l), +(222,623,l), +(98,499,l), +(235,361,l), +(98,223,l), +(222,98,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,340,l), +(347,214,l), +(368,235,l), +(242,361,l), +(368,487,l), +(347,508,l), +(221,382,l), +(95,508,l), +(74,487,l), +(200,361,l), +(74,235,l), +(95,214,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,263,l), +(354,141,l), +(452,239,l), +(330,361,l), +(452,483,l), +(354,581,l), +(232,459,l), +(110,581,l), +(12,483,l), +(134,361,l), +(12,239,l), +(110,141,l) +); +} +); +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,337,l), +(447,166,l), +(471,190,l), +(300,361,l), +(471,532,l), +(447,556,l), +(276,385,l), +(105,556,l), +(81,532,l), +(252,361,l), +(81,190,l), +(105,166,l) +); +} +); +width = 552; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,260,l), +(408,129,l), +(509,230,l), +(379,361,l), +(509,491,l), +(408,592,l), +(278,462,l), +(147,592,l), +(46,491,l), +(177,361,l), +(46,230,l), +(147,129,l) +); +} +); +width = 552; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,337,l), +(527,160,l), +(551,184,l), +(374,361,l), +(551,538,l), +(527,562,l), +(350,385,l), +(173,562,l), +(149,538,l), +(326,361,l), +(149,184,l), +(173,160,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,236,l), +(488,98,l), +(613,223,l), +(475,361,l), +(613,499,l), +(488,623,l), +(350,486,l), +(212,623,l), +(88,499,l), +(225,361,l), +(88,223,l), +(212,98,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(297,337,l), +(464,166,l), +(488,190,l), +(321,361,l), +(488,532,l), +(464,556,l), +(297,385,l), +(130,556,l), +(106,532,l), +(273,361,l), +(106,190,l), +(130,166,l) +); +} +); +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(293,260,l), +(417,129,l), +(517,230,l), +(393,361,l), +(517,491,l), +(417,592,l), +(293,462,l), +(168,592,l), +(68,491,l), +(193,361,l), +(68,230,l), +(168,129,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,342,l), +(359,215,l), +(382,235,l), +(284,361,l), +(435,487,l), +(418,510,l), +(267,384,l), +(169,508,l), +(146,488,l), +(243,364,l), +(90,237,l), +(108,214,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(248,268,l), +(344,146,l), +(455,239,l), +(360,361,l), +(506,483,l), +(425,586,l), +(279,464,l), +(188,581,l), +(76,488,l), +(168,371,l), +(15,244,l), +(96,141,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,340,l), +(455,168,l), +(480,190,l), +(347,361,l), +(551,532,l), +(531,557,l), +(326,385,l), +(193,556,l), +(168,534,l), +(300,364,l), +(93,191,l), +(114,166,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,265,l), +(408,134,l), +(523,230,l), +(422,361,l), +(578,491,l), +(495,597,l), +(339,467,l), +(241,592,l), +(125,496,l), +(224,371,l), +(61,235,l), +(143,129,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,337,l), +(518,160,l), +(545,182,l), +(406,359,l), +(620,538,l), +(601,564,l), +(386,386,l), +(250,560,l), +(222,538,l), +(359,363,l), +(147,186,l), +(168,160,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,232,l), +(459,96,l), +(603,217,l), +(497,352,l), +(671,497,l), +(570,626,l), +(395,482,l), +(290,617,l), +(148,498,l), +(252,362,l), +(90,226,l), +(190,95,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 215; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/n.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/n.glyph new file mode 100644 index 00000000..bd4035a2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/n.glyph @@ -0,0 +1,1053 @@ +{ +glyphname = n; +kernLeft = KO_n; +kernRight = KO_n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = top; +pos = (239,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,l), +(222,331,ls), +(222,378,o), +(232,400,o), +(262,400,cs), +(287,400,o), +(299,383,o), +(299,331,cs), +(299,0,l), +(485,0,l), +(485,343,ls), +(485,486,o), +(446,554,o), +(346,554,cs), +(287,554,o), +(246,528,o), +(229,481,c), +(222,481,l), +(220,544,l), +(36,544,l), +(36,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,328,ls), +(204,381,o), +(211,411,o), +(241,411,cs), +(263,411,o), +(275,396,o), +(275,335,cs), +(275,0,l), +(451,0,l), +(451,347,ls), +(451,494,o), +(411,551,o), +(320,551,cs), +(270,551,o), +(232,524,o), +(210,477,c), +(204,477,l), +(199,541,l), +(27,541,l), +(27,0,l) +); +} +); +width = 474; +}, +{ +anchors = ( +{ +name = bottom; +pos = (179,0); +}, +{ +name = top; +pos = (179,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,0,l), +(89,307,ls), +(89,421,o), +(116,500,o), +(189,500,cs), +(240,500,o), +(268,474,o), +(268,371,cs), +(268,0,l), +(297,0,l), +(297,378,ls), +(297,478,o), +(265,526,o), +(198,526,cs), +(146,526,o), +(107,496,o), +(91,439,c), +(89,439,l), +(88,516,l), +(60,516,l), +(60,0,l) +); +} +); +width = 354; +}, +{ +anchors = ( +{ +name = bottom; +pos = (319,0); +}, +{ +name = top; +pos = (319,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(103,256,ls), +(103,397,o), +(201,491,o), +(341,491,cs), +(466,491,o), +(535,430,o), +(535,277,cs), +(535,0,l), +(572,0,l), +(572,283,ls), +(572,462,o), +(477,525,o), +(345,525,cs), +(242,525,o), +(150,476,o), +(108,387,c), +(103,387,l), +(103,517,l), +(66,517,l), +(66,0,l) +); +} +); +width = 626; +}, +{ +anchors = ( +{ +name = bottom; +pos = (367,0); +}, +{ +name = top; +pos = (367,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,271,ls), +(264,339,o), +(306,389,o), +(376,389,cs), +(452,389,o), +(470,336,o), +(470,260,cs), +(470,0,l), +(691,0,l), +(691,299,ls), +(691,491,o), +(596,554,o), +(456,554,cs), +(382,554,o), +(306,521,o), +(274,465,c), +(264,465,l), +(256,544,l), +(43,544,l), +(43,0,l) +); +} +); +width = 722; +}, +{ +anchors = ( +{ +name = bottom; +pos = (153,0); +}, +{ +name = top; +pos = (153,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(66,307,ls), +(66,425,o), +(104,499,o), +(163,499,cs), +(211,499,o), +(239,474,o), +(239,371,cs), +(239,0,l), +(269,0,l), +(269,378,ls), +(269,478,o), +(237,526,o), +(172,526,cs), +(122,526,o), +(83,494,o), +(68,439,c), +(66,439,l), +(65,516,l), +(36,516,l), +(36,0,l) +); +} +); +width = 303; +}, +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = top; +pos = (226,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,l), +(220,331,ls), +(220,378,o), +(230,400,o), +(260,400,cs), +(285,400,o), +(297,383,o), +(297,331,cs), +(297,0,l), +(483,0,l), +(483,343,ls), +(483,486,o), +(444,554,o), +(344,554,cs), +(285,554,o), +(244,528,o), +(227,481,c), +(220,481,l), +(218,544,l), +(34,544,l), +(34,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,318,l), +(193,366,o), +(204,391,o), +(228,391,cs), +(249,391,o), +(260,378,o), +(260,325,cs), +(260,0,l), +(436,0,l), +(436,347,ls), +(436,494,o), +(397,551,o), +(307,551,cs), +(258,551,o), +(221,524,o), +(194,466,c), +(193,466,l), +(188,541,l), +(16,541,l), +(16,0,l) +); +} +); +width = 449; +}, +{ +anchors = ( +{ +name = bottom; +pos = (267,0); +}, +{ +name = top; +pos = (267,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,0,l), +(95,274,ls), +(95,401,o), +(172,491,o), +(287,491,cs), +(392,491,o), +(443,430,o), +(443,294,cs), +(443,0,l), +(480,0,l), +(480,300,ls), +(480,462,o), +(401,525,o), +(292,525,cs), +(209,525,o), +(134,482,o), +(96,394,c), +(95,394,l), +(93,517,l), +(59,517,l), +(59,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 530; +}, +{ +anchors = ( +{ +name = bottom; +pos = (303,0); +}, +{ +name = top; +pos = (303,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(245,0,l), +(245,288,ls), +(245,353,o), +(277,400,o), +(341,400,cs), +(401,400,o), +(425,364,o), +(425,291,cs), +(425,0,l), +(616,0,l), +(616,321,ls), +(616,469,o), +(549,554,o), +(426,554,cs), +(346,554,o), +(282,518,o), +(253,455,c), +(245,455,l), +(222,544,l), +(54,544,l), +(54,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,l), +(221,298,ls), +(221,354,o), +(259,395,o), +(310,395,cs), +(367,395,o), +(389,356,o), +(389,281,cs), +(389,0,l), +(580,0,l), +(580,333,ls), +(580,476,o), +(513,554,o), +(390,554,cs), +(314,554,o), +(248,509,o), +(222,441,c), +(221,441,l), +(214,544,l), +(30,544,l), +(30,0,l) +); +} +); +width = 608; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(93,256,ls), +(93,397,o), +(191,491,o), +(331,491,cs), +(456,491,o), +(525,430,o), +(525,277,cs), +(525,0,l), +(562,0,l), +(562,283,ls), +(562,462,o), +(467,525,o), +(335,525,cs), +(227,525,o), +(134,471,o), +(94,387,c), +(93,387,l), +(93,517,l), +(56,517,l), +(56,0,l) +); +} +); +width = 606; +}, +{ +anchors = ( +{ +name = bottom; +pos = (354,0); +}, +{ +name = top; +pos = (354,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(251,271,ls), +(251,341,o), +(296,389,o), +(363,389,cs), +(439,389,o), +(457,336,o), +(457,260,cs), +(457,0,l), +(678,0,l), +(678,299,ls), +(678,491,o), +(583,554,o), +(443,554,cs), +(358,554,o), +(288,515,o), +(254,450,c), +(251,450,l), +(243,544,l), +(30,544,l), +(30,0,l) +); +} +); +width = 699; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(122,0,l), +(122,278,ls), +(122,405,o), +(193,491,o), +(300,491,cs), +(396,491,o), +(444,431,o), +(444,298,cs), +(444,0,l), +(479,0,l), +(479,304,ls), +(479,463,o), +(407,525,o), +(305,525,cs), +(228,525,o), +(158,483,o), +(126,404,c), +(122,404,l), +(120,517,l), +(85,517,l), +(85,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 561; +}, +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = top; +pos = (312,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,l), +(243,288,ls), +(243,353,o), +(275,400,o), +(339,400,cs), +(399,400,o), +(423,364,o), +(423,291,cs), +(423,0,l), +(614,0,l), +(614,321,ls), +(614,469,o), +(547,554,o), +(424,554,cs), +(344,554,o), +(280,518,o), +(251,455,c), +(243,455,l), +(220,544,l), +(52,544,l), +(52,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(246,0,l), +(246,313,ls), +(246,363,o), +(276,400,o), +(318,400,cs), +(364,400,o), +(382,366,o), +(382,296,cs), +(382,0,l), +(571,0,l), +(571,333,ls), +(571,494,o), +(495,554,o), +(398,554,cs), +(334,554,o), +(279,521,o), +(256,455,c), +(243,455,l), +(239,544,l), +(56,544,l), +(56,0,l) +); +} +); +width = 624; +}, +{ +anchors = ( +{ +name = bottom; +pos = (135,0); +}, +{ +name = top; +pos = (241,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,0,l), +(100,315,ls), +(123,425,o), +(165,501,o), +(231,501,cs), +(296,501,o), +(308,455,o), +(289,366,cs), +(213,0,l), +(242,0,l), +(319,371,ls), +(337,458,o), +(327,526,o), +(244,526,cs), +(195,526,o), +(153,495,o), +(131,446,c), +(130,446,l), +(140,516,l), +(113,516,l), +(7,0,l) +); +} +); +width = 352; +}, +{ +anchors = ( +{ +name = bottom; +pos = (193,0); +}, +{ +name = top; +pos = (305,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,0,l), +(216,337,ls), +(226,387,o), +(239,417,o), +(267,417,cs), +(293,417,o), +(299,396,o), +(287,340,cs), +(217,0,l), +(391,0,l), +(463,338,ls), +(489,461,o), +(479,551,o), +(363,551,cs), +(318,551,o), +(282,525,o), +(254,485,c), +(247,485,l), +(254,541,l), +(83,541,l), +(-30,0,l) +); +} +); +width = 471; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (352,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(127,293,ls), +(152,415,o), +(238,493,o), +(345,493,cs), +(453,493,o), +(492,419,o), +(465,288,cs), +(405,0,l), +(441,0,l), +(501,291,ls), +(532,440,o), +(474,527,o), +(354,527,cs), +(281,527,o), +(206,493,o), +(158,415,c), +(153,415,l), +(169,517,l), +(139,517,l), +(31,0,l) +); +} +); +width = 568; +}, +{ +anchors = ( +{ +name = bottom; +pos = (277,0); +}, +{ +name = top; +pos = (389,544); +} +); +background = { +shapes = ( +{ +ref = r; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,0,l), +(255,313,ls), +(265,366,o), +(305,401,o), +(350,401,cs), +(404,401,o), +(421,361,o), +(406,292,cs), +(346,0,l), +(537,0,l), +(603,311,ls), +(643,501,o), +(545,554,o), +(460,554,cs), +(394,554,o), +(326,519,o), +(294,467,c), +(286,467,l), +(295,544,l), +(111,544,l), +(-2,0,l) +); +} +); +width = 638; +}, +{ +anchors = ( +{ +name = bottom; +pos = (274,0); +}, +{ +name = top; +pos = (382,517); +} +); +background = { +shapes = ( +{ +ref = r; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(50,0,l), +(107,276,ls), +(135,409,o), +(239,494,o), +(368,494,cs), +(497,494,o), +(567,429,o), +(533,266,cs), +(478,0,l), +(514,0,l), +(570,270,ls), +(605,434,o), +(531,527,o), +(377,527,cs), +(286,527,o), +(195,485,o), +(141,406,c), +(136,406,l), +(156,517,l), +(120,517,l), +(12,0,l) +); +} +); +width = 620; +}, +{ +anchors = ( +{ +name = bottom; +pos = (320,0); +}, +{ +name = top; +pos = (432,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(263,276,ls), +(279,348,o), +(317,389,o), +(390,389,cs), +(450,389,o), +(482,347,o), +(465,261,cs), +(410,0,l), +(630,0,l), +(688,282,ls), +(724,461,o), +(638,554,o), +(491,554,cs), +(421,554,o), +(349,523,o), +(314,478,c), +(306,478,l), +(309,544,l), +(100,544,l), +(-13,0,l) +); +} +); +width = 714; +} +); +unicode = 110; +userData = { +KernOnName = n; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/nacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/nacute.glyph new file mode 100644 index 00000000..eea350f1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/nacute.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = nacute; +kernLeft = KO_n; +kernRight = KO_n; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = n; +}, +{ +pos = (123,-156); +ref = acutecomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = n; +}, +{ +pos = (127,-137); +ref = acutecomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = n; +}, +{ +pos = (261,-155); +ref = acutecomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = n; +}, +{ +pos = (250,-129); +ref = acutecomb; +} +); +width = 722; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = n; +}, +{ +pos = (117,-156); +ref = acutecomb; +} +); +width = 303; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = n; +}, +{ +pos = (124,-137); +ref = acutecomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = n; +}, +{ +pos = (232,-155); +ref = acutecomb; +} +); +width = 530; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = n; +}, +{ +pos = (212,-134); +ref = acutecomb; +} +); +width = 608; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = n; +}, +{ +alignment = -1; +pos = (261,-155); +ref = acutecomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = n; +}, +{ +alignment = -1; +pos = (250,-129); +ref = acutecomb; +} +); +width = 722; +}, +{ +layerId = m019; +shapes = ( +{ +ref = n; +}, +{ +pos = (224,-155); +ref = acutecomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = n; +}, +{ +pos = (202,-134); +ref = acutecomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = n; +}, +{ +pos = (100,-156); +ref = acutecomb; +} +); +width = 352; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = n; +}, +{ +pos = (110,-137); +ref = acutecomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = n; +}, +{ +pos = (210,-155); +ref = acutecomb; +} +); +width = 568; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = n; +}, +{ +pos = (194,-134); +ref = acutecomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = n; +}, +{ +pos = (239,-155); +ref = acutecomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = n; +}, +{ +pos = (232,-129); +ref = acutecomb; +} +); +width = 714; +} +); +unicode = 324; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/nbspace.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/nbspace.glyph new file mode 100644 index 00000000..73f77c49 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/nbspace.glyph @@ -0,0 +1,97 @@ +{ +glyphname = nbspace; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +width = 150; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +width = 239; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +width = 239; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +width = 203; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +width = 199; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +width = 130; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +userData = { +com.schriftgestaltung.Glyphs.glyph.widthMetricsKey = space; +}; +width = 199; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +userData = { +com.schriftgestaltung.Glyphs.glyph.widthMetricsKey = space; +}; +width = 161; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +width = 219; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +width = 183; +}, +{ +layerId = m019; +userData = { +com.schriftgestaltung.Glyphs.glyph.widthMetricsKey = space; +}; +width = 240; +}, +{ +layerId = m020; +userData = { +com.schriftgestaltung.Glyphs.glyph.widthMetricsKey = space; +}; +width = 198; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +width = 237; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +width = 149; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +width = 237; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +width = 201; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +width = 237; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +width = 201; +} +); +metricWidth = space; +unicode = 160; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ncaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ncaron.glyph new file mode 100644 index 00000000..953b5ec8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ncaron.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = ncaron; +kernLeft = KO_n; +kernRight = KO_n; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = n; +}, +{ +pos = (50,-156); +ref = caroncomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = n; +}, +{ +pos = (22,-137); +ref = caroncomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = n; +}, +{ +pos = (140,-155); +ref = caroncomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = n; +}, +{ +pos = (76,-129); +ref = caroncomb; +} +); +width = 722; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = n; +}, +{ +pos = (44,-156); +ref = caroncomb; +} +); +width = 303; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = n; +}, +{ +pos = (19,-137); +ref = caroncomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = n; +}, +{ +pos = (123,-155); +ref = caroncomb; +} +); +width = 530; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = n; +}, +{ +pos = (77,-134); +ref = caroncomb; +} +); +width = 608; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = n; +}, +{ +alignment = -1; +pos = (140,-155); +ref = caroncomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = n; +}, +{ +alignment = -1; +pos = (76,-129); +ref = caroncomb; +} +); +width = 722; +}, +{ +layerId = m019; +shapes = ( +{ +ref = n; +}, +{ +pos = (117,-155); +ref = caroncomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = n; +}, +{ +pos = (73,-134); +ref = caroncomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = n; +}, +{ +pos = (27,-156); +ref = caroncomb; +} +); +width = 352; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = n; +}, +{ +pos = (9,-137); +ref = caroncomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = n; +}, +{ +pos = (101,-155); +ref = caroncomb; +} +); +width = 568; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = n; +}, +{ +pos = (55,-134); +ref = caroncomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = n; +}, +{ +pos = (116,-155); +ref = caroncomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = n; +}, +{ +pos = (58,-129); +ref = caroncomb; +} +); +width = 714; +} +); +unicode = 328; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ncommaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ncommaaccent.glyph new file mode 100644 index 00000000..9b55affc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ncommaaccent.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = ncommaaccent; +kernLeft = KO_n; +kernRight = KO_n; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = n; +}, +{ +pos = (82,0); +ref = commaaccentcomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = n; +}, +{ +pos = (57,0); +ref = commaaccentcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = n; +}, +{ +pos = (218,0); +ref = commaaccentcomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = n; +}, +{ +pos = (183,0); +ref = commaaccentcomb; +} +); +width = 722; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = n; +}, +{ +pos = (76,0); +ref = commaaccentcomb; +} +); +width = 303; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = n; +}, +{ +pos = (54,0); +ref = commaaccentcomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = n; +}, +{ +pos = (181,0); +ref = commaaccentcomb; +} +); +width = 530; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = n; +}, +{ +pos = (154,0); +ref = commaaccentcomb; +} +); +width = 608; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = n; +}, +{ +alignment = -1; +pos = (218,0); +ref = commaaccentcomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = n; +}, +{ +alignment = -1; +pos = (183,0); +ref = commaaccentcomb; +} +); +width = 722; +}, +{ +layerId = m019; +shapes = ( +{ +ref = n; +}, +{ +pos = (173,0); +ref = commaaccentcomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = n; +}, +{ +pos = (149,0); +ref = commaaccentcomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = n; +}, +{ +pos = (92,0); +ref = commaaccentcomb; +} +); +width = 352; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = n; +}, +{ +pos = (69,0); +ref = commaaccentcomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = n; +}, +{ +pos = (192,0); +ref = commaaccentcomb; +} +); +width = 568; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = n; +}, +{ +pos = (162,0); +ref = commaaccentcomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = n; +}, +{ +pos = (226,0); +ref = commaaccentcomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = n; +}, +{ +pos = (197,0); +ref = commaaccentcomb; +} +); +width = 714; +} +); +unicode = 326; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/nine.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.blackC_ircled.glyph new file mode 100644 index 00000000..55ff4576 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.blackC_ircled.glyph @@ -0,0 +1,2850 @@ +{ +color = 0; +glyphname = nine.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,145,o), +(220,194,o), +(220,267,c), +(325,267,l), +(324,249,o), +(334,236,o), +(349,236,cs), +(376,236,o), +(379,271,o), +(377,325,c), +(372,325,l), +(363,303,o), +(339,293,o), +(311,293,cs), +(250,293,o), +(214,350,o), +(214,437,cs), +(214,546,o), +(267,588,o), +(345,588,cs), +(452,588,o), +(492,526,o), +(492,354,cs), +(492,184,o), +(433,145,o), +(347,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,379,o), +(371,400,o), +(371,435,cs), +(371,484,o), +(363,497,o), +(348,497,cs), +(329,497,o), +(324,476,o), +(324,440,cs), +(324,390,o), +(333,379,o), +(347,379,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,145,o), +(223,182,o), +(220,268,c), +(325,268,l), +(325,248,o), +(336,237,o), +(349,237,cs), +(372,237,o), +(379,266,o), +(378,325,c), +(372,325,l), +(365,307,o), +(341,293,o), +(312,293,cs), +(242,293,o), +(214,345,o), +(214,438,cs), +(214,540,o), +(263,588,o), +(349,588,cs), +(464,588,o), +(492,501,o), +(492,371,cs), +(492,192,o), +(434,145,o), +(349,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,379,o), +(372,399,o), +(372,436,cs), +(372,485,o), +(363,497,o), +(349,497,cs), +(329,497,o), +(324,475,o), +(324,440,cs), +(324,391,o), +(333,379,o), +(347,379,cs) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,143,o), +(268,178,o), +(262,252,c), +(290,252,l), +(296,185,o), +(317,169,o), +(347,169,cs), +(403,169,o), +(415,238,o), +(417,378,c), +(414,378,l), +(405,330,o), +(379,302,o), +(340,302,cs), +(276,302,o), +(253,358,o), +(253,442,cs), +(253,551,o), +(290,587,o), +(344,587,cs), +(420,587,o), +(443,518,o), +(445,389,cs), +(448,192,o), +(409,143,o), +(347,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(388,326,o), +(409,373,o), +(409,446,cs), +(409,529,o), +(383,562,o), +(344,562,cs), +(295,562,o), +(283,514,o), +(283,442,cs), +(283,349,o), +(308,326,o), +(345,326,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,144,o), +(268,181,o), +(262,253,c), +(290,253,l), +(296,189,o), +(315,170,o), +(347,170,cs), +(403,170,o), +(415,238,o), +(417,379,c), +(414,379,l), +(404,324,o), +(373,303,o), +(340,303,cs), +(275,303,o), +(253,358,o), +(253,443,cs), +(253,551,o), +(289,588,o), +(345,588,cs), +(422,588,o), +(443,516,o), +(445,392,cs), +(448,197,o), +(410,144,o), +(347,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(389,327,o), +(409,376,o), +(409,447,cs), +(409,530,o), +(383,562,o), +(345,562,cs), +(295,562,o), +(283,514,o), +(283,443,cs), +(283,350,o), +(308,327,o), +(345,327,cs) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(338,142,o), +(276,188,o), +(269,251,c), +(306,251,l), +(314,201,o), +(363,173,o), +(433,173,cs), +(561,173,o), +(591,258,o), +(589,395,c), +(587,395,l), +(566,333,o), +(506,301,o), +(429,301,cs), +(325,301,o), +(259,352,o), +(259,440,cs), +(259,532,o), +(332,584,o), +(437,584,cs), +(571,584,o), +(625,510,o), +(625,379,cs), +(625,210,o), +(558,142,o), +(432,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(527,330,o), +(578,377,o), +(578,444,cs), +(578,514,o), +(522,554,o), +(437,554,cs), +(343,554,o), +(297,508,o), +(297,440,cs), +(297,367,o), +(352,330,o), +(435,330,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(337,139,o), +(274,183,o), +(267,247,c), +(304,247,l), +(312,197,o), +(362,169,o), +(431,169,cs), +(563,169,o), +(588,261,o), +(589,391,c), +(586,392,l), +(568,335,o), +(507,298,o), +(429,298,cs), +(325,298,o), +(259,348,o), +(259,436,cs), +(259,527,o), +(331,581,o), +(438,581,cs), +(573,581,o), +(625,507,o), +(625,387,cs), +(625,213,o), +(560,139,o), +(430,139,cs) +); +}, +{ +closed = 1; +nodes = ( +(524,327,o), +(579,377,o), +(579,441,cs), +(579,514,o), +(521,550,o), +(437,550,cs), +(344,550,o), +(298,505,o), +(298,437,cs), +(298,363,o), +(353,327,o), +(435,327,cs) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(309,143,o), +(238,195,o), +(224,273,c), +(371,273,l), +(382,257,o), +(400,255,o), +(424,255,cs), +(468,255,o), +(495,281,o), +(497,332,c), +(491,334,l), +(471,310,o), +(428,293,o), +(380,293,cs), +(284,293,o), +(219,342,o), +(219,429,cs), +(219,530,o), +(304,586,o), +(429,586,cs), +(539,586,o), +(646,544,o), +(646,368,cs), +(646,202,o), +(542,143,o), +(419,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(465,393,o), +(483,410,o), +(483,434,cs), +(483,462,o), +(460,474,o), +(426,474,cs), +(387,474,o), +(368,459,o), +(368,434,cs), +(368,408,o), +(387,393,o), +(425,393,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,137,o), +(236,189,o), +(222,267,c), +(368,267,l), +(379,253,o), +(394,249,o), +(422,249,cs), +(464,249,o), +(493,273,o), +(495,327,c), +(488,328,l), +(468,304,o), +(427,288,o), +(377,288,cs), +(281,288,o), +(216,337,o), +(216,423,cs), +(216,524,o), +(300,580,o), +(426,580,cs), +(536,580,o), +(644,538,o), +(644,361,cs), +(644,195,o), +(539,137,o), +(417,137,cs) +); +}, +{ +closed = 1; +nodes = ( +(463,388,o), +(480,404,o), +(480,429,cs), +(480,456,o), +(457,469,o), +(423,469,cs), +(384,469,o), +(365,453,o), +(365,429,cs), +(365,402,o), +(385,388,o), +(423,388,cs) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,143,o), +(268,178,o), +(262,252,c), +(290,252,l), +(296,185,o), +(317,169,o), +(347,169,cs), +(403,169,o), +(415,238,o), +(417,378,c), +(414,378,l), +(405,330,o), +(379,302,o), +(340,302,cs), +(276,302,o), +(253,358,o), +(253,442,cs), +(253,551,o), +(290,587,o), +(344,587,cs), +(420,587,o), +(443,518,o), +(445,389,cs), +(448,192,o), +(409,143,o), +(347,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(388,326,o), +(409,373,o), +(409,446,cs), +(409,529,o), +(383,562,o), +(344,562,cs), +(295,562,o), +(283,514,o), +(283,442,cs), +(283,349,o), +(308,326,o), +(345,326,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,144,o), +(248,181,o), +(242,253,c), +(270,253,l), +(276,189,o), +(295,170,o), +(327,170,cs), +(383,170,o), +(395,238,o), +(397,379,c), +(394,379,l), +(384,324,o), +(353,303,o), +(320,303,cs), +(255,303,o), +(233,358,o), +(233,443,cs), +(233,551,o), +(269,588,o), +(325,588,cs), +(402,588,o), +(423,516,o), +(425,392,cs), +(428,197,o), +(390,144,o), +(327,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(369,327,o), +(389,376,o), +(389,447,cs), +(389,530,o), +(363,562,o), +(325,562,cs), +(275,562,o), +(263,514,o), +(263,443,cs), +(263,350,o), +(288,327,o), +(325,327,cs) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,145,o), +(220,194,o), +(220,267,c), +(325,267,l), +(324,249,o), +(334,236,o), +(349,236,cs), +(376,236,o), +(379,271,o), +(377,325,c), +(372,325,l), +(363,303,o), +(339,293,o), +(311,293,cs), +(250,293,o), +(214,350,o), +(214,437,cs), +(214,546,o), +(267,588,o), +(345,588,cs), +(452,588,o), +(492,526,o), +(492,354,cs), +(492,184,o), +(433,145,o), +(347,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,379,o), +(371,400,o), +(371,435,cs), +(371,484,o), +(363,497,o), +(348,497,cs), +(329,497,o), +(324,476,o), +(324,440,cs), +(324,390,o), +(333,379,o), +(347,379,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,145,o), +(213,182,o), +(210,268,c), +(315,268,l), +(315,248,o), +(326,237,o), +(339,237,cs), +(362,237,o), +(369,266,o), +(368,325,c), +(362,325,l), +(355,307,o), +(331,293,o), +(302,293,cs), +(232,293,o), +(204,345,o), +(204,438,cs), +(204,540,o), +(253,588,o), +(339,588,cs), +(454,588,o), +(482,501,o), +(482,371,cs), +(482,192,o), +(424,145,o), +(339,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,379,o), +(362,399,o), +(362,436,cs), +(362,485,o), +(353,497,o), +(339,497,cs), +(319,497,o), +(314,475,o), +(314,440,cs), +(314,391,o), +(323,379,o), +(337,379,cs) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(351,142,o), +(299,185,o), +(293,249,c), +(327,249,l), +(335,198,o), +(373,173,o), +(423,173,cs), +(519,173,o), +(548,249,o), +(550,390,c), +(547,390,l), +(534,341,o), +(488,308,o), +(425,308,cs), +(344,308,o), +(289,363,o), +(289,444,cs), +(289,530,o), +(349,585,o), +(433,585,cs), +(535,585,o), +(583,514,o), +(583,392,cs), +(583,204,o), +(519,142,o), +(423,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(500,337,o), +(541,387,o), +(541,448,cs), +(541,514,o), +(497,554,o), +(432,554,cs), +(368,554,o), +(325,510,o), +(325,444,cs), +(325,378,o), +(369,337,o), +(431,337,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,139,o), +(279,182,o), +(273,246,c), +(307,246,l), +(316,191,o), +(358,169,o), +(407,169,cs), +(509,169,o), +(528,257,o), +(530,387,c), +(528,387,l), +(514,338,o), +(469,305,o), +(405,305,cs), +(324,305,o), +(269,360,o), +(269,441,cs), +(269,527,o), +(329,582,o), +(414,582,cs), +(516,582,o), +(563,510,o), +(563,389,cs), +(563,213,o), +(512,139,o), +(406,139,cs) +); +}, +{ +closed = 1; +nodes = ( +(480,334,o), +(522,383,o), +(522,445,cs), +(522,511,o), +(477,551,o), +(412,551,cs), +(348,551,o), +(305,507,o), +(305,441,cs), +(305,375,o), +(349,334,o), +(411,334,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +296, +66 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +135, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +320, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +616, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +294, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +585, +42 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,143,o), +(257,194,o), +(246,272,c), +(375,272,l), +(380,257,o), +(402,251,o), +(419,251,cs), +(455,251,o), +(481,277,o), +(481,328,c), +(476,328,l), +(460,311,o), +(429,298,o), +(387,298,cs), +(305,298,o), +(251,352,o), +(251,432,cs), +(251,524,o), +(321,587,o), +(421,587,cs), +(529,587,o), +(606,523,o), +(606,363,cs), +(606,229,o), +(538,143,o), +(415,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(449,391,o), +(468,407,o), +(468,433,cs), +(468,458,o), +(450,476,o), +(423,476,cs), +(396,476,o), +(378,459,o), +(378,434,cs), +(378,408,o), +(397,391,o), +(423,391,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,140,o), +(238,191,o), +(227,270,c), +(355,270,l), +(360,256,o), +(381,248,o), +(400,248,cs), +(434,248,o), +(462,273,o), +(462,326,c), +(457,326,l), +(441,309,o), +(410,295,o), +(368,295,cs), +(286,295,o), +(232,350,o), +(232,430,cs), +(232,522,o), +(301,584,o), +(408,584,cs), +(514,584,o), +(587,522,o), +(587,365,cs), +(587,221,o), +(518,140,o), +(398,140,cs) +); +}, +{ +closed = 1; +nodes = ( +(430,389,o), +(448,405,o), +(448,431,cs), +(448,456,o), +(431,474,o), +(404,474,cs), +(377,474,o), +(359,457,o), +(359,432,cs), +(359,407,o), +(377,389,o), +(404,389,cs) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(338,142,o), +(276,188,o), +(269,251,c), +(306,251,l), +(314,201,o), +(363,173,o), +(433,173,cs), +(561,173,o), +(591,258,o), +(589,395,c), +(587,395,l), +(566,333,o), +(506,301,o), +(429,301,cs), +(325,301,o), +(259,352,o), +(259,440,cs), +(259,532,o), +(332,584,o), +(437,584,cs), +(571,584,o), +(625,510,o), +(625,379,cs), +(625,210,o), +(558,142,o), +(432,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(527,330,o), +(578,377,o), +(578,444,cs), +(578,514,o), +(522,554,o), +(437,554,cs), +(343,554,o), +(297,508,o), +(297,440,cs), +(297,367,o), +(352,330,o), +(435,330,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,139,o), +(264,183,o), +(257,247,c), +(294,247,l), +(302,197,o), +(352,169,o), +(421,169,cs), +(553,169,o), +(578,261,o), +(579,391,c), +(576,392,l), +(558,335,o), +(497,298,o), +(419,298,cs), +(315,298,o), +(249,348,o), +(249,436,cs), +(249,527,o), +(321,581,o), +(428,581,cs), +(563,581,o), +(615,507,o), +(615,387,cs), +(615,213,o), +(550,139,o), +(420,139,cs) +); +}, +{ +closed = 1; +nodes = ( +(514,327,o), +(569,377,o), +(569,441,cs), +(569,514,o), +(511,550,o), +(427,550,cs), +(334,550,o), +(288,505,o), +(288,437,cs), +(288,363,o), +(343,327,o), +(425,327,cs) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(309,143,o), +(238,195,o), +(224,273,c), +(371,273,l), +(382,257,o), +(400,255,o), +(424,255,cs), +(468,255,o), +(495,281,o), +(497,332,c), +(491,334,l), +(471,310,o), +(428,293,o), +(380,293,cs), +(284,293,o), +(219,342,o), +(219,429,cs), +(219,530,o), +(304,586,o), +(429,586,cs), +(539,586,o), +(646,544,o), +(646,368,cs), +(646,202,o), +(542,143,o), +(419,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(465,393,o), +(483,410,o), +(483,434,cs), +(483,462,o), +(460,474,o), +(426,474,cs), +(387,474,o), +(368,459,o), +(368,434,cs), +(368,408,o), +(387,393,o), +(425,393,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,137,o), +(226,189,o), +(212,267,c), +(358,267,l), +(369,253,o), +(384,249,o), +(412,249,cs), +(454,249,o), +(483,273,o), +(485,327,c), +(478,328,l), +(458,304,o), +(417,288,o), +(367,288,cs), +(271,288,o), +(206,337,o), +(206,423,cs), +(206,524,o), +(290,580,o), +(416,580,cs), +(526,580,o), +(634,538,o), +(634,361,cs), +(634,195,o), +(529,137,o), +(407,137,cs) +); +}, +{ +closed = 1; +nodes = ( +(453,388,o), +(470,404,o), +(470,429,cs), +(470,456,o), +(447,469,o), +(413,469,cs), +(374,469,o), +(355,453,o), +(355,429,cs), +(355,402,o), +(375,388,o), +(413,388,cs) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(351,142,o), +(299,185,o), +(293,249,c), +(327,249,l), +(335,198,o), +(373,173,o), +(423,173,cs), +(519,173,o), +(548,249,o), +(550,390,c), +(547,390,l), +(534,341,o), +(488,308,o), +(425,308,cs), +(344,308,o), +(289,363,o), +(289,444,cs), +(289,530,o), +(349,585,o), +(433,585,cs), +(535,585,o), +(583,514,o), +(583,392,cs), +(583,204,o), +(519,142,o), +(423,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(500,337,o), +(541,387,o), +(541,448,cs), +(541,514,o), +(497,554,o), +(432,554,cs), +(368,554,o), +(325,510,o), +(325,444,cs), +(325,378,o), +(369,337,o), +(431,337,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,139,o), +(296,182,o), +(290,246,c), +(324,246,l), +(333,191,o), +(373,169,o), +(422,169,cs), +(522,169,o), +(541,257,o), +(542,387,c), +(541,387,l), +(527,338,o), +(482,305,o), +(420,305,cs), +(341,305,o), +(286,360,o), +(286,441,cs), +(286,527,o), +(346,582,o), +(429,582,cs), +(529,582,o), +(574,510,o), +(574,389,cs), +(574,213,o), +(525,139,o), +(421,139,cs) +); +}, +{ +closed = 1; +nodes = ( +(493,334,o), +(535,383,o), +(535,445,cs), +(535,511,o), +(490,551,o), +(427,551,cs), +(363,551,o), +(322,507,o), +(322,441,cs), +(322,375,o), +(364,334,o), +(426,334,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +296, +66 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +135, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +320, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +616, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +294, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +585, +42 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,143,o), +(257,194,o), +(246,272,c), +(375,272,l), +(380,257,o), +(402,251,o), +(419,251,cs), +(455,251,o), +(481,277,o), +(481,328,c), +(476,328,l), +(460,311,o), +(429,298,o), +(387,298,cs), +(305,298,o), +(251,352,o), +(251,432,cs), +(251,524,o), +(321,587,o), +(421,587,cs), +(529,587,o), +(606,523,o), +(606,363,cs), +(606,229,o), +(538,143,o), +(415,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(449,391,o), +(468,407,o), +(468,433,cs), +(468,458,o), +(450,476,o), +(423,476,cs), +(396,476,o), +(378,459,o), +(378,434,cs), +(378,408,o), +(397,391,o), +(423,391,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,140,o), +(252,191,o), +(242,270,c), +(368,270,l), +(373,256,o), +(393,248,o), +(411,248,cs), +(443,248,o), +(470,273,o), +(470,326,c), +(465,326,l), +(449,309,o), +(420,295,o), +(379,295,cs), +(299,295,o), +(247,350,o), +(247,430,cs), +(247,522,o), +(314,584,o), +(419,584,cs), +(522,584,o), +(594,522,o), +(594,365,cs), +(594,222,o), +(527,140,o), +(409,140,cs) +); +}, +{ +closed = 1; +nodes = ( +(440,389,o), +(456,405,o), +(456,431,cs), +(456,456,o), +(441,474,o), +(415,474,cs), +(389,474,o), +(372,457,o), +(372,432,cs), +(372,407,o), +(389,389,o), +(415,389,cs) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,143,o), +(305,178,o), +(299,252,c), +(327,252,l), +(333,185,o), +(354,169,o), +(384,169,cs), +(440,169,o), +(452,238,o), +(454,378,c), +(451,378,l), +(442,330,o), +(416,302,o), +(377,302,cs), +(313,302,o), +(290,358,o), +(290,442,cs), +(290,551,o), +(327,587,o), +(381,587,cs), +(457,587,o), +(480,518,o), +(482,389,cs), +(485,192,o), +(446,143,o), +(384,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,326,o), +(446,373,o), +(446,446,cs), +(446,529,o), +(420,562,o), +(381,562,cs), +(332,562,o), +(320,514,o), +(320,442,cs), +(320,349,o), +(345,326,o), +(382,326,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,144,o), +(305,181,o), +(299,253,c), +(327,253,l), +(333,189,o), +(352,170,o), +(384,170,cs), +(440,170,o), +(452,238,o), +(454,379,c), +(451,379,l), +(441,324,o), +(410,303,o), +(377,303,cs), +(312,303,o), +(290,358,o), +(290,443,cs), +(290,551,o), +(326,588,o), +(382,588,cs), +(459,588,o), +(480,516,o), +(482,392,cs), +(485,197,o), +(447,144,o), +(384,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(426,327,o), +(446,376,o), +(446,447,cs), +(446,530,o), +(420,562,o), +(382,562,cs), +(332,562,o), +(320,514,o), +(320,443,cs), +(320,350,o), +(345,327,o), +(382,327,cs) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,145,o), +(252,194,o), +(252,267,c), +(357,267,l), +(356,249,o), +(366,236,o), +(381,236,cs), +(408,236,o), +(411,271,o), +(409,325,c), +(404,325,l), +(395,303,o), +(371,293,o), +(343,293,cs), +(282,293,o), +(246,350,o), +(246,437,cs), +(246,546,o), +(299,588,o), +(377,588,cs), +(484,588,o), +(524,526,o), +(524,354,cs), +(524,184,o), +(465,145,o), +(379,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(399,379,o), +(403,400,o), +(403,435,cs), +(403,484,o), +(395,497,o), +(380,497,cs), +(361,497,o), +(356,476,o), +(356,440,cs), +(356,390,o), +(365,379,o), +(379,379,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(309,145,o), +(255,182,o), +(252,268,c), +(357,268,l), +(357,248,o), +(368,237,o), +(381,237,cs), +(404,237,o), +(411,266,o), +(410,325,c), +(404,325,l), +(397,307,o), +(373,293,o), +(344,293,cs), +(274,293,o), +(246,345,o), +(246,438,cs), +(246,540,o), +(295,588,o), +(381,588,cs), +(496,588,o), +(524,501,o), +(524,371,cs), +(524,192,o), +(466,145,o), +(381,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(399,379,o), +(404,399,o), +(404,436,cs), +(404,485,o), +(395,497,o), +(381,497,cs), +(361,497,o), +(356,475,o), +(356,440,cs), +(356,391,o), +(365,379,o), +(379,379,cs) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,142,o), +(331,185,o), +(325,249,c), +(359,249,l), +(367,198,o), +(405,173,o), +(455,173,cs), +(551,173,o), +(580,249,o), +(582,390,c), +(579,390,l), +(566,341,o), +(520,308,o), +(457,308,cs), +(376,308,o), +(321,363,o), +(321,444,cs), +(321,530,o), +(381,585,o), +(465,585,cs), +(567,585,o), +(615,514,o), +(615,392,cs), +(615,204,o), +(551,142,o), +(455,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(532,337,o), +(573,387,o), +(573,448,cs), +(573,514,o), +(529,554,o), +(464,554,cs), +(400,554,o), +(357,510,o), +(357,444,cs), +(357,378,o), +(401,337,o), +(463,337,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(384,139,o), +(331,182,o), +(325,246,c), +(359,246,l), +(368,191,o), +(410,169,o), +(459,169,cs), +(561,169,o), +(580,257,o), +(582,387,c), +(580,387,l), +(566,338,o), +(521,305,o), +(457,305,cs), +(376,305,o), +(321,360,o), +(321,441,cs), +(321,527,o), +(381,582,o), +(466,582,cs), +(568,582,o), +(615,510,o), +(615,389,cs), +(615,213,o), +(564,139,o), +(458,139,cs) +); +}, +{ +closed = 1; +nodes = ( +(532,334,o), +(574,383,o), +(574,445,cs), +(574,511,o), +(529,551,o), +(464,551,cs), +(400,551,o), +(357,507,o), +(357,441,cs), +(357,375,o), +(401,334,o), +(463,334,cs) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(347,143,o), +(285,194,o), +(274,272,c), +(403,272,l), +(408,257,o), +(430,251,o), +(447,251,cs), +(483,251,o), +(509,277,o), +(509,328,c), +(504,328,l), +(488,311,o), +(457,298,o), +(415,298,cs), +(333,298,o), +(279,352,o), +(279,432,cs), +(279,524,o), +(349,587,o), +(449,587,cs), +(557,587,o), +(634,523,o), +(634,363,cs), +(634,229,o), +(566,143,o), +(443,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(477,391,o), +(496,407,o), +(496,433,cs), +(496,458,o), +(478,476,o), +(451,476,cs), +(424,476,o), +(406,459,o), +(406,434,cs), +(406,408,o), +(425,391,o), +(451,391,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(349,140,o), +(287,191,o), +(276,270,c), +(404,270,l), +(409,256,o), +(430,248,o), +(449,248,cs), +(483,248,o), +(511,273,o), +(511,326,c), +(506,326,l), +(490,309,o), +(459,295,o), +(417,295,cs), +(335,295,o), +(281,350,o), +(281,430,cs), +(281,522,o), +(350,584,o), +(457,584,cs), +(563,584,o), +(636,522,o), +(636,365,cs), +(636,221,o), +(567,140,o), +(447,140,cs) +); +}, +{ +closed = 1; +nodes = ( +(479,389,o), +(497,405,o), +(497,431,cs), +(497,456,o), +(480,474,o), +(453,474,cs), +(426,474,o), +(408,457,o), +(408,432,cs), +(408,407,o), +(426,389,o), +(453,389,cs) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(369,142,o), +(307,188,o), +(300,251,c), +(337,251,l), +(345,201,o), +(394,173,o), +(464,173,cs), +(592,173,o), +(622,258,o), +(620,395,c), +(618,395,l), +(597,333,o), +(537,301,o), +(460,301,cs), +(356,301,o), +(290,352,o), +(290,440,cs), +(290,532,o), +(363,584,o), +(468,584,cs), +(602,584,o), +(656,510,o), +(656,379,cs), +(656,210,o), +(589,142,o), +(463,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(558,330,o), +(609,377,o), +(609,444,cs), +(609,514,o), +(553,554,o), +(468,554,cs), +(374,554,o), +(328,508,o), +(328,440,cs), +(328,367,o), +(383,330,o), +(466,330,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,139,o), +(305,183,o), +(298,247,c), +(335,247,l), +(343,197,o), +(393,169,o), +(462,169,cs), +(594,169,o), +(619,261,o), +(620,391,c), +(617,392,l), +(599,335,o), +(538,298,o), +(460,298,cs), +(356,298,o), +(290,348,o), +(290,436,cs), +(290,527,o), +(362,581,o), +(469,581,cs), +(604,581,o), +(656,507,o), +(656,387,cs), +(656,213,o), +(591,139,o), +(461,139,cs) +); +}, +{ +closed = 1; +nodes = ( +(555,327,o), +(610,377,o), +(610,441,cs), +(610,514,o), +(552,550,o), +(468,550,cs), +(375,550,o), +(329,505,o), +(329,437,cs), +(329,363,o), +(384,327,o), +(466,327,cs) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(338,143,o), +(267,195,o), +(253,273,c), +(400,273,l), +(411,257,o), +(429,255,o), +(453,255,cs), +(497,255,o), +(524,281,o), +(526,332,c), +(520,334,l), +(500,310,o), +(457,293,o), +(409,293,cs), +(313,293,o), +(248,342,o), +(248,429,cs), +(248,530,o), +(333,586,o), +(458,586,cs), +(568,586,o), +(675,544,o), +(675,368,cs), +(675,202,o), +(571,143,o), +(448,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(494,393,o), +(512,410,o), +(512,434,cs), +(512,462,o), +(489,474,o), +(455,474,cs), +(416,474,o), +(397,459,o), +(397,434,cs), +(397,408,o), +(416,393,o), +(454,393,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(337,137,o), +(265,189,o), +(251,267,c), +(397,267,l), +(408,253,o), +(423,249,o), +(451,249,cs), +(493,249,o), +(522,273,o), +(524,327,c), +(517,328,l), +(497,304,o), +(456,288,o), +(406,288,cs), +(310,288,o), +(245,337,o), +(245,423,cs), +(245,524,o), +(329,580,o), +(455,580,cs), +(565,580,o), +(673,538,o), +(673,361,cs), +(673,195,o), +(568,137,o), +(446,137,cs) +); +}, +{ +closed = 1; +nodes = ( +(492,388,o), +(509,404,o), +(509,429,cs), +(509,456,o), +(486,469,o), +(452,469,cs), +(413,469,o), +(394,453,o), +(394,429,cs), +(394,402,o), +(414,388,o), +(452,388,cs) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 10110; +userData = { +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/nine.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.circled.glyph new file mode 100644 index 00000000..cb743c20 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.circled.glyph @@ -0,0 +1,1899 @@ +{ +color = 0; +glyphname = nine.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,143,o), +(448,192,o), +(445,389,cs), +(443,518,o), +(420,587,o), +(344,587,cs), +(290,587,o), +(253,551,o), +(253,442,cs), +(253,358,o), +(276,302,o), +(340,302,cs), +(379,302,o), +(405,330,o), +(414,378,c), +(417,378,l), +(415,238,o), +(403,169,o), +(347,169,cs), +(317,169,o), +(296,185,o), +(290,252,c), +(262,252,l), +(268,178,o), +(294,143,o), +(347,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,326,o), +(283,349,o), +(283,442,cs), +(283,514,o), +(295,562,o), +(344,562,cs), +(383,562,o), +(409,529,o), +(409,446,cs), +(409,373,o), +(388,326,o), +(345,326,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +pos = (492,542); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(433,145,o), +(492,184,o), +(492,354,cs), +(492,526,o), +(452,588,o), +(345,588,cs), +(267,588,o), +(214,546,o), +(214,437,cs), +(214,350,o), +(250,293,o), +(311,293,cs), +(339,293,o), +(363,303,o), +(372,325,c), +(377,325,l), +(379,271,o), +(376,236,o), +(349,236,cs), +(334,236,o), +(324,249,o), +(325,267,c), +(220,267,l), +(220,194,o), +(261,145,o), +(347,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(333,379,o), +(324,390,o), +(324,440,cs), +(324,476,o), +(329,497,o), +(348,497,cs), +(363,497,o), +(371,484,o), +(371,435,cs), +(371,400,o), +(367,379,o), +(347,379,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +pos = (507,543); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(558,142,o), +(625,210,o), +(625,379,cs), +(625,510,o), +(571,584,o), +(437,584,cs), +(332,584,o), +(259,532,o), +(259,440,cs), +(259,352,o), +(325,301,o), +(429,301,cs), +(506,301,o), +(566,333,o), +(587,395,c), +(589,395,l), +(591,258,o), +(561,173,o), +(433,173,cs), +(363,173,o), +(314,201,o), +(306,251,c), +(269,251,l), +(276,188,o), +(338,142,o), +(432,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(352,330,o), +(297,367,o), +(297,440,cs), +(297,508,o), +(343,554,o), +(437,554,cs), +(522,554,o), +(578,514,o), +(578,444,cs), +(578,377,o), +(527,330,o), +(435,330,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +pos = (668,536); +ref = sixinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(542,143,o), +(646,202,o), +(646,368,cs), +(646,544,o), +(539,586,o), +(429,586,cs), +(304,586,o), +(219,530,o), +(219,429,cs), +(219,342,o), +(284,293,o), +(380,293,cs), +(428,293,o), +(471,310,o), +(491,334,c), +(497,332,l), +(495,281,o), +(468,255,o), +(424,255,cs), +(400,255,o), +(382,257,o), +(371,273,c), +(224,273,l), +(238,195,o), +(309,143,o), +(419,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(387,393,o), +(368,408,o), +(368,434,cs), +(368,459,o), +(387,474,o), +(426,474,cs), +(460,474,o), +(483,462,o), +(483,434,cs), +(483,410,o), +(465,393,o), +(425,393,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +pos = (661,535); +ref = sixinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,143,o), +(448,192,o), +(445,389,cs), +(443,518,o), +(420,587,o), +(344,587,cs), +(290,587,o), +(253,551,o), +(253,442,cs), +(253,358,o), +(276,302,o), +(340,302,cs), +(379,302,o), +(405,330,o), +(414,378,c), +(417,378,l), +(415,238,o), +(403,169,o), +(347,169,cs), +(317,169,o), +(296,185,o), +(290,252,c), +(262,252,l), +(268,178,o), +(294,143,o), +(347,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,326,o), +(283,349,o), +(283,442,cs), +(283,514,o), +(295,562,o), +(344,562,cs), +(383,562,o), +(409,529,o), +(409,446,cs), +(409,373,o), +(388,326,o), +(345,326,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +angle = 180; +pos = (492,542); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(433,145,o), +(492,184,o), +(492,354,cs), +(492,526,o), +(452,588,o), +(345,588,cs), +(267,588,o), +(214,546,o), +(214,437,cs), +(214,350,o), +(250,293,o), +(311,293,cs), +(339,293,o), +(363,303,o), +(372,325,c), +(377,325,l), +(379,271,o), +(376,236,o), +(349,236,cs), +(334,236,o), +(324,249,o), +(325,267,c), +(220,267,l), +(220,194,o), +(261,145,o), +(347,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(333,379,o), +(324,390,o), +(324,440,cs), +(324,476,o), +(329,497,o), +(348,497,cs), +(363,497,o), +(371,484,o), +(371,435,cs), +(371,400,o), +(367,379,o), +(347,379,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +pos = (488,543); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,142,o), +(583,204,o), +(583,392,cs), +(583,514,o), +(535,585,o), +(433,585,cs), +(349,585,o), +(289,530,o), +(289,444,cs), +(289,363,o), +(344,308,o), +(425,308,cs), +(488,308,o), +(534,341,o), +(547,390,c), +(550,390,l), +(548,249,o), +(519,173,o), +(423,173,cs), +(373,173,o), +(335,198,o), +(327,249,c), +(293,249,l), +(299,185,o), +(351,142,o), +(423,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(369,337,o), +(325,378,o), +(325,444,cs), +(325,510,o), +(368,554,o), +(432,554,cs), +(497,554,o), +(541,514,o), +(541,448,cs), +(541,387,o), +(500,337,o), +(431,337,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +angle = 180; +pos = (646,537); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 871; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(538,143,o), +(606,229,o), +(606,363,cs), +(606,523,o), +(529,587,o), +(421,587,cs), +(321,587,o), +(251,524,o), +(251,432,cs), +(251,352,o), +(305,298,o), +(387,298,cs), +(429,298,o), +(460,311,o), +(476,328,c), +(481,328,l), +(481,277,o), +(455,251,o), +(419,251,cs), +(402,251,o), +(380,257,o), +(375,272,c), +(246,272,l), +(257,194,o), +(319,143,o), +(415,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(397,391,o), +(378,408,o), +(378,434,cs), +(378,459,o), +(396,476,o), +(423,476,cs), +(450,476,o), +(468,458,o), +(468,433,cs), +(468,407,o), +(449,391,o), +(423,391,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +angle = 180; +pos = (619,539); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 835; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(558,142,o), +(625,210,o), +(625,379,cs), +(625,510,o), +(571,584,o), +(437,584,cs), +(332,584,o), +(259,532,o), +(259,440,cs), +(259,352,o), +(325,301,o), +(429,301,cs), +(506,301,o), +(566,333,o), +(587,395,c), +(589,395,l), +(591,258,o), +(561,173,o), +(433,173,cs), +(363,173,o), +(314,201,o), +(306,251,c), +(269,251,l), +(276,188,o), +(338,142,o), +(432,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(352,330,o), +(297,367,o), +(297,440,cs), +(297,508,o), +(343,554,o), +(437,554,cs), +(522,554,o), +(578,514,o), +(578,444,cs), +(578,377,o), +(527,330,o), +(435,330,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +angle = 180; +pos = (668,536); +ref = sixinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(542,143,o), +(646,202,o), +(646,368,cs), +(646,544,o), +(539,586,o), +(429,586,cs), +(304,586,o), +(219,530,o), +(219,429,cs), +(219,342,o), +(284,293,o), +(380,293,cs), +(428,293,o), +(471,310,o), +(491,334,c), +(497,332,l), +(495,281,o), +(468,255,o), +(424,255,cs), +(400,255,o), +(382,257,o), +(371,273,c), +(224,273,l), +(238,195,o), +(309,143,o), +(419,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(387,393,o), +(368,408,o), +(368,434,cs), +(368,459,o), +(387,474,o), +(426,474,cs), +(460,474,o), +(483,462,o), +(483,434,cs), +(483,410,o), +(465,393,o), +(425,393,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +angle = 180; +pos = (661,535); +ref = sixinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,142,o), +(583,204,o), +(583,392,cs), +(583,514,o), +(535,585,o), +(433,585,cs), +(349,585,o), +(289,530,o), +(289,444,cs), +(289,363,o), +(344,308,o), +(425,308,cs), +(488,308,o), +(534,341,o), +(547,390,c), +(550,390,l), +(548,249,o), +(519,173,o), +(423,173,cs), +(373,173,o), +(335,198,o), +(327,249,c), +(293,249,l), +(299,185,o), +(351,142,o), +(423,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(369,337,o), +(325,378,o), +(325,444,cs), +(325,510,o), +(368,554,o), +(432,554,cs), +(497,554,o), +(541,514,o), +(541,448,cs), +(541,387,o), +(500,337,o), +(431,337,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +pos = (640,537); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(538,143,o), +(606,229,o), +(606,363,cs), +(606,523,o), +(529,587,o), +(421,587,cs), +(321,587,o), +(251,524,o), +(251,432,cs), +(251,352,o), +(305,298,o), +(387,298,cs), +(429,298,o), +(460,311,o), +(476,328,c), +(481,328,l), +(481,277,o), +(455,251,o), +(419,251,cs), +(402,251,o), +(380,257,o), +(375,272,c), +(246,272,l), +(257,194,o), +(319,143,o), +(415,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(397,391,o), +(378,408,o), +(378,434,cs), +(378,459,o), +(396,476,o), +(423,476,cs), +(450,476,o), +(468,458,o), +(468,433,cs), +(468,407,o), +(449,391,o), +(423,391,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +pos = (621,539); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,143,o), +(485,192,o), +(482,389,cs), +(480,518,o), +(457,587,o), +(381,587,cs), +(327,587,o), +(290,551,o), +(290,442,cs), +(290,358,o), +(313,302,o), +(377,302,cs), +(416,302,o), +(442,330,o), +(451,378,c), +(454,378,l), +(452,238,o), +(440,169,o), +(384,169,cs), +(354,169,o), +(333,185,o), +(327,252,c), +(299,252,l), +(305,178,o), +(331,143,o), +(384,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,326,o), +(320,349,o), +(320,442,cs), +(320,514,o), +(332,562,o), +(381,562,cs), +(420,562,o), +(446,529,o), +(446,446,cs), +(446,373,o), +(425,326,o), +(382,326,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (529,542); +ref = sixinferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(465,145,o), +(524,184,o), +(524,354,cs), +(524,526,o), +(484,588,o), +(377,588,cs), +(299,588,o), +(246,546,o), +(246,437,cs), +(246,350,o), +(282,293,o), +(343,293,cs), +(371,293,o), +(395,303,o), +(404,325,c), +(409,325,l), +(411,271,o), +(408,236,o), +(381,236,cs), +(366,236,o), +(356,249,o), +(357,267,c), +(252,267,l), +(252,194,o), +(293,145,o), +(379,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,379,o), +(356,390,o), +(356,440,cs), +(356,476,o), +(361,497,o), +(380,497,cs), +(395,497,o), +(403,484,o), +(403,435,cs), +(403,400,o), +(399,379,o), +(379,379,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (539,543); +ref = sixinferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(551,142,o), +(615,204,o), +(615,392,cs), +(615,514,o), +(567,585,o), +(465,585,cs), +(381,585,o), +(321,530,o), +(321,444,cs), +(321,363,o), +(376,308,o), +(457,308,cs), +(520,308,o), +(566,341,o), +(579,390,c), +(582,390,l), +(580,249,o), +(551,173,o), +(455,173,cs), +(405,173,o), +(367,198,o), +(359,249,c), +(325,249,l), +(331,185,o), +(383,142,o), +(455,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(401,337,o), +(357,378,o), +(357,444,cs), +(357,510,o), +(400,554,o), +(464,554,cs), +(529,554,o), +(573,514,o), +(573,448,cs), +(573,387,o), +(532,337,o), +(463,337,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +masterId = master01; +pos = (668,540); +ref = sixinferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(566,143,o), +(634,229,o), +(634,363,cs), +(634,523,o), +(557,587,o), +(449,587,cs), +(349,587,o), +(279,524,o), +(279,432,cs), +(279,352,o), +(333,298,o), +(415,298,cs), +(457,298,o), +(488,311,o), +(504,328,c), +(509,328,l), +(509,277,o), +(483,251,o), +(447,251,cs), +(430,251,o), +(408,257,o), +(403,272,c), +(274,272,l), +(285,194,o), +(347,143,o), +(443,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,391,o), +(406,408,o), +(406,434,cs), +(406,459,o), +(424,476,o), +(451,476,cs), +(478,476,o), +(496,458,o), +(496,433,cs), +(496,407,o), +(477,391,o), +(451,391,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (652,542); +ref = sixinferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(589,142,o), +(656,210,o), +(656,379,cs), +(656,510,o), +(602,584,o), +(468,584,cs), +(363,584,o), +(290,532,o), +(290,440,cs), +(290,352,o), +(356,301,o), +(460,301,cs), +(537,301,o), +(597,333,o), +(618,395,c), +(620,395,l), +(622,258,o), +(592,173,o), +(464,173,cs), +(394,173,o), +(345,201,o), +(337,251,c), +(300,251,l), +(307,188,o), +(369,142,o), +(463,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,330,o), +(328,367,o), +(328,440,cs), +(328,508,o), +(374,554,o), +(468,554,cs), +(553,554,o), +(609,514,o), +(609,444,cs), +(609,377,o), +(558,330,o), +(466,330,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (699,536); +ref = sixinferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,143,o), +(675,202,o), +(675,368,cs), +(675,544,o), +(568,586,o), +(458,586,cs), +(333,586,o), +(248,530,o), +(248,429,cs), +(248,342,o), +(313,293,o), +(409,293,cs), +(457,293,o), +(500,310,o), +(520,334,c), +(526,332,l), +(524,281,o), +(497,255,o), +(453,255,cs), +(429,255,o), +(411,257,o), +(400,273,c), +(253,273,l), +(267,195,o), +(338,143,o), +(448,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(416,393,o), +(397,408,o), +(397,434,cs), +(397,459,o), +(416,474,o), +(455,474,cs), +(489,474,o), +(512,462,o), +(512,434,cs), +(512,410,o), +(494,393,o), +(454,393,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (690,535); +ref = sixinferior; +} +); +width = 880; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9320; +userData = { +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/nine.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.dnom.glyph new file mode 100644 index 00000000..35322340 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.dnom.glyph @@ -0,0 +1,506 @@ +{ +color = 6; +glyphname = nine.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +angle = 180; +pos = (277,375); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 277; +}, +{ +background = { +shapes = ( +{ +angle = 180; +pos = (218,397); +ref = six.dnom; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +angle = 180; +pos = (268,397); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 268; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +angle = 180; +pos = (418,397); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 418; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +angle = 180; +pos = (416,375); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 416; +}, +{ +background = { +shapes = ( +{ +angle = 180; +pos = (218,397); +ref = six.dnom; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (268,397); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 268; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +angle = 180; +pos = (259,375); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 259; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (396,398); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 396; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (366,375); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 366; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (418,397); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 418; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (416,375); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 416; +}, +{ +layerId = m019; +shapes = ( +{ +angle = 180; +pos = (393,398); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 393; +}, +{ +layerId = m020; +shapes = ( +{ +angle = 180; +pos = (369,375); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 369; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +angle = 180; +pos = (241,395); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 266; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +angle = 180; +pos = (240,374); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 275; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +angle = 180; +pos = (372,395); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 397; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +angle = 180; +pos = (347,374); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 382; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +angle = 180; +pos = (399,395); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 424; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +angle = 180; +pos = (380,373); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 415; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/nine.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.glyph new file mode 100644 index 00000000..ded3d7fe --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.glyph @@ -0,0 +1,777 @@ +{ +color = 6; +glyphname = nine; +kernLeft = KO_nine; +kernRight = KO_zero; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +angle = 180; +pos = (495,729); +ref = six; +} +); +width = 495; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (395,729); +ref = six; +} +); +width = 395; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +angle = 180; +pos = (681,729); +ref = six; +} +); +width = 681; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(566,-9,o), +(720,104,o), +(720,367,cs), +(720,652,o), +(549,730,o), +(364,730,cs), +(161,730,o), +(22,638,o), +(22,469,cs), +(22,337,o), +(119,244,o), +(296,244,cs), +(384,244,o), +(460,276,o), +(487,324,c), +(497,322,l), +(502,211,o), +(445,159,o), +(358,159,cs), +(307,159,o), +(268,167,o), +(250,204,c), +(31,204,l), +(58,58,o), +(184,-9,o), +(360,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,394,o), +(244,423,o), +(244,479,cs), +(244,530,o), +(282,563,o), +(360,563,cs), +(429,563,o), +(475,536,o), +(475,480,cs), +(475,429,o), +(437,394,o), +(358,394,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +angle = 180; +pos = (734,729); +ref = six; +} +); +width = 734; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (390,726); +ref = six; +} +); +width = 390; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +angle = 180; +pos = (471,729); +ref = six; +} +); +width = 471; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (596,728); +ref = six; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 596; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(507,-9,o), +(617,118,o), +(617,365,cs), +(617,621,o), +(501,730,o), +(326,730,cs), +(160,730,o), +(48,639,o), +(48,477,cs), +(48,334,o), +(138,238,o), +(274,238,cs), +(338,238,o), +(389,260,o), +(414,294,c), +(422,294,l), +(425,199,o), +(384,155,o), +(320,155,cs), +(281,155,o), +(249,171,o), +(240,195,c), +(53,195,l), +(67,73,o), +(164,-9,o), +(319,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,379,o), +(237,415,o), +(237,472,cs), +(237,529,o), +(270,565,o), +(323,565,cs), +(376,565,o), +(409,529,o), +(409,472,cs), +(409,415,o), +(376,379,o), +(323,379,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (622,727); +ref = six; +} +); +width = 622; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (673,727); +ref = six; +} +); +width = 673; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(566,-9,o), +(720,104,o), +(720,367,cs), +(720,652,o), +(549,730,o), +(364,730,cs), +(161,730,o), +(22,638,o), +(22,469,cs), +(22,337,o), +(119,244,o), +(296,244,cs), +(384,244,o), +(460,276,o), +(487,324,c), +(497,322,l), +(502,211,o), +(445,159,o), +(358,159,cs), +(307,159,o), +(268,167,o), +(250,204,c), +(31,204,l), +(58,58,o), +(184,-9,o), +(360,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,394,o), +(244,423,o), +(244,479,cs), +(244,530,o), +(282,563,o), +(360,563,cs), +(429,563,o), +(475,536,o), +(475,480,cs), +(475,429,o), +(437,394,o), +(358,394,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (725,727); +ref = six; +} +); +width = 725; +}, +{ +layerId = m019; +shapes = ( +{ +angle = 180; +pos = (605,729); +ref = six; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 605; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(507,-9,o), +(617,118,o), +(617,365,cs), +(617,621,o), +(501,730,o), +(326,730,cs), +(160,730,o), +(48,639,o), +(48,477,cs), +(48,334,o), +(138,238,o), +(274,238,cs), +(338,238,o), +(389,260,o), +(414,294,c), +(422,294,l), +(425,199,o), +(384,155,o), +(320,155,cs), +(281,155,o), +(249,171,o), +(240,195,c), +(53,195,l), +(67,73,o), +(164,-9,o), +(319,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,379,o), +(237,415,o), +(237,472,cs), +(237,529,o), +(270,565,o), +(323,565,cs), +(376,565,o), +(409,529,o), +(409,472,cs), +(409,415,o), +(376,379,o), +(323,379,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +angle = 180; +pos = (649,729); +ref = six; +} +); +width = 649; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +angle = 180; +pos = (432,729); +ref = six; +} +); +width = 388; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +angle = 180; +pos = (531,729); +ref = six; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(433,-10,o), +(558,162,o), +(558,462,cs), +(558,630,o), +(486,729,o), +(338,729,cs), +(191,729,o), +(98,614,o), +(98,476,cs), +(98,351,o), +(184,268,o), +(300,268,cs), +(399,268,o), +(485,318,o), +(520,408,c), +(524,408,l), +(506,162,o), +(403,24,o), +(245,24,cs), +(154,24,o), +(88,73,o), +(79,161,c), +(41,161,l), +(54,58,o), +(129,-10,o), +(246,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,302,o), +(137,371,o), +(137,476,cs), +(137,607,o), +(219,695,o), +(343,695,cs), +(445,695,o), +(513,628,o), +(513,510,cs), +(513,388,o), +(430,302,o), +(307,302,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +angle = 180; +pos = (657,729); +ref = six; +} +); +width = 613; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(511,-8,o), +(613,147,o), +(638,359,cs), +(664,580,o), +(585,729,o), +(386,729,cs), +(239,729,o), +(126,645,o), +(104,496,cs), +(83,344,o), +(165,243,o), +(296,243,cs), +(347,243,o), +(399,257,o), +(429,288,c), +(436,285,l), +(420,202,o), +(376,154,o), +(314,154,cs), +(270,154,o), +(242,173,o), +(237,206,c), +(49,206,l), +(57,78,o), +(157,-8,o), +(298,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,377,o), +(282,423,o), +(291,481,cs), +(299,533,o), +(331,567,o), +(382,567,cs), +(437,567,o), +(459,521,o), +(450,463,cs), +(442,411,o), +(410,377,o), +(359,377,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +angle = 180; +pos = (686,729); +ref = six; +} +); +width = 648; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(532,-10,o), +(685,141,o), +(695,440,cs), +(700,624,o), +(601,729,o), +(402,729,cs), +(221,729,o), +(103,627,o), +(103,474,cs), +(103,335,o), +(210,255,o), +(366,255,cs), +(493,255,o), +(609,308,o), +(652,408,c), +(655,408,l), +(639,179,o), +(528,24,o), +(315,24,cs), +(193,24,o), +(103,87,o), +(89,182,c), +(53,183,l), +(67,67,o), +(171,-10,o), +(314,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,287,o), +(142,353,o), +(142,475,cs), +(142,612,o), +(241,695,o), +(404,695,cs), +(552,695,o), +(649,619,o), +(649,502,cs), +(649,377,o), +(537,287,o), +(373,287,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +angle = 180; +pos = (744,729); +ref = six; +} +); +width = 700; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(567,-10,o), +(716,140,o), +(725,412,cs), +(733,624,o), +(602,729,o), +(400,729,cs), +(198,729,o), +(57,633,o), +(51,467,cs), +(46,334,o), +(145,246,o), +(318,246,cs), +(388,246,o), +(455,265,o), +(480,292,c), +(489,289,l), +(475,205,o), +(412,158,o), +(329,158,cs), +(268,158,o), +(225,178,o), +(218,212,c), +(4,213,l), +(17,80,o), +(105,-10,o), +(330,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,391,o), +(269,423,o), +(271,470,cs), +(273,535,o), +(323,562,o), +(396,562,cs), +(459,562,o), +(502,533,o), +(500,482,cs), +(498,425,o), +(456,391,o), +(375,391,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +angle = 180; +pos = (770,729); +ref = six; +} +); +width = 732; +} +); +unicode = 57; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/nine.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.numr.glyph new file mode 100644 index 00000000..a80add76 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.numr.glyph @@ -0,0 +1,478 @@ +{ +color = 6; +glyphname = nine.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 277; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 268; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 418; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 416; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 268; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 259; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,332); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nine.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nine.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 396; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nine.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nine.dnom; +}; +width = 366; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 418; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 416; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nine.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nine.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 393; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nine.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nine.dnom; +}; +width = 369; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 266; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 275; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 397; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 382; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 424; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 415; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/nine.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.tf.glyph new file mode 100644 index 00000000..2c40be36 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/nine.tf.glyph @@ -0,0 +1,485 @@ +{ +color = 6; +glyphname = nine.tf; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (480,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (480,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (720,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (720,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (480,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (464,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (600,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 600; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (578,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 578; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (720,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (720,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (593,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (581,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (524,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (519,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (644,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 85; +}; +}; +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (638,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (764,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (758,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +keepStroke = 80; +monoWidth = 700; +}; +}; +width = 720; +} +); +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/nineinferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/nineinferior.glyph new file mode 100644 index 00000000..c067da6a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/nineinferior.glyph @@ -0,0 +1,590 @@ +{ +color = 6; +glyphname = nineinferior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +Width = 1; +Weight = 2; +Slant = 2; +}; +shapes = ( +{ +angle = 180; +pos = (307,353); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 307; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +Width = 1; +Weight = 1; +Slant = 2; +}; +shapes = ( +{ +angle = 180; +pos = (281,352); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 281; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +Width = 2; +Weight = 1; +Slant = 2; +}; +shapes = ( +{ +angle = 180; +pos = (447,352); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 447; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +Width = 2; +Weight = 2; +Slant = 2; +}; +shapes = ( +{ +angle = 180; +pos = (461,353); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 461; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +partSelection = { +Width = 1; +Weight = 1; +Slant = 2; +}; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (281,352); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 281; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +partSelection = { +Width = 1; +Weight = 2; +Slant = 2; +}; +shapes = ( +{ +angle = 180; +pos = (289,353); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 289; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +partSelection = { +Weight = 1; +Slant = 2; +}; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (417,353); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 417; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +partSelection = { +Weight = 2; +Slant = 2; +}; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (400,354); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 400; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +partSelection = { +Width = 2; +Weight = 1; +Slant = 2; +}; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (447,352); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 447; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +partSelection = { +Width = 2; +Weight = 2; +Slant = 2; +}; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (461,353); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 461; +}, +{ +layerId = m019; +partSelection = { +Weight = 1; +Slant = 2; +}; +shapes = ( +{ +angle = 180; +pos = (414,353); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 414; +}, +{ +layerId = m020; +partSelection = { +Weight = 2; +Slant = 2; +}; +shapes = ( +{ +angle = 180; +pos = (403,354); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 403; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +partSelection = { +Width = 1; +Weight = 1; +Slant = 1; +}; +shapes = ( +{ +angle = 180; +pos = (245,351); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 279; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +partSelection = { +Width = 1; +Weight = 2; +Slant = 1; +}; +shapes = ( +{ +angle = 180; +pos = (265,352); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 304; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +partSelection = { +Weight = 1; +Slant = 1; +}; +shapes = ( +{ +angle = 180; +pos = (383,351); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 417; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +partSelection = { +Weight = 2; +Slant = 1; +}; +shapes = ( +{ +angle = 180; +pos = (377,351); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 417; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +partSelection = { +Width = 2; +Weight = 1; +Slant = 1; +}; +shapes = ( +{ +angle = 180; +pos = (418,351); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 452; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +partSelection = { +Width = 2; +Weight = 2; +Slant = 1; +}; +shapes = ( +{ +angle = 180; +pos = (416,350); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 456; +} +); +partsSettings = ( +{ +bottomValue = 75; +name = Width; +topValue = 125; +}, +{ +bottomValue = 200; +name = Weight; +topValue = 900; +}, +{ +bottomValue = -12; +name = Slant; +topValue = 0; +} +); +unicode = 8329; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ninesuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ninesuperior.glyph new file mode 100644 index 00000000..4e686561 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ninesuperior.glyph @@ -0,0 +1,480 @@ +{ +color = 6; +glyphname = ninesuperior; +kernLeft = KO_ninesuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 307; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 281; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 447; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 461; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 281; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 289; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nineinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nineinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 417; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nineinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nineinferior; +}; +width = 400; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 447; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 461; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nineinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nineinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 414; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nineinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nineinferior; +}; +width = 403; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 279; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 304; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 417; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 417; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 452; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 456; +} +); +unicode = 8313; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/notequal.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/notequal.glyph new file mode 100644 index 00000000..2b584dd8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/notequal.glyph @@ -0,0 +1,651 @@ +{ +color = 0; +glyphname = notequal; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,101,l), +(406,630,l), +(275,630,l), +(74,101,l) +); +}, +{ +closed = 1; +nodes = ( +(462,171,l), +(462,311,l), +(18,311,l), +(18,171,l) +); +}, +{ +closed = 1; +nodes = ( +(462,411,l), +(462,551,l), +(18,551,l), +(18,411,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,101,l), +(356,630,l), +(325,630,l), +(124,101,l) +); +}, +{ +closed = 1; +nodes = ( +(433,247,l), +(433,275,l), +(47,275,l), +(47,247,l) +); +}, +{ +closed = 1; +nodes = ( +(433,447,l), +(433,475,l), +(47,475,l), +(47,447,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,101,l), +(500,630,l), +(465,630,l), +(220,101,l) +); +}, +{ +closed = 1; +nodes = ( +(607,227,l), +(607,259,l), +(112,259,l), +(112,227,l) +); +}, +{ +closed = 1; +nodes = ( +(607,464,l), +(607,496,l), +(112,496,l), +(112,464,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,51,l), +(566,680,l), +(446,680,l), +(155,51,l) +); +}, +{ +closed = 1; +nodes = ( +(611,137,l), +(611,311,l), +(110,311,l), +(110,137,l) +); +}, +{ +closed = 1; +nodes = ( +(611,411,l), +(611,585,l), +(110,585,l), +(110,411,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,101,l), +(336,630,l), +(305,630,l), +(104,101,l) +); +}, +{ +closed = 1; +nodes = ( +(413,247,l), +(413,275,l), +(27,275,l), +(27,247,l) +); +}, +{ +closed = 1; +nodes = ( +(413,447,l), +(413,475,l), +(27,475,l), +(27,447,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,101,l), +(396,630,l), +(265,630,l), +(64,101,l) +); +}, +{ +closed = 1; +nodes = ( +(452,171,l), +(452,311,l), +(8,311,l), +(8,171,l) +); +}, +{ +closed = 1; +nodes = ( +(452,411,l), +(452,551,l), +(8,551,l), +(8,411,l) +); +} +); +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,101,l), +(420,630,l), +(385,630,l), +(140,101,l) +); +}, +{ +closed = 1; +nodes = ( +(519,235,l), +(519,267,l), +(41,267,l), +(41,235,l) +); +}, +{ +closed = 1; +nodes = ( +(519,455,l), +(519,487,l), +(41,487,l), +(41,455,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-2, +-2 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +-2, +-2 +); +stem = -2; +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,101,l), +(458,630,l), +(339,630,l), +(94,101,l) +); +}, +{ +closed = 1; +nodes = ( +(513,166,l), +(513,315,l), +(40,315,l), +(40,166,l) +); +}, +{ +closed = 1; +nodes = ( +(513,406,l), +(513,555,l), +(40,555,l), +(40,406,l) +); +} +); +width = 552; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,101,l), +(490,630,l), +(455,630,l), +(210,101,l) +); +}, +{ +closed = 1; +nodes = ( +(597,227,l), +(597,259,l), +(102,259,l), +(102,227,l) +); +}, +{ +closed = 1; +nodes = ( +(597,464,l), +(597,496,l), +(102,496,l), +(102,464,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,51,l), +(556,680,l), +(436,680,l), +(145,51,l) +); +}, +{ +closed = 1; +nodes = ( +(601,137,l), +(601,311,l), +(100,311,l), +(100,137,l) +); +}, +{ +closed = 1; +nodes = ( +(601,411,l), +(601,585,l), +(100,585,l), +(100,411,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(196,101,l), +(435,630,l), +(400,630,l), +(159,101,l) +); +}, +{ +closed = 1; +nodes = ( +(532,235,l), +(532,267,l), +(62,267,l), +(62,235,l) +); +}, +{ +closed = 1; +nodes = ( +(532,455,l), +(532,487,l), +(62,487,l), +(62,455,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-2, +-2 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +-2, +-2 +); +stem = -2; +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(233,101,l), +(468,630,l), +(351,630,l), +(114,101,l) +); +}, +{ +closed = 1; +nodes = ( +(521,166,l), +(521,315,l), +(62,315,l), +(62,166,l) +); +}, +{ +closed = 1; +nodes = ( +(521,406,l), +(521,555,l), +(62,555,l), +(62,406,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(124,100,l), +(433,630,l), +(402,630,l), +(92,100,l) +); +}, +{ +closed = 1; +nodes = ( +(429,247,l), +(435,275,l), +(53,275,l), +(47,247,l) +); +}, +{ +closed = 1; +nodes = ( +(471,447,l), +(477,475,l), +(95,475,l), +(89,447,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,100,l), +(473,630,l), +(352,630,l), +(42,100,l) +); +}, +{ +closed = 1; +nodes = ( +(438,171,l), +(467,311,l), +(28,311,l), +(-2,171,l) +); +}, +{ +closed = 1; +nodes = ( +(488,411,l), +(517,551,l), +(78,551,l), +(48,411,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,101,l), +(517,629,l), +(478,629,l), +(125,101,l) +); +}, +{ +closed = 1; +nodes = ( +(531,235,l), +(538,267,l), +(65,267,l), +(57,235,l) +); +}, +{ +closed = 1; +nodes = ( +(577,455,l), +(583,487,l), +(110,487,l), +(104,455,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,101,l), +(555,629,l), +(435,629,l), +(82,101,l) +); +}, +{ +closed = 1; +nodes = ( +(512,166,l), +(543,315,l), +(75,315,l), +(44,166,l) +); +}, +{ +closed = 1; +nodes = ( +(562,406,l), +(594,555,l), +(126,555,l), +(94,406,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,101,l), +(576,629,l), +(537,629,l), +(184,101,l) +); +}, +{ +closed = 1; +nodes = ( +(597,227,l), +(604,259,l), +(114,259,l), +(107,227,l) +); +}, +{ +closed = 1; +nodes = ( +(647,464,l), +(653,496,l), +(163,496,l), +(157,464,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,102,l), +(616,630,l), +(495,630,l), +(142,102,l) +); +}, +{ +closed = 1; +nodes = ( +(579,137,l), +(616,311,l), +(120,311,l), +(83,137,l) +); +}, +{ +closed = 1; +nodes = ( +(636,411,l), +(673,585,l), +(177,585,l), +(140,411,l) +); +} +); +width = 720; +} +); +metricLeft = equal; +metricRight = equal; +unicode = 8800; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ntilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ntilde.glyph new file mode 100644 index 00000000..f83716a0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ntilde.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = ntilde; +kernLeft = KO_n; +kernRight = KO_n; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = n; +}, +{ +pos = (39,-156); +ref = tildecomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = n; +}, +{ +pos = (7,-138); +ref = tildecomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = n; +}, +{ +pos = (112,-155); +ref = tildecomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = n; +}, +{ +pos = (103,-129); +ref = tildecomb; +} +); +width = 722; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = n; +}, +{ +pos = (33,-156); +ref = tildecomb; +} +); +width = 303; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = n; +}, +{ +pos = (4,-138); +ref = tildecomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = n; +}, +{ +pos = (98,-155); +ref = tildecomb; +} +); +width = 530; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = n; +}, +{ +pos = (66,-134); +ref = tildecomb; +} +); +width = 608; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = n; +}, +{ +alignment = -1; +pos = (112,-155); +ref = tildecomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = n; +}, +{ +alignment = -1; +pos = (103,-129); +ref = tildecomb; +} +); +width = 722; +}, +{ +layerId = m019; +shapes = ( +{ +ref = n; +}, +{ +pos = (92,-155); +ref = tildecomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = n; +}, +{ +pos = (62,-134); +ref = tildecomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = n; +}, +{ +pos = (16,-156); +ref = tildecomb; +} +); +width = 352; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = n; +}, +{ +pos = (-13,-138); +ref = tildecomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = n; +}, +{ +pos = (78,-155); +ref = tildecomb; +} +); +width = 568; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = n; +}, +{ +pos = (45,-134); +ref = tildecomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = n; +}, +{ +pos = (90,-155); +ref = tildecomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = n; +}, +{ +pos = (88,-134); +ref = tildecomb; +} +); +width = 714; +} +); +unicode = 241; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/numbersign.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/numbersign.glyph new file mode 100644 index 00000000..f6735f7c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/numbersign.glyph @@ -0,0 +1,1050 @@ +{ +glyphname = numbersign; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,0,l), +(241,192,l), +(322,192,l), +(322,0,l), +(459,0,l), +(459,192,l), +(549,192,l), +(549,315,l), +(459,315,l), +(459,417,l), +(549,417,l), +(549,540,l), +(459,540,l), +(459,729,l), +(322,729,l), +(322,540,l), +(241,540,l), +(241,729,l), +(103,729,l), +(103,540,l), +(13,540,l), +(13,417,l), +(103,417,l), +(103,315,l), +(13,315,l), +(13,192,l), +(103,192,l), +(103,0,l) +); +}, +{ +closed = 1; +nodes = ( +(241,417,l), +(322,417,l), +(322,315,l), +(241,315,l) +); +} +); +width = 562; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,0,l), +(152,265,l), +(273,265,l), +(273,0,l), +(301,0,l), +(301,265,l), +(413,265,l), +(413,291,l), +(301,291,l), +(301,462,l), +(413,462,l), +(413,488,l), +(301,488,l), +(301,729,l), +(273,729,l), +(273,488,l), +(152,488,l), +(152,729,l), +(124,729,l), +(124,488,l), +(6,488,l), +(6,462,l), +(124,462,l), +(124,291,l), +(6,291,l), +(6,265,l), +(124,265,l), +(124,0,l) +); +}, +{ +closed = 1; +nodes = ( +(152,462,l), +(273,462,l), +(273,291,l), +(152,291,l) +); +} +); +width = 419; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(230,245,l), +(440,245,l), +(440,0,l), +(472,0,l), +(472,245,l), +(645,245,l), +(645,273,l), +(472,273,l), +(472,480,l), +(645,480,l), +(645,507,l), +(472,507,l), +(472,729,l), +(440,729,l), +(440,507,l), +(230,507,l), +(230,729,l), +(198,729,l), +(198,507,l), +(19,507,l), +(19,480,l), +(198,480,l), +(198,273,l), +(19,273,l), +(19,245,l), +(198,245,l), +(198,0,l) +); +}, +{ +closed = 1; +nodes = ( +(230,480,l), +(440,480,l), +(440,273,l), +(230,273,l) +); +} +); +width = 663; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(307,0,l), +(307,166,l), +(433,166,l), +(433,0,l), +(595,0,l), +(595,166,l), +(726,166,l), +(726,302,l), +(595,302,l), +(595,430,l), +(726,430,l), +(726,566,l), +(595,566,l), +(595,729,l), +(433,729,l), +(433,566,l), +(307,566,l), +(307,729,l), +(145,729,l), +(145,566,l), +(14,566,l), +(14,430,l), +(145,430,l), +(145,302,l), +(14,302,l), +(14,166,l), +(145,166,l), +(145,0,l) +); +}, +{ +closed = 1; +nodes = ( +(307,430,l), +(433,430,l), +(433,302,l), +(307,302,l) +); +} +); +width = 740; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(144,265,l), +(265,265,l), +(265,0,l), +(293,0,l), +(293,265,l), +(405,265,l), +(405,291,l), +(293,291,l), +(293,462,l), +(405,462,l), +(405,488,l), +(293,488,l), +(293,729,l), +(265,729,l), +(265,488,l), +(144,488,l), +(144,729,l), +(116,729,l), +(116,488,l), +(-2,488,l), +(-2,462,l), +(116,462,l), +(116,291,l), +(-2,291,l), +(-2,265,l), +(116,265,l), +(116,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,462,l), +(265,462,l), +(265,291,l), +(144,291,l) +); +} +); +width = 403; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,l), +(232,192,l), +(313,192,l), +(313,0,l), +(450,0,l), +(450,192,l), +(540,192,l), +(540,315,l), +(450,315,l), +(450,417,l), +(540,417,l), +(540,540,l), +(450,540,l), +(450,729,l), +(313,729,l), +(313,540,l), +(232,540,l), +(232,729,l), +(94,729,l), +(94,540,l), +(4,540,l), +(4,417,l), +(94,417,l), +(94,315,l), +(4,315,l), +(4,192,l), +(94,192,l), +(94,0,l) +); +}, +{ +closed = 1; +nodes = ( +(232,417,l), +(313,417,l), +(313,315,l), +(232,315,l) +); +} +); +width = 544; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(202,245,l), +(387,245,l), +(387,0,l), +(419,0,l), +(419,245,l), +(576,245,l), +(576,273,l), +(419,273,l), +(419,480,l), +(576,480,l), +(576,507,l), +(419,507,l), +(419,729,l), +(387,729,l), +(387,507,l), +(202,507,l), +(202,729,l), +(170,729,l), +(170,507,l), +(7,507,l), +(7,480,l), +(170,480,l), +(170,273,l), +(7,273,l), +(7,245,l), +(170,245,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,480,l), +(387,480,l), +(387,273,l), +(202,273,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 583; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(271,182,l), +(385,182,l), +(385,0,l), +(525,0,l), +(525,182,l), +(648,182,l), +(648,309,l), +(525,309,l), +(525,423,l), +(648,423,l), +(648,551,l), +(525,551,l), +(525,729,l), +(385,729,l), +(385,551,l), +(271,551,l), +(271,729,l), +(129,729,l), +(129,551,l), +(5,551,l), +(5,423,l), +(129,423,l), +(129,309,l), +(5,309,l), +(5,182,l), +(129,182,l), +(129,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,423,l), +(385,423,l), +(385,309,l), +(271,309,l) +); +} +); +width = 653; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,l), +(220,245,l), +(430,245,l), +(430,0,l), +(462,0,l), +(462,245,l), +(635,245,l), +(635,273,l), +(462,273,l), +(462,480,l), +(635,480,l), +(635,507,l), +(462,507,l), +(462,729,l), +(430,729,l), +(430,507,l), +(220,507,l), +(220,729,l), +(188,729,l), +(188,507,l), +(9,507,l), +(9,480,l), +(188,480,l), +(188,273,l), +(9,273,l), +(9,245,l), +(188,245,l), +(188,0,l) +); +}, +{ +closed = 1; +nodes = ( +(220,480,l), +(430,480,l), +(430,273,l), +(220,273,l) +); +} +); +width = 643; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,0,l), +(297,166,l), +(423,166,l), +(423,0,l), +(585,0,l), +(585,166,l), +(716,166,l), +(716,302,l), +(585,302,l), +(585,430,l), +(716,430,l), +(716,566,l), +(585,566,l), +(585,729,l), +(423,729,l), +(423,566,l), +(297,566,l), +(297,729,l), +(135,729,l), +(135,566,l), +(4,566,l), +(4,430,l), +(135,430,l), +(135,302,l), +(4,302,l), +(4,166,l), +(135,166,l), +(135,0,l) +); +}, +{ +closed = 1; +nodes = ( +(297,430,l), +(423,430,l), +(423,302,l), +(297,302,l) +); +} +); +width = 720; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(226,0,l), +(226,245,l), +(407,245,l), +(407,0,l), +(439,0,l), +(439,245,l), +(592,245,l), +(592,273,l), +(439,273,l), +(439,480,l), +(592,480,l), +(592,507,l), +(439,507,l), +(439,729,l), +(407,729,l), +(407,507,l), +(226,507,l), +(226,729,l), +(194,729,l), +(194,507,l), +(35,507,l), +(35,480,l), +(194,480,l), +(194,273,l), +(35,273,l), +(35,245,l), +(194,245,l), +(194,0,l) +); +}, +{ +closed = 1; +nodes = ( +(226,480,l), +(407,480,l), +(407,273,l), +(226,273,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 626; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(285,0,l), +(285,182,l), +(394,182,l), +(394,0,l), +(533,0,l), +(533,182,l), +(651,182,l), +(651,309,l), +(533,309,l), +(533,423,l), +(651,423,l), +(651,551,l), +(533,551,l), +(533,729,l), +(394,729,l), +(394,551,l), +(285,551,l), +(285,729,l), +(145,729,l), +(145,551,l), +(25,551,l), +(25,423,l), +(145,423,l), +(145,309,l), +(25,309,l), +(25,182,l), +(145,182,l), +(145,0,l) +); +}, +{ +closed = 1; +nodes = ( +(285,423,l), +(394,423,l), +(394,309,l), +(285,309,l) +); +} +); +width = 675; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(99,0,l), +(153,265,l), +(274,265,l), +(220,0,l), +(248,0,l), +(302,265,l), +(414,265,l), +(420,291,l), +(308,291,l), +(343,462,l), +(455,462,l), +(461,488,l), +(349,488,l), +(398,729,l), +(370,729,l), +(321,488,l), +(200,488,l), +(249,729,l), +(221,729,l), +(172,488,l), +(54,488,l), +(48,462,l), +(166,462,l), +(131,291,l), +(13,291,l), +(7,265,l), +(125,265,l), +(71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(194,462,l), +(315,462,l), +(280,291,l), +(159,291,l) +); +} +); +width = 419; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(225,192,l), +(306,192,l), +(267,0,l), +(404,0,l), +(443,192,l), +(533,192,l), +(559,315,l), +(469,315,l), +(490,417,l), +(580,417,l), +(605,540,l), +(515,540,l), +(554,729,l), +(417,729,l), +(378,540,l), +(297,540,l), +(336,729,l), +(198,729,l), +(159,540,l), +(69,540,l), +(44,417,l), +(134,417,l), +(113,315,l), +(23,315,l), +(-3,192,l), +(87,192,l), +(48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(272,417,l), +(353,417,l), +(332,315,l), +(251,315,l) +); +} +); +width = 563; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,0,l), +(224,245,l), +(409,245,l), +(359,0,l), +(391,0,l), +(441,245,l), +(598,245,l), +(604,273,l), +(447,273,l), +(490,480,l), +(647,480,l), +(653,507,l), +(496,507,l), +(541,729,l), +(509,729,l), +(464,507,l), +(279,507,l), +(324,729,l), +(292,729,l), +(247,507,l), +(84,507,l), +(78,480,l), +(241,480,l), +(198,273,l), +(35,273,l), +(29,245,l), +(192,245,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(273,480,l), +(458,480,l), +(415,273,l), +(230,273,l) +); +} +); +width = 633; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,l), +(273,182,l), +(387,182,l), +(350,0,l), +(490,0,l), +(527,182,l), +(650,182,l), +(677,309,l), +(554,309,l), +(577,423,l), +(700,423,l), +(727,551,l), +(604,551,l), +(640,729,l), +(500,729,l), +(464,551,l), +(350,551,l), +(386,729,l), +(244,729,l), +(208,551,l), +(84,551,l), +(57,423,l), +(181,423,l), +(158,309,l), +(34,309,l), +(7,182,l), +(131,182,l), +(94,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,423,l), +(437,423,l), +(414,309,l), +(300,309,l) +); +} +); +width = 695; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,0,l), +(226,245,l), +(436,245,l), +(386,0,l), +(418,0,l), +(468,245,l), +(641,245,l), +(647,273,l), +(474,273,l), +(517,480,l), +(690,480,l), +(696,507,l), +(523,507,l), +(568,729,l), +(536,729,l), +(491,507,l), +(281,507,l), +(326,729,l), +(294,729,l), +(249,507,l), +(70,507,l), +(64,480,l), +(243,480,l), +(200,273,l), +(21,273,l), +(15,245,l), +(194,245,l), +(144,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,480,l), +(485,480,l), +(442,273,l), +(232,273,l) +); +} +); +width = 663; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(285,166,l), +(411,166,l), +(377,0,l), +(539,0,l), +(573,166,l), +(704,166,l), +(732,302,l), +(601,302,l), +(628,430,l), +(759,430,l), +(787,566,l), +(656,566,l), +(689,729,l), +(527,729,l), +(494,566,l), +(368,566,l), +(401,729,l), +(239,729,l), +(206,566,l), +(75,566,l), +(47,430,l), +(178,430,l), +(151,302,l), +(20,302,l), +(-8,166,l), +(123,166,l), +(89,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,430,l), +(466,430,l), +(439,302,l), +(313,302,l) +); +} +); +width = 740; +} +); +unicode = 35; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/numero.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/numero.glyph new file mode 100644 index 00000000..41321ac4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/numero.glyph @@ -0,0 +1,1340 @@ +{ +glyphname = numero; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(109,0,l), +(109,410,l), +(106,685,l), +(112,685,l), +(342,0,l), +(392,0,l), +(392,729,l), +(361,729,l), +(361,328,l), +(364,39,l), +(359,39,l), +(128,729,l), +(78,729,l), +(78,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,243,l), +(627,273,l), +(471,273,l), +(471,243,l) +); +}, +{ +closed = 1; +nodes = ( +(616,324,o), +(643,399,o), +(643,527,cs), +(643,655,o), +(616,729,o), +(549,729,cs), +(481,729,o), +(454,655,o), +(454,527,cs), +(454,399,o), +(481,324,o), +(549,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(510,353,o), +(487,390,o), +(487,527,cs), +(487,663,o), +(510,701,o), +(549,701,cs), +(587,701,o), +(610,663,o), +(610,527,cs), +(610,390,o), +(587,353,o), +(549,353,cs) +); +} +); +width = 687; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,l), +(198,157,l), +(189,358,l), +(195,358,l), +(276,0,l), +(463,0,l), +(463,729,l), +(299,729,l), +(299,575,l), +(308,366,l), +(301,366,l), +(223,729,l), +(34,729,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(798,145,l), +(798,261,l), +(529,261,l), +(529,145,l) +); +}, +{ +closed = 1; +nodes = ( +(759,292,o), +(829,334,o), +(829,515,cs), +(829,695,o), +(759,739,o), +(663,739,cs), +(568,739,o), +(498,697,o), +(498,515,cs), +(498,333,o), +(568,292,o), +(663,292,cs) +); +}, +{ +closed = 1; +nodes = ( +(639,404,o), +(638,440,o), +(638,515,cs), +(638,591,o), +(639,625,o), +(663,625,cs), +(686,625,o), +(687,594,o), +(687,515,cs), +(687,436,o), +(686,404,o), +(663,404,cs) +); +} +); +width = 848; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,0,l), +(123,436,l), +(120,686,l), +(125,686,l), +(694,0,l), +(746,0,l), +(746,729,l), +(708,729,l), +(708,303,l), +(712,43,l), +(707,43,l), +(137,729,l), +(85,729,l), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1154,231,l), +(1154,263,l), +(872,263,l), +(872,231,l) +); +}, +{ +closed = 1; +nodes = ( +(1121,333,o), +(1193,403,o), +(1193,536,cs), +(1193,669,o), +(1120,739,o), +(1015,739,cs), +(910,739,o), +(837,669,o), +(837,536,cs), +(837,402,o), +(911,333,o), +(1016,333,cs) +); +}, +{ +closed = 1; +nodes = ( +(926,364,o), +(875,426,o), +(875,536,cs), +(875,646,o), +(927,707,o), +(1015,707,cs), +(1105,707,o), +(1155,645,o), +(1155,536,cs), +(1155,426,o), +(1104,364,o), +(1015,364,cs) +); +} +); +width = 1238; +}, +{ +guides = ( +{ +pos = (1182,260); +}, +{ +pos = (1182,300); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,0,l), +(286,226,l), +(279,424,l), +(288,424,l), +(570,0,l), +(842,0,l), +(842,729,l), +(615,729,l), +(615,504,l), +(621,299,l), +(613,299,l), +(331,729,l), +(55,729,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1381,139,l), +(1381,255,l), +(922,255,l), +(922,139,l) +); +}, +{ +closed = 1; +nodes = ( +(1308,300,o), +(1411,381,o), +(1411,519,cs), +(1411,656,o), +(1310,739,o), +(1152,739,cs), +(995,739,o), +(891,658,o), +(891,519,cs), +(891,384,o), +(991,300,o), +(1150,300,cs) +); +}, +{ +closed = 1; +nodes = ( +(1114,439,o), +(1084,452,o), +(1084,519,cs), +(1084,588,o), +(1114,601,o), +(1152,601,cs), +(1186,601,o), +(1219,588,o), +(1219,519,cs), +(1219,452,o), +(1189,439,o), +(1151,439,cs) +); +} +); +width = 1430; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,0,l), +(89,410,l), +(86,685,l), +(92,685,l), +(322,0,l), +(372,0,l), +(372,729,l), +(341,729,l), +(341,328,l), +(344,39,l), +(339,39,l), +(108,729,l), +(58,729,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(607,243,l), +(607,273,l), +(451,273,l), +(451,243,l) +); +}, +{ +closed = 1; +nodes = ( +(596,324,o), +(623,399,o), +(623,527,cs), +(623,655,o), +(596,729,o), +(529,729,cs), +(461,729,o), +(434,655,o), +(434,527,cs), +(434,399,o), +(461,324,o), +(529,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(490,353,o), +(467,390,o), +(467,527,cs), +(467,663,o), +(490,701,o), +(529,701,cs), +(567,701,o), +(590,663,o), +(590,527,cs), +(590,390,o), +(567,353,o), +(529,353,cs) +); +} +); +width = 647; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,0,l), +(188,157,l), +(179,358,l), +(185,358,l), +(266,0,l), +(453,0,l), +(453,729,l), +(289,729,l), +(289,575,l), +(298,366,l), +(291,366,l), +(213,729,l), +(24,729,l), +(24,0,l) +); +}, +{ +closed = 1; +nodes = ( +(788,145,l), +(788,261,l), +(519,261,l), +(519,145,l) +); +}, +{ +closed = 1; +nodes = ( +(749,292,o), +(819,334,o), +(819,515,cs), +(819,695,o), +(749,739,o), +(653,739,cs), +(558,739,o), +(488,697,o), +(488,515,cs), +(488,333,o), +(558,292,o), +(653,292,cs) +); +}, +{ +closed = 1; +nodes = ( +(629,404,o), +(628,440,o), +(628,515,cs), +(628,591,o), +(629,625,o), +(653,625,cs), +(676,625,o), +(677,594,o), +(677,515,cs), +(677,436,o), +(676,404,o), +(653,404,cs) +); +} +); +width = 828; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,l), +(125,436,l), +(122,686,l), +(127,686,l), +(608,0,l), +(663,0,l), +(663,729,l), +(625,729,l), +(625,303,l), +(629,43,l), +(624,43,l), +(142,729,l), +(87,729,l), +(87,0,l) +); +}, +{ +closed = 1; +nodes = ( +(993,231,l), +(993,263,l), +(791,263,l), +(791,231,l) +); +}, +{ +closed = 1; +nodes = ( +(974,334,o), +(1030,405,o), +(1030,537,cs), +(1030,668,o), +(975,739,o), +(893,739,cs), +(810,739,o), +(754,669,o), +(754,537,cs), +(754,406,o), +(809,334,o), +(893,334,cs) +); +}, +{ +closed = 1; +nodes = ( +(828,366,o), +(791,425,o), +(791,537,cs), +(791,648,o), +(828,707,o), +(893,707,cs), +(956,707,o), +(993,649,o), +(993,537,cs), +(993,425,o), +(956,366,o), +(893,366,cs) +); +} +); +width = 1078; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(253,236,l), +(246,431,l), +(252,431,l), +(487,0,l), +(718,0,l), +(718,729,l), +(523,729,l), +(523,504,l), +(530,289,l), +(524,289,l), +(291,729,l), +(46,729,l), +(46,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1131,139,l), +(1131,255,l), +(802,255,l), +(802,139,l) +); +}, +{ +closed = 1; +nodes = ( +(1081,292,o), +(1160,363,o), +(1160,516,cs), +(1160,668,o), +(1081,739,o), +(966,739,cs), +(852,739,o), +(773,668,o), +(773,516,cs), +(773,363,o), +(852,292,o), +(966,292,cs) +); +}, +{ +closed = 1; +nodes = ( +(930,411,o), +(919,451,o), +(919,516,cs), +(919,580,o), +(930,620,o), +(966,620,cs), +(1003,620,o), +(1014,580,o), +(1014,516,cs), +(1014,451,o), +(1003,411,o), +(966,411,cs) +); +} +); +width = 1177; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(113,436,l), +(110,686,l), +(115,686,l), +(684,0,l), +(736,0,l), +(736,729,l), +(698,729,l), +(698,303,l), +(702,43,l), +(697,43,l), +(127,729,l), +(75,729,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1144,231,l), +(1144,263,l), +(862,263,l), +(862,231,l) +); +}, +{ +closed = 1; +nodes = ( +(1111,333,o), +(1183,403,o), +(1183,536,cs), +(1183,669,o), +(1110,739,o), +(1005,739,cs), +(900,739,o), +(827,669,o), +(827,536,cs), +(827,402,o), +(901,333,o), +(1006,333,cs) +); +}, +{ +closed = 1; +nodes = ( +(916,364,o), +(865,426,o), +(865,536,cs), +(865,646,o), +(917,707,o), +(1005,707,cs), +(1095,707,o), +(1145,645,o), +(1145,536,cs), +(1145,426,o), +(1094,364,o), +(1005,364,cs) +); +} +); +width = 1218; +}, +{ +guides = ( +{ +pos = (1172,260); +}, +{ +pos = (1172,300); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,226,l), +(269,424,l), +(278,424,l), +(560,0,l), +(832,0,l), +(832,729,l), +(605,729,l), +(605,504,l), +(611,299,l), +(603,299,l), +(321,729,l), +(45,729,l), +(45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1371,139,l), +(1371,255,l), +(912,255,l), +(912,139,l) +); +}, +{ +closed = 1; +nodes = ( +(1298,300,o), +(1401,381,o), +(1401,519,cs), +(1401,656,o), +(1300,739,o), +(1142,739,cs), +(985,739,o), +(881,658,o), +(881,519,cs), +(881,384,o), +(981,300,o), +(1140,300,cs) +); +}, +{ +closed = 1; +nodes = ( +(1104,439,o), +(1074,452,o), +(1074,519,cs), +(1074,588,o), +(1104,601,o), +(1142,601,cs), +(1176,601,o), +(1209,588,o), +(1209,519,cs), +(1209,452,o), +(1179,439,o), +(1141,439,cs) +); +} +); +width = 1410; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(150,0,l), +(150,436,l), +(147,686,l), +(151,686,l), +(623,0,l), +(676,0,l), +(676,729,l), +(640,729,l), +(640,303,l), +(643,43,l), +(639,43,l), +(165,729,l), +(112,729,l), +(112,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1000,231,l), +(1000,263,l), +(802,263,l), +(802,231,l) +); +}, +{ +closed = 1; +nodes = ( +(981,334,o), +(1036,405,o), +(1036,537,cs), +(1036,668,o), +(982,739,o), +(902,739,cs), +(821,739,o), +(765,669,o), +(765,537,cs), +(765,406,o), +(820,334,o), +(902,334,cs) +); +}, +{ +closed = 1; +nodes = ( +(838,366,o), +(802,425,o), +(802,537,cs), +(802,648,o), +(838,707,o), +(902,707,cs), +(963,707,o), +(1000,649,o), +(1000,537,cs), +(1000,425,o), +(963,366,o), +(902,366,cs) +); +} +); +width = 1105; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(273,0,l), +(273,236,l), +(266,431,l), +(272,431,l), +(499,0,l), +(728,0,l), +(728,729,l), +(535,729,l), +(535,504,l), +(542,289,l), +(536,289,l), +(311,729,l), +(68,729,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1133,139,l), +(1133,255,l), +(809,255,l), +(809,139,l) +); +}, +{ +closed = 1; +nodes = ( +(1083,292,o), +(1161,363,o), +(1161,516,cs), +(1161,668,o), +(1083,739,o), +(970,739,cs), +(859,739,o), +(781,668,o), +(781,516,cs), +(781,363,o), +(859,292,o), +(970,292,cs) +); +}, +{ +closed = 1; +nodes = ( +(936,411,o), +(926,452,o), +(926,516,cs), +(926,579,o), +(936,620,o), +(970,620,cs), +(1007,620,o), +(1017,579,o), +(1017,516,cs), +(1017,453,o), +(1007,411,o), +(970,411,cs) +); +} +); +width = 1197; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(702,710,o), +(678,592,o), +(665,531,cs), +(639,407,o), +(613,363,o), +(573,363,cs), +(522,363,o), +(521,429,o), +(545,541,cs), +(574,677,o), +(602,710,o), +(640,710,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(141,410,l), +(195,685,l), +(201,685,l), +(290,0,l), +(339,0,l), +(490,729,l), +(459,729,l), +(376,328,l), +(319,39,l), +(314,39,l), +(225,729,l), +(176,729,l), +(25,0,l) +); +}, +{ +closed = 1; +nodes = ( +(624,243,l), +(630,273,l), +(474,273,l), +(468,243,l) +); +}, +{ +closed = 1; +nodes = ( +(629,335,o), +(670,403,o), +(697,527,cs), +(721,644,o), +(720,739,o), +(640,739,cs), +(581,739,o), +(539,674,o), +(513,549,cs), +(482,403,o), +(501,335,o), +(570,335,cs) +); +}, +{ +closed = 1; +nodes = ( +(522,363,o), +(521,429,o), +(545,542,cs), +(571,666,o), +(597,710,o), +(637,710,cs), +(688,710,o), +(689,644,o), +(665,532,cs), +(639,407,o), +(613,363,o), +(573,363,cs) +); +} +); +width = 684; +}, +{ +guides = ( +{ +pos = (672,292); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,0,l), +(172,157,l), +(207,358,l), +(213,358,l), +(218,0,l), +(403,0,l), +(554,729,l), +(392,729,l), +(360,575,l), +(327,366,l), +(320,366,l), +(317,729,l), +(130,729,l), +(-22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(785,145,l), +(809,261,l), +(540,261,l), +(516,145,l) +); +}, +{ +closed = 1; +nodes = ( +(775,292,o), +(840,335,o), +(876,507,cs), +(904,647,o), +(867,739,o), +(739,739,cs), +(645,739,o), +(584,681,o), +(552,529,cs), +(523,387,o), +(556,292,o), +(688,292,cs) +); +}, +{ +closed = 1; +nodes = ( +(669,407,o), +(672,426,o), +(689,515,cs), +(706,597,o), +(713,624,o), +(734,624,cs), +(759,624,o), +(756,599,o), +(739,518,cs), +(721,429,o), +(713,407,o), +(696,407,cs) +); +} +); +width = 846; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(94,0,l), +(185,436,l), +(235,686,l), +(239,686,l), +(565,0,l), +(618,0,l), +(769,729,l), +(732,729,l), +(643,303,l), +(593,43,l), +(588,43,l), +(260,729,l), +(208,729,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1052,332,o), +(1119,434,o), +(1125,592,cs), +(1128,680,o), +(1085,735,o), +(1015,735,cs), +(917,735,o), +(850,633,o), +(844,475,cs), +(841,387,o), +(884,332,o), +(954,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(902,364,o), +(879,410,o), +(881,475,cs), +(886,612,o), +(938,703,o), +(1012,703,cs), +(1067,703,o), +(1090,657,o), +(1088,592,cs), +(1083,455,o), +(1031,365,o), +(957,365,c), +(957,364,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(94,0,l), +(185,436,l), +(235,686,l), +(239,686,l), +(565,0,l), +(618,0,l), +(769,729,l), +(732,729,l), +(643,303,l), +(593,43,l), +(588,43,l), +(260,729,l), +(208,729,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1023,231,l), +(1029,263,l), +(797,263,l), +(791,231,l) +); +}, +{ +closed = 1; +nodes = ( +(1039,334,o), +(1110,435,o), +(1116,590,cs), +(1119,681,o), +(1072,739,o), +(995,739,cs), +(890,739,o), +(819,638,o), +(813,483,cs), +(810,392,o), +(857,334,o), +(934,334,cs) +); +}, +{ +closed = 1; +nodes = ( +(879,364,o), +(846,408,o), +(849,481,cs), +(855,620,o), +(913,709,o), +(995,709,cs), +(1050,709,o), +(1083,665,o), +(1080,592,cs), +(1074,453,o), +(1016,364,o), +(934,364,cs) +); +} +); +width = 1123; +}, +{ +guides = ( +{ +pos = (668,292); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,l), +(264,236,l), +(294,431,l), +(302,431,l), +(437,0,l), +(664,0,l), +(816,729,l), +(617,729,l), +(568,494,l), +(537,292,l), +(529,292,l), +(393,729,l), +(165,729,l), +(14,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1126,139,l), +(1150,255,l), +(821,255,l), +(797,139,l) +); +}, +{ +closed = 1; +nodes = ( +(1141,292,o), +(1228,406,o), +(1228,558,cs), +(1228,668,o), +(1166,739,o), +(1052,739,cs), +(910,739,o), +(823,625,o), +(823,473,cs), +(823,364,o), +(885,292,o), +(999,292,cs) +); +}, +{ +closed = 1; +nodes = ( +(966,410,o), +(966,463,o), +(975,524,cs), +(987,582,o), +(1004,621,o), +(1042,621,cs), +(1085,621,o), +(1085,569,o), +(1076,507,cs), +(1065,449,o), +(1047,410,o), +(1009,410,cs) +); +} +); +width = 1215; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,0,l), +(159,436,l), +(210,689,l), +(214,689,l), +(632,0,l), +(683,0,l), +(835,729,l), +(797,729,l), +(710,303,l), +(657,40,l), +(652,40,l), +(235,729,l), +(182,729,l), +(31,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1160,231,l), +(1166,263,l), +(884,263,l), +(878,231,l) +); +}, +{ +closed = 1; +nodes = ( +(1166,333,o), +(1246,429,o), +(1246,567,cs), +(1246,675,o), +(1186,739,o), +(1082,739,cs), +(964,739,o), +(884,643,o), +(884,504,cs), +(884,397,o), +(944,333,o), +(1048,333,cs) +); +}, +{ +closed = 1; +nodes = ( +(965,364,o), +(921,416,o), +(921,504,cs), +(921,627,o), +(986,707,o), +(1084,707,cs), +(1164,707,o), +(1209,656,o), +(1209,568,cs), +(1209,445,o), +(1144,364,o), +(1046,364,cs) +); +} +); +width = 1235; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,0,l), +(275,232,l), +(311,441,l), +(319,441,l), +(509,0,l), +(776,0,l), +(927,729,l), +(703,729,l), +(655,498,l), +(616,282,l), +(608,282,l), +(419,729,l), +(150,729,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1368,139,l), +(1392,255,l), +(933,255,l), +(909,139,l) +); +}, +{ +closed = 1; +nodes = ( +(1355,300,o), +(1463,393,o), +(1463,532,cs), +(1463,656,o), +(1372,739,o), +(1209,739,cs), +(1044,739,o), +(937,645,o), +(937,506,cs), +(937,382,o), +(1017,300,o), +(1188,300,cs) +); +}, +{ +closed = 1; +nodes = ( +(1160,440,o), +(1136,459,o), +(1136,499,cs), +(1136,565,o), +(1159,599,o), +(1206,599,cs), +(1240,599,o), +(1264,580,o), +(1264,540,cs), +(1264,474,o), +(1241,440,o), +(1194,440,cs) +); +} +); +width = 1436; +} +); +unicode = 8470; +userData = { +KernOnSpecialSpacing = { +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/o.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/o.glyph new file mode 100644 index 00000000..3722750d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/o.glyph @@ -0,0 +1,1551 @@ +{ +glyphname = o; +kernLeft = KO_e; +kernRight = KO_o; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (227,0); +}, +{ +name = center; +pos = (227,271); +}, +{ +name = ogonek; +pos = (412,10); +}, +{ +name = top; +pos = (227,541); +}, +{ +name = topright; +pos = (299,531); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(208,364,o), +(242,400,o), +(293,400,cs), +(344,400,o), +(378,364,o), +(378,272,cs), +(378,180,o), +(344,144,o), +(293,144,cs), +(242,144,o), +(208,180,o), +(208,272,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,-10,o), +(440,65,o), +(440,273,cs), +(440,475,o), +(360,551,o), +(226,551,cs), +(92,551,o), +(14,474,o), +(14,273,cs), +(14,65,o), +(97,-10,o), +(226,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(191,165,o), +(191,271,cs), +(191,382,o), +(198,414,o), +(226,414,cs), +(255,414,o), +(263,383,o), +(263,271,cs), +(263,164,o), +(256,128,o), +(226,128,cs) +); +} +); +width = 454; +}, +{ +anchors = ( +{ +name = bottom; +pos = (168,0); +}, +{ +name = center; +pos = (168,258); +}, +{ +name = ogonek; +pos = (298,10); +}, +{ +name = top; +pos = (168,516); +}, +{ +name = topright; +pos = (221,507); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(10,100,o), +(108,-8,o), +(254,-8,cs), +(398,-8,o), +(495,101,o), +(495,258,cs), +(495,417,o), +(398,525,o), +(254,525,cs), +(108,525,o), +(10,415,o), +(10,257,cs) +); +}, +{ +closed = 1; +nodes = ( +(48,401,o), +(132,490,o), +(254,490,cs), +(380,490,o), +(457,397,o), +(457,258,cs), +(457,117,o), +(375,28,o), +(253,28,cs), +(127,28,o), +(48,120,o), +(48,257,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-10,o), +(292,100,o), +(292,258,cs), +(292,418,o), +(269,526,o), +(168,526,cs), +(67,526,o), +(44,416,o), +(44,258,cs), +(44,99,o), +(67,-10,o), +(168,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,17,o), +(73,64,o), +(73,258,cs), +(73,451,o), +(112,499,o), +(168,499,cs), +(225,499,o), +(263,450,o), +(263,258,cs), +(263,66,o), +(225,17,o), +(168,17,cs) +); +} +); +width = 337; +}, +{ +anchors = ( +{ +name = bottom; +pos = (320,0); +}, +{ +name = center; +pos = (320,259); +}, +{ +name = ogonek; +pos = (582,10); +}, +{ +name = top; +pos = (320,517); +}, +{ +name = topright; +pos = (431,507); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,-10,o), +(606,98,o), +(606,257,cs), +(606,418,o), +(491,525,o), +(320,525,cs), +(149,525,o), +(34,418,o), +(34,257,cs), +(34,97,o), +(149,-10,o), +(320,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,25,o), +(72,117,o), +(72,257,cs), +(72,399,o), +(171,490,o), +(320,490,cs), +(470,490,o), +(568,399,o), +(568,257,cs), +(568,116,o), +(469,25,o), +(320,25,cs) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (347,0); +}, +{ +name = center; +pos = (347,272); +}, +{ +name = ogonek; +pos = (634,10); +}, +{ +name = top; +pos = (347,544); +}, +{ +name = topright; +pos = (440,524); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(552,-10,o), +(684,93,o), +(684,272,cs), +(684,454,o), +(550,554,o), +(347,554,cs), +(143,554,o), +(10,452,o), +(10,272,cs), +(10,91,o), +(144,-10,o), +(347,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,157,o), +(231,201,o), +(231,272,cs), +(231,343,o), +(270,388,o), +(347,388,cs), +(424,388,o), +(464,344,o), +(464,272,cs), +(464,201,o), +(424,157,o), +(347,157,cs) +); +} +); +width = 694; +}, +{ +anchors = ( +{ +name = bottom; +pos = (148,0); +}, +{ +name = center; +pos = (148,258); +}, +{ +name = ogonek; +pos = (278,10); +}, +{ +name = top; +pos = (148,516); +}, +{ +name = topright; +pos = (201,507); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(10,100,o), +(108,-8,o), +(254,-8,cs), +(398,-8,o), +(495,101,o), +(495,258,cs), +(495,417,o), +(398,525,o), +(254,525,cs), +(108,525,o), +(10,415,o), +(10,257,cs) +); +}, +{ +closed = 1; +nodes = ( +(48,401,o), +(132,490,o), +(254,490,cs), +(380,490,o), +(457,397,o), +(457,258,cs), +(457,117,o), +(375,28,o), +(253,28,cs), +(127,28,o), +(48,120,o), +(48,257,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,-10,o), +(274,66,o), +(274,258,cs), +(274,450,o), +(236,526,o), +(148,526,cs), +(60,526,o), +(22,450,o), +(22,258,cs), +(22,66,o), +(60,-10,o), +(148,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(92,17,o), +(53,64,o), +(53,258,cs), +(53,451,o), +(92,499,o), +(148,499,cs), +(205,499,o), +(243,450,o), +(243,258,cs), +(243,66,o), +(205,17,o), +(148,17,cs) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = center; +pos = (218,271); +}, +{ +name = ogonek; +pos = (403,10); +}, +{ +name = top; +pos = (218,541); +}, +{ +name = topright; +pos = (290,531); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(208,364,o), +(242,400,o), +(293,400,cs), +(344,400,o), +(378,364,o), +(378,272,cs), +(378,180,o), +(344,144,o), +(293,144,cs), +(242,144,o), +(208,180,o), +(208,272,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(348,-10,o), +(431,65,o), +(431,273,cs), +(431,475,o), +(351,551,o), +(217,551,cs), +(83,551,o), +(5,474,o), +(5,273,cs), +(5,65,o), +(88,-10,o), +(217,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,128,o), +(182,165,o), +(182,271,cs), +(182,382,o), +(189,414,o), +(217,414,cs), +(246,414,o), +(254,383,o), +(254,271,cs), +(254,164,o), +(247,128,o), +(217,128,cs) +); +} +); +width = 436; +}, +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = center; +pos = (275,259); +}, +{ +name = ogonek; +pos = (505,10); +}, +{ +name = top; +pos = (275,517); +}, +{ +name = topright; +pos = (361,507); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(420,-8,o), +(517,101,o), +(517,258,cs), +(517,417,o), +(420,525,o), +(276,525,cs), +(130,525,o), +(32,415,o), +(32,257,cs), +(32,100,o), +(130,-8,o), +(276,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(149,28,o), +(70,120,o), +(70,257,cs), +(70,400,o), +(153,490,o), +(276,490,cs), +(402,490,o), +(479,397,o), +(479,258,cs), +(479,117,o), +(397,28,o), +(275,28,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 549; +}, +{ +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = center; +pos = (287,272); +}, +{ +name = ogonek; +pos = (530,10); +}, +{ +name = top; +pos = (287,544); +}, +{ +name = topright; +pos = (363,524); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(223,364,o), +(257,400,o), +(308,400,cs), +(359,400,o), +(393,364,o), +(393,272,cs), +(393,180,o), +(359,144,o), +(308,144,cs), +(257,144,o), +(223,180,o), +(223,272,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,-10,o), +(570,103,o), +(570,272,cs), +(570,452,o), +(457,554,o), +(287,554,cs), +(105,554,o), +(4,441,o), +(4,272,cs), +(4,92,o), +(117,-10,o), +(287,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,143,o), +(197,179,o), +(197,272,cs), +(197,365,o), +(232,401,o), +(287,401,cs), +(342,401,o), +(377,365,o), +(377,272,cs), +(377,179,o), +(342,143,o), +(287,143,cs) +); +} +); +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (318,0); +}, +{ +name = center; +pos = (318,259); +}, +{ +name = ogonek; +pos = (580,10); +}, +{ +name = top; +pos = (318,517); +}, +{ +name = topright; +pos = (429,507); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(493,-10,o), +(604,94,o), +(604,257,cs), +(604,421,o), +(493,525,o), +(318,525,cs), +(143,525,o), +(32,421,o), +(32,257,cs), +(32,94,o), +(143,-10,o), +(318,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,25,o), +(70,115,o), +(70,257,cs), +(70,399,o), +(166,490,o), +(318,490,cs), +(470,490,o), +(566,399,o), +(566,257,cs), +(566,115,o), +(470,25,o), +(318,25,cs) +); +} +); +width = 636; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = center; +pos = (353,272); +}, +{ +name = ogonek; +pos = (640,10); +}, +{ +name = top; +pos = (353,544); +}, +{ +name = topright; +pos = (446,524); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(558,-10,o), +(690,93,o), +(690,272,cs), +(690,454,o), +(556,554,o), +(353,554,cs), +(149,554,o), +(16,452,o), +(16,272,cs), +(16,91,o), +(150,-10,o), +(353,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,157,o), +(237,201,o), +(237,272,cs), +(237,343,o), +(276,388,o), +(353,388,cs), +(430,388,o), +(470,344,o), +(470,272,cs), +(470,201,o), +(430,157,o), +(353,157,cs) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = center; +pos = (295,259); +}, +{ +name = ogonek; +pos = (521,10); +}, +{ +name = top; +pos = (295,517); +}, +{ +name = topright; +pos = (379,507); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(432,-8,o), +(525,100,o), +(525,258,cs), +(525,417,o), +(432,525,o), +(295,525,cs), +(158,525,o), +(65,416,o), +(65,257,cs), +(65,100,o), +(158,-8,o), +(295,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,28,o), +(103,117,o), +(103,257,cs), +(103,399,o), +(177,490,o), +(295,490,cs), +(413,490,o), +(487,400,o), +(487,258,cs), +(487,117,o), +(412,28,o), +(294,28,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 590; +}, +{ +anchors = ( +{ +name = bottom; +pos = (301,0); +}, +{ +name = center; +pos = (301,272); +}, +{ +name = ogonek; +pos = (537,10); +}, +{ +name = top; +pos = (301,544); +}, +{ +name = topright; +pos = (374,524); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225,364,o), +(259,400,o), +(310,400,cs), +(361,400,o), +(395,364,o), +(395,272,cs), +(395,180,o), +(361,144,o), +(310,144,cs), +(259,144,o), +(225,180,o), +(225,272,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(475,-10,o), +(572,103,o), +(572,272,cs), +(572,452,o), +(463,554,o), +(301,554,cs), +(127,554,o), +(30,441,o), +(30,272,cs), +(30,92,o), +(139,-10,o), +(301,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(253,143,o), +(223,179,o), +(223,272,cs), +(223,365,o), +(253,401,o), +(301,401,cs), +(348,401,o), +(379,365,o), +(379,272,cs), +(379,179,o), +(348,143,o), +(301,143,cs) +); +} +); +width = 602; +}, +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = center; +pos = (168,258); +}, +{ +name = ogonek; +pos = (259,10); +}, +{ +name = top; +pos = (218,516); +}, +{ +name = topright; +pos = (261,507); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,-9,o), +(253,72,o), +(290,249,cs), +(321,396,o), +(330,525,o), +(214,525,cs), +(132,525,o), +(83,444,o), +(46,267,cs), +(15,120,o), +(6,-9,o), +(122,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(35,18,o), +(49,140,o), +(75,267,cs), +(112,445,o), +(160,498,o), +(212,498,cs), +(301,498,o), +(287,376,o), +(261,249,cs), +(224,71,o), +(176,18,o), +(124,18,cs) +); +} +); +width = 336; +}, +{ +anchors = ( +{ +name = bottom; +pos = (192,0); +}, +{ +name = center; +pos = (226,271); +}, +{ +name = ogonek; +pos = (365,10); +}, +{ +name = top; +pos = (280,541); +}, +{ +name = topright; +pos = (329,531); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,-10,o), +(393,62,o), +(435,262,cs), +(472,439,o), +(433,551,o), +(261,551,cs), +(142,551,o), +(58,481,o), +(18,288,cs), +(-24,90,o), +(29,-10,o), +(190,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,128,o), +(169,178,o), +(190,278,cs), +(213,386,o), +(227,414,o), +(254,414,cs), +(291,414,o), +(280,354,o), +(261,265,cs), +(239,165,o), +(224,128,o), +(198,128,cs) +); +} +); +width = 451; +}, +{ +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = center; +pos = (290,259); +}, +{ +name = ogonek; +pos = (472,10); +}, +{ +name = top; +pos = (327,517); +}, +{ +name = topright; +pos = (414,507); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(410,-10,o), +(525,122,o), +(525,309,cs), +(525,439,o), +(450,527,o), +(327,527,cs), +(164,527,o), +(51,393,o), +(51,208,cs), +(51,79,o), +(129,-10,o), +(252,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,23,o), +(84,93,o), +(88,219,cs), +(94,385,o), +(186,494,o), +(322,494,cs), +(428,494,o), +(495,420,o), +(491,297,cs), +(485,134,o), +(392,23,o), +(256,23,cs) +); +} +); +width = 577; +}, +{ +anchors = ( +{ +name = bottom; +pos = (277,0); +}, +{ +name = center; +pos = (303,273); +}, +{ +name = ogonek; +pos = (494,10); +}, +{ +name = top; +pos = (347,544); +}, +{ +name = topright; +pos = (410,524); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1147,-10,o), +(1262,114,o), +(1269,312,cs), +(1275,471,o), +(1174,554,o), +(1024,554,cs), +(847,554,o), +(731,430,o), +(724,232,cs), +(718,72,o), +(819,-10,o), +(969,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(938,143,o), +(911,174,o), +(913,234,cs), +(917,336,o), +(957,401,o), +(1015,401,cs), +(1056,401,o), +(1082,370,o), +(1080,310,cs), +(1077,209,o), +(1038,143,o), +(979,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(1838,-9,o), +(1946,92,o), +(1971,243,cs), +(2001,429,o), +(1905,554,o), +(1730,554,cs), +(1566,554,o), +(1458,453,o), +(1433,302,cs), +(1403,116,o), +(1499,-9,o), +(1674,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(1638,143,o), +(1610,177,o), +(1613,238,cs), +(1618,336,o), +(1652,402,o), +(1720,402,cs), +(1766,402,o), +(1794,368,o), +(1791,307,cs), +(1786,209,o), +(1752,143,o), +(1684,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(442,-10,o), +(547,91,o), +(572,244,cs), +(602,431,o), +(506,554,o), +(331,554,cs), +(164,554,o), +(58,453,o), +(33,300,cs), +(3,113,o), +(100,-10,o), +(274,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,142,o), +(210,176,o), +(213,239,cs), +(218,336,o), +(253,402,o), +(321,402,cs), +(368,402,o), +(395,368,o), +(392,304,cs), +(387,208,o), +(352,142,o), +(284,142,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(548,90,o), +(574,244,cs), +(606,435,o), +(502,554,o), +(331,554,cs), +(162,554,o), +(57,453,o), +(32,302,cs), +(0,110,o), +(103,-10,o), +(275,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,141,o), +(214,172,o), +(218,237,cs), +(224,337,o), +(256,404,o), +(321,404,cs), +(365,404,o), +(392,373,o), +(388,308,cs), +(382,208,o), +(350,141,o), +(285,141,cs) +); +} +); +width = 605; +}, +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +}, +{ +name = center; +pos = (316,259); +}, +{ +name = ogonek; +pos = (534,10); +}, +{ +name = top; +pos = (349,517); +}, +{ +name = topright; +pos = (458,507); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,-10,o), +(598,119,o), +(598,298,cs), +(598,436,o), +(502,527,o), +(348,527,cs), +(165,527,o), +(33,399,o), +(33,219,cs), +(33,80,o), +(129,-10,o), +(284,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,24,o), +(71,94,o), +(71,221,cs), +(71,382,o), +(184,493,o), +(344,493,cs), +(476,493,o), +(561,422,o), +(561,296,cs), +(561,136,o), +(448,24,o), +(288,24,cs) +); +} +); +width = 631; +}, +{ +anchors = ( +{ +name = bottom; +pos = (326,0); +}, +{ +name = center; +pos = (346,272); +}, +{ +name = ogonek; +pos = (589,0); +}, +{ +name = top; +pos = (390,544); +}, +{ +name = topright; +pos = (470,524); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-10,o), +(674,107,o), +(680,292,cs), +(686,451,o), +(569,554,o), +(366,554,cs), +(155,554,o), +(18,437,o), +(12,252,cs), +(6,93,o), +(123,-10,o), +(324,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,157,o), +(229,197,o), +(231,259,cs), +(234,337,o), +(281,387,o), +(357,387,cs), +(419,387,o), +(463,347,o), +(460,285,cs), +(458,207,o), +(410,157,o), +(334,157,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(540,-9,o), +(679,108,o), +(679,289,cs), +(679,448,o), +(566,554,o), +(361,554,cs), +(152,554,o), +(13,437,o), +(13,256,cs), +(13,97,o), +(126,-9,o), +(331,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,157,o), +(231,194,o), +(231,259,cs), +(231,337,o), +(281,388,o), +(357,388,cs), +(420,388,o), +(461,351,o), +(461,286,cs), +(461,208,o), +(411,157,o), +(335,157,cs) +); +} +); +width = 692; +} +); +unicode = 111; +userData = { +KernOnName = o; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/oacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/oacute.glyph new file mode 100644 index 00000000..e2a80bec --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/oacute.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = oacute; +kernLeft = KO_e; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (112,-156); +ref = acutecomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (115,-137); +ref = acutecomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (262,-155); +ref = acutecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (230,-129); +ref = acutecomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (112,-156); +ref = acutecomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (116,-137); +ref = acutecomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (240,-155); +ref = acutecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (192,-134); +ref = acutecomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (262,-155); +ref = acutecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (230,-129); +ref = acutecomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (239,-155); +ref = acutecomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (191,-134); +ref = acutecomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (77,-156); +ref = acutecomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (85,-137); +ref = acutecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (185,-155); +ref = acutecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (152,-134); +ref = acutecomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (206,-155); +ref = acutecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (190,-129); +ref = acutecomb; +} +); +width = 692; +} +); +unicode = 243; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflex.glyph new file mode 100644 index 00000000..434d0391 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflex.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ocircumflex; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,-156); +ref = circumflexcomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (10,-137); +ref = circumflexcomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (141,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (56,-129); +ref = circumflexcomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (39,-156); +ref = circumflexcomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (11,-137); +ref = circumflexcomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (131,-155); +ref = circumflexcomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (57,-134); +ref = circumflexcomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (141,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (56,-129); +ref = circumflexcomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (132,-155); +ref = circumflexcomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (62,-134); +ref = circumflexcomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,-156); +ref = circumflexcomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-22,-137); +ref = circumflexcomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (75,-155); +ref = circumflexcomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (18,-134); +ref = circumflexcomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (83,-155); +ref = circumflexcomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (14,-129); +ref = circumflexcomb; +} +); +width = 692; +} +); +unicode = 244; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexacute.glyph new file mode 100644 index 00000000..590e60d1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexacute.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ocircumflexacute; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (21,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (141,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (80,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (39,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (22,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (131,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (57,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (141,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (80,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (132,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (61,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,-156); +ref = circumflexcomb_acutecomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-10,-137); +ref = circumflexcomb_acutecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (75,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (20,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (83,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (37,-129); +ref = circumflexcomb_acutecomb; +} +); +width = 692; +} +); +unicode = 7889; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexdotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexdotbelow.glyph new file mode 100644 index 00000000..024a6888 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexdotbelow.glyph @@ -0,0 +1,330 @@ +{ +color = 6; +glyphname = ocircumflexdotbelow; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (105,0); +ref = dotbelowcomb; +}, +{ +pos = (39,-156); +ref = circumflexcomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (109,0); +ref = dotbelowcomb; +}, +{ +pos = (10,-137); +ref = circumflexcomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (248,0); +ref = dotbelowcomb; +}, +{ +pos = (141,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (194,0); +ref = dotbelowcomb; +}, +{ +pos = (56,-129); +ref = circumflexcomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (105,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (39,-156); +ref = circumflexcomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (110,0); +ref = dotbelowcomb; +}, +{ +pos = (11,-137); +ref = circumflexcomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (223,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (131,-155); +ref = circumflexcomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (179,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (57,-134); +ref = circumflexcomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (248,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (141,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (194,0); +ref = dotbelowcomb; +}, +{ +alignment = -1; +pos = (56,-129); +ref = circumflexcomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (222,0); +ref = dotbelowcomb; +}, +{ +pos = (132,-155); +ref = circumflexcomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (180,0); +ref = dotbelowcomb; +}, +{ +pos = (62,-134); +ref = circumflexcomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (118,0); +ref = dotbelowcomb; +}, +{ +pos = (3,-156); +ref = circumflexcomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (127,0); +ref = dotbelowcomb; +}, +{ +pos = (-22,-137); +ref = circumflexcomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (233,0); +ref = dotbelowcomb; +}, +{ +pos = (75,-155); +ref = circumflexcomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (206,0); +ref = dotbelowcomb; +}, +{ +pos = (18,-134); +ref = circumflexcomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (266,0); +ref = dotbelowcomb; +}, +{ +pos = (83,-155); +ref = circumflexcomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (229,0); +ref = dotbelowcomb; +}, +{ +pos = (14,-129); +ref = circumflexcomb; +} +); +width = 692; +} +); +unicode = 7897; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexdotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..54f22e0c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexdotbelow.ss01.glyph @@ -0,0 +1,329 @@ +{ +color = 6; +glyphname = ocircumflexdotbelow.ss01; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (113,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (39,-156); +ref = circumflexcomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (98,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (10,-137); +ref = circumflexcomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (261,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (141,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (206,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (56,-129); +ref = circumflexcomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (113,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (39,-156); +ref = circumflexcomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (99,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (11,-137); +ref = circumflexcomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (236,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (131,-155); +ref = circumflexcomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (168,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (57,-134); +ref = circumflexcomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (261,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (141,-155); +ref = circumflexcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (206,0); +ref = dotbelowcomb.ss01; +}, +{ +alignment = -1; +pos = (56,-129); +ref = circumflexcomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (235,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (132,-155); +ref = circumflexcomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (167,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (62,-134); +ref = circumflexcomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (126,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (3,-156); +ref = circumflexcomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (118,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-22,-137); +ref = circumflexcomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (246,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (75,-155); +ref = circumflexcomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (197,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (18,-134); +ref = circumflexcomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (83,-155); +ref = circumflexcomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (243,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (14,-129); +ref = circumflexcomb; +} +); +width = 692; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexgrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexgrave.glyph new file mode 100644 index 00000000..16176cdc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexgrave.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ocircumflexgrave; +kernLeft = KO_egrave; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (21,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (141,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (80,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (39,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (22,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (131,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (57,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (141,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (80,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (132,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (61,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,-156); +ref = circumflexcomb_gravecomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-10,-137); +ref = circumflexcomb_gravecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (75,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (20,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (83,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (37,-129); +ref = circumflexcomb_gravecomb; +} +); +width = 692; +} +); +unicode = 7891; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexhookabove.glyph new file mode 100644 index 00000000..ccaf4b70 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflexhookabove.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ocircumflexhookabove; +kernLeft = KO_egrave; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (21,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (141,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (80,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (39,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (22,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (131,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (57,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (141,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (80,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (132,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (61,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,-156); +ref = circumflexcomb_hookabovecomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-10,-137); +ref = circumflexcomb_hookabovecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (75,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (20,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (83,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (37,-129); +ref = circumflexcomb_hookabovecomb; +} +); +width = 692; +} +); +unicode = 7893; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflextilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflextilde.glyph new file mode 100644 index 00000000..882c207f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ocircumflextilde.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ocircumflextilde; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (21,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (141,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (80,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (39,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (22,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (131,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (57,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (141,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (80,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (132,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (62,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,-156); +ref = circumflexcomb_tildecomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-11,-137); +ref = circumflexcomb_tildecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (68,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (20,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (83,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (45,-129); +ref = circumflexcomb_tildecomb; +} +); +width = 692; +} +); +unicode = 7895; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/odieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/odieresis.glyph new file mode 100644 index 00000000..d6b590c5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/odieresis.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = odieresis; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (50,-156); +ref = dieresiscomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (2,-137); +ref = dieresiscomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (143,-155); +ref = dieresiscomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (64,-134); +ref = dieresiscomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (50,-156); +ref = dieresiscomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,-137); +ref = dieresiscomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (133,-155); +ref = dieresiscomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (61,-134); +ref = dieresiscomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (143,-155); +ref = dieresiscomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (64,-134); +ref = dieresiscomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (134,-155); +ref = dieresiscomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (66,-134); +ref = dieresiscomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (9,-156); +ref = dieresiscomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-37,-137); +ref = dieresiscomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (80,-155); +ref = dieresiscomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (18,-134); +ref = dieresiscomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (87,-155); +ref = dieresiscomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (21,-134); +ref = dieresiscomb; +} +); +width = 692; +} +); +unicode = 246; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/odieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/odieresis.ss01.glyph new file mode 100644 index 00000000..4dcbcf02 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/odieresis.ss01.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = odieresis.ss01; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (61,-156); +ref = dieresiscomb.ss01; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,-137); +ref = dieresiscomb.ss01; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (176,-155); +ref = dieresiscomb.ss01; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (86,-134); +ref = dieresiscomb.ss01; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (61,-156); +ref = dieresiscomb.ss01; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (4,-137); +ref = dieresiscomb.ss01; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (160,-155); +ref = dieresiscomb.ss01; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (73,-134); +ref = dieresiscomb.ss01; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (176,-155); +ref = dieresiscomb.ss01; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (86,-134); +ref = dieresiscomb.ss01; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (159,-155); +ref = dieresiscomb.ss01; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (78,-134); +ref = dieresiscomb.ss01; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (22,-156); +ref = dieresiscomb.ss01; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-29,-137); +ref = dieresiscomb.ss01; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (102,-155); +ref = dieresiscomb.ss01; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,-134); +ref = dieresiscomb.ss01; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (124,-155); +ref = dieresiscomb.ss01; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (50,-134); +ref = dieresiscomb.ss01; +} +); +width = 692; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/odotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/odotbelow.glyph new file mode 100644 index 00000000..971b3042 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/odotbelow.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = odotbelow; +kernLeft = KO_e; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (105,0); +ref = dotbelowcomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (109,0); +ref = dotbelowcomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (248,0); +ref = dotbelowcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (194,0); +ref = dotbelowcomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (105,0); +ref = dotbelowcomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (110,0); +ref = dotbelowcomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (223,0); +ref = dotbelowcomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (179,0); +ref = dotbelowcomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (248,0); +ref = dotbelowcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (194,0); +ref = dotbelowcomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (222,0); +ref = dotbelowcomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (180,0); +ref = dotbelowcomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (118,0); +ref = dotbelowcomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (127,0); +ref = dotbelowcomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (233,0); +ref = dotbelowcomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (206,0); +ref = dotbelowcomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (266,0); +ref = dotbelowcomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (229,0); +ref = dotbelowcomb; +} +); +width = 692; +} +); +unicode = 7885; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/odotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/odotbelow.ss01.glyph new file mode 100644 index 00000000..d473e0b3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/odotbelow.ss01.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = odotbelow.ss01; +kernLeft = KO_e; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (113,0); +ref = dotbelowcomb.ss01; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (98,0); +ref = dotbelowcomb.ss01; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (261,0); +ref = dotbelowcomb.ss01; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (206,0); +ref = dotbelowcomb.ss01; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (113,0); +ref = dotbelowcomb.ss01; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (99,0); +ref = dotbelowcomb.ss01; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (236,0); +ref = dotbelowcomb.ss01; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (168,0); +ref = dotbelowcomb.ss01; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (261,0); +ref = dotbelowcomb.ss01; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (206,0); +ref = dotbelowcomb.ss01; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (235,0); +ref = dotbelowcomb.ss01; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (167,0); +ref = dotbelowcomb.ss01; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (126,0); +ref = dotbelowcomb.ss01; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (118,0); +ref = dotbelowcomb.ss01; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (246,0); +ref = dotbelowcomb.ss01; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (197,0); +ref = dotbelowcomb.ss01; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (243,0); +ref = dotbelowcomb.ss01; +} +); +width = 692; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/oe.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/oe.glyph new file mode 100644 index 00000000..61824b52 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/oe.glyph @@ -0,0 +1,1502 @@ +{ +glyphname = oe; +kernLeft = KO_e; +kernRight = KO_e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = top; +pos = (275,516); +} +); +background = { +shapes = ( +{ +pos = (226,0); +ref = e; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-10,o), +(263,31,o), +(279,103,c), +(277,103,l), +(293,31,o), +(326,-10,o), +(388,-10,cs), +(449,-10,o), +(495,27,o), +(505,148,c), +(475,148,l), +(467,70,o), +(449,18,o), +(388,18,cs), +(310,18,o), +(292,131,o), +(292,254,cs), +(292,281,l), +(296,454,o), +(334,498,o), +(388,498,cs), +(433,498,o), +(470,462,o), +(473,281,c), +(482,289,l), +(285,289,l), +(286,260,l), +(503,260,l), +(502,419,o), +(479,526,o), +(388,526,cs), +(326,526,o), +(293,485,o), +(277,413,c), +(279,413,l), +(263,485,o), +(230,526,o), +(168,526,cs), +(67,526,o), +(44,416,o), +(44,258,cs), +(44,99,o), +(67,-10,o), +(168,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,17,o), +(73,64,o), +(73,258,cs), +(73,451,o), +(112,499,o), +(168,499,cs), +(225,499,o), +(263,450,o), +(263,258,cs), +(263,66,o), +(225,17,o), +(168,17,cs) +); +} +); +width = 544; +}, +{ +anchors = ( +{ +name = bottom; +pos = (346,0); +}, +{ +name = top; +pos = (346,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,-10,o), +(319,2,o), +(352,26,c), +(350,26,l), +(383,2,o), +(424,-10,o), +(475,-10,cs), +(601,-10,o), +(666,53,o), +(677,185,c), +(510,185,l), +(507,137,o), +(497,118,o), +(475,118,cs), +(450,118,o), +(440,155,o), +(440,264,cs), +(440,306,ls), +(440,388,o), +(452,422,o), +(475,422,cs), +(498,422,o), +(508,394,o), +(510,330,c), +(512,333,l), +(424,333,l), +(424,235,l), +(677,235,l), +(685,400,o), +(655,551,o), +(475,551,cs), +(422,551,o), +(381,540,o), +(350,516,c), +(352,516,l), +(321,539,o), +(279,551,o), +(226,551,cs), +(82,551,o), +(14,461,o), +(14,273,cs), +(14,83,o), +(84,-10,o), +(226,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,128,o), +(191,159,o), +(191,271,cs), +(191,384,o), +(198,414,o), +(226,414,cs), +(255,414,o), +(263,383,o), +(263,271,cs), +(263,160,o), +(255,128,o), +(226,128,cs) +); +} +); +width = 692; +}, +{ +anchors = ( +{ +name = bottom; +pos = (574,0); +}, +{ +name = top; +pos = (574,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,-10,o), +(548,53,o), +(588,153,c), +(586,153,l), +(625,53,o), +(720,-8,o), +(851,-8,cs), +(982,-8,o), +(1088,55,o), +(1108,152,c), +(1071,152,l), +(1050,76,o), +(962,26,o), +(851,26,cs), +(682,26,o), +(606,138,o), +(606,252,cs), +(606,270,ls), +(606,402,o), +(700,491,o), +(848,491,cs), +(983,491,o), +(1076,418,o), +(1076,287,c), +(1078,289,l), +(599,289,l), +(599,256,l), +(1115,256,l), +(1125,423,o), +(1019,525,o), +(848,525,cs), +(716,525,o), +(623,462,o), +(585,363,c), +(587,363,l), +(548,463,o), +(450,525,o), +(320,525,cs), +(149,525,o), +(34,418,o), +(34,257,cs), +(34,97,o), +(149,-10,o), +(320,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,25,o), +(72,117,o), +(72,257,cs), +(72,399,o), +(171,490,o), +(320,490,cs), +(470,490,o), +(568,399,o), +(568,257,cs), +(568,116,o), +(469,25,o), +(320,25,cs) +); +} +); +width = 1149; +}, +{ +anchors = ( +{ +name = bottom; +pos = (568,0); +}, +{ +name = top; +pos = (568,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(440,-10,o), +(517,11,o), +(574,51,c), +(572,51,l), +(630,11,o), +(707,-10,o), +(801,-10,cs), +(980,-10,o), +(1114,66,o), +(1127,179,c), +(919,179,l), +(907,153,o), +(862,135,o), +(807,135,cs), +(730,135,o), +(685,169,o), +(685,225,c), +(685,285,ls), +(685,380,o), +(729,408,o), +(798,408,cs), +(868,408,o), +(901,378,o), +(907,337,c), +(909,338,l), +(667,338,l), +(667,223,l), +(1125,223,l), +(1140,432,o), +(1016,554,o), +(799,554,cs), +(708,554,o), +(632,533,o), +(574,493,c), +(576,493,l), +(519,533,o), +(440,554,o), +(347,554,cs), +(143,554,o), +(10,452,o), +(10,272,cs), +(10,91,o), +(144,-10,o), +(347,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,157,o), +(231,201,o), +(231,272,cs), +(231,343,o), +(270,388,o), +(347,388,cs), +(424,388,o), +(464,344,o), +(464,272,cs), +(464,201,o), +(424,157,o), +(347,157,cs) +); +} +); +width = 1139; +}, +{ +anchors = ( +{ +name = bottom; +pos = (255,0); +}, +{ +name = top; +pos = (255,516); +} +); +background = { +shapes = ( +{ +pos = (226,0); +ref = e; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-10,o), +(243,31,o), +(259,103,c), +(257,103,l), +(273,31,o), +(306,-10,o), +(368,-10,cs), +(429,-10,o), +(475,27,o), +(485,148,c), +(455,148,l), +(447,70,o), +(429,18,o), +(368,18,cs), +(290,18,o), +(272,131,o), +(272,254,cs), +(272,281,l), +(276,454,o), +(314,498,o), +(368,498,cs), +(413,498,o), +(450,462,o), +(453,281,c), +(462,289,l), +(265,289,l), +(266,260,l), +(483,260,l), +(482,419,o), +(459,526,o), +(368,526,cs), +(306,526,o), +(273,485,o), +(257,413,c), +(259,413,l), +(243,485,o), +(210,526,o), +(148,526,cs), +(47,526,o), +(24,416,o), +(24,258,cs), +(24,99,o), +(47,-10,o), +(148,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(92,17,o), +(53,64,o), +(53,258,cs), +(53,451,o), +(92,499,o), +(148,499,cs), +(205,499,o), +(243,450,o), +(243,258,cs), +(243,66,o), +(205,17,o), +(148,17,cs) +); +} +); +width = 504; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-10,o), +(310,2,o), +(343,26,c), +(341,26,l), +(374,2,o), +(415,-10,o), +(466,-10,cs), +(592,-10,o), +(657,53,o), +(668,185,c), +(501,185,l), +(498,137,o), +(488,118,o), +(466,118,cs), +(441,118,o), +(431,155,o), +(431,264,cs), +(431,306,ls), +(431,388,o), +(443,422,o), +(466,422,cs), +(489,422,o), +(499,394,o), +(501,330,c), +(503,333,l), +(415,333,l), +(415,235,l), +(668,235,l), +(676,400,o), +(646,551,o), +(466,551,cs), +(413,551,o), +(372,540,o), +(341,516,c), +(343,516,l), +(312,539,o), +(270,551,o), +(217,551,cs), +(73,551,o), +(5,461,o), +(5,273,cs), +(5,83,o), +(75,-10,o), +(217,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,128,o), +(182,159,o), +(182,271,cs), +(182,384,o), +(189,414,o), +(217,414,cs), +(246,414,o), +(254,383,o), +(254,271,cs), +(254,160,o), +(246,128,o), +(217,128,cs) +); +} +); +width = 674; +}, +{ +anchors = ( +{ +name = bottom; +pos = (485,0); +}, +{ +name = top; +pos = (485,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(390,-8,o), +(474,60,o), +(505,165,c), +(492,166,l), +(520,59,o), +(602,-8,o), +(717,-8,cs), +(829,-8,o), +(918,55,o), +(935,152,c), +(897,152,l), +(880,76,o), +(814,26,o), +(717,26,cs), +(595,26,o), +(517,114,o), +(517,267,cs), +(517,270,ls), +(517,411,o), +(598,491,o), +(714,491,cs), +(832,491,o), +(910,417,o), +(900,261,c), +(932,289,l), +(510,289,l), +(509,256,l), +(936,256,l), +(950,410,o), +(873,525,o), +(715,525,cs), +(599,525,o), +(519,457,o), +(492,351,c), +(505,352,l), +(474,457,o), +(390,525,o), +(276,525,cs), +(130,525,o), +(32,415,o), +(32,257,cs), +(32,100,o), +(130,-8,o), +(276,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(149,28,o), +(70,120,o), +(70,257,cs), +(70,400,o), +(153,490,o), +(276,490,cs), +(402,490,o), +(479,397,o), +(479,258,cs), +(479,117,o), +(397,28,o), +(275,28,cs) +); +} +); +width = 972; +}, +{ +anchors = ( +{ +name = bottom; +pos = (462,0); +}, +{ +name = top; +pos = (462,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,-10,o), +(459,26,o), +(506,87,c), +(430,87,l), +(476,26,o), +(553,-10,o), +(654,-10,cs), +(797,-10,o), +(901,65,o), +(913,177,c), +(734,177,l), +(726,150,o), +(694,132,o), +(654,132,cs), +(600,132,o), +(563,164,o), +(563,222,cs), +(563,332,ls), +(563,380,o), +(595,413,o), +(647,413,cs), +(695,413,o), +(729,384,o), +(729,334,c), +(755,341,l), +(547,341,l), +(547,227,l), +(917,227,l), +(937,415,o), +(844,554,o), +(647,554,cs), +(553,554,o), +(477,517,o), +(429,453,c), +(509,453,l), +(460,520,o), +(380,554,o), +(283,554,cs), +(104,554,o), +(4,441,o), +(4,272,cs), +(4,92,o), +(116,-10,o), +(283,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,143,o), +(197,179,o), +(197,272,cs), +(197,365,o), +(231,401,o), +(283,401,cs), +(335,401,o), +(369,365,o), +(369,272,cs), +(369,179,o), +(335,143,o), +(283,143,cs) +); +} +); +width = 925; +}, +{ +anchors = ( +{ +name = bottom; +pos = (564,0); +}, +{ +name = top; +pos = (564,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-10,o), +(538,53,o), +(578,153,c), +(576,153,l), +(615,53,o), +(710,-8,o), +(841,-8,cs), +(972,-8,o), +(1078,55,o), +(1098,152,c), +(1061,152,l), +(1040,76,o), +(952,26,o), +(841,26,cs), +(672,26,o), +(596,138,o), +(596,252,cs), +(596,270,ls), +(596,402,o), +(690,491,o), +(838,491,cs), +(973,491,o), +(1066,418,o), +(1066,287,c), +(1068,289,l), +(589,289,l), +(589,256,l), +(1105,256,l), +(1115,423,o), +(1009,525,o), +(838,525,cs), +(706,525,o), +(613,462,o), +(575,363,c), +(577,363,l), +(538,463,o), +(440,525,o), +(310,525,cs), +(139,525,o), +(24,418,o), +(24,257,cs), +(24,97,o), +(139,-10,o), +(310,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,25,o), +(62,117,o), +(62,257,cs), +(62,399,o), +(161,490,o), +(310,490,cs), +(460,490,o), +(558,399,o), +(558,257,cs), +(558,116,o), +(459,25,o), +(310,25,cs) +); +} +); +width = 1129; +}, +{ +anchors = ( +{ +name = bottom; +pos = (558,0); +}, +{ +name = top; +pos = (558,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-10,o), +(507,11,o), +(564,51,c), +(562,51,l), +(620,11,o), +(697,-10,o), +(791,-10,cs), +(970,-10,o), +(1104,66,o), +(1117,179,c), +(909,179,l), +(897,153,o), +(852,135,o), +(797,135,cs), +(720,135,o), +(675,169,o), +(675,225,c), +(675,285,ls), +(675,380,o), +(719,408,o), +(788,408,cs), +(858,408,o), +(891,378,o), +(897,337,c), +(899,338,l), +(657,338,l), +(657,223,l), +(1115,223,l), +(1130,432,o), +(1006,554,o), +(789,554,cs), +(698,554,o), +(622,533,o), +(564,493,c), +(566,493,l), +(509,533,o), +(430,554,o), +(337,554,cs), +(133,554,o), +(0,452,o), +(0,272,cs), +(0,91,o), +(134,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,157,o), +(221,201,o), +(221,272,cs), +(221,343,o), +(260,388,o), +(337,388,cs), +(414,388,o), +(454,344,o), +(454,272,cs), +(454,201,o), +(414,157,o), +(337,157,cs) +); +} +); +width = 1119; +}, +{ +anchors = ( +{ +name = bottom; +pos = (498,0); +}, +{ +name = top; +pos = (498,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-8,o), +(487,60,o), +(518,165,c), +(505,166,l), +(533,59,o), +(613,-8,o), +(726,-8,cs), +(836,-8,o), +(923,55,o), +(939,152,c), +(902,152,l), +(885,76,o), +(821,26,o), +(726,26,cs), +(606,26,o), +(530,114,o), +(530,267,cs), +(530,270,ls), +(530,411,o), +(609,491,o), +(723,491,cs), +(838,491,o), +(915,417,o), +(905,261,c), +(936,289,l), +(523,289,l), +(522,256,l), +(940,256,l), +(953,410,o), +(878,525,o), +(724,525,cs), +(610,525,o), +(532,457,o), +(505,351,c), +(518,352,l), +(487,457,o), +(405,525,o), +(293,525,cs), +(150,525,o), +(53,415,o), +(53,257,cs), +(53,100,o), +(150,-8,o), +(293,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,28,o), +(91,120,o), +(91,257,cs), +(91,400,o), +(172,490,o), +(293,490,cs), +(417,490,o), +(492,397,o), +(492,258,cs), +(492,117,o), +(412,28,o), +(292,28,cs) +); +} +); +width = 997; +}, +{ +anchors = ( +{ +name = bottom; +pos = (472,0); +}, +{ +name = top; +pos = (472,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(398,-10,o), +(470,27,o), +(516,87,c), +(441,87,l), +(485,27,o), +(559,-10,o), +(659,-10,cs), +(800,-10,o), +(902,65,o), +(914,177,c), +(737,177,l), +(729,150,o), +(698,132,o), +(659,132,cs), +(608,132,o), +(572,164,o), +(572,222,cs), +(572,332,ls), +(572,380,o), +(603,413,o), +(652,413,cs), +(699,413,o), +(732,384,o), +(732,334,c), +(757,341,l), +(556,341,l), +(556,227,l), +(918,227,l), +(938,416,o), +(845,554,o), +(652,554,cs), +(559,554,o), +(486,516,o), +(440,453,c), +(519,453,l), +(471,519,o), +(394,554,o), +(297,554,cs), +(122,554,o), +(24,441,o), +(24,272,cs), +(24,92,o), +(134,-10,o), +(297,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,143,o), +(215,179,o), +(215,272,cs), +(215,365,o), +(248,401,o), +(297,401,cs), +(347,401,o), +(380,365,o), +(380,272,cs), +(380,179,o), +(347,143,o), +(297,143,cs) +); +} +); +width = 944; +}, +{ +anchors = ( +{ +name = bottom; +pos = (232,0); +}, +{ +name = top; +pos = (328,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-9,o), +(219,31,o), +(247,101,c), +(246,101,l), +(250,32,o), +(276,-10,o), +(341,-10,cs), +(394,-10,o), +(448,25,o), +(480,148,c), +(450,148,l), +(429,70,o), +(398,18,o), +(345,18,cs), +(260,18,o), +(265,129,o), +(295,270,cs), +(298,284,ls), +(327,417,o), +(364,497,o), +(430,497,cs), +(503,497,o), +(495,397,o), +(477,286,c), +(479,288,l), +(291,288,l), +(286,260,l), +(502,260,l), +(530,405,o), +(534,525,o), +(434,525,cs), +(377,525,o), +(337,485,o), +(308,417,c), +(309,417,l), +(305,481,o), +(281,525,o), +(214,525,cs), +(132,525,o), +(83,444,o), +(46,267,cs), +(15,120,o), +(6,-9,o), +(122,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(35,18,o), +(49,140,o), +(75,267,cs), +(112,446,o), +(160,498,o), +(212,498,cs), +(297,498,o), +(288,376,o), +(263,257,cs), +(222,61,o), +(176,18,o), +(125,18,cs) +); +} +); +width = 543; +}, +{ +anchors = ( +{ +name = bottom; +pos = (299,0); +}, +{ +name = top; +pos = (401,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,-10,o), +(278,1,o), +(313,27,c), +(311,27,l), +(341,2,o), +(383,-10,o), +(439,-10,cs), +(539,-10,o), +(620,38,o), +(658,186,c), +(492,186,l), +(478,135,o), +(465,119,o), +(445,119,cs), +(411,119,o), +(419,178,o), +(439,262,cs), +(447,301,ls), +(465,395,o), +(483,421,o), +(505,421,cs), +(532,421,o), +(531,381,o), +(522,332,c), +(524,334,l), +(438,334,l), +(417,235,l), +(668,235,l), +(713,425,o), +(688,551,o), +(511,551,cs), +(462,551,o), +(422,540,o), +(388,516,c), +(390,516,l), +(360,539,o), +(318,551,o), +(261,551,cs), +(142,551,o), +(58,481,o), +(18,288,cs), +(-24,90,o), +(29,-10,o), +(190,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,128,o), +(169,178,o), +(190,278,cs), +(213,386,o), +(227,414,o), +(254,414,cs), +(291,414,o), +(280,354,o), +(261,265,cs), +(239,165,o), +(224,128,o), +(198,128,cs) +); +} +); +width = 690; +}, +{ +anchors = ( +{ +name = bottom; +pos = (450,0); +}, +{ +name = top; +pos = (548,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,-10,o), +(446,51,o), +(491,148,c), +(490,149,l), +(509,51,o), +(579,-10,o), +(679,-10,cs), +(790,-10,o), +(886,55,o), +(912,153,c), +(875,153,l), +(850,75,o), +(775,24,o), +(682,24,cs), +(568,24,o), +(497,122,o), +(524,269,cs), +(526,280,ls), +(553,426,o), +(645,494,o), +(744,494,cs), +(851,494,o), +(918,418,o), +(897,289,c), +(899,291,l), +(521,291,l), +(515,258,l), +(927,258,l), +(959,415,o), +(895,527,o), +(750,527,cs), +(646,527,o), +(562,464,o), +(518,368,c), +(519,367,l), +(500,465,o), +(430,528,o), +(326,528,cs), +(169,528,o), +(57,403,o), +(50,221,cs), +(46,82,o), +(125,-10,o), +(251,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(149,23,o), +(83,93,o), +(87,220,cs), +(93,386,o), +(186,495,o), +(321,495,cs), +(427,495,o), +(494,421,o), +(490,297,cs), +(484,134,o), +(390,23,o), +(255,23,cs) +); +} +); +width = 985; +}, +{ +anchors = ( +{ +name = bottom; +pos = (424,0); +}, +{ +name = top; +pos = (506,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(401,9,o), +(449,46,c), +(447,46,l), +(487,10,o), +(545,-10,o), +(618,-10,cs), +(758,-10,o), +(868,65,o), +(892,177,c), +(713,177,l), +(704,153,o), +(674,132,o), +(631,132,cs), +(577,132,o), +(543,158,o), +(563,254,cs), +(578,325,ls), +(589,376,o), +(612,413,o), +(666,413,cs), +(711,413,o), +(737,383,o), +(736,339,c), +(738,341,l), +(564,341,l), +(542,227,l), +(904,227,l), +(948,437,o), +(851,554,o), +(680,554,cs), +(608,554,o), +(546,534,o), +(497,498,c), +(499,498,l), +(456,535,o), +(396,554,o), +(324,554,cs), +(147,554,o), +(31,430,o), +(24,232,cs), +(18,72,o), +(119,-10,o), +(269,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(238,143,o), +(211,174,o), +(213,234,cs), +(217,336,o), +(257,401,o), +(315,401,cs), +(356,401,o), +(382,370,o), +(380,310,cs), +(377,209,o), +(338,143,o), +(279,143,cs) +); +} +); +width = 938; +}, +{ +anchors = ( +{ +name = bottom; +pos = (526,0); +}, +{ +name = top; +pos = (624,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-10,o), +(517,55,o), +(567,156,c), +(566,156,l), +(591,55,o), +(685,-9,o), +(809,-9,cs), +(940,-9,o), +(1051,57,o), +(1082,152,c), +(1045,152,l), +(1013,76,o), +(926,25,o), +(815,25,cs), +(665,25,o), +(568,123,o), +(600,269,cs), +(602,278,ls), +(629,407,o), +(730,493,o), +(867,493,cs), +(1007,493,o), +(1087,412,o), +(1070,287,c), +(1072,289,l), +(597,289,l), +(590,256,l), +(1102,256,l), +(1137,418,o), +(1042,527,o), +(870,527,cs), +(743,527,o), +(640,460,o), +(590,359,c), +(591,359,l), +(567,461,o), +(479,527,o), +(348,527,cs), +(169,527,o), +(39,405,o), +(33,230,cs), +(28,85,o), +(125,-10,o), +(284,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,24,o), +(66,98,o), +(71,232,cs), +(76,387,o), +(188,493,o), +(344,493,cs), +(480,493,o), +(566,418,o), +(561,285,cs), +(556,131,o), +(444,24,o), +(288,24,cs) +); +} +); +width = 1138; +}, +{ +anchors = ( +{ +name = bottom; +pos = (517,0); +}, +{ +name = top; +pos = (605,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,-10,o), +(491,11,o), +(550,52,c), +(548,52,l), +(600,13,o), +(671,-8,o), +(756,-9,cs), +(948,-13,o), +(1069,63,o), +(1099,180,c), +(884,180,l), +(868,156,o), +(828,139,o), +(773,140,cs), +(715,141,o), +(667,170,o), +(673,222,cs), +(684,313,ls), +(691,378,o), +(738,405,o), +(802,405,cs), +(857,405,o), +(899,381,o), +(903,339,c), +(905,340,l), +(673,340,l), +(657,222,l), +(1099,222,l), +(1143,427,o), +(1022,554,o), +(811,554,cs), +(719,554,o), +(643,532,o), +(585,492,c), +(587,492,l), +(534,532,o), +(458,554,o), +(364,554,cs), +(153,554,o), +(16,437,o), +(10,252,cs), +(4,93,o), +(121,-10,o), +(322,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,157,o), +(227,197,o), +(229,259,cs), +(232,337,o), +(279,387,o), +(355,387,cs), +(417,387,o), +(461,347,o), +(458,285,cs), +(456,207,o), +(408,157,o), +(332,157,cs) +); +} +); +width = 1127; +} +); +metricLeft = o; +metricRight = e; +unicode = 339; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ogonek.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ogonek.glyph new file mode 100644 index 00000000..34410c87 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ogonek.glyph @@ -0,0 +1,325 @@ +{ +color = 6; +glyphname = ogonek; +layers = ( +{ +background = { +anchors = ( +{ +name = _ogonek; +pos = (126,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(132,-156,o), +(147,-154,o), +(155,-149,c), +(155,-127,l), +(146,-132,o), +(134,-134,o), +(121,-134,cs), +(93,-134,o), +(75,-118,o), +(75,-89,cs), +(75,-63,o), +(87,-35,o), +(126,0,c), +(115,16,l), +(76,-12,o), +(49,-51,o), +(49,-91,cs), +(49,-130,o), +(75,-156,o), +(120,-156,cs) +); +} +); +}; +guides = ( +{ +pos = (125,-155); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 185; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(217,-209,o), +(252,-202,o), +(269,-192,c), +(269,-92,l), +(257,-99,o), +(242,-104,o), +(224,-104,cs), +(193,-104,o), +(178,-88,o), +(178,-63,cs), +(178,-38,o), +(193,-10,o), +(228,0,c), +(114,14,l), +(73,-2,o), +(45,-48,o), +(45,-100,cs), +(45,-170,o), +(100,-209,o), +(183,-209,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 245; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 243; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 358; +}, +{ +background = { +anchors = ( +{ +name = _ogonek; +pos = (126,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(132,-156,o), +(147,-154,o), +(155,-149,c), +(155,-127,l), +(146,-132,o), +(134,-134,o), +(121,-134,cs), +(93,-134,o), +(75,-118,o), +(75,-89,cs), +(75,-63,o), +(87,-35,o), +(126,0,c), +(115,16,l), +(76,-12,o), +(49,-51,o), +(49,-91,cs), +(49,-130,o), +(75,-156,o), +(120,-156,cs) +); +} +); +}; +guides = ( +{ +pos = (125,-155); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = ogonekcomb; +} +); +width = 185; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(217,-209,o), +(252,-202,o), +(269,-192,c), +(269,-92,l), +(257,-99,o), +(242,-104,o), +(224,-104,cs), +(193,-104,o), +(178,-88,o), +(178,-63,cs), +(178,-38,o), +(193,-10,o), +(228,0,c), +(114,14,l), +(73,-2,o), +(45,-48,o), +(45,-100,cs), +(45,-170,o), +(100,-209,o), +(183,-209,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = ogonekcomb; +} +); +width = 245; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = ogonekcomb; +} +); +width = 217; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = ogonekcomb; +} +); +width = 310; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = ogonekcomb; +} +); +width = 243; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = ogonekcomb; +} +); +width = 358; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 218; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 315; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 187; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 250; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 219; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 334; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 235; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 362; +} +); +unicode = 731; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ogonekcomb.e.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ogonekcomb.e.glyph new file mode 100644 index 00000000..ca59ee24 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ogonekcomb.e.glyph @@ -0,0 +1,963 @@ +{ +export = 0; +glyphname = ogonekcomb.e; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (121,0); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(127,-199,o), +(143,-197,o), +(152,-193,c), +(152,-169,l), +(144,-173,o), +(129,-175,o), +(120,-175,cs), +(85,-175,o), +(67,-156,o), +(67,-123,cs), +(67,-82,o), +(93,-41,o), +(143,21,c), +(131,30,l), +(81,-23,o), +(40,-74,o), +(40,-125,cs), +(40,-172,o), +(69,-199,o), +(114,-199,cs) +); +} +); +width = 192; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (203,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (221,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(173,-201,o), +(210,-196,o), +(229,-189,c), +(229,-94,l), +(217,-98,o), +(200,-99,o), +(190,-99,cs), +(153,-99,o), +(139,-87,o), +(139,-67,cs), +(139,-43,o), +(157,-29,o), +(192,-6,cs), +(217,11,l), +(175,81,l), +(149,68,ls), +(34,11,o), +(-10,-28,o), +(-10,-97,cs), +(-10,-165,o), +(48,-201,o), +(140,-201,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(171,-202,o), +(202,-195,o), +(217,-187,c), +(217,-114,l), +(208,-118,o), +(193,-121,o), +(179,-121,cs), +(156,-121,o), +(143,-109,o), +(143,-88,cs), +(143,-57,o), +(172,-21,o), +(228,34,c), +(205,52,l), +(99,3,o), +(40,-58,o), +(40,-120,cs), +(40,-170,o), +(74,-202,o), +(138,-202,cs) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (129,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,-211,o), +(189,-208,o), +(206,-201,c), +(206,-173,l), +(190,-179,o), +(170,-182,o), +(149,-182,cs), +(100,-182,o), +(73,-161,o), +(73,-123,cs), +(73,-61,o), +(146,-19,o), +(217,35,c), +(169,31,l), +(115,-8,o), +(40,-56,o), +(40,-127,cs), +(40,-179,o), +(77,-211,o), +(143,-211,cs) +); +} +); +width = 257; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (268,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,-227,o), +(267,-222,o), +(298,-210,c), +(298,-94,l), +(276,-102,o), +(243,-106,o), +(220,-106,cs), +(194,-106,o), +(164,-100,o), +(164,-72,cs), +(164,-32,o), +(237,-8,o), +(291,17,c), +(246,108,l), +(90,47,o), +(-12,10,o), +(-12,-100,cs), +(-12,-176,o), +(52,-227,o), +(171,-227,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,-229,o), +(304,-219,o), +(335,-205,c), +(335,-94,l), +(317,-102,o), +(289,-107,o), +(267,-107,cs), +(233,-107,o), +(215,-94,o), +(215,-69,cs), +(215,-38,o), +(245,-12,o), +(320,30,c), +(235,38,l), +(128,11,o), +(40,-42,o), +(40,-123,cs), +(40,-190,o), +(98,-229,o), +(195,-229,cs) +); +} +); +width = 375; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (101,0); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(107,-199,o), +(123,-197,o), +(132,-193,c), +(132,-169,l), +(124,-173,o), +(109,-175,o), +(100,-175,cs), +(65,-175,o), +(47,-156,o), +(47,-123,cs), +(47,-82,o), +(73,-41,o), +(123,21,c), +(111,30,l), +(61,-23,o), +(20,-74,o), +(20,-125,cs), +(20,-172,o), +(49,-199,o), +(94,-199,cs) +); +} +); +width = 152; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (193,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (221,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(173,-201,o), +(210,-196,o), +(229,-189,c), +(229,-94,l), +(217,-98,o), +(200,-99,o), +(190,-99,cs), +(153,-99,o), +(139,-87,o), +(139,-67,cs), +(139,-43,o), +(157,-29,o), +(192,-6,cs), +(217,11,l), +(175,81,l), +(149,68,ls), +(34,11,o), +(-10,-28,o), +(-10,-97,cs), +(-10,-165,o), +(48,-201,o), +(140,-201,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,-202,o), +(192,-195,o), +(207,-187,c), +(207,-114,l), +(198,-118,o), +(183,-121,o), +(169,-121,cs), +(146,-121,o), +(133,-109,o), +(133,-88,cs), +(133,-57,o), +(162,-21,o), +(218,34,c), +(195,52,l), +(89,3,o), +(30,-58,o), +(30,-120,cs), +(30,-170,o), +(64,-202,o), +(128,-202,cs) +); +} +); +width = 248; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (115,-2); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (135,-2); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(152,-198,o), +(171,-195,o), +(184,-190,c), +(184,-163,l), +(167,-169,o), +(147,-170,o), +(137,-170,cs), +(94,-170,o), +(71,-149,o), +(71,-113,cs), +(71,-57,o), +(126,-19,o), +(197,34,c), +(185,51,l), +(108,-2,o), +(38,-48,o), +(38,-115,cs), +(38,-165,o), +(73,-198,o), +(133,-198,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(132,-198,o), +(151,-195,o), +(164,-190,c), +(164,-163,l), +(147,-169,o), +(127,-170,o), +(117,-170,cs), +(72,-170,o), +(51,-150,o), +(51,-115,cs), +(51,-58,o), +(113,-16,o), +(177,34,c), +(165,51,l), +(94,1,o), +(20,-48,o), +(20,-121,cs), +(20,-169,o), +(54,-198,o), +(111,-198,cs) +); +} +); +width = 197; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (225,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(205,-208,o), +(248,-200,o), +(266,-192,c), +(266,-99,l), +(252,-104,o), +(235,-107,o), +(221,-107,cs), +(192,-107,o), +(178,-95,o), +(178,-75,cs), +(178,-42,o), +(218,-16,o), +(285,36,c), +(248,52,l), +(136,20,o), +(40,-31,o), +(40,-112,cs), +(40,-173,o), +(88,-208,o), +(167,-208,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,-208,o), +(227,-200,o), +(245,-192,c), +(245,-113,l), +(234,-118,o), +(220,-121,o), +(203,-121,cs), +(174,-121,o), +(157,-106,o), +(157,-82,cs), +(157,-42,o), +(197,-16,o), +(264,36,c), +(227,52,l), +(115,20,o), +(19,-31,o), +(19,-112,cs), +(19,-173,o), +(67,-208,o), +(146,-208,cs) +); +} +); +width = 283; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (119,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-211,o), +(179,-208,o), +(196,-201,c), +(196,-173,l), +(180,-179,o), +(160,-182,o), +(139,-182,cs), +(90,-182,o), +(63,-161,o), +(63,-123,cs), +(63,-61,o), +(136,-19,o), +(207,35,c), +(159,31,l), +(105,-8,o), +(30,-56,o), +(30,-127,cs), +(30,-179,o), +(67,-211,o), +(133,-211,cs) +); +} +); +width = 237; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (258,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,-227,o), +(267,-222,o), +(298,-210,c), +(298,-94,l), +(276,-102,o), +(243,-106,o), +(220,-106,cs), +(194,-106,o), +(164,-100,o), +(164,-72,cs), +(164,-32,o), +(237,-8,o), +(291,17,c), +(246,108,l), +(90,47,o), +(-12,10,o), +(-12,-100,cs), +(-12,-176,o), +(52,-227,o), +(171,-227,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,-229,o), +(294,-219,o), +(325,-205,c), +(325,-94,l), +(307,-102,o), +(279,-107,o), +(257,-107,cs), +(223,-107,o), +(205,-94,o), +(205,-69,cs), +(205,-38,o), +(235,-12,o), +(310,30,c), +(225,38,l), +(118,11,o), +(30,-42,o), +(30,-123,cs), +(30,-190,o), +(88,-229,o), +(185,-229,cs) +); +} +); +width = 355; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (130,-2); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (135,-2); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(152,-198,o), +(171,-195,o), +(184,-190,c), +(184,-163,l), +(167,-169,o), +(147,-170,o), +(137,-170,cs), +(94,-170,o), +(71,-149,o), +(71,-113,cs), +(71,-57,o), +(126,-19,o), +(197,34,c), +(185,51,l), +(108,-2,o), +(38,-48,o), +(38,-115,cs), +(38,-165,o), +(73,-198,o), +(133,-198,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(147,-198,o), +(164,-195,o), +(177,-190,c), +(177,-163,l), +(160,-169,o), +(142,-170,o), +(132,-170,cs), +(87,-170,o), +(66,-150,o), +(66,-115,cs), +(66,-58,o), +(128,-16,o), +(190,34,c), +(178,51,l), +(109,1,o), +(37,-48,o), +(37,-121,cs), +(37,-169,o), +(69,-198,o), +(126,-198,cs) +); +} +); +width = 227; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (234,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(205,-208,o), +(248,-200,o), +(266,-192,c), +(266,-99,l), +(252,-104,o), +(235,-107,o), +(221,-107,cs), +(192,-107,o), +(178,-95,o), +(178,-75,cs), +(178,-42,o), +(218,-16,o), +(285,36,c), +(248,52,l), +(136,20,o), +(40,-31,o), +(40,-112,cs), +(40,-173,o), +(88,-208,o), +(167,-208,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-208,o), +(233,-200,o), +(249,-192,c), +(249,-113,l), +(240,-118,o), +(229,-121,o), +(212,-121,cs), +(187,-121,o), +(171,-106,o), +(171,-82,cs), +(171,-42,o), +(207,-15,o), +(267,36,c), +(231,52,l), +(125,20,o), +(35,-31,o), +(35,-112,cs), +(35,-173,o), +(80,-208,o), +(154,-208,cs) +); +} +); +width = 302; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (66,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(33,-199,o), +(50,-197,o), +(60,-193,c), +(64,-169,l), +(56,-173,o), +(39,-175,o), +(31,-175,cs), +(2,-175,o), +(-13,-161,o), +(-13,-137,cs), +(-13,-92,o), +(30,-41,o), +(92,21,c), +(82,30,l), +(22,-23,o), +(-41,-82,o), +(-41,-144,cs), +(-41,-179,o), +(-18,-199,o), +(21,-199,cs) +); +} +); +width = 193; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (143,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,-202,o), +(104,-197,o), +(125,-187,c), +(139,-114,l), +(129,-118,o), +(116,-121,o), +(102,-121,cs), +(79,-121,o), +(69,-112,o), +(69,-96,cs), +(69,-63,o), +(113,-23,o), +(181,34,c), +(159,52,l), +(33,-3,o), +(-41,-62,o), +(-41,-129,cs), +(-41,-174,o), +(-7,-202,o), +(47,-202,cs) +); +} +); +width = 270; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (73,-2); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,-198,o), +(81,-195,o), +(92,-190,c), +(98,-163,l), +(79,-169,o), +(64,-170,o), +(53,-170,cs), +(12,-170,o), +(-8,-155,o), +(-8,-124,cs), +(-8,-66,o), +(64,-18,o), +(142,30,c), +(136,43,l), +(21,-8,o), +(-39,-71,o), +(-39,-130,cs), +(-39,-172,o), +(-8,-198,o), +(42,-198,cs) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (175,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(110,-208,o), +(146,-202,o), +(170,-192,c), +(189,-99,l), +(176,-104,o), +(160,-107,o), +(145,-107,cs), +(118,-107,o), +(104,-97,o), +(104,-78,cs), +(104,-45,o), +(140,-19,o), +(234,36,c), +(200,52,l), +(40,14,o), +(-39,-49,o), +(-39,-120,cs), +(-39,-174,o), +(7,-208,o), +(75,-208,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,-208,o), +(146,-202,o), +(170,-192,c), +(189,-112,l), +(177,-117,o), +(161,-120,o), +(146,-120,cs), +(120,-120,o), +(104,-107,o), +(104,-84,cs), +(104,-43,o), +(153,-15,o), +(234,36,c), +(200,52,l), +(40,14,o), +(-39,-49,o), +(-39,-120,cs), +(-39,-174,o), +(7,-208,o), +(75,-208,cs) +); +} +); +width = 323; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (79,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,-211,o), +(102,-206,o), +(112,-201,c), +(117,-173,l), +(100,-179,o), +(75,-182,o), +(56,-182,cs), +(13,-182,o), +(-8,-167,o), +(-8,-134,cs), +(-8,-69,o), +(84,-18,o), +(168,35,c), +(125,34,l), +(44,-10,o), +(-41,-68,o), +(-41,-141,cs), +(-41,-184,o), +(-8,-211,o), +(47,-211,cs) +); +} +); +width = 254; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (223,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-229,o), +(202,-221,o), +(239,-205,c), +(261,-94,l), +(240,-103,o), +(214,-107,o), +(194,-107,cs), +(160,-107,o), +(145,-96,o), +(145,-75,cs), +(145,-41,o), +(187,-12,o), +(270,30,c), +(186,38,l), +(45,4,o), +(-42,-60,o), +(-42,-135,cs), +(-42,-193,o), +(11,-229,o), +(101,-229,cs) +); +} +); +width = 378; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ogonekcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ogonekcomb.glyph new file mode 100644 index 00000000..92961752 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ogonekcomb.glyph @@ -0,0 +1,1606 @@ +{ +glyphname = ogonekcomb; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (197,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (271,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(215,-205,o), +(247,-200,o), +(264,-193,c), +(264,-98,l), +(256,-101,o), +(243,-103,o), +(231,-103,cs), +(206,-103,o), +(190,-94,o), +(190,-71,cs), +(190,-53,o), +(203,-36,o), +(237,-16,cs), +(265,0,l), +(221,86,l), +(201,76,ls), +(91,21,o), +(40,-19,o), +(40,-93,cs), +(40,-160,o), +(91,-205,o), +(182,-205,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,-192,o), +(191,-187,o), +(205,-180,c), +(205,-115,l), +(198,-117,o), +(191,-119,o), +(182,-119,cs), +(157,-119,o), +(147,-107,o), +(147,-89,cs), +(147,-64,o), +(167,-31,o), +(197,0,c), +(195,11,l), +(119,11,l), +(69,-31,o), +(40,-74,o), +(40,-115,cs), +(40,-163,o), +(76,-192,o), +(137,-192,cs) +); +} +); +width = 245; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (135,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (134,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(120,-186,o), +(135,-184,o), +(145,-180,c), +(145,-156,l), +(136,-159,o), +(125,-161,o), +(113,-161,cs), +(79,-161,o), +(65,-144,o), +(65,-120,cs), +(65,-85,o), +(91,-42,o), +(135,0,c), +(132,12,l), +(118,14,l), +(69,-32,o), +(38,-82,o), +(38,-122,cs), +(38,-162,o), +(64,-186,o), +(106,-186,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(122,-187,o), +(137,-184,o), +(145,-180,c), +(145,-156,l), +(135,-160,o), +(122,-162,o), +(111,-162,cs), +(78,-162,o), +(67,-143,o), +(67,-119,cs), +(67,-85,o), +(91,-42,o), +(135,0,c), +(132,8,l), +(112,8,l), +(67,-35,o), +(40,-85,o), +(40,-122,cs), +(40,-163,o), +(66,-187,o), +(107,-187,cs) +); +} +); +width = 185; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (183,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (153,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(-161,-201,o), +(-141,-196,o), +(-129,-190,c), +(-129,-162,l), +(-144,-169,o), +(-162,-173,o), +(-181,-173,cs), +(-227,-173,o), +(-253,-151,o), +(-253,-114,cs), +(-253,-69,o), +(-222,-45,o), +(-164,-12,cs), +(-143,0,l), +(-154,24,l), +(-175,13,ls), +(-240,-21,o), +(-285,-56,o), +(-285,-114,cs), +(-285,-168,o), +(-245,-201,o), +(-183,-201,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,-209,o), +(157,-207,o), +(174,-201,c), +(174,-173,l), +(158,-178,o), +(137,-180,o), +(117,-180,cs), +(76,-180,o), +(41,-164,o), +(41,-123,cs), +(41,-88,o), +(62,-61,o), +(129,-18,cs), +(157,0,l), +(142,26,l), +(115,9,ls), +(51,-32,o), +(8,-69,o), +(8,-125,cs), +(8,-184,o), +(56,-209,o), +(115,-209,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,-209,o), +(191,-204,o), +(203,-198,c), +(203,-170,l), +(188,-176,o), +(166,-180,o), +(146,-180,cs), +(98,-180,o), +(73,-161,o), +(73,-126,cs), +(73,-79,o), +(117,-40,o), +(183,0,c), +(170,19,l), +(167,19,l), +(95,-21,o), +(40,-71,o), +(40,-129,cs), +(40,-179,o), +(77,-209,o), +(140,-209,cs) +); +} +); +width = 243; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (307,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (289,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(228,-221,o), +(271,-214,o), +(299,-201,c), +(299,-123,l), +(288,-128,o), +(269,-132,o), +(253,-132,cs), +(220,-132,o), +(201,-115,o), +(201,-90,cs), +(201,-57,o), +(232,-27,o), +(289,0,c), +(283,11,l), +(173,11,l), +(72,-31,o), +(40,-77,o), +(40,-123,cs), +(40,-182,o), +(93,-221,o), +(188,-221,cs) +); +}, +{ +closed = 1; +nodes = ( +(-244,-217,o), +(-195,-208,o), +(-172,-194,c), +(-170,-83,l), +(-191,-93,o), +(-223,-98,o), +(-245,-98,cs), +(-276,-98,o), +(-291,-87,o), +(-291,-69,cs), +(-291,-47,o), +(-274,-35,o), +(-240,-22,cs), +(-180,0,l), +(-228,110,l), +(-293,85,ls), +(-405,42,o), +(-467,-7,o), +(-467,-88,cs), +(-467,-170,o), +(-397,-217,o), +(-294,-217,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,-227,o), +(310,-221,o), +(343,-210,c), +(343,-94,l), +(321,-102,o), +(288,-106,o), +(265,-106,cs), +(226,-106,o), +(209,-95,o), +(209,-76,cs), +(209,-52,o), +(232,-36,o), +(296,-14,cs), +(336,0,l), +(291,108,l), +(258,95,ls), +(96,32,o), +(33,-19,o), +(33,-102,cs), +(33,-181,o), +(104,-227,o), +(208,-227,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,-222,o), +(291,-214,o), +(318,-201,c), +(318,-119,l), +(305,-125,o), +(284,-128,o), +(266,-128,cs), +(228,-128,o), +(212,-113,o), +(212,-90,cs), +(212,-56,o), +(247,-25,o), +(307,0,c), +(300,10,l), +(183,10,l), +(69,-26,o), +(40,-80,o), +(40,-125,cs), +(40,-187,o), +(95,-222,o), +(195,-222,cs) +); +} +); +width = 358; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (115,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (134,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(120,-186,o), +(135,-184,o), +(145,-180,c), +(145,-156,l), +(136,-159,o), +(125,-161,o), +(113,-161,cs), +(79,-161,o), +(65,-144,o), +(65,-120,cs), +(65,-85,o), +(91,-42,o), +(135,0,c), +(132,12,l), +(118,14,l), +(69,-32,o), +(38,-82,o), +(38,-122,cs), +(38,-162,o), +(64,-186,o), +(106,-186,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(102,-187,o), +(117,-184,o), +(125,-180,c), +(125,-156,l), +(115,-160,o), +(102,-162,o), +(91,-162,cs), +(58,-162,o), +(47,-143,o), +(47,-119,cs), +(47,-85,o), +(71,-42,o), +(115,0,c), +(112,8,l), +(92,8,l), +(47,-35,o), +(20,-85,o), +(20,-122,cs), +(20,-163,o), +(46,-187,o), +(87,-187,cs) +); +} +); +width = 145; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (187,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (271,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(215,-205,o), +(247,-200,o), +(264,-193,c), +(264,-98,l), +(256,-101,o), +(243,-103,o), +(231,-103,cs), +(206,-103,o), +(190,-94,o), +(190,-71,cs), +(190,-53,o), +(203,-36,o), +(237,-16,cs), +(265,0,l), +(221,86,l), +(201,76,ls), +(91,21,o), +(40,-19,o), +(40,-93,cs), +(40,-160,o), +(91,-205,o), +(182,-205,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-192,o), +(181,-187,o), +(195,-180,c), +(195,-115,l), +(188,-117,o), +(181,-119,o), +(172,-119,cs), +(147,-119,o), +(137,-107,o), +(137,-89,cs), +(137,-64,o), +(157,-31,o), +(187,0,c), +(185,11,l), +(109,11,l), +(59,-31,o), +(30,-74,o), +(30,-115,cs), +(30,-163,o), +(66,-192,o), +(127,-192,cs) +); +} +); +width = 225; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (141,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (152,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(156,-218,o), +(174,-217,o), +(188,-212,c), +(188,-182,l), +(178,-186,o), +(164,-188,o), +(149,-188,cs), +(114,-188,o), +(90,-168,o), +(90,-127,cs), +(90,-95,o), +(111,-57,o), +(174,0,c), +(170,14,l), +(156,21,l), +(74,-53,o), +(57,-97,o), +(57,-133,cs), +(57,-183,o), +(91,-218,o), +(141,-218,cs) +); +}, +{ +closed = 1; +nodes = ( +(-140,-198,o), +(-119,-197,o), +(-104,-191,c), +(-104,-163,l), +(-123,-169,o), +(-138,-169,o), +(-148,-169,cs), +(-195,-169,o), +(-227,-151,o), +(-227,-113,cs), +(-227,-85,o), +(-209,-58,o), +(-167,-29,cs), +(-125,0,l), +(-140,26,l), +(-169,6,ls), +(-217,-28,o), +(-260,-59,o), +(-260,-115,cs), +(-260,-164,o), +(-223,-198,o), +(-153,-198,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,-198,o), +(172,-197,o), +(186,-191,c), +(186,-163,l), +(169,-169,o), +(155,-169,o), +(145,-169,cs), +(102,-169,o), +(73,-149,o), +(73,-113,cs), +(73,-83,o), +(89,-57,o), +(128,-29,cs), +(167,-2,l), +(152,24,l), +(113,-4,ls), +(68,-36,o), +(40,-69,o), +(40,-115,cs), +(40,-165,o), +(80,-198,o), +(140,-198,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,-209,o), +(146,-204,o), +(157,-198,c), +(157,-170,l), +(145,-176,o), +(128,-180,o), +(112,-180,cs), +(74,-180,o), +(54,-161,o), +(54,-126,cs), +(54,-79,o), +(89,-40,o), +(141,0,c), +(131,19,l), +(123,19,l), +(58,-24,o), +(20,-79,o), +(20,-129,cs), +(20,-179,o), +(52,-209,o), +(103,-209,cs) +); +} +); +width = 177; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (260,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (298,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(245,-215,o), +(281,-205,o), +(295,-196,c), +(295,-132,l), +(284,-136,o), +(271,-137,o), +(264,-137,cs), +(234,-137,o), +(221,-120,o), +(221,-94,cs), +(221,-59,o), +(255,-25,o), +(298,0,c), +(280,57,l), +(273,56,l), +(141,6,o), +(84,-52,o), +(84,-118,cs), +(84,-175,o), +(128,-215,o), +(207,-215,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,-207,o), +(276,-204,o), +(300,-195,c), +(300,-89,l), +(286,-94,o), +(265,-95,o), +(254,-95,cs), +(222,-96,o), +(202,-88,o), +(201,-68,cs), +(200,-49,o), +(216,-32,o), +(260,-13,cs), +(289,0,l), +(242,98,l), +(207,83,ls), +(104,38,o), +(40,-12,o), +(40,-91,cs), +(40,-170,o), +(105,-207,o), +(203,-207,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,-221,o), +(240,-214,o), +(269,-201,c), +(269,-123,l), +(256,-129,o), +(243,-132,o), +(229,-132,cs), +(201,-132,o), +(184,-117,o), +(184,-92,cs), +(184,-58,o), +(215,-28,o), +(260,0,c), +(252,11,l), +(144,11,l), +(64,-25,o), +(19,-71,o), +(19,-125,cs), +(19,-185,o), +(71,-221,o), +(158,-221,cs) +); +} +); +width = 288; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (173,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (153,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(-161,-201,o), +(-141,-196,o), +(-129,-190,c), +(-129,-162,l), +(-144,-169,o), +(-162,-173,o), +(-181,-173,cs), +(-227,-173,o), +(-253,-151,o), +(-253,-114,cs), +(-253,-69,o), +(-222,-45,o), +(-164,-12,cs), +(-143,0,l), +(-154,24,l), +(-175,13,ls), +(-240,-21,o), +(-285,-56,o), +(-285,-114,cs), +(-285,-168,o), +(-245,-201,o), +(-183,-201,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,-209,o), +(157,-207,o), +(174,-201,c), +(174,-173,l), +(158,-178,o), +(137,-180,o), +(117,-180,cs), +(76,-180,o), +(41,-164,o), +(41,-123,cs), +(41,-88,o), +(62,-61,o), +(129,-18,cs), +(157,0,l), +(142,26,l), +(115,9,ls), +(51,-32,o), +(8,-69,o), +(8,-125,cs), +(8,-184,o), +(56,-209,o), +(115,-209,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,-209,o), +(181,-204,o), +(193,-198,c), +(193,-170,l), +(178,-176,o), +(156,-180,o), +(136,-180,cs), +(88,-180,o), +(63,-161,o), +(63,-126,cs), +(63,-79,o), +(107,-40,o), +(173,0,c), +(160,19,l), +(157,19,l), +(85,-21,o), +(30,-71,o), +(30,-129,cs), +(30,-179,o), +(67,-209,o), +(130,-209,cs) +); +} +); +width = 223; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (297,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (289,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(228,-221,o), +(271,-214,o), +(299,-201,c), +(299,-123,l), +(288,-128,o), +(269,-132,o), +(253,-132,cs), +(220,-132,o), +(201,-115,o), +(201,-90,cs), +(201,-57,o), +(232,-27,o), +(289,0,c), +(283,11,l), +(173,11,l), +(72,-31,o), +(40,-77,o), +(40,-123,cs), +(40,-182,o), +(93,-221,o), +(188,-221,cs) +); +}, +{ +closed = 1; +nodes = ( +(-244,-217,o), +(-195,-208,o), +(-172,-194,c), +(-170,-83,l), +(-191,-93,o), +(-223,-98,o), +(-245,-98,cs), +(-276,-98,o), +(-291,-87,o), +(-291,-69,cs), +(-291,-47,o), +(-274,-35,o), +(-240,-22,cs), +(-180,0,l), +(-228,110,l), +(-293,85,ls), +(-405,42,o), +(-467,-7,o), +(-467,-88,cs), +(-467,-170,o), +(-397,-217,o), +(-294,-217,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,-227,o), +(310,-221,o), +(343,-210,c), +(343,-94,l), +(321,-102,o), +(288,-106,o), +(265,-106,cs), +(226,-106,o), +(209,-95,o), +(209,-76,cs), +(209,-52,o), +(232,-36,o), +(296,-14,cs), +(336,0,l), +(291,108,l), +(258,95,ls), +(96,32,o), +(33,-19,o), +(33,-102,cs), +(33,-181,o), +(104,-227,o), +(208,-227,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,-222,o), +(281,-214,o), +(308,-201,c), +(308,-119,l), +(295,-125,o), +(274,-128,o), +(256,-128,cs), +(218,-128,o), +(202,-113,o), +(202,-90,cs), +(202,-56,o), +(237,-25,o), +(297,0,c), +(290,10,l), +(173,10,l), +(59,-26,o), +(30,-80,o), +(30,-125,cs), +(30,-187,o), +(85,-222,o), +(185,-222,cs) +); +} +); +width = 338; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (160,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (152,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(156,-218,o), +(174,-217,o), +(188,-212,c), +(188,-182,l), +(178,-186,o), +(164,-188,o), +(149,-188,cs), +(114,-188,o), +(90,-168,o), +(90,-127,cs), +(90,-95,o), +(111,-57,o), +(174,0,c), +(170,14,l), +(156,21,l), +(74,-53,o), +(57,-97,o), +(57,-133,cs), +(57,-183,o), +(91,-218,o), +(141,-218,cs) +); +}, +{ +closed = 1; +nodes = ( +(-140,-198,o), +(-119,-197,o), +(-104,-191,c), +(-104,-163,l), +(-123,-169,o), +(-138,-169,o), +(-148,-169,cs), +(-195,-169,o), +(-227,-151,o), +(-227,-113,cs), +(-227,-85,o), +(-209,-58,o), +(-167,-29,cs), +(-125,0,l), +(-140,26,l), +(-169,6,ls), +(-217,-28,o), +(-260,-59,o), +(-260,-115,cs), +(-260,-164,o), +(-223,-198,o), +(-153,-198,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,-198,o), +(172,-197,o), +(186,-191,c), +(186,-163,l), +(169,-169,o), +(155,-169,o), +(145,-169,cs), +(102,-169,o), +(73,-149,o), +(73,-113,cs), +(73,-83,o), +(89,-57,o), +(128,-29,cs), +(167,-2,l), +(152,24,l), +(113,-4,ls), +(68,-36,o), +(40,-69,o), +(40,-115,cs), +(40,-165,o), +(80,-198,o), +(140,-198,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(144,-209,o), +(165,-204,o), +(176,-198,c), +(176,-170,l), +(164,-176,o), +(149,-180,o), +(133,-180,cs), +(95,-180,o), +(75,-161,o), +(75,-126,cs), +(75,-79,o), +(110,-40,o), +(160,0,c), +(151,19,l), +(144,19,l), +(79,-24,o), +(43,-79,o), +(43,-129,cs), +(43,-179,o), +(73,-209,o), +(124,-209,cs) +); +} +); +width = 218; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (270,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (298,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(245,-215,o), +(281,-205,o), +(295,-196,c), +(295,-132,l), +(284,-136,o), +(271,-137,o), +(264,-137,cs), +(234,-137,o), +(221,-120,o), +(221,-94,cs), +(221,-59,o), +(255,-25,o), +(298,0,c), +(280,57,l), +(273,56,l), +(141,6,o), +(84,-52,o), +(84,-118,cs), +(84,-175,o), +(128,-215,o), +(207,-215,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,-207,o), +(276,-204,o), +(300,-195,c), +(300,-89,l), +(286,-94,o), +(265,-95,o), +(254,-95,cs), +(222,-96,o), +(202,-88,o), +(201,-68,cs), +(200,-49,o), +(216,-32,o), +(260,-13,cs), +(289,0,l), +(242,98,l), +(207,83,ls), +(104,38,o), +(40,-12,o), +(40,-91,cs), +(40,-170,o), +(105,-207,o), +(203,-207,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-221,o), +(248,-214,o), +(277,-201,c), +(277,-123,l), +(265,-129,o), +(253,-132,o), +(242,-132,cs), +(218,-132,o), +(202,-117,o), +(202,-92,cs), +(202,-58,o), +(230,-28,o), +(269,0,c), +(262,11,l), +(153,11,l), +(80,-25,o), +(39,-71,o), +(39,-125,cs), +(39,-185,o), +(88,-221,o), +(170,-221,cs) +); +} +); +width = 315; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (78,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(32,-187,o), +(47,-184,o), +(56,-180,c), +(60,-156,l), +(50,-160,o), +(35,-162,o), +(25,-162,cs), +(1,-162,o), +(-12,-149,o), +(-12,-124,cs), +(-12,-92,o), +(19,-49,o), +(78,0,c), +(74,8,l), +(56,8,l), +(-13,-47,o), +(-39,-94,o), +(-39,-129,cs), +(-39,-164,o), +(-17,-187,o), +(17,-187,cs) +); +} +); +width = 187; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (141,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (113,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(42,-201,o), +(71,-198,o), +(84,-194,c), +(103,-100,l), +(95,-102,o), +(83,-103,o), +(70,-103,cs), +(39,-103,o), +(18,-94,o), +(18,-72,cs), +(18,-44,o), +(39,-30,o), +(75,-15,cs), +(112,0,l), +(83,85,l), +(55,76,ls), +(-71,35,o), +(-134,-15,o), +(-134,-93,cs), +(-134,-158,o), +(-85,-201,o), +(19,-201,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(71,-192,o), +(99,-188,o), +(117,-180,c), +(128,-115,l), +(120,-118,o), +(113,-119,o), +(105,-119,cs), +(83,-119,o), +(74,-105,o), +(74,-89,cs), +(74,-64,o), +(98,-34,o), +(141,0,c), +(136,11,l), +(65,11,l), +(11,-25,o), +(-38,-62,o), +(-38,-118,cs), +(-38,-163,o), +(-4,-192,o), +(51,-192,cs) +); +} +); +width = 250; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (103,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,-209,o), +(70,-205,o), +(84,-198,c), +(89,-170,l), +(76,-176,o), +(59,-180,o), +(43,-180,cs), +(11,-180,o), +(-7,-164,o), +(-7,-136,cs), +(-7,-92,o), +(30,-53,o), +(103,0,c), +(97,19,l), +(89,19,l), +(12,-31,o), +(-40,-82,o), +(-40,-139,cs), +(-40,-182,o), +(-11,-209,o), +(34,-209,cs) +); +} +); +width = 219; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (223,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (194,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(119,-207,o), +(147,-203,o), +(167,-199,c), +(187,-96,l), +(175,-98,o), +(160,-100,o), +(146,-100,cs), +(110,-100,o), +(94,-89,o), +(94,-70,cs), +(94,-42,o), +(121,-27,o), +(164,-11,cs), +(194,0,l), +(167,102,l), +(130,90,ls), +(23,55,o), +(-71,3,o), +(-71,-93,cs), +(-71,-161,o), +(-23,-207,o), +(91,-207,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(122,-221,o), +(167,-213,o), +(196,-201,c), +(210,-123,l), +(196,-129,o), +(182,-132,o), +(168,-132,cs), +(144,-132,o), +(130,-121,o), +(130,-101,cs), +(130,-72,o), +(160,-40,o), +(223,0,c), +(216,11,l), +(108,11,l), +(26,-22,o), +(-42,-68,o), +(-42,-136,cs), +(-42,-191,o), +(6,-221,o), +(82,-221,cs) +); +} +); +width = 334; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (125,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (84,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(80,-209,o), +(98,-207,o), +(110,-204,c), +(115,-175,l), +(103,-179,o), +(85,-181,o), +(68,-181,cs), +(20,-181,o), +(-7,-161,o), +(-7,-126,cs), +(-7,-84,o), +(33,-52,o), +(103,-16,cs), +(134,0,l), +(122,28,l), +(87,9,ls), +(17,-29,o), +(-40,-64,o), +(-40,-130,cs), +(-40,-177,o), +(-2,-209,o), +(62,-209,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(70,-209,o), +(88,-207,o), +(99,-204,c), +(104,-175,l), +(93,-179,o), +(77,-181,o), +(61,-181,cs), +(15,-181,o), +(-6,-161,o), +(-6,-128,cs), +(-6,-90,o), +(24,-50,o), +(125,0,c), +(120,16,l), +(103,16,l), +(3,-30,o), +(-39,-81,o), +(-39,-132,cs), +(-39,-180,o), +(-3,-209,o), +(54,-209,cs) +); +} +); +width = 235; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (249,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (201,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(109,-227,o), +(146,-222,o), +(165,-217,c), +(187,-104,l), +(169,-108,o), +(141,-110,o), +(124,-110,cs), +(76,-110,o), +(60,-97,o), +(60,-76,cs), +(60,-45,o), +(93,-30,o), +(158,-12,cs), +(201,0,l), +(177,111,l), +(134,98,ls), +(-4,56,o), +(-120,10,o), +(-120,-103,cs), +(-120,-178,o), +(-57,-227,o), +(66,-227,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,-222,o), +(195,-214,o), +(224,-201,c), +(239,-119,l), +(225,-125,o), +(202,-128,o), +(185,-128,cs), +(151,-128,o), +(137,-113,o), +(137,-95,cs), +(137,-61,o), +(173,-34,o), +(249,0,c), +(243,10,l), +(126,10,l), +(13,-25,o), +(-42,-76,o), +(-42,-134,cs), +(-42,-190,o), +(14,-222,o), +(97,-222,cs) +); +} +); +width = 362; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 808; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ograve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ograve.glyph new file mode 100644 index 00000000..87afb56e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ograve.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ograve; +kernLeft = KO_e; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,-156); +ref = gravecomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (18,-137); +ref = gravecomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (176,-155); +ref = gravecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (113,-129); +ref = gravecomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (34,-156); +ref = gravecomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (19,-137); +ref = gravecomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (161,-155); +ref = gravecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (95,-134); +ref = gravecomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (176,-155); +ref = gravecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (113,-129); +ref = gravecomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (160,-155); +ref = gravecomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (102,-134); +ref = gravecomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (0,-156); +ref = gravecomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-5,-137); +ref = gravecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (108,-155); +ref = gravecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (51,-134); +ref = gravecomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (119,-155); +ref = gravecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (73,-129); +ref = gravecomb; +} +); +width = 692; +} +); +unicode = 242; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ohookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ohookabove.glyph new file mode 100644 index 00000000..342625f6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ohookabove.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ohookabove; +kernLeft = KO_e; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (87,-156); +ref = hookabovecomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (88,-138); +ref = hookabovecomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (212,-155); +ref = hookabovecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (194,-134); +ref = hookabovecomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (87,-156); +ref = hookabovecomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (89,-138); +ref = hookabovecomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (187,-155); +ref = hookabovecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (141,-134); +ref = hookabovecomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (212,-155); +ref = hookabovecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (194,-134); +ref = hookabovecomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (186,-155); +ref = hookabovecomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (145,-134); +ref = hookabovecomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (29,-157); +ref = hookabovecomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (49,-139); +ref = hookabovecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (138,-156); +ref = hookabovecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (92,-135); +ref = hookabovecomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (161,-156); +ref = hookabovecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (138,-137); +ref = hookabovecomb; +} +); +width = 692; +} +); +unicode = 7887; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ohorn.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorn.glyph new file mode 100644 index 00000000..65b2da60 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorn.glyph @@ -0,0 +1,261 @@ +{ +color = 7; +glyphname = ohorn; +kernLeft = KO_e; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (181,-9); +ref = horncomb; +} +); +width = 338; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (259,-11); +ref = horncomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (391,-18); +ref = horncomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (400,-86); +ref = horncomb; +} +); +width = 700; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (181,-9); +ref = horncomb; +} +); +width = 298; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (260,-11); +ref = horncomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (341,-2); +ref = horncomb; +} +); +width = 549; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (344,-66); +ref = horncomb; +} +); +width = 570; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (399,-18); +ref = horncomb; +} +); +width = 620; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (416,-86); +ref = horncomb; +} +); +width = 680; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (336,-2); +ref = horncomb; +} +); +width = 582; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (335,-66); +ref = horncomb; +} +); +width = 603; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (168,-9); +ref = horncomb; +} +); +width = 337; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (233,-11); +ref = horncomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (322,-3); +ref = horncomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (304,-66); +ref = horncomb; +} +); +width = 607; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (363,-18); +ref = horncomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (358,-98); +ref = horncomb; +} +); +width = 694; +} +); +metricLeft = o; +unicode = 417; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ohornacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ohornacute.glyph new file mode 100644 index 00000000..d8126a5d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ohornacute.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ohornacute; +kernLeft = KO_e; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (112,-156); +ref = acutecomb; +} +); +width = 338; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (115,-137); +ref = acutecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (262,-155); +ref = acutecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (230,-129); +ref = acutecomb; +} +); +width = 700; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (112,-156); +ref = acutecomb; +} +); +width = 338; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (116,-137); +ref = acutecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (240,-155); +ref = acutecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (192,-134); +ref = acutecomb; +} +); +width = 592; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (262,-155); +ref = acutecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (230,-129); +ref = acutecomb; +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (239,-155); +ref = acutecomb; +} +); +width = 582; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (191,-134); +ref = acutecomb; +} +); +width = 603; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (77,-156); +ref = acutecomb; +} +); +width = 337; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (85,-137); +ref = acutecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (185,-155); +ref = acutecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (152,-134); +ref = acutecomb; +} +); +width = 607; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (206,-155); +ref = acutecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (190,-129); +ref = acutecomb; +} +); +width = 694; +} +); +unicode = 7899; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ohorndotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorndotbelow.glyph new file mode 100644 index 00000000..2e5b40cf --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorndotbelow.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ohorndotbelow; +kernLeft = KO_e; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (105,0); +ref = dotbelowcomb; +} +); +width = 338; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (109,0); +ref = dotbelowcomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (248,0); +ref = dotbelowcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (194,0); +ref = dotbelowcomb; +} +); +width = 700; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (105,0); +ref = dotbelowcomb; +} +); +width = 338; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (110,0); +ref = dotbelowcomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (223,0); +ref = dotbelowcomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (179,0); +ref = dotbelowcomb; +} +); +width = 592; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (248,0); +ref = dotbelowcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (194,0); +ref = dotbelowcomb; +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (222,0); +ref = dotbelowcomb; +} +); +width = 582; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (180,0); +ref = dotbelowcomb; +} +); +width = 603; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (118,0); +ref = dotbelowcomb; +} +); +width = 337; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (127,0); +ref = dotbelowcomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (233,0); +ref = dotbelowcomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (206,0); +ref = dotbelowcomb; +} +); +width = 607; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (266,0); +ref = dotbelowcomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (229,0); +ref = dotbelowcomb; +} +); +width = 694; +} +); +unicode = 7907; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ohorndotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorndotbelow.ss01.glyph new file mode 100644 index 00000000..ffbba74c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorndotbelow.ss01.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = ohorndotbelow.ss01; +kernLeft = KO_e; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (113,0); +ref = dotbelowcomb.ss01; +} +); +width = 338; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (98,0); +ref = dotbelowcomb.ss01; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (261,0); +ref = dotbelowcomb.ss01; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (206,0); +ref = dotbelowcomb.ss01; +} +); +width = 700; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (113,0); +ref = dotbelowcomb.ss01; +} +); +width = 338; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (99,0); +ref = dotbelowcomb.ss01; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (236,0); +ref = dotbelowcomb.ss01; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (168,0); +ref = dotbelowcomb.ss01; +} +); +width = 592; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (261,0); +ref = dotbelowcomb.ss01; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (206,0); +ref = dotbelowcomb.ss01; +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (235,0); +ref = dotbelowcomb.ss01; +} +); +width = 582; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (167,0); +ref = dotbelowcomb.ss01; +} +); +width = 603; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (126,0); +ref = dotbelowcomb.ss01; +} +); +width = 337; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (118,0); +ref = dotbelowcomb.ss01; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (246,0); +ref = dotbelowcomb.ss01; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (197,0); +ref = dotbelowcomb.ss01; +} +); +width = 607; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (277,0); +ref = dotbelowcomb.ss01; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (243,0); +ref = dotbelowcomb.ss01; +} +); +width = 694; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ohorngrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorngrave.glyph new file mode 100644 index 00000000..e60ebf9d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorngrave.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ohorngrave; +kernLeft = KO_egrave; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (34,-156); +ref = gravecomb; +} +); +width = 338; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (18,-137); +ref = gravecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (176,-155); +ref = gravecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (113,-129); +ref = gravecomb; +} +); +width = 700; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (34,-156); +ref = gravecomb; +} +); +width = 338; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (19,-137); +ref = gravecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (161,-155); +ref = gravecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (95,-134); +ref = gravecomb; +} +); +width = 592; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (176,-155); +ref = gravecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (113,-129); +ref = gravecomb; +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (160,-155); +ref = gravecomb; +} +); +width = 582; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (102,-134); +ref = gravecomb; +} +); +width = 603; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (0,-156); +ref = gravecomb; +} +); +width = 337; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-5,-137); +ref = gravecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (108,-155); +ref = gravecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (51,-134); +ref = gravecomb; +} +); +width = 607; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (119,-155); +ref = gravecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (73,-129); +ref = gravecomb; +} +); +width = 694; +} +); +unicode = 7901; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ohornhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ohornhookabove.glyph new file mode 100644 index 00000000..b3bec9b2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ohornhookabove.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ohornhookabove; +kernLeft = KO_e; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (87,-156); +ref = hookabovecomb; +} +); +width = 338; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (88,-138); +ref = hookabovecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (212,-155); +ref = hookabovecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (194,-134); +ref = hookabovecomb; +} +); +width = 700; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (87,-156); +ref = hookabovecomb; +} +); +width = 338; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (89,-138); +ref = hookabovecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (187,-155); +ref = hookabovecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (141,-134); +ref = hookabovecomb; +} +); +width = 592; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (212,-155); +ref = hookabovecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (194,-134); +ref = hookabovecomb; +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (186,-155); +ref = hookabovecomb; +} +); +width = 582; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (145,-134); +ref = hookabovecomb; +} +); +width = 603; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (29,-157); +ref = hookabovecomb; +} +); +width = 337; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (49,-139); +ref = hookabovecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (138,-156); +ref = hookabovecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (92,-135); +ref = hookabovecomb; +} +); +width = 607; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (161,-156); +ref = hookabovecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (138,-137); +ref = hookabovecomb; +} +); +width = 694; +} +); +unicode = 7903; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ohorntilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorntilde.glyph new file mode 100644 index 00000000..7a0b8dcd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ohorntilde.glyph @@ -0,0 +1,252 @@ +{ +color = 6; +glyphname = ohorntilde; +kernLeft = KO_egrave; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (28,-156); +ref = tildecomb; +} +); +width = 338; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-5,-138); +ref = tildecomb; +} +); +width = 470; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (113,-155); +ref = tildecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (83,-129); +ref = tildecomb; +} +); +width = 700; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (28,-156); +ref = tildecomb; +} +); +width = 338; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-4,-138); +ref = tildecomb; +} +); +width = 450; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (106,-155); +ref = tildecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (46,-134); +ref = tildecomb; +} +); +width = 592; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (113,-155); +ref = tildecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = ohorn; +}, +{ +alignment = -1; +pos = (83,-129); +ref = tildecomb; +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (107,-155); +ref = tildecomb; +} +); +width = 582; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (51,-134); +ref = tildecomb; +} +); +width = 603; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-7,-156); +ref = tildecomb; +} +); +width = 337; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-38,-138); +ref = tildecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (53,-155); +ref = tildecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (3,-134); +ref = tildecomb; +} +); +width = 607; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (57,-155); +ref = tildecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (46,-134); +ref = tildecomb; +} +); +width = 694; +} +); +unicode = 7905; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ohungarumlaut.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ohungarumlaut.glyph new file mode 100644 index 00000000..f6e456d7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ohungarumlaut.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = ohungarumlaut; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (71,-156); +ref = hungarumlautcomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (44,-137); +ref = hungarumlautcomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (191,-155); +ref = hungarumlautcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (130,-129); +ref = hungarumlautcomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (71,-156); +ref = hungarumlautcomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (45,-137); +ref = hungarumlautcomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (174,-155); +ref = hungarumlautcomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (91,-134); +ref = hungarumlautcomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (191,-155); +ref = hungarumlautcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (130,-129); +ref = hungarumlautcomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (173,-155); +ref = hungarumlautcomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (94,-134); +ref = hungarumlautcomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (35,-156); +ref = hungarumlautcomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (4,-137); +ref = hungarumlautcomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (119,-155); +ref = hungarumlautcomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (52,-134); +ref = hungarumlautcomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (134,-155); +ref = hungarumlautcomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (85,-129); +ref = hungarumlautcomb; +} +); +width = 692; +} +); +unicode = 337; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/omacron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/omacron.glyph new file mode 100644 index 00000000..76f9430f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/omacron.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = omacron; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (31,-155); +ref = macroncomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (33,-139); +ref = macroncomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (92,-154); +ref = macroncomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (83,-129); +ref = macroncomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (31,-155); +ref = macroncomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,-139); +ref = macroncomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (95,-155); +ref = macroncomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (62,-134); +ref = macroncomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (92,-154); +ref = macroncomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (83,-129); +ref = macroncomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (96,-155); +ref = macroncomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (67,-134); +ref = macroncomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-5,-155); +ref = macroncomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (1,-139); +ref = macroncomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (41,-155); +ref = macroncomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,-134); +ref = macroncomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (35,-154); +ref = macroncomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (42,-129); +ref = macroncomb; +} +); +width = 692; +} +); +unicode = 333; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/one.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/one.blackC_ircled.glyph new file mode 100644 index 00000000..e15e3a6b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/one.blackC_ircled.glyph @@ -0,0 +1,1698 @@ +{ +color = 0; +glyphname = one.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,414,l), +(244,414,l), +(244,503,l), +(263,503,ls), +(301,503,o), +(331,534,o), +(335,582,c), +(437,582,l), +(437,149,l), +(327,149,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,414,l), +(244,414,l), +(244,503,l), +(263,503,ls), +(301,503,o), +(331,534,o), +(335,582,c), +(437,582,l), +(437,149,l), +(327,149,l) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(353,496,l), +(295,496,l), +(295,523,l), +(307,523,ls), +(340,523,o), +(354,546,o), +(355,582,c), +(383,582,l), +(383,149,l), +(353,149,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(353,495,l), +(295,495,l), +(295,522,l), +(307,522,ls), +(340,522,o), +(354,545,o), +(355,581,c), +(383,581,l), +(383,148,l), +(353,148,l) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,485,l), +(341,485,l), +(341,512,l), +(361,512,ls), +(419,512,o), +(442,540,o), +(445,582,c), +(482,582,l), +(482,149,l), +(446,149,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,486,l), +(341,486,l), +(341,513,l), +(361,513,ls), +(419,513,o), +(442,541,o), +(445,583,c), +(482,583,l), +(482,150,l), +(446,150,l) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,394,l), +(278,394,l), +(278,502,l), +(297,502,ls), +(352,502,o), +(396,534,o), +(401,582,c), +(543,582,l), +(543,149,l), +(393,149,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,398,l), +(278,398,l), +(278,506,l), +(297,506,ls), +(352,506,o), +(396,538,o), +(401,586,c), +(543,586,l), +(543,153,l), +(393,153,l) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(353,496,l), +(295,496,l), +(295,523,l), +(307,523,ls), +(340,523,o), +(354,546,o), +(355,582,c), +(383,582,l), +(383,149,l), +(353,149,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(333,495,l), +(275,495,l), +(275,522,l), +(287,522,ls), +(320,522,o), +(334,545,o), +(335,581,c), +(363,581,l), +(363,148,l), +(333,148,l) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,414,l), +(244,414,l), +(244,503,l), +(263,503,ls), +(301,503,o), +(331,534,o), +(335,582,c), +(437,582,l), +(437,149,l), +(327,149,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(317,414,l), +(234,414,l), +(234,503,l), +(253,503,ls), +(291,503,o), +(321,534,o), +(325,582,c), +(427,582,l), +(427,149,l), +(317,149,l) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,486,l), +(334,486,l), +(334,512,l), +(350,512,ls), +(408,512,o), +(430,540,o), +(434,582,c), +(468,582,l), +(468,149,l), +(434,149,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(415,486,l), +(315,486,l), +(315,512,l), +(331,512,ls), +(389,512,o), +(411,540,o), +(415,582,c), +(449,582,l), +(449,149,l), +(415,149,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +112, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +529, +23 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +520, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +527, +31 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +482, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,405,l), +(274,405,l), +(274,502,l), +(294,502,ls), +(349,502,o), +(393,534,o), +(398,582,c), +(517,582,l), +(517,149,l), +(390,149,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(387,407,l), +(271,407,l), +(271,504,l), +(291,504,ls), +(346,504,o), +(390,536,o), +(395,584,c), +(514,584,l), +(514,151,l), +(387,151,l) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,485,l), +(341,485,l), +(341,512,l), +(361,512,ls), +(419,512,o), +(442,540,o), +(445,582,c), +(482,582,l), +(482,149,l), +(446,149,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(436,486,l), +(331,486,l), +(331,513,l), +(351,513,ls), +(409,513,o), +(432,541,o), +(435,583,c), +(472,583,l), +(472,150,l), +(436,150,l) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,394,l), +(278,394,l), +(278,502,l), +(297,502,ls), +(352,502,o), +(396,534,o), +(401,582,c), +(543,582,l), +(543,149,l), +(393,149,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,398,l), +(268,398,l), +(268,506,l), +(287,506,ls), +(342,506,o), +(386,538,o), +(391,586,c), +(533,586,l), +(533,153,l), +(383,153,l) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,486,l), +(334,486,l), +(334,512,l), +(350,512,ls), +(408,512,o), +(430,540,o), +(434,582,c), +(468,582,l), +(468,149,l), +(434,149,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(430,486,l), +(332,486,l), +(332,512,l), +(347,512,ls), +(404,512,o), +(426,540,o), +(430,582,c), +(462,582,l), +(462,149,l), +(430,149,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +112, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +529, +23 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +520, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +527, +31 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +482, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,405,l), +(274,405,l), +(274,502,l), +(294,502,ls), +(349,502,o), +(393,534,o), +(398,582,c), +(517,582,l), +(517,149,l), +(390,149,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(398,407,l), +(284,407,l), +(284,504,l), +(304,504,ls), +(357,504,o), +(401,536,o), +(406,584,c), +(524,584,l), +(524,151,l), +(398,151,l) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,496,l), +(332,496,l), +(332,523,l), +(344,523,ls), +(377,523,o), +(391,546,o), +(392,582,c), +(420,582,l), +(420,149,l), +(390,149,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,495,l), +(332,495,l), +(332,522,l), +(344,522,ls), +(377,522,o), +(391,545,o), +(392,581,c), +(420,581,l), +(420,148,l), +(390,148,l) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,414,l), +(276,414,l), +(276,503,l), +(295,503,ls), +(333,503,o), +(363,534,o), +(367,582,c), +(469,582,l), +(469,149,l), +(359,149,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,414,l), +(276,414,l), +(276,503,l), +(295,503,ls), +(333,503,o), +(363,534,o), +(367,582,c), +(469,582,l), +(469,149,l), +(359,149,l) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(466,486,l), +(366,486,l), +(366,512,l), +(382,512,ls), +(440,512,o), +(462,540,o), +(466,582,c), +(500,582,l), +(500,149,l), +(466,149,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(467,486,l), +(367,486,l), +(367,512,l), +(383,512,ls), +(441,512,o), +(463,540,o), +(467,582,c), +(501,582,l), +(501,149,l), +(467,149,l) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(436,405,l), +(320,405,l), +(320,502,l), +(340,502,ls), +(395,502,o), +(439,534,o), +(444,582,c), +(563,582,l), +(563,149,l), +(436,149,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(436,407,l), +(320,407,l), +(320,504,l), +(340,504,ls), +(395,504,o), +(439,536,o), +(444,584,c), +(563,584,l), +(563,151,l), +(436,151,l) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(477,485,l), +(372,485,l), +(372,512,l), +(392,512,ls), +(450,512,o), +(473,540,o), +(476,582,c), +(513,582,l), +(513,149,l), +(477,149,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(477,486,l), +(372,486,l), +(372,513,l), +(392,513,ls), +(450,513,o), +(473,541,o), +(476,583,c), +(513,583,l), +(513,150,l), +(477,150,l) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(422,394,l), +(307,394,l), +(307,502,l), +(326,502,ls), +(381,502,o), +(425,534,o), +(430,582,c), +(572,582,l), +(572,149,l), +(422,149,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(422,398,l), +(307,398,l), +(307,506,l), +(326,506,ls), +(381,506,o), +(425,538,o), +(430,586,c), +(572,586,l), +(572,153,l), +(422,153,l) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 10102; +userData = { +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/one.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/one.circled.glyph new file mode 100644 index 00000000..361466be --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/one.circled.glyph @@ -0,0 +1,1280 @@ +{ +color = 0; +glyphname = one.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,149,l), +(383,582,l), +(355,582,l), +(354,546,o), +(340,523,o), +(307,523,cs), +(295,523,l), +(295,496,l), +(353,496,l), +(353,149,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (282,188); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,149,l), +(437,582,l), +(335,582,l), +(331,534,o), +(301,503,o), +(263,503,cs), +(244,503,l), +(244,414,l), +(327,414,l), +(327,149,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (234,189); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,149,l), +(482,582,l), +(445,582,l), +(442,540,o), +(419,512,o), +(361,512,cs), +(341,512,l), +(341,485,l), +(446,485,l), +(446,149,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (325,190); +ref = oneinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,149,l), +(543,582,l), +(401,582,l), +(396,534,o), +(352,502,o), +(297,502,cs), +(278,502,l), +(278,394,l), +(393,394,l), +(393,149,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (272,193); +ref = oneinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,149,l), +(383,582,l), +(355,582,l), +(354,546,o), +(340,523,o), +(307,523,cs), +(295,523,l), +(295,496,l), +(353,496,l), +(353,149,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (272,188); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 658; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,149,l), +(437,582,l), +(335,582,l), +(331,534,o), +(301,503,o), +(263,503,cs), +(244,503,l), +(244,414,l), +(327,414,l), +(327,149,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (231,189); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(468,149,l), +(468,582,l), +(434,582,l), +(430,540,o), +(408,512,o), +(350,512,cs), +(334,512,l), +(334,486,l), +(434,486,l), +(434,149,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (311,189); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 831; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(535,149,l), +(535,582,l), +(416,582,l), +(411,534,o), +(367,502,o), +(312,502,cs), +(292,502,l), +(292,405,l), +(408,405,l), +(408,149,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (270,191); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 813; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,149,l), +(482,582,l), +(445,582,l), +(442,540,o), +(419,512,o), +(361,512,cs), +(341,512,l), +(341,485,l), +(446,485,l), +(446,149,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (320,190); +ref = oneinferior; +} +); +width = 864; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,149,l), +(543,582,l), +(401,582,l), +(396,534,o), +(352,502,o), +(297,502,cs), +(278,502,l), +(278,394,l), +(393,394,l), +(393,149,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (267,193); +ref = oneinferior; +} +); +width = 840; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(468,149,l), +(468,582,l), +(434,582,l), +(430,540,o), +(408,512,o), +(350,512,cs), +(334,512,l), +(334,486,l), +(434,486,l), +(434,149,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (300,189); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(535,149,l), +(535,582,l), +(416,582,l), +(411,534,o), +(367,502,o), +(312,502,cs), +(292,502,l), +(292,405,l), +(408,405,l), +(408,149,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (275,191); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(420,149,l), +(420,582,l), +(392,582,l), +(391,546,o), +(377,523,o), +(344,523,cs), +(332,523,l), +(332,496,l), +(390,496,l), +(390,149,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (319,188); +ref = oneinferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,149,l), +(469,582,l), +(367,582,l), +(363,534,o), +(333,503,o), +(295,503,cs), +(276,503,l), +(276,414,l), +(359,414,l), +(359,149,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (266,189); +ref = oneinferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(500,149,l), +(500,582,l), +(466,582,l), +(462,540,o), +(440,512,o), +(382,512,cs), +(366,512,l), +(366,486,l), +(466,486,l), +(466,149,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = master01; +pos = (371,186); +ref = oneinferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(563,149,l), +(563,582,l), +(444,582,l), +(439,534,o), +(395,502,o), +(340,502,cs), +(320,502,l), +(320,405,l), +(436,405,l), +(436,149,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (299,188); +ref = oneinferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(513,149,l), +(513,582,l), +(476,582,l), +(473,540,o), +(450,512,o), +(392,512,cs), +(372,512,l), +(372,485,l), +(477,485,l), +(477,149,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (356,190); +ref = oneinferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(689,-11,o), +(850,135,o), +(850,364,cs), +(850,593,o), +(689,739,o), +(460,739,cs), +(232,739,o), +(70,593,o), +(70,364,cs), +(70,135,o), +(232,-11,o), +(460,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(280,67,o), +(152,181,o), +(152,364,cs), +(152,547,o), +(280,661,o), +(460,661,cs), +(641,661,o), +(768,547,o), +(768,364,cs), +(768,181,o), +(641,67,o), +(460,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(573,153,l), +(573,586,l), +(431,586,l), +(426,538,o), +(382,506,o), +(327,506,cs), +(308,506,l), +(308,398,l), +(423,398,l), +(423,153,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (301,193); +ref = oneinferior; +} +); +width = 880; +} +); +unicode = 9312; +userData = { +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/one.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/one.dnom.glyph new file mode 100644 index 00000000..216c6501 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/one.dnom.glyph @@ -0,0 +1,607 @@ +{ +glyphname = one.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,375,l), +(92,375,l), +(88,333,o), +(61,306,o), +(28,306,cs), +(11,306,l), +(11,225,l), +(84,225,l), +(84,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 212; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,397,l), +(72,397,l), +(71,364,o), +(58,343,o), +(28,343,cs), +(17,343,l), +(17,319,l), +(70,319,l), +(70,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 157; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,0,l), +(148,397,l), +(113,397,l), +(109,354,o), +(85,333,o), +(36,333,cs), +(17,333,l), +(17,307,l), +(113,307,l), +(113,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 214; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,l), +(236,375,l), +(117,375,l), +(112,332,o), +(72,306,o), +(24,306,cs), +(7,306,l), +(7,214,l), +(110,214,l), +(110,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 279; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(87,0,l), +(87,397,l), +(62,397,l), +(61,364,o), +(48,343,o), +(18,343,cs), +(7,343,l), +(7,319,l), +(60,319,l), +(60,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 127; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,0,l), +(178,375,l), +(85,375,l), +(81,333,o), +(54,306,o), +(21,306,cs), +(4,306,l), +(4,225,l), +(77,225,l), +(77,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 195; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(128,0,l), +(128,397,l), +(96,397,l), +(93,360,o), +(75,333,o), +(19,333,cs), +(5,333,l), +(5,309,l), +(97,309,l), +(97,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 189; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,l), +(220,375,l), +(114,375,l), +(109,331,o), +(68,306,o), +(21,306,cs), +(3,306,l), +(3,220,l), +(107,220,l), +(107,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 250; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,0,l), +(138,397,l), +(103,397,l), +(99,354,o), +(75,333,o), +(26,333,cs), +(7,333,l), +(7,307,l), +(103,307,l), +(103,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 194; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,0,l), +(231,375,l), +(112,375,l), +(107,332,o), +(67,306,o), +(19,306,cs), +(2,306,l), +(2,214,l), +(105,214,l), +(105,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 264; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(152,0,l), +(152,397,l), +(122,397,l), +(119,360,o), +(101,333,o), +(47,333,cs), +(33,333,l), +(33,309,l), +(123,309,l), +(123,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 239; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(224,0,l), +(224,375,l), +(120,375,l), +(115,331,o), +(76,306,o), +(36,306,cs), +(19,306,l), +(19,220,l), +(113,220,l), +(113,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 275; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(126,397,l), +(101,397,l), +(93,364,o), +(76,343,o), +(46,343,cs), +(35,343,l), +(30,319,l), +(83,319,l), +(16,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 156; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(127,0,l), +(206,375,l), +(114,375,l), +(101,333,o), +(69,306,o), +(37,306,cs), +(19,306,l), +(2,225,l), +(75,225,l), +(27,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 210; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(174,397,l), +(144,397,l), +(133,359,o), +(108,333,o), +(59,333,cs), +(45,333,l), +(40,309,l), +(124,309,l), +(61,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 231; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(254,375,l), +(147,375,l), +(133,334,o), +(91,306,o), +(44,306,cs), +(27,306,l), +(9,218,l), +(106,218,l), +(62,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 286; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,0,l), +(174,397,l), +(140,397,l), +(128,358,o), +(103,333,o), +(50,333,cs), +(32,333,l), +(27,307,l), +(121,307,l), +(57,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 210; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,0,l), +(255,375,l), +(137,375,l), +(123,334,o), +(81,306,o), +(31,306,cs), +(14,306,l), +(-5,214,l), +(96,214,l), +(51,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 277; +} +); +userData = { +KernOnName = one.dnom; +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/one.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/one.glyph new file mode 100644 index 00000000..69b2bb8b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/one.glyph @@ -0,0 +1,485 @@ +{ +glyphname = one; +kernLeft = KO_one; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,0,l), +(333,730,l), +(165,730,l), +(158,651,o), +(108,598,o), +(45,598,cs), +(12,598,l), +(12,452,l), +(151,452,l), +(151,0,l) +); +} +); +width = 362; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(128,0,l), +(128,730,l), +(98,730,l), +(96,673,o), +(77,635,o), +(21,635,cs), +(3,635,l), +(3,604,l), +(96,604,l), +(96,0,l) +); +} +); +width = 194; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(230,730,l), +(190,730,l), +(184,661,o), +(153,616,o), +(53,616,cs), +(18,616,l), +(18,586,l), +(192,586,l), +(192,0,l) +); +} +); +width = 303; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(422,0,l), +(422,730,l), +(209,730,l), +(200,651,o), +(132,598,o), +(37,598,cs), +(5,598,l), +(5,434,l), +(196,434,l), +(196,0,l) +); +} +); +width = 470; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,l), +(118,721,l), +(89,721,l), +(87,665,o), +(68,627,o), +(13,627,cs), +(-5,627,l), +(-5,597,l), +(87,597,l), +(87,0,l) +); +} +); +width = 160; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,0,l), +(320,729,l), +(155,729,l), +(148,651,o), +(99,599,o), +(36,599,cs), +(4,599,l), +(4,454,l), +(135,454,l), +(135,0,l) +); +} +); +width = 338; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(206,729,l), +(167,729,l), +(161,661,o), +(130,616,o), +(31,616,cs), +(6,616,l), +(6,587,l), +(169,587,l), +(169,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 276; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(382,0,l), +(382,729,l), +(203,729,l), +(195,651,o), +(127,599,o), +(34,599,cs), +(2,599,l), +(2,454,l), +(179,454,l), +(179,0,l) +); +} +); +width = 412; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(217,729,l), +(178,729,l), +(172,661,o), +(141,616,o), +(42,616,cs), +(8,616,l), +(8,587,l), +(180,587,l), +(180,0,l) +); +} +); +width = 279; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,0,l), +(412,729,l), +(201,729,l), +(193,651,o), +(125,599,o), +(32,599,cs), +(0,599,l), +(0,437,l), +(183,437,l), +(183,0,l) +); +} +); +width = 444; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(242,0,l), +(242,730,l), +(203,730,l), +(197,656,o), +(167,616,o), +(86,616,cs), +(30,616,l), +(30,586,l), +(205,586,l), +(205,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 353; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(394,0,l), +(394,730,l), +(205,730,l), +(197,651,o), +(132,598,o), +(45,598,cs), +(18,598,l), +(18,452,l), +(192,452,l), +(192,0,l) +); +} +); +width = 462; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(70,0,l), +(224,730,l), +(194,730,l), +(180,673,o), +(154,635,o), +(98,635,cs), +(80,635,l), +(74,604,l), +(166,604,l), +(38,0,l) +); +} +); +width = 192; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(425,730,l), +(259,730,l), +(235,651,o), +(175,598,o), +(112,598,cs), +(80,598,l), +(49,452,l), +(186,452,l), +(91,0,l) +); +} +); +width = 360; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,0,l), +(318,730,l), +(280,730,l), +(259,657,o), +(216,616,o), +(129,616,cs), +(104,616,l), +(98,586,l), +(250,586,l), +(129,0,l) +); +} +); +width = 317; +}, +{ +guides = ( +{ +pos = (303,721); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,0,l), +(490,730,l), +(307,730,l), +(281,651,o), +(205,598,o), +(117,598,cs), +(87,598,l), +(56,449,l), +(235,449,l), +(143,0,l) +); +} +); +width = 456; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,0,l), +(322,730,l), +(284,730,l), +(262,660,o), +(222,616,o), +(125,616,cs), +(91,616,l), +(85,586,l), +(252,586,l), +(130,0,l) +); +} +); +width = 298; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,0,l), +(511,730,l), +(301,730,l), +(275,651,o), +(197,598,o), +(104,598,cs), +(73,598,l), +(38,434,l), +(227,434,l), +(136,0,l) +); +} +); +width = 465; +} +); +unicode = 49; +userData = { +KernOnName = one; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/one.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/one.numr.glyph new file mode 100644 index 00000000..e02b7b72 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/one.numr.glyph @@ -0,0 +1,411 @@ +{ +color = 6; +glyphname = one.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 212; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 157; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 214; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 279; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +pos = (0,333); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 127; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 195; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +pos = (0,332); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 189; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +pos = (0,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 250; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 214; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +pos = (0,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 264; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 239; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 275; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 156; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 210; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 231; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 286; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 210; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 277; +} +); +userData = { +KernOnName = one.numr; +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/one.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/one.tf.glyph new file mode 100644 index 00000000..54d12b3d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/one.tf.glyph @@ -0,0 +1,736 @@ +{ +glyphname = one.tf; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(701,0,l), +(701,166,l), +(528,166,l), +(528,721,l), +(345,721,l), +(337,643,o), +(282,591,o), +(176,591,cs), +(144,591,l), +(144,443,l), +(333,443,l), +(333,166,l), +(137,166,l), +(137,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,132,l), +(343,721,l), +(177,721,l), +(170,643,o), +(121,591,o), +(58,591,cs), +(21,591,l), +(21,446,l), +(163,446,l), +(163,132,l) +); +}, +{ +closed = 1; +nodes = ( +(470,0,l), +(470,148,l), +(12,148,l), +(12,0,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,20,l), +(263,721,l), +(234,721,l), +(232,665,o), +(213,627,o), +(158,627,cs), +(121,627,l), +(121,597,l), +(232,597,l), +(232,20,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(400,28,l), +(83,28,l), +(83,0,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(393,25,l), +(393,721,l), +(353,721,l), +(348,643,o), +(304,578,o), +(185,578,cs), +(160,578,l), +(160,549,l), +(355,549,l), +(355,25,l) +); +}, +{ +closed = 1; +nodes = ( +(614,0,l), +(614,34,l), +(107,34,l), +(107,0,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(498,151,l), +(498,721,l), +(289,721,l), +(282,643,o), +(214,591,o), +(124,591,cs), +(84,591,l), +(84,429,l), +(278,429,l), +(278,151,l) +); +}, +{ +closed = 1; +nodes = ( +(672,0,l), +(672,167,l), +(58,167,l), +(58,0,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,20,l), +(243,721,l), +(214,721,l), +(212,665,o), +(193,627,o), +(138,627,cs), +(101,627,l), +(101,597,l), +(212,597,l), +(212,20,l) +); +}, +{ +closed = 1; +nodes = ( +(380,0,l), +(380,28,l), +(63,28,l), +(63,0,l) +); +} +); +width = 440; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(701,0,l), +(701,166,l), +(528,166,l), +(528,721,l), +(345,721,l), +(337,643,o), +(282,591,o), +(176,591,cs), +(144,591,l), +(144,443,l), +(333,443,l), +(333,166,l), +(137,166,l), +(137,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,132,l), +(334,721,l), +(168,721,l), +(161,643,o), +(112,591,o), +(49,591,cs), +(12,591,l), +(12,446,l), +(154,446,l), +(154,132,l) +); +}, +{ +closed = 1; +nodes = ( +(461,0,l), +(461,148,l), +(3,148,l), +(3,0,l) +); +} +); +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,25,l), +(311,721,l), +(272,721,l), +(266,653,o), +(235,578,o), +(126,578,cs), +(91,578,l), +(91,549,l), +(274,549,l), +(274,25,l) +); +}, +{ +closed = 1; +nodes = ( +(518,0,l), +(518,34,l), +(43,34,l), +(43,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(803,0,l), +(803,166,l), +(630,166,l), +(630,721,l), +(447,721,l), +(439,643,o), +(384,591,o), +(278,591,cs), +(246,591,l), +(246,443,l), +(435,443,l), +(435,166,l), +(239,166,l), +(239,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,151,l), +(396,721,l), +(217,721,l), +(209,643,o), +(141,591,o), +(48,591,cs), +(16,591,l), +(16,446,l), +(205,446,l), +(205,151,l) +); +}, +{ +closed = 1; +nodes = ( +(568,0,l), +(568,167,l), +(1,167,l), +(1,0,l) +); +} +); +width = 562; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(383,25,l), +(383,721,l), +(343,721,l), +(338,643,o), +(294,578,o), +(175,578,cs), +(150,578,l), +(150,549,l), +(345,549,l), +(345,25,l) +); +}, +{ +closed = 1; +nodes = ( +(604,0,l), +(604,34,l), +(97,34,l), +(97,0,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(488,151,l), +(488,721,l), +(279,721,l), +(272,643,o), +(204,591,o), +(114,591,cs), +(74,591,l), +(74,429,l), +(268,429,l), +(268,151,l) +); +}, +{ +closed = 1; +nodes = ( +(662,0,l), +(662,167,l), +(48,167,l), +(48,0,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,25,l), +(328,721,l), +(289,721,l), +(283,653,o), +(252,578,o), +(147,578,cs), +(112,578,l), +(112,549,l), +(291,549,l), +(291,25,l) +); +}, +{ +closed = 1; +nodes = ( +(531,0,l), +(531,34,l), +(64,34,l), +(64,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(803,0,l), +(803,166,l), +(630,166,l), +(630,721,l), +(447,721,l), +(439,643,o), +(384,591,o), +(278,591,cs), +(246,591,l), +(246,443,l), +(435,443,l), +(435,166,l), +(239,166,l), +(239,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(407,151,l), +(407,721,l), +(230,721,l), +(222,643,o), +(155,591,o), +(65,591,cs), +(35,591,l), +(35,446,l), +(218,446,l), +(218,151,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(572,167,l), +(21,167,l), +(21,0,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,20,l), +(355,721,l), +(326,721,l), +(312,665,o), +(285,627,o), +(231,627,cs), +(193,627,l), +(187,597,l), +(298,597,l), +(176,20,l) +); +}, +{ +closed = 1; +nodes = ( +(347,0,l), +(352,28,l), +(37,28,l), +(31,0,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,132,l), +(431,721,l), +(267,721,l), +(243,643,o), +(184,591,o), +(122,591,cs), +(85,591,l), +(54,446,l), +(195,446,l), +(130,132,l) +); +}, +{ +closed = 1; +nodes = ( +(413,0,l), +(444,148,l), +(-10,148,l), +(-41,0,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,25,l), +(419,721,l), +(381,721,l), +(361,653,o), +(313,578,o), +(205,578,cs), +(171,578,l), +(165,549,l), +(346,549,l), +(236,25,l) +); +}, +{ +closed = 1; +nodes = ( +(483,0,l), +(490,34,l), +(20,34,l), +(13,0,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,151,l), +(508,721,l), +(331,721,l), +(307,643,o), +(228,591,o), +(136,591,cs), +(105,591,l), +(74,446,l), +(261,446,l), +(200,151,l) +); +}, +{ +closed = 1; +nodes = ( +(530,0,l), +(565,167,l), +(3,167,l), +(-33,0,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,25,l), +(481,721,l), +(442,721,l), +(419,638,o), +(356,578,o), +(233,578,cs), +(208,578,l), +(202,549,l), +(408,549,l), +(298,25,l) +); +}, +{ +closed = 1; +nodes = ( +(574,0,l), +(581,34,l), +(47,34,l), +(40,0,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,151,l), +(578,721,l), +(370,721,l), +(345,643,o), +(267,591,o), +(175,591,cs), +(135,591,l), +(100,429,l), +(296,429,l), +(239,151,l) +); +}, +{ +closed = 1; +nodes = ( +(624,0,l), +(659,167,l), +(31,167,l), +(-5,0,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/oneeighth.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/oneeighth.glyph new file mode 100644 index 00000000..ffc11382 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/oneeighth.glyph @@ -0,0 +1,338 @@ +{ +color = 6; +glyphname = oneeighth; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (212,0); +ref = fraction; +}, +{ +pos = (331,0); +ref = eight.dnom; +} +); +width = 592; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (157,0); +ref = fraction; +}, +{ +pos = (208,0); +ref = eight.dnom; +} +); +width = 479; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (214,0); +ref = fraction; +}, +{ +pos = (315,0); +ref = eight.dnom; +} +); +width = 730; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (279,0); +ref = fraction; +}, +{ +pos = (402,0); +ref = eight.dnom; +} +); +width = 809; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (127,0); +ref = fraction; +}, +{ +pos = (164,0); +ref = eight.dnom; +} +); +width = 395; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (195,0); +ref = fraction; +}, +{ +pos = (302,0); +ref = eight.dnom; +} +); +width = 545; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (189,0); +ref = fraction; +}, +{ +pos = (259,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 610; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (250,0); +ref = fraction; +}, +{ +pos = (362,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 689; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = one.numr; +}, +{ +alignment = -1; +pos = (214,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (304,0); +ref = eight.dnom; +} +); +width = 699; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (264,0); +ref = fraction; +}, +{ +pos = (374,0); +ref = eight.dnom; +} +); +width = 761; +}, +{ +layerId = m019; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (239,0); +ref = fraction; +}, +{ +pos = (348,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 736; +}, +{ +layerId = m020; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (275,0); +ref = fraction; +}, +{ +pos = (404,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 756; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (156,0); +ref = fraction; +}, +{ +pos = (216,0); +ref = eight.dnom; +} +); +width = 487; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (210,0); +ref = fraction; +}, +{ +pos = (344,0); +ref = eight.dnom; +} +); +width = 603; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (231,0); +ref = fraction; +}, +{ +pos = (351,0); +ref = eight.dnom; +} +); +width = 742; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (286,0); +ref = fraction; +}, +{ +pos = (453,0); +ref = eight.dnom; +} +); +width = 826; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (210,0); +ref = fraction; +}, +{ +pos = (322,0); +ref = eight.dnom; +} +); +width = 736; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (277,0); +ref = fraction; +}, +{ +pos = (417,0); +ref = eight.dnom; +} +); +width = 822; +} +); +unicode = 8539; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/onehalf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/onehalf.glyph new file mode 100644 index 00000000..d85a9590 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/onehalf.glyph @@ -0,0 +1,338 @@ +{ +color = 6; +glyphname = onehalf; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (212,0); +ref = fraction; +}, +{ +pos = (332,0); +ref = two.dnom; +} +); +width = 590; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (157,0); +ref = fraction; +}, +{ +pos = (214,0); +ref = two.dnom; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (214,0); +ref = fraction; +}, +{ +pos = (317,0); +ref = two.dnom; +} +); +width = 688; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (279,0); +ref = fraction; +}, +{ +pos = (397,0); +ref = two.dnom; +} +); +width = 773; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (127,0); +ref = fraction; +}, +{ +pos = (167,0); +ref = two.dnom; +} +); +width = 352; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (195,0); +ref = fraction; +}, +{ +pos = (304,0); +ref = two.dnom; +} +); +width = 544; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (189,0); +ref = fraction; +}, +{ +pos = (272,0); +ref = two.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 583; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (250,0); +ref = fraction; +}, +{ +pos = (355,0); +ref = two.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 672; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = one.numr; +}, +{ +alignment = -1; +pos = (214,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (310,0); +ref = two.dnom; +} +); +width = 661; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (264,0); +ref = fraction; +}, +{ +pos = (372,0); +ref = two.dnom; +} +); +width = 728; +}, +{ +layerId = m019; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (239,0); +ref = fraction; +}, +{ +pos = (359,0); +ref = two.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 708; +}, +{ +layerId = m020; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (275,0); +ref = fraction; +}, +{ +pos = (403,0); +ref = two.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 746; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (156,0); +ref = fraction; +}, +{ +pos = (222,0); +ref = two.dnom; +} +); +width = 446; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (210,0); +ref = fraction; +}, +{ +pos = (344,0); +ref = two.dnom; +} +); +width = 603; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (231,0); +ref = fraction; +}, +{ +pos = (358,0); +ref = two.dnom; +} +); +width = 711; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (286,0); +ref = fraction; +}, +{ +pos = (448,0); +ref = two.dnom; +} +); +width = 804; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (210,0); +ref = fraction; +}, +{ +pos = (322,0); +ref = two.dnom; +} +); +width = 694; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (277,0); +ref = fraction; +}, +{ +pos = (421,0); +ref = two.dnom; +} +); +width = 807; +} +); +unicode = 189; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/oneinferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/oneinferior.glyph new file mode 100644 index 00000000..f76d807b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/oneinferior.glyph @@ -0,0 +1,724 @@ +{ +glyphname = oneinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (119,177); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(203,-40,l), +(203,393,l), +(101,393,l), +(97,345,o), +(67,314,o), +(29,314,cs), +(10,314,l), +(10,225,l), +(93,225,l), +(93,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 230; +}, +{ +anchors = ( +{ +name = _center; +pos = (67,177); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(101,-40,l), +(101,393,l), +(73,393,l), +(72,357,o), +(58,334,o), +(25,334,cs), +(13,334,l), +(13,307,l), +(71,307,l), +(71,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 161; +}, +{ +anchors = ( +{ +name = _center; +pos = (117,173); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(157,-40,l), +(157,393,l), +(120,393,l), +(117,351,o), +(94,323,o), +(36,323,cs), +(16,323,l), +(16,296,l), +(121,296,l), +(121,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 223; +}, +{ +anchors = ( +{ +name = _center; +pos = (158,171); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(271,-40,l), +(271,393,l), +(129,393,l), +(124,345,o), +(80,313,o), +(25,313,cs), +(6,313,l), +(6,205,l), +(121,205,l), +(121,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 314; +}, +{ +anchors = ( +{ +name = _center; +pos = (57,177); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,-40,l), +(91,393,l), +(63,393,l), +(62,357,o), +(48,334,o), +(15,334,cs), +(3,334,l), +(3,307,l), +(61,307,l), +(61,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 131; +}, +{ +anchors = ( +{ +name = _center; +pos = (112,177); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,-40,l), +(196,393,l), +(94,393,l), +(90,345,o), +(60,314,o), +(22,314,cs), +(3,314,l), +(3,225,l), +(86,225,l), +(86,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 213; +}, +{ +anchors = ( +{ +name = _center; +pos = (104,174); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,-40,l), +(137,393,l), +(103,393,l), +(99,351,o), +(77,323,o), +(19,323,cs), +(3,323,l), +(3,297,l), +(103,297,l), +(103,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 198; +}, +{ +anchors = ( +{ +name = _center; +pos = (137,174); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,-40,l), +(244,393,l), +(125,393,l), +(120,345,o), +(76,313,o), +(21,313,cs), +(1,313,l), +(1,216,l), +(117,216,l), +(117,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 274; +}, +{ +anchors = ( +{ +name = _center; +pos = (112,173); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,-40,l), +(152,393,l), +(115,393,l), +(112,351,o), +(89,323,o), +(31,323,cs), +(11,323,l), +(11,296,l), +(116,296,l), +(116,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 208; +}, +{ +anchors = ( +{ +name = _center; +pos = (153,171); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,-40,l), +(266,393,l), +(124,393,l), +(119,345,o), +(75,313,o), +(20,313,cs), +(1,313,l), +(1,205,l), +(116,205,l), +(116,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 299; +}, +{ +anchors = ( +{ +name = _center; +pos = (130,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(161,-40,l), +(161,393,l), +(129,393,l), +(125,351,o), +(103,323,o), +(47,323,cs), +(31,323,l), +(31,297,l), +(129,297,l), +(129,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 248; +}, +{ +anchors = ( +{ +name = _center; +pos = (143,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(248,-40,l), +(248,393,l), +(131,393,l), +(126,345,o), +(85,313,o), +(36,313,cs), +(17,313,l), +(17,216,l), +(123,216,l), +(123,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 299; +}, +{ +anchors = ( +{ +name = _center; +pos = (55,177); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(38,-40,l), +(129,393,l), +(102,393,l), +(93,357,o), +(75,334,o), +(42,334,cs), +(30,334,l), +(25,307,l), +(82,307,l), +(9,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 160; +}, +{ +anchors = ( +{ +name = _center; +pos = (118,177); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-40,l), +(227,393,l), +(127,393,l), +(113,348,o), +(79,314,o), +(39,314,cs), +(20,314,l), +(1,225,l), +(83,225,l), +(27,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 228; +}, +{ +anchors = ( +{ +name = _center; +pos = (96,177); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-40,l), +(183,393,l), +(149,393,l), +(137,351,o), +(110,323,o), +(56,323,cs), +(42,323,l), +(36,297,l), +(128,297,l), +(58,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 240; +}, +{ +anchors = ( +{ +name = _center; +pos = (157,177); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-40,l), +(282,393,l), +(161,393,l), +(145,345,o), +(96,313,o), +(45,313,cs), +(27,313,l), +(6,214,l), +(115,214,l), +(62,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 310; +}, +{ +anchors = ( +{ +name = _center; +pos = (92,177); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-40,l), +(183,393,l), +(147,393,l), +(132,345,o), +(101,323,o), +(49,323,cs), +(30,323,l), +(24,296,l), +(126,296,l), +(56,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 220; +}, +{ +anchors = ( +{ +name = _center; +pos = (159,177); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-40,l), +(291,393,l), +(152,393,l), +(136,344,o), +(86,313,o), +(32,313,cs), +(14,313,l), +(-9,205,l), +(104,205,l), +(53,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 309; +} +); +unicode = 8321; +userData = { +KernOnName = oneinferior; +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/onequarter.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/onequarter.glyph new file mode 100644 index 00000000..a68eb8c6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/onequarter.glyph @@ -0,0 +1,338 @@ +{ +color = 6; +glyphname = onequarter; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (212,0); +ref = fraction; +}, +{ +pos = (296,0); +ref = four.dnom; +} +); +width = 579; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (157,0); +ref = fraction; +}, +{ +pos = (193,0); +ref = four.dnom; +} +); +width = 435; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (214,0); +ref = fraction; +}, +{ +pos = (265,0); +ref = four.dnom; +} +); +width = 673; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (279,0); +ref = fraction; +}, +{ +pos = (355,0); +ref = four.dnom; +} +); +width = 755; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (127,0); +ref = fraction; +}, +{ +pos = (147,0); +ref = four.dnom; +} +); +width = 359; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (195,0); +ref = fraction; +}, +{ +pos = (267,0); +ref = four.dnom; +} +); +width = 536; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (189,0); +ref = fraction; +}, +{ +pos = (231,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 547; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (250,0); +ref = fraction; +}, +{ +pos = (323,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 671; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = one.numr; +}, +{ +alignment = -1; +pos = (214,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (254,0); +ref = four.dnom; +} +); +width = 642; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (264,0); +ref = fraction; +}, +{ +pos = (328,0); +ref = four.dnom; +} +); +width = 718; +}, +{ +layerId = m019; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (239,0); +ref = fraction; +}, +{ +pos = (314,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 677; +}, +{ +layerId = m020; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (275,0); +ref = fraction; +}, +{ +pos = (377,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 742; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (156,0); +ref = fraction; +}, +{ +pos = (199,0); +ref = four.dnom; +} +); +width = 440; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (210,0); +ref = fraction; +}, +{ +pos = (309,0); +ref = four.dnom; +} +); +width = 590; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (231,0); +ref = fraction; +}, +{ +pos = (320,0); +ref = four.dnom; +} +); +width = 685; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (286,0); +ref = fraction; +}, +{ +pos = (417,0); +ref = four.dnom; +} +); +width = 799; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (210,0); +ref = fraction; +}, +{ +pos = (263,0); +ref = four.dnom; +} +); +width = 648; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (277,0); +ref = fraction; +}, +{ +pos = (371,0); +ref = four.dnom; +} +); +width = 762; +} +); +unicode = 188; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/onesuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/onesuperior.glyph new file mode 100644 index 00000000..850cd19e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/onesuperior.glyph @@ -0,0 +1,419 @@ +{ +color = 6; +glyphname = onesuperior; +kernLeft = KO_onesuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 230; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 161; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 223; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 314; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 131; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 213; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = oneinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = oneinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 198; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = oneinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = oneinferior; +}; +width = 274; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 208; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 299; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = oneinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = oneinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 248; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = oneinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = oneinferior; +}; +width = 299; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 160; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 228; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 240; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 310; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 220; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 309; +} +); +unicode = 185; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ordfeminine.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ordfeminine.glyph new file mode 100644 index 00000000..9a84502b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ordfeminine.glyph @@ -0,0 +1,876 @@ +{ +glyphname = ordfeminine; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,385,o), +(175,407,o), +(186,441,c), +(187,441,l), +(187,392,l), +(217,392,l), +(217,729,l), +(188,729,l), +(187,680,l), +(186,680,l), +(175,714,o), +(157,736,o), +(124,736,cs), +(78,736,o), +(48,693,o), +(48,560,cs), +(48,429,o), +(77,385,o), +(124,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(89,410,o), +(78,465,o), +(78,560,cs), +(78,657,o), +(89,711,o), +(134,711,cs), +(166,711,o), +(187,672,o), +(187,591,cs), +(187,529,ls), +(187,449,o), +(166,410,o), +(134,410,cs) +); +} +); +width = 277; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,370,o), +(164,385,o), +(176,418,c), +(181,418,l), +(181,377,l), +(299,377,l), +(299,729,l), +(184,729,l), +(181,688,l), +(176,688,l), +(164,721,o), +(141,736,o), +(109,736,cs), +(55,736,o), +(17,698,o), +(17,553,cs), +(17,442,o), +(36,370,o), +(109,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(142,463,o), +(136,483,o), +(136,553,cs), +(136,614,o), +(139,645,o), +(159,645,cs), +(174,645,o), +(181,625,o), +(181,562,cs), +(181,544,ls), +(181,489,o), +(176,463,o), +(159,463,cs) +); +} +); +width = 325; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,385,o), +(339,420,o), +(360,471,c), +(363,471,l), +(363,391,l), +(400,391,l), +(400,729,l), +(365,729,l), +(363,655,l), +(360,655,l), +(338,705,o), +(282,735,o), +(210,735,cs), +(109,735,o), +(40,668,o), +(40,560,cs), +(40,454,o), +(109,385,o), +(210,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(134,417,o), +(78,473,o), +(78,560,cs), +(78,651,o), +(134,703,o), +(218,703,cs), +(308,703,o), +(363,645,o), +(363,581,cs), +(363,545,ls), +(363,478,o), +(309,417,o), +(218,417,cs) +); +} +); +width = 466; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,370,o), +(284,389,o), +(306,421,c), +(311,421,l), +(311,377,l), +(459,377,l), +(459,731,l), +(318,731,l), +(314,686,l), +(309,686,l), +(289,716,o), +(251,736,o), +(189,736,cs), +(86,736,o), +(17,666,o), +(17,553,cs), +(17,442,o), +(86,370,o), +(189,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,481,o), +(165,505,o), +(165,553,cs), +(165,601,o), +(194,626,o), +(236,626,cs), +(282,626,o), +(310,598,o), +(310,557,cs), +(310,550,ls), +(310,509,o), +(283,481,o), +(236,481,cs) +); +} +); +width = 502; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,385,o), +(155,407,o), +(166,441,c), +(167,441,l), +(167,392,l), +(197,392,l), +(197,729,l), +(168,729,l), +(167,680,l), +(166,680,l), +(155,714,o), +(137,736,o), +(104,736,cs), +(58,736,o), +(28,693,o), +(28,560,cs), +(28,429,o), +(57,385,o), +(104,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(69,410,o), +(58,465,o), +(58,560,cs), +(58,657,o), +(69,711,o), +(114,711,cs), +(146,711,o), +(167,672,o), +(167,591,cs), +(167,529,ls), +(167,449,o), +(146,410,o), +(114,410,cs) +); +} +); +width = 233; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(128,370,o), +(154,385,o), +(166,418,c), +(171,418,l), +(171,377,l), +(289,377,l), +(289,729,l), +(174,729,l), +(171,688,l), +(166,688,l), +(154,721,o), +(131,736,o), +(99,736,cs), +(45,736,o), +(7,698,o), +(7,553,cs), +(7,442,o), +(26,370,o), +(99,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(132,463,o), +(126,483,o), +(126,553,cs), +(126,614,o), +(129,645,o), +(149,645,cs), +(164,645,o), +(171,625,o), +(171,562,cs), +(171,544,ls), +(171,489,o), +(166,463,o), +(149,463,cs) +); +} +); +width = 305; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,386,o), +(288,415,o), +(307,467,c), +(309,467,l), +(309,391,l), +(344,391,l), +(344,729,l), +(311,729,l), +(309,654,l), +(307,654,l), +(289,703,o), +(244,735,o), +(182,735,cs), +(98,735,o), +(41,670,o), +(41,560,cs), +(41,451,o), +(98,386,o), +(182,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(123,416,o), +(77,469,o), +(77,560,cs), +(77,653,o), +(123,705,o), +(192,705,cs), +(266,705,o), +(308,645,o), +(308,583,cs), +(308,538,ls), +(308,476,o), +(266,416,o), +(192,416,cs) +); +} +); +width = 403; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,370,o), +(239,396,o), +(254,430,c), +(260,430,l), +(260,377,l), +(388,377,l), +(388,731,l), +(265,731,l), +(260,678,l), +(254,678,l), +(238,714,o), +(200,738,o), +(150,738,cs), +(67,738,o), +(12,679,o), +(12,554,cs), +(12,429,o), +(67,370,o), +(150,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,472,o), +(142,496,o), +(142,554,cs), +(142,613,o), +(165,636,o), +(201,636,cs), +(243,636,o), +(259,602,o), +(259,568,cs), +(259,540,ls), +(259,506,o), +(243,472,o), +(201,472,cs) +); +} +); +width = 418; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,385,o), +(329,420,o), +(350,471,c), +(353,471,l), +(353,391,l), +(390,391,l), +(390,729,l), +(355,729,l), +(353,655,l), +(350,655,l), +(328,705,o), +(272,735,o), +(200,735,cs), +(99,735,o), +(30,668,o), +(30,560,cs), +(30,454,o), +(99,385,o), +(200,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,417,o), +(68,473,o), +(68,560,cs), +(68,651,o), +(124,703,o), +(208,703,cs), +(298,703,o), +(353,645,o), +(353,581,cs), +(353,545,ls), +(353,478,o), +(299,417,o), +(208,417,cs) +); +} +); +width = 446; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,370,o), +(274,389,o), +(296,421,c), +(301,421,l), +(301,377,l), +(449,377,l), +(449,731,l), +(308,731,l), +(304,686,l), +(299,686,l), +(279,716,o), +(241,736,o), +(179,736,cs), +(76,736,o), +(7,666,o), +(7,553,cs), +(7,442,o), +(76,370,o), +(179,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,481,o), +(155,505,o), +(155,553,cs), +(155,601,o), +(184,626,o), +(226,626,cs), +(272,626,o), +(300,598,o), +(300,557,cs), +(300,550,ls), +(300,509,o), +(273,481,o), +(226,481,cs) +); +} +); +width = 482; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(257,386,o), +(305,415,o), +(324,467,c), +(326,467,l), +(326,391,l), +(359,391,l), +(359,729,l), +(328,729,l), +(326,654,l), +(324,654,l), +(306,703,o), +(261,735,o), +(201,735,cs), +(119,735,o), +(62,670,o), +(62,560,cs), +(62,451,o), +(119,386,o), +(201,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,416,o), +(98,469,o), +(98,560,cs), +(98,653,o), +(144,705,o), +(211,705,cs), +(283,705,o), +(325,645,o), +(325,583,cs), +(325,538,ls), +(325,476,o), +(283,416,o), +(211,416,cs) +); +} +); +width = 446; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(212,370,o), +(248,396,o), +(261,430,c), +(267,430,l), +(267,377,l), +(394,377,l), +(394,731,l), +(272,731,l), +(267,678,l), +(261,678,l), +(247,714,o), +(210,738,o), +(163,738,cs), +(84,738,o), +(32,679,o), +(32,554,cs), +(32,429,o), +(84,370,o), +(163,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,472,o), +(160,496,o), +(160,554,cs), +(160,613,o), +(181,636,o), +(214,636,cs), +(252,636,o), +(266,602,o), +(266,568,cs), +(266,540,ls), +(266,506,o), +(252,472,o), +(214,472,cs) +); +} +); +width = 446; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(183,385,o), +(204,403,o), +(221,437,c), +(222,437,l), +(213,392,l), +(243,392,l), +(313,729,l), +(284,729,l), +(273,675,l), +(271,675,l), +(268,712,o), +(253,735,o), +(217,735,cs), +(174,735,o), +(138,692,o), +(111,564,cs), +(92,474,o), +(87,385,o), +(155,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,409,o), +(122,470,o), +(141,564,cs), +(161,662,o), +(183,709,o), +(223,709,cs), +(266,709,o), +(268,650,o), +(254,586,cs), +(241,525,ls), +(224,445,o), +(196,409,o), +(167,409,cs) +); +} +); +width = 275; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,370,o), +(189,387,o), +(204,414,c), +(208,413,l), +(205,377,l), +(319,377,l), +(391,729,l), +(278,729,l), +(266,683,l), +(262,683,l), +(256,719,o), +(232,736,o), +(196,736,cs), +(145,736,o), +(105,693,o), +(77,559,cs), +(57,462,o), +(50,370,o), +(134,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,459,o), +(180,490,o), +(193,551,cs), +(206,614,o), +(215,641,o), +(233,641,cs), +(257,641,o), +(248,601,o), +(238,557,cs), +(234,539,ls), +(222,482,o), +(213,459,o), +(196,459,cs) +); +} +); +width = 323; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,385,o), +(336,411,o), +(363,457,c), +(365,457,l), +(352,392,l), +(387,392,l), +(457,729,l), +(424,729,l), +(405,646,l), +(403,646,l), +(394,699,o), +(353,736,o), +(291,736,cs), +(194,736,o), +(122,646,o), +(122,520,cs), +(122,437,o), +(166,385,o), +(237,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,416,o), +(158,455,o), +(158,525,cs), +(158,629,o), +(218,705,o), +(296,705,cs), +(365,705,o), +(403,645,o), +(389,575,cs), +(380,529,ls), +(368,468,o), +(318,416,o), +(251,416,cs) +); +} +); +width = 444; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,370,o), +(277,389,o), +(295,423,c), +(302,423,l), +(292,377,l), +(419,377,l), +(493,731,l), +(369,731,l), +(354,677,l), +(347,677,l), +(336,711,o), +(303,738,o), +(256,738,cs), +(162,738,o), +(105,661,o), +(89,538,cs), +(76,437,o), +(119,370,o), +(196,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(235,473,o), +(220,491,o), +(220,526,cs), +(220,593,o), +(249,636,o), +(290,636,cs), +(326,636,o), +(340,602,o), +(333,571,cs), +(322,522,ls), +(316,494,o), +(296,473,o), +(264,473,cs) +); +} +); +width = 451; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,385,o), +(370,416,o), +(399,459,c), +(401,459,l), +(388,392,l), +(424,392,l), +(494,729,l), +(461,729,l), +(439,639,l), +(437,639,l), +(427,697,o), +(369,736,o), +(296,736,cs), +(184,736,o), +(100,651,o), +(100,531,cs), +(100,438,o), +(162,385,o), +(249,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,417,o), +(137,465,o), +(137,533,cs), +(137,630,o), +(204,705,o), +(298,705,cs), +(393,705,o), +(434,641,o), +(420,554,cs), +(417,535,ls), +(404,465,o), +(340,417,o), +(259,417,cs) +); +} +); +width = 462; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,370,o), +(307,386,o), +(330,410,c), +(335,410,l), +(333,377,l), +(474,377,l), +(548,731,l), +(404,731,l), +(387,676,l), +(381,676,l), +(367,714,o), +(317,738,o), +(263,738,cs), +(147,738,o), +(75,650,o), +(75,528,cs), +(75,433,o), +(135,370,o), +(228,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(249,480,o), +(223,500,o), +(223,542,cs), +(223,593,o), +(252,626,o), +(297,626,cs), +(343,626,o), +(370,594,o), +(361,549,cs), +(359,539,ls), +(352,506,o), +(331,480,o), +(285,480,cs) +); +} +); +width = 495; +} +); +unicode = 170; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ordmasculine.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ordmasculine.glyph new file mode 100644 index 00000000..a5445d5f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ordmasculine.glyph @@ -0,0 +1,1128 @@ +{ +glyphname = ordmasculine; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (134,392); +}, +{ +name = center; +pos = (134,561); +}, +{ +name = ogonek; +pos = (222,399); +}, +{ +name = top; +pos = (134,729); +}, +{ +name = topright; +pos = (231,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,385,o), +(221,454,o), +(221,561,cs), +(221,667,o), +(202,736,o), +(134,736,cs), +(66,736,o), +(47,666,o), +(47,561,cs), +(47,455,o), +(66,385,o), +(134,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(99,411,o), +(76,442,o), +(76,561,cs), +(76,679,o), +(99,710,o), +(134,710,cs), +(169,710,o), +(191,679,o), +(191,561,cs), +(191,442,o), +(169,411,o), +(134,411,cs) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = bottom; +pos = (155,377); +}, +{ +name = center; +pos = (155,553); +}, +{ +name = ogonek; +pos = (275,384); +}, +{ +name = top; +pos = (155,729); +}, +{ +name = topright; +pos = (292,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,370,o), +(296,418,o), +(296,555,cs), +(296,687,o), +(242,736,o), +(155,736,cs), +(67,736,o), +(15,686,o), +(15,555,cs), +(15,419,o), +(70,370,o), +(155,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,463,o), +(133,489,o), +(133,553,cs), +(133,623,o), +(137,644,o), +(155,644,cs), +(173,644,o), +(177,624,o), +(177,553,cs), +(177,488,o), +(174,463,o), +(155,463,cs) +); +} +); +width = 311; +}, +{ +anchors = ( +{ +name = bottom; +pos = (228,392); +}, +{ +name = center; +pos = (228,561); +}, +{ +name = ogonek; +pos = (398,399); +}, +{ +name = top; +pos = (228,730); +}, +{ +name = topright; +pos = (427,730); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(341,384,o), +(417,455,o), +(417,559,cs), +(417,665,o), +(341,734,o), +(228,734,cs), +(114,734,o), +(38,665,o), +(38,559,cs), +(38,454,o), +(114,384,o), +(228,384,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,417,o), +(76,473,o), +(76,559,cs), +(76,646,o), +(136,702,o), +(228,702,cs), +(320,702,o), +(379,646,o), +(379,559,cs), +(379,473,o), +(319,417,o), +(228,417,cs) +); +} +); +width = 455; +}, +{ +anchors = ( +{ +name = bottom; +pos = (234,377); +}, +{ +name = center; +pos = (234,554); +}, +{ +name = ogonek; +pos = (419,384); +}, +{ +name = top; +pos = (234,731); +}, +{ +name = topright; +pos = (453,731); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(367,370,o), +(454,437,o), +(454,554,cs), +(454,673,o), +(366,738,o), +(234,738,cs), +(101,738,o), +(14,671,o), +(14,554,cs), +(14,436,o), +(102,370,o), +(234,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,482,o), +(162,509,o), +(162,554,cs), +(162,599,o), +(186,627,o), +(234,627,cs), +(283,627,o), +(307,599,o), +(307,554,cs), +(307,510,o), +(283,482,o), +(234,482,cs) +); +} +); +width = 468; +}, +{ +anchors = ( +{ +name = bottom; +pos = (114,392); +}, +{ +name = center; +pos = (114,561); +}, +{ +name = ogonek; +pos = (202,399); +}, +{ +name = top; +pos = (114,729); +}, +{ +name = topright; +pos = (211,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,385,o), +(201,454,o), +(201,561,cs), +(201,667,o), +(182,736,o), +(114,736,cs), +(46,736,o), +(27,666,o), +(27,561,cs), +(27,455,o), +(46,385,o), +(114,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(79,411,o), +(56,442,o), +(56,561,cs), +(56,679,o), +(79,710,o), +(114,710,cs), +(149,710,o), +(171,679,o), +(171,561,cs), +(171,442,o), +(149,411,o), +(114,411,cs) +); +} +); +width = 228; +}, +{ +anchors = ( +{ +name = bottom; +pos = (146,377); +}, +{ +name = center; +pos = (146,553); +}, +{ +name = ogonek; +pos = (266,384); +}, +{ +name = top; +pos = (146,729); +}, +{ +name = topright; +pos = (283,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,370,o), +(287,418,o), +(287,555,cs), +(287,687,o), +(233,736,o), +(146,736,cs), +(58,736,o), +(6,686,o), +(6,555,cs), +(6,419,o), +(61,370,o), +(146,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(127,463,o), +(124,489,o), +(124,553,cs), +(124,623,o), +(128,644,o), +(146,644,cs), +(164,644,o), +(168,624,o), +(168,553,cs), +(168,488,o), +(165,463,o), +(146,463,cs) +); +} +); +width = 293; +}, +{ +anchors = ( +{ +name = bottom; +pos = (198,392); +}, +{ +name = center; +pos = (198,561); +}, +{ +name = ogonek; +pos = (354,399); +}, +{ +name = top; +pos = (198,730); +}, +{ +name = topright; +pos = (380,730); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,386,o), +(358,457,o), +(358,560,cs), +(358,665,o), +(294,734,o), +(199,734,cs), +(102,734,o), +(38,662,o), +(38,559,cs), +(38,455,o), +(103,386,o), +(199,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,417,o), +(74,473,o), +(74,559,cs), +(74,648,o), +(124,703,o), +(199,703,cs), +(275,703,o), +(323,647,o), +(323,560,cs), +(323,472,o), +(273,417,o), +(199,417,cs) +); +} +); +width = 396; +}, +{ +anchors = ( +{ +name = bottom; +pos = (190,377); +}, +{ +name = center; +pos = (190,554); +}, +{ +name = ogonek; +pos = (348,384); +}, +{ +name = top; +pos = (190,731); +}, +{ +name = topright; +pos = (375,731); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(307,370,o), +(372,444,o), +(372,554,cs), +(372,671,o), +(299,738,o), +(190,738,cs), +(73,738,o), +(8,664,o), +(8,554,cs), +(8,437,o), +(81,370,o), +(190,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,472,o), +(137,495,o), +(137,554,cs), +(137,613,o), +(158,636,o), +(190,636,cs), +(222,636,o), +(243,614,o), +(243,554,cs), +(243,494,o), +(222,472,o), +(190,472,cs) +); +} +); +width = 380; +}, +{ +anchors = ( +{ +name = bottom; +pos = (218,392); +}, +{ +name = center; +pos = (218,561); +}, +{ +name = ogonek; +pos = (388,399); +}, +{ +name = top; +pos = (218,730); +}, +{ +name = topright; +pos = (417,730); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,384,o), +(407,455,o), +(407,559,cs), +(407,665,o), +(331,734,o), +(218,734,cs), +(104,734,o), +(28,665,o), +(28,559,cs), +(28,454,o), +(104,384,o), +(218,384,cs) +); +}, +{ +closed = 1; +nodes = ( +(126,417,o), +(66,473,o), +(66,559,cs), +(66,646,o), +(126,702,o), +(218,702,cs), +(310,702,o), +(369,646,o), +(369,559,cs), +(369,473,o), +(309,417,o), +(218,417,cs) +); +} +); +width = 435; +}, +{ +anchors = ( +{ +name = bottom; +pos = (224,377); +}, +{ +name = center; +pos = (224,554); +}, +{ +name = ogonek; +pos = (409,384); +}, +{ +name = top; +pos = (224,731); +}, +{ +name = topright; +pos = (443,731); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,370,o), +(444,437,o), +(444,554,cs), +(444,673,o), +(356,738,o), +(224,738,cs), +(91,738,o), +(4,671,o), +(4,554,cs), +(4,436,o), +(92,370,o), +(224,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,482,o), +(152,509,o), +(152,554,cs), +(152,599,o), +(176,627,o), +(224,627,cs), +(273,627,o), +(297,599,o), +(297,554,cs), +(297,510,o), +(273,482,o), +(224,482,cs) +); +} +); +width = 448; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,392); +}, +{ +name = center; +pos = (217,561); +}, +{ +name = ogonek; +pos = (369,399); +}, +{ +name = top; +pos = (217,730); +}, +{ +name = topright; +pos = (395,730); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(312,386,o), +(373,457,o), +(373,560,cs), +(373,665,o), +(311,734,o), +(218,734,cs), +(123,734,o), +(59,662,o), +(59,559,cs), +(59,455,o), +(124,386,o), +(218,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,417,o), +(95,473,o), +(95,559,cs), +(95,648,o), +(145,703,o), +(218,703,cs), +(292,703,o), +(340,647,o), +(340,560,cs), +(340,472,o), +(290,417,o), +(218,417,cs) +); +} +); +width = 433; +}, +{ +anchors = ( +{ +name = bottom; +pos = (203,377); +}, +{ +name = center; +pos = (203,554); +}, +{ +name = ogonek; +pos = (354,384); +}, +{ +name = top; +pos = (203,731); +}, +{ +name = topright; +pos = (380,731); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(316,370,o), +(378,444,o), +(378,554,cs), +(378,671,o), +(308,738,o), +(203,738,cs), +(90,738,o), +(28,664,o), +(28,554,cs), +(28,437,o), +(98,370,o), +(203,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,472,o), +(155,495,o), +(155,554,cs), +(155,613,o), +(174,636,o), +(203,636,cs), +(232,636,o), +(250,614,o), +(250,554,cs), +(250,494,o), +(232,472,o), +(203,472,cs) +); +} +); +width = 405; +}, +{ +anchors = ( +{ +name = bottom; +pos = (169,392); +}, +{ +name = center; +pos = (196,561); +}, +{ +name = ogonek; +pos = (258,399); +}, +{ +name = top; +pos = (228,729); +}, +{ +name = topright; +pos = (335,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,386,o), +(260,451,o), +(283,562,cs), +(307,674,o), +(293,735,o), +(226,735,cs), +(170,735,o), +(135,683,o), +(111,567,cs), +(90,468,o), +(89,386,o), +(167,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(115,412,o), +(124,486,o), +(140,566,cs), +(163,678,o), +(192,710,o), +(224,710,cs), +(276,710,o), +(270,635,o), +(254,560,cs), +(229,439,o), +(200,412,o), +(170,412,cs) +); +} +); +width = 267; +}, +{ +anchors = ( +{ +name = bottom; +pos = (183,377); +}, +{ +name = center; +pos = (213,553); +}, +{ +name = ogonek; +pos = (304,384); +}, +{ +name = top; +pos = (248,729); +}, +{ +name = topright; +pos = (393,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,370,o), +(325,424,o), +(351,548,cs), +(375,663,o), +(348,736,o), +(236,736,cs), +(157,736,o), +(102,690,o), +(76,565,cs), +(49,436,o), +(83,370,o), +(190,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(172,463,o), +(177,492,o), +(191,558,cs), +(206,630,o), +(215,644,o), +(231,644,cs), +(254,644,o), +(247,605,o), +(235,552,cs), +(220,483,o), +(211,463,o), +(195,463,cs) +); +} +); +width = 309; +}, +{ +anchors = ( +{ +name = bottom; +pos = (248,392); +}, +{ +name = center; +pos = (277,561); +}, +{ +name = ogonek; +pos = (397,399); +}, +{ +name = top; +pos = (303,730); +}, +{ +name = topright; +pos = (489,730); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,385,o), +(429,467,o), +(433,586,cs), +(436,682,o), +(382,737,o), +(301,737,cs), +(198,737,o), +(124,656,o), +(120,536,cs), +(117,442,o), +(173,385,o), +(254,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(189,416,o), +(152,463,o), +(155,536,cs), +(159,642,o), +(217,707,o), +(298,707,cs), +(362,707,o), +(403,661,o), +(400,586,cs), +(397,489,o), +(342,416,o), +(257,416,cs) +); +} +); +width = 428; +}, +{ +anchors = ( +{ +name = bottom; +pos = (235,377); +}, +{ +name = center; +pos = (265,554); +}, +{ +name = ogonek; +pos = (391,384); +}, +{ +name = top; +pos = (297,731); +}, +{ +name = topright; +pos = (488,731); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,370,o), +(438,451,o), +(443,581,cs), +(447,684,o), +(379,738,o), +(283,738,cs), +(170,738,o), +(92,661,o), +(87,528,cs), +(83,424,o), +(149,370,o), +(247,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,473,o), +(212,492,o), +(213,529,cs), +(215,590,o), +(239,636,o), +(277,636,cs), +(305,636,o), +(317,617,o), +(316,575,cs), +(314,514,o), +(291,473,o), +(254,473,cs) +); +} +); +width = 413; +}, +{ +anchors = ( +{ +name = bottom; +pos = (260,392); +}, +{ +name = center; +pos = (288,561); +}, +{ +name = ogonek; +pos = (431,399); +}, +{ +name = top; +pos = (310,730); +}, +{ +name = topright; +pos = (529,730); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,385,o), +(470,464,o), +(474,576,cs), +(477,677,o), +(414,736,o), +(308,736,cs), +(188,736,o), +(104,657,o), +(100,543,cs), +(97,448,o), +(161,385,o), +(268,385,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,417,o), +(135,459,o), +(138,545,cs), +(141,640,o), +(208,705,o), +(305,705,cs), +(385,705,o), +(440,664,o), +(437,575,cs), +(434,484,o), +(368,417,o), +(271,417,cs) +); +} +); +width = 449; +}, +{ +anchors = ( +{ +name = bottom; +pos = (262,377); +}, +{ +name = center; +pos = (291,554); +}, +{ +name = ogonek; +pos = (450,384); +}, +{ +name = top; +pos = (320,731); +}, +{ +name = topright; +pos = (555,731); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,370,o), +(509,449,o), +(509,574,cs), +(509,674,o), +(435,738,o), +(304,738,cs), +(163,738,o), +(73,659,o), +(73,533,cs), +(73,435,o), +(148,370,o), +(277,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(247,482,o), +(219,506,o), +(219,544,cs), +(219,594,o), +(250,626,o), +(298,626,cs), +(335,626,o), +(363,602,o), +(363,565,cs), +(363,514,o), +(332,482,o), +(284,482,cs) +); +} +); +width = 466; +} +); +unicode = 186; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/oslash.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/oslash.glyph new file mode 100644 index 00000000..d0ca8321 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/oslash.glyph @@ -0,0 +1,249 @@ +{ +color = 6; +glyphname = oslash; +kernLeft = KO_e; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-7,0); +ref = slashlongcomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (35,0); +ref = slashlongcomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +ref = slashlongcomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-32,0); +ref = slashlongcomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (-7,0); +ref = slashlongcomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (36,0); +ref = slashlongcomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +ref = slashlongcomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (-36,0); +ref = slashlongcomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +ref = slashlongcomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (-32,0); +ref = slashlongcomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,0); +ref = slashlongcomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (-30,0); +ref = slashlongcomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-7,0); +ref = slashlongcomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (36,0); +ref = slashlongcomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-4,0); +ref = slashlongcomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-38,1); +ref = slashlongcomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-3,0); +ref = slashlongcomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-34,0); +ref = slashlongcomb; +} +); +width = 692; +} +); +unicode = 248; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/otilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/otilde.glyph new file mode 100644 index 00000000..8bf6a2bb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/otilde.glyph @@ -0,0 +1,253 @@ +{ +color = 6; +glyphname = otilde; +kernLeft = KO_egrave; +kernRight = KO_oacute; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = o; +}, +{ +pos = (28,-156); +ref = tildecomb; +} +); +width = 337; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-5,-138); +ref = tildecomb; +} +); +width = 454; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = o; +}, +{ +pos = (113,-155); +ref = tildecomb; +} +); +width = 640; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = o; +}, +{ +pos = (83,-129); +ref = tildecomb; +} +); +width = 694; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (28,-156); +ref = tildecomb; +} +); +width = 337; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-4,-138); +ref = tildecomb; +} +); +width = 436; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (106,-155); +ref = tildecomb; +} +); +width = 589; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (46,-134); +ref = tildecomb; +} +); +width = 588; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (113,-155); +ref = tildecomb; +} +); +width = 640; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +alignment = -1; +pos = (83,-129); +ref = tildecomb; +} +); +width = 694; +}, +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (107,-155); +ref = tildecomb; +} +); +width = 590; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (51,-134); +ref = tildecomb; +} +); +width = 602; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-7,-156); +ref = tildecomb; +} +); +width = 336; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-38,-138); +ref = tildecomb; +} +); +width = 451; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = o; +}, +{ +pos = (53,-155); +ref = tildecomb; +} +); +width = 577; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,-134); +ref = tildecomb; +} +); +width = 605; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = o; +}, +{ +pos = (57,-155); +ref = tildecomb; +} +); +width = 631; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = o; +}, +{ +pos = (46,-134); +ref = tildecomb; +} +); +width = 692; +} +); +unicode = 245; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/p.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/p.glyph new file mode 100644 index 00000000..43c191ec --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/p.glyph @@ -0,0 +1,1528 @@ +{ +glyphname = p; +kernLeft = KO_n; +kernRight = KO_o; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = top; +pos = (236,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,-167,l), +(204,64,l), +(210,64,l), +(230,15,o), +(266,-10,o), +(315,-10,cs), +(426,-10,o), +(454,99,o), +(454,271,cs), +(454,492,o), +(398,551,o), +(315,551,cs), +(264,551,o), +(228,526,o), +(210,477,c), +(204,477,l), +(201,541,l), +(27,541,l), +(27,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(211,128,o), +(204,174,o), +(204,256,cs), +(204,285,ls), +(204,381,o), +(215,415,o), +(240,415,cs), +(271,415,o), +(278,369,o), +(278,271,cs), +(278,160,o), +(267,128,o), +(240,128,cs) +); +} +); +width = 470; +}, +{ +anchors = ( +{ +name = bottom; +pos = (169,0); +}, +{ +name = top; +pos = (169,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(150,-167,l), +(150,119,l), +(154,119,l), +(181,43,o), +(252,-9,o), +(349,-9,cs), +(478,-9,o), +(567,93,o), +(567,258,cs), +(567,424,o), +(478,526,o), +(349,526,cs), +(252,526,o), +(181,474,o), +(154,398,c), +(150,398,l), +(151,518,l), +(115,518,l), +(114,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(221,25,o), +(151,121,o), +(151,223,cs), +(151,294,ls), +(151,396,o), +(221,492,o), +(342,492,cs), +(454,492,o), +(529,407,o), +(529,258,cs), +(529,110,o), +(454,25,o), +(342,25,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,-167,l), +(89,77,l), +(91,77,l), +(107,26,o), +(133,-10,o), +(185,-10,cs), +(252,-10,o), +(299,51,o), +(299,258,cs), +(299,464,o), +(253,526,o), +(185,526,cs), +(133,526,o), +(107,491,o), +(91,439,c), +(89,439,l), +(88,516,l), +(60,516,l), +(60,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(125,16,o), +(89,76,o), +(89,206,cs), +(89,309,ls), +(89,437,o), +(124,500,o), +(177,500,cs), +(250,500,o), +(269,414,o), +(269,258,cs), +(269,101,o), +(250,16,o), +(177,16,cs) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = bottom; +pos = (323,0); +}, +{ +name = top; +pos = (323,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,-167,l), +(103,130,l), +(107,130,l), +(139,46,o), +(232,-9,o), +(343,-9,cs), +(500,-9,o), +(605,97,o), +(605,259,cs), +(605,424,o), +(499,526,o), +(343,526,cs), +(226,526,o), +(139,474,o), +(107,398,c), +(103,398,l), +(101,517,l), +(66,517,l), +(66,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(190,25,o), +(103,126,o), +(103,234,cs), +(103,294,ls), +(103,396,o), +(190,492,o), +(339,492,cs), +(475,492,o), +(567,407,o), +(567,259,cs), +(567,118,o), +(476,25,o), +(339,25,cs) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (370,0); +}, +{ +name = top; +pos = (370,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-167,l), +(264,69,l), +(271,69,l), +(306,19,o), +(373,-10,o), +(452,-10,cs), +(611,-10,o), +(717,99,o), +(717,271,cs), +(717,444,o), +(611,552,o), +(454,552,cs), +(357,552,o), +(298,520,o), +(266,473,c), +(259,473,l), +(252,544,l), +(43,544,l), +(43,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(308,155,o), +(264,200,o), +(264,265,cs), +(264,277,ls), +(264,342,o), +(308,387,o), +(383,387,cs), +(451,387,o), +(496,346,o), +(496,271,cs), +(496,195,o), +(450,155,o), +(383,155,cs) +); +} +); +width = 729; +}, +{ +anchors = ( +{ +name = bottom; +pos = (146,0); +}, +{ +name = top; +pos = (146,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(151,-167,l), +(151,119,l), +(155,119,l), +(182,43,o), +(253,-9,o), +(350,-9,cs), +(479,-9,o), +(568,93,o), +(568,258,cs), +(568,424,o), +(479,526,o), +(350,526,cs), +(253,526,o), +(182,474,o), +(155,398,c), +(151,398,l), +(152,518,l), +(116,518,l), +(115,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(222,25,o), +(152,121,o), +(152,223,cs), +(152,294,ls), +(152,396,o), +(222,492,o), +(343,492,cs), +(455,492,o), +(530,407,o), +(530,258,cs), +(530,110,o), +(455,25,o), +(343,25,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,-167,l), +(66,75,l), +(68,75,l), +(86,19,o), +(121,-10,o), +(169,-10,cs), +(250,-10,o), +(287,69,o), +(287,258,cs), +(287,447,o), +(250,526,o), +(169,526,cs), +(121,526,o), +(87,497,o), +(68,439,c), +(66,439,l), +(65,516,l), +(36,516,l), +(36,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(107,17,o), +(66,96,o), +(66,206,cs), +(66,309,ls), +(66,419,o), +(107,499,o), +(161,499,cs), +(226,499,o), +(256,430,o), +(256,258,cs), +(256,86,o), +(226,17,o), +(161,17,cs) +); +} +); +width = 311; +}, +{ +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = top; +pos = (225,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,-167,l), +(193,57,l), +(194,57,l), +(218,10,o), +(255,-10,o), +(304,-10,cs), +(415,-10,o), +(443,99,o), +(443,271,cs), +(443,492,o), +(387,551,o), +(304,551,cs), +(253,551,o), +(216,526,o), +(196,467,c), +(194,467,l), +(190,541,l), +(16,541,l), +(16,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(200,128,o), +(193,174,o), +(193,256,cs), +(193,285,ls), +(193,381,o), +(204,415,o), +(229,415,cs), +(260,415,o), +(267,369,o), +(267,271,cs), +(267,160,o), +(256,128,o), +(229,128,cs) +); +} +); +width = 450; +}, +{ +anchors = ( +{ +name = bottom; +pos = (265,0); +}, +{ +name = top; +pos = (265,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(96,-167,l), +(96,119,l), +(98,119,l), +(125,42,o), +(196,-9,o), +(294,-9,cs), +(423,-9,o), +(511,92,o), +(511,258,cs), +(511,423,o), +(423,525,o), +(294,525,cs), +(196,525,o), +(125,473,o), +(98,396,c), +(95,396,l), +(93,517,l), +(59,517,l), +(59,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(166,24,o), +(96,120,o), +(96,222,cs), +(96,293,ls), +(96,395,o), +(166,491,o), +(286,491,cs), +(398,491,o), +(473,405,o), +(473,258,cs), +(473,109,o), +(398,24,o), +(286,24,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 545; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (302,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-167,l), +(221,82,l), +(222,82,l), +(248,26,o), +(311,-10,o), +(383,-10,cs), +(524,-10,o), +(602,90,o), +(602,272,cs), +(602,454,o), +(524,554,o), +(383,554,cs), +(311,554,o), +(248,514,o), +(221,451,c), +(220,451,l), +(212,544,l), +(30,544,l), +(30,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(254,143,o), +(221,187,o), +(221,255,cs), +(221,288,ls), +(221,357,o), +(256,401,o), +(312,401,cs), +(373,401,o), +(407,355,o), +(407,272,cs), +(407,189,o), +(372,143,o), +(307,143,cs) +); +} +); +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = top; +pos = (313,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-167,l), +(93,129,l), +(94,129,l), +(128,49,o), +(229,-9,o), +(347,-9,cs), +(512,-9,o), +(623,97,o), +(623,259,cs), +(623,424,o), +(511,526,o), +(347,526,cs), +(231,526,o), +(128,468,o), +(94,392,c), +(93,392,l), +(91,517,l), +(56,517,l), +(56,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(185,25,o), +(93,132,o), +(93,240,cs), +(93,288,ls), +(93,390,o), +(185,492,o), +(343,492,cs), +(487,492,o), +(585,407,o), +(585,259,cs), +(585,118,o), +(488,25,o), +(343,25,cs) +); +} +); +width = 651; +}, +{ +anchors = ( +{ +name = bottom; +pos = (357,0); +}, +{ +name = top; +pos = (357,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,-167,l), +(251,69,l), +(252,69,l), +(287,19,o), +(360,-10,o), +(439,-10,cs), +(598,-10,o), +(704,99,o), +(704,271,cs), +(704,444,o), +(598,552,o), +(441,552,cs), +(356,552,o), +(281,521,o), +(247,473,c), +(246,473,l), +(239,544,l), +(30,544,l), +(30,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(295,155,o), +(251,200,o), +(251,265,cs), +(251,277,ls), +(251,342,o), +(295,387,o), +(370,387,cs), +(438,387,o), +(483,346,o), +(483,271,cs), +(483,195,o), +(437,155,o), +(370,155,cs) +); +} +); +width = 722; +}, +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +}, +{ +name = top; +pos = (283,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(122,-182,l), +(122,119,l), +(124,119,l), +(150,42,o), +(216,-9,o), +(308,-9,cs), +(430,-9,o), +(513,92,o), +(513,258,cs), +(513,423,o), +(430,525,o), +(308,525,cs), +(216,525,o), +(150,473,o), +(124,396,c), +(121,396,l), +(119,517,l), +(85,517,l), +(85,-182,l) +); +}, +{ +closed = 1; +nodes = ( +(187,24,o), +(122,120,o), +(122,222,cs), +(122,293,ls), +(122,395,o), +(187,491,o), +(300,491,cs), +(405,491,o), +(475,405,o), +(475,258,cs), +(475,109,o), +(405,24,o), +(300,24,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (317,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(249,-167,l), +(248,79,l), +(260,79,l), +(277,27,o), +(330,-10,o), +(397,-10,cs), +(520,-10,o), +(601,93,o), +(601,272,cs), +(601,451,o), +(520,554,o), +(397,554,cs), +(330,554,o), +(277,517,o), +(259,465,c), +(246,465,l), +(241,544,l), +(60,544,l), +(60,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(275,148,o), +(249,187,o), +(249,259,cs), +(249,285,ls), +(249,357,o), +(276,397,o), +(327,397,cs), +(387,397,o), +(408,347,o), +(408,272,cs), +(408,198,o), +(384,148,o), +(322,148,cs) +); +} +); +width = 635; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (221,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(1,-167,l), +(53,84,l), +(54,84,l), +(58,25,o), +(82,-8,o), +(136,-8,cs), +(201,-8,o), +(256,58,o), +(296,253,cs), +(326,392,o), +(333,526,o), +(232,526,cs), +(190,526,o), +(157,499,o), +(130,445,c), +(128,445,l), +(139,516,l), +(114,516,l), +(-28,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(67,19,o), +(56,99,o), +(80,214,cs), +(102,319,ls), +(128,443,o), +(171,501,o), +(222,501,cs), +(307,501,o), +(295,389,o), +(266,252,cs), +(233,92,o), +(197,19,o), +(132,19,cs) +); +} +); +width = 341; +}, +{ +anchors = ( +{ +name = bottom; +pos = (179,0); +}, +{ +name = top; +pos = (291,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,-167,l), +(161,71,l), +(167,71,l), +(176,16,o), +(214,-10,o), +(264,-10,cs), +(350,-10,o), +(409,63,o), +(450,258,cs), +(484,422,o), +(486,551,o), +(360,551,cs), +(312,551,o), +(276,526,o), +(254,485,c), +(247,485,l), +(254,541,l), +(82,541,l), +(-65,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(177,133,o), +(184,182,o), +(201,264,cs), +(208,298,ls), +(227,391,o), +(242,419,o), +(268,419,cs), +(302,419,o), +(295,367,o), +(276,274,cs), +(256,175,o), +(240,133,o), +(213,133,cs) +); +} +); +width = 469; +}, +{ +anchors = ( +{ +name = bottom; +pos = (234,0); +}, +{ +name = top; +pos = (342,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(33,-167,l), +(94,126,l), +(98,126,l), +(118,45,o), +(183,-9,o), +(274,-9,cs), +(428,-9,o), +(532,112,o), +(532,316,cs), +(532,443,o), +(458,527,o), +(347,527,cs), +(269,527,o), +(197,491,o), +(155,414,c), +(152,414,l), +(172,517,l), +(139,517,l), +(-3,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(154,25,o), +(92,118,o), +(121,258,cs), +(133,315,ls), +(156,422,o), +(233,493,o), +(342,493,cs), +(439,493,o), +(494,421,o), +(494,312,cs), +(494,142,o), +(413,25,o), +(275,25,cs) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (271,0); +}, +{ +name = top; +pos = (383,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(132,-167,l), +(186,95,l), +(193,95,l), +(213,32,o), +(271,-10,o), +(350,-10,cs), +(478,-10,o), +(576,85,o), +(600,254,cs), +(625,433,o), +(553,553,o), +(420,553,cs), +(357,553,o), +(297,521,o), +(269,473,c), +(262,473,l), +(270,544,l), +(88,544,l), +(-59,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(235,140,o), +(206,194,o), +(220,263,cs), +(231,316,ls), +(243,372,o), +(277,403,o), +(329,403,cs), +(377,403,o), +(409,366,o), +(409,300,cs), +(409,205,o), +(366,140,o), +(293,140,cs) +); +} +); +}; +guides = ( +{ +angle = 78.3; +pos = (108,-167); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,-167,l), +(207,87,l), +(213,87,l), +(231,29,o), +(295,-10,o), +(365,-10,cs), +(518,-10,o), +(608,113,o), +(627,268,cs), +(648,439,o), +(576,554,o), +(448,554,cs), +(381,554,o), +(321,524,o), +(295,477,c), +(288,478,l), +(296,544,l), +(110,544,l), +(-37,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(257,143,o), +(228,193,o), +(242,257,cs), +(252,303,ls), +(264,362,o), +(295,401,o), +(353,401,cs), +(413,401,o), +(445,351,o), +(432,263,cs), +(421,191,o), +(380,143,o), +(319,143,cs) +); +} +); +width = 656; +}, +{ +anchors = ( +{ +name = bottom; +pos = (271,0); +}, +{ +name = top; +pos = (379,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(6,-167,l), +(73,154,l), +(80,154,l), +(107,54,o), +(194,-10,o), +(314,-10,cs), +(487,-10,o), +(608,114,o), +(608,290,cs), +(608,433,o), +(506,527,o), +(363,527,cs), +(263,527,o), +(172,483,o), +(134,416,c), +(127,416,l), +(145,517,l), +(112,517,l), +(-31,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(164,24,o), +(70,127,o), +(98,275,cs), +(103,301,ls), +(125,413,o), +(219,493,o), +(357,493,cs), +(485,493,o), +(570,413,o), +(570,288,cs), +(570,129,o), +(468,24,o), +(312,24,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(14,-167,l), +(81,154,l), +(85,154,l), +(99,56,o), +(188,-10,o), +(308,-10,cs), +(478,-10,o), +(605,118,o), +(611,295,cs), +(616,436,o), +(522,527,o), +(382,527,cs), +(278,527,o), +(185,488,o), +(137,408,c), +(134,408,l), +(153,517,l), +(120,517,l), +(-22,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(160,24,o), +(78,124,o), +(107,270,cs), +(113,300,ls), +(136,414,o), +(232,493,o), +(376,493,cs), +(501,493,o), +(578,416,o), +(574,294,cs), +(568,136,o), +(458,24,o), +(312,24,cs) +); +} +); +width = 644; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (421,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,-167,l), +(225,87,l), +(233,87,l), +(256,25,o), +(334,-10,o), +(415,-10,cs), +(582,-10,o), +(697,111,o), +(706,296,cs), +(714,452,o), +(618,554,o), +(471,554,cs), +(398,554,o), +(347,531,o), +(312,492,c), +(304,492,l), +(307,544,l), +(100,544,l), +(-48,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(289,160,o), +(251,209,o), +(264,281,cs), +(267,294,ls), +(279,351,o), +(315,390,o), +(385,390,cs), +(444,390,o), +(488,351,o), +(485,288,cs), +(483,207,o), +(433,155,o), +(361,157,cs) +); +} +); +width = 719; +} +); +metricLeft = n; +metricRight = b; +unicode = 112; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/paragraph.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/paragraph.glyph new file mode 100644 index 00000000..98f833f0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/paragraph.glyph @@ -0,0 +1,619 @@ +{ +color = 0; +glyphname = paragraph; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,0,l), +(352,593,l), +(425,593,l), +(425,0,l), +(604,0,l), +(604,593,l), +(678,593,l), +(678,729,l), +(220,729,ls), +(98,729,o), +(16,658,o), +(16,551,cs), +(16,437,o), +(98,381,o), +(220,381,c), +(220,0,l) +); +} +); +width = 695; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,702,l), +(319,702,l), +(319,0,l), +(349,0,l), +(349,702,l), +(432,702,l), +(432,729,l), +(193,729,ls), +(92,729,o), +(24,673,o), +(24,581,cs), +(24,494,o), +(85,438,o), +(192,441,c), +(192,0,l) +); +} +); +width = 443; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(258,0,l), +(258,699,l), +(401,699,l), +(401,0,l), +(431,0,l), +(431,699,l), +(526,699,l), +(526,729,l), +(228,729,ls), +(115,729,o), +(39,678,o), +(39,571,cs), +(39,472,o), +(99,406,o), +(227,407,c), +(227,0,l) +); +} +); +width = 555; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,0,l), +(389,542,l), +(460,542,l), +(460,0,l), +(674,0,l), +(674,542,l), +(767,542,l), +(767,729,l), +(275,729,ls), +(97,729,o), +(13,652,o), +(13,515,cs), +(13,394,o), +(95,315,o), +(235,315,c), +(235,0,l) +); +} +); +width = 780; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,0,l), +(203,702,l), +(299,702,l), +(299,0,l), +(329,0,l), +(329,702,l), +(412,702,l), +(412,729,l), +(173,729,ls), +(72,729,o), +(4,673,o), +(4,581,cs), +(4,494,o), +(65,438,o), +(172,441,c), +(172,0,l) +); +} +); +width = 405; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,593,l), +(416,593,l), +(416,0,l), +(595,0,l), +(595,593,l), +(669,593,l), +(669,729,l), +(211,729,ls), +(89,729,o), +(7,658,o), +(7,551,cs), +(7,437,o), +(89,381,o), +(211,381,c), +(211,0,l) +); +} +); +width = 676; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,0,l), +(257,693,l), +(382,693,l), +(382,0,l), +(420,0,l), +(420,693,l), +(530,693,l), +(530,729,l), +(219,729,ls), +(108,729,o), +(38,672,o), +(38,571,cs), +(38,471,o), +(103,405,o), +(219,406,c), +(219,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 555; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,0,l), +(361,569,l), +(444,569,l), +(444,0,l), +(623,0,l), +(623,569,l), +(696,569,l), +(696,729,l), +(233,729,ls), +(91,729,o), +(9,657,o), +(9,528,cs), +(9,409,o), +(92,332,o), +(233,337,c), +(233,0,l) +); +} +); +width = 704; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(248,0,l), +(248,699,l), +(391,699,l), +(391,0,l), +(421,0,l), +(421,699,l), +(516,699,l), +(516,729,l), +(218,729,ls), +(105,729,o), +(29,678,o), +(29,571,cs), +(29,472,o), +(89,406,o), +(217,407,c), +(217,0,l) +); +} +); +width = 535; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,0,l), +(379,542,l), +(450,542,l), +(450,0,l), +(664,0,l), +(664,542,l), +(757,542,l), +(757,729,l), +(265,729,ls), +(87,729,o), +(3,652,o), +(3,515,cs), +(3,394,o), +(85,315,o), +(225,315,c), +(225,0,l) +); +} +); +width = 760; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(274,0,l), +(274,693,l), +(397,693,l), +(397,0,l), +(435,0,l), +(435,693,l), +(542,693,l), +(542,729,l), +(238,729,ls), +(129,729,o), +(59,672,o), +(59,571,cs), +(59,471,o), +(124,405,o), +(238,406,c), +(238,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 588; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(373,0,l), +(373,569,l), +(452,569,l), +(452,0,l), +(630,0,l), +(630,569,l), +(699,569,l), +(699,729,l), +(247,729,ls), +(108,729,o), +(29,657,o), +(29,528,cs), +(29,409,o), +(110,332,o), +(247,337,c), +(247,0,l) +); +} +); +width = 726; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(293,0,l), +(293,702,l), +(389,702,l), +(389,0,l), +(419,0,l), +(419,702,l), +(502,702,l), +(502,729,l), +(263,729,ls), +(162,729,o), +(94,673,o), +(94,581,cs), +(94,494,o), +(155,438,o), +(262,441,c), +(262,0,l) +); +} +); +width = 495; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,0,l), +(414,593,l), +(487,593,l), +(487,0,l), +(666,0,l), +(666,593,l), +(740,593,l), +(740,729,l), +(282,729,ls), +(160,729,o), +(78,658,o), +(78,551,cs), +(78,437,o), +(160,381,o), +(282,381,c), +(282,0,l) +); +} +); +width = 736; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(345,0,l), +(345,693,l), +(470,693,l), +(470,0,l), +(508,0,l), +(508,693,l), +(618,693,l), +(618,729,l), +(307,729,ls), +(196,729,o), +(126,672,o), +(126,571,cs), +(126,471,o), +(191,405,o), +(307,406,c), +(307,0,l) +); +} +); +width = 621; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,0,l), +(441,569,l), +(524,569,l), +(524,0,l), +(703,0,l), +(703,569,l), +(776,569,l), +(776,729,l), +(313,729,ls), +(171,729,o), +(89,657,o), +(89,528,cs), +(89,409,o), +(172,332,o), +(313,337,c), +(313,0,l) +); +} +); +width = 785; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(327,0,l), +(327,699,l), +(470,699,l), +(470,0,l), +(500,0,l), +(500,699,l), +(595,699,l), +(595,729,l), +(297,729,ls), +(184,729,o), +(108,678,o), +(108,571,cs), +(108,472,o), +(168,406,o), +(296,407,c), +(296,0,l) +); +} +); +width = 591; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,0,l), +(445,542,l), +(516,542,l), +(516,0,l), +(730,0,l), +(730,542,l), +(823,542,l), +(823,729,l), +(331,729,ls), +(153,729,o), +(69,652,o), +(69,515,cs), +(69,394,o), +(151,315,o), +(291,315,c), +(291,0,l) +); +} +); +width = 801; +} +); +unicode = 182; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/parenleft.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/parenleft.case.glyph new file mode 100644 index 00000000..ae5dc043 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/parenleft.case.glyph @@ -0,0 +1,578 @@ +{ +glyphname = parenleft.case; +kernRight = KO_parenleft.case; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(336,-63,l), +(251,17,o), +(181,193,o), +(181,365,cs), +(181,542,o), +(253,711,o), +(336,793,c), +(182,793,l), +(86,710,o), +(16,539,o), +(16,365,cs), +(16,190,o), +(86,19,o), +(182,-63,c) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-63,l), +(234,17,o), +(183,192,o), +(183,365,cs), +(183,543,o), +(239,712,o), +(287,793,c), +(132,793,l), +(69,710,o), +(16,539,o), +(16,365,cs), +(16,190,o), +(69,19,o), +(132,-63,c) +); +} +); +width = 298; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,-63,l), +(113,26,o), +(67,188,o), +(67,365,cs), +(67,533,o), +(109,698,o), +(181,793,c), +(148,793,l), +(76,697,o), +(34,530,o), +(34,365,cs), +(34,200,o), +(76,33,o), +(148,-63,c) +); +} +); +width = 187; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(277,-63,l), +(160,26,o), +(80,189,o), +(80,365,cs), +(80,537,o), +(156,702,o), +(277,793,c), +(240,793,l), +(116,697,o), +(45,533,o), +(45,365,cs), +(45,198,o), +(116,33,o), +(240,-63,c) +); +} +); +width = 299; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(383,-63,l), +(284,34,o), +(218,206,o), +(218,365,cs), +(218,524,o), +(283,696,o), +(383,793,c), +(213,793,l), +(94,706,o), +(18,535,o), +(18,365,cs), +(18,196,o), +(94,24,o), +(213,-63,c) +); +} +); +width = 380; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,-63,l), +(93,26,o), +(47,188,o), +(47,365,cs), +(47,533,o), +(89,698,o), +(161,793,c), +(128,793,l), +(56,697,o), +(14,530,o), +(14,365,cs), +(14,200,o), +(56,33,o), +(128,-63,c) +); +} +); +width = 159; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(336,-63,l), +(251,17,o), +(181,193,o), +(181,365,cs), +(181,542,o), +(253,711,o), +(336,793,c), +(182,793,l), +(86,710,o), +(16,539,o), +(16,365,cs), +(16,190,o), +(86,19,o), +(182,-63,c) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,-63,l), +(225,17,o), +(174,192,o), +(174,365,cs), +(174,543,o), +(230,712,o), +(278,793,c), +(123,793,l), +(60,710,o), +(7,539,o), +(7,365,cs), +(7,190,o), +(60,19,o), +(123,-63,c) +); +} +); +width = 282; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,-63,l), +(149,26,o), +(82,188,o), +(82,365,cs), +(82,531,o), +(142,698,o), +(247,793,c), +(210,793,l), +(105,697,o), +(45,532,o), +(45,365,cs), +(45,198,o), +(105,33,o), +(210,-63,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenleft; +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 263; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,-63,l), +(252,47,o), +(197,212,o), +(197,365,cs), +(197,518,o), +(252,683,o), +(339,793,c), +(177,793,l), +(83,702,o), +(12,531,o), +(12,365,cs), +(12,199,o), +(83,28,o), +(177,-63,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenleft; +}; +width = 337; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(267,-63,l), +(150,26,o), +(70,189,o), +(70,365,cs), +(70,537,o), +(146,702,o), +(267,793,c), +(230,793,l), +(106,697,o), +(35,533,o), +(35,365,cs), +(35,198,o), +(106,33,o), +(230,-63,c) +); +} +); +width = 279; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-63,l), +(274,34,o), +(208,206,o), +(208,365,cs), +(208,524,o), +(273,696,o), +(373,793,c), +(203,793,l), +(84,706,o), +(8,535,o), +(8,365,cs), +(8,196,o), +(84,24,o), +(203,-63,c) +); +} +); +width = 365; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-63,l), +(168,26,o), +(103,188,o), +(103,365,cs), +(103,531,o), +(161,698,o), +(264,793,c), +(229,793,l), +(126,697,o), +(66,532,o), +(66,365,cs), +(66,198,o), +(126,33,o), +(229,-63,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenleft; +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 302; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(346,-63,l), +(265,47,o), +(215,212,o), +(215,365,cs), +(215,518,o), +(265,682,o), +(346,793,c), +(185,793,l), +(98,701,o), +(32,531,o), +(32,365,cs), +(32,199,o), +(98,29,o), +(185,-63,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenleft; +}; +width = 358; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-63,l), +(99,3,o), +(84,95,o), +(84,195,cs), +(84,404,o), +(156,626,o), +(292,793,c), +(259,793,l), +(124,632,o), +(53,409,o), +(53,197,cs), +(53,92,o), +(68,1,o), +(91,-63,c) +); +} +); +width = 193; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,-63,l), +(216,19,o), +(194,129,o), +(194,243,cs), +(194,431,o), +(266,647,o), +(405,793,c), +(247,793,l), +(112,670,o), +(31,461,o), +(31,266,cs), +(31,141,o), +(62,21,o), +(111,-63,c) +); +} +); +width = 332; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(205,-63,l), +(144,5,o), +(107,137,o), +(112,268,cs), +(119,469,o), +(231,683,o), +(375,793,c), +(334,793,l), +(185,675,o), +(82,467,o), +(75,269,cs), +(70,139,o), +(107,6,o), +(167,-63,c) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,-63,l), +(148,1,o), +(112,121,o), +(112,244,cs), +(112,453,o), +(223,675,o), +(375,793,c), +(334,793,l), +(179,671,o), +(76,451,o), +(76,245,cs), +(76,149,o), +(98,17,o), +(167,-63,c) +); +} +); +width = 309; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-63,l), +(251,19,o), +(229,129,o), +(229,243,cs), +(229,431,o), +(301,647,o), +(440,793,c), +(264,793,l), +(130,670,o), +(48,461,o), +(48,266,cs), +(48,141,o), +(79,21,o), +(129,-63,c) +); +} +); +width = 370; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,-63,l), +(136,4,o), +(90,134,o), +(90,263,cs), +(90,465,o), +(213,682,o), +(375,793,c), +(334,793,l), +(166,674,o), +(55,462,o), +(55,261,cs), +(55,132,o), +(100,5,o), +(168,-63,c) +); +} +); +width = 294; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,-63,l), +(260,26,o), +(226,155,o), +(226,273,cs), +(226,456,o), +(314,655,o), +(469,793,c), +(280,793,l), +(126,675,o), +(33,477,o), +(33,290,cs), +(33,160,o), +(75,30,o), +(145,-63,c) +); +} +); +width = 383; +} +); +userData = { +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/parenleft.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/parenleft.glyph new file mode 100644 index 00000000..0be5570e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/parenleft.glyph @@ -0,0 +1,745 @@ +{ +glyphname = parenleft; +kernRight = KO_parenleft; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(336,-167,l), +(251,-77,o), +(181,120,o), +(181,313,cs), +(181,512,o), +(253,701,o), +(336,793,c), +(182,793,l), +(86,700,o), +(16,508,o), +(16,313,cs), +(16,117,o), +(86,-75,o), +(182,-167,c) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(296,-167,l), +(236,-76,o), +(183,121,o), +(183,313,cs), +(183,513,o), +(241,701,o), +(296,793,c), +(142,793,l), +(72,700,o), +(16,507,o), +(16,313,cs), +(16,118,o), +(72,-75,o), +(142,-167,c) +); +} +); +width = 307; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(250,-167,l), +(138,-67,o), +(63,113,o), +(63,313,cs), +(63,501,o), +(130,686,o), +(250,793,c), +(218,793,l), +(100,685,o), +(33,500,o), +(33,313,cs), +(33,126,o), +(100,-59,o), +(218,-167,c) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,-167,l), +(120,-67,o), +(65,112,o), +(65,313,cs), +(65,501,o), +(115,686,o), +(200,793,c), +(167,793,l), +(82,685,o), +(33,498,o), +(33,313,cs), +(33,128,o), +(82,-59,o), +(167,-167,c) +); +} +); +width = 205; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-167,l), +(166,-67,o), +(78,115,o), +(78,313,cs), +(78,493,o), +(152,682,o), +(295,793,c), +(258,793,l), +(121,685,o), +(43,501,o), +(43,313,cs), +(43,125,o), +(121,-59,o), +(258,-167,c) +); +} +); +width = 316; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-167,l), +(290,-58,o), +(216,134,o), +(216,313,cs), +(216,493,o), +(288,684,o), +(400,793,c), +(229,793,l), +(100,695,o), +(16,503,o), +(16,313,cs), +(16,123,o), +(100,-69,o), +(229,-167,c) +); +} +); +width = 397; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(250,-167,l), +(138,-67,o), +(63,113,o), +(63,313,cs), +(63,501,o), +(130,686,o), +(250,793,c), +(218,793,l), +(100,685,o), +(33,500,o), +(33,313,cs), +(33,126,o), +(100,-59,o), +(218,-167,c) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-167,l), +(100,-67,o), +(45,112,o), +(45,313,cs), +(45,501,o), +(95,686,o), +(180,793,c), +(147,793,l), +(62,685,o), +(13,498,o), +(13,313,cs), +(13,128,o), +(62,-59,o), +(147,-167,c) +); +} +); +width = 177; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(336,-167,l), +(251,-77,o), +(181,120,o), +(181,313,cs), +(181,512,o), +(253,701,o), +(336,793,c), +(182,793,l), +(86,700,o), +(16,508,o), +(16,313,cs), +(16,117,o), +(86,-75,o), +(182,-167,c) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-167,l), +(227,-76,o), +(174,121,o), +(174,313,cs), +(174,513,o), +(232,701,o), +(287,793,c), +(133,793,l), +(63,700,o), +(7,507,o), +(7,313,cs), +(7,118,o), +(63,-75,o), +(133,-167,c) +); +} +); +width = 291; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(265,-167,l), +(155,-67,o), +(80,115,o), +(80,313,cs), +(80,499,o), +(147,686,o), +(265,793,c), +(228,793,l), +(110,685,o), +(43,500,o), +(43,313,cs), +(43,126,o), +(110,-59,o), +(228,-167,c) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 281; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(348,-167,l), +(257,-48,o), +(196,144,o), +(196,313,cs), +(196,482,o), +(257,674,o), +(348,793,c), +(186,793,l), +(81,681,o), +(11,489,o), +(11,313,cs), +(11,137,o), +(81,-55,o), +(186,-167,c) +); +} +); +width = 345; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,-167,l), +(156,-67,o), +(68,115,o), +(68,313,cs), +(68,493,o), +(142,682,o), +(285,793,c), +(248,793,l), +(111,685,o), +(33,501,o), +(33,313,cs), +(33,125,o), +(111,-59,o), +(248,-167,c) +); +} +); +width = 296; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(390,-167,l), +(280,-58,o), +(206,134,o), +(206,313,cs), +(206,493,o), +(278,684,o), +(390,793,c), +(219,793,l), +(90,695,o), +(6,503,o), +(6,313,cs), +(6,123,o), +(90,-69,o), +(219,-167,c) +); +} +); +width = 382; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(282,-167,l), +(174,-67,o), +(101,115,o), +(101,313,cs), +(101,499,o), +(166,686,o), +(282,793,c), +(247,793,l), +(131,685,o), +(64,500,o), +(64,313,cs), +(64,126,o), +(131,-59,o), +(247,-167,c) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 320; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(354,-167,l), +(270,-48,o), +(214,144,o), +(214,313,cs), +(214,482,o), +(270,673,o), +(354,793,c), +(194,793,l), +(97,682,o), +(31,489,o), +(31,313,cs), +(31,137,o), +(97,-56,o), +(194,-167,c) +); +} +); +width = 366; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,-167,l), +(94,-95,o), +(57,18,o), +(57,152,cs), +(57,392,o), +(184,659,o), +(360,793,c), +(326,793,l), +(151,657,o), +(27,391,o), +(27,151,cs), +(27,26,o), +(62,-91,o), +(129,-167,c) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,-167,l), +(83,-108,o), +(58,5,o), +(58,115,cs), +(58,367,o), +(174,657,o), +(321,793,c), +(286,793,l), +(131,641,o), +(27,367,o), +(27,114,cs), +(27,7,o), +(52,-105,o), +(90,-167,c) +); +} +); +width = 215; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(245,-167,l), +(217,-61,o), +(203,46,o), +(203,150,cs), +(203,389,o), +(279,607,o), +(447,793,c), +(284,793,l), +(114,617,o), +(43,398,o), +(43,187,cs), +(43,70,o), +(64,-51,o), +(103,-167,c) +); +} +); +}; +guides = ( +{ +pos = (157,793); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,-167,l), +(173,-68,o), +(161,128,o), +(196,309,cs), +(237,524,o), +(339,712,o), +(412,793,c), +(249,793,l), +(162,707,o), +(68,519,o), +(32,326,cs), +(-5,129,o), +(12,-69,o), +(66,-167,c) +); +} +); +width = 315; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(208,-167,l), +(142,-90,o), +(109,28,o), +(109,160,cs), +(109,393,o), +(232,659,o), +(409,793,c), +(368,793,l), +(200,662,o), +(72,403,o), +(72,162,cs), +(72,30,o), +(106,-89,o), +(174,-167,c) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-167,l), +(112,-55,o), +(75,133,o), +(113,329,cs), +(148,509,o), +(250,696,o), +(389,793,c), +(349,793,l), +(208,690,o), +(111,510,o), +(76,330,cs), +(40,144,o), +(71,-49,o), +(166,-167,c) +); +} +); +width = 325; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(292,-167,l), +(249,-95,o), +(223,28,o), +(223,146,cs), +(223,392,o), +(327,638,o), +(494,793,c), +(311,793,l), +(138,647,o), +(39,378,o), +(39,162,cs), +(39,28,o), +(75,-101,o), +(130,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(279,-167,l), +(217,-41,o), +(196,150,o), +(227,311,cs), +(262,489,o), +(368,686,o), +(487,793,c), +(313,793,l), +(185,690,o), +(80,504,o), +(45,329,cs), +(10,150,o), +(44,-48,o), +(126,-167,c) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,-167,l), +(217,-41,o), +(196,150,o), +(227,311,cs), +(263,496,o), +(363,682,o), +(487,793,c), +(313,793,l), +(187,692,o), +(80,506,o), +(45,329,cs), +(10,152,o), +(43,-46,o), +(126,-167,c) +); +} +); +width = 393; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(190,-167,l), +(124,-90,o), +(91,28,o), +(91,160,cs), +(91,393,o), +(214,659,o), +(391,793,c), +(350,793,l), +(182,662,o), +(54,403,o), +(54,162,cs), +(54,30,o), +(88,-89,o), +(156,-167,c) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-167,l), +(105,-55,o), +(55,137,o), +(93,331,cs), +(129,519,o), +(255,703,o), +(402,793,c), +(361,793,l), +(212,702,o), +(95,524,o), +(58,333,cs), +(22,146,o), +(64,-47,o), +(178,-167,c) +); +} +); +width = 320; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-167,l), +(246,-96,o), +(218,25,o), +(218,142,cs), +(218,387,o), +(321,637,o), +(490,793,c), +(294,793,l), +(134,658,o), +(23,399,o), +(23,166,cs), +(23,30,o), +(58,-100,o), +(113,-167,c) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,-167,l), +(224,-47,o), +(192,144,o), +(225,312,cs), +(263,511,o), +(384,703,o), +(528,793,c), +(338,793,l), +(189,709,o), +(65,525,o), +(28,331,cs), +(-9,140,o), +(38,-59,o), +(146,-167,c) +); +} +); +width = 417; +} +); +unicode = 40; +userData = { +KernOnName = parenleft; +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/parenright.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/parenright.case.glyph new file mode 100644 index 00000000..082ae9d4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/parenright.case.glyph @@ -0,0 +1,263 @@ +{ +color = 6; +glyphname = parenright.case; +kernLeft = KO_parenright.case; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +angle = 180; +pos = (298,729); +ref = parenleft.case; +} +); +width = 298; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +angle = 180; +pos = (187,729); +ref = parenleft.case; +} +); +width = 187; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +angle = 180; +pos = (299,729); +ref = parenleft.case; +} +); +width = 299; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +angle = 180; +pos = (380,729); +ref = parenleft.case; +} +); +width = 380; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +angle = 180; +pos = (159,729); +ref = parenleft.case; +} +); +width = 159; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +angle = 180; +pos = (282,729); +ref = parenleft.case; +} +); +width = 282; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (303,729); +ref = parenleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenright; +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +} +); +}; +width = 303; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (349,729); +ref = parenleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenright; +}; +width = 349; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (299,729); +ref = parenleft.case; +} +); +width = 299; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +angle = 180; +pos = (365,729); +ref = parenleft.case; +} +); +width = 365; +}, +{ +layerId = m019; +shapes = ( +{ +angle = 180; +pos = (302,729); +ref = parenleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenright; +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +} +); +}; +width = 302; +}, +{ +layerId = m020; +shapes = ( +{ +angle = 180; +pos = (358,729); +ref = parenleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenright; +}; +width = 358; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +angle = 180; +pos = (237,729); +ref = parenleft.case; +} +); +width = 193; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +angle = 180; +pos = (371,729); +ref = parenleft.case; +} +); +width = 332; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +angle = 180; +pos = (353,729); +ref = parenleft.case; +} +); +width = 309; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +angle = 180; +pos = (408,729); +ref = parenleft.case; +} +); +width = 370; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +angle = 180; +pos = (338,729); +ref = parenleft.case; +} +); +width = 294; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +angle = 180; +pos = (421,729); +ref = parenleft.case; +} +); +width = 383; +} +); +metricLeft = parenright; +metricRight = parenright; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/parenright.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/parenright.glyph new file mode 100644 index 00000000..1ba162d8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/parenright.glyph @@ -0,0 +1,267 @@ +{ +color = 6; +glyphname = parenright; +kernLeft = KO_parenright; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (307,626); +ref = parenleft; +} +); +width = 307; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (205,626); +ref = parenleft; +} +); +width = 205; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (316,626); +ref = parenleft; +} +); +width = 316; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (397,626); +ref = parenleft; +} +); +width = 397; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (177,626); +ref = parenleft; +} +); +width = 177; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (291,626); +ref = parenleft; +} +); +width = 291; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (321,626); +ref = parenleft; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +} +); +}; +width = 321; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (357,626); +ref = parenleft; +} +); +width = 357; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (316,626); +ref = parenleft; +} +); +width = 316; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (382,626); +ref = parenleft; +} +); +width = 382; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (320,626); +ref = parenleft; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +} +); +}; +width = 320; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (366,626); +ref = parenleft; +} +); +width = 366; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (238,626); +ref = parenleft; +} +); +width = 215; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (333,626); +ref = parenleft; +} +); +width = 315; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (348,626); +ref = parenleft; +} +); +width = 325; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (410,626); +ref = parenleft; +} +); +width = 393; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (343,626); +ref = parenleft; +} +); +width = 320; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (434,626); +ref = parenleft; +} +); +width = 417; +} +); +metricLeft = "=|parenleft"; +metricRight = "=|parenleft"; +unicode = 41; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/percent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/percent.glyph new file mode 100644 index 00000000..5ee15348 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/percent.glyph @@ -0,0 +1,2457 @@ +{ +glyphname = percent; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(550,90,o), +(549,120,o), +(549,183,cs), +(549,247,o), +(550,276,o), +(570,276,cs), +(589,276,o), +(590,254,o), +(590,183,cs), +(590,115,o), +(589,90,o), +(570,90,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(572,729,l), +(462,729,l), +(149,0,l) +); +}, +{ +closed = 1; +nodes = ( +(232,352,o), +(291,388,o), +(291,540,cs), +(291,692,o), +(232,729,o), +(151,729,cs), +(71,729,o), +(12,694,o), +(12,540,cs), +(12,387,o), +(71,352,o), +(151,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,447,o), +(130,477,o), +(130,540,cs), +(130,604,o), +(131,633,o), +(151,633,cs), +(170,633,o), +(171,611,o), +(171,540,cs), +(171,472,o), +(170,447,o), +(151,447,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,-5,o), +(710,32,o), +(710,184,cs), +(710,336,o), +(651,372,o), +(570,372,cs), +(490,372,o), +(431,337,o), +(431,184,cs), +(431,30,o), +(490,-5,o), +(570,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(550,90,o), +(549,120,o), +(549,183,cs), +(549,247,o), +(550,276,o), +(570,276,cs), +(589,276,o), +(590,254,o), +(590,183,cs), +(590,115,o), +(589,90,o), +(570,90,cs) +); +} +); +width = 722; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,0,l), +(459,729,l), +(425,729,l), +(144,0,l) +); +}, +{ +closed = 1; +nodes = ( +(222,324,o), +(249,399,o), +(249,527,cs), +(249,655,o), +(222,729,o), +(155,729,cs), +(87,729,o), +(60,655,o), +(60,527,cs), +(60,399,o), +(87,324,o), +(155,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,353,o), +(93,390,o), +(93,527,cs), +(93,663,o), +(116,701,o), +(155,701,cs), +(193,701,o), +(216,663,o), +(216,527,cs), +(216,390,o), +(193,353,o), +(155,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,-6,o), +(543,70,o), +(543,197,cs), +(543,324,o), +(516,399,o), +(449,399,cs), +(380,399,o), +(354,324,o), +(354,197,cs), +(354,71,o), +(380,-6,o), +(449,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(410,23,o), +(386,59,o), +(386,197,cs), +(386,335,o), +(410,372,o), +(449,372,cs), +(486,372,o), +(510,335,o), +(510,197,cs), +(510,59,o), +(486,23,o), +(449,23,cs) +); +} +); +width = 603; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,0,l), +(769,729,l), +(728,729,l), +(199,0,l) +); +}, +{ +closed = 1; +nodes = ( +(338,323,o), +(409,393,o), +(409,526,cs), +(409,659,o), +(337,729,o), +(233,729,cs), +(128,729,o), +(56,659,o), +(56,526,cs), +(56,392,o), +(129,323,o), +(234,323,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,353,o), +(92,415,o), +(92,526,cs), +(92,637,o), +(144,699,o), +(233,699,cs), +(323,699,o), +(374,637,o), +(374,526,cs), +(374,415,o), +(322,353,o), +(233,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(840,-10,o), +(911,60,o), +(911,193,cs), +(911,326,o), +(839,396,o), +(735,396,cs), +(630,396,o), +(558,326,o), +(558,193,cs), +(558,59,o), +(631,-10,o), +(736,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(645,20,o), +(594,82,o), +(594,193,cs), +(594,304,o), +(646,366,o), +(735,366,cs), +(825,366,o), +(876,304,o), +(876,193,cs), +(876,82,o), +(824,20,o), +(735,20,cs) +); +} +); +width = 967; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,0,l), +(834,729,l), +(674,729,l), +(144,0,l) +); +}, +{ +closed = 1; +nodes = ( +(351,351,o), +(432,421,o), +(432,540,cs), +(432,657,o), +(352,729,o), +(228,729,cs), +(104,729,o), +(22,660,o), +(22,540,cs), +(22,424,o), +(101,351,o), +(226,351,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,471,o), +(174,482,o), +(174,540,cs), +(174,599,o), +(198,610,o), +(228,610,cs), +(255,610,o), +(281,599,o), +(281,540,cs), +(281,482,o), +(257,471,o), +(227,471,cs) +); +}, +{ +closed = 1; +nodes = ( +(875,-5,o), +(956,65,o), +(956,184,cs), +(956,302,o), +(876,373,o), +(753,373,cs), +(630,373,o), +(547,305,o), +(547,184,cs), +(547,68,o), +(626,-5,o), +(751,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(723,116,o), +(698,126,o), +(698,184,cs), +(698,244,o), +(723,254,o), +(753,254,cs), +(780,254,o), +(806,243,o), +(806,184,cs), +(806,126,o), +(781,116,o), +(751,116,cs) +); +} +); +width = 978; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,0,l), +(439,729,l), +(405,729,l), +(124,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,324,o), +(229,399,o), +(229,527,cs), +(229,655,o), +(202,729,o), +(135,729,cs), +(67,729,o), +(40,655,o), +(40,527,cs), +(40,399,o), +(67,324,o), +(135,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(96,353,o), +(73,390,o), +(73,527,cs), +(73,663,o), +(96,701,o), +(135,701,cs), +(173,701,o), +(196,663,o), +(196,527,cs), +(196,390,o), +(173,353,o), +(135,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(496,-6,o), +(523,70,o), +(523,197,cs), +(523,324,o), +(496,399,o), +(429,399,cs), +(360,399,o), +(334,324,o), +(334,197,cs), +(334,71,o), +(360,-6,o), +(429,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,23,o), +(366,59,o), +(366,197,cs), +(366,335,o), +(390,372,o), +(429,372,cs), +(466,372,o), +(490,335,o), +(490,197,cs), +(490,59,o), +(466,23,o), +(429,23,cs) +); +} +); +width = 563; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(550,90,o), +(549,120,o), +(549,183,cs), +(549,247,o), +(550,276,o), +(570,276,cs), +(589,276,o), +(590,254,o), +(590,183,cs), +(590,115,o), +(589,90,o), +(570,90,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,l), +(563,729,l), +(453,729,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,352,o), +(282,388,o), +(282,540,cs), +(282,692,o), +(223,729,o), +(142,729,cs), +(62,729,o), +(3,694,o), +(3,540,cs), +(3,387,o), +(62,352,o), +(142,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,447,o), +(121,477,o), +(121,540,cs), +(121,604,o), +(122,633,o), +(142,633,cs), +(161,633,o), +(162,611,o), +(162,540,cs), +(162,472,o), +(161,447,o), +(142,447,cs) +); +}, +{ +closed = 1; +nodes = ( +(642,-5,o), +(701,32,o), +(701,184,cs), +(701,336,o), +(642,372,o), +(561,372,cs), +(481,372,o), +(422,337,o), +(422,184,cs), +(422,30,o), +(481,-5,o), +(561,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(541,90,o), +(540,120,o), +(540,183,cs), +(540,247,o), +(541,276,o), +(561,276,cs), +(580,276,o), +(581,254,o), +(581,183,cs), +(581,115,o), +(580,90,o), +(561,90,cs) +); +} +); +width = 704; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(208,0,l), +(670,729,l), +(628,729,l), +(167,0,l) +); +}, +{ +closed = 1; +nodes = ( +(265,320,o), +(321,391,o), +(321,523,cs), +(321,654,o), +(266,725,o), +(184,725,cs), +(101,725,o), +(45,655,o), +(45,523,cs), +(45,392,o), +(100,320,o), +(184,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,352,o), +(82,411,o), +(82,523,cs), +(82,634,o), +(119,693,o), +(184,693,cs), +(247,693,o), +(284,635,o), +(284,523,cs), +(284,411,o), +(247,352,o), +(184,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(736,-5,o), +(792,66,o), +(792,197,cs), +(792,329,o), +(737,400,o), +(655,400,cs), +(571,400,o), +(516,329,o), +(516,198,cs), +(516,66,o), +(571,-5,o), +(655,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(590,27,o), +(553,85,o), +(553,197,cs), +(553,310,o), +(590,368,o), +(655,368,cs), +(717,368,o), +(754,310,o), +(754,197,cs), +(754,84,o), +(717,27,o), +(655,27,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,0,l), +(650,729,l), +(608,729,l), +(147,0,l) +); +}, +{ +closed = 1; +nodes = ( +(265,324,o), +(321,395,o), +(321,527,cs), +(321,658,o), +(266,729,o), +(184,729,cs), +(101,729,o), +(45,659,o), +(45,527,cs), +(45,396,o), +(100,324,o), +(184,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,356,o), +(82,415,o), +(82,527,cs), +(82,638,o), +(119,697,o), +(184,697,cs), +(247,697,o), +(284,639,o), +(284,527,cs), +(284,415,o), +(247,356,o), +(184,356,cs) +); +}, +{ +closed = 1; +nodes = ( +(696,-5,o), +(752,66,o), +(752,197,cs), +(752,329,o), +(697,400,o), +(615,400,cs), +(531,400,o), +(476,329,o), +(476,198,cs), +(476,66,o), +(531,-5,o), +(615,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(550,27,o), +(513,85,o), +(513,197,cs), +(513,310,o), +(550,368,o), +(615,368,cs), +(677,368,o), +(714,310,o), +(714,197,cs), +(714,84,o), +(677,27,o), +(615,27,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +4, +11 +); +stem = -2; +target = ( +3, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +5 +); +stem = -2; +target = ( +4, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +} +); +}; +width = 797; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(729,729,l), +(605,729,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(288,348,o), +(353,416,o), +(353,536,cs), +(353,646,o), +(297,726,o), +(196,726,cs), +(98,726,o), +(34,655,o), +(34,539,cs), +(34,427,o), +(90,348,o), +(192,348,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,450,o), +(156,449,o), +(156,537,cs), +(156,626,o), +(177,623,o), +(193,623,cs), +(211,623,o), +(231,625,o), +(231,537,cs), +(231,448,o), +(211,450,o), +(193,450,cs) +); +}, +{ +closed = 1; +nodes = ( +(771,-3,o), +(835,66,o), +(835,186,cs), +(835,296,o), +(779,376,o), +(678,376,cs), +(581,376,o), +(516,306,o), +(516,188,cs), +(516,78,o), +(572,-3,o), +(674,-3,cs) +); +}, +{ +closed = 1; +nodes = ( +(659,100,o), +(638,98,o), +(638,187,cs), +(638,276,o), +(659,273,o), +(676,273,cs), +(693,273,o), +(713,275,o), +(713,187,cs), +(713,98,o), +(693,100,o), +(676,100,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,l), +(708,729,l), +(584,729,l), +(119,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,336,o), +(344,398,o), +(344,533,cs), +(344,667,o), +(279,729,o), +(184,729,cs), +(89,729,o), +(24,667,o), +(24,533,cs), +(24,398,o), +(89,336,o), +(184,336,cs) +); +}, +{ +closed = 1; +nodes = ( +(154,440,o), +(145,476,o), +(145,533,cs), +(145,589,o), +(154,625,o), +(184,625,cs), +(214,625,o), +(223,589,o), +(223,533,cs), +(223,476,o), +(214,440,o), +(184,440,cs) +); +}, +{ +closed = 1; +nodes = ( +(738,-10,o), +(803,52,o), +(803,187,cs), +(803,321,o), +(738,383,o), +(643,383,cs), +(548,383,o), +(483,321,o), +(483,187,cs), +(483,52,o), +(548,-10,o), +(643,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(613,94,o), +(604,130,o), +(604,187,cs), +(604,243,o), +(613,279,o), +(643,279,cs), +(673,279,o), +(682,243,o), +(682,187,cs), +(682,130,o), +(673,94,o), +(643,94,cs) +); +} +); +width = 827; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,0,l), +(759,729,l), +(718,729,l), +(189,0,l) +); +}, +{ +closed = 1; +nodes = ( +(328,323,o), +(399,393,o), +(399,526,cs), +(399,659,o), +(327,729,o), +(223,729,cs), +(118,729,o), +(46,659,o), +(46,526,cs), +(46,392,o), +(119,323,o), +(224,323,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,353,o), +(82,415,o), +(82,526,cs), +(82,637,o), +(134,699,o), +(223,699,cs), +(313,699,o), +(364,637,o), +(364,526,cs), +(364,415,o), +(312,353,o), +(223,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(830,-10,o), +(901,60,o), +(901,193,cs), +(901,326,o), +(829,396,o), +(725,396,cs), +(620,396,o), +(548,326,o), +(548,193,cs), +(548,59,o), +(621,-10,o), +(726,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(635,20,o), +(584,82,o), +(584,193,cs), +(584,304,o), +(636,366,o), +(725,366,cs), +(815,366,o), +(866,304,o), +(866,193,cs), +(866,82,o), +(814,20,o), +(725,20,cs) +); +} +); +width = 947; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,0,l), +(824,729,l), +(664,729,l), +(134,0,l) +); +}, +{ +closed = 1; +nodes = ( +(341,351,o), +(422,421,o), +(422,540,cs), +(422,657,o), +(342,729,o), +(218,729,cs), +(94,729,o), +(12,660,o), +(12,540,cs), +(12,424,o), +(91,351,o), +(216,351,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,471,o), +(164,482,o), +(164,540,cs), +(164,599,o), +(188,610,o), +(218,610,cs), +(245,610,o), +(271,599,o), +(271,540,cs), +(271,482,o), +(247,471,o), +(217,471,cs) +); +}, +{ +closed = 1; +nodes = ( +(865,-5,o), +(946,65,o), +(946,184,cs), +(946,302,o), +(866,373,o), +(743,373,cs), +(620,373,o), +(537,305,o), +(537,184,cs), +(537,68,o), +(616,-5,o), +(741,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(713,116,o), +(688,126,o), +(688,184,cs), +(688,244,o), +(713,254,o), +(743,254,cs), +(770,254,o), +(796,243,o), +(796,184,cs), +(796,126,o), +(771,116,o), +(741,116,cs) +); +} +); +width = 958; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(208,0,l), +(670,729,l), +(628,729,l), +(167,0,l) +); +}, +{ +closed = 1; +nodes = ( +(265,320,o), +(321,391,o), +(321,523,cs), +(321,654,o), +(266,725,o), +(184,725,cs), +(101,725,o), +(45,655,o), +(45,523,cs), +(45,392,o), +(100,320,o), +(184,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,352,o), +(82,411,o), +(82,523,cs), +(82,634,o), +(119,693,o), +(184,693,cs), +(247,693,o), +(284,635,o), +(284,523,cs), +(284,411,o), +(247,352,o), +(184,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(736,-5,o), +(792,66,o), +(792,197,cs), +(792,329,o), +(737,400,o), +(655,400,cs), +(571,400,o), +(516,329,o), +(516,198,cs), +(516,66,o), +(571,-5,o), +(655,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(590,27,o), +(553,85,o), +(553,197,cs), +(553,310,o), +(590,368,o), +(655,368,cs), +(717,368,o), +(754,310,o), +(754,197,cs), +(754,84,o), +(717,27,o), +(655,27,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(207,0,l), +(659,729,l), +(619,729,l), +(166,0,l) +); +}, +{ +closed = 1; +nodes = ( +(282,324,o), +(338,395,o), +(338,527,cs), +(338,658,o), +(283,729,o), +(203,729,cs), +(122,729,o), +(66,659,o), +(66,527,cs), +(66,396,o), +(121,324,o), +(203,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(140,356,o), +(103,415,o), +(103,527,cs), +(103,638,o), +(140,697,o), +(203,697,cs), +(264,697,o), +(301,639,o), +(301,527,cs), +(301,415,o), +(264,356,o), +(203,356,cs) +); +}, +{ +closed = 1; +nodes = ( +(705,-5,o), +(759,66,o), +(759,197,cs), +(759,329,o), +(706,400,o), +(626,400,cs), +(543,400,o), +(489,329,o), +(489,198,cs), +(489,66,o), +(543,-5,o), +(626,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(561,27,o), +(526,85,o), +(526,197,cs), +(526,310,o), +(561,368,o), +(626,368,cs), +(686,368,o), +(723,310,o), +(723,197,cs), +(723,84,o), +(686,27,o), +(626,27,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +4, +11 +); +stem = -2; +target = ( +3, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +5 +); +stem = -2; +target = ( +4, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +} +); +}; +width = 826; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(729,729,l), +(605,729,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(288,348,o), +(353,416,o), +(353,536,cs), +(353,646,o), +(297,726,o), +(196,726,cs), +(98,726,o), +(34,655,o), +(34,539,cs), +(34,427,o), +(90,348,o), +(192,348,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,450,o), +(156,449,o), +(156,537,cs), +(156,626,o), +(177,623,o), +(193,623,cs), +(211,623,o), +(231,625,o), +(231,537,cs), +(231,448,o), +(211,450,o), +(193,450,cs) +); +}, +{ +closed = 1; +nodes = ( +(771,-3,o), +(835,66,o), +(835,186,cs), +(835,296,o), +(779,376,o), +(678,376,cs), +(581,376,o), +(516,306,o), +(516,188,cs), +(516,78,o), +(572,-3,o), +(674,-3,cs) +); +}, +{ +closed = 1; +nodes = ( +(659,100,o), +(638,98,o), +(638,187,cs), +(638,276,o), +(659,273,o), +(676,273,cs), +(693,273,o), +(713,275,o), +(713,187,cs), +(713,98,o), +(693,100,o), +(676,100,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(258,0,l), +(713,729,l), +(590,729,l), +(136,0,l) +); +}, +{ +closed = 1; +nodes = ( +(293,336,o), +(356,398,o), +(356,533,cs), +(356,667,o), +(293,729,o), +(200,729,cs), +(107,729,o), +(44,666,o), +(44,533,cs), +(44,399,o), +(107,336,o), +(200,336,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,440,o), +(163,477,o), +(163,533,cs), +(163,588,o), +(171,625,o), +(200,625,cs), +(229,625,o), +(237,588,o), +(237,533,cs), +(237,477,o), +(229,440,o), +(200,440,cs) +); +}, +{ +closed = 1; +nodes = ( +(742,-10,o), +(805,53,o), +(805,187,cs), +(805,320,o), +(742,383,o), +(648,383,cs), +(555,383,o), +(492,321,o), +(492,187,cs), +(492,52,o), +(555,-10,o), +(648,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(620,94,o), +(612,131,o), +(612,187,cs), +(612,242,o), +(620,279,o), +(648,279,cs), +(677,279,o), +(685,242,o), +(685,187,cs), +(685,131,o), +(677,94,o), +(648,94,cs) +); +} +); +width = 847; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(127,0,l), +(559,729,l), +(523,729,l), +(93,0,l) +); +}, +{ +closed = 1; +nodes = ( +(236,325,o), +(277,393,o), +(304,517,cs), +(328,634,o), +(327,729,o), +(247,729,cs), +(188,729,o), +(146,664,o), +(120,539,cs), +(89,393,o), +(108,325,o), +(177,325,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,357,o), +(136,455,o), +(152,532,cs), +(178,656,o), +(204,700,o), +(244,700,cs), +(295,700,o), +(296,634,o), +(272,522,cs), +(242,380,o), +(212,350,o), +(172,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,-5,o), +(503,67,o), +(529,189,cs), +(556,317,o), +(546,399,o), +(472,399,cs), +(409,399,o), +(369,327,o), +(344,205,cs), +(319,88,o), +(323,-5,o), +(402,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(346,28,o), +(360,123,o), +(377,204,cs), +(403,331,o), +(431,371,o), +(469,371,cs), +(521,371,o), +(520,302,o), +(496,189,cs), +(467,50,o), +(438,21,o), +(396,24,cs) +); +} +); +width = 605; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(245,632,o), +(242,615,o), +(227,541,cs), +(213,472,o), +(207,449,o), +(189,449,cs), +(164,449,o), +(174,485,o), +(185,538,cs), +(200,613,o), +(207,632,o), +(222,632,cs) +); +}, +{ +closed = 1; +nodes = ( +(509,92,o), +(512,109,o), +(527,183,cs), +(542,256,o), +(549,275,o), +(564,275,cs), +(587,275,o), +(584,258,o), +(569,184,cs), +(554,111,o), +(547,92,o), +(532,92,cs) +); +} +); +}; +guides = ( +{ +pos = (176,348); +}, +{ +pos = (176,629); +}, +{ +pos = (176,443); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(666,729,l), +(550,729,l), +(88,0,l) +); +}, +{ +closed = 1; +nodes = ( +(258,352,o), +(312,388,o), +(342,533,cs), +(366,651,o), +(335,729,o), +(227,729,cs), +(148,729,o), +(96,680,o), +(70,552,cs), +(45,432,o), +(73,352,o), +(184,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(167,449,o), +(170,466,o), +(185,540,cs), +(200,613,o), +(207,632,o), +(222,632,cs), +(245,632,o), +(242,615,o), +(227,541,cs), +(212,468,o), +(205,449,o), +(190,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(600,-5,o), +(654,31,o), +(684,176,cs), +(708,294,o), +(677,372,o), +(569,372,cs), +(490,372,o), +(438,323,o), +(412,195,cs), +(387,75,o), +(415,-5,o), +(526,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(509,92,o), +(512,109,o), +(527,183,cs), +(542,256,o), +(549,275,o), +(564,275,cs), +(587,275,o), +(584,258,o), +(569,184,cs), +(554,111,o), +(547,92,o), +(532,92,cs) +); +} +); +width = 716; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,l), +(734,729,l), +(691,729,l), +(81,0,l) +); +}, +{ +closed = 1; +nodes = ( +(322,360,o), +(384,456,o), +(390,602,cs), +(393,687,o), +(354,739,o), +(286,739,cs), +(194,739,o), +(131,642,o), +(125,494,cs), +(121,414,o), +(163,360,o), +(229,360,cs) +); +}, +{ +closed = 1; +nodes = ( +(185,390,o), +(158,430,o), +(161,492,cs), +(167,623,o), +(217,709,o), +(286,709,cs), +(331,709,o), +(357,671,o), +(354,604,cs), +(349,475,o), +(298,390,o), +(229,390,cs) +); +}, +{ +closed = 1; +nodes = ( +(622,-10,o), +(684,86,o), +(690,232,cs), +(693,317,o), +(654,369,o), +(586,369,cs), +(494,369,o), +(431,272,o), +(425,124,cs), +(421,44,o), +(463,-10,o), +(529,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(485,20,o), +(458,60,o), +(461,122,cs), +(467,253,o), +(517,339,o), +(586,339,cs), +(631,339,o), +(657,301,o), +(654,234,cs), +(649,105,o), +(598,20,o), +(529,20,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(126,0,l), +(734,729,l), +(689,729,l), +(81,0,l) +); +}, +{ +closed = 1; +nodes = ( +(321,360,o), +(385,453,o), +(390,593,cs), +(394,673,o), +(350,729,o), +(280,729,cs), +(187,729,o), +(123,636,o), +(118,496,cs), +(114,416,o), +(158,360,o), +(228,360,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,392,o), +(151,432,o), +(154,494,cs), +(159,617,o), +(209,697,o), +(280,697,cs), +(328,697,o), +(357,657,o), +(354,595,cs), +(349,472,o), +(299,392,o), +(228,392,cs) +); +}, +{ +closed = 1; +nodes = ( +(622,-10,o), +(686,83,o), +(691,223,cs), +(695,303,o), +(651,359,o), +(581,359,cs), +(488,359,o), +(424,266,o), +(419,126,cs), +(415,46,o), +(459,-10,o), +(529,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(481,22,o), +(452,62,o), +(455,124,cs), +(460,247,o), +(510,327,o), +(581,327,cs), +(629,327,o), +(658,287,o), +(655,225,cs), +(650,102,o), +(600,22,o), +(529,22,cs) +); +} +); +width = 767; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(842,729,l), +(708,729,l), +(95,0,l) +); +}, +{ +closed = 1; +nodes = ( +(357,333,o), +(428,434,o), +(428,569,cs), +(428,666,o), +(377,729,o), +(285,729,cs), +(169,729,o), +(98,628,o), +(98,493,cs), +(98,396,o), +(149,333,o), +(241,333,cs) +); +}, +{ +closed = 1; +nodes = ( +(214,437,o), +(214,484,o), +(222,538,cs), +(231,590,o), +(246,625,o), +(276,625,cs), +(312,625,o), +(312,578,o), +(304,524,cs), +(295,472,o), +(280,437,o), +(250,437,cs) +); +}, +{ +closed = 1; +nodes = ( +(765,-9,o), +(836,92,o), +(836,227,cs), +(836,324,o), +(785,387,o), +(693,387,cs), +(577,387,o), +(506,286,o), +(506,151,cs), +(506,54,o), +(557,-9,o), +(649,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(622,95,o), +(622,142,o), +(630,196,cs), +(639,248,o), +(654,283,o), +(684,283,cs), +(720,283,o), +(720,236,o), +(712,182,cs), +(703,130,o), +(688,95,o), +(658,95,cs) +); +} +); +width = 898; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(873,729,l), +(829,729,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(389,333,o), +(474,434,o), +(474,571,cs), +(474,677,o), +(416,739,o), +(316,739,cs), +(200,739,o), +(115,638,o), +(115,501,cs), +(115,395,o), +(173,333,o), +(273,333,cs) +); +}, +{ +closed = 1; +nodes = ( +(193,363,o), +(149,413,o), +(149,501,cs), +(149,623,o), +(221,709,o), +(316,709,cs), +(396,709,o), +(440,659,o), +(440,571,cs), +(440,449,o), +(368,363,o), +(273,363,cs) +); +}, +{ +closed = 1; +nodes = ( +(815,-9,o), +(900,92,o), +(900,229,cs), +(900,335,o), +(842,397,o), +(742,397,cs), +(626,397,o), +(541,296,o), +(541,159,cs), +(541,53,o), +(599,-9,o), +(699,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(619,21,o), +(575,71,o), +(575,159,cs), +(575,281,o), +(647,367,o), +(742,367,cs), +(822,367,o), +(866,317,o), +(866,229,cs), +(866,107,o), +(794,21,o), +(699,21,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(873,729,l), +(829,729,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(385,323,o), +(464,419,o), +(464,558,cs), +(464,665,o), +(405,729,o), +(302,729,cs), +(184,729,o), +(105,633,o), +(105,494,cs), +(105,387,o), +(164,323,o), +(267,323,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,353,o), +(139,405,o), +(139,494,cs), +(139,618,o), +(205,699,o), +(304,699,cs), +(385,699,o), +(430,647,o), +(430,558,cs), +(430,434,o), +(364,353,o), +(265,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(821,-9,o), +(900,87,o), +(900,226,cs), +(900,333,o), +(841,397,o), +(738,397,cs), +(620,397,o), +(541,301,o), +(541,162,cs), +(541,55,o), +(600,-9,o), +(703,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(620,21,o), +(575,73,o), +(575,162,cs), +(575,286,o), +(641,367,o), +(740,367,cs), +(821,367,o), +(866,315,o), +(866,226,cs), +(866,102,o), +(800,21,o), +(701,21,cs) +); +} +); +width = 963; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(318,0,l), +(987,729,l), +(813,729,l), +(144,0,l) +); +}, +{ +closed = 1; +nodes = ( +(426,347,o), +(517,429,o), +(517,552,cs), +(517,659,o), +(443,733,o), +(313,733,cs), +(177,733,o), +(86,651,o), +(86,528,cs), +(86,421,o), +(160,347,o), +(290,347,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,470,o), +(246,488,o), +(246,526,cs), +(246,578,o), +(263,610,o), +(307,610,cs), +(337,610,o), +(357,592,o), +(357,554,cs), +(357,502,o), +(340,470,o), +(296,470,cs) +); +}, +{ +closed = 1; +nodes = ( +(947,-8,o), +(1038,74,o), +(1038,197,cs), +(1038,304,o), +(964,378,o), +(834,378,cs), +(698,378,o), +(607,296,o), +(607,173,cs), +(607,66,o), +(681,-8,o), +(811,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(787,115,o), +(767,133,o), +(767,171,cs), +(767,223,o), +(784,255,o), +(828,255,cs), +(858,255,o), +(878,237,o), +(878,199,cs), +(878,147,o), +(861,115,o), +(817,115,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,0,l), +(970,729,l), +(796,729,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(415,343,o), +(503,423,o), +(503,545,cs), +(503,652,o), +(429,729,o), +(298,729,cs), +(168,729,o), +(80,649,o), +(80,527,cs), +(80,420,o), +(154,343,o), +(284,343,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,466,o), +(240,483,o), +(240,518,cs), +(240,576,o), +(258,606,o), +(297,606,cs), +(324,606,o), +(343,589,o), +(343,554,cs), +(343,496,o), +(325,466,o), +(286,466,cs) +); +}, +{ +closed = 1; +nodes = ( +(931,-8,o), +(1019,72,o), +(1019,194,cs), +(1019,301,o), +(945,378,o), +(814,378,cs), +(684,378,o), +(596,298,o), +(596,176,cs), +(596,69,o), +(670,-8,o), +(800,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(775,115,o), +(756,132,o), +(756,167,cs), +(756,225,o), +(774,255,o), +(813,255,cs), +(840,255,o), +(859,238,o), +(859,203,cs), +(859,145,o), +(841,115,o), +(802,115,cs) +); +} +); +width = 1062; +} +); +metricRight = "=|"; +unicode = 37; +userData = { +KernOnName = percent; +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/period.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/period.glyph new file mode 100644 index 00000000..7121a2ac --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/period.glyph @@ -0,0 +1,795 @@ +{ +glyphname = period; +kernLeft = KO_period; +kernRight = KO_period; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (-17,0); +}, +{ +name = "#exit"; +pos = (213,0); +}, +{ +name = _top; +pos = (98,164); +}, +{ +name = top; +pos = (98,551); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(153,-10,o), +(194,22,o), +(194,77,cs), +(194,132,o), +(153,164,o), +(98,164,cs), +(43,164,o), +(2,132,o), +(2,77,cs), +(2,22,o), +(43,-10,o), +(98,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,-10,o), +(189,23,o), +(189,77,cs), +(189,131,o), +(149,164,o), +(98,164,cs), +(47,164,o), +(7,131,o), +(7,77,cs), +(7,23,o), +(47,-10,o), +(98,-10,cs) +); +} +); +width = 196; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-13,0); +}, +{ +name = "#exit"; +pos = (137,0); +}, +{ +name = _top; +pos = (62,42); +}, +{ +name = top; +pos = (62,522); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,-6,o), +(87,4,o), +(87,18,cs), +(87,32,o), +(76,42,o), +(62,42,cs), +(48,42,o), +(37,32,o), +(37,18,cs), +(37,4,o), +(48,-6,o), +(62,-6,cs) +); +} +); +width = 124; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-9,0); +}, +{ +name = "#exit"; +pos = (150,0); +}, +{ +name = _top; +pos = (71,51); +}, +{ +name = top; +pos = (71,524); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(88,-7,o), +(101,5,o), +(101,22,cs), +(101,39,o), +(88,51,o), +(71,51,cs), +(54,51,o), +(41,39,o), +(41,22,cs), +(41,5,o), +(54,-7,o), +(71,-7,cs) +); +} +); +width = 142; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-19,0); +}, +{ +name = "#exit"; +pos = (281,0); +}, +{ +name = _top; +pos = (131,175); +}, +{ +name = top; +pos = (131,554); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,-10,o), +(249,29,o), +(249,83,cs), +(249,136,o), +(215,175,o), +(131,175,cs), +(47,175,o), +(13,136,o), +(13,83,cs), +(13,29,o), +(47,-10,o), +(131,-10,cs) +); +} +); +width = 262; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-33,0); +}, +{ +name = "#exit"; +pos = (117,0); +}, +{ +name = _top; +pos = (42,48); +}, +{ +name = top; +pos = (42,522); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(58,-6,o), +(69,5,o), +(69,21,cs), +(69,37,o), +(58,48,o), +(42,48,cs), +(26,48,o), +(15,37,o), +(15,21,cs), +(15,5,o), +(26,-6,o), +(42,-6,cs) +); +} +); +width = 84; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-16,0); +}, +{ +name = "#exit"; +pos = (214,0); +}, +{ +name = _top; +pos = (99,182); +}, +{ +name = top; +pos = (99,551); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,-10,o), +(200,22,o), +(200,77,cs), +(200,132,o), +(159,164,o), +(104,164,cs), +(49,164,o), +(8,132,o), +(8,77,cs), +(8,22,o), +(49,-10,o), +(104,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,-10,o), +(195,31,o), +(195,86,cs), +(195,141,o), +(154,182,o), +(99,182,cs), +(44,182,o), +(3,141,o), +(3,86,cs), +(3,31,o), +(44,-10,o), +(99,-10,cs) +); +} +); +width = 198; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-28,0); +}, +{ +name = "#exit"; +pos = (158,0); +}, +{ +name = _top; +pos = (65,61); +}, +{ +name = top; +pos = (65,524); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(85,-7,o), +(99,7,o), +(99,27,cs), +(99,47,o), +(85,61,o), +(65,61,cs), +(45,61,o), +(31,47,o), +(31,27,cs), +(31,7,o), +(45,-7,o), +(65,-7,cs) +); +} +); +width = 130; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-29,0); +}, +{ +name = "#exit"; +pos = (249,0); +}, +{ +name = _top; +pos = (110,202); +}, +{ +name = top; +pos = (110,552); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,-8,o), +(215,34,o), +(215,97,cs), +(215,160,o), +(172,202,o), +(110,202,cs), +(48,202,o), +(5,160,o), +(5,97,cs), +(5,34,o), +(48,-8,o), +(110,-8,cs) +); +} +); +width = 220; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-19,0); +}, +{ +name = "#exit"; +pos = (140,0); +}, +{ +name = _top; +pos = (61,61); +}, +{ +name = top; +pos = (61,524); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(80,-7,o), +(95,8,o), +(95,27,cs), +(95,46,o), +(80,61,o), +(61,61,cs), +(42,61,o), +(27,46,o), +(27,27,cs), +(27,8,o), +(42,-7,o), +(61,-7,cs) +); +} +); +width = 122; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-12,0); +}, +{ +name = "#exit"; +pos = (300,0); +}, +{ +name = _top; +pos = (144,198); +}, +{ +name = top; +pos = (144,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(282,33,o), +(282,95,cs), +(282,156,o), +(226,198,o), +(144,198,cs), +(62,198,o), +(6,156,o), +(6,95,cs), +(6,33,o), +(62,-10,o), +(144,-10,cs) +); +} +); +width = 288; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (10,0); +}, +{ +name = "#exit"; +pos = (192,0); +}, +{ +name = _top; +pos = (101,63); +}, +{ +name = top; +pos = (101,524); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-7,o), +(137,7,o), +(137,28,cs), +(137,48,o), +(121,63,o), +(101,63,cs), +(81,63,o), +(65,48,o), +(65,28,cs), +(65,7,o), +(81,-7,o), +(101,-7,cs) +); +} +); +width = 201; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (0,1); +}, +{ +name = "#exit"; +pos = (288,1); +}, +{ +name = _top; +pos = (144,196); +}, +{ +name = top; +pos = (144,552); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(208,-8,o), +(249,33,o), +(249,94,cs), +(249,155,o), +(208,196,o), +(144,196,cs), +(80,196,o), +(39,155,o), +(39,94,cs), +(39,33,o), +(80,-8,o), +(144,-8,cs) +); +} +); +width = 288; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-66,0); +}, +{ +name = "#exit"; +pos = (83,0); +}, +{ +name = _top; +pos = (15,42); +}, +{ +name = top; +pos = (115,522); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(26,-6,o), +(36,3,o), +(36,18,cs), +(36,33,o), +(26,42,o), +(12,42,cs), +(-1,42,o), +(-12,33,o), +(-12,18,cs), +(-12,3,o), +(-1,-6,o), +(12,-6,cs) +); +} +); +width = 123; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-73,0); +}, +{ +name = "#exit"; +pos = (172,0); +}, +{ +name = _top; +pos = (81,164); +}, +{ +name = top; +pos = (162,551); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-10,o), +(163,27,o), +(163,82,cs), +(163,131,o), +(130,164,o), +(73,164,cs), +(10,164,o), +(-32,127,o), +(-32,72,cs), +(-32,23,o), +(1,-10,o), +(58,-10,cs) +); +} +); +width = 211; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-62,0); +}, +{ +name = "#exit"; +pos = (126,0); +}, +{ +name = _top; +pos = (40,51); +}, +{ +name = top; +pos = (138,524); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(53,-7,o), +(66,4,o), +(66,23,cs), +(66,40,o), +(54,51,o), +(37,51,cs), +(19,51,o), +(6,40,o), +(6,21,cs), +(6,4,o), +(18,-7,o), +(35,-7,cs) +); +} +); +width = 170; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-80,0); +}, +{ +name = "#exit"; +pos = (172,0); +}, +{ +name = _top; +pos = (97,167); +}, +{ +name = top; +pos = (177,552); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-8,o), +(180,29,o), +(180,87,cs), +(180,135,o), +(144,167,o), +(90,167,cs), +(26,167,o), +(-18,130,o), +(-18,72,cs), +(-18,24,o), +(18,-8,o), +(72,-8,cs) +); +} +); +width = 242; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-62,0); +}, +{ +name = "#exit"; +pos = (99,0); +}, +{ +name = _top; +pos = (27,51); +}, +{ +name = top; +pos = (125,524); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(40,-7,o), +(53,4,o), +(53,23,cs), +(53,40,o), +(41,51,o), +(24,51,cs), +(6,51,o), +(-7,40,o), +(-7,21,cs), +(-7,4,o), +(5,-7,o), +(22,-7,cs) +); +} +); +width = 144; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-77,0); +}, +{ +name = "#exit"; +pos = (229,0); +}, +{ +name = _top; +pos = (110,175); +}, +{ +name = top; +pos = (188,554); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,-10,o), +(213,26,o), +(213,90,cs), +(213,141,o), +(172,175,o), +(100,175,cs), +(19,175,o), +(-27,139,o), +(-27,75,cs), +(-27,24,o), +(14,-10,o), +(86,-10,cs) +); +} +); +width = 264; +} +); +unicode = 46; +userData = { +KernOnName = period; +KernOnSpecialSpacing = { +L = period; +R = period; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/period.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/period.ss01.glyph new file mode 100644 index 00000000..e00dfdc0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/period.ss01.glyph @@ -0,0 +1,599 @@ +{ +glyphname = period.ss01; +kernLeft = KO_period.ss01; +kernRight = KO_period.ss01; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (-5,0); +}, +{ +name = "#exit"; +pos = (225,0); +}, +{ +name = _top; +pos = (104,174); +}, +{ +name = top; +pos = (104,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,0,l), +(188,174,l), +(19,174,l), +(19,0,l) +); +} +); +width = 207; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-8,0); +}, +{ +name = "#exit"; +pos = (142,0); +}, +{ +name = _top; +pos = (61,54); +}, +{ +name = top; +pos = (61,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(80,0,l), +(80,54,l), +(42,54,l), +(42,0,l) +); +} +); +width = 122; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-4,0); +}, +{ +name = "#exit"; +pos = (155,0); +}, +{ +name = _top; +pos = (69,61); +}, +{ +name = top; +pos = (69,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,0,l), +(91,61,l), +(46,61,l), +(46,0,l) +); +} +); +width = 137; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-2,0); +}, +{ +name = "#exit"; +pos = (298,0); +}, +{ +name = _top; +pos = (137,164); +}, +{ +name = top; +pos = (137,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,l), +(243,164,l), +(30,164,l), +(30,0,l) +); +} +); +width = 273; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-28,0); +}, +{ +name = "#exit"; +pos = (122,0); +}, +{ +name = _top; +pos = (41,54); +}, +{ +name = top; +pos = (41,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,0,l), +(60,54,l), +(22,54,l), +(22,0,l) +); +} +); +width = 82; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-15,0); +}, +{ +name = "#exit"; +pos = (215,0); +}, +{ +name = _top; +pos = (94,174); +}, +{ +name = top; +pos = (94,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,0,l), +(178,174,l), +(9,174,l), +(9,0,l) +); +} +); +width = 187; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-23,0); +}, +{ +name = "#exit"; +pos = (163,0); +}, +{ +name = _top; +pos = (63,61); +}, +{ +name = top; +pos = (63,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(85,0,l), +(85,61,l), +(40,61,l), +(40,0,l) +); +} +); +width = 125; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-28,0); +}, +{ +name = "#exit"; +pos = (250,0); +}, +{ +name = _top; +pos = (107,164); +}, +{ +name = top; +pos = (107,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,l), +(196,164,l), +(17,164,l), +(17,0,l) +); +} +); +width = 213; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-14,0); +}, +{ +name = "#exit"; +pos = (145,0); +}, +{ +name = _top; +pos = (59,61); +}, +{ +name = top; +pos = (59,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,0,l), +(81,61,l), +(36,61,l), +(36,0,l) +); +} +); +width = 117; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-12,0); +}, +{ +name = "#exit"; +pos = (288,0); +}, +{ +name = _top; +pos = (127,164); +}, +{ +name = top; +pos = (127,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(233,164,l), +(20,164,l), +(20,0,l) +); +} +); +width = 253; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (182,0); +}, +{ +name = _top; +pos = (84,61); +}, +{ +name = top; +pos = (84,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(106,61,l), +(61,61,l), +(61,0,l) +); +} +); +width = 166; +}, +{ +anchors = ( +{ +name = "#entry"; +}, +{ +name = "#exit"; +pos = (257,0); +}, +{ +name = _top; +pos = (126,164); +}, +{ +name = top; +pos = (126,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(213,0,l), +(213,164,l), +(37,164,l), +(37,0,l) +); +} +); +width = 248; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-8,0); +}, +{ +name = "#exit"; +pos = (140,0); +}, +{ +name = _top; +pos = (20,54); +}, +{ +name = top; +pos = (116,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(27,0,l), +(39,54,l), +(1,54,l), +(-11,0,l) +); +} +); +width = 122; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-5,0); +}, +{ +name = "#exit"; +pos = (240,0); +}, +{ +name = _top; +pos = (83,174); +}, +{ +name = top; +pos = (159,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(166,174,l), +(-1,174,l), +(-37,0,l) +); +} +); +width = 205; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (6,0); +}, +{ +name = "#exit"; +pos = (204,0); +}, +{ +name = _top; +pos = (41,61); +}, +{ +name = top; +pos = (135,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,0,l), +(63,61,l), +(18,61,l), +(6,0,l) +); +} +); +width = 164; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-7,0); +}, +{ +name = "#exit"; +pos = (245,0); +}, +{ +name = _top; +pos = (105,164); +}, +{ +name = top; +pos = (183,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,0,l), +(193,164,l), +(16,164,l), +(-18,0,l) +); +} +); +width = 253; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-6,0); +}, +{ +name = "#exit"; +pos = (153,0); +}, +{ +name = _top; +pos = (28,61); +}, +{ +name = top; +pos = (122,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(38,0,l), +(50,61,l), +(5,61,l), +(-7,0,l) +); +} +); +width = 138; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-2,0); +}, +{ +name = "#exit"; +pos = (304,0); +}, +{ +name = _top; +pos = (114,164); +}, +{ +name = top; +pos = (192,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(219,164,l), +(8,164,l), +(-26,0,l) +); +} +); +width = 271; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.glyph new file mode 100644 index 00000000..c498954a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.glyph @@ -0,0 +1,804 @@ +{ +glyphname = periodcentered; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,181,o), +(201,222,o), +(201,277,cs), +(201,332,o), +(162,373,o), +(104,373,cs), +(48,373,o), +(7,332,o), +(7,277,cs), +(7,222,o), +(48,181,o), +(104,181,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,181,o), +(201,222,o), +(201,277,cs), +(201,332,o), +(162,373,o), +(104,373,cs), +(48,373,o), +(7,332,o), +(7,277,cs), +(7,222,o), +(48,181,o), +(104,181,cs) +); +} +); +width = 208; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(95,241,o), +(110,256,o), +(110,277,cs), +(110,298,o), +(95,313,o), +(73,313,cs), +(50,313,o), +(35,298,o), +(35,277,cs), +(35,256,o), +(50,241,o), +(73,241,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,241,o), +(110,256,o), +(110,277,cs), +(110,298,o), +(95,313,o), +(73,313,cs), +(50,313,o), +(35,298,o), +(35,277,cs), +(35,256,o), +(50,241,o), +(73,241,cs) +); +} +); +width = 145; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(151,206,o), +(178,236,o), +(178,277,cs), +(178,318,o), +(151,348,o), +(106,348,cs), +(63,348,o), +(33,318,o), +(33,277,cs), +(33,236,o), +(63,206,o), +(106,206,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,206,o), +(178,236,o), +(178,277,cs), +(178,318,o), +(151,348,o), +(106,348,cs), +(63,348,o), +(33,318,o), +(33,277,cs), +(33,236,o), +(63,206,o), +(106,206,cs) +); +} +); +width = 212; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,179,o), +(209,221,o), +(209,277,cs), +(209,333,o), +(169,375,o), +(111,375,cs), +(54,375,o), +(12,333,o), +(12,277,cs), +(12,221,o), +(54,179,o), +(111,179,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,179,o), +(209,221,o), +(209,277,cs), +(209,333,o), +(169,375,o), +(111,375,cs), +(54,375,o), +(12,333,o), +(12,277,cs), +(12,221,o), +(54,179,o), +(111,179,cs) +); +} +); +width = 221; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(95,241,o), +(110,256,o), +(110,277,cs), +(110,298,o), +(95,313,o), +(73,313,cs), +(50,313,o), +(35,298,o), +(35,277,cs), +(35,256,o), +(50,241,o), +(73,241,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(75,241,o), +(90,256,o), +(90,277,cs), +(90,298,o), +(75,313,o), +(53,313,cs), +(30,313,o), +(15,298,o), +(15,277,cs), +(15,256,o), +(30,241,o), +(53,241,cs) +); +} +); +width = 105; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,181,o), +(201,222,o), +(201,277,cs), +(201,332,o), +(162,373,o), +(104,373,cs), +(48,373,o), +(7,332,o), +(7,277,cs), +(7,222,o), +(48,181,o), +(104,181,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,181,o), +(196,222,o), +(196,277,cs), +(196,332,o), +(157,373,o), +(99,373,cs), +(43,373,o), +(2,332,o), +(2,277,cs), +(2,222,o), +(43,181,o), +(99,181,cs) +); +} +); +width = 198; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(143,206,o), +(170,236,o), +(170,277,cs), +(170,318,o), +(143,348,o), +(98,348,cs), +(55,348,o), +(25,318,o), +(25,277,cs), +(25,236,o), +(55,206,o), +(98,206,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,232,o), +(123,251,o), +(123,277,cs), +(123,303,o), +(106,322,o), +(78,322,cs), +(51,322,o), +(32,303,o), +(32,277,cs), +(32,251,o), +(51,232,o), +(78,232,cs) +); +} +); +width = 155; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,181,o), +(214,222,o), +(214,277,cs), +(214,332,o), +(175,373,o), +(117,373,cs), +(61,373,o), +(20,332,o), +(20,277,cs), +(20,222,o), +(61,181,o), +(117,181,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,181,o), +(197,222,o), +(197,277,cs), +(197,332,o), +(158,373,o), +(100,373,cs), +(44,373,o), +(3,332,o), +(3,277,cs), +(3,222,o), +(44,181,o), +(100,181,cs) +); +} +); +width = 200; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(151,206,o), +(178,236,o), +(178,277,cs), +(178,318,o), +(151,348,o), +(106,348,cs), +(63,348,o), +(33,318,o), +(33,277,cs), +(33,236,o), +(63,206,o), +(106,206,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,206,o), +(168,236,o), +(168,277,cs), +(168,318,o), +(141,348,o), +(96,348,cs), +(53,348,o), +(23,318,o), +(23,277,cs), +(23,236,o), +(53,206,o), +(96,206,cs) +); +} +); +width = 192; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,179,o), +(209,221,o), +(209,277,cs), +(209,333,o), +(169,375,o), +(111,375,cs), +(54,375,o), +(12,333,o), +(12,277,cs), +(12,221,o), +(54,179,o), +(111,179,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,179,o), +(199,221,o), +(199,277,cs), +(199,333,o), +(159,375,o), +(101,375,cs), +(44,375,o), +(2,333,o), +(2,277,cs), +(2,221,o), +(44,179,o), +(101,179,cs) +); +} +); +width = 201; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(143,206,o), +(170,236,o), +(170,277,cs), +(170,318,o), +(143,348,o), +(98,348,cs), +(55,348,o), +(25,318,o), +(25,277,cs), +(25,236,o), +(55,206,o), +(98,206,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(127,232,o), +(144,251,o), +(144,277,cs), +(144,303,o), +(127,322,o), +(99,322,cs), +(72,322,o), +(53,303,o), +(53,277,cs), +(53,251,o), +(72,232,o), +(99,232,cs) +); +} +); +width = 196; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,181,o), +(214,222,o), +(214,277,cs), +(214,332,o), +(175,373,o), +(117,373,cs), +(61,373,o), +(20,332,o), +(20,277,cs), +(20,222,o), +(61,181,o), +(117,181,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(165,181,o), +(203,222,o), +(203,277,cs), +(203,332,o), +(165,373,o), +(111,373,cs), +(58,373,o), +(19,332,o), +(19,277,cs), +(19,222,o), +(58,181,o), +(111,181,cs) +); +} +); +width = 221; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(154,206,o), +(182,237,o), +(182,279,cs), +(182,319,o), +(157,348,o), +(113,348,cs), +(69,348,o), +(38,317,o), +(38,275,cs), +(38,235,o), +(66,206,o), +(108,206,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,241,o), +(115,256,o), +(115,277,cs), +(115,298,o), +(100,313,o), +(78,313,cs), +(55,313,o), +(40,298,o), +(40,277,cs), +(40,256,o), +(55,241,o), +(78,241,cs) +); +} +); +width = 147; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,181,o), +(202,224,o), +(202,281,cs), +(202,334,o), +(166,373,o), +(110,373,cs), +(53,373,o), +(10,330,o), +(10,273,cs), +(10,220,o), +(49,181,o), +(103,181,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,181,o), +(202,224,o), +(202,281,cs), +(202,334,o), +(166,373,o), +(110,373,cs), +(53,373,o), +(10,330,o), +(10,273,cs), +(10,220,o), +(49,181,o), +(103,181,cs) +); +} +); +width = 209; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(149,206,o), +(177,237,o), +(177,279,cs), +(177,319,o), +(151,348,o), +(108,348,cs), +(64,348,o), +(33,317,o), +(33,275,cs), +(33,235,o), +(61,206,o), +(103,206,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(130,232,o), +(147,251,o), +(147,277,cs), +(147,303,o), +(130,322,o), +(102,322,cs), +(75,322,o), +(56,303,o), +(56,277,cs), +(56,251,o), +(75,232,o), +(102,232,cs) +); +} +); +width = 195; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,181,o), +(214,224,o), +(214,281,cs), +(214,334,o), +(178,373,o), +(122,373,cs), +(65,373,o), +(22,330,o), +(22,273,cs), +(22,220,o), +(61,181,o), +(115,181,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,181,o), +(214,224,o), +(214,281,cs), +(214,334,o), +(178,373,o), +(122,373,cs), +(65,373,o), +(22,330,o), +(22,273,cs), +(22,220,o), +(61,181,o), +(115,181,cs) +); +} +); +width = 235; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(143,206,o), +(181,243,o), +(181,292,cs), +(181,325,o), +(160,348,o), +(122,348,cs), +(74,348,o), +(35,308,o), +(35,261,cs), +(35,229,o), +(59,206,o), +(96,206,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,206,o), +(181,243,o), +(181,292,cs), +(181,325,o), +(160,348,o), +(122,348,cs), +(74,348,o), +(35,308,o), +(35,261,cs), +(35,229,o), +(59,206,o), +(96,206,cs) +); +} +); +width = 210; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,179,o), +(210,233,o), +(210,297,cs), +(210,343,o), +(178,375,o), +(129,375,cs), +(65,375,o), +(11,321,o), +(11,257,cs), +(11,212,o), +(44,179,o), +(92,179,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,179,o), +(210,233,o), +(210,297,cs), +(210,343,o), +(178,375,o), +(129,375,cs), +(65,375,o), +(11,321,o), +(11,257,cs), +(11,212,o), +(44,179,o), +(92,179,cs) +); +} +); +width = 219; +} +); +unicode = 183; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.glyph new file mode 100644 index 00000000..ab47ecd3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.glyph @@ -0,0 +1,419 @@ +{ +glyphname = periodcentered.loclCAT.case; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(-33,351,o), +(-19,365,o), +(-19,385,cs), +(-19,405,o), +(-33,419,o), +(-54,419,cs), +(-76,419,o), +(-90,405,o), +(-90,385,cs), +(-90,365,o), +(-76,351,o), +(-54,351,cs) +); +} +); +width = 0; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(21,301,o), +(56,338,o), +(56,388,cs), +(56,437,o), +(21,474,o), +(-32,474,cs), +(-82,474,o), +(-119,437,o), +(-119,388,cs), +(-119,338,o), +(-82,301,o), +(-32,301,cs) +); +} +); +width = 50; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(-183,336,o), +(-168,353,o), +(-168,377,cs), +(-168,401,o), +(-183,418,o), +(-209,418,cs), +(-234,418,o), +(-251,401,o), +(-251,377,cs), +(-251,353,o), +(-234,336,o), +(-209,336,cs) +); +} +); +width = 0; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(-84,289,o), +(-44,331,o), +(-44,387,cs), +(-44,443,o), +(-84,485,o), +(-142,485,cs), +(-199,485,o), +(-241,443,o), +(-241,387,cs), +(-241,331,o), +(-199,289,o), +(-142,289,cs) +); +} +); +width = 0; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(-41,351,o), +(-27,365,o), +(-27,385,cs), +(-27,405,o), +(-41,419,o), +(-62,419,cs), +(-84,419,o), +(-98,405,o), +(-98,385,cs), +(-98,365,o), +(-84,351,o), +(-62,351,cs) +); +} +); +width = 12; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(16,301,o), +(51,338,o), +(51,388,cs), +(51,437,o), +(16,474,o), +(-37,474,cs), +(-87,474,o), +(-124,437,o), +(-124,388,cs), +(-124,338,o), +(-87,301,o), +(-37,301,cs) +); +} +); +width = 40; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(-144,336,o), +(-129,353,o), +(-129,377,cs), +(-129,401,o), +(-144,418,o), +(-170,418,cs), +(-195,418,o), +(-212,401,o), +(-212,377,cs), +(-212,353,o), +(-195,336,o), +(-170,336,cs) +); +} +); +width = 0; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(-75,292,o), +(-36,333,o), +(-36,388,cs), +(-36,443,o), +(-75,484,o), +(-133,484,cs), +(-189,484,o), +(-230,443,o), +(-230,388,cs), +(-230,333,o), +(-189,292,o), +(-133,292,cs) +); +} +); +width = 0; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(-188,336,o), +(-173,353,o), +(-173,377,cs), +(-173,401,o), +(-188,418,o), +(-214,418,cs), +(-239,418,o), +(-256,401,o), +(-256,377,cs), +(-256,353,o), +(-239,336,o), +(-214,336,cs) +); +} +); +width = 25; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(-89,289,o), +(-49,331,o), +(-49,387,cs), +(-49,443,o), +(-89,485,o), +(-147,485,cs), +(-204,485,o), +(-246,443,o), +(-246,387,cs), +(-246,331,o), +(-204,289,o), +(-147,289,cs) +); +} +); +width = 5; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(-122,336,o), +(-107,353,o), +(-107,377,cs), +(-107,401,o), +(-122,418,o), +(-146,418,cs), +(-171,418,o), +(-188,401,o), +(-188,377,cs), +(-188,353,o), +(-171,336,o), +(-146,336,cs) +); +} +); +width = 5; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(-72,292,o), +(-35,333,o), +(-35,388,cs), +(-35,443,o), +(-72,484,o), +(-126,484,cs), +(-178,484,o), +(-217,443,o), +(-217,388,cs), +(-217,333,o), +(-178,292,o), +(-126,292,cs) +); +} +); +width = 0; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-12,351,o), +(2,365,o), +(2,385,cs), +(2,405,o), +(-12,419,o), +(-33,419,cs), +(-55,419,o), +(-69,405,o), +(-69,385,cs), +(-69,365,o), +(-55,351,o), +(-33,351,cs) +); +} +); +width = 0; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,301,o), +(87,338,o), +(87,388,cs), +(87,437,o), +(52,474,o), +(-1,474,cs), +(-51,474,o), +(-88,437,o), +(-88,388,cs), +(-88,338,o), +(-51,301,o), +(-1,301,cs) +); +} +); +width = 63; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-101,336,o), +(-86,353,o), +(-86,377,cs), +(-86,401,o), +(-101,418,o), +(-127,418,cs), +(-152,418,o), +(-169,401,o), +(-169,377,cs), +(-169,353,o), +(-152,336,o), +(-127,336,cs) +); +} +); +width = 0; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(-37,292,o), +(2,333,o), +(2,388,cs), +(2,443,o), +(-37,484,o), +(-95,484,cs), +(-151,484,o), +(-192,443,o), +(-192,388,cs), +(-192,333,o), +(-151,292,o), +(-95,292,cs) +); +} +); +width = 0; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-157,336,o), +(-142,353,o), +(-142,377,cs), +(-142,401,o), +(-157,418,o), +(-183,418,cs), +(-208,418,o), +(-225,401,o), +(-225,377,cs), +(-225,353,o), +(-208,336,o), +(-183,336,cs) +); +} +); +width = 0; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(-58,289,o), +(-18,331,o), +(-18,387,cs), +(-18,443,o), +(-58,485,o), +(-116,485,cs), +(-173,485,o), +(-215,443,o), +(-215,387,cs), +(-215,331,o), +(-173,289,o), +(-116,289,cs) +); +} +); +width = 0; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.ss01.glyph new file mode 100644 index 00000000..42184178 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.ss01.glyph @@ -0,0 +1,653 @@ +{ +glyphname = periodcentered.loclCAT.case.ss01; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-33,351,o), +(-19,365,o), +(-19,385,cs), +(-19,405,o), +(-33,419,o), +(-54,419,cs), +(-76,419,o), +(-90,405,o), +(-90,385,cs), +(-90,365,o), +(-76,351,o), +(-54,351,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(-15,357,l), +(-15,415,l), +(-76,415,l), +(-76,357,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(21,301,o), +(56,338,o), +(56,388,cs), +(56,437,o), +(21,474,o), +(-32,474,cs), +(-82,474,o), +(-119,437,o), +(-119,388,cs), +(-119,338,o), +(-82,301,o), +(-32,301,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,311,l), +(44,466,l), +(-115,466,l), +(-115,311,l) +); +} +); +width = 47; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-183,336,o), +(-168,353,o), +(-168,377,cs), +(-168,401,o), +(-183,418,o), +(-209,418,cs), +(-234,418,o), +(-251,401,o), +(-251,377,cs), +(-251,353,o), +(-234,336,o), +(-209,336,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(-172,343,l), +(-172,412,l), +(-247,412,l), +(-247,343,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-84,289,o), +(-44,331,o), +(-44,387,cs), +(-44,443,o), +(-84,485,o), +(-142,485,cs), +(-199,485,o), +(-241,443,o), +(-241,387,cs), +(-241,331,o), +(-199,289,o), +(-142,289,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(-66,303,l), +(-66,471,l), +(-229,471,l), +(-229,303,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-33,351,o), +(-19,365,o), +(-19,385,cs), +(-19,405,o), +(-33,419,o), +(-54,419,cs), +(-76,419,o), +(-90,405,o), +(-90,385,cs), +(-90,365,o), +(-76,351,o), +(-54,351,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(-23,357,l), +(-23,415,l), +(-84,415,l), +(-84,357,l) +); +} +); +width = 12; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(21,301,o), +(56,338,o), +(56,388,cs), +(56,437,o), +(21,474,o), +(-32,474,cs), +(-82,474,o), +(-119,437,o), +(-119,388,cs), +(-119,338,o), +(-82,301,o), +(-32,301,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(39,311,l), +(39,466,l), +(-120,466,l), +(-120,311,l) +); +} +); +width = 37; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-127,336,o), +(-112,353,o), +(-112,377,cs), +(-112,401,o), +(-127,418,o), +(-153,418,cs), +(-178,418,o), +(-195,401,o), +(-195,377,cs), +(-195,353,o), +(-178,336,o), +(-153,336,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(-131,338,l), +(-131,415,l), +(-209,415,l), +(-209,338,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-63,292,o), +(-24,333,o), +(-24,388,cs), +(-24,443,o), +(-63,484,o), +(-121,484,cs), +(-177,484,o), +(-218,443,o), +(-218,388,cs), +(-218,333,o), +(-177,292,o), +(-121,292,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(-61,302,l), +(-61,475,l), +(-237,475,l), +(-237,302,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-183,336,o), +(-168,353,o), +(-168,377,cs), +(-168,401,o), +(-183,418,o), +(-209,418,cs), +(-234,418,o), +(-251,401,o), +(-251,377,cs), +(-251,353,o), +(-234,336,o), +(-209,336,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(-177,343,l), +(-177,412,l), +(-252,412,l), +(-252,343,l) +); +} +); +width = 25; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-84,289,o), +(-44,331,o), +(-44,387,cs), +(-44,443,o), +(-84,485,o), +(-142,485,cs), +(-199,485,o), +(-241,443,o), +(-241,387,cs), +(-241,331,o), +(-199,289,o), +(-142,289,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(-71,303,l), +(-71,471,l), +(-234,471,l), +(-234,303,l) +); +} +); +width = 5; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-127,336,o), +(-112,353,o), +(-112,377,cs), +(-112,401,o), +(-127,418,o), +(-153,418,cs), +(-178,418,o), +(-195,401,o), +(-195,377,cs), +(-195,353,o), +(-178,336,o), +(-153,336,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(-109,338,l), +(-109,415,l), +(-185,415,l), +(-185,338,l) +); +} +); +width = 5; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-63,292,o), +(-24,333,o), +(-24,388,cs), +(-24,443,o), +(-63,484,o), +(-121,484,cs), +(-177,484,o), +(-218,443,o), +(-218,388,cs), +(-218,333,o), +(-177,292,o), +(-121,292,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(-59,302,l), +(-59,475,l), +(-224,475,l), +(-224,302,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-12,351,o), +(2,365,o), +(2,385,cs), +(2,405,o), +(-12,419,o), +(-33,419,cs), +(-55,419,o), +(-69,405,o), +(-69,385,cs), +(-69,365,o), +(-55,351,o), +(-33,351,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(5,357,l), +(17,415,l), +(-44,415,l), +(-56,357,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(52,301,o), +(87,338,o), +(87,388,cs), +(87,437,o), +(52,474,o), +(-1,474,cs), +(-51,474,o), +(-88,437,o), +(-88,388,cs), +(-88,338,o), +(-51,301,o), +(-1,301,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(58,311,l), +(90,466,l), +(-69,466,l), +(-101,311,l) +); +} +); +width = 54; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-101,336,o), +(-86,353,o), +(-86,377,cs), +(-86,401,o), +(-101,418,o), +(-127,418,cs), +(-152,418,o), +(-169,401,o), +(-169,377,cs), +(-169,353,o), +(-152,336,o), +(-127,336,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-97,338,l), +(-81,415,l), +(-159,415,l), +(-175,338,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-37,292,o), +(2,333,o), +(2,388,cs), +(2,443,o), +(-37,484,o), +(-95,484,cs), +(-151,484,o), +(-192,443,o), +(-192,388,cs), +(-192,333,o), +(-151,292,o), +(-95,292,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(-33,302,l), +(3,475,l), +(-173,475,l), +(-209,302,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-157,336,o), +(-142,353,o), +(-142,377,cs), +(-142,401,o), +(-157,418,o), +(-183,418,cs), +(-208,418,o), +(-225,401,o), +(-225,377,cs), +(-225,353,o), +(-208,336,o), +(-183,336,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-150,343,l), +(-136,412,l), +(-211,412,l), +(-225,343,l) +); +} +); +width = 0; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-58,289,o), +(-18,331,o), +(-18,387,cs), +(-18,443,o), +(-58,485,o), +(-116,485,cs), +(-173,485,o), +(-215,443,o), +(-215,387,cs), +(-215,331,o), +(-173,289,o), +(-116,289,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(-59,303,l), +(-25,471,l), +(-188,471,l), +(-222,303,l) +); +} +); +width = 0; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.glyph new file mode 100644 index 00000000..9077ed8e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.glyph @@ -0,0 +1,427 @@ +{ +glyphname = periodcentered.loclCAT; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(40,321,o), +(54,335,o), +(54,355,cs), +(54,375,o), +(40,389,o), +(19,389,cs), +(-3,389,o), +(-17,375,o), +(-17,355,cs), +(-17,335,o), +(-3,321,o), +(19,321,cs) +); +} +); +width = 37; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,261,o), +(171,298,o), +(171,348,cs), +(171,397,o), +(136,434,o), +(83,434,cs), +(33,434,o), +(-4,397,o), +(-4,348,cs), +(-4,298,o), +(33,261,o), +(83,261,cs) +); +} +); +width = 167; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,306,o), +(81,323,o), +(81,347,cs), +(81,371,o), +(66,388,o), +(40,388,cs), +(15,388,o), +(-2,371,o), +(-2,347,cs), +(-2,323,o), +(15,306,o), +(40,306,cs) +); +} +); +width = 79; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,249,o), +(184,291,o), +(184,347,cs), +(184,403,o), +(144,445,o), +(86,445,cs), +(29,445,o), +(-13,403,o), +(-13,347,cs), +(-13,291,o), +(29,249,o), +(86,249,cs) +); +} +); +width = 171; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(32,321,o), +(46,335,o), +(46,355,cs), +(46,375,o), +(32,389,o), +(11,389,cs), +(-11,389,o), +(-25,375,o), +(-25,355,cs), +(-25,335,o), +(-11,321,o), +(11,321,cs) +); +} +); +width = 24; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,261,o), +(166,298,o), +(166,348,cs), +(166,397,o), +(131,434,o), +(78,434,cs), +(28,434,o), +(-9,397,o), +(-9,348,cs), +(-9,298,o), +(28,261,o), +(78,261,cs) +); +} +); +width = 157; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(47,306,o), +(62,323,o), +(62,347,cs), +(62,371,o), +(47,388,o), +(21,388,cs), +(-4,388,o), +(-21,371,o), +(-21,347,cs), +(-21,323,o), +(-4,306,o), +(21,306,cs) +); +} +); +width = 41; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(139,252,o), +(178,293,o), +(178,348,cs), +(178,403,o), +(139,444,o), +(81,444,cs), +(25,444,o), +(-16,403,o), +(-16,348,cs), +(-16,293,o), +(25,252,o), +(81,252,cs) +); +} +); +width = 162; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(61,306,o), +(76,323,o), +(76,347,cs), +(76,371,o), +(61,388,o), +(35,388,cs), +(10,388,o), +(-7,371,o), +(-7,347,cs), +(-7,323,o), +(10,306,o), +(35,306,cs) +); +} +); +width = 69; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(139,249,o), +(179,291,o), +(179,347,cs), +(179,403,o), +(139,445,o), +(81,445,cs), +(24,445,o), +(-18,403,o), +(-18,347,cs), +(-18,291,o), +(24,249,o), +(81,249,cs) +); +} +); +width = 161; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(158,306,o), +(173,323,o), +(173,347,cs), +(173,371,o), +(158,388,o), +(134,388,cs), +(109,388,o), +(92,371,o), +(92,347,cs), +(92,323,o), +(109,306,o), +(134,306,cs) +); +} +); +width = 265; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(160,252,o), +(198,293,o), +(198,348,cs), +(198,403,o), +(160,444,o), +(106,444,cs), +(52,444,o), +(13,403,o), +(13,348,cs), +(13,293,o), +(52,252,o), +(106,252,cs) +); +} +); +width = 211; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(65,321,o), +(79,335,o), +(79,355,cs), +(79,375,o), +(65,389,o), +(44,389,cs), +(22,389,o), +(8,375,o), +(8,355,cs), +(8,335,o), +(22,321,o), +(44,321,cs) +); +} +); +width = 47; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,261,o), +(187,298,o), +(187,348,cs), +(187,397,o), +(152,434,o), +(99,434,cs), +(49,434,o), +(12,397,o), +(12,348,cs), +(12,298,o), +(49,261,o), +(99,261,cs) +); +} +); +width = 167; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,306,o), +(87,323,o), +(87,347,cs), +(87,371,o), +(72,388,o), +(46,388,cs), +(21,388,o), +(4,371,o), +(4,347,cs), +(4,323,o), +(21,306,o), +(46,306,cs) +); +} +); +width = 55; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,252,o), +(208,293,o), +(208,348,cs), +(208,403,o), +(169,444,o), +(111,444,cs), +(55,444,o), +(14,403,o), +(14,348,cs), +(14,293,o), +(55,252,o), +(111,252,cs) +); +} +); +width = 191; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(85,306,o), +(100,323,o), +(100,347,cs), +(100,371,o), +(85,388,o), +(59,388,cs), +(34,388,o), +(17,371,o), +(17,347,cs), +(17,323,o), +(34,306,o), +(59,306,cs) +); +} +); +width = 81; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,249,o), +(202,291,o), +(202,347,cs), +(202,403,o), +(162,445,o), +(104,445,cs), +(47,445,o), +(5,403,o), +(5,347,cs), +(5,291,o), +(47,249,o), +(104,249,cs) +); +} +); +width = 176; +} +); +metricRight = "=|"; +userData = { +KernOnName = periodcentered.loclCAT; +KernOnSpecialSpacing = { +L = hyphen; +R = hyphen; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.ss01.glyph new file mode 100644 index 00000000..4a1c9a25 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.loclC_A_T_.ss01.glyph @@ -0,0 +1,276 @@ +{ +glyphname = periodcentered.loclCAT.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,326,l), +(49,384,l), +(-12,384,l), +(-12,326,l) +); +} +); +width = 37; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,270,l), +(163,425,l), +(4,425,l), +(4,270,l) +); +} +); +width = 167; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,313,l), +(77,382,l), +(2,382,l), +(2,313,l) +); +} +); +width = 79; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,263,l), +(167,431,l), +(4,431,l), +(4,263,l) +); +} +); +width = 171; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(41,326,l), +(41,384,l), +(-20,384,l), +(-20,326,l) +); +} +); +width = 24; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,270,l), +(158,425,l), +(-1,425,l), +(-1,270,l) +); +} +); +width = 157; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(59,309,l), +(59,386,l), +(-19,386,l), +(-19,309,l) +); +} +); +width = 40; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,262,l), +(169,435,l), +(-7,435,l), +(-7,262,l) +); +} +); +width = 162; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,313,l), +(72,382,l), +(-3,382,l), +(-3,313,l) +); +} +); +width = 69; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,263,l), +(162,431,l), +(-1,431,l), +(-1,263,l) +); +} +); +width = 161; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(77,309,l), +(77,386,l), +(1,386,l), +(1,309,l) +); +} +); +width = 77; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(170,262,l), +(170,435,l), +(4,435,l), +(4,262,l) +); +} +); +width = 173; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(63,326,l), +(75,384,l), +(14,384,l), +(2,326,l) +); +} +); +width = 37; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,270,l), +(195,425,l), +(36,425,l), +(4,270,l) +); +} +); +width = 167; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(86,309,l), +(102,386,l), +(24,386,l), +(8,309,l) +); +} +); +width = 74; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,262,l), +(215,435,l), +(39,435,l), +(3,262,l) +); +} +); +width = 186; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,313,l), +(103,382,l), +(28,382,l), +(14,313,l) +); +} +); +width = 80; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,263,l), +(200,431,l), +(37,431,l), +(3,263,l) +); +} +); +width = 172; +} +); +metricRight = "=|"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.ss01.glyph new file mode 100644 index 00000000..7288001c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/periodcentered.ss01.glyph @@ -0,0 +1,660 @@ +{ +glyphname = periodcentered.ss01; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,181,o), +(201,222,o), +(201,277,cs), +(201,332,o), +(162,373,o), +(104,373,cs), +(48,373,o), +(7,332,o), +(7,277,cs), +(7,222,o), +(48,181,o), +(104,181,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,190,l), +(188,364,l), +(19,364,l), +(19,190,l) +); +} +); +width = 207; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(95,241,o), +(110,256,o), +(110,277,cs), +(110,298,o), +(95,313,o), +(73,313,cs), +(50,313,o), +(35,298,o), +(35,277,cs), +(35,256,o), +(50,241,o), +(73,241,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(80,250,l), +(80,304,l), +(42,304,l), +(42,250,l) +); +} +); +width = 122; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(185,206,o), +(212,236,o), +(212,277,cs), +(212,318,o), +(185,348,o), +(140,348,cs), +(97,348,o), +(67,318,o), +(67,277,cs), +(67,236,o), +(97,206,o), +(140,206,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,216,l), +(159,339,l), +(46,339,l), +(46,216,l) +); +} +); +width = 205; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,179,o), +(209,221,o), +(209,277,cs), +(209,333,o), +(169,375,o), +(111,375,cs), +(54,375,o), +(12,333,o), +(12,277,cs), +(12,221,o), +(54,179,o), +(111,179,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,195,l), +(243,359,l), +(30,359,l), +(30,195,l) +); +} +); +width = 273; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(95,241,o), +(110,256,o), +(110,277,cs), +(110,298,o), +(95,313,o), +(73,313,cs), +(50,313,o), +(35,298,o), +(35,277,cs), +(35,256,o), +(50,241,o), +(73,241,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,250,l), +(60,304,l), +(22,304,l), +(22,250,l) +); +} +); +width = 82; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,181,o), +(201,222,o), +(201,277,cs), +(201,332,o), +(162,373,o), +(104,373,cs), +(48,373,o), +(7,332,o), +(7,277,cs), +(7,222,o), +(48,181,o), +(104,181,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,190,l), +(178,364,l), +(9,364,l), +(9,190,l) +); +} +); +width = 187; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,206,o), +(201,236,o), +(201,277,cs), +(201,318,o), +(174,348,o), +(129,348,cs), +(86,348,o), +(56,318,o), +(56,277,cs), +(56,236,o), +(86,206,o), +(129,206,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,238,l), +(103,323,l), +(40,323,l), +(40,238,l) +); +} +); +width = 143; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,181,o), +(214,222,o), +(214,277,cs), +(214,332,o), +(175,373,o), +(117,373,cs), +(61,373,o), +(20,332,o), +(20,277,cs), +(20,222,o), +(61,181,o), +(117,181,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,200,l), +(196,364,l), +(17,364,l), +(17,200,l) +); +} +); +width = 213; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(185,206,o), +(212,236,o), +(212,277,cs), +(212,318,o), +(185,348,o), +(140,348,cs), +(97,348,o), +(67,318,o), +(67,277,cs), +(67,236,o), +(97,206,o), +(140,206,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,216,l), +(149,339,l), +(36,339,l), +(36,216,l) +); +} +); +width = 185; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,179,o), +(209,221,o), +(209,277,cs), +(209,333,o), +(169,375,o), +(111,375,cs), +(54,375,o), +(12,333,o), +(12,277,cs), +(12,221,o), +(54,179,o), +(111,179,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,195,l), +(233,359,l), +(20,359,l), +(20,195,l) +); +} +); +width = 253; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,206,o), +(201,236,o), +(201,277,cs), +(201,318,o), +(174,348,o), +(129,348,cs), +(86,348,o), +(56,318,o), +(56,277,cs), +(56,236,o), +(86,206,o), +(129,206,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(124,238,l), +(124,323,l), +(61,323,l), +(61,238,l) +); +} +); +width = 184; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,181,o), +(214,222,o), +(214,277,cs), +(214,332,o), +(175,373,o), +(117,373,cs), +(61,373,o), +(20,332,o), +(20,277,cs), +(20,222,o), +(61,181,o), +(117,181,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(211,200,l), +(211,364,l), +(37,364,l), +(37,200,l) +); +} +); +width = 247; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,206,o), +(228,237,o), +(228,279,cs), +(228,319,o), +(203,348,o), +(159,348,cs), +(115,348,o), +(84,317,o), +(84,275,cs), +(84,235,o), +(112,206,o), +(154,206,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(78,250,l), +(90,304,l), +(52,304,l), +(40,250,l) +); +} +); +width = 122; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(201,181,o), +(241,224,o), +(241,281,cs), +(241,334,o), +(205,373,o), +(149,373,cs), +(92,373,o), +(49,330,o), +(49,273,cs), +(49,220,o), +(88,181,o), +(142,181,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,190,l), +(205,364,l), +(38,364,l), +(2,190,l) +); +} +); +width = 206; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(181,206,o), +(209,237,o), +(209,279,cs), +(209,319,o), +(183,348,o), +(140,348,cs), +(96,348,o), +(65,317,o), +(65,275,cs), +(65,235,o), +(93,206,o), +(135,206,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(119,238,l), +(137,323,l), +(74,323,l), +(56,238,l) +); +} +); +width = 184; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(227,181,o), +(267,224,o), +(267,281,cs), +(267,334,o), +(231,373,o), +(175,373,cs), +(118,373,o), +(75,330,o), +(75,273,cs), +(75,220,o), +(114,181,o), +(168,181,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,200,l), +(236,364,l), +(57,364,l), +(23,200,l) +); +} +); +width = 255; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(233,206,o), +(271,243,o), +(271,292,cs), +(271,325,o), +(250,348,o), +(212,348,cs), +(164,348,o), +(125,308,o), +(125,261,cs), +(125,229,o), +(149,206,o), +(186,206,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(150,216,l), +(176,339,l), +(63,339,l), +(37,216,l) +); +} +); +width = 205; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(199,179,o), +(252,233,o), +(252,297,cs), +(252,343,o), +(220,375,o), +(171,375,cs), +(107,375,o), +(53,321,o), +(53,257,cs), +(53,212,o), +(86,179,o), +(134,179,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,195,l), +(261,359,l), +(48,359,l), +(14,195,l) +); +} +); +width = 273; +} +); +metricRight = "=|"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/perthousand.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/perthousand.glyph new file mode 100644 index 00000000..8ece94b3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/perthousand.glyph @@ -0,0 +1,2704 @@ +{ +glyphname = perthousand; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,447,o), +(130,477,o), +(130,540,cs), +(130,604,o), +(131,633,o), +(151,633,cs), +(170,633,o), +(171,611,o), +(171,540,cs), +(171,472,o), +(170,447,o), +(151,447,cs) +); +}, +{ +closed = 1; +nodes = ( +(550,90,o), +(549,120,o), +(549,183,cs), +(549,247,o), +(550,276,o), +(570,276,cs), +(589,276,o), +(590,254,o), +(590,183,cs), +(590,115,o), +(589,90,o), +(570,90,cs) +); +}, +{ +closed = 1; +nodes = ( +(850,90,o), +(849,120,o), +(849,183,cs), +(849,247,o), +(850,276,o), +(870,276,cs), +(889,276,o), +(890,254,o), +(890,183,cs), +(890,115,o), +(889,90,o), +(870,90,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(572,729,l), +(462,729,l), +(149,0,l) +); +}, +{ +closed = 1; +nodes = ( +(232,352,o), +(291,388,o), +(291,540,cs), +(291,692,o), +(232,729,o), +(151,729,cs), +(71,729,o), +(12,694,o), +(12,540,cs), +(12,387,o), +(71,352,o), +(151,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,447,o), +(130,477,o), +(130,540,cs), +(130,604,o), +(131,633,o), +(151,633,cs), +(170,633,o), +(171,611,o), +(171,540,cs), +(171,472,o), +(170,447,o), +(151,447,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,-5,o), +(710,32,o), +(710,184,cs), +(710,336,o), +(651,372,o), +(570,372,cs), +(490,372,o), +(431,337,o), +(431,184,cs), +(431,30,o), +(490,-5,o), +(570,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(550,90,o), +(549,120,o), +(549,183,cs), +(549,247,o), +(550,276,o), +(570,276,cs), +(589,276,o), +(590,254,o), +(590,183,cs), +(590,115,o), +(589,90,o), +(570,90,cs) +); +}, +{ +closed = 1; +nodes = ( +(951,-5,o), +(1010,32,o), +(1010,184,cs), +(1010,336,o), +(951,372,o), +(870,372,cs), +(790,372,o), +(731,337,o), +(731,184,cs), +(731,30,o), +(790,-5,o), +(870,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(850,90,o), +(849,120,o), +(849,183,cs), +(849,247,o), +(850,276,o), +(870,276,cs), +(889,276,o), +(890,254,o), +(890,183,cs), +(890,115,o), +(889,90,o), +(870,90,cs) +); +} +); +width = 1022; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,0,l), +(459,729,l), +(425,729,l), +(144,0,l) +); +}, +{ +closed = 1; +nodes = ( +(222,324,o), +(249,399,o), +(249,527,cs), +(249,655,o), +(222,729,o), +(155,729,cs), +(87,729,o), +(60,655,o), +(60,527,cs), +(60,399,o), +(87,324,o), +(155,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,353,o), +(93,390,o), +(93,527,cs), +(93,663,o), +(116,701,o), +(155,701,cs), +(193,701,o), +(216,663,o), +(216,527,cs), +(216,390,o), +(193,353,o), +(155,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(516,-6,o), +(543,70,o), +(543,197,cs), +(543,324,o), +(516,399,o), +(449,399,cs), +(380,399,o), +(354,324,o), +(354,197,cs), +(354,71,o), +(380,-6,o), +(449,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(410,23,o), +(386,59,o), +(386,197,cs), +(386,335,o), +(410,372,o), +(449,372,cs), +(486,372,o), +(510,335,o), +(510,197,cs), +(510,59,o), +(486,23,o), +(449,23,cs) +); +}, +{ +closed = 1; +nodes = ( +(756,-6,o), +(783,70,o), +(783,197,cs), +(783,324,o), +(756,399,o), +(689,399,cs), +(620,399,o), +(594,324,o), +(594,197,cs), +(594,71,o), +(620,-6,o), +(689,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(650,23,o), +(626,59,o), +(626,197,cs), +(626,335,o), +(650,372,o), +(689,372,cs), +(726,372,o), +(750,335,o), +(750,197,cs), +(750,59,o), +(726,23,o), +(689,23,cs) +); +} +); +width = 843; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,0,l), +(769,729,l), +(728,729,l), +(199,0,l) +); +}, +{ +closed = 1; +nodes = ( +(338,323,o), +(409,393,o), +(409,526,cs), +(409,659,o), +(337,729,o), +(233,729,cs), +(128,729,o), +(56,659,o), +(56,526,cs), +(56,392,o), +(129,323,o), +(234,323,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,353,o), +(92,415,o), +(92,526,cs), +(92,637,o), +(144,699,o), +(233,699,cs), +(323,699,o), +(374,637,o), +(374,526,cs), +(374,415,o), +(322,353,o), +(233,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(830,-10,o), +(901,60,o), +(901,193,cs), +(901,326,o), +(829,396,o), +(725,396,cs), +(620,396,o), +(548,326,o), +(548,193,cs), +(548,59,o), +(621,-10,o), +(726,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(635,20,o), +(584,82,o), +(584,193,cs), +(584,304,o), +(636,366,o), +(725,366,cs), +(815,366,o), +(866,304,o), +(866,193,cs), +(866,82,o), +(814,20,o), +(725,20,cs) +); +}, +{ +closed = 1; +nodes = ( +(1230,-10,o), +(1301,60,o), +(1301,193,cs), +(1301,326,o), +(1229,396,o), +(1125,396,cs), +(1020,396,o), +(948,326,o), +(948,193,cs), +(948,59,o), +(1021,-10,o), +(1126,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(1035,20,o), +(984,82,o), +(984,193,cs), +(984,304,o), +(1036,366,o), +(1125,366,cs), +(1215,366,o), +(1266,304,o), +(1266,193,cs), +(1266,82,o), +(1214,20,o), +(1125,20,cs) +); +} +); +width = 1357; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,0,l), +(834,729,l), +(674,729,l), +(144,0,l) +); +}, +{ +closed = 1; +nodes = ( +(351,351,o), +(432,421,o), +(432,540,cs), +(432,657,o), +(352,729,o), +(228,729,cs), +(104,729,o), +(22,660,o), +(22,540,cs), +(22,424,o), +(101,351,o), +(226,351,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,471,o), +(174,482,o), +(174,540,cs), +(174,599,o), +(198,610,o), +(228,610,cs), +(255,610,o), +(281,599,o), +(281,540,cs), +(281,482,o), +(257,471,o), +(227,471,cs) +); +}, +{ +closed = 1; +nodes = ( +(875,-5,o), +(956,65,o), +(956,184,cs), +(956,302,o), +(876,373,o), +(753,373,cs), +(630,373,o), +(547,305,o), +(547,184,cs), +(547,68,o), +(626,-5,o), +(751,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(723,116,o), +(698,126,o), +(698,184,cs), +(698,244,o), +(723,254,o), +(753,254,cs), +(780,254,o), +(806,243,o), +(806,184,cs), +(806,126,o), +(781,116,o), +(751,116,cs) +); +}, +{ +closed = 1; +nodes = ( +(1307,-5,o), +(1388,65,o), +(1388,184,cs), +(1388,302,o), +(1308,373,o), +(1185,373,cs), +(1062,373,o), +(979,305,o), +(979,184,cs), +(979,68,o), +(1058,-5,o), +(1183,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(1155,116,o), +(1130,126,o), +(1130,184,cs), +(1130,244,o), +(1155,254,o), +(1185,254,cs), +(1212,254,o), +(1238,243,o), +(1238,184,cs), +(1238,126,o), +(1213,116,o), +(1183,116,cs) +); +} +); +width = 1410; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,0,l), +(439,729,l), +(405,729,l), +(124,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,324,o), +(229,399,o), +(229,527,cs), +(229,655,o), +(202,729,o), +(135,729,cs), +(67,729,o), +(40,655,o), +(40,527,cs), +(40,399,o), +(67,324,o), +(135,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(96,353,o), +(73,390,o), +(73,527,cs), +(73,663,o), +(96,701,o), +(135,701,cs), +(173,701,o), +(196,663,o), +(196,527,cs), +(196,390,o), +(173,353,o), +(135,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(496,-6,o), +(523,70,o), +(523,197,cs), +(523,324,o), +(496,399,o), +(429,399,cs), +(360,399,o), +(334,324,o), +(334,197,cs), +(334,71,o), +(360,-6,o), +(429,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,23,o), +(366,59,o), +(366,197,cs), +(366,335,o), +(390,372,o), +(429,372,cs), +(466,372,o), +(490,335,o), +(490,197,cs), +(490,59,o), +(466,23,o), +(429,23,cs) +); +}, +{ +closed = 1; +nodes = ( +(736,-6,o), +(763,70,o), +(763,197,cs), +(763,324,o), +(736,399,o), +(669,399,cs), +(600,399,o), +(574,324,o), +(574,197,cs), +(574,71,o), +(600,-6,o), +(669,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(630,23,o), +(606,59,o), +(606,197,cs), +(606,335,o), +(630,372,o), +(669,372,cs), +(706,372,o), +(730,335,o), +(730,197,cs), +(730,59,o), +(706,23,o), +(669,23,cs) +); +} +); +width = 803; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,447,o), +(130,477,o), +(130,540,cs), +(130,604,o), +(131,633,o), +(151,633,cs), +(170,633,o), +(171,611,o), +(171,540,cs), +(171,472,o), +(170,447,o), +(151,447,cs) +); +}, +{ +closed = 1; +nodes = ( +(550,90,o), +(549,120,o), +(549,183,cs), +(549,247,o), +(550,276,o), +(570,276,cs), +(589,276,o), +(590,254,o), +(590,183,cs), +(590,115,o), +(589,90,o), +(570,90,cs) +); +}, +{ +closed = 1; +nodes = ( +(850,90,o), +(849,120,o), +(849,183,cs), +(849,247,o), +(850,276,o), +(870,276,cs), +(889,276,o), +(890,254,o), +(890,183,cs), +(890,115,o), +(889,90,o), +(870,90,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,l), +(563,729,l), +(453,729,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,352,o), +(282,388,o), +(282,540,cs), +(282,692,o), +(223,729,o), +(142,729,cs), +(62,729,o), +(3,694,o), +(3,540,cs), +(3,387,o), +(62,352,o), +(142,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,447,o), +(121,477,o), +(121,540,cs), +(121,604,o), +(122,633,o), +(142,633,cs), +(161,633,o), +(162,611,o), +(162,540,cs), +(162,472,o), +(161,447,o), +(142,447,cs) +); +}, +{ +closed = 1; +nodes = ( +(642,-5,o), +(701,32,o), +(701,184,cs), +(701,336,o), +(642,372,o), +(561,372,cs), +(481,372,o), +(422,337,o), +(422,184,cs), +(422,30,o), +(481,-5,o), +(561,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(541,90,o), +(540,120,o), +(540,183,cs), +(540,247,o), +(541,276,o), +(561,276,cs), +(580,276,o), +(581,254,o), +(581,183,cs), +(581,115,o), +(580,90,o), +(561,90,cs) +); +}, +{ +closed = 1; +nodes = ( +(942,-5,o), +(1001,32,o), +(1001,184,cs), +(1001,336,o), +(942,372,o), +(861,372,cs), +(781,372,o), +(722,337,o), +(722,184,cs), +(722,30,o), +(781,-5,o), +(861,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(841,90,o), +(840,120,o), +(840,183,cs), +(840,247,o), +(841,276,o), +(861,276,cs), +(880,276,o), +(881,254,o), +(881,183,cs), +(881,115,o), +(880,90,o), +(861,90,cs) +); +} +); +width = 1004; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,0,l), +(650,729,l), +(608,729,l), +(147,0,l) +); +}, +{ +closed = 1; +nodes = ( +(265,324,o), +(321,395,o), +(321,527,cs), +(321,658,o), +(266,729,o), +(184,729,cs), +(101,729,o), +(45,659,o), +(45,527,cs), +(45,396,o), +(100,324,o), +(184,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,356,o), +(82,415,o), +(82,527,cs), +(82,638,o), +(119,697,o), +(184,697,cs), +(247,697,o), +(284,639,o), +(284,527,cs), +(284,415,o), +(247,356,o), +(184,356,cs) +); +}, +{ +closed = 1; +nodes = ( +(696,-5,o), +(752,66,o), +(752,197,cs), +(752,329,o), +(697,400,o), +(615,400,cs), +(531,400,o), +(476,329,o), +(476,198,cs), +(476,66,o), +(531,-5,o), +(615,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(550,27,o), +(513,85,o), +(513,197,cs), +(513,310,o), +(550,368,o), +(615,368,cs), +(677,368,o), +(714,310,o), +(714,197,cs), +(714,84,o), +(677,27,o), +(615,27,cs) +); +}, +{ +closed = 1; +nodes = ( +(1026,-5,o), +(1082,66,o), +(1082,197,cs), +(1082,329,o), +(1027,400,o), +(945,400,cs), +(861,400,o), +(806,329,o), +(806,198,cs), +(806,66,o), +(861,-5,o), +(945,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(880,27,o), +(843,85,o), +(843,197,cs), +(843,310,o), +(880,368,o), +(945,368,cs), +(1007,368,o), +(1044,310,o), +(1044,197,cs), +(1044,84,o), +(1007,27,o), +(945,27,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = percent; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = percent; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +4, +11 +); +stem = -2; +target = ( +3, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +5 +); +stem = -2; +target = ( +4, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +5, +8 +); +stem = -2; +target = ( +6, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +6, +8 +); +stem = -2; +target = ( +5, +2 +); +type = Stem; +} +); +}; +width = 1127; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,l), +(708,729,l), +(584,729,l), +(119,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,336,o), +(344,398,o), +(344,533,cs), +(344,667,o), +(279,729,o), +(184,729,cs), +(89,729,o), +(24,667,o), +(24,533,cs), +(24,398,o), +(89,336,o), +(184,336,cs) +); +}, +{ +closed = 1; +nodes = ( +(154,440,o), +(145,476,o), +(145,533,cs), +(145,589,o), +(154,625,o), +(184,625,cs), +(214,625,o), +(223,589,o), +(223,533,cs), +(223,476,o), +(214,440,o), +(184,440,cs) +); +}, +{ +closed = 1; +nodes = ( +(738,-10,o), +(803,52,o), +(803,187,cs), +(803,321,o), +(738,383,o), +(643,383,cs), +(548,383,o), +(483,321,o), +(483,187,cs), +(483,52,o), +(548,-10,o), +(643,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(613,94,o), +(604,130,o), +(604,187,cs), +(604,243,o), +(613,279,o), +(643,279,cs), +(673,279,o), +(682,243,o), +(682,187,cs), +(682,130,o), +(673,94,o), +(643,94,cs) +); +}, +{ +closed = 1; +nodes = ( +(1088,-10,o), +(1153,52,o), +(1153,187,cs), +(1153,321,o), +(1088,383,o), +(993,383,cs), +(898,383,o), +(833,321,o), +(833,187,cs), +(833,52,o), +(898,-10,o), +(993,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(963,94,o), +(954,130,o), +(954,187,cs), +(954,243,o), +(963,279,o), +(993,279,cs), +(1023,279,o), +(1032,243,o), +(1032,187,cs), +(1032,130,o), +(1023,94,o), +(993,94,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = percent; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = percent; +}; +width = 1177; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,0,l), +(759,729,l), +(718,729,l), +(189,0,l) +); +}, +{ +closed = 1; +nodes = ( +(328,323,o), +(399,393,o), +(399,526,cs), +(399,659,o), +(327,729,o), +(223,729,cs), +(118,729,o), +(46,659,o), +(46,526,cs), +(46,392,o), +(119,323,o), +(224,323,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,353,o), +(82,415,o), +(82,526,cs), +(82,637,o), +(134,699,o), +(223,699,cs), +(313,699,o), +(364,637,o), +(364,526,cs), +(364,415,o), +(312,353,o), +(223,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(820,-10,o), +(891,60,o), +(891,193,cs), +(891,326,o), +(819,396,o), +(715,396,cs), +(610,396,o), +(538,326,o), +(538,193,cs), +(538,59,o), +(611,-10,o), +(716,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(625,20,o), +(574,82,o), +(574,193,cs), +(574,304,o), +(626,366,o), +(715,366,cs), +(805,366,o), +(856,304,o), +(856,193,cs), +(856,82,o), +(804,20,o), +(715,20,cs) +); +}, +{ +closed = 1; +nodes = ( +(1220,-10,o), +(1291,60,o), +(1291,193,cs), +(1291,326,o), +(1219,396,o), +(1115,396,cs), +(1010,396,o), +(938,326,o), +(938,193,cs), +(938,59,o), +(1011,-10,o), +(1116,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(1025,20,o), +(974,82,o), +(974,193,cs), +(974,304,o), +(1026,366,o), +(1115,366,cs), +(1205,366,o), +(1256,304,o), +(1256,193,cs), +(1256,82,o), +(1204,20,o), +(1115,20,cs) +); +} +); +width = 1337; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,0,l), +(824,729,l), +(664,729,l), +(134,0,l) +); +}, +{ +closed = 1; +nodes = ( +(341,351,o), +(422,421,o), +(422,540,cs), +(422,657,o), +(342,729,o), +(218,729,cs), +(94,729,o), +(12,660,o), +(12,540,cs), +(12,424,o), +(91,351,o), +(216,351,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,471,o), +(164,482,o), +(164,540,cs), +(164,599,o), +(188,610,o), +(218,610,cs), +(245,610,o), +(271,599,o), +(271,540,cs), +(271,482,o), +(247,471,o), +(217,471,cs) +); +}, +{ +closed = 1; +nodes = ( +(865,-5,o), +(946,65,o), +(946,184,cs), +(946,302,o), +(866,373,o), +(743,373,cs), +(620,373,o), +(537,305,o), +(537,184,cs), +(537,68,o), +(616,-5,o), +(741,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(713,116,o), +(688,126,o), +(688,184,cs), +(688,244,o), +(713,254,o), +(743,254,cs), +(770,254,o), +(796,243,o), +(796,184,cs), +(796,126,o), +(771,116,o), +(741,116,cs) +); +}, +{ +closed = 1; +nodes = ( +(1297,-5,o), +(1378,65,o), +(1378,184,cs), +(1378,302,o), +(1298,373,o), +(1175,373,cs), +(1052,373,o), +(969,305,o), +(969,184,cs), +(969,68,o), +(1048,-5,o), +(1173,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(1145,116,o), +(1120,126,o), +(1120,184,cs), +(1120,244,o), +(1145,254,o), +(1175,254,cs), +(1202,254,o), +(1228,243,o), +(1228,184,cs), +(1228,126,o), +(1203,116,o), +(1173,116,cs) +); +} +); +width = 1390; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(207,0,l), +(659,729,l), +(619,729,l), +(166,0,l) +); +}, +{ +closed = 1; +nodes = ( +(282,324,o), +(338,395,o), +(338,527,cs), +(338,658,o), +(283,729,o), +(203,729,cs), +(122,729,o), +(66,659,o), +(66,527,cs), +(66,396,o), +(121,324,o), +(203,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(140,356,o), +(103,415,o), +(103,527,cs), +(103,638,o), +(140,697,o), +(203,697,cs), +(264,697,o), +(301,639,o), +(301,527,cs), +(301,415,o), +(264,356,o), +(203,356,cs) +); +}, +{ +closed = 1; +nodes = ( +(705,-5,o), +(759,66,o), +(759,197,cs), +(759,329,o), +(706,400,o), +(626,400,cs), +(543,400,o), +(489,329,o), +(489,198,cs), +(489,66,o), +(543,-5,o), +(626,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(561,27,o), +(526,85,o), +(526,197,cs), +(526,310,o), +(561,368,o), +(626,368,cs), +(686,368,o), +(723,310,o), +(723,197,cs), +(723,84,o), +(686,27,o), +(626,27,cs) +); +}, +{ +closed = 1; +nodes = ( +(1029,-5,o), +(1083,66,o), +(1083,197,cs), +(1083,329,o), +(1030,400,o), +(948,400,cs), +(866,400,o), +(813,329,o), +(813,198,cs), +(813,66,o), +(866,-5,o), +(948,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(885,27,o), +(848,85,o), +(848,197,cs), +(848,310,o), +(885,368,o), +(948,368,cs), +(1010,368,o), +(1045,310,o), +(1045,197,cs), +(1045,84,o), +(1010,27,o), +(948,27,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = percent; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = percent; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +4, +11 +); +stem = -2; +target = ( +3, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +5 +); +stem = -2; +target = ( +4, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +5, +8 +); +stem = -2; +target = ( +6, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +6, +8 +); +stem = -2; +target = ( +5, +2 +); +type = Stem; +} +); +}; +width = 1148; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(715,729,l), +(592,729,l), +(137,0,l) +); +}, +{ +closed = 1; +nodes = ( +(294,336,o), +(357,399,o), +(357,533,cs), +(357,666,o), +(294,729,o), +(201,729,cs), +(108,729,o), +(44,667,o), +(44,533,cs), +(44,398,o), +(108,336,o), +(201,336,cs) +); +}, +{ +closed = 1; +nodes = ( +(172,440,o), +(163,475,o), +(163,533,cs), +(163,590,o), +(172,625,o), +(201,625,cs), +(230,625,o), +(239,590,o), +(239,533,cs), +(239,475,o), +(230,440,o), +(201,440,cs) +); +}, +{ +closed = 1; +nodes = ( +(743,-10,o), +(808,52,o), +(808,187,cs), +(808,321,o), +(743,383,o), +(650,383,cs), +(558,383,o), +(494,321,o), +(494,187,cs), +(494,52,o), +(558,-10,o), +(650,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(622,94,o), +(614,132,o), +(614,187,cs), +(614,241,o), +(622,279,o), +(650,279,cs), +(680,279,o), +(688,241,o), +(688,187,cs), +(688,132,o), +(680,94,o), +(650,94,cs) +); +}, +{ +closed = 1; +nodes = ( +(1087,-10,o), +(1151,52,o), +(1151,187,cs), +(1151,321,o), +(1087,383,o), +(994,383,cs), +(901,383,o), +(838,320,o), +(838,187,cs), +(838,53,o), +(901,-10,o), +(994,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(965,94,o), +(956,129,o), +(956,187,cs), +(956,244,o), +(965,279,o), +(994,279,cs), +(1023,279,o), +(1032,244,o), +(1032,187,cs), +(1032,129,o), +(1023,94,o), +(994,94,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = percent; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = percent; +}; +width = 1194; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(126,0,l), +(558,729,l), +(522,729,l), +(92,0,l) +); +}, +{ +closed = 1; +nodes = ( +(235,321,o), +(276,389,o), +(303,513,cs), +(327,630,o), +(326,725,o), +(246,725,cs), +(187,725,o), +(145,660,o), +(119,535,cs), +(88,389,o), +(107,321,o), +(176,321,cs) +); +}, +{ +closed = 1; +nodes = ( +(120,353,o), +(135,451,o), +(151,528,cs), +(177,652,o), +(203,696,o), +(243,696,cs), +(294,696,o), +(295,630,o), +(271,518,cs), +(241,376,o), +(211,346,o), +(171,349,cs) +); +}, +{ +closed = 1; +nodes = ( +(463,-5,o), +(502,67,o), +(528,189,cs), +(555,317,o), +(545,399,o), +(471,399,cs), +(408,399,o), +(368,327,o), +(343,205,cs), +(318,88,o), +(322,-5,o), +(401,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,28,o), +(359,123,o), +(376,204,cs), +(402,331,o), +(430,371,o), +(468,371,cs), +(520,371,o), +(519,302,o), +(495,189,cs), +(466,50,o), +(437,21,o), +(395,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(695,-5,o), +(734,67,o), +(761,189,cs), +(788,317,o), +(778,399,o), +(703,399,cs), +(641,399,o), +(601,327,o), +(576,205,cs), +(551,88,o), +(555,-5,o), +(634,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(578,28,o), +(592,123,o), +(609,204,cs), +(635,331,o), +(663,371,o), +(701,371,cs), +(753,371,o), +(752,302,o), +(728,189,cs), +(698,50,o), +(669,21,o), +(628,24,cs) +); +} +); +width = 837; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(666,729,l), +(550,729,l), +(88,0,l) +); +}, +{ +closed = 1; +nodes = ( +(258,352,o), +(312,388,o), +(342,533,cs), +(366,651,o), +(335,729,o), +(227,729,cs), +(148,729,o), +(96,680,o), +(70,552,cs), +(45,432,o), +(73,352,o), +(184,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(167,449,o), +(170,466,o), +(185,540,cs), +(200,613,o), +(207,632,o), +(222,632,cs), +(245,632,o), +(242,615,o), +(227,541,cs), +(212,468,o), +(205,449,o), +(190,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(600,-5,o), +(654,31,o), +(684,176,cs), +(708,294,o), +(677,372,o), +(569,372,cs), +(490,372,o), +(438,323,o), +(412,195,cs), +(387,75,o), +(415,-5,o), +(526,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(509,92,o), +(512,109,o), +(527,183,cs), +(542,256,o), +(549,275,o), +(564,275,cs), +(587,275,o), +(584,258,o), +(569,184,cs), +(554,111,o), +(547,92,o), +(532,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(900,-5,o), +(954,31,o), +(984,176,cs), +(1008,294,o), +(977,372,o), +(869,372,cs), +(790,372,o), +(738,323,o), +(712,195,cs), +(687,75,o), +(715,-5,o), +(826,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(805,92,o), +(815,123,o), +(827,183,cs), +(841,252,o), +(847,275,o), +(865,275,cs), +(890,275,o), +(880,239,o), +(869,186,cs), +(854,111,o), +(847,92,o), +(832,92,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(666,729,l), +(550,729,l), +(88,0,l) +); +}, +{ +closed = 1; +nodes = ( +(258,352,o), +(312,388,o), +(342,533,cs), +(366,651,o), +(335,729,o), +(227,729,cs), +(148,729,o), +(96,680,o), +(70,552,cs), +(45,432,o), +(73,352,o), +(184,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(167,449,o), +(170,466,o), +(185,540,cs), +(200,613,o), +(207,632,o), +(222,632,cs), +(245,632,o), +(242,615,o), +(227,541,cs), +(212,468,o), +(205,449,o), +(190,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(600,-5,o), +(654,31,o), +(684,176,cs), +(708,294,o), +(677,372,o), +(569,372,cs), +(490,372,o), +(438,323,o), +(412,195,cs), +(387,75,o), +(415,-5,o), +(526,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(509,92,o), +(512,109,o), +(527,183,cs), +(542,256,o), +(549,275,o), +(564,275,cs), +(587,275,o), +(584,258,o), +(569,184,cs), +(554,111,o), +(547,92,o), +(532,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(900,-5,o), +(954,31,o), +(984,176,cs), +(1008,294,o), +(977,372,o), +(869,372,cs), +(790,372,o), +(738,323,o), +(712,195,cs), +(687,75,o), +(715,-5,o), +(826,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(809,92,o), +(812,109,o), +(827,183,cs), +(842,256,o), +(849,275,o), +(864,275,cs), +(887,275,o), +(884,258,o), +(869,184,cs), +(854,111,o), +(847,92,o), +(832,92,cs) +); +} +); +width = 1016; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(126,0,l), +(734,729,l), +(689,729,l), +(81,0,l) +); +}, +{ +closed = 1; +nodes = ( +(321,360,o), +(385,453,o), +(390,593,cs), +(394,673,o), +(350,729,o), +(280,729,cs), +(187,729,o), +(123,636,o), +(118,496,cs), +(114,416,o), +(158,360,o), +(228,360,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,392,o), +(151,432,o), +(154,494,cs), +(159,617,o), +(209,697,o), +(280,697,cs), +(328,697,o), +(357,657,o), +(354,595,cs), +(349,472,o), +(299,392,o), +(228,392,cs) +); +}, +{ +closed = 1; +nodes = ( +(622,-10,o), +(686,83,o), +(691,223,cs), +(695,303,o), +(651,359,o), +(581,359,cs), +(488,359,o), +(424,266,o), +(419,126,cs), +(415,46,o), +(459,-10,o), +(529,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(481,22,o), +(452,62,o), +(455,124,cs), +(460,247,o), +(510,327,o), +(581,327,cs), +(629,327,o), +(658,287,o), +(655,225,cs), +(650,102,o), +(600,22,o), +(529,22,cs) +); +}, +{ +closed = 1; +nodes = ( +(924,-10,o), +(988,83,o), +(993,223,cs), +(997,303,o), +(953,359,o), +(883,359,cs), +(790,359,o), +(726,266,o), +(721,126,cs), +(717,46,o), +(761,-10,o), +(831,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(783,22,o), +(754,62,o), +(757,124,cs), +(762,247,o), +(812,327,o), +(883,327,cs), +(931,327,o), +(960,287,o), +(957,225,cs), +(952,102,o), +(902,22,o), +(831,22,cs) +); +} +); +width = 1069; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(842,729,l), +(708,729,l), +(95,0,l) +); +}, +{ +closed = 1; +nodes = ( +(357,333,o), +(428,434,o), +(428,569,cs), +(428,666,o), +(377,729,o), +(285,729,cs), +(169,729,o), +(98,628,o), +(98,493,cs), +(98,396,o), +(149,333,o), +(241,333,cs) +); +}, +{ +closed = 1; +nodes = ( +(214,437,o), +(214,484,o), +(222,538,cs), +(231,590,o), +(246,625,o), +(276,625,cs), +(312,625,o), +(312,578,o), +(304,524,cs), +(295,472,o), +(280,437,o), +(250,437,cs) +); +}, +{ +closed = 1; +nodes = ( +(765,-9,o), +(836,92,o), +(836,227,cs), +(836,324,o), +(785,387,o), +(693,387,cs), +(577,387,o), +(506,286,o), +(506,151,cs), +(506,54,o), +(557,-9,o), +(649,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(622,95,o), +(622,142,o), +(630,196,cs), +(639,248,o), +(654,283,o), +(684,283,cs), +(720,283,o), +(720,236,o), +(712,182,cs), +(703,130,o), +(688,95,o), +(658,95,cs) +); +}, +{ +closed = 1; +nodes = ( +(1114,-9,o), +(1185,92,o), +(1185,227,cs), +(1185,324,o), +(1134,387,o), +(1042,387,cs), +(926,387,o), +(855,286,o), +(855,151,cs), +(855,54,o), +(906,-9,o), +(998,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(971,95,o), +(971,142,o), +(979,196,cs), +(988,248,o), +(1003,283,o), +(1033,283,cs), +(1069,283,o), +(1069,236,o), +(1061,182,cs), +(1052,130,o), +(1037,95,o), +(1007,95,cs) +); +} +); +width = 1247; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(873,729,l), +(829,729,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(385,323,o), +(464,419,o), +(464,558,cs), +(464,665,o), +(405,729,o), +(302,729,cs), +(184,729,o), +(105,633,o), +(105,494,cs), +(105,387,o), +(164,323,o), +(267,323,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,353,o), +(139,405,o), +(139,494,cs), +(139,618,o), +(205,699,o), +(304,699,cs), +(385,699,o), +(430,647,o), +(430,558,cs), +(430,434,o), +(364,353,o), +(265,353,cs) +); +}, +{ +closed = 1; +nodes = ( +(821,-9,o), +(900,87,o), +(900,226,cs), +(900,333,o), +(841,397,o), +(738,397,cs), +(620,397,o), +(541,301,o), +(541,162,cs), +(541,55,o), +(600,-9,o), +(703,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(620,21,o), +(575,73,o), +(575,162,cs), +(575,286,o), +(641,367,o), +(740,367,cs), +(821,367,o), +(866,315,o), +(866,226,cs), +(866,102,o), +(800,21,o), +(701,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(1221,-9,o), +(1300,87,o), +(1300,226,cs), +(1300,333,o), +(1241,397,o), +(1138,397,cs), +(1020,397,o), +(941,301,o), +(941,162,cs), +(941,55,o), +(1000,-9,o), +(1103,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(1020,21,o), +(975,73,o), +(975,162,cs), +(975,286,o), +(1041,367,o), +(1140,367,cs), +(1221,367,o), +(1266,315,o), +(1266,226,cs), +(1266,102,o), +(1200,21,o), +(1101,21,cs) +); +} +); +width = 1363; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,0,l), +(970,729,l), +(796,729,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(415,343,o), +(503,423,o), +(503,545,cs), +(503,652,o), +(429,729,o), +(298,729,cs), +(168,729,o), +(80,649,o), +(80,527,cs), +(80,420,o), +(154,343,o), +(284,343,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,466,o), +(240,483,o), +(240,518,cs), +(240,576,o), +(258,606,o), +(297,606,cs), +(324,606,o), +(343,589,o), +(343,554,cs), +(343,496,o), +(325,466,o), +(286,466,cs) +); +}, +{ +closed = 1; +nodes = ( +(931,-8,o), +(1019,72,o), +(1019,194,cs), +(1019,301,o), +(945,378,o), +(814,378,cs), +(684,378,o), +(596,298,o), +(596,176,cs), +(596,69,o), +(670,-8,o), +(800,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(775,115,o), +(756,132,o), +(756,167,cs), +(756,225,o), +(774,255,o), +(813,255,cs), +(840,255,o), +(859,238,o), +(859,203,cs), +(859,145,o), +(841,115,o), +(802,115,cs) +); +}, +{ +closed = 1; +nodes = ( +(1377,-8,o), +(1465,72,o), +(1465,194,cs), +(1465,301,o), +(1391,378,o), +(1260,378,cs), +(1130,378,o), +(1042,298,o), +(1042,176,cs), +(1042,69,o), +(1116,-8,o), +(1246,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(1221,115,o), +(1202,132,o), +(1202,167,cs), +(1202,225,o), +(1220,255,o), +(1259,255,cs), +(1286,255,o), +(1305,238,o), +(1305,203,cs), +(1305,145,o), +(1287,115,o), +(1248,115,cs) +); +} +); +width = 1508; +} +); +metricLeft = percent; +metricRight = percent; +unicode = 8240; +userData = { +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/peseta.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/peseta.glyph new file mode 100644 index 00000000..b9570014 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/peseta.glyph @@ -0,0 +1,1808 @@ +{ +color = 0; +export = 0; +glyphname = peseta; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(109,0,l), +(109,711,l), +(96,701,l), +(173,701,ls), +(256,701,o), +(309,651,o), +(309,522,cs), +(309,391,o), +(255,343,o), +(173,343,cs), +(102,343,l), +(102,315,l), +(175,315,ls), +(293,315,o), +(342,398,o), +(342,522,cs), +(342,646,o), +(292,729,o), +(175,729,cs), +(78,729,l), +(78,0,l) +); +}, +{ +closed = 1; +nodes = ( +(538,0,l), +(538,29,l), +(509,29,ls), +(490,29,o), +(482,38,o), +(482,54,cs), +(482,492,l), +(538,492,l), +(538,516,l), +(482,516,l), +(482,700,l), +(454,697,l), +(454,516,l), +(409,516,l), +(409,492,l), +(454,492,l), +(454,48,ls), +(454,10,o), +(477,0,o), +(504,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(772,-10,o), +(816,35,o), +(816,117,cs), +(816,207,o), +(773,242,o), +(719,279,cs), +(673,310,o), +(633,340,o), +(633,409,cs), +(633,461,o), +(650,496,o), +(702,496,cs), +(761,496,o), +(780,449,o), +(782,366,c), +(810,366,l), +(811,488,o), +(766,525,o), +(703,525,cs), +(646,525,o), +(604,493,o), +(604,410,cs), +(604,329,o), +(643,293,o), +(695,257,cs), +(744,223,o), +(787,192,o), +(787,118,cs), +(787,59,o), +(762,19,o), +(708,19,cs), +(640,19,o), +(618,77,o), +(618,160,c), +(590,160,l), +(590,38,o), +(639,-10,o), +(708,-10,cs) +); +} +); +width = 855; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(213,0,l), +(213,594,l), +(189,572,l), +(229,572,ls), +(266,572,o), +(284,550,o), +(284,473,cs), +(284,408,o), +(275,369,o), +(229,369,cs), +(197,369,l), +(197,212,l), +(235,212,ls), +(388,212,o), +(465,296,o), +(465,471,cs), +(465,644,o), +(388,729,o), +(235,729,cs), +(34,729,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(758,0,l), +(758,132,l), +(734,132,ls), +(716,132,o), +(713,137,o), +(713,160,cs), +(713,401,l), +(758,398,l), +(758,541,l), +(713,539,l), +(713,683,l), +(534,668,l), +(534,539,l), +(496,541,l), +(496,398,l), +(534,401,l), +(534,124,ls), +(534,40,o), +(572,0,o), +(661,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1109,-10,o), +(1173,59,o), +(1173,162,cs), +(1173,264,o), +(1104,307,o), +(1028,340,cs), +(981,360,o), +(950,374,o), +(950,406,cs), +(950,426,o), +(956,443,o), +(977,443,cs), +(1000,443,o), +(1009,430,o), +(1012,379,c), +(1167,379,l), +(1167,491,o), +(1094,551,o), +(978,551,cs), +(847,551,o), +(782,486,o), +(782,386,cs), +(782,294,o), +(840,249,o), +(914,215,cs), +(988,181,o), +(999,168,o), +(999,135,cs), +(999,115,o), +(992,101,o), +(971,101,cs), +(947,101,o), +(935,114,o), +(935,168,c), +(775,168,l), +(777,61,o), +(840,-10,o), +(973,-10,cs) +); +} +); +width = 1191; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,0,l), +(123,710,l), +(105,692,l), +(375,692,ls), +(504,692,o), +(572,623,o), +(572,509,cs), +(572,398,o), +(505,325,o), +(375,325,cs), +(114,325,l), +(114,289,l), +(377,289,ls), +(524,289,o), +(612,375,o), +(612,509,cs), +(612,649,o), +(524,729,o), +(378,729,cs), +(85,729,l), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(969,0,l), +(969,36,l), +(895,36,ls), +(850,36,o), +(824,48,o), +(824,95,cs), +(824,485,l), +(969,485,l), +(969,517,l), +(824,517,l), +(824,690,l), +(787,681,l), +(787,517,l), +(669,517,l), +(669,485,l), +(787,485,l), +(787,89,ls), +(787,28,o), +(822,0,o), +(889,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1416,-10,o), +(1493,48,o), +(1493,135,cs), +(1493,243,o), +(1418,266,o), +(1260,283,cs), +(1129,297,o), +(1071,317,o), +(1071,387,cs), +(1071,461,o), +(1150,494,o), +(1256,494,cs), +(1360,494,o), +(1436,456,o), +(1443,367,c), +(1480,367,l), +(1473,464,o), +(1401,527,o), +(1256,527,cs), +(1124,527,o), +(1034,475,o), +(1034,386,cs), +(1034,294,o), +(1105,263,o), +(1256,248,cs), +(1405,232,o), +(1455,214,o), +(1455,132,cs), +(1455,54,o), +(1376,23,o), +(1260,23,cs), +(1132,23,o), +(1052,76,o), +(1052,160,c), +(1015,160,l), +(1015,58,o), +(1108,-10,o), +(1260,-10,cs) +); +} +); +width = 1537; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,0,l), +(284,599,l), +(239,554,l), +(377,554,ls), +(424,554,o), +(461,538,o), +(461,476,cs), +(461,425,o), +(438,397,o), +(377,397,cs), +(268,397,l), +(268,239,l), +(402,239,ls), +(575,239,o), +(691,308,o), +(691,484,cs), +(691,631,o), +(610,729,o), +(402,729,cs), +(55,729,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1182,0,l), +(1182,186,l), +(1094,186,ls), +(1065,186,o), +(1053,195,o), +(1053,223,cs), +(1053,379,l), +(1182,379,l), +(1182,544,l), +(1053,544,l), +(1053,710,l), +(836,669,l), +(836,544,l), +(743,544,l), +(743,379,l), +(836,379,l), +(836,150,ls), +(836,48,o), +(902,0,o), +(1000,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1744,-10,o), +(1841,62,o), +(1841,172,cs), +(1841,292,o), +(1774,330,o), +(1571,347,cs), +(1489,354,o), +(1460,358,o), +(1460,387,cs), +(1460,414,o), +(1490,425,o), +(1538,425,cs), +(1581,425,o), +(1609,409,o), +(1615,377,c), +(1823,377,l), +(1810,493,o), +(1699,554,o), +(1539,554,cs), +(1350,554,o), +(1246,479,o), +(1246,368,cs), +(1246,256,o), +(1319,218,o), +(1523,199,cs), +(1602,193,o), +(1624,189,o), +(1624,158,cs), +(1624,133,o), +(1597,119,o), +(1542,119,cs), +(1479,119,o), +(1450,136,o), +(1444,174,c), +(1228,174,l), +(1238,60,o), +(1339,-10,o), +(1535,-10,cs) +); +} +); +width = 1856; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,0,l), +(89,711,l), +(76,701,l), +(153,701,ls), +(236,701,o), +(289,651,o), +(289,522,cs), +(289,391,o), +(235,343,o), +(153,343,cs), +(82,343,l), +(82,315,l), +(155,315,ls), +(273,315,o), +(322,398,o), +(322,522,cs), +(322,646,o), +(272,729,o), +(155,729,cs), +(58,729,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(518,0,l), +(518,29,l), +(489,29,ls), +(470,29,o), +(462,38,o), +(462,54,cs), +(462,492,l), +(518,492,l), +(518,516,l), +(462,516,l), +(462,700,l), +(434,697,l), +(434,516,l), +(389,516,l), +(389,492,l), +(434,492,l), +(434,48,ls), +(434,10,o), +(457,0,o), +(484,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(752,-10,o), +(796,35,o), +(796,117,cs), +(796,207,o), +(753,242,o), +(699,279,cs), +(653,310,o), +(613,340,o), +(613,409,cs), +(613,461,o), +(630,496,o), +(682,496,cs), +(741,496,o), +(760,449,o), +(762,366,c), +(790,366,l), +(791,488,o), +(746,525,o), +(683,525,cs), +(626,525,o), +(584,493,o), +(584,410,cs), +(584,329,o), +(623,293,o), +(675,257,cs), +(724,223,o), +(767,192,o), +(767,118,cs), +(767,59,o), +(742,19,o), +(688,19,cs), +(620,19,o), +(598,77,o), +(598,160,c), +(570,160,l), +(570,38,o), +(619,-10,o), +(688,-10,cs) +); +} +); +width = 815; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,0,l), +(203,594,l), +(179,572,l), +(219,572,ls), +(256,572,o), +(274,550,o), +(274,473,cs), +(274,408,o), +(265,369,o), +(219,369,cs), +(187,369,l), +(187,212,l), +(225,212,ls), +(378,212,o), +(455,296,o), +(455,471,cs), +(455,644,o), +(378,729,o), +(225,729,cs), +(24,729,l), +(24,0,l) +); +}, +{ +closed = 1; +nodes = ( +(748,0,l), +(748,132,l), +(724,132,ls), +(706,132,o), +(703,137,o), +(703,160,cs), +(703,401,l), +(748,398,l), +(748,541,l), +(703,539,l), +(703,683,l), +(524,668,l), +(524,539,l), +(486,541,l), +(486,398,l), +(524,401,l), +(524,124,ls), +(524,40,o), +(562,0,o), +(651,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1099,-10,o), +(1163,59,o), +(1163,162,cs), +(1163,264,o), +(1094,307,o), +(1018,340,cs), +(971,360,o), +(940,374,o), +(940,406,cs), +(940,426,o), +(946,443,o), +(967,443,cs), +(990,443,o), +(999,430,o), +(1002,379,c), +(1157,379,l), +(1157,491,o), +(1084,551,o), +(968,551,cs), +(837,551,o), +(772,486,o), +(772,386,cs), +(772,294,o), +(830,249,o), +(904,215,cs), +(978,181,o), +(989,168,o), +(989,135,cs), +(989,115,o), +(982,101,o), +(961,101,cs), +(937,101,o), +(925,114,o), +(925,168,c), +(765,168,l), +(767,61,o), +(830,-10,o), +(963,-10,cs) +); +} +); +width = 1171; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,l), +(125,704,l), +(111,692,l), +(331,692,ls), +(451,692,o), +(519,623,o), +(519,509,cs), +(519,398,o), +(452,325,o), +(331,325,cs), +(116,325,l), +(116,289,l), +(333,289,ls), +(471,289,o), +(559,375,o), +(559,509,cs), +(559,649,o), +(472,729,o), +(334,729,cs), +(87,729,l), +(87,0,l) +); +}, +{ +closed = 1; +nodes = ( +(900,0,l), +(900,34,l), +(820,34,ls), +(779,34,o), +(769,44,o), +(769,85,cs), +(769,485,l), +(900,485,l), +(900,517,l), +(769,517,l), +(769,690,l), +(733,681,l), +(733,517,l), +(626,517,l), +(626,485,l), +(733,485,l), +(733,79,ls), +(733,23,o), +(756,0,o), +(812,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1293,-10,o), +(1370,42,o), +(1370,135,cs), +(1370,239,o), +(1293,265,o), +(1185,281,cs), +(1078,296,o), +(1028,320,o), +(1028,389,cs), +(1028,452,o), +(1081,494,o), +(1175,494,cs), +(1261,494,o), +(1319,460,o), +(1324,373,c), +(1360,373,l), +(1357,469,o), +(1290,527,o), +(1174,527,cs), +(1064,527,o), +(991,470,o), +(991,385,cs), +(991,293,o), +(1056,264,o), +(1179,246,cs), +(1287,230,o), +(1332,207,o), +(1332,132,cs), +(1332,62,o), +(1277,23,o), +(1178,23,cs), +(1083,23,o), +(1019,63,o), +(1013,149,c), +(976,149,l), +(981,53,o), +(1053,-10,o), +(1177,-10,cs) +); +} +); +width = 1416; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,l), +(249,583,l), +(227,559,l), +(321,559,ls), +(373,559,o), +(408,532,o), +(408,474,cs), +(408,422,o), +(380,387,o), +(321,387,cs), +(233,387,l), +(233,232,l), +(357,232,ls), +(522,232,o), +(614,334,o), +(614,482,cs), +(614,639,o), +(512,729,o), +(357,729,cs), +(46,729,l), +(46,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1047,0,l), +(1047,153,l), +(987,153,ls), +(964,153,o), +(948,160,o), +(948,188,cs), +(948,391,l), +(1047,391,l), +(1047,544,l), +(948,544,l), +(948,699,l), +(757,683,l), +(757,544,l), +(666,544,l), +(666,391,l), +(757,391,l), +(757,152,ls), +(757,61,o), +(788,0,o), +(918,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1499,-10,o), +(1600,56,o), +(1600,174,cs), +(1600,279,o), +(1545,326,o), +(1403,344,cs), +(1328,354,o), +(1302,360,o), +(1302,388,cs), +(1302,411,o), +(1321,422,o), +(1349,422,cs), +(1381,422,o), +(1400,409,o), +(1401,383,c), +(1589,383,l), +(1583,485,o), +(1490,554,o), +(1355,554,cs), +(1209,554,o), +(1111,481,o), +(1111,371,cs), +(1111,262,o), +(1177,220,o), +(1323,199,cs), +(1385,190,o), +(1406,186,o), +(1406,157,cs), +(1406,136,o), +(1389,122,o), +(1352,122,cs), +(1315,122,o), +(1289,136,o), +(1286,171,c), +(1098,171,l), +(1099,63,o), +(1196,-10,o), +(1347,-10,cs) +); +} +); +width = 1613; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(113,710,l), +(95,692,l), +(365,692,ls), +(494,692,o), +(562,623,o), +(562,509,cs), +(562,398,o), +(495,325,o), +(365,325,cs), +(104,325,l), +(104,289,l), +(367,289,ls), +(514,289,o), +(602,375,o), +(602,509,cs), +(602,649,o), +(514,729,o), +(368,729,cs), +(75,729,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(959,0,l), +(959,36,l), +(885,36,ls), +(840,36,o), +(814,48,o), +(814,95,cs), +(814,485,l), +(959,485,l), +(959,517,l), +(814,517,l), +(814,690,l), +(777,681,l), +(777,517,l), +(659,517,l), +(659,485,l), +(777,485,l), +(777,89,ls), +(777,28,o), +(812,0,o), +(879,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1406,-10,o), +(1483,48,o), +(1483,135,cs), +(1483,243,o), +(1408,266,o), +(1250,283,cs), +(1119,297,o), +(1061,317,o), +(1061,387,cs), +(1061,461,o), +(1140,494,o), +(1246,494,cs), +(1350,494,o), +(1426,456,o), +(1433,367,c), +(1470,367,l), +(1463,464,o), +(1391,527,o), +(1246,527,cs), +(1114,527,o), +(1024,475,o), +(1024,386,cs), +(1024,294,o), +(1095,263,o), +(1246,248,cs), +(1395,232,o), +(1445,214,o), +(1445,132,cs), +(1445,54,o), +(1366,23,o), +(1250,23,cs), +(1122,23,o), +(1042,76,o), +(1042,160,c), +(1005,160,l), +(1005,58,o), +(1098,-10,o), +(1250,-10,cs) +); +} +); +width = 1517; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,0,l), +(274,599,l), +(229,554,l), +(367,554,ls), +(414,554,o), +(451,538,o), +(451,476,cs), +(451,425,o), +(428,397,o), +(367,397,cs), +(258,397,l), +(258,239,l), +(392,239,ls), +(565,239,o), +(681,308,o), +(681,484,cs), +(681,631,o), +(600,729,o), +(392,729,cs), +(45,729,l), +(45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1172,0,l), +(1172,186,l), +(1084,186,ls), +(1055,186,o), +(1043,195,o), +(1043,223,cs), +(1043,379,l), +(1172,379,l), +(1172,544,l), +(1043,544,l), +(1043,710,l), +(826,669,l), +(826,544,l), +(733,544,l), +(733,379,l), +(826,379,l), +(826,150,ls), +(826,48,o), +(892,0,o), +(990,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1734,-10,o), +(1831,62,o), +(1831,172,cs), +(1831,292,o), +(1764,330,o), +(1561,347,cs), +(1479,354,o), +(1450,358,o), +(1450,387,cs), +(1450,414,o), +(1480,425,o), +(1528,425,cs), +(1571,425,o), +(1599,409,o), +(1605,377,c), +(1813,377,l), +(1800,493,o), +(1689,554,o), +(1529,554,cs), +(1340,554,o), +(1236,479,o), +(1236,368,cs), +(1236,256,o), +(1309,218,o), +(1513,199,cs), +(1592,193,o), +(1614,189,o), +(1614,158,cs), +(1614,133,o), +(1587,119,o), +(1532,119,cs), +(1469,119,o), +(1440,136,o), +(1434,174,c), +(1218,174,l), +(1228,60,o), +(1329,-10,o), +(1525,-10,cs) +); +} +); +width = 1836; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(144,704,l), +(130,692,l), +(346,692,ls), +(462,692,o), +(530,623,o), +(530,509,cs), +(530,398,o), +(463,325,o), +(346,325,cs), +(135,325,l), +(135,289,l), +(347,289,ls), +(482,289,o), +(568,375,o), +(568,509,cs), +(568,649,o), +(483,729,o), +(348,729,cs), +(106,729,l), +(106,0,l) +); +}, +{ +closed = 1; +nodes = ( +(903,0,l), +(903,34,l), +(825,34,ls), +(784,34,o), +(774,44,o), +(774,85,cs), +(774,485,l), +(903,485,l), +(903,517,l), +(774,517,l), +(774,690,l), +(739,681,l), +(739,517,l), +(635,517,l), +(635,485,l), +(739,485,l), +(739,79,ls), +(739,23,o), +(761,0,o), +(817,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1288,-10,o), +(1363,42,o), +(1363,135,cs), +(1363,239,o), +(1288,265,o), +(1182,281,cs), +(1077,296,o), +(1029,320,o), +(1029,389,cs), +(1029,452,o), +(1080,494,o), +(1172,494,cs), +(1256,494,o), +(1314,460,o), +(1319,373,c), +(1353,373,l), +(1350,469,o), +(1285,527,o), +(1171,527,cs), +(1063,527,o), +(992,470,o), +(992,385,cs), +(992,293,o), +(1055,264,o), +(1176,246,cs), +(1282,230,o), +(1326,207,o), +(1326,132,cs), +(1326,62,o), +(1272,23,o), +(1175,23,cs), +(1082,23,o), +(1020,63,o), +(1014,149,c), +(977,149,l), +(982,53,o), +(1052,-10,o), +(1174,-10,cs) +); +} +); +width = 1426; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(265,0,l), +(265,583,l), +(244,559,l), +(335,559,ls), +(385,559,o), +(419,532,o), +(419,474,cs), +(419,422,o), +(392,387,o), +(335,387,cs), +(249,387,l), +(249,232,l), +(370,232,ls), +(533,232,o), +(623,334,o), +(623,482,cs), +(623,639,o), +(523,729,o), +(370,729,cs), +(64,729,l), +(64,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1049,0,l), +(1049,153,l), +(990,153,ls), +(968,153,o), +(952,160,o), +(952,188,cs), +(952,391,l), +(1049,391,l), +(1049,544,l), +(952,544,l), +(952,699,l), +(763,683,l), +(763,544,l), +(674,544,l), +(674,391,l), +(763,391,l), +(763,152,ls), +(763,61,o), +(794,0,o), +(922,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1493,-10,o), +(1593,56,o), +(1593,174,cs), +(1593,279,o), +(1538,326,o), +(1401,344,cs), +(1326,354,o), +(1301,360,o), +(1301,388,cs), +(1301,411,o), +(1320,422,o), +(1345,422,cs), +(1377,422,o), +(1395,409,o), +(1396,383,c), +(1582,383,l), +(1576,485,o), +(1485,554,o), +(1352,554,cs), +(1209,554,o), +(1112,481,o), +(1112,371,cs), +(1112,262,o), +(1177,220,o), +(1320,199,cs), +(1381,190,o), +(1401,186,o), +(1401,157,cs), +(1401,136,o), +(1384,122,o), +(1348,122,cs), +(1313,122,o), +(1288,136,o), +(1285,171,c), +(1099,171,l), +(1100,63,o), +(1195,-10,o), +(1343,-10,cs) +); +} +); +width = 1622; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(203,711,l), +(169,701,l), +(254,701,ls), +(346,701,o), +(389,645,o), +(360,510,cs), +(333,382,o), +(272,343,o), +(190,343,cs), +(100,343,l), +(94,315,l), +(186,315,ls), +(306,315,o), +(367,392,o), +(392,505,cs), +(419,632,o), +(388,729,o), +(262,729,cs), +(177,729,l), +(25,0,l) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(465,30,l), +(440,30,ls), +(417,30,o), +(413,41,o), +(422,82,cs), +(507,492,l), +(563,492,l), +(567,516,l), +(512,516,l), +(551,700,l), +(522,697,l), +(484,516,l), +(440,516,l), +(435,492,l), +(479,492,l), +(391,70,ls), +(380,18,o), +(396,0,o), +(432,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(708,-10,o), +(759,39,o), +(763,142,cs), +(765,203,o), +(743,232,o), +(696,279,cs), +(668,307,o), +(635,341,o), +(637,392,cs), +(639,458,o), +(671,497,o), +(719,497,cs), +(766,497,o), +(795,472,o), +(778,366,c), +(805,366,l), +(825,467,o), +(800,526,o), +(724,526,cs), +(657,526,o), +(611,473,o), +(608,390,cs), +(606,342,o), +(626,301,o), +(673,258,cs), +(720,215,o), +(736,185,o), +(734,139,cs), +(731,62,o), +(697,18,o), +(642,18,cs), +(580,18,o), +(555,64,o), +(572,161,c), +(545,161,l), +(525,58,o), +(554,-10,o), +(639,-10,cs) +); +} +); +width = 828; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(156,0,l), +(280,595,l), +(254,572,l), +(288,572,ls), +(315,572,o), +(330,559,o), +(330,525,cs), +(330,469,o), +(315,369,o), +(247,369,cs), +(216,369,l), +(184,212,l), +(231,212,ls), +(427,212,o), +(512,358,o), +(512,533,cs), +(512,651,o), +(451,729,o), +(318,729,cs), +(130,729,l), +(-22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(698,0,l), +(726,134,l), +(712,133,ls), +(686,131,o), +(680,139,o), +(686,166,cs), +(735,401,l), +(780,399,l), +(810,541,l), +(764,539,l), +(794,683,l), +(615,668,l), +(588,539,l), +(551,541,l), +(521,399,l), +(559,401,l), +(505,136,ls), +(486,44,o), +(517,0,o), +(618,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1041,-10,o), +(1120,37,o), +(1139,137,cs), +(1161,251,o), +(1106,292,o), +(1034,334,cs), +(989,360,o), +(971,373,o), +(971,400,cs), +(971,423,o), +(981,442,o), +(1004,442,cs), +(1034,442,o), +(1035,421,o), +(1029,377,c), +(1179,377,l), +(1191,481,o), +(1135,551,o), +(998,551,cs), +(901,551,o), +(825,508,o), +(806,405,cs), +(789,316,o), +(834,263,o), +(900,222,cs), +(955,188,o), +(968,177,o), +(968,152,cs), +(968,125,o), +(962,102,o), +(935,102,cs), +(907,102,o), +(902,126,o), +(911,169,c), +(754,169,l), +(741,62,o), +(796,-10,o), +(936,-10,cs) +); +} +); +width = 1184; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(94,0,l), +(240,702,l), +(227,692,l), +(437,692,ls), +(530,692,o), +(588,642,o), +(585,534,cs), +(580,403,o), +(501,325,o), +(360,325,cs), +(153,325,l), +(146,290,l), +(355,290,ls), +(516,290,o), +(619,384,o), +(624,536,cs), +(628,649,o), +(569,729,o), +(450,729,cs), +(208,729,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(851,0,l), +(858,34,l), +(800,34,ls), +(758,34,o), +(732,46,o), +(742,95,cs), +(823,485,l), +(953,485,l), +(959,517,l), +(829,517,l), +(866,690,l), +(828,681,l), +(794,517,l), +(688,517,l), +(682,485,l), +(787,485,l), +(707,101,ls), +(691,25,o), +(732,0,o), +(789,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1267,-10,o), +(1341,43,o), +(1344,136,cs), +(1347,221,o), +(1298,259,o), +(1195,282,cs), +(1093,305,o), +(1058,329,o), +(1060,392,cs), +(1062,455,o), +(1114,494,o), +(1194,494,cs), +(1288,494,o), +(1347,448,o), +(1342,373,c), +(1379,373,l), +(1382,465,o), +(1310,527,o), +(1197,527,cs), +(1094,527,o), +(1027,473,o), +(1024,388,cs), +(1022,323,o), +(1056,279,o), +(1180,250,cs), +(1269,229,o), +(1309,205,o), +(1306,133,cs), +(1304,67,o), +(1257,23,o), +(1149,23,cs), +(1055,23,o), +(991,74,o), +(997,161,c), +(962,161,l), +(956,58,o), +(1025,-10,o), +(1150,-10,cs) +); +} +); +width = 1435; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(334,569,l), +(316,552,l), +(416,552,ls), +(452,552,o), +(472,527,o), +(470,484,cs), +(468,428,o), +(437,393,o), +(381,393,cs), +(283,393,l), +(249,232,l), +(383,232,ls), +(551,232,o), +(672,336,o), +(678,506,cs), +(682,640,o), +(599,729,o), +(448,729,cs), +(165,729,l), +(14,0,l) +); +}, +{ +closed = 1; +nodes = ( +(997,0,l), +(1029,153,l), +(974,153,ls), +(946,153,o), +(932,160,o), +(938,188,cs), +(981,391,l), +(1079,391,l), +(1111,544,l), +(1013,544,l), +(1045,699,l), +(853,683,l), +(824,544,l), +(734,544,l), +(702,391,l), +(792,391,l), +(744,166,ls), +(723,66,o), +(766,0,o), +(883,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1459,-10,o), +(1557,61,o), +(1562,184,cs), +(1565,280,o), +(1514,324,o), +(1397,345,cs), +(1337,356,o), +(1317,362,o), +(1318,387,cs), +(1319,410,o), +(1337,422,o), +(1366,422,cs), +(1393,422,o), +(1412,405,o), +(1411,380,c), +(1588,380,l), +(1592,491,o), +(1506,554,o), +(1372,554,cs), +(1224,554,o), +(1127,479,o), +(1123,359,cs), +(1120,268,o), +(1171,225,o), +(1299,200,cs), +(1350,190,o), +(1366,185,o), +(1365,162,cs), +(1364,133,o), +(1340,122,o), +(1307,122,cs), +(1268,122,o), +(1247,140,o), +(1249,174,c), +(1067,174,l), +(1063,64,o), +(1148,-10,o), +(1297,-10,cs) +); +} +); +width = 1615; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,0,l), +(216,705,l), +(199,692,l), +(434,692,ls), +(553,692,o), +(625,647,o), +(621,537,cs), +(616,401,o), +(536,326,o), +(383,326,cs), +(127,326,l), +(120,290,l), +(378,290,ls), +(552,290,o), +(655,381,o), +(661,540,cs), +(665,656,o), +(592,729,o), +(445,729,cs), +(182,729,l), +(31,0,l) +); +}, +{ +closed = 1; +nodes = ( +(904,0,l), +(912,36,l), +(835,36,ls), +(792,36,o), +(770,49,o), +(781,102,cs), +(862,485,l), +(1006,485,l), +(1012,517,l), +(868,517,l), +(905,690,l), +(866,681,l), +(831,517,l), +(715,517,l), +(709,485,l), +(825,485,l), +(743,94,ls), +(728,20,o), +(778,0,o), +(828,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1371,-10,o), +(1450,45,o), +(1450,151,cs), +(1450,244,o), +(1356,262,o), +(1260,279,cs), +(1151,297,o), +(1087,313,o), +(1087,381,cs), +(1087,452,o), +(1152,494,o), +(1256,494,cs), +(1375,494,o), +(1450,452,o), +(1449,367,c), +(1488,367,l), +(1494,465,o), +(1402,527,o), +(1261,527,cs), +(1130,527,o), +(1049,469,o), +(1049,377,cs), +(1049,287,o), +(1141,265,o), +(1241,247,cs), +(1365,225,o), +(1412,208,o), +(1412,143,cs), +(1412,65,o), +(1350,24,o), +(1230,24,cs), +(1081,24,o), +(1012,78,o), +(1019,160,c), +(982,160,l), +(973,59,o), +(1061,-10,o), +(1222,-10,cs) +); +} +); +width = 1519; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,0,l), +(346,574,l), +(324,556,l), +(425,556,ls), +(476,556,o), +(502,539,o), +(502,492,cs), +(502,427,o), +(466,398,o), +(396,398,cs), +(293,398,l), +(261,241,l), +(420,241,ls), +(606,241,o), +(732,331,o), +(732,524,cs), +(732,648,o), +(661,729,o), +(478,729,cs), +(150,729,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1106,0,l), +(1145,186,l), +(1058,186,ls), +(1029,186,o), +(1020,195,o), +(1026,223,cs), +(1058,379,l), +(1186,379,l), +(1220,544,l), +(1092,544,l), +(1128,710,l), +(904,669,l), +(878,544,l), +(786,544,l), +(751,379,l), +(843,379,l), +(800,171,ls), +(775,52,o), +(838,0,o), +(952,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1693,-10,o), +(1784,65,o), +(1784,186,cs), +(1784,289,o), +(1713,320,o), +(1559,344,cs), +(1462,360,o), +(1448,363,o), +(1448,383,cs), +(1448,406,o), +(1471,419,o), +(1504,419,cs), +(1556,419,o), +(1590,403,o), +(1591,374,c), +(1800,374,l), +(1809,483,o), +(1703,554,o), +(1509,554,cs), +(1340,554,o), +(1225,486,o), +(1225,359,cs), +(1225,259,o), +(1313,224,o), +(1435,204,cs), +(1538,187,o), +(1559,183,o), +(1559,162,cs), +(1559,137,o), +(1538,125,o), +(1497,125,cs), +(1433,125,o), +(1393,140,o), +(1393,179,c), +(1175,179,l), +(1170,66,o), +(1282,-10,o), +(1484,-10,cs) +); +} +); +width = 1819; +} +); +unicode = 8359; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/pi.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/pi.glyph new file mode 100644 index 00000000..ebd25b47 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/pi.glyph @@ -0,0 +1,784 @@ +{ +glyphname = pi; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,-10,o), +(507,-4,o), +(521,4,c), +(521,127,l), +(514,124,o), +(503,122,o), +(497,122,cs), +(479,122,o), +(476,132,o), +(476,156,cs), +(476,386,l), +(521,386,l), +(521,541,l), +(12,541,l), +(12,386,l), +(59,386,l), +(59,0,l), +(245,0,l), +(245,386,l), +(297,386,l), +(297,126,ls), +(297,25,o), +(344,-10,o), +(440,-10,cs) +); +} +); +width = 538; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,-5,o), +(315,-4,o), +(326,0,c), +(326,29,l), +(316,25,o), +(306,24,o), +(295,24,cs), +(277,24,o), +(270,31,o), +(270,61,cs), +(270,489,l), +(326,489,l), +(326,516,l), +(0,516,l), +(0,489,l), +(68,489,l), +(68,0,l), +(98,0,l), +(98,489,l), +(240,489,l), +(240,52,ls), +(240,16,o), +(254,-5,o), +(291,-5,cs) +); +} +); +width = 342; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(539,-7,o), +(554,-4,o), +(560,1,c), +(560,38,l), +(552,33,o), +(541,29,o), +(524,29,cs), +(479,29,o), +(471,63,o), +(471,118,cs), +(471,485,l), +(561,485,l), +(561,517,l), +(11,517,l), +(11,485,l), +(103,485,l), +(103,0,l), +(140,0,l), +(140,485,l), +(434,485,l), +(434,98,ls), +(434,34,o), +(458,-7,o), +(519,-7,cs) +); +} +); +width = 580; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(615,-9,o), +(660,-2,o), +(688,8,c), +(688,174,l), +(678,168,o), +(662,165,o), +(647,165,cs), +(628,165,o), +(606,169,o), +(606,221,cs), +(606,372,l), +(688,372,l), +(688,544,l), +(5,544,l), +(5,372,l), +(87,372,l), +(87,0,l), +(305,0,l), +(305,372,l), +(389,372,l), +(389,172,ls), +(389,59,o), +(431,-9,o), +(575,-9,cs) +); +} +); +width = 715; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-5,o), +(307,-4,o), +(318,0,c), +(318,29,l), +(308,25,o), +(298,24,o), +(287,24,cs), +(269,24,o), +(262,31,o), +(262,61,cs), +(262,489,l), +(318,489,l), +(318,516,l), +(-8,516,l), +(-8,489,l), +(60,489,l), +(60,0,l), +(90,0,l), +(90,489,l), +(232,489,l), +(232,52,ls), +(232,16,o), +(246,-5,o), +(283,-5,cs) +); +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,-10,o), +(498,-4,o), +(512,4,c), +(512,127,l), +(505,124,o), +(494,122,o), +(488,122,cs), +(470,122,o), +(467,132,o), +(467,156,cs), +(467,386,l), +(512,386,l), +(512,541,l), +(3,541,l), +(3,386,l), +(50,386,l), +(50,0,l), +(236,0,l), +(236,386,l), +(288,386,l), +(288,126,ls), +(288,25,o), +(335,-10,o), +(431,-10,cs) +); +} +); +width = 519; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(496,-7,o), +(511,-4,o), +(517,1,c), +(517,38,l), +(509,33,o), +(498,29,o), +(481,29,cs), +(436,29,o), +(428,63,o), +(428,118,cs), +(428,485,l), +(518,485,l), +(518,517,l), +(2,517,l), +(2,485,l), +(94,485,l), +(94,0,l), +(131,0,l), +(131,485,l), +(391,485,l), +(391,98,ls), +(391,34,o), +(415,-7,o), +(476,-7,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 525; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(550,-6,o), +(590,1,o), +(617,8,c), +(617,132,l), +(608,129,o), +(594,129,o), +(589,129,cs), +(562,129,o), +(542,141,o), +(542,175,cs), +(542,389,l), +(618,389,l), +(618,544,l), +(1,544,l), +(1,389,l), +(78,389,l), +(78,0,l), +(264,0,l), +(264,389,l), +(356,389,l), +(356,163,ls), +(356,74,o), +(383,-6,o), +(526,-6,cs) +); +} +); +width = 630; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(534,-7,o), +(549,-4,o), +(555,1,c), +(555,38,l), +(547,33,o), +(536,29,o), +(519,29,cs), +(474,29,o), +(466,63,o), +(466,118,cs), +(466,485,l), +(556,485,l), +(556,517,l), +(6,517,l), +(6,485,l), +(98,485,l), +(98,0,l), +(135,0,l), +(135,485,l), +(429,485,l), +(429,98,ls), +(429,34,o), +(453,-7,o), +(514,-7,cs) +); +} +); +width = 565; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(610,-9,o), +(655,-2,o), +(683,8,c), +(683,174,l), +(673,168,o), +(657,165,o), +(642,165,cs), +(623,165,o), +(601,169,o), +(601,221,cs), +(601,372,l), +(683,372,l), +(683,544,l), +(0,544,l), +(0,372,l), +(82,372,l), +(82,0,l), +(300,0,l), +(300,372,l), +(384,372,l), +(384,172,ls), +(384,59,o), +(426,-9,o), +(570,-9,cs) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(509,-7,o), +(524,-4,o), +(530,1,c), +(530,38,l), +(522,33,o), +(511,29,o), +(494,29,cs), +(449,29,o), +(443,63,o), +(443,118,cs), +(443,485,l), +(531,485,l), +(531,517,l), +(25,517,l), +(25,485,l), +(115,485,l), +(115,0,l), +(151,0,l), +(151,485,l), +(406,485,l), +(406,98,ls), +(406,34,o), +(430,-7,o), +(489,-7,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 563; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(550,-6,o), +(590,1,o), +(617,8,c), +(617,132,l), +(608,129,o), +(594,129,o), +(590,129,cs), +(564,129,o), +(545,141,o), +(545,175,cs), +(545,389,l), +(618,389,l), +(618,544,l), +(17,544,l), +(17,389,l), +(91,389,l), +(91,0,l), +(275,0,l), +(275,389,l), +(360,389,l), +(360,163,ls), +(360,74,o), +(387,-6,o), +(528,-6,cs) +); +} +); +width = 648; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,-5,o), +(258,-4,o), +(270,0,c), +(276,29,l), +(265,25,o), +(255,24,o), +(244,24,cs), +(226,24,o), +(220,31,o), +(227,61,cs), +(317,489,l), +(372,489,l), +(378,516,l), +(55,516,l), +(49,489,l), +(117,489,l), +(14,0,l), +(44,0,l), +(146,489,l), +(287,489,l), +(195,52,ls), +(188,16,o), +(197,-5,o), +(234,-5,cs) +); +} +); +width = 340; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,-10,o), +(443,-4,o), +(459,4,c), +(485,127,l), +(477,124,o), +(467,122,o), +(461,122,cs), +(443,122,o), +(441,132,o), +(447,156,cs), +(495,386,l), +(539,386,l), +(572,541,l), +(68,541,l), +(35,386,l), +(82,386,l), +(1,0,l), +(185,0,l), +(266,386,l), +(317,386,l), +(263,126,ls), +(242,25,o), +(281,-10,o), +(376,-10,cs) +); +} +); +width = 532; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-7,o), +(470,-4,o), +(477,1,c), +(486,38,l), +(477,33,o), +(465,29,o), +(448,29,cs), +(403,29,o), +(402,63,o), +(414,118,cs), +(491,485,l), +(580,485,l), +(587,517,l), +(76,517,l), +(70,485,l), +(161,485,l), +(59,0,l), +(95,0,l), +(197,485,l), +(455,485,l), +(373,98,ls), +(360,34,o), +(375,-7,o), +(436,-7,cs) +); +} +); +width = 565; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(503,-6,o), +(544,1,o), +(572,8,c), +(598,132,l), +(593,130,o), +(581,129,o), +(569,129,cs), +(542,129,o), +(525,141,o), +(532,175,cs), +(577,389,l), +(652,389,l), +(684,544,l), +(74,544,l), +(42,389,l), +(118,389,l), +(37,0,l), +(221,0,l), +(302,389,l), +(393,389,l), +(345,163,ls), +(328,74,o), +(338,-6,o), +(479,-6,cs) +); +} +); +width = 661; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(478,-7,o), +(493,-4,o), +(500,1,c), +(508,38,l), +(499,33,o), +(487,29,o), +(470,29,cs), +(426,29,o), +(425,63,o), +(437,118,cs), +(514,485,l), +(603,485,l), +(609,517,l), +(65,517,l), +(58,485,l), +(150,485,l), +(47,0,l), +(84,0,l), +(186,485,l), +(477,485,l), +(395,98,ls), +(382,34,o), +(398,-7,o), +(458,-7,cs) +); +} +); +width = 575; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(549,-9,o), +(596,-2,o), +(625,8,c), +(660,174,l), +(649,168,o), +(632,165,o), +(617,165,cs), +(599,165,o), +(578,169,o), +(588,221,cs), +(620,372,l), +(702,372,l), +(738,544,l), +(61,544,l), +(26,372,l), +(107,372,l), +(29,0,l), +(244,0,l), +(322,372,l), +(406,372,l), +(364,172,ls), +(340,59,o), +(368,-9,o), +(509,-9,cs) +); +} +); +width = 708; +} +); +unicode = 960; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/plus.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/plus.glyph new file mode 100644 index 00000000..bf8d9da3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/plus.glyph @@ -0,0 +1,475 @@ +{ +glyphname = plus; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,139,l), +(314,291,l), +(462,291,l), +(462,431,l), +(314,431,l), +(314,583,l), +(166,583,l), +(166,431,l), +(18,431,l), +(18,291,l), +(166,291,l), +(166,139,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,168,l), +(255,347,l), +(433,347,l), +(433,375,l), +(255,375,l), +(255,554,l), +(225,554,l), +(225,375,l), +(47,375,l), +(47,347,l), +(225,347,l), +(225,168,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(377,114,l), +(377,345,l), +(608,345,l), +(608,377,l), +(377,377,l), +(377,609,l), +(343,609,l), +(343,377,l), +(113,377,l), +(113,345,l), +(343,345,l), +(343,114,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(453,98,l), +(453,274,l), +(623,274,l), +(623,448,l), +(453,448,l), +(453,624,l), +(267,624,l), +(267,448,l), +(97,448,l), +(97,274,l), +(267,274,l), +(267,98,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,168,l), +(235,347,l), +(413,347,l), +(413,375,l), +(235,375,l), +(235,554,l), +(205,554,l), +(205,375,l), +(27,375,l), +(27,347,l), +(205,347,l), +(205,168,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,139,l), +(304,291,l), +(452,291,l), +(452,431,l), +(304,431,l), +(304,583,l), +(156,583,l), +(156,431,l), +(8,431,l), +(8,291,l), +(156,291,l), +(156,139,l) +); +} +); +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,122,l), +(297,345,l), +(519,345,l), +(519,377,l), +(297,377,l), +(297,600,l), +(263,600,l), +(263,377,l), +(41,377,l), +(41,345,l), +(263,345,l), +(263,122,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +3, +3 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +3, +3 +); +stem = -2; +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,124,l), +(353,286,l), +(513,286,l), +(513,435,l), +(353,435,l), +(353,597,l), +(200,597,l), +(200,435,l), +(40,435,l), +(40,286,l), +(200,286,l), +(200,124,l) +); +} +); +width = 552; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(367,114,l), +(367,345,l), +(598,345,l), +(598,377,l), +(367,377,l), +(367,609,l), +(333,609,l), +(333,377,l), +(103,377,l), +(103,345,l), +(333,345,l), +(333,114,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,98,l), +(443,274,l), +(613,274,l), +(613,448,l), +(443,448,l), +(443,624,l), +(257,624,l), +(257,448,l), +(87,448,l), +(87,274,l), +(257,274,l), +(257,98,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(314,122,l), +(314,345,l), +(532,345,l), +(532,377,l), +(314,377,l), +(314,600,l), +(280,600,l), +(280,377,l), +(62,377,l), +(62,345,l), +(280,345,l), +(280,122,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +3, +3 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +3, +3 +); +stem = -2; +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(367,124,l), +(367,286,l), +(521,286,l), +(521,435,l), +(367,435,l), +(367,597,l), +(216,597,l), +(216,435,l), +(62,435,l), +(62,286,l), +(216,286,l), +(216,124,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,168,l), +(273,347,l), +(449,347,l), +(455,375,l), +(277,375,l), +(315,554,l), +(286,554,l), +(248,375,l), +(73,375,l), +(67,347,l), +(243,347,l), +(205,168,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,139,l), +(316,291,l), +(463,291,l), +(492,431,l), +(345,431,l), +(377,583,l), +(230,583,l), +(198,431,l), +(53,431,l), +(23,291,l), +(170,291,l), +(137,139,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,122,l), +(334,345,l), +(554,345,l), +(561,377,l), +(341,377,l), +(388,600,l), +(354,600,l), +(308,377,l), +(88,377,l), +(81,345,l), +(301,345,l), +(254,122,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,124,l), +(379,286,l), +(537,286,l), +(568,435,l), +(410,435,l), +(444,597,l), +(292,597,l), +(258,435,l), +(100,435,l), +(69,286,l), +(227,286,l), +(193,124,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(346,114,l), +(395,345,l), +(623,345,l), +(630,377,l), +(402,377,l), +(450,609,l), +(417,609,l), +(368,377,l), +(140,377,l), +(133,345,l), +(361,345,l), +(312,114,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,98,l), +(451,274,l), +(620,274,l), +(657,448,l), +(488,448,l), +(525,624,l), +(341,624,l), +(304,448,l), +(136,448,l), +(99,274,l), +(267,274,l), +(230,98,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 43; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/plusminus.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/plusminus.glyph new file mode 100644 index 00000000..ba452810 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/plusminus.glyph @@ -0,0 +1,681 @@ +{ +glyphname = plusminus; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,189,l), +(314,311,l), +(462,311,l), +(462,451,l), +(314,451,l), +(314,573,l), +(166,573,l), +(166,451,l), +(18,451,l), +(18,311,l), +(166,311,l), +(166,189,l) +); +}, +{ +closed = 1; +nodes = ( +(462,0,l), +(462,132,l), +(18,132,l), +(18,0,l) +); +} +); +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,168,l), +(255,347,l), +(433,347,l), +(433,375,l), +(255,375,l), +(255,554,l), +(225,554,l), +(225,375,l), +(47,375,l), +(47,347,l), +(225,347,l), +(225,168,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(433,28,l), +(47,28,l), +(47,0,l) +); +} +); +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(376,172,l), +(376,365,l), +(608,365,l), +(608,399,l), +(376,399,l), +(376,585,l), +(342,585,l), +(342,399,l), +(112,399,l), +(112,365,l), +(342,365,l), +(342,172,l) +); +}, +{ +closed = 1; +nodes = ( +(608,0,l), +(608,34,l), +(112,34,l), +(112,0,l) +); +} +); +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,207,l), +(447,329,l), +(617,329,l), +(617,495,l), +(447,495,l), +(447,616,l), +(269,616,l), +(269,495,l), +(103,495,l), +(103,329,l), +(269,329,l), +(269,207,l) +); +}, +{ +closed = 1; +nodes = ( +(617,0,l), +(617,143,l), +(103,143,l), +(103,0,l) +); +} +); +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,168,l), +(235,347,l), +(413,347,l), +(413,375,l), +(235,375,l), +(235,554,l), +(205,554,l), +(205,375,l), +(27,375,l), +(27,347,l), +(205,347,l), +(205,168,l) +); +}, +{ +closed = 1; +nodes = ( +(413,0,l), +(413,28,l), +(27,28,l), +(27,0,l) +); +} +); +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,189,l), +(304,311,l), +(452,311,l), +(452,451,l), +(304,451,l), +(304,573,l), +(156,573,l), +(156,451,l), +(8,451,l), +(8,311,l), +(156,311,l), +(156,189,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(452,132,l), +(8,132,l), +(8,0,l) +); +} +); +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,162,l), +(297,365,l), +(519,365,l), +(519,397,l), +(297,397,l), +(297,600,l), +(263,600,l), +(263,397,l), +(41,397,l), +(41,365,l), +(263,365,l), +(263,162,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(519,32,l), +(41,32,l), +(41,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,194,l), +(355,326,l), +(535,326,l), +(535,475,l), +(355,475,l), +(355,607,l), +(202,607,l), +(202,475,l), +(22,475,l), +(22,326,l), +(202,326,l), +(202,194,l) +); +}, +{ +closed = 1; +nodes = ( +(535,0,l), +(535,132,l), +(22,132,l), +(22,0,l) +); +} +); +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,172,l), +(366,365,l), +(598,365,l), +(598,399,l), +(366,399,l), +(366,585,l), +(332,585,l), +(332,399,l), +(102,399,l), +(102,365,l), +(332,365,l), +(332,172,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(598,34,l), +(102,34,l), +(102,0,l) +); +} +); +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,207,l), +(437,329,l), +(607,329,l), +(607,495,l), +(437,495,l), +(437,616,l), +(259,616,l), +(259,495,l), +(93,495,l), +(93,329,l), +(259,329,l), +(259,207,l) +); +}, +{ +closed = 1; +nodes = ( +(607,0,l), +(607,143,l), +(93,143,l), +(93,0,l) +); +} +); +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(314,162,l), +(314,365,l), +(532,365,l), +(532,397,l), +(314,397,l), +(314,600,l), +(280,600,l), +(280,397,l), +(62,397,l), +(62,365,l), +(280,365,l), +(280,162,l) +); +}, +{ +closed = 1; +nodes = ( +(532,0,l), +(532,32,l), +(62,32,l), +(62,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(366,194,l), +(366,326,l), +(540,326,l), +(540,475,l), +(366,475,l), +(366,607,l), +(215,607,l), +(215,475,l), +(42,475,l), +(42,326,l), +(215,326,l), +(215,194,l) +); +}, +{ +closed = 1; +nodes = ( +(540,0,l), +(540,132,l), +(42,132,l), +(42,0,l) +); +} +); +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,168,l), +(274,347,l), +(450,347,l), +(456,375,l), +(279,375,l), +(317,554,l), +(288,554,l), +(250,375,l), +(74,375,l), +(68,347,l), +(244,347,l), +(207,168,l) +); +}, +{ +closed = 1; +nodes = ( +(377,0,l), +(383,28,l), +(1,28,l), +(-5,0,l) +); +} +); +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(296,189,l), +(322,311,l), +(468,311,l), +(498,451,l), +(351,451,l), +(376,573,l), +(230,573,l), +(205,451,l), +(58,451,l), +(29,311,l), +(175,311,l), +(149,189,l) +); +}, +{ +closed = 1; +nodes = ( +(403,0,l), +(430,132,l), +(-9,132,l), +(-37,0,l) +); +} +); +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,162,l), +(339,365,l), +(558,365,l), +(565,397,l), +(346,397,l), +(388,600,l), +(355,600,l), +(312,397,l), +(92,397,l), +(85,365,l), +(305,365,l), +(263,162,l) +); +}, +{ +closed = 1; +nodes = ( +(482,0,l), +(489,32,l), +(16,32,l), +(9,0,l) +); +} +); +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,194,l), +(387,326,l), +(565,326,l), +(597,475,l), +(418,475,l), +(446,607,l), +(294,607,l), +(267,475,l), +(89,475,l), +(57,326,l), +(235,326,l), +(208,194,l) +); +}, +{ +closed = 1; +nodes = ( +(497,0,l), +(524,132,l), +(16,132,l), +(-11,0,l) +); +} +); +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,172,l), +(398,365,l), +(628,365,l), +(635,399,l), +(405,399,l), +(445,585,l), +(411,585,l), +(372,399,l), +(144,399,l), +(137,365,l), +(365,365,l), +(324,172,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(559,34,l), +(68,34,l), +(61,0,l) +); +} +); +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,207,l), +(458,329,l), +(627,329,l), +(661,495,l), +(493,495,l), +(519,616,l), +(343,616,l), +(317,495,l), +(152,495,l), +(118,329,l), +(282,329,l), +(256,207,l) +); +}, +{ +closed = 1; +nodes = ( +(558,0,l), +(588,143,l), +(79,143,l), +(49,0,l) +); +} +); +width = 720; +} +); +metricWidth = zero.tf; +unicode = 177; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/product.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/product.glyph new file mode 100644 index 00000000..1f5a921e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/product.glyph @@ -0,0 +1,468 @@ +{ +glyphname = product; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-151,l), +(211,563,l), +(278,563,l), +(278,-151,l), +(464,-151,l), +(464,729,l), +(27,729,l), +(27,-151,l) +); +} +); +width = 491; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,-151,l), +(91,699,l), +(324,699,l), +(324,-151,l), +(354,-151,l), +(354,729,l), +(60,729,l), +(60,-151,l) +); +} +); +width = 414; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(104,-151,l), +(104,693,l), +(666,693,l), +(666,-151,l), +(704,-151,l), +(704,729,l), +(66,729,l), +(66,-151,l) +); +} +); +width = 770; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,-151,l), +(272,532,l), +(559,532,l), +(559,-151,l), +(789,-151,l), +(789,729,l), +(43,729,l), +(43,-151,l) +); +} +); +width = 832; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(71,-151,l), +(71,699,l), +(304,699,l), +(304,-151,l), +(334,-151,l), +(334,729,l), +(40,729,l), +(40,-151,l) +); +} +); +width = 374; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-151,l), +(201,563,l), +(268,563,l), +(268,-151,l), +(454,-151,l), +(454,729,l), +(17,729,l), +(17,-151,l) +); +} +); +width = 471; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(99,-151,l), +(99,693,l), +(585,693,l), +(585,-151,l), +(623,-151,l), +(623,729,l), +(61,729,l), +(61,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 684; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,-151,l), +(233,547,l), +(491,547,l), +(491,-151,l), +(694,-151,l), +(694,729,l), +(30,729,l), +(30,-151,l) +); +} +); +width = 724; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(94,-151,l), +(94,693,l), +(656,693,l), +(656,-151,l), +(694,-151,l), +(694,729,l), +(56,729,l), +(56,-151,l) +); +} +); +width = 750; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,-151,l), +(262,532,l), +(549,532,l), +(549,-151,l), +(779,-151,l), +(779,729,l), +(33,729,l), +(33,-151,l) +); +} +); +width = 812; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(124,-151,l), +(124,693,l), +(600,693,l), +(600,-151,l), +(638,-151,l), +(638,729,l), +(86,729,l), +(86,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 723; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(253,-151,l), +(253,547,l), +(499,547,l), +(499,-151,l), +(700,-151,l), +(700,729,l), +(52,729,l), +(52,-151,l) +); +} +); +width = 751; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(4,-151,l), +(182,699,l), +(413,699,l), +(234,-151,l), +(264,-151,l), +(449,729,l), +(158,729,l), +(-27,-151,l) +); +} +); +width = 409; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-151,l), +(270,563,l), +(337,563,l), +(187,-151,l), +(371,-151,l), +(556,729,l), +(124,729,l), +(-62,-151,l) +); +} +); +width = 486; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,-151,l), +(213,693,l), +(694,693,l), +(517,-151,l), +(555,-151,l), +(740,729,l), +(184,729,l), +(-1,-151,l) +); +} +); +width = 727; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-151,l), +(311,547,l), +(567,547,l), +(420,-151,l), +(621,-151,l), +(807,729,l), +(149,729,l), +(-36,-151,l) +); +} +); +width = 764; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(17,-151,l), +(194,693,l), +(750,693,l), +(573,-151,l), +(611,-151,l), +(796,729,l), +(164,729,l), +(-21,-151,l) +); +} +); +width = 763; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-151,l), +(323,532,l), +(608,532,l), +(464,-151,l), +(692,-151,l), +(877,729,l), +(138,729,l), +(-47,-151,l) +); +} +); +width = 823; +} +); +unicode = 8719; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/published.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/published.glyph new file mode 100644 index 00000000..22a38a77 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/published.glyph @@ -0,0 +1,1738 @@ +{ +color = 6; +glyphname = published; +layers = ( +{ +background = { +anchors = ( +{ +name = center; +pos = (353,366); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(351,132,l), +(351,514,l), +(369,514,ls), +(393,514,o), +(405,496,o), +(405,442,cs), +(405,393,o), +(397,367,o), +(369,367,cs), +(341,367,l), +(341,279,l), +(373,279,ls), +(476,279,o), +(524,334,o), +(524,440,cs), +(524,546,o), +(476,601,o), +(373,601,cs), +(233,601,l), +(233,132,l) +); +}, +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (193,0); +ref = _published.P; +} +); +width = 706; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (349,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(313,160,l), +(313,546,l), +(360,546,ls), +(410,546,o), +(439,515,o), +(439,450,cs), +(439,386,o), +(409,357,o), +(360,357,cs), +(305,357,l), +(305,330,l), +(361,330,ls), +(436,330,o), +(470,378,o), +(470,450,cs), +(470,524,o), +(435,571,o), +(361,571,cs), +(283,571,l), +(283,160,l) +); +}, +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (243,0); +ref = _published.P; +} +); +width = 698; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (442,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(342,165,l), +(342,532,l), +(493,532,ls), +(564,532,o), +(603,498,o), +(603,440,cs), +(603,384,o), +(563,349,o), +(493,349,cs), +(334,349,l), +(333,319,l), +(496,319,ls), +(582,319,o), +(638,364,o), +(638,441,cs), +(638,517,o), +(585,562,o), +(496,562,cs), +(306,562,l), +(306,165,l) +); +}, +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (266,0); +ref = _published.P; +} +); +width = 884; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (430,364); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(408,167,l), +(408,463,l), +(451,463,ls), +(491,463,o), +(511,455,o), +(511,425,cs), +(511,403,o), +(501,387,o), +(451,387,cs), +(392,387,l), +(392,297,l), +(483,297,ls), +(604,297,o), +(667,340,o), +(667,430,cs), +(667,516,o), +(611,564,o), +(483,564,cs), +(252,564,l), +(252,167,l) +); +}, +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (212,0); +ref = _published.P; +} +); +width = 860; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (349,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(313,160,l), +(313,546,l), +(360,546,ls), +(410,546,o), +(439,515,o), +(439,450,cs), +(439,386,o), +(409,357,o), +(360,357,cs), +(305,357,l), +(305,330,l), +(361,330,ls), +(436,330,o), +(470,378,o), +(470,450,cs), +(470,524,o), +(435,571,o), +(361,571,cs), +(283,571,l), +(283,160,l) +); +}, +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (243,0); +ref = _published.P; +} +); +width = 698; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (353,366); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(351,132,l), +(351,514,l), +(369,514,ls), +(393,514,o), +(405,496,o), +(405,442,cs), +(405,393,o), +(397,367,o), +(369,367,cs), +(341,367,l), +(341,279,l), +(373,279,ls), +(476,279,o), +(524,334,o), +(524,440,cs), +(524,546,o), +(476,601,o), +(373,601,cs), +(233,601,l), +(233,132,l) +); +}, +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (193,0); +ref = _published.P; +} +); +width = 706; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (435,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(365,165,l), +(365,532,l), +(479,532,ls), +(544,532,o), +(584,499,o), +(584,440,cs), +(584,382,o), +(545,347,o), +(479,347,cs), +(358,347,l), +(358,319,l), +(483,319,ls), +(566,319,o), +(618,367,o), +(618,441,cs), +(618,517,o), +(566,562,o), +(484,562,cs), +(333,562,l), +(333,165,l) +); +}, +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (293,0); +ref = _published.P; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 871; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (428,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(402,167,l), +(403,471,l), +(433,471,ls), +(466,471,o), +(495,466,o), +(495,426,cs), +(495,382,o), +(466,378,o), +(433,378,cs), +(387,378,l), +(386,293,l), +(468,293,ls), +(585,293,o), +(634,349,o), +(634,429,cs), +(634,515,o), +(579,564,o), +(468,564,cs), +(264,564,l), +(264,167,l) +); +}, +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (224,0); +ref = _published.P; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 835; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (442,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(342,165,l), +(342,532,l), +(493,532,ls), +(564,532,o), +(603,498,o), +(603,440,cs), +(603,384,o), +(563,349,o), +(493,349,cs), +(334,349,l), +(333,319,l), +(496,319,ls), +(582,319,o), +(638,364,o), +(638,441,cs), +(638,517,o), +(585,562,o), +(496,562,cs), +(306,562,l), +(306,165,l) +); +}, +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (266,0); +ref = _published.P; +} +); +width = 884; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (430,364); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(408,167,l), +(408,463,l), +(451,463,ls), +(491,463,o), +(511,455,o), +(511,425,cs), +(511,403,o), +(501,387,o), +(451,387,cs), +(392,387,l), +(392,297,l), +(483,297,ls), +(604,297,o), +(667,340,o), +(667,430,cs), +(667,516,o), +(611,564,o), +(483,564,cs), +(252,564,l), +(252,167,l) +); +}, +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (212,0); +ref = _published.P; +} +); +width = 860; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (435,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(365,165,l), +(365,532,l), +(479,532,ls), +(544,532,o), +(584,499,o), +(584,440,cs), +(584,382,o), +(545,347,o), +(479,347,cs), +(358,347,l), +(358,319,l), +(483,319,ls), +(566,319,o), +(618,367,o), +(618,441,cs), +(618,517,o), +(566,562,o), +(484,562,cs), +(333,562,l), +(333,165,l) +); +}, +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (293,0); +ref = _published.P; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (428,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(402,167,l), +(403,471,l), +(433,471,ls), +(466,471,o), +(495,466,o), +(495,426,cs), +(495,382,o), +(466,378,o), +(433,378,cs), +(387,378,l), +(386,293,l), +(468,293,ls), +(585,293,o), +(634,349,o), +(634,429,cs), +(634,515,o), +(579,564,o), +(468,564,cs), +(264,564,l), +(264,167,l) +); +}, +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (224,0); +ref = _published.P; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 834; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (386,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(350,160,l), +(350,546,l), +(397,546,ls), +(447,546,o), +(476,515,o), +(476,450,cs), +(476,386,o), +(446,357,o), +(397,357,cs), +(342,357,l), +(342,330,l), +(398,330,ls), +(473,330,o), +(507,378,o), +(507,450,cs), +(507,524,o), +(472,571,o), +(398,571,cs), +(320,571,l), +(320,160,l) +); +}, +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (215,0); +ref = _published.P; +} +); +width = 727; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (385,366); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(383,132,l), +(383,514,l), +(401,514,ls), +(425,514,o), +(437,496,o), +(437,442,cs), +(437,393,o), +(429,367,o), +(401,367,cs), +(373,367,l), +(373,279,l), +(405,279,ls), +(508,279,o), +(556,334,o), +(556,440,cs), +(556,546,o), +(508,601,o), +(405,601,cs), +(265,601,l), +(265,132,l) +); +}, +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (157,0); +ref = _published.P; +} +); +width = 731; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (467,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(397,165,l), +(397,532,l), +(511,532,ls), +(576,532,o), +(616,499,o), +(616,440,cs), +(616,382,o), +(577,347,o), +(511,347,cs), +(390,347,l), +(390,319,l), +(515,319,ls), +(598,319,o), +(650,367,o), +(650,441,cs), +(650,517,o), +(598,562,o), +(516,562,cs), +(365,562,l), +(365,165,l) +); +}, +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (262,0); +ref = _published.P; +} +); +width = 891; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (456,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(430,167,l), +(431,471,l), +(461,471,ls), +(494,471,o), +(523,466,o), +(523,426,cs), +(523,382,o), +(494,378,o), +(461,378,cs), +(415,378,l), +(414,293,l), +(496,293,ls), +(613,293,o), +(662,349,o), +(662,429,cs), +(662,515,o), +(607,564,o), +(496,564,cs), +(292,564,l), +(292,167,l) +); +}, +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (192,0); +ref = _published.P; +} +); +width = 873; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (473,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(373,165,l), +(373,532,l), +(524,532,ls), +(595,532,o), +(634,498,o), +(634,440,cs), +(634,384,o), +(594,349,o), +(524,349,cs), +(365,349,l), +(364,319,l), +(527,319,ls), +(613,319,o), +(669,364,o), +(669,441,cs), +(669,517,o), +(616,562,o), +(527,562,cs), +(337,562,l), +(337,165,l) +); +}, +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (234,0); +ref = _published.P; +} +); +width = 903; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (459,364); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(437,167,l), +(437,463,l), +(480,463,ls), +(520,463,o), +(540,455,o), +(540,425,cs), +(540,403,o), +(530,387,o), +(480,387,cs), +(421,387,l), +(421,297,l), +(512,297,ls), +(633,297,o), +(696,340,o), +(696,430,cs), +(696,516,o), +(640,564,o), +(512,564,cs), +(281,564,l), +(281,167,l) +); +}, +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (181,0); +ref = _published.P; +} +); +width = 880; +} +); +metricLeft = copyright; +metricRight = copyright; +unicode = 8471; +userData = { +KernOnSpecialSpacing = { +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/q.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/q.glyph new file mode 100644 index 00000000..788ba10a --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/q.glyph @@ -0,0 +1,1546 @@ +{ +glyphname = q; +kernLeft = KO_a; +kernRight = KO_a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = top; +pos = (235,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,-167,l), +(443,541,l), +(271,541,l), +(267,477,l), +(260,477,l), +(242,526,o), +(208,551,o), +(156,551,cs), +(74,551,o), +(16,493,o), +(16,271,cs), +(16,97,o), +(46,-10,o), +(156,-10,cs), +(202,-10,o), +(241,13,o), +(260,64,c), +(267,64,l), +(267,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(204,128,o), +(194,160,o), +(194,271,cs), +(194,365,o), +(199,415,o), +(231,415,cs), +(255,415,o), +(267,385,o), +(267,285,cs), +(267,256,ls), +(267,171,o), +(259,128,o), +(231,128,cs) +); +} +); +width = 470; +}, +{ +anchors = ( +{ +name = bottom; +pos = (176,0); +}, +{ +name = top; +pos = (176,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,-167,l), +(284,516,l), +(256,516,l), +(255,439,l), +(253,439,l), +(237,491,o), +(211,526,o), +(159,526,cs), +(90,526,o), +(45,461,o), +(45,257,cs), +(45,50,o), +(92,-10,o), +(159,-10,cs), +(211,-10,o), +(237,25,o), +(253,77,c), +(255,77,l), +(255,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(93,16,o), +(75,104,o), +(75,257,cs), +(75,415,o), +(94,500,o), +(167,500,cs), +(220,500,o), +(255,436,o), +(255,309,cs), +(255,206,ls), +(255,77,o), +(219,16,o), +(167,16,cs) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (317,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(574,-167,l), +(574,517,l), +(539,517,l), +(537,398,l), +(534,398,l), +(502,474,o), +(414,526,o), +(297,526,cs), +(141,526,o), +(35,424,o), +(35,259,cs), +(35,97,o), +(140,-9,o), +(297,-9,cs), +(408,-9,o), +(502,47,o), +(534,130,c), +(537,130,l), +(537,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(164,25,o), +(73,118,o), +(73,259,cs), +(73,407,o), +(165,492,o), +(301,492,cs), +(450,492,o), +(537,396,o), +(537,294,cs), +(537,234,ls), +(537,126,o), +(450,25,o), +(301,25,cs) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (360,0); +}, +{ +name = top; +pos = (360,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(687,-167,l), +(687,544,l), +(477,544,l), +(471,473,l), +(463,473,l), +(432,520,o), +(372,552,o), +(276,552,cs), +(118,552,o), +(12,443,o), +(12,272,cs), +(12,100,o), +(118,-10,o), +(276,-10,cs), +(352,-10,o), +(422,17,o), +(458,69,c), +(466,69,l), +(466,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(279,155,o), +(234,195,o), +(234,272,cs), +(234,346,o), +(279,387,o), +(347,387,cs), +(421,387,o), +(465,342,o), +(465,276,cs), +(465,265,ls), +(465,200,o), +(421,155,o), +(347,155,cs) +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +pos = (166,0); +}, +{ +name = top; +pos = (166,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,-167,l), +(275,516,l), +(246,516,l), +(245,439,l), +(243,439,l), +(224,497,o), +(190,526,o), +(142,526,cs), +(61,526,o), +(24,447,o), +(24,257,cs), +(24,68,o), +(61,-10,o), +(142,-10,cs), +(190,-10,o), +(224,19,o), +(243,77,c), +(245,77,l), +(245,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(85,17,o), +(55,86,o), +(55,257,cs), +(55,429,o), +(85,499,o), +(150,499,cs), +(204,499,o), +(245,419,o), +(245,309,cs), +(245,206,ls), +(245,96,o), +(204,17,o), +(150,17,cs) +); +} +); +width = 310; +}, +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = top; +pos = (226,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(434,-167,l), +(434,541,l), +(262,541,l), +(258,469,l), +(257,469,l), +(233,526,o), +(199,551,o), +(147,551,cs), +(65,551,o), +(7,493,o), +(7,271,cs), +(7,97,o), +(37,-10,o), +(147,-10,cs), +(193,-10,o), +(232,13,o), +(257,73,c), +(258,73,l), +(258,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(195,128,o), +(185,160,o), +(185,271,cs), +(185,365,o), +(190,415,o), +(222,415,cs), +(246,415,o), +(258,385,o), +(258,285,cs), +(258,256,ls), +(258,171,o), +(250,128,o), +(222,128,cs) +); +} +); +width = 450; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(507,-167,l), +(507,517,l), +(472,517,l), +(470,398,l), +(467,398,l), +(440,475,o), +(369,526,o), +(271,526,cs), +(142,526,o), +(54,425,o), +(54,259,cs), +(54,94,o), +(142,-8,o), +(271,-8,cs), +(369,-8,o), +(440,44,o), +(467,121,c), +(470,121,l), +(470,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(167,26,o), +(92,112,o), +(92,259,cs), +(92,408,o), +(167,493,o), +(279,493,cs), +(399,493,o), +(469,397,o), +(469,295,cs), +(469,224,ls), +(469,122,o), +(399,26,o), +(279,26,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(486,-167,l), +(486,517,l), +(452,517,l), +(450,398,l), +(447,398,l), +(420,475,o), +(349,526,o), +(251,526,cs), +(122,526,o), +(34,425,o), +(34,259,cs), +(34,94,o), +(122,-8,o), +(251,-8,cs), +(349,-8,o), +(420,44,o), +(447,121,c), +(449,121,l), +(449,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(147,26,o), +(72,112,o), +(72,259,cs), +(72,408,o), +(147,493,o), +(259,493,cs), +(379,493,o), +(449,397,o), +(449,295,cs), +(449,224,ls), +(449,122,o), +(379,26,o), +(259,26,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +1, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +0 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +1 +); +stem = -2; +target = ( +1, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +} +); +}; +width = 545; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (308,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(579,-167,l), +(579,544,l), +(395,544,l), +(389,451,l), +(388,451,l), +(360,518,o), +(299,554,o), +(226,554,cs), +(94,554,o), +(7,451,o), +(7,272,cs), +(7,93,o), +(94,-10,o), +(226,-10,cs), +(299,-10,o), +(360,26,o), +(387,89,c), +(388,89,l), +(388,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(227,143,o), +(202,195,o), +(202,272,cs), +(202,349,o), +(230,401,o), +(302,401,cs), +(354,401,o), +(388,363,o), +(388,295,cs), +(388,249,ls), +(388,185,o), +(360,143,o), +(297,143,cs) +); +} +); +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (338,0); +}, +{ +name = top; +pos = (338,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(595,-167,l), +(595,517,l), +(560,517,l), +(559,392,l), +(558,392,l), +(524,472,o), +(428,526,o), +(304,526,cs), +(140,526,o), +(28,424,o), +(28,259,cs), +(28,97,o), +(139,-9,o), +(304,-9,cs), +(422,-9,o), +(523,49,o), +(557,136,c), +(558,136,l), +(558,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(163,25,o), +(66,118,o), +(66,259,cs), +(66,407,o), +(164,492,o), +(308,492,cs), +(466,492,o), +(556,390,o), +(558,288,cs), +(558,240,ls), +(558,132,o), +(466,25,o), +(308,25,cs) +); +} +); +width = 651; +}, +{ +anchors = ( +{ +name = bottom; +pos = (366,0); +}, +{ +name = top; +pos = (366,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(693,-167,l), +(693,544,l), +(483,544,l), +(477,473,l), +(476,473,l), +(445,520,o), +(378,552,o), +(282,552,cs), +(124,552,o), +(18,443,o), +(18,272,cs), +(18,100,o), +(124,-10,o), +(282,-10,cs), +(358,-10,o), +(435,17,o), +(471,69,c), +(472,69,l), +(472,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(285,155,o), +(240,195,o), +(240,272,cs), +(240,346,o), +(285,387,o), +(353,387,cs), +(427,387,o), +(471,342,o), +(471,276,cs), +(471,265,ls), +(471,200,o), +(427,155,o), +(353,155,cs) +); +} +); +width = 723; +}, +{ +anchors = ( +{ +name = bottom; +pos = (298,0); +}, +{ +name = top; +pos = (298,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(508,-167,l), +(508,517,l), +(473,517,l), +(471,398,l), +(468,398,l), +(441,475,o), +(370,526,o), +(272,526,cs), +(143,526,o), +(55,425,o), +(55,259,cs), +(55,94,o), +(143,-8,o), +(272,-8,cs), +(370,-8,o), +(441,44,o), +(468,121,c), +(471,121,l), +(471,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(168,26,o), +(93,112,o), +(93,259,cs), +(93,408,o), +(168,493,o), +(280,493,cs), +(400,493,o), +(470,397,o), +(470,295,cs), +(470,224,ls), +(470,122,o), +(400,26,o), +(280,26,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(495,-182,l), +(495,517,l), +(461,517,l), +(459,398,l), +(456,398,l), +(432,475,o), +(365,526,o), +(273,526,cs), +(151,526,o), +(68,425,o), +(68,259,cs), +(68,94,o), +(151,-8,o), +(273,-8,cs), +(365,-8,o), +(432,44,o), +(456,121,c), +(458,121,l), +(458,-182,l) +); +}, +{ +closed = 1; +nodes = ( +(176,26,o), +(106,112,o), +(106,259,cs), +(106,408,o), +(176,493,o), +(281,493,cs), +(393,493,o), +(458,397,o), +(458,295,cs), +(458,224,ls), +(458,122,o), +(393,26,o), +(281,26,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +1, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +0 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +1 +); +stem = -2; +target = ( +1, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +} +); +}; +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (319,0); +}, +{ +name = top; +pos = (319,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(575,-167,l), +(575,544,l), +(393,544,l), +(389,465,l), +(377,465,l), +(359,517,o), +(306,554,o), +(239,554,cs), +(116,554,o), +(35,451,o), +(35,272,cs), +(35,93,o), +(116,-10,o), +(239,-10,cs), +(306,-10,o), +(358,27,o), +(376,79,c), +(388,79,l), +(386,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(248,148,o), +(228,198,o), +(228,272,cs), +(228,347,o), +(251,397,o), +(314,397,cs), +(359,397,o), +(386,355,o), +(386,285,cs), +(386,259,ls), +(386,189,o), +(357,148,o), +(309,148,cs) +); +} +); +width = 635; +}, +{ +anchors = ( +{ +name = bottom; +pos = (133,0); +}, +{ +name = top; +pos = (239,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,-167,l), +(334,516,l), +(308,516,l), +(289,431,l), +(287,431,l), +(282,489,o), +(261,525,o), +(205,525,cs), +(143,525,o), +(87,463,o), +(45,262,cs), +(16,126,o), +(8,-10,o), +(110,-10,cs), +(153,-10,o), +(186,17,o), +(212,70,c), +(213,70,l), +(164,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(41,15,o), +(45,117,o), +(75,263,cs), +(107,421,o), +(145,498,o), +(210,498,cs), +(279,498,o), +(282,403,o), +(261,302,cs), +(240,199,ls), +(214,73,o), +(168,15,o), +(119,15,cs) +); +} +); +width = 341; +}, +{ +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (299,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,-167,l), +(497,541,l), +(326,541,l), +(306,469,l), +(301,469,l), +(289,524,o), +(256,551,o), +(200,551,cs), +(122,551,o), +(61,486,o), +(18,279,cs), +(-13,131,o), +(-23,-10,o), +(105,-10,cs), +(151,-10,o), +(190,15,o), +(213,57,c), +(220,57,l), +(173,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(173,122,o), +(167,151,o), +(192,269,cs), +(212,366,o), +(227,409,o), +(256,409,cs), +(280,409,o), +(286,383,o), +(265,277,cs), +(259,248,ls), +(241,159,o), +(225,122,o), +(198,122,cs) +); +} +); +width = 467; +}, +{ +anchors = ( +{ +name = bottom; +pos = (233,0); +}, +{ +name = top; +pos = (341,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(369,-167,l), +(510,517,l), +(476,517,l), +(447,383,l), +(444,383,l), +(432,465,o), +(368,526,o), +(269,526,cs), +(123,526,o), +(14,393,o), +(8,210,cs), +(3,75,o), +(75,-10,o), +(186,-10,cs), +(270,-10,o), +(344,34,o), +(385,103,c), +(387,103,l), +(332,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(103,23,o), +(42,91,o), +(46,211,cs), +(51,374,o), +(146,492,o), +(271,492,cs), +(379,492,o), +(446,400,o), +(423,279,cs), +(410,209,ls), +(391,109,o), +(307,23,o), +(198,23,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-167,l), +(555,517,l), +(522,517,l), +(492,391,l), +(488,391,l), +(468,472,o), +(403,526,o), +(312,526,cs), +(158,526,o), +(54,405,o), +(54,201,cs), +(54,74,o), +(128,-10,o), +(239,-10,cs), +(317,-10,o), +(389,26,o), +(431,103,c), +(432,103,l), +(376,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(149,24,o), +(94,96,o), +(94,205,cs), +(94,375,o), +(175,492,o), +(313,492,cs), +(434,492,o), +(496,399,o), +(467,259,cs), +(455,202,ls), +(432,95,o), +(355,24,o), +(246,24,cs) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (34,22); +}, +{ +name = top; +pos = (34,22); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(423,-167,l), +(571,544,l), +(385,544,l), +(362,459,l), +(351,459,l), +(335,512,o), +(284,554,o), +(210,554,cs), +(71,554,o), +(-22,445,o), +(-47,245,cs), +(-67,92,o), +(0,-10,o), +(118,-10,cs), +(197,-10,o), +(246,23,o), +(272,72,c), +(282,72,l), +(232,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(175,143,o), +(147,173,o), +(149,234,cs), +(153,335,o), +(197,401,o), +(261,401,cs), +(317,401,o), +(341,349,o), +(330,298,cs), +(313,223,ls), +(302,174,o), +(268,143,o), +(219,143,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,-167,l), +(659,544,l), +(477,544,l), +(450,457,l), +(444,457,l), +(425,515,o), +(361,554,o), +(291,554,cs), +(138,554,o), +(48,431,o), +(29,276,cs), +(8,105,o), +(80,-10,o), +(208,-10,cs), +(276,-10,o), +(336,20,o), +(361,67,c), +(368,66,l), +(320,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(244,143,o), +(211,193,o), +(224,281,cs), +(235,353,o), +(276,401,o), +(337,401,cs), +(399,401,o), +(428,351,o), +(414,287,cs), +(405,241,ls), +(392,182,o), +(361,143,o), +(304,143,cs) +); +} +); +width = 657; +}, +{ +anchors = ( +{ +name = bottom; +pos = (274,0); +}, +{ +name = top; +pos = (382,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,-167,l), +(624,517,l), +(594,517,l), +(560,370,l), +(556,370,l), +(541,463,o), +(454,527,o), +(335,527,cs), +(164,527,o), +(39,399,o), +(33,221,cs), +(28,80,o), +(120,-10,o), +(260,-10,cs), +(363,-10,o), +(452,37,o), +(500,109,c), +(503,109,l), +(446,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(143,24,o), +(66,101,o), +(70,223,cs), +(76,381,o), +(185,493,o), +(331,493,cs), +(482,493,o), +(561,394,o), +(531,247,cs), +(525,217,ls), +(504,102,o), +(399,24,o), +(268,24,cs) +); +} +); +width = 637; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = top; +pos = (422,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(587,-167,l), +(736,544,l), +(521,544,l), +(494,457,l), +(486,457,l), +(463,519,o), +(384,554,o), +(303,554,cs), +(137,554,o), +(21,434,o), +(13,248,cs), +(5,93,o), +(100,-10,o), +(248,-10,cs), +(320,-10,o), +(372,14,o), +(407,52,c), +(415,52,l), +(368,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(275,154,o), +(231,193,o), +(234,256,cs), +(236,337,o), +(286,389,o), +(358,387,cs), +(429,384,o), +(468,334,o), +(455,264,cs), +(451,248,ls), +(439,192,o), +(403,154,o), +(334,154,cs) +); +} +); +width = 723; +} +); +metricLeft = d; +metricRight = l; +unicode = 113; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/question.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/question.glyph new file mode 100644 index 00000000..6fc3efa6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/question.glyph @@ -0,0 +1,1393 @@ +{ +glyphname = question; +kernLeft = KO_question; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,223,l), +(301,233,ls), +(301,283,o), +(333,328,o), +(366,379,cs), +(398,429,o), +(431,484,o), +(431,553,cs), +(431,665,o), +(366,739,o), +(227,739,cs), +(94,739,o), +(7,667,o), +(13,504,c), +(172,504,l), +(170,559,o), +(186,583,o), +(218,583,cs), +(242,583,o), +(256,567,o), +(256,525,cs), +(256,492,o), +(239,461,o), +(218,428,cs), +(185,377,o), +(144,321,o), +(144,245,cs), +(144,223,l) +); +}, +{ +closed = 1; +nodes = ( +(275,-10,o), +(316,22,o), +(316,77,cs), +(316,132,o), +(275,164,o), +(220,164,cs), +(165,164,o), +(124,132,o), +(124,77,cs), +(124,22,o), +(165,-10,o), +(220,-10,cs) +); +} +); +width = 445; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,160,l), +(193,189,ls), +(193,268,o), +(221,327,o), +(248,388,cs), +(273,445,o), +(298,502,o), +(298,576,cs), +(298,673,o), +(259,739,o), +(171,739,cs), +(91,739,o), +(36,680,o), +(40,535,c), +(70,535,l), +(68,642,o), +(94,711,o), +(171,711,cs), +(228,711,o), +(266,673,o), +(266,574,cs), +(266,508,o), +(246,457,o), +(223,406,cs), +(194,341,o), +(162,278,o), +(162,188,cs), +(162,160,l) +); +}, +{ +closed = 1; +nodes = ( +(191,-6,o), +(202,4,o), +(202,18,cs), +(202,32,o), +(191,42,o), +(177,42,cs), +(163,42,o), +(152,32,o), +(152,18,cs), +(152,4,o), +(163,-6,o), +(177,-6,cs) +); +} +); +width = 324; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,165,l), +(274,178,ls), +(274,245,o), +(334,290,o), +(391,345,cs), +(443,395,o), +(493,454,o), +(493,545,cs), +(493,664,o), +(401,739,o), +(266,739,cs), +(127,739,o), +(35,667,o), +(27,543,c), +(62,543,l), +(68,641,o), +(141,706,o), +(264,706,cs), +(379,706,o), +(455,648,o), +(455,545,cs), +(455,469,o), +(418,418,o), +(375,374,cs), +(313,312,o), +(239,264,o), +(239,176,cs), +(239,165,l) +); +}, +{ +closed = 1; +nodes = ( +(275,-7,o), +(288,5,o), +(288,22,cs), +(288,39,o), +(275,51,o), +(258,51,cs), +(241,51,o), +(228,39,o), +(228,22,cs), +(228,5,o), +(241,-7,o), +(258,-7,cs) +); +} +); +width = 528; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(403,237,l), +(403,242,ls), +(403,273,o), +(448,301,o), +(495,341,cs), +(544,384,o), +(595,439,o), +(595,525,cs), +(595,653,o), +(499,738,o), +(301,738,cs), +(127,738,o), +(8,660,o), +(3,504,c), +(211,504,l), +(214,542,o), +(238,569,o), +(289,569,cs), +(337,569,o), +(365,550,o), +(365,504,cs), +(365,471,o), +(338,444,o), +(305,416,cs), +(259,376,o), +(202,331,o), +(202,256,cs), +(202,237,l) +); +}, +{ +closed = 1; +nodes = ( +(388,-10,o), +(422,29,o), +(422,83,cs), +(422,136,o), +(388,175,o), +(304,175,cs), +(220,175,o), +(186,136,o), +(186,83,cs), +(186,29,o), +(220,-10,o), +(304,-10,cs) +); +} +); +width = 603; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,120,l), +(169,179,ls), +(172,268,o), +(204,333,o), +(233,397,cs), +(257,451,o), +(278,504,o), +(278,571,cs), +(278,673,o), +(239,739,o), +(151,739,cs), +(71,739,o), +(19,680,o), +(20,535,c), +(50,535,l), +(51,642,o), +(74,711,o), +(151,711,cs), +(208,711,o), +(246,673,o), +(246,569,cs), +(246,508,o), +(228,460,o), +(206,412,cs), +(175,344,o), +(138,277,o), +(142,178,cs), +(144,120,l) +); +}, +{ +closed = 1; +nodes = ( +(172,-6,o), +(184,5,o), +(184,21,cs), +(184,37,o), +(172,48,o), +(157,48,cs), +(142,48,o), +(130,37,o), +(130,21,cs), +(130,5,o), +(142,-6,o), +(157,-6,cs) +); +} +); +width = 284; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,213,l), +(294,243,ls), +(300,288,o), +(332,325,o), +(360,368,cs), +(392,419,o), +(422,476,o), +(422,549,cs), +(422,672,o), +(351,739,o), +(219,739,cs), +(76,739,o), +(-1,656,o), +(2,504,c), +(161,504,l), +(162,556,o), +(178,583,o), +(209,583,cs), +(233,583,o), +(247,567,o), +(247,539,cs), +(247,511,o), +(223,484,o), +(201,450,cs), +(166,400,o), +(130,339,o), +(134,255,cs), +(136,213,l) +); +}, +{ +closed = 1; +nodes = ( +(266,-10,o), +(307,31,o), +(307,86,cs), +(307,141,o), +(266,182,o), +(211,182,cs), +(156,182,o), +(115,141,o), +(115,86,cs), +(115,31,o), +(156,-10,o), +(211,-10,cs) +); +} +); +width = 427; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(266,179,l), +(266,200,ls), +(266,289,o), +(316,316,o), +(379,375,cs), +(441,433,o), +(476,480,o), +(476,553,cs), +(476,665,o), +(395,738,o), +(271,738,cs), +(139,738,o), +(53,655,o), +(54,529,c), +(95,529,l), +(94,628,o), +(157,700,o), +(269,700,cs), +(367,700,o), +(433,644,o), +(433,553,cs), +(433,494,o), +(403,448,o), +(349,398,cs), +(293,347,o), +(224,304,o), +(224,200,cs), +(224,179,l) +); +}, +{ +closed = 1; +nodes = ( +(273,0,l), +(273,101,l), +(219,101,l), +(219,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,139,l), +(250,194,ls), +(256,279,o), +(279,313,o), +(348,379,cs), +(406,434,o), +(450,473,o), +(450,549,cs), +(450,664,o), +(368,738,o), +(241,738,cs), +(109,738,o), +(25,655,o), +(20,520,c), +(57,520,l), +(62,632,o), +(124,705,o), +(239,705,cs), +(344,705,o), +(412,644,o), +(412,549,cs), +(412,500,o), +(390,470,o), +(329,412,cs), +(263,349,o), +(216,298,o), +(220,190,cs), +(222,139,l) +); +}, +{ +closed = 1; +nodes = ( +(255,-7,o), +(269,7,o), +(269,27,cs), +(269,47,o), +(255,61,o), +(235,61,cs), +(215,61,o), +(201,47,o), +(201,27,cs), +(201,7,o), +(215,-7,o), +(235,-7,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 477; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(380,226,l), +(380,233,ls), +(380,259,o), +(391,282,o), +(435,326,cs), +(500,392,o), +(553,442,o), +(553,534,cs), +(553,656,o), +(459,738,o), +(296,738,cs), +(130,738,o), +(22,659,o), +(23,509,c), +(205,509,l), +(205,551,o), +(235,578,o), +(287,578,cs), +(331,578,o), +(361,555,o), +(361,514,cs), +(361,475,o), +(342,451,o), +(296,404,cs), +(236,343,o), +(213,299,o), +(213,245,cs), +(213,226,l) +); +}, +{ +closed = 1; +nodes = ( +(381,0,l), +(381,152,l), +(211,152,l), +(211,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,235,l), +(366,261,ls), +(376,297,o), +(411,310,o), +(463,343,cs), +(533,386,o), +(563,441,o), +(563,527,cs), +(563,662,o), +(463,738,o), +(281,738,cs), +(116,738,o), +(6,646,o), +(4,498,c), +(201,498,l), +(206,547,o), +(239,578,o), +(285,578,cs), +(333,578,o), +(354,560,o), +(354,528,cs), +(354,504,o), +(334,491,o), +(296,464,cs), +(235,421,o), +(180,372,o), +(193,276,cs), +(199,235,l) +); +}, +{ +closed = 1; +nodes = ( +(337,-8,o), +(381,36,o), +(381,95,cs), +(381,154,o), +(337,198,o), +(278,198,cs), +(219,198,o), +(175,154,o), +(175,95,cs), +(175,36,o), +(219,-8,o), +(278,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 563; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,128,l), +(277,164,ls), +(284,244,o), +(318,292,o), +(396,348,cs), +(474,404,o), +(525,444,o), +(525,540,cs), +(525,668,o), +(444,739,o), +(276,739,cs), +(113,739,o), +(27,659,o), +(15,513,c), +(50,513,l), +(61,638,o), +(134,706,o), +(274,706,cs), +(419,706,o), +(488,647,o), +(488,540,cs), +(488,465,o), +(449,435,o), +(373,377,cs), +(294,318,o), +(246,262,o), +(249,162,cs), +(250,128,l) +); +}, +{ +closed = 1; +nodes = ( +(284,-7,o), +(299,7,o), +(299,27,cs), +(299,47,o), +(284,61,o), +(265,61,cs), +(246,61,o), +(231,47,o), +(231,27,cs), +(231,7,o), +(246,-7,o), +(265,-7,cs) +); +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,227,l), +(435,232,ls), +(442,251,o), +(474,272,o), +(547,320,cs), +(618,366,o), +(652,414,o), +(652,511,cs), +(652,659,o), +(539,738,o), +(333,738,cs), +(142,738,o), +(12,660,o), +(0,484,c), +(232,484,l), +(240,537,o), +(276,565,o), +(329,565,cs), +(387,565,o), +(417,546,o), +(417,515,cs), +(417,494,o), +(387,477,o), +(354,454,cs), +(284,406,o), +(234,354,o), +(234,248,cs), +(234,227,l) +); +}, +{ +closed = 1; +nodes = ( +(409,-10,o), +(456,29,o), +(456,91,cs), +(456,152,o), +(409,190,o), +(336,190,cs), +(263,190,o), +(216,152,o), +(216,91,cs), +(216,29,o), +(263,-10,o), +(336,-10,cs) +); +} +); +width = 652; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(266,179,l), +(266,200,ls), +(266,289,o), +(316,316,o), +(379,375,cs), +(441,433,o), +(476,480,o), +(476,553,cs), +(476,665,o), +(395,738,o), +(271,738,cs), +(139,738,o), +(53,655,o), +(54,529,c), +(95,529,l), +(94,628,o), +(157,700,o), +(269,700,cs), +(367,700,o), +(433,644,o), +(433,553,cs), +(433,494,o), +(403,448,o), +(349,398,cs), +(293,347,o), +(224,304,o), +(224,200,cs), +(224,179,l) +); +}, +{ +closed = 1; +nodes = ( +(273,0,l), +(273,101,l), +(219,101,l), +(219,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(281,199,l), +(281,210,ls), +(281,274,o), +(307,319,o), +(371,387,cs), +(421,439,o), +(458,482,o), +(458,553,cs), +(458,664,o), +(386,738,o), +(258,738,cs), +(134,738,o), +(51,654,o), +(49,529,c), +(84,529,l), +(86,631,o), +(149,705,o), +(256,705,cs), +(354,705,o), +(421,656,o), +(421,553,cs), +(421,506,o), +(396,467,o), +(345,411,cs), +(273,336,o), +(246,282,o), +(246,206,cs), +(246,199,l) +); +}, +{ +closed = 1; +nodes = ( +(285,-7,o), +(300,7,o), +(300,27,cs), +(300,48,o), +(285,63,o), +(264,63,cs), +(246,63,o), +(232,48,o), +(232,27,cs), +(232,7,o), +(246,-7,o), +(264,-7,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 512; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(377,226,l), +(377,233,ls), +(377,259,o), +(388,282,o), +(432,326,cs), +(497,392,o), +(550,442,o), +(550,534,cs), +(550,656,o), +(456,738,o), +(293,738,cs), +(127,738,o), +(19,659,o), +(20,509,c), +(202,509,l), +(202,551,o), +(232,578,o), +(284,578,cs), +(328,578,o), +(358,555,o), +(358,514,cs), +(358,475,o), +(339,451,o), +(293,404,cs), +(233,343,o), +(210,299,o), +(210,245,cs), +(210,226,l) +); +}, +{ +closed = 1; +nodes = ( +(378,0,l), +(378,152,l), +(208,152,l), +(208,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(384,260,l), +(384,261,ls), +(384,310,o), +(420,340,o), +(456,367,cs), +(514,411,o), +(544,462,o), +(544,518,cs), +(544,660,o), +(449,738,o), +(281,738,cs), +(119,738,o), +(14,646,o), +(12,508,c), +(210,508,l), +(210,550,o), +(238,578,o), +(280,578,cs), +(320,578,o), +(346,554,o), +(346,522,cs), +(346,485,o), +(319,467,o), +(286,440,cs), +(227,391,o), +(198,354,o), +(198,290,cs), +(198,260,l) +); +}, +{ +closed = 1; +nodes = ( +(352,-8,o), +(396,35,o), +(396,93,cs), +(396,151,o), +(352,194,o), +(293,194,cs), +(234,194,o), +(190,151,o), +(190,93,cs), +(190,35,o), +(234,-8,o), +(293,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 559; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,160,l), +(180,188,ls), +(198,271,o), +(241,328,o), +(281,388,cs), +(315,439,o), +(347,491,o), +(362,562,cs), +(384,662,o), +(358,738,o), +(260,738,cs), +(187,738,o), +(128,682,o), +(102,545,c), +(132,545,l), +(151,647,o), +(189,710,o), +(258,710,cs), +(334,710,o), +(349,649,o), +(331,565,cs), +(318,504,o), +(291,457,o), +(261,412,cs), +(217,346,o), +(168,284,o), +(149,189,cs), +(143,160,l) +); +}, +{ +closed = 1; +nodes = ( +(149,-6,o), +(160,4,o), +(160,19,cs), +(160,33,o), +(150,42,o), +(137,42,cs), +(123,42,o), +(112,32,o), +(112,17,cs), +(112,3,o), +(122,-6,o), +(135,-6,cs) +); +} +); +width = 325; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,223,l), +(290,227,ls), +(303,277,o), +(344,319,o), +(386,366,cs), +(427,412,o), +(468,464,o), +(483,534,cs), +(511,669,o), +(432,738,o), +(293,738,cs), +(176,738,o), +(88,670,o), +(65,514,c), +(222,514,l), +(231,560,o), +(250,583,o), +(277,583,cs), +(307,583,o), +(315,561,o), +(306,521,cs), +(300,490,o), +(278,462,o), +(252,432,cs), +(209,383,o), +(156,329,o), +(140,252,cs), +(134,223,l) +); +}, +{ +closed = 1; +nodes = ( +(241,-10,o), +(283,27,o), +(283,82,cs), +(283,131,o), +(250,164,o), +(193,164,cs), +(130,164,o), +(88,127,o), +(88,72,cs), +(88,23,o), +(121,-10,o), +(178,-10,cs) +); +} +); +width = 442; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,168,l), +(262,187,ls), +(283,266,o), +(347,312,o), +(405,364,cs), +(460,414,o), +(511,469,o), +(514,562,cs), +(517,667,o), +(444,737,o), +(330,737,cs), +(217,737,o), +(129,676,o), +(104,545,c), +(140,545,l), +(160,640,o), +(216,704,o), +(325,704,cs), +(418,704,o), +(478,653,o), +(475,562,cs), +(472,486,o), +(434,439,o), +(388,396,cs), +(323,338,o), +(244,289,o), +(226,185,cs), +(223,168,l) +); +}, +{ +closed = 1; +nodes = ( +(230,-7,o), +(243,4,o), +(243,23,cs), +(243,40,o), +(231,51,o), +(214,51,cs), +(196,51,o), +(183,40,o), +(183,21,cs), +(183,4,o), +(195,-7,o), +(212,-7,cs) +); +} +); +width = 507; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,220,l), +(369,226,ls), +(376,270,o), +(430,301,o), +(485,342,cs), +(543,386,o), +(602,441,o), +(605,534,cs), +(610,682,o), +(494,738,o), +(356,738,cs), +(202,738,o), +(88,650,o), +(71,506,c), +(255,506,l), +(264,552,o), +(295,577,o), +(341,577,cs), +(382,577,o), +(408,555,o), +(406,517,cs), +(405,476,o), +(379,450,o), +(346,425,cs), +(293,384,o), +(222,345,o), +(206,254,cs), +(200,220,l) +); +}, +{ +closed = 1; +nodes = ( +(311,-8,o), +(355,29,o), +(355,87,cs), +(355,135,o), +(319,167,o), +(265,167,cs), +(201,167,o), +(157,130,o), +(157,72,cs), +(157,24,o), +(193,-8,o), +(247,-8,cs) +); +} +); +width = 578; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,164,l), +(254,181,l), +(266,240,o), +(334,277,o), +(401,323,cs), +(474,372,o), +(546,432,o), +(550,543,cs), +(554,659,o), +(470,736,o), +(331,736,cs), +(212,736,o), +(118,679,o), +(90,559,c), +(124,559,l), +(145,646,o), +(217,704,o), +(324,704,cs), +(433,704,o), +(515,655,o), +(511,543,cs), +(508,447,o), +(449,394,o), +(385,349,cs), +(314,300,o), +(237,260,o), +(218,182,c), +(215,164,l) +); +}, +{ +closed = 1; +nodes = ( +(227,-7,o), +(240,4,o), +(240,23,cs), +(240,40,o), +(228,51,o), +(211,51,cs), +(193,51,o), +(180,40,o), +(180,21,cs), +(180,4,o), +(192,-7,o), +(209,-7,cs) +); +} +); +width = 529; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,234,l), +(391,240,ls), +(399,265,o), +(443,290,o), +(491,322,cs), +(557,367,o), +(632,428,o), +(635,527,cs), +(641,691,o), +(495,738,o), +(372,738,cs), +(198,738,o), +(83,666,o), +(52,503,c), +(256,503,l), +(269,546,o), +(289,570,o), +(347,570,cs), +(372,570,o), +(414,562,o), +(412,512,cs), +(411,473,o), +(377,445,o), +(336,416,cs), +(279,376,o), +(210,334,o), +(196,256,cs), +(192,234,l) +); +}, +{ +closed = 1; +nodes = ( +(342,-10,o), +(388,26,o), +(388,90,cs), +(388,141,o), +(347,175,o), +(275,175,cs), +(194,175,o), +(148,139,o), +(148,75,cs), +(148,24,o), +(189,-10,o), +(261,-10,cs) +); +} +); +width = 593; +} +); +unicode = 63; +userData = { +KernOnName = question; +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/question.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/question.ss01.glyph new file mode 100644 index 00000000..103bd084 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/question.ss01.glyph @@ -0,0 +1,1134 @@ +{ +glyphname = question.ss01; +kernLeft = KO_question.ss01; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,223,l), +(301,233,ls), +(301,333,o), +(431,416,o), +(431,553,cs), +(431,665,o), +(366,739,o), +(227,739,cs), +(94,739,o), +(7,667,o), +(13,504,c), +(172,504,l), +(170,559,o), +(186,583,o), +(218,583,cs), +(242,583,o), +(256,567,o), +(256,525,cs), +(256,441,o), +(144,370,o), +(144,245,cs), +(144,223,l) +); +}, +{ +closed = 1; +nodes = ( +(307,0,l), +(307,164,l), +(138,164,l), +(138,0,l) +); +} +); +width = 445; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(171,160,l), +(171,189,ls), +(171,342,o), +(276,424,o), +(276,576,cs), +(276,673,o), +(237,739,o), +(149,739,cs), +(69,739,o), +(14,680,o), +(18,535,c), +(48,535,l), +(46,642,o), +(72,711,o), +(149,711,cs), +(206,711,o), +(244,673,o), +(244,574,cs), +(244,426,o), +(140,349,o), +(140,188,cs), +(140,160,l) +); +}, +{ +closed = 1; +nodes = ( +(179,0,l), +(179,55,l), +(132,55,l), +(132,0,l) +); +} +); +width = 302; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,165,l), +(274,178,ls), +(274,307,o), +(493,354,o), +(493,545,cs), +(493,664,o), +(401,739,o), +(266,739,cs), +(127,739,o), +(35,667,o), +(27,543,c), +(62,543,l), +(68,641,o), +(141,706,o), +(264,706,cs), +(379,706,o), +(455,648,o), +(455,545,cs), +(455,361,o), +(239,326,o), +(239,176,cs), +(239,165,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(280,60,l), +(236,60,l), +(236,0,l) +); +} +); +width = 528; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(403,237,l), +(403,242,ls), +(403,305,o), +(595,358,o), +(595,525,cs), +(595,653,o), +(499,738,o), +(301,738,cs), +(127,738,o), +(8,660,o), +(3,504,c), +(211,504,l), +(214,542,o), +(238,569,o), +(289,569,cs), +(337,569,o), +(365,550,o), +(365,504,cs), +(365,423,o), +(202,383,o), +(202,256,cs), +(202,237,l) +); +}, +{ +closed = 1; +nodes = ( +(407,0,l), +(407,174,l), +(201,174,l), +(201,0,l) +); +} +); +width = 603; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,160,l), +(161,189,ls), +(161,342,o), +(266,424,o), +(266,576,cs), +(266,673,o), +(227,739,o), +(139,739,cs), +(59,739,o), +(4,680,o), +(8,535,c), +(38,535,l), +(36,642,o), +(62,711,o), +(139,711,cs), +(196,711,o), +(234,673,o), +(234,574,cs), +(234,426,o), +(130,349,o), +(130,188,cs), +(130,160,l) +); +}, +{ +closed = 1; +nodes = ( +(169,0,l), +(169,55,l), +(122,55,l), +(122,0,l) +); +} +); +width = 272; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,223,l), +(292,233,ls), +(292,333,o), +(422,416,o), +(422,553,cs), +(422,665,o), +(357,739,o), +(218,739,cs), +(85,739,o), +(-2,667,o), +(4,504,c), +(163,504,l), +(161,559,o), +(177,583,o), +(209,583,cs), +(233,583,o), +(247,567,o), +(247,525,cs), +(247,441,o), +(135,370,o), +(135,245,cs), +(135,223,l) +); +}, +{ +closed = 1; +nodes = ( +(298,0,l), +(298,164,l), +(129,164,l), +(129,0,l) +); +} +); +width = 427; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262,179,l), +(262,200,ls), +(262,289,o), +(312,316,o), +(375,375,cs), +(437,433,o), +(472,480,o), +(472,553,cs), +(472,665,o), +(391,738,o), +(267,738,cs), +(135,738,o), +(49,655,o), +(50,529,c), +(91,529,l), +(90,628,o), +(153,700,o), +(265,700,cs), +(363,700,o), +(429,644,o), +(429,553,cs), +(429,494,o), +(399,448,o), +(345,398,cs), +(289,347,o), +(220,304,o), +(220,200,cs), +(220,179,l) +); +}, +{ +closed = 1; +nodes = ( +(269,0,l), +(269,101,l), +(215,101,l), +(215,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,169,l), +(260,190,ls), +(260,329,o), +(437,385,o), +(437,553,cs), +(437,664,o), +(364,738,o), +(237,738,cs), +(109,738,o), +(24,654,o), +(25,529,c), +(62,529,l), +(61,631,o), +(124,705,o), +(235,705,cs), +(333,705,o), +(398,656,o), +(398,553,cs), +(398,392,o), +(223,344,o), +(223,186,cs), +(223,169,l) +); +}, +{ +closed = 1; +nodes = ( +(265,0,l), +(265,61,l), +(220,61,l), +(220,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 469; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(377,226,l), +(377,233,ls), +(377,259,o), +(388,282,o), +(432,326,cs), +(497,392,o), +(550,442,o), +(550,534,cs), +(550,656,o), +(456,738,o), +(293,738,cs), +(127,738,o), +(19,659,o), +(20,509,c), +(202,509,l), +(202,551,o), +(232,578,o), +(284,578,cs), +(328,578,o), +(358,555,o), +(358,514,cs), +(358,475,o), +(339,451,o), +(293,404,cs), +(233,343,o), +(210,299,o), +(210,245,cs), +(210,226,l) +); +}, +{ +closed = 1; +nodes = ( +(378,0,l), +(378,152,l), +(208,152,l), +(208,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,228,l), +(363,234,ls), +(363,322,o), +(536,378,o), +(536,533,cs), +(536,656,o), +(453,738,o), +(278,738,cs), +(112,738,o), +(2,646,o), +(3,508,c), +(189,508,l), +(189,550,o), +(221,578,o), +(269,578,cs), +(312,578,o), +(340,554,o), +(340,512,cs), +(340,426,o), +(193,372,o), +(193,247,cs), +(193,228,l) +); +}, +{ +closed = 1; +nodes = ( +(368,0,l), +(368,164,l), +(188,164,l), +(188,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 540; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,165,l), +(264,178,ls), +(264,307,o), +(483,354,o), +(483,545,cs), +(483,664,o), +(391,739,o), +(256,739,cs), +(117,739,o), +(25,667,o), +(17,543,c), +(52,543,l), +(58,641,o), +(131,706,o), +(254,706,cs), +(369,706,o), +(445,648,o), +(445,545,cs), +(445,361,o), +(229,326,o), +(229,176,cs), +(229,165,l) +); +}, +{ +closed = 1; +nodes = ( +(270,0,l), +(270,60,l), +(226,60,l), +(226,0,l) +); +} +); +width = 508; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(398,237,l), +(398,242,ls), +(398,305,o), +(590,358,o), +(590,525,cs), +(590,653,o), +(494,738,o), +(296,738,cs), +(122,738,o), +(3,660,o), +(-2,504,c), +(206,504,l), +(209,542,o), +(233,569,o), +(284,569,cs), +(332,569,o), +(360,550,o), +(360,504,cs), +(360,423,o), +(197,383,o), +(197,256,cs), +(197,237,l) +); +}, +{ +closed = 1; +nodes = ( +(402,0,l), +(402,174,l), +(196,174,l), +(196,0,l) +); +} +); +width = 593; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262,179,l), +(262,200,ls), +(262,289,o), +(312,316,o), +(375,375,cs), +(437,433,o), +(472,480,o), +(472,553,cs), +(472,665,o), +(391,738,o), +(267,738,cs), +(135,738,o), +(49,655,o), +(50,529,c), +(91,529,l), +(90,628,o), +(153,700,o), +(265,700,cs), +(363,700,o), +(429,644,o), +(429,553,cs), +(429,494,o), +(399,448,o), +(345,398,cs), +(289,347,o), +(220,304,o), +(220,200,cs), +(220,179,l) +); +}, +{ +closed = 1; +nodes = ( +(269,0,l), +(269,101,l), +(215,101,l), +(215,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(277,169,l), +(277,190,ls), +(277,329,o), +(450,385,o), +(450,553,cs), +(450,664,o), +(379,738,o), +(254,738,cs), +(130,738,o), +(47,654,o), +(48,529,c), +(83,529,l), +(82,631,o), +(145,705,o), +(252,705,cs), +(349,705,o), +(413,656,o), +(413,553,cs), +(413,392,o), +(242,344,o), +(242,186,cs), +(242,169,l) +); +}, +{ +closed = 1; +nodes = ( +(282,0,l), +(282,61,l), +(239,61,l), +(239,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 504; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(377,226,l), +(377,233,ls), +(377,259,o), +(388,282,o), +(432,326,cs), +(497,392,o), +(550,442,o), +(550,534,cs), +(550,656,o), +(456,738,o), +(293,738,cs), +(127,738,o), +(19,659,o), +(20,509,c), +(202,509,l), +(202,551,o), +(232,578,o), +(284,578,cs), +(328,578,o), +(358,555,o), +(358,514,cs), +(358,475,o), +(339,451,o), +(293,404,cs), +(233,343,o), +(210,299,o), +(210,245,cs), +(210,226,l) +); +}, +{ +closed = 1; +nodes = ( +(378,0,l), +(378,152,l), +(208,152,l), +(208,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(370,228,l), +(370,234,ls), +(370,322,o), +(537,378,o), +(537,533,cs), +(537,656,o), +(456,738,o), +(286,738,cs), +(125,738,o), +(18,646,o), +(19,508,c), +(203,508,l), +(203,550,o), +(233,578,o), +(277,578,cs), +(317,578,o), +(343,554,o), +(343,512,cs), +(343,426,o), +(202,372,o), +(202,247,cs), +(202,228,l) +); +}, +{ +closed = 1; +nodes = ( +(375,0,l), +(375,164,l), +(197,164,l), +(197,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 559; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,160,l), +(155,188,ls), +(187,340,o), +(305,407,o), +(337,562,cs), +(359,662,o), +(333,738,o), +(235,738,cs), +(162,738,o), +(103,682,o), +(77,545,c), +(107,545,l), +(126,647,o), +(164,710,o), +(233,710,cs), +(309,710,o), +(324,649,o), +(306,565,cs), +(275,417,o), +(158,350,o), +(124,189,cs), +(118,160,l) +); +}, +{ +closed = 1; +nodes = ( +(126,0,l), +(138,55,l), +(91,55,l), +(79,0,l) +); +} +); +width = 300; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,223,l), +(289,227,ls), +(316,325,o), +(452,392,o), +(482,534,cs), +(510,669,o), +(431,738,o), +(292,738,cs), +(175,738,o), +(87,670,o), +(64,514,c), +(221,514,l), +(230,560,o), +(249,583,o), +(276,583,cs), +(306,583,o), +(314,561,o), +(305,521,cs), +(289,441,o), +(165,377,o), +(139,252,cs), +(133,223,l) +); +}, +{ +closed = 1; +nodes = ( +(248,0,l), +(281,164,l), +(114,164,l), +(80,0,l) +); +} +); +width = 441; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,168,l), +(262,187,ls), +(300,344,o), +(514,372,o), +(514,568,cs), +(514,670,o), +(442,737,o), +(330,737,cs), +(217,737,o), +(129,676,o), +(104,545,c), +(140,545,l), +(160,640,o), +(216,704,o), +(325,704,cs), +(416,704,o), +(475,655,o), +(475,568,cs), +(475,380,o), +(263,364,o), +(226,185,cs), +(223,168,l) +); +}, +{ +closed = 1; +nodes = ( +(231,0,l), +(243,61,l), +(198,61,l), +(186,0,l) +); +} +); +width = 507; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,220,l), +(369,226,ls), +(387,318,o), +(605,355,o), +(605,543,cs), +(605,684,o), +(491,738,o), +(356,738,cs), +(202,738,o), +(88,650,o), +(71,506,c), +(255,506,l), +(264,552,o), +(295,577,o), +(341,577,cs), +(381,577,o), +(406,557,o), +(406,521,cs), +(406,411,o), +(233,404,o), +(206,254,cs), +(200,220,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(362,164,l), +(184,164,l), +(151,0,l) +); +} +); +width = 578; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,164,l), +(254,181,l), +(279,305,o), +(550,330,o), +(550,551,cs), +(550,662,o), +(467,736,o), +(331,736,cs), +(212,736,o), +(118,679,o), +(90,559,c), +(124,559,l), +(145,646,o), +(217,704,o), +(324,704,cs), +(430,704,o), +(511,657,o), +(511,551,cs), +(511,341,o), +(254,333,o), +(218,182,c), +(215,164,l) +); +}, +{ +closed = 1; +nodes = ( +(227,0,l), +(239,60,l), +(195,60,l), +(183,0,l) +); +} +); +width = 529; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,234,l), +(391,240,ls), +(405,303,o), +(635,357,o), +(635,537,cs), +(635,693,o), +(493,738,o), +(372,738,cs), +(198,738,o), +(83,666,o), +(52,503,c), +(256,503,l), +(269,546,o), +(289,570,o), +(347,570,cs), +(371,570,o), +(412,562,o), +(412,515,cs), +(412,419,o), +(221,392,o), +(196,256,cs), +(192,234,l) +); +}, +{ +closed = 1; +nodes = ( +(345,0,l), +(380,173,l), +(178,173,l), +(143,0,l) +); +} +); +width = 591; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.case.glyph new file mode 100644 index 00000000..64b811b4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.case.glyph @@ -0,0 +1,192 @@ +{ +color = 6; +glyphname = questiondown.case; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,213); +ref = questiondown; +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,188); +ref = questiondown; +} +); +width = 445; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,213); +ref = questiondown; +} +); +width = 528; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,185); +ref = questiondown; +} +); +width = 603; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,213); +ref = questiondown; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,188); +ref = questiondown; +} +); +width = 427; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,213); +ref = questiondown; +} +); +width = 509; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,184); +ref = questiondown; +} +); +width = 552; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,213); +ref = questiondown; +} +); +width = 528; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +pos = (0,185); +ref = questiondown; +} +); +width = 652; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,213); +ref = questiondown; +} +); +width = 512; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,184); +ref = questiondown; +} +); +width = 559; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (44,213); +ref = questiondown; +} +); +width = 325; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (39,188); +ref = questiondown; +} +); +width = 442; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (44,213); +ref = questiondown; +} +); +width = 507; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (38,184); +ref = questiondown; +} +); +width = 578; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (44,213); +ref = questiondown; +} +); +width = 529; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (38,185); +ref = questiondown; +} +); +width = 593; +} +); +metricLeft = questiondown; +metricRight = questiondown; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.glyph new file mode 100644 index 00000000..b17e3cb5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.glyph @@ -0,0 +1,419 @@ +{ +color = 6; +glyphname = questiondown; +kernRight = KO_questiondown; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (445,541); +ref = question; +} +); +width = 445; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (324,516); +ref = question; +} +); +width = 324; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (528,517); +ref = question; +} +); +width = 528; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (603,544); +ref = question; +} +); +width = 603; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (324,516); +ref = question; +} +); +width = 324; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (427,541); +ref = question; +} +); +width = 427; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (509,517); +ref = question; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 509; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (552,544); +ref = question; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 552; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (528,517); +ref = question; +} +); +width = 528; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (652,544); +ref = question; +} +); +width = 652; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (512,517); +ref = question; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 512; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (559,544); +ref = question; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 559; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (325,516); +ref = question; +} +); +width = 325; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (442,541); +ref = question; +} +); +width = 442; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (507,517); +ref = question; +} +); +width = 507; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (578,544); +ref = question; +} +); +width = 578; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (529,517); +ref = question; +} +); +width = 529; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (593,544); +ref = question; +} +); +width = 593; +} +); +metricLeft = S; +metricRight = S; +unicode = 191; +userData = { +KernOnSpecialSpacing = { +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.ss01.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.ss01.case.glyph new file mode 100644 index 00000000..5c92778f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.ss01.case.glyph @@ -0,0 +1,191 @@ +{ +color = 6; +glyphname = questiondown.ss01.case; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,213); +ref = questiondown.ss01; +} +); +width = 302; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,188); +ref = questiondown.ss01; +} +); +width = 445; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,213); +ref = questiondown.ss01; +} +); +width = 528; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,185); +ref = questiondown.ss01; +} +); +width = 603; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +pos = (0,213); +ref = questiondown.ss01; +} +); +width = 272; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,188); +ref = questiondown.ss01; +} +); +width = 427; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,213); +ref = questiondown.ss01; +} +); +width = 509; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,184); +ref = questiondown.ss01; +} +); +width = 552; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,213); +ref = questiondown.ss01; +} +); +width = 528; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +pos = (0,185); +ref = questiondown.ss01; +} +); +width = 593; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,213); +ref = questiondown.ss01; +} +); +width = 504; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,184); +ref = questiondown.ss01; +} +); +width = 559; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (44,213); +ref = questiondown.ss01; +} +); +width = 300; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (39,188); +ref = questiondown.ss01; +} +); +width = 441; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (44,213); +ref = questiondown.ss01; +} +); +width = 507; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (38,184); +ref = questiondown.ss01; +} +); +width = 578; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (44,213); +ref = questiondown.ss01; +} +); +width = 529; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (38,185); +ref = questiondown.ss01; +} +); +width = 591; +} +); +metricLeft = questiondown.ss01; +metricRight = questiondown.ss01; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.ss01.glyph new file mode 100644 index 00000000..f29130da --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/questiondown.ss01.glyph @@ -0,0 +1,412 @@ +{ +color = 6; +glyphname = questiondown.ss01; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (445,541); +ref = question.ss01; +} +); +width = 445; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (302,516); +ref = question.ss01; +} +); +width = 302; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (528,517); +ref = question.ss01; +} +); +width = 528; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (603,544); +ref = question.ss01; +} +); +width = 603; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (272,516); +ref = question.ss01; +} +); +width = 272; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (427,541); +ref = question.ss01; +} +); +width = 427; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (509,517); +ref = question.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 509; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (552,544); +ref = question.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 552; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (528,517); +ref = question.ss01; +} +); +width = 528; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (593,544); +ref = question.ss01; +} +); +width = 593; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (504,517); +ref = question.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 504; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (559,544); +ref = question.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 559; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (300,516); +ref = question.ss01; +} +); +width = 300; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (441,541); +ref = question.ss01; +} +); +width = 441; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (507,517); +ref = question.ss01; +} +); +width = 507; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (578,544); +ref = question.ss01; +} +); +width = 578; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (529,517); +ref = question.ss01; +} +); +width = 529; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (591,544); +ref = question.ss01; +} +); +width = 591; +} +); +metricLeft = "=|question"; +metricRight = "=|question"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotedbl.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedbl.glyph new file mode 100644 index 00000000..8f3cc2db --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedbl.glyph @@ -0,0 +1,499 @@ +{ +color = 6; +glyphname = quotedbl; +kernLeft = KO_quotedbl; +kernRight = KO_quotedbl; +layers = ( +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (204,0); +ref = quotesingle; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (204,0); +ref = quotesingle; +} +); +width = 389; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (131,0); +ref = quotesingle; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (131,0); +ref = quotesingle; +} +); +width = 253; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (161,0); +ref = quotesingle; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (161,0); +ref = quotesingle; +} +); +width = 296; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (252,0); +ref = quotesingle; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (252,0); +ref = quotesingle; +} +); +width = 471; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (131,0); +ref = quotesingle; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = quotesingle; +}, +{ +alignment = -1; +pos = (131,0); +ref = quotesingle; +} +); +width = 253; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (204,0); +ref = quotesingle; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (204,0); +ref = quotesingle; +} +); +width = 375; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (161,0); +ref = quotesingle; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = quotesingle; +}, +{ +alignment = -1; +pos = (161,0); +ref = quotesingle; +} +); +width = 327; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (247,0); +ref = quotesingle; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = quotesingle; +}, +{ +alignment = -1; +pos = (247,0); +ref = quotesingle; +} +); +width = 456; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (161,0); +ref = quotesingle; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = quotesingle; +}, +{ +alignment = -1; +pos = (161,0); +ref = quotesingle; +} +); +width = 296; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (252,0); +ref = quotesingle; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = quotesingle; +}, +{ +alignment = -1; +pos = (252,0); +ref = quotesingle; +} +); +width = 471; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (161,0); +ref = quotesingle; +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (157,0); +ref = quotesingle; +} +); +width = 324; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (247,0); +ref = quotesingle; +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (227,0); +ref = quotesingle; +} +); +width = 452; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(178,624,l), +(199,729,l), +(171,729,l), +(150,624,l), +(127,493,l), +(147,493,l) +); +}, +{ +closed = 1; +nodes = ( +(308,624,l), +(329,729,l), +(301,729,l), +(280,624,l), +(257,493,l), +(277,493,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (130,0); +ref = quotesingle; +} +); +width = 252; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (208,0); +ref = quotesingle; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (208,0); +ref = quotesingle; +} +); +width = 392; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (160,0); +ref = quotesingle; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (160,0); +ref = quotesingle; +} +); +width = 326; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (242,0); +ref = quotesingle; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (242,0); +ref = quotesingle; +} +); +width = 471; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (160,0); +ref = quotesingle; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (160,0); +ref = quotesingle; +} +); +width = 295; +}, +{ +background = { +shapes = ( +{ +ref = quotesingle; +}, +{ +pos = (249,0); +ref = quotesingle; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (249,0); +ref = quotesingle; +} +); +width = 468; +} +); +unicode = 34; +userData = { +KernOnName = quotedbl; +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblbase.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblbase.glyph new file mode 100644 index 00000000..bf6d9dae --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblbase.glyph @@ -0,0 +1,716 @@ +{ +color = 6; +glyphname = quotedblbase; +kernRight = KO_quotedblbase; +layers = ( +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (224,0); +ref = comma; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (224,0); +ref = comma; +} +); +width = 435; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (110,0); +ref = comma; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (163,0); +ref = comma; +} +); +width = 293; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (129,0); +ref = comma; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (129,0); +ref = comma; +} +); +width = 275; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (277,0); +ref = comma; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (277,0); +ref = comma; +} +); +width = 544; +}, +{ +background = { +shapes = ( +{ +pos = (164,0); +ref = comma; +}, +{ +pos = (274,0); +ref = comma; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (80,0); +ref = comma; +} +); +width = 180; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (224,0); +ref = comma; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (209,0); +ref = comma; +} +); +width = 409; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (129,0); +ref = comma; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (109,0); +ref = comma; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = comma; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = comma; +}; +width = 251; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (254,0); +ref = comma; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (244,0); +ref = comma; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = comma; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = comma; +}; +width = 467; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (129,0); +ref = comma; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (116,0); +ref = comma; +} +); +width = 242; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (277,0); +ref = comma; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (302,0); +ref = comma; +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (129,0); +ref = comma; +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (127,0); +ref = comma; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = comma; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = comma; +}; +width = 337; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (254,0); +ref = comma; +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (269,0); +ref = comma; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = comma; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = comma; +}; +width = 558; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-22,-123,l), +(6,-100,o), +(61,-26,o), +(61,14,cs), +(61,30,o), +(51,41,o), +(35,41,cs), +(21,41,o), +(10,32,o), +(10,16,cs), +(10,2,o), +(20,-7,o), +(34,-7,cs), +(39,-7,o), +(43,-6,o), +(46,-4,c), +(41,1,l), +(31,-36,o), +(-6,-86,o), +(-45,-123,c) +); +}, +{ +closed = 1; +nodes = ( +(86,-123,l), +(114,-100,o), +(169,-26,o), +(169,14,cs), +(169,30,o), +(159,41,o), +(143,41,cs), +(129,41,o), +(118,32,o), +(118,16,cs), +(118,2,o), +(128,-7,o), +(142,-7,cs), +(147,-7,o), +(151,-6,o), +(154,-4,c), +(149,1,l), +(139,-36,o), +(102,-86,o), +(63,-123,c) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (108,0); +ref = comma; +} +); +width = 236; +}, +{ +background = { +shapes = ( +{ +ref = comma; +}, +{ +pos = (240,0); +ref = comma; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (240,0); +ref = comma; +} +); +width = 458; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-9,-124,l), +(27,-88,o), +(72,-20,o), +(72,18,cs), +(72,38,o), +(60,51,o), +(40,51,cs), +(22,51,o), +(9,40,o), +(9,20,cs), +(9,3,o), +(21,-8,o), +(39,-8,cs), +(45,-8,o), +(50,-6,o), +(54,-4,c), +(51,2,l), +(40,-35,o), +(6,-83,o), +(-33,-124,c) +); +}, +{ +closed = 1; +nodes = ( +(119,-124,l), +(155,-88,o), +(200,-20,o), +(200,18,cs), +(200,38,o), +(188,51,o), +(168,51,cs), +(150,51,o), +(137,40,o), +(137,20,cs), +(137,3,o), +(149,-8,o), +(167,-8,cs), +(173,-8,o), +(178,-6,o), +(182,-4,c), +(179,2,l), +(168,-35,o), +(134,-83,o), +(95,-124,c) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (128,0); +ref = comma; +} +); +width = 303; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(37,-167,l), +(105,-122,o), +(196,-15,o), +(196,75,cs), +(196,131,o), +(158,167,o), +(102,167,cs), +(40,167,o), +(-1,130,o), +(-1,77,cs), +(-1,32,o), +(34,1,o), +(81,1,cs), +(94,1,o), +(104,3,o), +(111,6,c), +(95,19,l), +(69,-37,o), +(8,-107,o), +(-75,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(285,-167,l), +(353,-122,o), +(444,-15,o), +(444,75,cs), +(444,131,o), +(406,167,o), +(350,167,cs), +(288,167,o), +(247,130,o), +(247,77,cs), +(247,32,o), +(282,1,o), +(329,1,cs), +(342,1,o), +(352,3,o), +(359,6,c), +(343,19,l), +(317,-37,o), +(256,-107,o), +(173,-167,c) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (248,0); +ref = comma; +} +); +width = 495; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-17,-124,l), +(19,-88,o), +(64,-20,o), +(64,18,cs), +(64,38,o), +(52,51,o), +(32,51,cs), +(14,51,o), +(1,40,o), +(1,20,cs), +(1,3,o), +(13,-8,o), +(31,-8,cs), +(37,-8,o), +(42,-6,o), +(46,-4,c), +(43,2,l), +(32,-35,o), +(-2,-83,o), +(-41,-124,c) +); +}, +{ +closed = 1; +nodes = ( +(111,-124,l), +(147,-88,o), +(192,-20,o), +(192,18,cs), +(192,38,o), +(180,51,o), +(160,51,cs), +(142,51,o), +(129,40,o), +(129,20,cs), +(129,3,o), +(141,-8,o), +(159,-8,cs), +(165,-8,o), +(170,-6,o), +(174,-4,c), +(171,2,l), +(160,-35,o), +(126,-83,o), +(87,-124,c) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (128,0); +ref = comma; +} +); +width = 276; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(73,-167,l), +(159,-106,o), +(221,-11,o), +(221,64,cs), +(221,131,o), +(179,175,o), +(102,175,cs), +(27,175,o), +(-16,137,o), +(-16,79,cs), +(-16,29,o), +(21,-4,o), +(87,-4,cs), +(104,-4,o), +(117,-2,o), +(126,1,c), +(113,22,l), +(86,-33,o), +(18,-104,o), +(-69,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(349,-167,l), +(435,-106,o), +(497,-11,o), +(497,64,cs), +(497,131,o), +(455,175,o), +(378,175,cs), +(303,175,o), +(260,137,o), +(260,79,cs), +(260,29,o), +(297,-4,o), +(363,-4,cs), +(380,-4,o), +(393,-2,o), +(402,1,c), +(389,22,l), +(362,-33,o), +(294,-104,o), +(207,-167,c) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (276,0); +ref = comma; +} +); +width = 543; +} +); +metricLeft = comma; +metricRight = comma; +unicode = 8222; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblbase.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblbase.ss01.glyph new file mode 100644 index 00000000..2d008cb1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblbase.ss01.glyph @@ -0,0 +1,477 @@ +{ +color = 6; +glyphname = quotedblbase.ss01; +kernRight = KO_quotedblbase.ss01; +layers = ( +{ +background = { +shapes = ( +{ +pos = (100,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (100,0); +ref = comma.ss01; +} +); +width = 222; +}, +{ +background = { +shapes = ( +{ +pos = (230,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (230,0); +ref = comma.ss01; +} +); +width = 436; +}, +{ +background = { +shapes = ( +{ +pos = (120,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (120,0); +ref = comma.ss01; +} +); +width = 257; +}, +{ +background = { +shapes = ( +{ +pos = (270,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (270,0); +ref = comma.ss01; +} +); +width = 542; +}, +{ +background = { +shapes = ( +{ +pos = (100,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +pos = (100,0); +ref = comma.ss01; +} +); +width = 222; +}, +{ +background = { +shapes = ( +{ +pos = (230,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (230,0); +ref = comma.ss01; +} +); +width = 421; +}, +{ +background = { +shapes = ( +{ +pos = (140,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +pos = (140,0); +ref = comma.ss01; +} +); +width = 302; +}, +{ +background = { +shapes = ( +{ +pos = (260,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +pos = (260,0); +ref = comma.ss01; +} +); +width = 494; +}, +{ +background = { +shapes = ( +{ +pos = (120,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +pos = (120,0); +ref = comma.ss01; +} +); +width = 257; +}, +{ +background = { +shapes = ( +{ +pos = (270,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +pos = (270,0); +ref = comma.ss01; +} +); +width = 542; +}, +{ +background = { +shapes = ( +{ +pos = (140,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (138,0); +ref = comma.ss01; +} +); +width = 301; +}, +{ +background = { +shapes = ( +{ +pos = (260,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (246,0); +ref = comma.ss01; +} +); +width = 493; +}, +{ +background = { +shapes = ( +{ +pos = (105,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (105,0); +ref = comma.ss01; +} +); +width = 226; +}, +{ +background = { +shapes = ( +{ +pos = (220,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (220,0); +ref = comma.ss01; +} +); +width = 423; +}, +{ +background = { +shapes = ( +{ +pos = (120,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (120,0); +ref = comma.ss01; +} +); +width = 283; +}, +{ +background = { +shapes = ( +{ +pos = (240,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (240,0); +ref = comma.ss01; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +pos = (120,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (120,0); +ref = comma.ss01; +} +); +width = 256; +}, +{ +background = { +shapes = ( +{ +pos = (266,0); +ref = comma.ss01; +}, +{ +ref = comma.ss01; +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (266,0); +ref = comma.ss01; +} +); +width = 534; +} +); +metricLeft = comma.ss01; +metricRight = comma.ss01; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblleft.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblleft.glyph new file mode 100644 index 00000000..c2a4e1bb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblleft.glyph @@ -0,0 +1,233 @@ +{ +color = 6; +glyphname = quotedblleft; +kernLeft = KO_quotedblleft; +kernRight = KO_quotedblleft; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (435,562); +ref = quotedblbase; +} +); +width = 435; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (293,604); +ref = quotedblbase; +} +); +width = 293; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (275,605); +ref = quotedblbase; +} +); +width = 275; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (544,562); +ref = quotedblbase; +} +); +width = 544; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (180,604); +ref = quotedblbase; +} +); +width = 180; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (409,572); +ref = quotedblbase; +} +); +width = 409; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (251,583); +ref = quotedblbase; +} +); +width = 251; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (457,558); +ref = quotedblbase; +} +); +width = 457; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (235,571); +ref = quotedblbase; +} +); +width = 235; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (599,556); +ref = quotedblbase; +} +); +width = 599; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (337,583); +ref = quotedblbase; +} +); +width = 337; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (558,562); +ref = quotedblbase; +} +); +width = 558; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (255,606); +ref = quotedblbase; +} +); +width = 236; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (462,561); +ref = quotedblbase; +} +); +width = 458; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (321,605); +ref = quotedblbase; +} +); +width = 303; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (499,562); +ref = quotedblbase; +} +); +width = 495; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (294,605); +ref = quotedblbase; +} +); +width = 276; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (547,562); +ref = quotedblbase; +} +); +width = 543; +} +); +metricLeft = "=|comma"; +metricRight = "=|comma"; +unicode = 8220; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblleft.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblleft.ss01.glyph new file mode 100644 index 00000000..f39a105d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblleft.ss01.glyph @@ -0,0 +1,226 @@ +{ +color = 6; +glyphname = quotedblleft.ss01; +kernLeft = KO_quotedblleft.ss01; +kernRight = KO_quotedblleft.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (222,588); +ref = quotedblbase.ss01; +} +); +width = 222; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (436,552); +ref = quotedblbase.ss01; +} +); +width = 436; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (257,588); +ref = quotedblbase.ss01; +} +); +width = 257; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (542,552); +ref = quotedblbase.ss01; +} +); +width = 542; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (222,588); +ref = quotedblbase.ss01; +} +); +width = 222; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (421,552); +ref = quotedblbase.ss01; +} +); +width = 421; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (302,588); +ref = quotedblbase.ss01; +} +); +width = 302; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (494,552); +ref = quotedblbase.ss01; +} +); +width = 494; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (257,588); +ref = quotedblbase.ss01; +} +); +width = 257; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (542,552); +ref = quotedblbase.ss01; +} +); +width = 542; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (301,588); +ref = quotedblbase.ss01; +} +); +width = 301; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (493,552); +ref = quotedblbase.ss01; +} +); +width = 493; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (241,588); +ref = quotedblbase.ss01; +} +); +width = 226; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (425,552); +ref = quotedblbase.ss01; +} +); +width = 423; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (298,588); +ref = quotedblbase.ss01; +} +); +width = 283; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (494,552); +ref = quotedblbase.ss01; +} +); +width = 492; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (271,588); +ref = quotedblbase.ss01; +} +); +width = 256; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (536,552); +ref = quotedblbase.ss01; +} +); +width = 534; +} +); +metricLeft = "=|comma.ss01"; +metricRight = "=|comma.ss01"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblright.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblright.glyph new file mode 100644 index 00000000..6ef46fc5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblright.glyph @@ -0,0 +1,215 @@ +{ +color = 6; +glyphname = quotedblright; +kernLeft = KO_quoteright; +kernRight = KO_quotedblright; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +pos = (0,575); +ref = quotedblbase; +} +); +width = 435; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +pos = (0,695); +ref = quotedblbase; +} +); +width = 293; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +pos = (0,686); +ref = quotedblbase; +} +); +width = 275; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +pos = (0,565); +ref = quotedblbase; +} +); +width = 544; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 3; +pos = (0,685); +ref = quotedblbase; +} +); +width = 180; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +pos = (0,555); +ref = quotedblbase; +} +); +width = 409; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,673); +ref = quotedblbase; +} +); +width = 251; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,539); +ref = quotedblbase; +} +); +width = 457; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,676); +ref = quotedblbase; +} +); +width = 235; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 3; +pos = (0,542); +ref = quotedblbase; +} +); +width = 599; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +pos = (0,668); +ref = quotedblbase; +} +); +width = 337; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +pos = (0,551); +ref = quotedblbase; +} +); +width = 558; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +pos = (144,693); +ref = quotedblbase; +} +); +width = 236; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +pos = (119,573); +ref = quotedblbase; +} +); +width = 458; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +pos = (142,685); +ref = quotedblbase; +} +); +width = 303; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +pos = (118,570); +ref = quotedblbase; +} +); +width = 495; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +pos = (142,686); +ref = quotedblbase; +} +); +width = 276; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +pos = (117,565); +ref = quotedblbase; +} +); +width = 543; +} +); +metricLeft = comma; +metricRight = comma; +unicode = 8221; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblright.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblright.ss01.glyph new file mode 100644 index 00000000..a1bb547f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotedblright.ss01.glyph @@ -0,0 +1,208 @@ +{ +color = 6; +glyphname = quotedblright.ss01; +kernLeft = KO_quoteright.ss01; +kernRight = KO_quoteright.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +pos = (0,674); +ref = quotedblbase.ss01; +} +); +width = 222; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +pos = (0,564); +ref = quotedblbase.ss01; +} +); +width = 436; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +pos = (0,672); +ref = quotedblbase.ss01; +} +); +width = 257; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +pos = (0,565); +ref = quotedblbase.ss01; +} +); +width = 542; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,674); +ref = quotedblbase.ss01; +} +); +width = 222; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +pos = (0,564); +ref = quotedblbase.ss01; +} +); +width = 421; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,672); +ref = quotedblbase.ss01; +} +); +width = 302; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,567); +ref = quotedblbase.ss01; +} +); +width = 494; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,672); +ref = quotedblbase.ss01; +} +); +width = 257; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,565); +ref = quotedblbase.ss01; +} +); +width = 542; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +pos = (0,672); +ref = quotedblbase.ss01; +} +); +width = 301; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +pos = (0,567); +ref = quotedblbase.ss01; +} +); +width = 493; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +pos = (140,674); +ref = quotedblbase.ss01; +} +); +width = 226; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +pos = (116,562); +ref = quotedblbase.ss01; +} +); +width = 423; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +pos = (139,672); +ref = quotedblbase.ss01; +} +); +width = 283; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +pos = (116,559); +ref = quotedblbase.ss01; +} +); +width = 492; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +pos = (140,676); +ref = quotedblbase.ss01; +} +); +width = 256; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +pos = (117,565); +ref = quotedblbase.ss01; +} +); +width = 534; +} +); +metricLeft = comma.ss01; +metricRight = comma.ss01; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quoteleft.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quoteleft.glyph new file mode 100644 index 00000000..df09030e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quoteleft.glyph @@ -0,0 +1,249 @@ +{ +color = 6; +glyphname = quoteleft; +kernLeft = KO_quoteleft; +kernRight = KO_quoteleft; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (211,562); +ref = quotesinglbase; +} +); +width = 211; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (130,604); +ref = quotesinglbase; +} +); +width = 130; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (146,605); +ref = quotesinglbase; +} +); +width = 146; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (267,562); +ref = quotesinglbase; +} +); +width = 267; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (100,604); +ref = quotesinglbase; +} +); +width = 100; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (200,572); +ref = quotesinglbase; +} +); +width = 200; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (179,605); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblleft; +}; +width = 179; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (220,562); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblleft; +}; +width = 220; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (126,571); +ref = quotesinglbase; +} +); +width = 126; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (297,556); +ref = quotesinglbase; +} +); +width = 297; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (210,585); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblleft; +}; +width = 210; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (289,562); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblleft; +}; +width = 289; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (147,606); +ref = quotesinglbase; +} +); +width = 128; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (222,562); +ref = quotesinglbase; +} +); +width = 218; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (193,605); +ref = quotesinglbase; +} +); +width = 175; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (251,562); +ref = quotesinglbase; +} +); +width = 247; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (166,605); +ref = quotesinglbase; +} +); +width = 148; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (271,562); +ref = quotesinglbase; +} +); +width = 267; +} +); +metricLeft = quotedblleft; +metricRight = quotedblleft; +unicode = 8216; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quoteleft.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quoteleft.ss01.glyph new file mode 100644 index 00000000..94cba3e8 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quoteleft.ss01.glyph @@ -0,0 +1,226 @@ +{ +color = 6; +glyphname = quoteleft.ss01; +kernLeft = KO_quotedblleft.ss01; +kernRight = KO_quotedblleft.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (122,588); +ref = comma.ss01; +} +); +width = 122; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (206,552); +ref = comma.ss01; +} +); +width = 206; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (137,588); +ref = comma.ss01; +} +); +width = 137; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (272,552); +ref = comma.ss01; +} +); +width = 272; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (122,588); +ref = comma.ss01; +} +); +width = 122; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (191,552); +ref = comma.ss01; +} +); +width = 191; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (162,588); +ref = comma.ss01; +} +); +width = 162; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (234,552); +ref = comma.ss01; +} +); +width = 234; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (137,588); +ref = comma.ss01; +} +); +width = 137; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (272,552); +ref = comma.ss01; +} +); +width = 272; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (163,588); +ref = comma.ss01; +} +); +width = 163; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (247,552); +ref = comma.ss01; +} +); +width = 247; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (136,588); +ref = comma.ss01; +} +); +width = 121; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (205,552); +ref = comma.ss01; +} +); +width = 203; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (178,588); +ref = comma.ss01; +} +); +width = 163; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (254,552); +ref = comma.ss01; +} +); +width = 252; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (151,588); +ref = comma.ss01; +} +); +width = 136; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (270,552); +ref = comma.ss01; +} +); +width = 268; +} +); +metricLeft = "=|comma.ss01"; +metricRight = "=|comma.ss01"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quoteright.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quoteright.glyph new file mode 100644 index 00000000..55f0fd4d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quoteright.glyph @@ -0,0 +1,232 @@ +{ +color = 6; +glyphname = quoteright; +kernLeft = KO_quoteright; +kernRight = KO_quoteright; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +pos = (0,574); +ref = quotesinglbase; +} +); +width = 211; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +pos = (0,695); +ref = quotesinglbase; +} +); +width = 130; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +pos = (0,683); +ref = quotesinglbase; +} +); +width = 146; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +pos = (0,565); +ref = quotesinglbase; +} +); +width = 267; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 3; +pos = (0,685); +ref = quotesinglbase; +} +); +width = 100; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +pos = (0,558); +ref = quotesinglbase; +} +); +width = 200; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,674); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblright; +}; +width = 199; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,538); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblright; +}; +width = 223; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,673); +ref = quotesinglbase; +} +); +width = 126; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 3; +pos = (0,543); +ref = quotesinglbase; +} +); +width = 297; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +pos = (0,675); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblright; +}; +width = 210; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +pos = (0,552); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblright; +}; +width = 289; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +pos = (144,695); +ref = quotesinglbase; +} +); +width = 128; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +pos = (119,575); +ref = quotesinglbase; +} +); +width = 218; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +pos = (142,685); +ref = quotesinglbase; +} +); +width = 175; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +pos = (118,572); +ref = quotesinglbase; +} +); +width = 247; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +pos = (142,686); +ref = quotesinglbase; +} +); +width = 148; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +pos = (117,565); +ref = quotesinglbase; +} +); +width = 267; +} +); +metricLeft = quotedblright; +metricRight = quotedblright; +unicode = 8217; +userData = { +KernOnName = quoteright; +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quoteright.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quoteright.ss01.glyph new file mode 100644 index 00000000..c5e82e62 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quoteright.ss01.glyph @@ -0,0 +1,208 @@ +{ +color = 6; +glyphname = quoteright.ss01; +kernLeft = KO_quoteright.ss01; +kernRight = KO_quoteright.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 3; +pos = (0,674); +ref = comma.ss01; +} +); +width = 122; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 3; +pos = (0,564); +ref = comma.ss01; +} +); +width = 206; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 3; +pos = (0,674); +ref = comma.ss01; +} +); +width = 137; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 3; +pos = (0,565); +ref = comma.ss01; +} +); +width = 272; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,674); +ref = comma.ss01; +} +); +width = 122; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 3; +pos = (0,564); +ref = comma.ss01; +} +); +width = 191; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,672); +ref = comma.ss01; +} +); +width = 162; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,567); +ref = comma.ss01; +} +); +width = 234; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,674); +ref = comma.ss01; +} +); +width = 137; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,565); +ref = comma.ss01; +} +); +width = 272; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +pos = (0,672); +ref = comma.ss01; +} +); +width = 163; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +pos = (0,567); +ref = comma.ss01; +} +); +width = 247; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 3; +pos = (140,674); +ref = comma.ss01; +} +); +width = 121; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 3; +pos = (116,561); +ref = comma.ss01; +} +); +width = 203; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 3; +pos = (140,674); +ref = comma.ss01; +} +); +width = 163; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 3; +pos = (117,564); +ref = comma.ss01; +} +); +width = 252; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 3; +pos = (140,674); +ref = comma.ss01; +} +); +width = 136; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 3; +pos = (117,564); +ref = comma.ss01; +} +); +width = 268; +} +); +metricLeft = comma.ss01; +metricRight = comma.ss01; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotesinglbase.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotesinglbase.glyph new file mode 100644 index 00000000..48cafcb3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotesinglbase.glyph @@ -0,0 +1,194 @@ +{ +color = 6; +glyphname = quotesinglbase; +kernRight = KO_quotedblbase; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 211; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 130; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 146; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 267; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 100; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 200; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = comma; +} +); +width = 179; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = comma; +} +); +width = 220; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = comma; +} +); +width = 146; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 297; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 210; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 289; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 128; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 218; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 175; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 247; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 148; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 267; +} +); +unicode = 8218; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotesinglbase.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotesinglbase.ss01.glyph new file mode 100644 index 00000000..75e46cad --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotesinglbase.ss01.glyph @@ -0,0 +1,188 @@ +{ +color = 6; +glyphname = quotesinglbase.ss01; +kernLeft = KO_comma.ss01; +kernRight = KO_quotedblbase.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 122; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 206; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 137; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 272; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +} +); +width = 122; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 191; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +} +); +width = 162; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +} +); +width = 234; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +} +); +width = 137; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +} +); +width = 272; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 163; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 247; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 121; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 203; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 163; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 252; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 136; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 268; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/quotesingle.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/quotesingle.glyph new file mode 100644 index 00000000..ce4b4ed2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/quotesingle.glyph @@ -0,0 +1,576 @@ +{ +glyphname = quotesingle; +kernLeft = KO_quotedbl; +kernRight = KO_quotesingle; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (-9,0); +}, +{ +name = "#exit"; +pos = (195,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,554,l), +(175,729,l), +(11,729,l), +(11,554,l), +(55,354,l), +(130,354,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(130,410,l), +(175,622,l), +(175,729,l), +(11,729,l), +(11,622,l), +(55,410,l) +); +} +); +width = 185; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-26,0); +}, +{ +name = "#exit"; +pos = (105,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(75,605,l), +(75,729,l), +(47,729,l), +(47,605,l), +(51,452,l), +(71,452,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(71,493,l), +(75,624,l), +(75,729,l), +(47,729,l), +(47,624,l), +(51,493,l) +); +} +); +width = 122; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-19,0); +}, +{ +name = "#exit"; +pos = (142,0); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(78,492,l), +(84,623,l), +(84,729,l), +(51,729,l), +(51,623,l), +(58,492,l) +); +} +); +width = 135; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-49,0); +}, +{ +name = "#exit"; +pos = (203,0); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,410,l), +(199,600,l), +(199,729,l), +(21,729,l), +(21,600,l), +(66,410,l) +); +} +); +width = 219; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-46,0); +}, +{ +name = "#exit"; +pos = (85,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(75,605,l), +(75,729,l), +(47,729,l), +(47,605,l), +(51,452,l), +(71,452,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,493,l), +(55,624,l), +(55,729,l), +(27,729,l), +(27,624,l), +(31,493,l) +); +} +); +width = 82; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-16,0); +}, +{ +name = "#exit"; +pos = (188,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,554,l), +(175,729,l), +(11,729,l), +(11,554,l), +(55,354,l), +(130,354,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,410,l), +(168,622,l), +(168,729,l), +(4,729,l), +(4,622,l), +(48,410,l) +); +} +); +width = 171; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-19,0); +}, +{ +name = "#exit"; +pos = (142,0); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,492,l), +(79,623,l), +(79,729,l), +(46,729,l), +(46,623,l), +(53,492,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedbl; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedbl; +}; +width = 126; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-56,0); +}, +{ +name = "#exit"; +pos = (191,0); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,410,l), +(179,608,l), +(179,729,l), +(9,729,l), +(9,608,l), +(52,410,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedbl; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedbl; +}; +width = 187; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-29,0); +}, +{ +name = "#exit"; +pos = (132,0); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(68,492,l), +(74,623,l), +(74,729,l), +(41,729,l), +(41,623,l), +(48,492,l) +); +} +); +width = 115; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-59,0); +}, +{ +name = "#exit"; +pos = (193,0); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(142,410,l), +(189,600,l), +(189,729,l), +(11,729,l), +(11,600,l), +(56,410,l) +); +} +); +width = 199; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (4,0); +}, +{ +name = "#exit"; +pos = (161,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(94,492,l), +(100,623,l), +(100,729,l), +(67,729,l), +(67,623,l), +(74,492,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedbl; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedbl; +}; +width = 167; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-27,0); +}, +{ +name = "#exit"; +pos = (200,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(153,410,l), +(198,608,l), +(198,729,l), +(29,729,l), +(29,608,l), +(71,410,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedbl; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedbl; +}; +width = 225; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-27,0); +}, +{ +name = "#exit"; +pos = (103,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,493,l), +(151,624,l), +(172,729,l), +(144,729,l), +(123,624,l), +(100,493,l) +); +} +); +width = 122; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-10,0); +}, +{ +name = "#exit"; +pos = (198,0); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,410,l), +(247,622,l), +(269,729,l), +(105,729,l), +(83,622,l), +(83,410,l) +); +} +); +width = 184; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (2,0); +}, +{ +name = "#exit"; +pos = (162,0); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,492,l), +(175,623,l), +(197,729,l), +(164,729,l), +(142,623,l), +(121,492,l) +); +} +); +width = 166; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-35,0); +}, +{ +name = "#exit"; +pos = (207,0); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,410,l), +(270,608,l), +(295,729,l), +(125,729,l), +(100,608,l), +(102,410,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-19,0); +}, +{ +name = "#exit"; +pos = (141,0); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,492,l), +(159,623,l), +(181,729,l), +(148,729,l), +(126,623,l), +(105,492,l) +); +} +); +width = 135; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-49,0); +}, +{ +name = "#exit"; +pos = (200,0); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,410,l), +(267,600,l), +(294,729,l), +(116,729,l), +(89,600,l), +(95,410,l) +); +} +); +width = 219; +} +); +unicode = 39; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/r.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/r.glyph new file mode 100644 index 00000000..042042e4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/r.glyph @@ -0,0 +1,1028 @@ +{ +glyphname = r; +kernLeft = KO_n; +kernRight = KO_r; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (116,0); +}, +{ +name = top; +pos = (155,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(204,284,ls), +(204,359,o), +(219,372,o), +(259,372,cs), +(275,372,o), +(286,371,o), +(297,369,c), +(297,545,l), +(293,545,o), +(290,544,o), +(288,544,cs), +(231,540,o), +(214,513,o), +(201,462,c), +(194,462,l), +(188,541,l), +(27,541,l), +(27,0,l) +); +} +); +width = 309; +}, +{ +anchors = ( +{ +name = bottom; +pos = (75,0); +}, +{ +name = top; +pos = (118,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,0,l), +(89,320,ls), +(89,422,o), +(118,491,o), +(192,491,cs), +(200,491,o), +(207,490,o), +(212,489,c), +(212,523,l), +(206,525,o), +(199,526,o), +(192,526,cs), +(148,526,o), +(110,500,o), +(91,430,c), +(90,430,l), +(88,516,l), +(60,516,l), +(60,0,l) +); +} +); +width = 208; +}, +{ +anchors = ( +{ +name = bottom; +pos = (84,0); +}, +{ +name = top; +pos = (161,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(102,0,l), +(102,336,l), +(111,432,o), +(181,488,o), +(268,488,cs), +(288,488,o), +(307,486,o), +(319,481,c), +(319,517,l), +(309,521,o), +(290,524,o), +(267,524,cs), +(190,524,o), +(126,482,o), +(104,413,c), +(102,413,l), +(98,517,l), +(66,517,l), +(66,0,l) +); +} +); +width = 331; +}, +{ +anchors = ( +{ +name = bottom; +pos = (154,0); +}, +{ +name = top; +pos = (231,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,222,ls), +(264,322,o), +(307,357,o), +(392,357,cs), +(406,357,o), +(424,355,o), +(440,353,c), +(440,551,l), +(427,552,o), +(414,552,o), +(398,552,cs), +(330,552,o), +(281,518,o), +(259,466,c), +(251,466,l), +(244,544,l), +(43,544,l), +(43,0,l) +); +} +); +width = 447; +}, +{ +anchors = ( +{ +name = bottom; +pos = (52,0); +}, +{ +name = top; +pos = (95,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(66,333,ls), +(66,434,o), +(102,487,o), +(164,487,cs), +(169,487,o), +(174,487,o), +(177,486,c), +(177,518,l), +(174,519,o), +(169,520,o), +(164,520,cs), +(123,520,o), +(85,499,o), +(67,443,c), +(67,443,l), +(65,516,l), +(36,516,l), +(36,0,l) +); +} +); +width = 182; +}, +{ +anchors = ( +{ +name = bottom; +pos = (105,0); +}, +{ +name = top; +pos = (144,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,l), +(193,266,ls), +(193,320,o), +(210,345,o), +(247,345,cs), +(263,345,o), +(275,344,o), +(286,342,c), +(286,547,l), +(282,547,o), +(279,547,o), +(277,547,cs), +(230,547,o), +(203,518,o), +(185,449,c), +(184,449,l), +(177,541,l), +(16,541,l), +(16,0,l) +); +} +); +width = 290; +}, +{ +anchors = ( +{ +name = bottom; +pos = (77,0); +}, +{ +name = top; +pos = (145,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,l), +(121,336,l), +(130,432,o), +(200,488,o), +(287,488,cs), +(307,488,o), +(326,486,o), +(338,481,c), +(338,517,l), +(328,521,o), +(309,524,o), +(286,524,cs), +(209,524,o), +(145,482,o), +(123,413,c), +(121,413,l), +(117,517,l), +(85,517,l), +(85,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,0,l), +(95,336,l), +(104,431,o), +(174,487,o), +(261,487,cs), +(272,487,o), +(283,486,o), +(292,485,c), +(292,521,l), +(283,522,o), +(272,523,o), +(260,523,cs), +(184,523,o), +(118,479,o), +(95,413,c), +(95,413,l), +(91,517,l), +(59,517,l), +(59,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 297; +}, +{ +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (187,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(245,0,l), +(245,218,l), +(245,339,o), +(303,375,o), +(380,375,cs), +(398,375,o), +(412,373,o), +(425,368,c), +(425,548,l), +(412,551,o), +(400,553,o), +(382,553,cs), +(313,553,o), +(265,526,o), +(241,455,c), +(234,455,l), +(227,544,l), +(54,544,l), +(54,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,l), +(221,252,ls), +(221,325,o), +(250,366,o), +(354,366,cs), +(368,366,o), +(381,366,o), +(388,366,c), +(388,550,l), +(379,550,o), +(370,550,o), +(358,550,cs), +(286,550,o), +(235,515,o), +(212,452,c), +(211,452,l), +(203,544,l), +(30,544,l), +(30,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +}; +width = 387; +}, +{ +anchors = ( +{ +name = bottom; +pos = (74,0); +}, +{ +name = top; +pos = (151,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(92,336,l), +(101,432,o), +(181,488,o), +(268,488,cs), +(290,488,o), +(315,486,o), +(328,481,c), +(328,517,l), +(317,521,o), +(292,524,o), +(267,524,cs), +(190,524,o), +(115,482,o), +(93,413,c), +(92,413,l), +(88,517,l), +(56,517,l), +(56,0,l) +); +} +); +width = 332; +}, +{ +anchors = ( +{ +name = bottom; +pos = (144,0); +}, +{ +name = top; +pos = (221,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,0,l), +(254,222,ls), +(254,322,o), +(297,357,o), +(382,357,cs), +(396,357,o), +(414,355,o), +(430,353,c), +(430,551,l), +(417,552,o), +(404,552,o), +(388,552,cs), +(320,552,o), +(264,518,o), +(242,466,c), +(241,466,l), +(234,544,l), +(33,544,l), +(33,0,l) +); +} +); +width = 432; +}, +{ +anchors = ( +{ +name = bottom; +pos = (104,0); +}, +{ +name = top; +pos = (170,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,l), +(121,336,l), +(130,432,o), +(200,488,o), +(287,488,cs), +(307,488,o), +(326,486,o), +(338,481,c), +(338,517,l), +(328,521,o), +(309,524,o), +(286,524,cs), +(209,524,o), +(145,482,o), +(123,413,c), +(121,413,l), +(117,517,l), +(85,517,l), +(85,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(122,0,l), +(122,336,l), +(131,432,o), +(199,488,o), +(284,488,cs), +(292,488,o), +(300,487,o), +(306,487,c), +(306,523,l), +(300,523,o), +(292,524,o), +(283,524,cs), +(210,524,o), +(147,480,o), +(124,413,c), +(122,413,l), +(118,517,l), +(86,517,l), +(86,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 333; +}, +{ +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = top; +pos = (205,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(245,0,l), +(245,218,l), +(245,339,o), +(303,375,o), +(380,375,cs), +(398,375,o), +(412,373,o), +(425,368,c), +(425,548,l), +(412,551,o), +(400,553,o), +(382,553,cs), +(313,553,o), +(265,526,o), +(241,455,c), +(234,455,l), +(227,544,l), +(54,544,l), +(54,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(242,0,l), +(242,257,ls), +(242,331,o), +(266,372,o), +(364,372,cs), +(370,372,o), +(374,372,o), +(377,372,c), +(377,551,l), +(374,551,o), +(372,551,o), +(368,551,cs), +(309,551,o), +(263,534,o), +(240,465,c), +(228,465,l), +(224,544,l), +(52,544,l), +(52,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +}; +width = 396; +}, +{ +anchors = ( +{ +name = bottom; +pos = (22,0); +}, +{ +name = top; +pos = (181,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,0,l), +(102,320,ls), +(124,422,o), +(167,491,o), +(239,491,cs), +(244,491,o), +(250,491,o), +(259,489,c), +(266,523,l), +(262,525,o), +(254,526,o), +(245,526,cs), +(200,526,o), +(159,498,o), +(129,440,c), +(127,440,l), +(143,516,l), +(115,516,l), +(7,0,l) +); +} +); +width = 207; +}, +{ +anchors = ( +{ +name = bottom; +pos = (58,0); +}, +{ +name = top; +pos = (220,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,0,l), +(206,284,ls), +(221,356,o), +(238,372,o), +(277,372,cs), +(293,372,o), +(303,372,o), +(315,373,c), +(351,545,l), +(340,545,o), +(337,544,o), +(335,544,cs), +(292,541,o), +(262,513,o), +(239,462,c), +(232,462,l), +(243,541,l), +(83,541,l), +(-30,0,l) +); +} +); +width = 305; +}, +{ +anchors = ( +{ +name = bottom; +pos = (49,0); +}, +{ +name = top; +pos = (235,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(67,0,l), +(138,336,l), +(166,432,o), +(243,488,o), +(327,488,cs), +(344,488,o), +(363,486,o), +(372,481,c), +(381,517,l), +(372,521,o), +(353,524,o), +(332,524,cs), +(256,524,o), +(190,480,o), +(153,414,c), +(150,414,l), +(169,517,l), +(139,517,l), +(31,0,l) +); +} +); +width = 349; +}, +{ +anchors = ( +{ +name = bottom; +pos = (93,0); +}, +{ +name = top; +pos = (271,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,0,l), +(230,206,ls), +(255,327,o), +(315,366,o), +(377,366,cs), +(393,366,o), +(408,364,o), +(416,359,c), +(455,550,l), +(443,553,o), +(430,554,o), +(415,554,cs), +(361,554,o), +(304,517,o), +(278,453,c), +(271,453,l), +(282,544,l), +(111,544,l), +(-2,0,l) +); +} +); +width = 418; +}, +{ +anchors = ( +{ +name = bottom; +pos = (30,0); +}, +{ +name = top; +pos = (230,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(48,0,l), +(118,336,l), +(147,432,o), +(228,488,o), +(313,488,cs), +(333,488,o), +(351,486,o), +(362,481,c), +(370,517,l), +(360,521,o), +(342,524,o), +(319,524,cs), +(243,524,o), +(172,482,o), +(135,413,c), +(133,413,l), +(152,517,l), +(120,517,l), +(12,0,l) +); +} +); +width = 327; +}, +{ +anchors = ( +{ +name = bottom; +pos = (97,0); +}, +{ +name = top; +pos = (295,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(252,221,ls), +(274,322,o), +(322,357,o), +(397,358,cs), +(415,358,o), +(434,356,o), +(451,352,c), +(493,550,l), +(481,551,o), +(467,552,o), +(452,552,cs), +(387,552,o), +(330,517,o), +(300,466,c), +(292,466,l), +(300,544,l), +(101,544,l), +(-13,0,l) +); +} +); +width = 441; +} +); +metricLeft = l; +unicode = 114; +userData = { +KernOnName = r; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/racute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/racute.glyph new file mode 100644 index 00000000..ca0649ff --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/racute.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = racute; +kernRight = KO_r; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = r; +}, +{ +pos = (62,-156); +ref = acutecomb; +} +); +width = 208; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = r; +}, +{ +pos = (43,-137); +ref = acutecomb; +} +); +width = 309; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = r; +}, +{ +pos = (103,-155); +ref = acutecomb; +} +); +width = 331; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = r; +}, +{ +pos = (114,-129); +ref = acutecomb; +} +); +width = 447; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = r; +}, +{ +pos = (59,-156); +ref = acutecomb; +} +); +width = 182; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = r; +}, +{ +pos = (42,-137); +ref = acutecomb; +} +); +width = 290; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = r; +}, +{ +pos = (110,-155); +ref = acutecomb; +} +); +width = 297; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = r; +}, +{ +pos = (96,-134); +ref = acutecomb; +} +); +width = 387; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = r; +}, +{ +pos = (103,-155); +ref = acutecomb; +} +); +width = 332; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = r; +}, +{ +pos = (114,-129); +ref = acutecomb; +} +); +width = 432; +}, +{ +layerId = m019; +shapes = ( +{ +ref = r; +}, +{ +pos = (114,-155); +ref = acutecomb; +} +); +width = 333; +}, +{ +layerId = m020; +shapes = ( +{ +ref = r; +}, +{ +pos = (95,-134); +ref = acutecomb; +} +); +width = 396; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = r; +}, +{ +pos = (40,-156); +ref = acutecomb; +} +); +width = 207; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = r; +}, +{ +pos = (25,-137); +ref = acutecomb; +} +); +width = 305; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = r; +}, +{ +pos = (93,-155); +ref = acutecomb; +} +); +width = 349; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = r; +}, +{ +pos = (76,-134); +ref = acutecomb; +} +); +width = 418; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = r; +}, +{ +pos = (87,-155); +ref = acutecomb; +} +); +width = 327; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = r; +}, +{ +pos = (95,-129); +ref = acutecomb; +} +); +width = 441; +} +); +unicode = 341; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/radical.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/radical.glyph new file mode 100644 index 00000000..2504c1bd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/radical.glyph @@ -0,0 +1,480 @@ +{ +glyphname = radical; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,-151,l), +(581,729,l), +(395,729,l), +(292,41,l), +(284,41,l), +(218,503,l), +(9,503,l), +(9,340,l), +(80,340,l), +(167,-151,l) +); +} +); +width = 587; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,-151,l), +(406,729,l), +(376,729,l), +(185,-100,l), +(183,-100,l), +(77,369,l), +(-4,369,l), +(-4,335,l), +(53,335,l), +(167,-151,l) +); +} +); +width = 406; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,-151,l), +(675,729,l), +(636,729,l), +(310,-93,l), +(307,-93,l), +(127,366,l), +(10,366,l), +(10,335,l), +(100,335,l), +(293,-151,l) +); +} +); +width = 684; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(557,-151,l), +(850,729,l), +(593,729,l), +(400,80,l), +(390,80,l), +(297,456,l), +(1,456,l), +(1,239,l), +(108,239,l), +(230,-151,l) +); +} +); +width = 839; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,-151,l), +(388,729,l), +(358,729,l), +(167,-100,l), +(165,-100,l), +(59,369,l), +(-22,369,l), +(-22,335,l), +(35,335,l), +(149,-151,l) +); +} +); +width = 370; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(411,-151,l), +(576,729,l), +(390,729,l), +(287,41,l), +(279,41,l), +(213,503,l), +(4,503,l), +(4,340,l), +(75,340,l), +(162,-151,l) +); +} +); +width = 577; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,-151,l), +(563,729,l), +(521,729,l), +(258,-90,l), +(255,-90,l), +(109,369,l), +(4,369,l), +(4,335,l), +(79,335,l), +(237,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 565; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(506,-151,l), +(780,729,l), +(565,729,l), +(374,47,l), +(366,47,l), +(252,493,l), +(-3,493,l), +(-3,312,l), +(94,312,l), +(233,-151,l) +); +} +); +width = 773; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,-151,l), +(670,729,l), +(631,729,l), +(305,-93,l), +(302,-93,l), +(122,366,l), +(5,366,l), +(5,335,l), +(95,335,l), +(288,-151,l) +); +} +); +width = 674; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(552,-151,l), +(845,729,l), +(588,729,l), +(395,80,l), +(385,80,l), +(292,456,l), +(-4,456,l), +(-4,239,l), +(103,239,l), +(225,-151,l) +); +} +); +width = 829; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(290,-151,l), +(571,729,l), +(531,729,l), +(272,-90,l), +(269,-90,l), +(127,369,l), +(24,369,l), +(24,335,l), +(97,335,l), +(251,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 595; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(513,-151,l), +(778,729,l), +(565,729,l), +(382,47,l), +(374,47,l), +(264,493,l), +(13,493,l), +(13,312,l), +(108,312,l), +(242,-151,l) +); +} +); +width = 781; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,-151,l), +(500,729,l), +(468,729,l), +(104,-100,l), +(102,-100,l), +(96,369,l), +(19,369,l), +(12,335,l), +(68,335,l), +(79,-151,l) +); +} +); +width = 402; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-151,l), +(671,729,l), +(477,729,l), +(237,41,l), +(229,41,l), +(254,503,l), +(57,503,l), +(23,340,l), +(93,340,l), +(76,-151,l) +); +} +); +width = 582; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,-151,l), +(673,729,l), +(632,729,l), +(199,-90,l), +(196,-90,l), +(148,369,l), +(44,369,l), +(37,335,l), +(111,335,l), +(165,-151,l) +); +} +); +width = 598; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(429,-151,l), +(885,729,l), +(662,729,l), +(329,47,l), +(322,47,l), +(302,493,l), +(60,493,l), +(22,312,l), +(118,312,l), +(158,-151,l) +); +} +); +width = 795; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,-151,l), +(767,729,l), +(725,729,l), +(230,-93,l), +(227,-93,l), +(145,366,l), +(33,366,l), +(26,335,l), +(115,335,l), +(204,-151,l) +); +} +); +width = 679; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-151,l), +(938,729,l), +(673,729,l), +(344,80,l), +(334,80,l), +(321,456,l), +(40,456,l), +(-6,239,l), +(100,239,l), +(139,-151,l) +); +} +); +width = 832; +} +); +unicode = 8730; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/rcaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/rcaron.glyph new file mode 100644 index 00000000..ea5d5a70 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/rcaron.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = rcaron; +kernRight = KO_r; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-11,-156); +ref = caroncomb; +} +); +width = 208; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-62,-137); +ref = caroncomb; +} +); +width = 309; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-18,-155); +ref = caroncomb; +} +); +width = 331; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-60,-129); +ref = caroncomb; +} +); +width = 447; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-14,-156); +ref = caroncomb; +} +); +width = 182; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-63,-137); +ref = caroncomb; +} +); +width = 290; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = r; +}, +{ +pos = (1,-155); +ref = caroncomb; +} +); +width = 297; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-39,-134); +ref = caroncomb; +} +); +width = 387; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-18,-155); +ref = caroncomb; +} +); +width = 332; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-60,-129); +ref = caroncomb; +} +); +width = 432; +}, +{ +layerId = m019; +shapes = ( +{ +ref = r; +}, +{ +pos = (7,-155); +ref = caroncomb; +} +); +width = 333; +}, +{ +layerId = m020; +shapes = ( +{ +ref = r; +}, +{ +pos = (-34,-134); +ref = caroncomb; +} +); +width = 396; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-33,-156); +ref = caroncomb; +} +); +width = 207; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-76,-137); +ref = caroncomb; +} +); +width = 305; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-16,-155); +ref = caroncomb; +} +); +width = 349; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-63,-134); +ref = caroncomb; +} +); +width = 418; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-36,-155); +ref = caroncomb; +} +); +width = 327; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-79,-129); +ref = caroncomb; +} +); +width = 441; +} +); +unicode = 345; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/rcommaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/rcommaaccent.glyph new file mode 100644 index 00000000..efd3ffe3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/rcommaaccent.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = rcommaaccent; +kernRight = KO_r; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-22,0); +ref = commaaccentcomb; +} +); +width = 208; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-66,0); +ref = commaaccentcomb; +} +); +width = 309; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-17,0); +ref = commaaccentcomb; +} +); +width = 331; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-30,0); +ref = commaaccentcomb; +} +); +width = 447; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 182; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-67,0); +ref = commaaccentcomb; +} +); +width = 290; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-9,0); +ref = commaaccentcomb; +} +); +width = 297; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = r; +}, +{ +pos = (38,0); +ref = commaaccentcomb; +} +); +width = 387; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-17,0); +ref = commaaccentcomb; +} +); +width = 332; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-30,0); +ref = commaaccentcomb; +} +); +width = 432; +}, +{ +layerId = m019; +shapes = ( +{ +ref = r; +}, +{ +pos = (-3,0); +ref = commaaccentcomb; +} +); +width = 333; +}, +{ +layerId = m020; +shapes = ( +{ +ref = r; +}, +{ +pos = (46,0); +ref = commaaccentcomb; +} +); +width = 396; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-21,0); +ref = commaaccentcomb; +} +); +width = 207; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-66,0); +ref = commaaccentcomb; +} +); +width = 305; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-3,0); +ref = commaaccentcomb; +} +); +width = 349; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-22,0); +ref = commaaccentcomb; +} +); +width = 418; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-18,0); +ref = commaaccentcomb; +} +); +width = 327; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-26,0); +ref = commaaccentcomb; +} +); +width = 441; +} +); +unicode = 343; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/registered.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/registered.glyph new file mode 100644 index 00000000..ad4c6255 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/registered.glyph @@ -0,0 +1,1808 @@ +{ +glyphname = registered; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,207,o), +(476,313,o), +(476,473,cs), +(476,632,o), +(385,738,o), +(248,738,cs), +(111,738,o), +(20,632,o), +(20,473,cs), +(20,313,o), +(111,207,o), +(248,207,cs) +); +}, +{ +closed = 1; +nodes = ( +(141,258,o), +(70,343,o), +(70,471,cs), +(70,601,o), +(142,687,o), +(248,687,cs), +(354,687,o), +(426,601,o), +(426,471,cs), +(426,343,o), +(355,258,o), +(248,258,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,325,l), +(236,563,l), +(242,563,ls), +(257,563,o), +(266,555,o), +(266,528,cs), +(266,506,o), +(260,494,o), +(243,494,cs), +(221,494,l), +(221,437,l), +(246,437,ls), +(259,437,o), +(265,427,o), +(265,408,cs), +(265,355,ls), +(265,341,o), +(266,331,o), +(268,325,c), +(344,325,l), +(340,334,o), +(340,345,o), +(340,356,cs), +(340,419,ls), +(340,446,o), +(331,467,o), +(308,470,c), +(308,471,l), +(329,478,o), +(344,502,o), +(344,541,cs), +(344,591,o), +(314,625,o), +(260,625,cs), +(161,625,l), +(161,325,l) +); +} +); +width = 496; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,233,o), +(427,325,o), +(427,485,cs), +(427,636,o), +(357,737,o), +(237,737,cs), +(124,737,o), +(49,645,o), +(49,485,cs), +(49,334,o), +(118,233,o), +(237,233,c) +); +}, +{ +closed = 1; +nodes = ( +(141,259,o), +(76,334,o), +(76,484,cs), +(76,620,o), +(130,711,o), +(238,711,cs), +(335,711,o), +(400,636,o), +(400,484,cs), +(400,349,o), +(346,259,o), +(238,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,343,l), +(198,608,l), +(237,608,ls), +(269,608,o), +(284,589,o), +(284,557,cs), +(284,520,o), +(269,500,o), +(233,500,cs), +(192,500,l), +(192,479,l), +(243,479,ls), +(274,479,o), +(279,464,o), +(279,441,cs), +(279,373,ls), +(279,356,o), +(279,350,o), +(282,343,c), +(305,343,l), +(303,352,o), +(303,365,o), +(303,370,cs), +(303,442,ls), +(303,459,o), +(300,482,o), +(274,491,c), +(274,492,l), +(295,501,o), +(309,520,o), +(309,557,cs), +(309,602,o), +(286,631,o), +(239,631,cs), +(175,631,l), +(175,343,l) +); +} +); +width = 475; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(460,230,o), +(563,331,o), +(563,484,cs), +(563,637,o), +(460,738,o), +(308,738,cs), +(156,738,o), +(53,637,o), +(53,484,cs), +(53,331,o), +(156,230,o), +(308,230,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,257,o), +(84,348,o), +(84,484,cs), +(84,620,o), +(174,711,o), +(308,711,cs), +(442,711,o), +(532,620,o), +(532,484,cs), +(532,348,o), +(442,257,o), +(308,257,cs) +); +}, +{ +closed = 1; +nodes = ( +(225,352,l), +(225,598,l), +(345,598,ls), +(383,598,o), +(408,582,o), +(408,550,cs), +(408,517,o), +(386,496,o), +(345,496,cs), +(218,496,l), +(218,470,l), +(360,470,ls), +(393,470,o), +(402,455,o), +(402,431,cs), +(402,382,ls), +(402,360,o), +(402,358,o), +(407,352,c), +(432,352,l), +(429,361,o), +(429,374,o), +(429,377,cs), +(429,428,ls), +(429,458,o), +(416,478,o), +(387,485,c), +(387,486,l), +(413,493,o), +(435,515,o), +(435,552,cs), +(435,595,o), +(404,624,o), +(347,624,cs), +(198,624,l), +(198,352,l) +); +} +); +width = 616; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,206,o), +(589,315,o), +(589,473,cs), +(589,632,o), +(463,738,o), +(305,738,cs), +(147,738,o), +(22,632,o), +(22,473,cs), +(22,314,o), +(147,206,o), +(305,206,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,258,o), +(78,343,o), +(78,471,cs), +(78,600,o), +(182,686,o), +(306,686,cs), +(433,686,o), +(534,599,o), +(534,472,cs), +(534,344,o), +(432,258,o), +(305,258,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,334,l), +(270,540,l), +(325,540,ls), +(344,540,o), +(357,532,o), +(357,514,cs), +(357,499,o), +(348,489,o), +(325,489,cs), +(255,489,l), +(255,430,l), +(321,430,ls), +(347,430,o), +(355,419,o), +(355,401,cs), +(355,365,ls), +(355,350,o), +(356,341,o), +(359,334,c), +(454,334,l), +(449,344,o), +(449,356,o), +(449,367,cs), +(449,412,ls), +(449,441,o), +(434,456,o), +(406,464,c), +(406,466,l), +(434,475,o), +(456,498,o), +(456,528,cs), +(456,577,o), +(427,610,o), +(335,610,cs), +(176,610,l), +(176,334,l) +); +} +); +width = 611; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,233,o), +(407,325,o), +(407,485,cs), +(407,636,o), +(337,737,o), +(217,737,cs), +(104,737,o), +(29,645,o), +(29,485,cs), +(29,334,o), +(98,233,o), +(217,233,c) +); +}, +{ +closed = 1; +nodes = ( +(121,259,o), +(56,334,o), +(56,484,cs), +(56,620,o), +(110,711,o), +(218,711,cs), +(315,711,o), +(380,636,o), +(380,484,cs), +(380,349,o), +(326,259,o), +(218,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(178,343,l), +(178,608,l), +(217,608,ls), +(249,608,o), +(264,589,o), +(264,557,cs), +(264,520,o), +(249,500,o), +(213,500,cs), +(172,500,l), +(172,479,l), +(223,479,ls), +(254,479,o), +(259,464,o), +(259,441,cs), +(259,373,ls), +(259,356,o), +(259,350,o), +(262,343,c), +(285,343,l), +(283,352,o), +(283,365,o), +(283,370,cs), +(283,442,ls), +(283,459,o), +(280,482,o), +(254,491,c), +(254,492,l), +(275,501,o), +(289,520,o), +(289,557,cs), +(289,602,o), +(266,631,o), +(219,631,cs), +(155,631,l), +(155,343,l) +); +} +); +width = 435; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(375,207,o), +(466,313,o), +(466,473,cs), +(466,632,o), +(375,738,o), +(238,738,cs), +(101,738,o), +(10,632,o), +(10,473,cs), +(10,313,o), +(101,207,o), +(238,207,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,258,o), +(60,343,o), +(60,471,cs), +(60,601,o), +(132,687,o), +(238,687,cs), +(344,687,o), +(416,601,o), +(416,471,cs), +(416,343,o), +(345,258,o), +(238,258,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,325,l), +(226,563,l), +(232,563,ls), +(247,563,o), +(256,555,o), +(256,528,cs), +(256,506,o), +(250,494,o), +(233,494,cs), +(211,494,l), +(211,437,l), +(236,437,ls), +(249,437,o), +(255,427,o), +(255,408,cs), +(255,355,ls), +(255,341,o), +(256,331,o), +(258,325,c), +(334,325,l), +(330,334,o), +(330,345,o), +(330,356,cs), +(330,419,ls), +(330,446,o), +(321,467,o), +(298,470,c), +(298,471,l), +(319,478,o), +(334,502,o), +(334,541,cs), +(334,591,o), +(304,625,o), +(250,625,cs), +(151,625,l), +(151,325,l) +); +} +); +width = 476; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(454,231,o), +(565,337,o), +(565,485,cs), +(565,633,o), +(454,738,o), +(308,738,cs), +(165,738,o), +(55,633,o), +(55,485,cs), +(55,336,o), +(164,231,o), +(308,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,259,o), +(86,353,o), +(86,484,cs), +(86,615,o), +(183,711,o), +(310,711,cs), +(436,711,o), +(535,616,o), +(535,484,cs), +(535,353,o), +(437,259,o), +(310,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,349,l), +(242,594,l), +(330,594,ls), +(367,594,o), +(392,579,o), +(392,546,cs), +(392,514,o), +(370,493,o), +(330,493,cs), +(235,493,l), +(235,467,l), +(345,467,ls), +(379,467,o), +(387,451,o), +(387,429,cs), +(387,379,ls), +(387,358,o), +(387,355,o), +(392,349,c), +(417,349,l), +(414,358,o), +(414,371,o), +(414,375,cs), +(414,426,ls), +(414,456,o), +(401,475,o), +(372,482,c), +(372,483,l), +(400,491,o), +(420,514,o), +(420,548,cs), +(420,593,o), +(389,621,o), +(331,621,cs), +(215,621,l), +(215,349,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +2, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +25 +); +stem = -2; +target = ( +3, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +26 +); +stem = -2; +target = ( +2, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +6 +); +stem = -2; +target = ( +2, +13 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +9 +); +stem = -2; +target = ( +2, +21 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(436,207,o), +(555,315,o), +(555,473,cs), +(555,632,o), +(436,738,o), +(286,738,cs), +(136,738,o), +(18,632,o), +(18,473,cs), +(18,315,o), +(136,207,o), +(286,207,cs) +); +}, +{ +closed = 1; +nodes = ( +(169,258,o), +(72,343,o), +(72,471,cs), +(72,600,o), +(169,687,o), +(287,687,cs), +(406,687,o), +(502,600,o), +(502,472,cs), +(502,344,o), +(406,258,o), +(286,258,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,343,l), +(259,541,l), +(298,541,ls), +(317,541,o), +(329,534,o), +(329,516,cs), +(329,502,o), +(320,492,o), +(298,492,cs), +(245,492,l), +(245,436,l), +(297,436,ls), +(320,436,o), +(327,425,o), +(327,407,cs), +(327,373,ls), +(327,358,o), +(328,349,o), +(331,343,c), +(420,343,l), +(416,352,o), +(416,363,o), +(416,374,cs), +(416,417,ls), +(416,446,o), +(407,461,o), +(377,468,c), +(377,469,l), +(403,478,o), +(421,502,o), +(421,533,cs), +(421,576,o), +(389,607,o), +(320,607,cs), +(171,607,l), +(171,343,l) +); +} +); +width = 573; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,230,o), +(553,331,o), +(553,484,cs), +(553,637,o), +(450,738,o), +(298,738,cs), +(146,738,o), +(43,637,o), +(43,484,cs), +(43,331,o), +(146,230,o), +(298,230,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,257,o), +(74,348,o), +(74,484,cs), +(74,620,o), +(164,711,o), +(298,711,cs), +(432,711,o), +(522,620,o), +(522,484,cs), +(522,348,o), +(432,257,o), +(298,257,cs) +); +}, +{ +closed = 1; +nodes = ( +(215,352,l), +(215,598,l), +(335,598,ls), +(373,598,o), +(398,582,o), +(398,550,cs), +(398,517,o), +(376,496,o), +(335,496,cs), +(208,496,l), +(208,470,l), +(350,470,ls), +(383,470,o), +(392,455,o), +(392,431,cs), +(392,382,ls), +(392,360,o), +(392,358,o), +(397,352,c), +(422,352,l), +(419,361,o), +(419,374,o), +(419,377,cs), +(419,428,ls), +(419,458,o), +(406,478,o), +(377,485,c), +(377,486,l), +(403,493,o), +(425,515,o), +(425,552,cs), +(425,595,o), +(394,624,o), +(337,624,cs), +(188,624,l), +(188,352,l) +); +} +); +width = 596; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(454,206,o), +(579,315,o), +(579,473,cs), +(579,632,o), +(453,738,o), +(295,738,cs), +(137,738,o), +(12,632,o), +(12,473,cs), +(12,314,o), +(137,206,o), +(295,206,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,258,o), +(68,343,o), +(68,471,cs), +(68,600,o), +(172,686,o), +(296,686,cs), +(423,686,o), +(524,599,o), +(524,472,cs), +(524,344,o), +(422,258,o), +(295,258,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,334,l), +(260,540,l), +(315,540,ls), +(334,540,o), +(347,532,o), +(347,514,cs), +(347,499,o), +(338,489,o), +(315,489,cs), +(245,489,l), +(245,430,l), +(311,430,ls), +(337,430,o), +(345,419,o), +(345,401,cs), +(345,365,ls), +(345,350,o), +(346,341,o), +(349,334,c), +(444,334,l), +(439,344,o), +(439,356,o), +(439,367,cs), +(439,412,ls), +(439,441,o), +(424,456,o), +(396,464,c), +(396,466,l), +(424,475,o), +(446,498,o), +(446,528,cs), +(446,577,o), +(417,610,o), +(325,610,cs), +(166,610,l), +(166,334,l) +); +} +); +width = 591; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(467,231,o), +(576,337,o), +(576,485,cs), +(576,633,o), +(467,738,o), +(325,738,cs), +(184,738,o), +(76,633,o), +(76,485,cs), +(76,336,o), +(183,231,o), +(325,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(203,259,o), +(107,353,o), +(107,484,cs), +(107,615,o), +(202,711,o), +(327,711,cs), +(449,711,o), +(547,616,o), +(547,484,cs), +(547,353,o), +(450,259,o), +(327,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,349,l), +(259,594,l), +(346,594,ls), +(382,594,o), +(407,579,o), +(407,546,cs), +(407,514,o), +(385,493,o), +(346,493,cs), +(252,493,l), +(252,467,l), +(360,467,ls), +(394,467,o), +(402,451,o), +(402,429,cs), +(402,379,ls), +(402,358,o), +(402,355,o), +(407,349,c), +(432,349,l), +(429,358,o), +(429,371,o), +(429,375,cs), +(429,426,ls), +(429,456,o), +(416,475,o), +(387,482,c), +(387,483,l), +(415,491,o), +(435,514,o), +(435,548,cs), +(435,593,o), +(404,621,o), +(347,621,cs), +(234,621,l), +(234,349,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +2, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +25 +); +stem = -2; +target = ( +3, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +26 +); +stem = -2; +target = ( +2, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +6 +); +stem = -2; +target = ( +2, +13 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +9 +); +stem = -2; +target = ( +2, +21 +); +type = Stem; +} +); +}; +width = 650; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(444,207,o), +(559,315,o), +(559,473,cs), +(559,632,o), +(444,738,o), +(298,738,cs), +(152,738,o), +(38,632,o), +(38,473,cs), +(38,315,o), +(152,207,o), +(298,207,cs) +); +}, +{ +closed = 1; +nodes = ( +(185,258,o), +(91,343,o), +(91,471,cs), +(91,600,o), +(185,687,o), +(299,687,cs), +(414,687,o), +(507,600,o), +(507,472,cs), +(507,344,o), +(414,258,o), +(298,258,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,343,l), +(273,541,l), +(310,541,ls), +(328,541,o), +(339,534,o), +(339,516,cs), +(339,502,o), +(331,492,o), +(310,492,cs), +(259,492,l), +(259,436,l), +(308,436,ls), +(330,436,o), +(337,425,o), +(337,407,cs), +(337,373,ls), +(337,358,o), +(338,349,o), +(341,343,c), +(429,343,l), +(425,352,o), +(425,363,o), +(425,374,cs), +(425,417,ls), +(425,446,o), +(416,461,o), +(387,468,c), +(387,469,l), +(412,478,o), +(430,501,o), +(430,533,cs), +(430,576,o), +(399,607,o), +(332,607,cs), +(186,607,l), +(186,343,l) +); +} +); +width = 596; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,233,o), +(437,325,o), +(467,469,cs), +(497,613,o), +(455,737,o), +(317,737,cs), +(211,737,o), +(130,648,o), +(99,501,cs), +(67,352,o), +(111,233,o), +(247,233,cs) +); +}, +{ +closed = 1; +nodes = ( +(127,259,o), +(97,363,o), +(125,501,cs), +(150,621,o), +(214,711,o), +(314,711,cs), +(438,711,o), +(469,606,o), +(440,469,cs), +(413,342,o), +(350,259,o), +(252,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(212,343,l), +(267,608,l), +(306,608,ls), +(338,608,o), +(348,588,o), +(341,555,cs), +(333,520,o), +(321,502,o), +(280,502,cs), +(240,502,l), +(235,479,l), +(286,479,ls), +(309,479,o), +(319,468,o), +(312,438,cs), +(297,368,ls), +(296,363,o), +(294,353,o), +(294,343,c), +(318,343,l), +(317,348,o), +(318,354,o), +(321,369,cs), +(335,438,ls), +(339,457,o), +(340,478,o), +(319,488,c), +(319,489,l), +(341,499,o), +(359,516,o), +(366,551,cs), +(375,599,o), +(360,631,o), +(314,631,cs), +(248,631,l), +(188,343,l) +); +} +); +width = 471; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,207,o), +(480,303,o), +(511,455,cs), +(544,614,o), +(473,738,o), +(321,738,cs), +(198,738,o), +(97,642,o), +(66,493,cs), +(32,332,o), +(101,207,o), +(255,207,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,258,o), +(87,356,o), +(114,486,cs), +(140,609,o), +(219,687,o), +(317,687,cs), +(437,687,o), +(487,583,o), +(461,456,cs), +(435,334,o), +(357,258,o), +(260,258,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,326,l), +(291,561,l), +(298,561,ls), +(317,561,o), +(322,551,o), +(318,530,cs), +(314,505,o), +(302,495,o), +(285,495,cs), +(262,495,l), +(249,437,l), +(277,437,ls), +(293,437,o), +(296,423,o), +(292,405,cs), +(281,357,ls), +(278,346,o), +(277,334,o), +(278,326,c), +(354,326,l), +(353,334,o), +(355,349,o), +(357,358,cs), +(371,418,ls), +(377,445,o), +(370,468,o), +(348,471,c), +(348,473,l), +(377,477,o), +(400,504,o), +(402,549,cs), +(404,590,o), +(390,625,o), +(320,625,cs), +(227,625,l), +(163,326,l) +); +} +); +width = 493; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,231,o), +(630,352,o), +(630,506,cs), +(630,651,o), +(528,738,o), +(396,738,cs), +(247,738,o), +(122,617,o), +(122,463,cs), +(122,318,o), +(224,231,o), +(356,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,259,o), +(152,340,o), +(152,463,cs), +(152,601,o), +(258,710,o), +(395,710,cs), +(520,710,o), +(600,629,o), +(600,506,cs), +(600,368,o), +(494,259,o), +(357,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,349,l), +(335,597,l), +(421,597,ls), +(458,597,o), +(476,580,o), +(475,549,cs), +(474,517,o), +(451,492,o), +(406,492,cs), +(307,492,l), +(303,467,l), +(410,467,ls), +(439,467,o), +(450,456,o), +(442,418,cs), +(434,379,ls), +(432,370,o), +(431,354,o), +(432,349,c), +(459,349,l), +(458,358,o), +(459,367,o), +(461,375,cs), +(470,422,ls), +(476,451,o), +(467,470,o), +(444,479,c), +(444,480,l), +(476,489,o), +(503,513,o), +(504,552,cs), +(505,593,o), +(477,621,o), +(430,621,cs), +(314,621,l), +(256,349,l) +); +} +); +width = 659; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(500,207,o), +(619,327,o), +(619,492,cs), +(619,645,o), +(512,738,o), +(367,738,cs), +(198,738,o), +(83,616,o), +(83,451,cs), +(83,301,o), +(188,207,o), +(334,207,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,260,o), +(136,339,o), +(136,459,cs), +(136,593,o), +(228,689,o), +(362,689,cs), +(483,689,o), +(564,611,o), +(564,492,cs), +(564,359,o), +(475,260,o), +(340,260,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,343,l), +(338,541,l), +(374,541,ls), +(390,541,o), +(399,536,o), +(399,522,cs), +(399,503,o), +(386,492,o), +(363,492,cs), +(313,492,l), +(302,436,l), +(349,436,ls), +(371,436,o), +(377,427,o), +(373,407,cs), +(366,373,ls), +(364,362,o), +(363,349,o), +(364,343,c), +(453,343,l), +(452,350,o), +(452,361,o), +(455,374,cs), +(462,407,ls), +(470,444,o), +(461,462,o), +(436,468,c), +(436,470,l), +(471,480,o), +(490,506,o), +(490,540,cs), +(490,579,o), +(466,607,o), +(400,607,cs), +(263,607,l), +(208,343,l) +); +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(494,231,o), +(619,348,o), +(624,498,cs), +(629,641,o), +(523,738,o), +(380,738,cs), +(226,738,o), +(104,621,o), +(98,471,cs), +(93,325,o), +(204,231,o), +(342,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,259,o), +(124,348,o), +(128,473,cs), +(133,606,o), +(241,711,o), +(380,711,cs), +(506,711,o), +(598,624,o), +(594,495,cs), +(589,361,o), +(482,259,o), +(342,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,352,l), +(308,600,l), +(416,600,ls), +(453,600,o), +(471,583,o), +(470,552,cs), +(469,520,o), +(446,495,o), +(401,495,cs), +(278,495,l), +(274,470,l), +(404,470,ls), +(433,470,o), +(444,459,o), +(436,421,cs), +(428,382,ls), +(426,373,o), +(425,357,o), +(426,352,c), +(454,352,l), +(453,361,o), +(454,370,o), +(456,378,cs), +(465,425,ls), +(471,454,o), +(462,473,o), +(439,482,c), +(439,483,l), +(471,492,o), +(498,516,o), +(499,555,cs), +(500,596,o), +(472,624,o), +(425,624,cs), +(285,624,l), +(227,352,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(500,231,o), +(622,350,o), +(622,506,cs), +(622,642,o), +(523,739,o), +(381,739,cs), +(223,739,o), +(100,618,o), +(100,462,cs), +(100,327,o), +(199,231,o), +(341,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(215,259,o), +(128,342,o), +(128,460,cs), +(128,602,o), +(238,711,o), +(381,711,cs), +(507,711,o), +(594,627,o), +(594,506,cs), +(594,365,o), +(484,259,o), +(341,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,352,l), +(308,600,l), +(416,600,ls), +(453,600,o), +(471,583,o), +(470,552,cs), +(469,520,o), +(446,495,o), +(401,495,cs), +(278,495,l), +(274,470,l), +(404,470,ls), +(433,470,o), +(444,459,o), +(436,421,cs), +(428,382,ls), +(426,373,o), +(425,357,o), +(426,352,c), +(454,352,l), +(453,361,o), +(454,370,o), +(456,378,cs), +(465,425,ls), +(471,454,o), +(462,473,o), +(439,482,c), +(439,483,l), +(471,492,o), +(498,516,o), +(499,555,cs), +(500,596,o), +(472,624,o), +(425,624,cs), +(285,624,l), +(227,352,l) +); +} +); +width = 629; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(508,206,o), +(631,331,o), +(631,494,cs), +(631,641,o), +(526,738,o), +(365,738,cs), +(187,738,o), +(66,613,o), +(66,450,cs), +(66,303,o), +(169,206,o), +(330,206,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,260,o), +(121,337,o), +(121,455,cs), +(121,590,o), +(221,688,o), +(365,688,cs), +(492,688,o), +(575,610,o), +(575,492,cs), +(575,357,o), +(475,260,o), +(331,260,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,334,l), +(325,541,l), +(384,541,ls), +(400,541,o), +(410,536,o), +(410,521,cs), +(410,501,o), +(396,490,o), +(372,490,cs), +(300,490,l), +(288,431,l), +(358,431,ls), +(381,431,o), +(388,422,o), +(383,401,cs), +(375,365,ls), +(373,354,o), +(372,343,o), +(373,334,c), +(466,334,l), +(465,342,o), +(465,353,o), +(468,366,cs), +(476,401,ls), +(485,439,o), +(475,458,o), +(449,464,c), +(449,466,l), +(485,478,o), +(505,505,o), +(505,540,cs), +(505,581,o), +(480,610,o), +(411,610,cs), +(248,610,l), +(190,334,l) +); +} +); +width = 614; +} +); +unicode = 174; +userData = { +KernOnSpecialSpacing = { +L = superiors; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/rightA_rrow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/rightA_rrow.glyph new file mode 100644 index 00000000..99460d8c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/rightA_rrow.glyph @@ -0,0 +1,460 @@ +{ +glyphname = rightArrow; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,290,l), +(351,290,l), +(262,171,l), +(428,171,l), +(575,365,l), +(428,559,l), +(262,559,l), +(351,440,l), +(36,440,l) +); +} +); +width = 600; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(70,350,l), +(560,350,l), +(448,197,l), +(485,197,l), +(609,365,l), +(485,533,l), +(448,533,l), +(560,380,l), +(70,380,l) +); +} +); +width = 669; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,347,l), +(572,347,l), +(439,166,l), +(480,166,l), +(628,365,l), +(480,564,l), +(439,564,l), +(572,383,l), +(89,383,l) +); +} +); +width = 683; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(43,270,l), +(380,270,l), +(289,125,l), +(481,125,l), +(632,365,l), +(481,605,l), +(289,605,l), +(380,460,l), +(43,460,l) +); +} +); +width = 670; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(50,350,l), +(540,350,l), +(428,197,l), +(465,197,l), +(589,365,l), +(465,533,l), +(428,533,l), +(540,380,l), +(50,380,l) +); +} +); +width = 629; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(26,290,l), +(341,290,l), +(252,171,l), +(418,171,l), +(565,365,l), +(418,559,l), +(252,559,l), +(341,440,l), +(26,440,l) +); +} +); +width = 580; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(82,347,l), +(565,347,l), +(443,182,l), +(485,182,l), +(621,365,l), +(485,548,l), +(443,548,l), +(565,383,l), +(82,383,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 698; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,283,l), +(424,283,l), +(328,135,l), +(494,135,l), +(643,365,l), +(494,595,l), +(328,595,l), +(424,447,l), +(62,447,l) +); +} +); +width = 698; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(79,347,l), +(562,347,l), +(429,166,l), +(470,166,l), +(618,365,l), +(470,564,l), +(429,564,l), +(562,383,l), +(79,383,l) +); +} +); +width = 663; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(33,270,l), +(370,270,l), +(279,125,l), +(471,125,l), +(622,365,l), +(471,605,l), +(279,605,l), +(370,460,l), +(33,460,l) +); +} +); +width = 650; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(107,347,l), +(580,347,l), +(460,182,l), +(502,182,l), +(636,365,l), +(502,548,l), +(460,548,l), +(580,383,l), +(107,383,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 737; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(84,283,l), +(433,283,l), +(341,135,l), +(505,135,l), +(649,365,l), +(505,595,l), +(341,595,l), +(433,447,l), +(84,447,l) +); +} +); +width = 726; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(87,350,l), +(577,350,l), +(465,197,l), +(502,197,l), +(626,365,l), +(502,533,l), +(465,533,l), +(577,380,l), +(87,380,l) +); +} +); +width = 671; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,290,l), +(435,290,l), +(346,171,l), +(512,171,l), +(659,365,l), +(512,559,l), +(346,559,l), +(435,440,l), +(120,440,l) +); +} +); +width = 759; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(122,347,l), +(605,347,l), +(483,182,l), +(525,182,l), +(661,365,l), +(525,548,l), +(483,548,l), +(605,383,l), +(122,383,l) +); +} +); +width = 749; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,283,l), +(476,283,l), +(380,135,l), +(546,135,l), +(695,365,l), +(546,595,l), +(380,595,l), +(476,447,l), +(114,447,l) +); +} +); +width = 761; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(104,347,l), +(587,347,l), +(454,166,l), +(495,166,l), +(643,365,l), +(495,564,l), +(454,564,l), +(587,383,l), +(104,383,l) +); +} +); +width = 685; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,270,l), +(410,270,l), +(319,125,l), +(511,125,l), +(662,365,l), +(511,605,l), +(319,605,l), +(410,460,l), +(73,460,l) +); +} +); +width = 690; +} +); +unicode = 8594; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ring.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ring.glyph new file mode 100644 index 00000000..d7589059 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ring.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = ring; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 206; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 308; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 296; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 368; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = ringcomb; +} +); +width = 206; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = ringcomb; +} +); +width = 308; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = ringcomb; +} +); +width = 266; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = ringcomb; +} +); +width = 318; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = ringcomb; +} +); +width = 296; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = ringcomb; +} +); +width = 368; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 265; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 322; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 205; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 307; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 267; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 341; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 300; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 371; +} +); +unicode = 730; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ringcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ringcomb.glyph new file mode 100644 index 00000000..1b114969 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ringcomb.glyph @@ -0,0 +1,885 @@ +{ +glyphname = ringcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (103,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,721,o), +(166,753,o), +(166,810,cs), +(166,863,o), +(143,899,o), +(103,899,cs), +(65,899,o), +(40,867,o), +(40,810,cs), +(40,757,o), +(63,721,o), +(103,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(81,746,o), +(67,766,o), +(67,810,cs), +(67,848,o), +(79,874,o), +(103,874,cs), +(125,874,o), +(139,854,o), +(139,810,cs), +(139,772,o), +(127,746,o), +(103,746,cs) +); +} +); +width = 206; +}, +{ +anchors = ( +{ +name = _top; +pos = (154,678); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,723,o), +(268,772,o), +(268,843,cs), +(268,914,o), +(223,963,o), +(154,963,cs), +(85,963,o), +(40,914,o), +(40,843,cs), +(40,772,o), +(85,723,o), +(154,723,cs) +); +}, +{ +closed = 1; +nodes = ( +(139,800,o), +(129,812,o), +(129,843,cs), +(129,871,o), +(137,886,o), +(154,886,cs), +(169,886,o), +(179,874,o), +(179,843,cs), +(179,815,o), +(171,800,o), +(154,800,cs) +); +} +); +width = 308; +}, +{ +anchors = ( +{ +name = _top; +pos = (148,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,721,o), +(256,760,o), +(256,820,cs), +(256,880,o), +(211,919,o), +(148,919,cs), +(85,919,o), +(40,880,o), +(40,820,cs), +(40,760,o), +(85,721,o), +(148,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(104,749,o), +(74,778,o), +(74,820,cs), +(74,862,o), +(104,890,o), +(148,890,cs), +(192,890,o), +(222,862,o), +(222,820,cs), +(222,778,o), +(192,749,o), +(148,749,cs) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = _top; +pos = (184,673); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,715,o), +(328,758,o), +(328,835,cs), +(328,907,o), +(276,955,o), +(184,955,cs), +(98,955,o), +(40,912,o), +(40,835,cs), +(40,763,o), +(92,715,o), +(184,715,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,797,o), +(145,811,o), +(145,835,cs), +(145,858,o), +(159,873,o), +(184,873,cs), +(207,873,o), +(223,859,o), +(223,835,cs), +(223,812,o), +(209,797,o), +(184,797,cs) +); +} +); +width = 368; +}, +{ +anchors = ( +{ +name = _top; +pos = (83,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,721,o), +(146,753,o), +(146,810,cs), +(146,863,o), +(123,899,o), +(83,899,cs), +(45,899,o), +(20,867,o), +(20,810,cs), +(20,757,o), +(43,721,o), +(83,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(61,746,o), +(47,766,o), +(47,810,cs), +(47,848,o), +(59,874,o), +(83,874,cs), +(105,874,o), +(119,854,o), +(119,810,cs), +(119,772,o), +(107,746,o), +(83,746,cs) +); +} +); +width = 166; +}, +{ +anchors = ( +{ +name = _top; +pos = (144,678); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(213,723,o), +(258,772,o), +(258,843,cs), +(258,914,o), +(213,963,o), +(144,963,cs), +(75,963,o), +(30,914,o), +(30,843,cs), +(30,772,o), +(75,723,o), +(144,723,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,800,o), +(119,812,o), +(119,843,cs), +(119,871,o), +(127,886,o), +(144,886,cs), +(159,886,o), +(169,874,o), +(169,843,cs), +(169,815,o), +(161,800,o), +(144,800,cs) +); +} +); +width = 288; +}, +{ +anchors = ( +{ +name = _top; +pos = (113,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,721,o), +(206,756,o), +(206,810,cs), +(206,864,o), +(168,899,o), +(113,899,cs), +(58,899,o), +(20,864,o), +(20,810,cs), +(20,756,o), +(58,721,o), +(113,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(76,749,o), +(52,774,o), +(52,810,cs), +(52,846,o), +(76,870,o), +(113,870,cs), +(150,870,o), +(174,846,o), +(174,810,cs), +(174,774,o), +(150,749,o), +(113,749,cs) +); +} +); +width = 226; +}, +{ +anchors = ( +{ +name = _top; +pos = (148,678); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,723,o), +(277,771,o), +(277,841,cs), +(277,911,o), +(226,959,o), +(148,959,cs), +(70,959,o), +(19,911,o), +(19,841,cs), +(19,771,o), +(70,723,o), +(148,723,cs) +); +}, +{ +closed = 1; +nodes = ( +(126,804,o), +(111,818,o), +(111,841,cs), +(111,864,o), +(126,878,o), +(148,878,cs), +(170,878,o), +(185,864,o), +(185,841,cs), +(185,818,o), +(170,804,o), +(148,804,cs) +); +} +); +width = 296; +}, +{ +anchors = ( +{ +name = _top; +pos = (138,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,721,o), +(246,760,o), +(246,820,cs), +(246,880,o), +(201,919,o), +(138,919,cs), +(75,919,o), +(30,880,o), +(30,820,cs), +(30,760,o), +(75,721,o), +(138,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(94,749,o), +(64,778,o), +(64,820,cs), +(64,862,o), +(94,890,o), +(138,890,cs), +(182,890,o), +(212,862,o), +(212,820,cs), +(212,778,o), +(182,749,o), +(138,749,cs) +); +} +); +width = 276; +}, +{ +anchors = ( +{ +name = _top; +pos = (174,673); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,715,o), +(318,758,o), +(318,835,cs), +(318,907,o), +(266,955,o), +(174,955,cs), +(88,955,o), +(30,912,o), +(30,835,cs), +(30,763,o), +(82,715,o), +(174,715,cs) +); +}, +{ +closed = 1; +nodes = ( +(151,797,o), +(135,811,o), +(135,835,cs), +(135,858,o), +(149,873,o), +(174,873,cs), +(197,873,o), +(213,859,o), +(213,835,cs), +(213,812,o), +(199,797,o), +(174,797,cs) +); +} +); +width = 348; +}, +{ +anchors = ( +{ +name = _top; +pos = (134,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(187,721,o), +(225,756,o), +(225,810,cs), +(225,864,o), +(187,899,o), +(134,899,cs), +(79,899,o), +(43,864,o), +(43,810,cs), +(43,756,o), +(79,721,o), +(134,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(97,749,o), +(73,774,o), +(73,810,cs), +(73,846,o), +(97,870,o), +(134,870,cs), +(169,870,o), +(193,846,o), +(193,810,cs), +(193,774,o), +(169,749,o), +(134,749,cs) +); +} +); +width = 265; +}, +{ +anchors = ( +{ +name = _top; +pos = (161,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(236,723,o), +(284,771,o), +(284,841,cs), +(284,911,o), +(236,959,o), +(161,959,cs), +(87,959,o), +(39,911,o), +(39,841,cs), +(39,771,o), +(87,723,o), +(161,723,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,804,o), +(129,818,o), +(129,841,cs), +(129,864,o), +(143,878,o), +(161,878,cs), +(180,878,o), +(194,864,o), +(194,841,cs), +(194,818,o), +(180,804,o), +(161,804,cs) +); +} +); +width = 322; +}, +{ +anchors = ( +{ +name = _top; +pos = (188,672); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,741,o), +(270,770,o), +(282,825,cs), +(292,872,o), +(282,919,o), +(234,919,cs), +(199,919,o), +(171,889,o), +(159,835,cs), +(149,789,o), +(161,741,o), +(207,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,766,o), +(179,800,o), +(186,833,cs), +(192,869,o), +(209,894,o), +(231,894,cs), +(262,894,o), +(263,860,o), +(256,826,cs), +(247,789,o), +(232,766,o), +(210,766,cs) +); +} +); +width = 205; +}, +{ +anchors = ( +{ +name = _top; +pos = (238,678); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,723,o), +(368,763,o), +(384,834,cs), +(400,909,o), +(359,965,o), +(285,965,cs), +(225,965,o), +(176,925,o), +(161,853,cs), +(145,781,o), +(183,723,o), +(260,723,cs) +); +}, +{ +closed = 1; +nodes = ( +(245,801,o), +(243,822,o), +(247,845,cs), +(253,872,o), +(264,887,o), +(280,887,cs), +(301,887,o), +(302,865,o), +(297,842,cs), +(291,816,o), +(280,801,o), +(265,801,cs) +); +} +); +width = 307; +}, +{ +anchors = ( +{ +name = _top; +pos = (219,672); +} +); +guides = ( +{ +pos = (126,721); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,721,o), +(339,760,o), +(340,814,cs), +(342,864,o), +(307,899,o), +(255,899,cs), +(199,899,o), +(157,861,o), +(155,807,cs), +(153,756,o), +(190,721,o), +(241,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(211,749,o), +(185,769,o), +(187,806,cs), +(188,839,o), +(212,870,o), +(251,870,cs), +(284,870,o), +(310,850,o), +(309,814,cs), +(307,775,o), +(281,749,o), +(243,749,cs) +); +} +); +width = 267; +}, +{ +anchors = ( +{ +name = _top; +pos = (255,678); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,726,o), +(416,776,o), +(419,849,cs), +(421,919,o), +(372,964,o), +(297,964,cs), +(218,964,o), +(163,914,o), +(160,841,cs), +(158,771,o), +(206,726,o), +(282,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,807,o), +(251,821,o), +(252,843,cs), +(253,869,o), +(269,883,o), +(292,883,cs), +(313,883,o), +(327,869,o), +(327,847,cs), +(326,821,o), +(309,807,o), +(287,807,cs) +); +} +); +width = 341; +}, +{ +anchors = ( +{ +name = _top; +pos = (236,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(322,721,o), +(372,766,o), +(374,830,cs), +(376,886,o), +(335,919,o), +(277,919,cs), +(206,919,o), +(158,870,o), +(157,811,cs), +(156,755,o), +(199,721,o), +(256,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,753,o), +(193,778,o), +(194,814,cs), +(195,856,o), +(227,888,o), +(274,888,cs), +(314,888,o), +(338,864,o), +(338,828,cs), +(338,785,o), +(305,753,o), +(259,753,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(327,721,o), +(375,765,o), +(375,825,cs), +(375,881,o), +(334,919,o), +(274,919,cs), +(207,919,o), +(158,876,o), +(158,815,cs), +(158,758,o), +(199,721,o), +(261,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,750,o), +(191,774,o), +(191,815,cs), +(191,860,o), +(224,890,o), +(274,890,cs), +(316,890,o), +(342,866,o), +(342,825,cs), +(342,781,o), +(309,750,o), +(261,750,cs) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _top; +pos = (270,678); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(387,715,o), +(445,763,o), +(445,836,cs), +(445,912,o), +(389,955,o), +(305,955,cs), +(217,955,o), +(159,907,o), +(159,834,cs), +(159,758,o), +(215,715,o), +(300,715,cs) +); +}, +{ +closed = 1; +nodes = ( +(278,797,o), +(263,811,o), +(263,835,cs), +(264,858,o), +(278,873,o), +(303,873,cs), +(326,873,o), +(341,859,o), +(341,835,cs), +(340,812,o), +(326,797,o), +(301,797,cs) +); +} +); +width = 371; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 778; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/rupeeI_ndian.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/rupeeI_ndian.glyph new file mode 100644 index 00000000..099a65d2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/rupeeI_ndian.glyph @@ -0,0 +1,1127 @@ +{ +glyphname = rupeeIndian; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,0,l), +(368,180,ls), +(361,256,o), +(330,294,o), +(280,310,c), +(280,317,l), +(333,329,o), +(383,382,o), +(391,437,c), +(456,437,l), +(456,539,l), +(392,539,l), +(389,574,o), +(373,607,o), +(356,620,c), +(356,627,l), +(456,627,l), +(456,729,l), +(24,729,l), +(24,596,l), +(101,596,ls), +(172,596,o), +(199,570,o), +(206,531,c), +(24,531,l), +(24,445,l), +(205,445,l), +(199,401,o), +(158,380,o), +(99,380,cs), +(24,380,l), +(24,257,l), +(104,257,ls), +(145,257,o), +(167,243,o), +(175,164,cs), +(191,0,l) +); +} +); +width = 476; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,0,l), +(277,212,ls), +(267,277,o), +(237,324,o), +(187,338,c), +(187,344,l), +(265,365,o), +(313,432,o), +(317,513,c), +(388,513,l), +(388,539,l), +(317,539,l), +(315,614,o), +(277,676,o), +(227,699,c), +(227,701,l), +(388,701,l), +(388,729,l), +(30,729,l), +(30,701,l), +(127,701,ls), +(210,701,o), +(283,653,o), +(284,539,c), +(30,539,l), +(30,513,l), +(284,513,l), +(279,416,o), +(215,354,o), +(108,354,cs), +(30,354,l), +(30,327,l), +(117,327,ls), +(184,327,o), +(235,294,o), +(247,208,cs), +(276,0,l) +); +} +); +width = 409; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(527,0,l), +(496,206,ls), +(485,276,o), +(453,317,o), +(391,334,c), +(391,340,l), +(479,358,o), +(538,420,o), +(544,507,c), +(626,507,l), +(626,541,l), +(543,541,l), +(540,610,o), +(497,671,o), +(443,691,c), +(443,694,l), +(626,694,l), +(626,729,l), +(45,729,l), +(45,694,l), +(318,694,ls), +(421,694,o), +(490,647,o), +(503,542,c), +(45,542,l), +(45,507,l), +(503,507,l), +(496,414,o), +(435,359,o), +(310,359,cs), +(45,359,l), +(45,323,l), +(278,323,ls), +(379,323,o), +(442,303,o), +(459,197,cs), +(490,0,l) +); +} +); +width = 663; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,0,l), +(517,175,ls), +(492,253,o), +(465,289,o), +(398,305,c), +(398,313,l), +(474,325,o), +(531,362,o), +(551,423,c), +(642,423,l), +(642,539,l), +(553,539,l), +(547,565,o), +(526,592,o), +(500,606,c), +(500,613,l), +(642,613,l), +(642,729,l), +(36,729,l), +(36,577,l), +(205,577,ls), +(263,577,o), +(302,562,o), +(311,529,c), +(36,529,l), +(36,433,l), +(310,433,l), +(301,404,o), +(267,384,o), +(206,384,cs), +(36,384,l), +(36,244,l), +(155,244,ls), +(218,244,o), +(242,230,o), +(267,156,cs), +(320,0,l) +); +} +); +width = 663; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,0,l), +(257,212,ls), +(247,277,o), +(217,324,o), +(167,338,c), +(167,344,l), +(245,365,o), +(293,432,o), +(297,513,c), +(368,513,l), +(368,539,l), +(297,539,l), +(295,614,o), +(257,676,o), +(207,699,c), +(207,701,l), +(368,701,l), +(368,729,l), +(10,729,l), +(10,701,l), +(107,701,ls), +(190,701,o), +(263,653,o), +(264,539,c), +(10,539,l), +(10,513,l), +(264,513,l), +(259,416,o), +(195,354,o), +(88,354,cs), +(10,354,l), +(10,327,l), +(97,327,ls), +(164,327,o), +(215,294,o), +(227,208,cs), +(256,0,l) +); +} +); +width = 369; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(375,0,l), +(358,180,ls), +(351,256,o), +(320,294,o), +(270,310,c), +(270,317,l), +(323,329,o), +(373,382,o), +(381,437,c), +(446,437,l), +(446,539,l), +(382,539,l), +(379,574,o), +(363,607,o), +(346,620,c), +(346,627,l), +(446,627,l), +(446,729,l), +(14,729,l), +(14,596,l), +(91,596,ls), +(162,596,o), +(189,570,o), +(196,531,c), +(14,531,l), +(14,445,l), +(195,445,l), +(189,401,o), +(148,380,o), +(89,380,cs), +(14,380,l), +(14,257,l), +(94,257,ls), +(135,257,o), +(157,243,o), +(165,164,cs), +(181,0,l) +); +} +); +width = 456; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(501,0,l), +(472,206,ls), +(462,276,o), +(427,322,o), +(367,334,c), +(367,340,l), +(455,358,o), +(514,420,o), +(520,507,c), +(592,507,l), +(592,541,l), +(519,541,l), +(516,610,o), +(473,671,o), +(419,691,c), +(419,694,l), +(592,694,l), +(592,729,l), +(46,729,l), +(46,694,l), +(294,694,ls), +(397,694,o), +(466,647,o), +(479,542,c), +(46,542,l), +(46,507,l), +(479,507,l), +(472,414,o), +(411,359,o), +(286,359,cs), +(46,359,l), +(46,323,l), +(284,323,ls), +(355,323,o), +(420,303,o), +(435,197,cs), +(463,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +30 +); +stem = -2; +type = Anchor; +}, +{ +horizontal = 1; +options = 0; +place = ( +280.732, +59.071 +); +stem = -2; +type = TTStem; +}, +{ +horizontal = 1; +options = 0; +place = ( +687.643, +1066.179 +); +stem = -2; +type = TTStem; +} +); +}; +width = 627; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(513,0,l), +(457,175,ls), +(431,255,o), +(401,291,o), +(343,305,c), +(343,312,l), +(415,325,o), +(469,362,o), +(489,423,c), +(576,423,l), +(576,539,l), +(491,539,l), +(485,565,o), +(466,592,o), +(443,606,c), +(443,613,l), +(576,613,l), +(576,729,l), +(30,729,l), +(30,587,l), +(163,587,ls), +(240,587,o), +(270,568,o), +(281,533,c), +(30,533,l), +(30,438,l), +(282,438,l), +(273,404,o), +(245,384,o), +(170,384,cs), +(30,384,l), +(30,244,l), +(107,244,ls), +(196,244,o), +(216,230,o), +(241,156,cs), +(293,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +33 +); +stem = -2; +type = Anchor; +}, +{ +horizontal = 1; +options = 0; +place = ( +211, +173 +); +stem = -2; +type = TTStem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +27 +); +type = TTStem; +} +); +}; +width = 593; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(517,0,l), +(486,206,ls), +(475,276,o), +(443,317,o), +(381,334,c), +(381,340,l), +(469,358,o), +(528,420,o), +(534,507,c), +(616,507,l), +(616,541,l), +(533,541,l), +(530,610,o), +(487,671,o), +(433,691,c), +(433,694,l), +(616,694,l), +(616,729,l), +(35,729,l), +(35,694,l), +(308,694,ls), +(411,694,o), +(480,647,o), +(493,542,c), +(35,542,l), +(35,507,l), +(493,507,l), +(486,414,o), +(425,359,o), +(300,359,cs), +(35,359,l), +(35,323,l), +(268,323,ls), +(369,323,o), +(432,303,o), +(449,197,cs), +(480,0,l) +); +} +); +width = 643; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(562,0,l), +(507,175,ls), +(482,253,o), +(455,289,o), +(388,305,c), +(388,313,l), +(464,325,o), +(521,362,o), +(541,423,c), +(632,423,l), +(632,539,l), +(543,539,l), +(537,565,o), +(516,592,o), +(490,606,c), +(490,613,l), +(632,613,l), +(632,729,l), +(26,729,l), +(26,577,l), +(195,577,ls), +(253,577,o), +(292,562,o), +(301,529,c), +(26,529,l), +(26,433,l), +(300,433,l), +(291,404,o), +(257,384,o), +(196,384,cs), +(26,384,l), +(26,244,l), +(145,244,ls), +(208,244,o), +(232,230,o), +(257,156,cs), +(310,0,l) +); +} +); +width = 643; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(514,0,l), +(485,206,ls), +(475,276,o), +(442,322,o), +(382,334,c), +(382,340,l), +(468,358,o), +(527,420,o), +(533,507,c), +(603,507,l), +(603,541,l), +(532,541,l), +(529,610,o), +(486,671,o), +(434,691,c), +(434,694,l), +(603,694,l), +(603,729,l), +(67,729,l), +(67,694,l), +(311,694,ls), +(412,694,o), +(479,647,o), +(492,542,c), +(67,542,l), +(67,507,l), +(492,507,l), +(485,414,o), +(426,359,o), +(303,359,cs), +(67,359,l), +(67,323,l), +(301,323,ls), +(370,323,o), +(435,303,o), +(448,197,cs), +(476,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +30 +); +stem = -2; +type = Anchor; +}, +{ +horizontal = 1; +options = 0; +place = ( +280.732, +59.071 +); +stem = -2; +type = TTStem; +}, +{ +horizontal = 1; +options = 0; +place = ( +687.643, +1066.179 +); +stem = -2; +type = TTStem; +} +); +}; +width = 658; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(520,0,l), +(464,175,ls), +(439,256,o), +(409,291,o), +(353,305,c), +(353,312,l), +(423,325,o), +(475,362,o), +(495,423,c), +(580,423,l), +(580,539,l), +(497,539,l), +(491,565,o), +(473,592,o), +(451,606,c), +(451,613,l), +(580,613,l), +(580,729,l), +(50,729,l), +(50,587,l), +(176,587,ls), +(248,587,o), +(278,569,o), +(289,533,c), +(50,533,l), +(50,438,l), +(290,438,l), +(281,404,o), +(255,384,o), +(183,384,cs), +(50,384,l), +(50,244,l), +(121,244,ls), +(207,244,o), +(226,231,o), +(250,156,cs), +(302,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +33 +); +stem = -2; +type = Anchor; +}, +{ +horizontal = 1; +options = 0; +place = ( +211, +173 +); +stem = -2; +type = TTStem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +27 +); +type = TTStem; +} +); +}; +width = 616; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(264,202,ls), +(264,277,o), +(243,320,o), +(202,338,c), +(203,344,l), +(287,366,o), +(347,434,o), +(367,513,c), +(437,513,l), +(442,539,l), +(372,539,l), +(387,614,o), +(361,676,o), +(317,699,c), +(317,701,l), +(477,701,l), +(483,729,l), +(128,729,l), +(122,701,l), +(218,701,ls), +(295,701,o), +(363,658,o), +(339,539,c), +(88,539,l), +(83,513,l), +(334,513,l), +(309,416,o), +(232,354,o), +(127,354,cs), +(50,354,l), +(44,327,l), +(130,327,ls), +(203,327,o), +(235,305,o), +(235,187,cs), +(235,0,l) +); +} +); +width = 405; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,0,l), +(342,179,ls), +(343,247,o), +(325,295,o), +(285,310,c), +(287,317,l), +(342,329,o), +(402,383,o), +(422,437,c), +(487,437,l), +(508,539,l), +(445,539,l), +(449,573,o), +(440,607,o), +(426,620,c), +(427,627,l), +(526,627,l), +(547,729,l), +(120,729,l), +(92,596,l), +(168,596,ls), +(238,596,o), +(260,570,o), +(258,531,c), +(78,531,l), +(60,445,l), +(239,445,l), +(224,401,o), +(180,380,o), +(121,380,cs), +(47,380,l), +(21,257,l), +(74,257,ls), +(137,257,o), +(148,243,o), +(147,164,cs), +(145,0,l) +); +} +); +width = 472; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(468,0,l), +(481,206,ls), +(486,276,o), +(460,322,o), +(403,334,c), +(404,340,l), +(496,358,o), +(567,420,o), +(592,507,c), +(664,507,l), +(671,541,l), +(598,541,l), +(609,610,o), +(578,671,o), +(529,691,c), +(529,694,l), +(702,694,l), +(709,729,l), +(163,729,l), +(156,694,l), +(404,694,ls), +(507,694,o), +(567,647,o), +(558,542,c), +(125,542,l), +(118,507,l), +(551,507,l), +(524,414,o), +(452,359,o), +(327,359,cs), +(87,359,l), +(79,323,l), +(317,323,ls), +(388,323,o), +(449,303,o), +(442,197,cs), +(430,0,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,0,l), +(474,185,ls), +(473,271,o), +(453,313,o), +(397,334,c), +(398,340,l), +(498,355,o), +(575,416,o), +(592,507,c), +(678,507,l), +(686,541,l), +(597,541,l), +(599,611,o), +(568,668,o), +(524,691,c), +(525,694,l), +(717,694,l), +(724,729,l), +(164,729,l), +(158,694,l), +(404,694,ls), +(502,694,o), +(564,649,o), +(558,542,c), +(126,542,l), +(116,507,l), +(552,507,l), +(535,420,o), +(454,360,o), +(343,360,cs), +(86,360,l), +(78,323,l), +(302,323,ls), +(405,323,o), +(436,293,o), +(437,184,cs), +(438,0,l) +); +} +); +width = 682; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(457,0,l), +(461,16,l), +(454,20,o), +(448,31,o), +(449,41,c), +(446,175,ls), +(444,257,o), +(416,289,o), +(368,305,c), +(369,313,l), +(447,325,o), +(513,365,o), +(536,423,c), +(623,423,l), +(646,539,l), +(556,539,l), +(554,564,o), +(542,591,o), +(524,606,c), +(525,613,l), +(663,613,l), +(687,729,l), +(146,729,l), +(115,577,l), +(247,577,ls), +(325,577,o), +(350,560,o), +(354,529,c), +(105,529,l), +(85,433,l), +(334,433,l), +(321,401,o), +(288,384,o), +(219,384,cs), +(75,384,l), +(45,244,l), +(154,244,ls), +(213,244,o), +(240,232,o), +(240,156,cs), +(240,47,ls), +(240,14,o), +(247,5,o), +(251,0,c) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,0,l), +(443,175,ls), +(436,257,o), +(411,287,o), +(368,305,c), +(369,311,l), +(447,323,o), +(513,364,o), +(536,423,c), +(623,423,l), +(646,539,l), +(556,539,l), +(554,564,o), +(542,591,o), +(524,606,c), +(525,613,l), +(663,613,l), +(687,729,l), +(146,729,l), +(117,587,l), +(247,587,ls), +(322,587,o), +(348,568,o), +(354,533,c), +(105,533,l), +(85,438,l), +(336,438,l), +(324,403,o), +(291,384,o), +(219,384,cs), +(75,384,l), +(45,244,l), +(154,244,ls), +(213,244,o), +(235,232,o), +(240,156,cs), +(251,0,l) +); +} +); +width = 630; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,0,l), +(479,188,ls), +(482,260,o), +(459,314,o), +(404,334,c), +(406,340,l), +(496,356,o), +(573,415,o), +(594,507,c), +(682,507,l), +(690,541,l), +(600,541,l), +(603,610,o), +(576,670,o), +(530,691,c), +(530,694,l), +(721,694,l), +(728,729,l), +(143,729,l), +(136,694,l), +(407,694,ls), +(508,694,o), +(568,647,o), +(558,542,c), +(104,542,l), +(97,507,l), +(551,507,l), +(529,415,o), +(453,359,o), +(331,359,cs), +(66,359,l), +(59,323,l), +(319,323,ls), +(390,323,o), +(444,302,o), +(440,187,cs), +(434,0,l) +); +} +); +width = 668; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(482,0,l), +(478,167,ls), +(476,255,o), +(455,289,o), +(394,305,c), +(395,313,l), +(481,320,o), +(554,370,o), +(572,423,c), +(658,423,l), +(683,539,l), +(589,539,l), +(585,567,o), +(570,597,o), +(551,607,c), +(551,613,l), +(698,613,l), +(722,729,l), +(131,729,l), +(99,577,l), +(267,577,ls), +(324,577,o), +(360,562,o), +(362,529,c), +(90,529,l), +(69,433,l), +(341,433,l), +(326,404,o), +(289,384,o), +(228,384,cs), +(59,384,l), +(30,244,l), +(148,244,ls), +(216,244,o), +(244,232,o), +(245,156,cs), +(248,0,l) +); +} +); +width = 649; +} +); +unicode = 8377; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/s.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/s.glyph new file mode 100644 index 00000000..c8b30ac0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/s.glyph @@ -0,0 +1,1466 @@ +{ +glyphname = s; +kernLeft = KO_s; +kernRight = KO_s; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (145,0); +}, +{ +name = top; +pos = (139,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-10,o), +(253,35,o), +(253,117,cs), +(253,207,o), +(210,242,o), +(156,279,cs), +(110,310,o), +(70,340,o), +(70,409,cs), +(70,461,o), +(87,496,o), +(139,496,cs), +(198,496,o), +(217,449,o), +(219,366,c), +(247,366,l), +(248,488,o), +(203,525,o), +(140,525,cs), +(83,525,o), +(41,493,o), +(41,410,cs), +(41,329,o), +(80,293,o), +(132,257,cs), +(181,223,o), +(224,192,o), +(224,118,cs), +(224,59,o), +(199,19,o), +(145,19,cs), +(77,19,o), +(55,77,o), +(55,160,c), +(27,160,l), +(27,38,o), +(76,-10,o), +(145,-10,cs) +); +} +); +width = 288; +}, +{ +anchors = ( +{ +name = bottom; +pos = (215,0); +}, +{ +name = top; +pos = (213,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(345,-10,o), +(409,59,o), +(409,162,cs), +(409,238,o), +(376,292,o), +(264,340,cs), +(217,360,o), +(186,374,o), +(186,406,cs), +(186,426,o), +(192,443,o), +(213,443,cs), +(236,443,o), +(245,430,o), +(248,379,c), +(403,379,l), +(403,491,o), +(330,551,o), +(214,551,cs), +(83,551,o), +(18,486,o), +(18,386,cs), +(18,294,o), +(76,249,o), +(150,215,cs), +(226,180,o), +(235,168,o), +(235,135,cs), +(235,115,o), +(228,101,o), +(207,101,cs), +(183,101,o), +(171,114,o), +(171,168,c), +(11,168,l), +(13,61,o), +(76,-10,o), +(209,-10,cs) +); +} +); +width = 421; +}, +{ +anchors = ( +{ +name = bottom; +pos = (274,0); +}, +{ +name = top; +pos = (269,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-10,o), +(507,48,o), +(507,135,cs), +(507,243,o), +(432,266,o), +(274,283,cs), +(143,297,o), +(85,317,o), +(85,387,cs), +(85,461,o), +(164,494,o), +(270,494,cs), +(374,494,o), +(450,456,o), +(457,367,c), +(494,367,l), +(487,464,o), +(415,527,o), +(270,527,cs), +(138,527,o), +(48,475,o), +(48,386,cs), +(48,294,o), +(119,263,o), +(270,248,cs), +(419,232,o), +(469,214,o), +(469,132,cs), +(469,54,o), +(390,23,o), +(274,23,cs), +(146,23,o), +(66,76,o), +(66,160,c), +(29,160,l), +(29,58,o), +(122,-10,o), +(274,-10,cs) +); +} +); +width = 539; +}, +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = top; +pos = (313,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(522,-10,o), +(619,62,o), +(619,172,cs), +(619,292,o), +(552,330,o), +(349,347,cs), +(267,354,o), +(238,358,o), +(238,387,cs), +(238,414,o), +(268,425,o), +(316,425,cs), +(359,425,o), +(387,409,o), +(393,377,c), +(601,377,l), +(588,493,o), +(477,554,o), +(317,554,cs), +(128,554,o), +(24,479,o), +(24,368,cs), +(24,256,o), +(97,218,o), +(301,199,cs), +(380,193,o), +(402,189,o), +(402,158,cs), +(402,133,o), +(375,119,o), +(320,119,cs), +(257,119,o), +(228,136,o), +(222,174,c), +(6,174,l), +(16,60,o), +(117,-10,o), +(313,-10,cs) +); +} +); +width = 628; +}, +{ +anchors = ( +{ +name = bottom; +pos = (125,0); +}, +{ +name = top; +pos = (119,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,-10,o), +(236,37,o), +(236,118,cs), +(236,191,o), +(209,231,o), +(139,279,cs), +(86,315,o), +(50,341,o), +(50,408,cs), +(50,465,o), +(75,497,o), +(121,497,cs), +(171,497,o), +(197,455,o), +(200,367,c), +(229,367,l), +(227,473,o), +(192,525,o), +(122,525,cs), +(60,525,o), +(20,480,o), +(20,409,cs), +(20,329,o), +(60,295,o), +(116,256,cs), +(183,210,o), +(206,175,o), +(206,119,cs), +(206,55,o), +(177,18,o), +(128,18,cs), +(70,18,o), +(41,64,o), +(36,162,c), +(7,162,l), +(9,45,o), +(50,-10,o), +(128,-10,cs) +); +} +); +width = 248; +}, +{ +anchors = ( +{ +name = bottom; +pos = (206,0); +}, +{ +name = top; +pos = (204,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,-10,o), +(399,51,o), +(399,162,cs), +(399,239,o), +(367,289,o), +(255,340,cs), +(197,366,o), +(175,379,o), +(175,406,cs), +(175,427,o), +(185,438,o), +(203,438,cs), +(226,438,o), +(235,421,o), +(238,379,c), +(393,379,l), +(393,487,o), +(323,551,o), +(205,551,cs), +(75,551,o), +(11,486,o), +(11,386,cs), +(11,294,o), +(68,249,o), +(141,215,cs), +(218,180,o), +(227,166,o), +(227,137,cs), +(227,116,o), +(218,106,o), +(199,106,cs), +(177,106,o), +(166,129,o), +(164,174,c), +(4,174,l), +(6,52,o), +(74,-10,o), +(206,-10,cs) +); +} +); +width = 402; +}, +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = top; +pos = (226,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(365,-10,o), +(442,42,o), +(442,135,cs), +(442,239,o), +(365,265,o), +(257,281,cs), +(150,296,o), +(100,320,o), +(100,389,cs), +(100,452,o), +(153,494,o), +(247,494,cs), +(335,494,o), +(394,458,o), +(396,367,c), +(432,367,l), +(432,466,o), +(365,527,o), +(246,527,cs), +(136,527,o), +(63,470,o), +(63,385,cs), +(63,293,o), +(128,264,o), +(251,246,cs), +(359,230,o), +(404,207,o), +(404,132,cs), +(404,62,o), +(349,23,o), +(250,23,cs), +(151,23,o), +(85,67,o), +(85,160,c), +(48,160,l), +(48,58,o), +(120,-10,o), +(249,-10,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,-10,o), +(426,41,o), +(426,135,cs), +(426,240,o), +(349,267,o), +(239,283,cs), +(130,299,o), +(80,321,o), +(80,389,cs), +(80,452,o), +(133,494,o), +(227,494,cs), +(311,494,o), +(369,460,o), +(376,368,c), +(412,368,l), +(407,469,o), +(340,527,o), +(226,527,cs), +(116,527,o), +(43,470,o), +(43,385,cs), +(43,294,o), +(108,265,o), +(233,247,cs), +(344,231,o), +(389,208,o), +(389,132,cs), +(389,62,o), +(334,23,o), +(235,23,cs), +(136,23,o), +(71,63,o), +(65,154,c), +(28,154,l), +(33,53,o), +(106,-10,o), +(234,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +32 +); +stem = -2; +target = ( +0, +39 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +36 +); +stem = -2; +target = ( +0, +35 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 454; +}, +{ +anchors = ( +{ +name = bottom; +pos = (260,0); +}, +{ +name = top; +pos = (260,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(430,-10,o), +(531,56,o), +(531,174,cs), +(531,279,o), +(476,326,o), +(334,344,cs), +(259,354,o), +(233,360,o), +(233,388,cs), +(233,411,o), +(252,422,o), +(280,422,cs), +(313,422,o), +(332,408,o), +(332,380,c), +(520,380,l), +(516,484,o), +(422,554,o), +(286,554,cs), +(140,554,o), +(42,481,o), +(42,371,cs), +(42,262,o), +(108,220,o), +(254,199,cs), +(316,190,o), +(337,186,o), +(337,157,cs), +(337,136,o), +(320,122,o), +(283,122,cs), +(245,122,o), +(218,137,o), +(217,174,c), +(29,174,l), +(28,64,o), +(126,-10,o), +(278,-10,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,-10,o), +(510,58,o), +(510,174,cs), +(510,279,o), +(454,326,o), +(310,344,cs), +(223,355,o), +(195,360,o), +(195,388,cs), +(195,414,o), +(218,426,o), +(252,426,cs), +(290,426,o), +(312,408,o), +(313,376,c), +(499,376,l), +(493,488,o), +(407,554,o), +(264,554,cs), +(108,554,o), +(14,486,o), +(14,371,cs), +(14,262,o), +(81,220,o), +(229,199,cs), +(301,189,o), +(324,186,o), +(324,157,cs), +(324,134,o), +(305,118,o), +(263,118,cs), +(220,118,o), +(191,133,o), +(186,177,c), +(0,177,l), +(2,59,o), +(99,-10,o), +(256,-10,cs) +); +} +); +width = 513; +}, +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = top; +pos = (261,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(420,-10,o), +(503,42,o), +(503,137,cs), +(503,245,o), +(432,266,o), +(266,283,cs), +(129,297,o), +(73,317,o), +(73,387,cs), +(73,454,o), +(142,494,o), +(262,494,cs), +(367,494,o), +(443,457,o), +(454,357,c), +(491,357,l), +(480,465,o), +(408,527,o), +(262,527,cs), +(122,527,o), +(36,472,o), +(36,386,cs), +(36,294,o), +(105,264,o), +(262,248,cs), +(419,232,o), +(465,216,o), +(465,134,cs), +(465,62,o), +(396,23,o), +(266,23,cs), +(138,23,o), +(58,73,o), +(53,171,c), +(16,171,l), +(21,55,o), +(114,-10,o), +(266,-10,cs) +); +} +); +width = 523; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = top; +pos = (311,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,-10,o), +(621,56,o), +(621,175,cs), +(621,296,o), +(553,336,o), +(347,353,cs), +(265,360,o), +(235,362,o), +(235,387,cs), +(235,414,o), +(265,425,o), +(307,425,cs), +(358,425,o), +(386,409,o), +(392,377,c), +(602,377,l), +(589,493,o), +(477,554,o), +(315,554,cs), +(124,554,o), +(19,479,o), +(19,368,cs), +(19,251,o), +(92,211,o), +(299,192,cs), +(379,186,o), +(401,181,o), +(401,155,cs), +(401,131,o), +(374,119,o), +(322,119,cs), +(258,119,o), +(225,137,o), +(219,174,c), +(1,174,l), +(11,60,o), +(113,-10,o), +(311,-10,cs) +); +} +); +width = 622; +}, +{ +anchors = ( +{ +name = bottom; +pos = (241,0); +}, +{ +name = top; +pos = (241,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(438,42,o), +(438,135,cs), +(438,239,o), +(361,265,o), +(253,281,cs), +(146,296,o), +(96,320,o), +(96,389,cs), +(96,452,o), +(149,494,o), +(243,494,cs), +(331,494,o), +(390,458,o), +(392,367,c), +(428,367,l), +(428,466,o), +(361,527,o), +(242,527,cs), +(132,527,o), +(59,470,o), +(59,385,cs), +(59,293,o), +(124,264,o), +(247,246,cs), +(355,230,o), +(400,207,o), +(400,132,cs), +(400,62,o), +(345,23,o), +(246,23,cs), +(147,23,o), +(81,67,o), +(81,160,c), +(44,160,l), +(44,58,o), +(116,-10,o), +(245,-10,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(365,-10,o), +(435,44,o), +(435,135,cs), +(435,241,o), +(359,269,o), +(253,285,cs), +(151,299,o), +(105,322,o), +(105,389,cs), +(105,451,o), +(159,494,o), +(242,494,cs), +(316,494,o), +(368,464,o), +(380,389,c), +(417,389,l), +(406,475,o), +(345,527,o), +(241,527,cs), +(139,527,o), +(68,469,o), +(68,385,cs), +(68,294,o), +(130,266,o), +(248,249,cs), +(353,233,o), +(397,208,o), +(397,132,cs), +(397,63,o), +(344,23,o), +(250,23,cs), +(163,23,o), +(102,58,o), +(88,138,c), +(52,138,l), +(64,47,o), +(136,-10,o), +(250,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +32 +); +stem = -2; +target = ( +0, +39 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +36 +); +stem = -2; +target = ( +0, +35 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 485; +}, +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = top; +pos = (266,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(424,-10,o), +(525,56,o), +(525,174,cs), +(525,279,o), +(470,326,o), +(328,344,cs), +(253,354,o), +(227,360,o), +(227,388,cs), +(227,411,o), +(246,422,o), +(274,422,cs), +(307,422,o), +(326,408,o), +(326,380,c), +(514,380,l), +(510,484,o), +(416,554,o), +(280,554,cs), +(134,554,o), +(36,481,o), +(36,371,cs), +(36,262,o), +(102,220,o), +(248,199,cs), +(310,190,o), +(331,186,o), +(331,157,cs), +(331,136,o), +(314,122,o), +(277,122,cs), +(239,122,o), +(212,137,o), +(211,174,c), +(23,174,l), +(22,64,o), +(120,-10,o), +(272,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(410,-10,o), +(509,56,o), +(509,174,cs), +(509,279,o), +(457,325,o), +(321,344,cs), +(247,354,o), +(224,360,o), +(224,388,cs), +(224,411,o), +(241,422,o), +(265,422,cs), +(295,422,o), +(311,409,o), +(314,385,c), +(501,385,l), +(493,485,o), +(403,554,o), +(271,554,cs), +(130,554,o), +(35,481,o), +(35,371,cs), +(35,262,o), +(99,220,o), +(239,199,cs), +(298,190,o), +(317,186,o), +(317,157,cs), +(317,136,o), +(302,122,o), +(268,122,cs), +(234,122,o), +(211,136,o), +(207,166,c), +(21,166,l), +(23,63,o), +(116,-10,o), +(263,-10,cs) +); +} +); +width = 535; +}, +{ +anchors = ( +{ +name = bottom; +pos = (105,0); +}, +{ +name = top; +pos = (187,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,-10,o), +(227,41,o), +(227,149,cs), +(227,205,o), +(205,234,o), +(160,279,cs), +(133,306,o), +(101,339,o), +(101,388,cs), +(101,456,o), +(134,497,o), +(183,497,cs), +(259,497,o), +(250,423,o), +(242,366,c), +(269,366,l), +(284,447,o), +(279,526,o), +(188,526,cs), +(119,526,o), +(72,470,o), +(72,384,cs), +(72,338,o), +(92,299,o), +(137,258,cs), +(181,217,o), +(198,188,o), +(198,146,cs), +(198,65,o), +(163,18,o), +(106,18,cs), +(24,18,o), +(26,96,o), +(36,161,c), +(9,161,l), +(-5,85,o), +(0,-10,o), +(103,-10,cs) +); +} +); +width = 288; +}, +{ +anchors = ( +{ +name = bottom; +pos = (177,0); +}, +{ +name = top; +pos = (251,541); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (177,0); +}, +{ +name = top; +pos = (251,541); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(278,-10,o), +(357,37,o), +(376,137,cs), +(398,251,o), +(343,292,o), +(271,334,cs), +(225,361,o), +(207,374,o), +(208,402,cs), +(209,424,o), +(219,442,o), +(241,442,cs), +(271,442,o), +(272,421,o), +(266,377,c), +(416,377,l), +(428,481,o), +(372,551,o), +(235,551,cs), +(138,551,o), +(62,508,o), +(43,405,cs), +(26,316,o), +(71,263,o), +(137,222,cs), +(180,195,o), +(208,186,o), +(204,142,cs), +(202,119,o), +(196,102,o), +(172,102,cs), +(144,102,o), +(139,126,o), +(148,169,c), +(-9,169,l), +(-22,62,o), +(33,-10,o), +(173,-10,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,-10,o), +(381,78,o), +(381,179,cs), +(381,265,o), +(332,298,o), +(271,334,cs), +(224,362,o), +(208,372,o), +(208,400,cs), +(208,423,o), +(218,442,o), +(243,442,cs), +(268,442,o), +(273,424,o), +(266,377,c), +(416,377,l), +(429,479,o), +(369,551,o), +(241,551,cs), +(101,551,o), +(39,465,o), +(39,374,cs), +(39,293,o), +(89,252,o), +(137,222,cs), +(199,184,o), +(204,173,o), +(204,149,cs), +(204,115,o), +(193,102,o), +(172,102,cs), +(144,102,o), +(139,126,o), +(148,169,c), +(-9,169,l), +(-23,57,o), +(41,-10,o), +(169,-10,cs) +); +} +); +width = 415; +}, +{ +anchors = ( +{ +name = bottom; +pos = (213,0); +}, +{ +name = top; +pos = (264,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(335,-10,o), +(409,46,o), +(409,143,cs), +(409,223,o), +(360,260,o), +(260,282,cs), +(161,304,o), +(125,328,o), +(125,387,cs), +(125,453,o), +(177,494,o), +(259,494,cs), +(353,494,o), +(412,448,o), +(407,373,c), +(444,373,l), +(447,465,o), +(375,527,o), +(262,527,cs), +(157,527,o), +(89,471,o), +(89,383,cs), +(89,321,o), +(124,278,o), +(245,250,cs), +(331,230,o), +(371,207,o), +(371,140,cs), +(371,70,o), +(326,23,o), +(214,23,cs), +(120,23,o), +(56,74,o), +(62,161,c), +(27,161,l), +(21,58,o), +(90,-10,o), +(215,-10,cs) +); +} +); +width = 485; +}, +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = top; +pos = (316,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,-10,o), +(495,64,o), +(495,192,cs), +(495,282,o), +(444,325,o), +(330,345,cs), +(271,356,o), +(251,362,o), +(251,385,cs), +(251,409,o), +(269,422,o), +(299,422,cs), +(326,422,o), +(345,405,o), +(344,380,c), +(521,380,l), +(525,491,o), +(439,554,o), +(305,554,cs), +(154,554,o), +(56,476,o), +(56,352,cs), +(56,266,o), +(108,224,o), +(232,200,cs), +(282,190,o), +(298,185,o), +(298,164,cs), +(298,134,o), +(274,122,o), +(240,122,cs), +(201,122,o), +(180,140,o), +(182,174,c), +(0,174,l), +(-4,64,o), +(81,-10,o), +(230,-10,cs) +); +} +); +width = 538; +}, +{ +anchors = ( +{ +name = bottom; +pos = (249,0); +}, +{ +name = top; +pos = (286,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,-10,o), +(475,45,o), +(475,151,cs), +(475,244,o), +(381,262,o), +(285,279,cs), +(176,297,o), +(112,313,o), +(112,381,cs), +(112,452,o), +(177,494,o), +(281,494,cs), +(400,494,o), +(475,452,o), +(474,367,c), +(513,367,l), +(519,465,o), +(427,527,o), +(286,527,cs), +(155,527,o), +(74,469,o), +(74,377,cs), +(74,287,o), +(166,265,o), +(266,247,cs), +(398,224,o), +(437,206,o), +(437,142,cs), +(437,65,o), +(374,24,o), +(255,24,cs), +(106,24,o), +(37,78,o), +(44,160,c), +(7,160,l), +(-2,59,o), +(86,-10,o), +(247,-10,cs) +); +} +); +width = 533; +}, +{ +anchors = ( +{ +name = bottom; +pos = (290,0); +}, +{ +name = top; +pos = (342,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,-10,o), +(596,65,o), +(596,186,cs), +(596,287,o), +(533,319,o), +(371,344,cs), +(273,360,o), +(260,363,o), +(260,383,cs), +(260,406,o), +(283,419,o), +(316,419,cs), +(368,419,o), +(402,403,o), +(403,374,c), +(612,374,l), +(621,483,o), +(515,554,o), +(321,554,cs), +(152,554,o), +(37,486,o), +(37,359,cs), +(37,259,o), +(125,224,o), +(247,204,cs), +(350,187,o), +(371,183,o), +(371,162,cs), +(371,137,o), +(350,125,o), +(309,125,cs), +(245,125,o), +(205,140,o), +(205,179,c), +(-13,179,l), +(-18,66,o), +(94,-10,o), +(296,-10,cs) +); +} +); +width = 624; +} +); +unicode = 115; +userData = { +KernOnName = s; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/sacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/sacute.glyph new file mode 100644 index 00000000..36c929f1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/sacute.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = sacute; +kernLeft = KO_s; +kernRight = KO_scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = s; +}, +{ +pos = (83,-156); +ref = acutecomb; +} +); +width = 288; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = s; +}, +{ +pos = (101,-137); +ref = acutecomb; +} +); +width = 421; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = s; +}, +{ +pos = (211,-155); +ref = acutecomb; +} +); +width = 539; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = s; +}, +{ +pos = (196,-129); +ref = acutecomb; +} +); +width = 628; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (83,-156); +ref = acutecomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = s; +}, +{ +pos = (102,-137); +ref = acutecomb; +} +); +width = 402; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (191,-155); +ref = acutecomb; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (162,-134); +ref = acutecomb; +} +); +width = 528; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (211,-155); +ref = acutecomb; +} +); +width = 539; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = s; +}, +{ +pos = (204,-129); +ref = acutecomb; +} +); +width = 622; +}, +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (185,-155); +ref = acutecomb; +} +); +width = 485; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (156,-134); +ref = acutecomb; +} +); +width = 535; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = s; +}, +{ +pos = (46,-156); +ref = acutecomb; +} +); +width = 288; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = s; +}, +{ +pos = (56,-137); +ref = acutecomb; +} +); +width = 415; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = s; +}, +{ +pos = (122,-155); +ref = acutecomb; +} +); +width = 485; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = s; +}, +{ +pos = (121,-134); +ref = acutecomb; +} +); +width = 538; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = s; +}, +{ +pos = (143,-155); +ref = acutecomb; +} +); +width = 533; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = s; +}, +{ +pos = (142,-129); +ref = acutecomb; +} +); +width = 624; +} +); +unicode = 347; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/scaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/scaron.glyph new file mode 100644 index 00000000..76deceaa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/scaron.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = scaron; +kernLeft = KO_s; +kernRight = KO_scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = s; +}, +{ +pos = (10,-156); +ref = caroncomb; +} +); +width = 288; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,-137); +ref = caroncomb; +} +); +width = 421; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = s; +}, +{ +pos = (90,-155); +ref = caroncomb; +} +); +width = 539; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = s; +}, +{ +pos = (22,-129); +ref = caroncomb; +} +); +width = 628; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (10,-156); +ref = caroncomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-3,-137); +ref = caroncomb; +} +); +width = 402; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (82,-155); +ref = caroncomb; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (27,-134); +ref = caroncomb; +} +); +width = 528; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (90,-155); +ref = caroncomb; +} +); +width = 539; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = s; +}, +{ +pos = (30,-129); +ref = caroncomb; +} +); +width = 622; +}, +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (78,-155); +ref = caroncomb; +} +); +width = 485; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (27,-134); +ref = caroncomb; +} +); +width = 535; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-27,-156); +ref = caroncomb; +} +); +width = 288; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-45,-137); +ref = caroncomb; +} +); +width = 415; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = s; +}, +{ +pos = (13,-155); +ref = caroncomb; +} +); +width = 485; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-18,-134); +ref = caroncomb; +} +); +width = 538; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = s; +}, +{ +pos = (20,-155); +ref = caroncomb; +} +); +width = 533; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-32,-129); +ref = caroncomb; +} +); +width = 624; +} +); +unicode = 353; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/scedilla.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/scedilla.glyph new file mode 100644 index 00000000..9e303a32 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/scedilla.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = scedilla; +kernLeft = KO_s; +kernRight = KO_scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = s; +}, +{ +pos = (4,0); +ref = cedillacomb; +} +); +width = 288; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = s; +}, +{ +pos = (9,0); +ref = cedillacomb; +} +); +width = 421; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = s; +}, +{ +pos = (121,0); +ref = cedillacomb; +} +); +width = 539; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = s; +}, +{ +pos = (88,0); +ref = cedillacomb; +} +); +width = 628; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (4,0); +ref = cedillacomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = s; +}, +{ +pos = (10,0); +ref = cedillacomb; +} +); +width = 402; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (102,0); +ref = cedillacomb; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (56,0); +ref = cedillacomb; +} +); +width = 528; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (121,0); +ref = cedillacomb; +} +); +width = 539; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = s; +}, +{ +pos = (96,0); +ref = cedillacomb; +} +); +width = 622; +}, +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (96,0); +ref = cedillacomb; +} +); +width = 485; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (56,0); +ref = cedillacomb; +} +); +width = 535; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = s; +}, +{ +pos = (31,0); +ref = cedillacomb; +} +); +width = 288; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = s; +}, +{ +pos = (26,0); +ref = cedillacomb; +} +); +width = 415; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = s; +}, +{ +pos = (127,0); +ref = cedillacomb; +} +); +width = 485; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = s; +}, +{ +pos = (80,0); +ref = cedillacomb; +} +); +width = 538; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = s; +}, +{ +pos = (148,0); +ref = cedillacomb; +} +); +width = 533; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = s; +}, +{ +pos = (114,0); +ref = cedillacomb; +} +); +width = 624; +} +); +unicode = 351; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/scircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/scircumflex.glyph new file mode 100644 index 00000000..80292a77 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/scircumflex.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = scircumflex; +kernLeft = KO_s; +kernRight = KO_scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = s; +}, +{ +pos = (10,-156); +ref = circumflexcomb; +} +); +width = 288; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,-137); +ref = circumflexcomb; +} +); +width = 421; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = s; +}, +{ +pos = (90,-155); +ref = circumflexcomb; +} +); +width = 539; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = s; +}, +{ +pos = (22,-129); +ref = circumflexcomb; +} +); +width = 628; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (10,-156); +ref = circumflexcomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-3,-137); +ref = circumflexcomb; +} +); +width = 402; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (82,-155); +ref = circumflexcomb; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (27,-134); +ref = circumflexcomb; +} +); +width = 528; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (90,-155); +ref = circumflexcomb; +} +); +width = 539; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = s; +}, +{ +pos = (30,-129); +ref = circumflexcomb; +} +); +width = 622; +}, +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (78,-155); +ref = circumflexcomb; +} +); +width = 485; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (27,-134); +ref = circumflexcomb; +} +); +width = 535; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-28,-156); +ref = circumflexcomb; +} +); +width = 288; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-51,-137); +ref = circumflexcomb; +} +); +width = 415; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = s; +}, +{ +pos = (12,-155); +ref = circumflexcomb; +} +); +width = 485; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-13,-134); +ref = circumflexcomb; +} +); +width = 538; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = s; +}, +{ +pos = (20,-155); +ref = circumflexcomb; +} +); +width = 533; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-34,-129); +ref = circumflexcomb; +} +); +width = 624; +} +); +unicode = 349; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/scommaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/scommaaccent.glyph new file mode 100644 index 00000000..bb06cb57 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/scommaaccent.glyph @@ -0,0 +1,251 @@ +{ +color = 6; +glyphname = scommaaccent; +kernLeft = KO_s; +kernRight = KO_scaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = s; +}, +{ +pos = (48,0); +ref = commaaccentcomb; +} +); +width = 288; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = s; +}, +{ +pos = (33,0); +ref = commaaccentcomb; +} +); +width = 421; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = s; +}, +{ +pos = (173,0); +ref = commaaccentcomb; +} +); +width = 539; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = s; +}, +{ +pos = (129,0); +ref = commaaccentcomb; +} +); +width = 628; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (48,0); +ref = commaaccentcomb; +} +); +width = 288; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = s; +}, +{ +pos = (34,0); +ref = commaaccentcomb; +} +); +width = 402; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (140,0); +ref = commaaccentcomb; +} +); +width = 494; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (104,0); +ref = commaaccentcomb; +} +); +width = 528; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = s; +}, +{ +alignment = -1; +pos = (173,0); +ref = commaaccentcomb; +} +); +width = 539; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = s; +}, +{ +pos = (137,0); +ref = commaaccentcomb; +} +); +width = 622; +}, +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (134,0); +ref = commaaccentcomb; +} +); +width = 485; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (103,0); +ref = commaaccentcomb; +} +); +width = 535; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = s; +}, +{ +pos = (62,0); +ref = commaaccentcomb; +} +); +width = 288; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = s; +}, +{ +pos = (53,0); +ref = commaaccentcomb; +} +); +width = 415; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = s; +}, +{ +pos = (161,0); +ref = commaaccentcomb; +} +); +width = 485; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = s; +}, +{ +pos = (124,0); +ref = commaaccentcomb; +} +); +width = 538; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = s; +}, +{ +pos = (201,0); +ref = commaaccentcomb; +} +); +width = 533; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = s; +}, +{ +pos = (167,0); +ref = commaaccentcomb; +} +); +width = 624; +} +); +unicode = 537; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/section.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/section.glyph new file mode 100644 index 00000000..7d046fc2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/section.glyph @@ -0,0 +1,1679 @@ +{ +glyphname = section; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,-10,o), +(271,35,o), +(271,117,cs), +(271,174,o), +(254,209,o), +(227,237,c), +(249,263,o), +(261,298,o), +(261,331,cs), +(261,421,o), +(224,459,o), +(174,493,cs), +(128,524,o), +(88,554,o), +(88,623,cs), +(88,675,o), +(105,710,o), +(157,710,cs), +(216,710,o), +(235,663,o), +(237,580,c), +(265,580,l), +(266,702,o), +(221,739,o), +(158,739,cs), +(101,739,o), +(59,707,o), +(59,624,cs), +(59,566,o), +(79,532,o), +(109,503,c), +(84,479,o), +(69,444,o), +(69,410,cs), +(69,329,o), +(102,290,o), +(150,257,cs), +(199,223,o), +(242,192,o), +(242,118,cs), +(242,59,o), +(217,19,o), +(163,19,cs), +(95,19,o), +(73,77,o), +(73,160,c), +(45,160,l), +(45,38,o), +(94,-10,o), +(163,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,264,o), +(186,271,o), +(174,279,cs), +(132,308,o), +(98,340,o), +(98,409,cs), +(98,436,o), +(110,464,o), +(130,486,c), +(137,481,o), +(143,476,o), +(150,471,cs), +(195,439,o), +(232,406,o), +(232,332,cs), +(232,303,o), +(222,276,o), +(206,255,c) +); +} +); +width = 324; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,-10,o), +(409,56,o), +(409,150,cs), +(409,197,o), +(391,233,o), +(358,263,c), +(396,286,o), +(421,333,o), +(421,379,cs), +(421,460,o), +(366,502,o), +(278,541,cs), +(238,558,o), +(208,572,o), +(208,602,cs), +(208,614,o), +(214,631,o), +(235,631,cs), +(258,631,o), +(267,618,o), +(270,567,c), +(425,567,l), +(425,677,o), +(349,739,o), +(236,739,cs), +(118,739,o), +(40,675,o), +(40,578,cs), +(40,537,o), +(58,496,o), +(98,468,c), +(55,441,o), +(32,397,o), +(32,354,cs), +(32,279,o), +(82,243,o), +(144,215,cs), +(224,178,o), +(239,170,o), +(239,135,cs), +(239,115,o), +(232,101,o), +(211,101,cs), +(189,101,o), +(175,120,o), +(175,168,c), +(15,168,l), +(17,61,o), +(80,-10,o), +(205,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(252,326,o), +(244,330,o), +(235,334,cs), +(193,354,o), +(180,367,o), +(180,389,cs), +(180,399,o), +(184,409,o), +(191,418,c), +(199,413,o), +(206,409,o), +(214,405,cs), +(245,389,o), +(268,375,o), +(268,349,cs), +(268,338,o), +(267,330,o), +(260,321,c) +); +} +); +width = 442; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,-10,o), +(437,42,o), +(437,135,cs), +(437,184,o), +(420,216,o), +(391,237,c), +(426,262,o), +(447,299,o), +(447,347,cs), +(447,451,o), +(374,478,o), +(272,493,cs), +(165,508,o), +(115,532,o), +(115,601,cs), +(115,664,o), +(168,706,o), +(262,706,cs), +(348,706,o), +(406,672,o), +(411,585,c), +(447,585,l), +(444,681,o), +(377,739,o), +(261,739,cs), +(151,739,o), +(78,682,o), +(78,597,cs), +(78,549,o), +(96,518,o), +(131,496,c), +(93,471,o), +(68,429,o), +(68,385,cs), +(68,293,o), +(129,263,o), +(246,246,cs), +(354,230,o), +(399,207,o), +(399,132,cs), +(399,62,o), +(344,23,o), +(245,23,cs), +(150,23,o), +(86,63,o), +(80,149,c), +(43,149,l), +(48,53,o), +(120,-10,o), +(244,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(333,267,o), +(295,275,o), +(252,281,cs), +(152,295,o), +(105,320,o), +(105,389,cs), +(105,426,o), +(127,458,o), +(163,482,c), +(190,471,o), +(225,464,o), +(266,458,cs), +(367,443,o), +(409,419,o), +(409,344,cs), +(409,306,o), +(393,278,o), +(363,253,c) +); +} +); +width = 505; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,-10,o), +(517,56,o), +(517,165,cs), +(517,207,o), +(501,244,o), +(469,276,c), +(503,297,o), +(526,333,o), +(526,373,cs), +(526,465,o), +(470,503,o), +(339,529,cs), +(272,542,o), +(238,550,o), +(238,576,cs), +(238,599,o), +(257,607,o), +(285,607,cs), +(317,607,o), +(336,594,o), +(337,568,c), +(525,568,l), +(515,670,o), +(426,739,o), +(291,739,cs), +(145,739,o), +(47,670,o), +(47,565,cs), +(47,521,o), +(61,485,o), +(99,457,c), +(59,429,o), +(38,392,o), +(38,348,cs), +(38,254,o), +(114,225,o), +(219,202,cs), +(304,184,o), +(323,177,o), +(323,152,cs), +(323,131,o), +(306,122,o), +(269,122,cs), +(232,122,o), +(206,136,o), +(203,171,c), +(15,171,l), +(17,63,o), +(113,-10,o), +(264,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,334,o), +(294,341,o), +(263,348,cs), +(228,357,o), +(216,367,o), +(216,385,cs), +(216,391,o), +(218,399,o), +(222,407,c), +(241,401,o), +(258,396,o), +(278,391,cs), +(315,382,o), +(334,373,o), +(334,350,cs), +(334,342,o), +(333,336,o), +(329,330,c) +); +} +); +width = 553; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,-10,o), +(251,35,o), +(251,117,cs), +(251,174,o), +(234,209,o), +(207,237,c), +(229,263,o), +(241,298,o), +(241,331,cs), +(241,421,o), +(204,459,o), +(154,493,cs), +(108,524,o), +(68,554,o), +(68,623,cs), +(68,675,o), +(85,710,o), +(137,710,cs), +(196,710,o), +(215,663,o), +(217,580,c), +(245,580,l), +(246,702,o), +(201,739,o), +(138,739,cs), +(81,739,o), +(39,707,o), +(39,624,cs), +(39,566,o), +(59,532,o), +(89,503,c), +(64,479,o), +(49,444,o), +(49,410,cs), +(49,329,o), +(82,290,o), +(130,257,cs), +(179,223,o), +(222,192,o), +(222,118,cs), +(222,59,o), +(197,19,o), +(143,19,cs), +(75,19,o), +(53,77,o), +(53,160,c), +(25,160,l), +(25,38,o), +(74,-10,o), +(143,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,264,o), +(166,271,o), +(154,279,cs), +(112,308,o), +(78,340,o), +(78,409,cs), +(78,436,o), +(90,464,o), +(110,486,c), +(117,481,o), +(123,476,o), +(130,471,cs), +(175,439,o), +(212,406,o), +(212,332,cs), +(212,303,o), +(202,276,o), +(186,255,c) +); +} +); +width = 284; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-10,o), +(400,56,o), +(400,150,cs), +(400,197,o), +(382,233,o), +(349,263,c), +(387,286,o), +(412,333,o), +(412,379,cs), +(412,460,o), +(357,502,o), +(269,541,cs), +(229,558,o), +(199,572,o), +(199,602,cs), +(199,614,o), +(205,631,o), +(226,631,cs), +(249,631,o), +(258,618,o), +(261,567,c), +(416,567,l), +(416,677,o), +(340,739,o), +(227,739,cs), +(109,739,o), +(31,675,o), +(31,578,cs), +(31,537,o), +(49,496,o), +(89,468,c), +(46,441,o), +(23,397,o), +(23,354,cs), +(23,279,o), +(73,243,o), +(135,215,cs), +(215,178,o), +(230,170,o), +(230,135,cs), +(230,115,o), +(223,101,o), +(202,101,cs), +(180,101,o), +(166,120,o), +(166,168,c), +(6,168,l), +(8,61,o), +(71,-10,o), +(196,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,326,o), +(235,330,o), +(226,334,cs), +(184,354,o), +(171,367,o), +(171,389,cs), +(171,399,o), +(175,409,o), +(182,418,c), +(190,413,o), +(197,409,o), +(205,405,cs), +(236,389,o), +(259,375,o), +(259,349,cs), +(259,338,o), +(258,330,o), +(251,321,c) +); +} +); +width = 423; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,-10,o), +(440,42,o), +(440,135,cs), +(440,184,o), +(423,216,o), +(394,237,c), +(429,262,o), +(450,299,o), +(450,347,cs), +(450,451,o), +(377,478,o), +(275,493,cs), +(168,508,o), +(118,532,o), +(118,601,cs), +(118,664,o), +(171,706,o), +(265,706,cs), +(351,706,o), +(409,672,o), +(414,585,c), +(450,585,l), +(447,681,o), +(380,739,o), +(264,739,cs), +(154,739,o), +(81,682,o), +(81,597,cs), +(81,549,o), +(99,518,o), +(134,496,c), +(96,471,o), +(71,429,o), +(71,385,cs), +(71,293,o), +(132,263,o), +(249,246,cs), +(357,230,o), +(402,207,o), +(402,132,cs), +(402,62,o), +(347,23,o), +(248,23,cs), +(153,23,o), +(89,63,o), +(83,149,c), +(46,149,l), +(51,53,o), +(123,-10,o), +(247,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(336,267,o), +(298,275,o), +(255,281,cs), +(155,295,o), +(108,320,o), +(108,389,cs), +(108,426,o), +(130,458,o), +(166,482,c), +(193,471,o), +(228,464,o), +(269,458,cs), +(370,443,o), +(412,419,o), +(412,344,cs), +(412,306,o), +(396,278,o), +(366,253,c) +); +} +); +width = 511; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(451,-10,o), +(552,56,o), +(552,174,cs), +(552,279,o), +(497,326,o), +(355,344,cs), +(280,354,o), +(254,360,o), +(254,388,cs), +(254,403,o), +(262,413,o), +(275,418,c), +(163,524,l), +(100,493,o), +(63,439,o), +(63,371,cs), +(63,262,o), +(129,220,o), +(275,199,cs), +(337,190,o), +(358,186,o), +(358,157,cs), +(358,136,o), +(341,122,o), +(304,122,cs), +(267,122,o), +(241,136,o), +(238,171,c), +(50,171,l), +(51,63,o), +(148,-10,o), +(299,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(510,228,o), +(552,283,o), +(552,359,cs), +(552,464,o), +(497,511,o), +(355,529,cs), +(280,539,o), +(254,545,o), +(254,573,cs), +(254,596,o), +(273,607,o), +(301,607,cs), +(333,607,o), +(352,594,o), +(353,568,c), +(541,568,l), +(535,670,o), +(442,739,o), +(307,739,cs), +(161,739,o), +(63,666,o), +(63,556,cs), +(63,447,o), +(129,405,o), +(275,384,cs), +(337,375,o), +(358,371,o), +(358,342,cs), +(358,329,o), +(352,319,o), +(339,313,c), +(439,199,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(411,-10,o), +(512,56,o), +(512,165,cs), +(512,207,o), +(496,244,o), +(464,276,c), +(498,297,o), +(521,333,o), +(521,373,cs), +(521,465,o), +(465,503,o), +(334,529,cs), +(267,542,o), +(233,550,o), +(233,576,cs), +(233,599,o), +(252,607,o), +(280,607,cs), +(312,607,o), +(331,594,o), +(332,568,c), +(520,568,l), +(510,670,o), +(421,739,o), +(286,739,cs), +(140,739,o), +(42,670,o), +(42,565,cs), +(42,521,o), +(56,485,o), +(94,457,c), +(54,429,o), +(33,392,o), +(33,348,cs), +(33,254,o), +(109,225,o), +(214,202,cs), +(299,184,o), +(318,177,o), +(318,152,cs), +(318,131,o), +(301,122,o), +(264,122,cs), +(227,122,o), +(201,136,o), +(198,171,c), +(10,171,l), +(12,63,o), +(108,-10,o), +(259,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,337,o), +(280,343,o), +(258,348,cs), +(223,357,o), +(211,367,o), +(211,385,cs), +(211,391,o), +(213,399,o), +(217,407,c), +(236,401,o), +(254,396,o), +(273,391,cs), +(310,382,o), +(329,373,o), +(329,350,cs), +(329,342,o), +(328,336,o), +(324,330,c) +); +} +); +width = 542; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,-10,o), +(427,42,o), +(427,135,cs), +(427,184,o), +(410,216,o), +(381,237,c), +(416,262,o), +(437,299,o), +(437,347,cs), +(437,451,o), +(364,478,o), +(262,493,cs), +(155,508,o), +(105,532,o), +(105,601,cs), +(105,664,o), +(158,706,o), +(252,706,cs), +(338,706,o), +(396,672,o), +(401,585,c), +(437,585,l), +(434,681,o), +(367,739,o), +(251,739,cs), +(141,739,o), +(68,682,o), +(68,597,cs), +(68,549,o), +(86,518,o), +(121,496,c), +(83,471,o), +(58,429,o), +(58,385,cs), +(58,293,o), +(119,263,o), +(236,246,cs), +(344,230,o), +(389,207,o), +(389,132,cs), +(389,62,o), +(334,23,o), +(235,23,cs), +(140,23,o), +(76,63,o), +(70,149,c), +(33,149,l), +(38,53,o), +(110,-10,o), +(234,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(323,267,o), +(285,275,o), +(242,281,cs), +(142,295,o), +(95,320,o), +(95,389,cs), +(95,426,o), +(117,458,o), +(153,482,c), +(180,471,o), +(215,464,o), +(256,458,cs), +(357,443,o), +(399,419,o), +(399,344,cs), +(399,306,o), +(383,278,o), +(353,253,c) +); +} +); +width = 485; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(406,-10,o), +(507,56,o), +(507,165,cs), +(507,207,o), +(491,244,o), +(459,276,c), +(493,297,o), +(516,333,o), +(516,373,cs), +(516,465,o), +(460,503,o), +(329,529,cs), +(262,542,o), +(228,550,o), +(228,576,cs), +(228,599,o), +(247,607,o), +(275,607,cs), +(307,607,o), +(326,594,o), +(327,568,c), +(515,568,l), +(505,670,o), +(416,739,o), +(281,739,cs), +(135,739,o), +(37,670,o), +(37,565,cs), +(37,521,o), +(51,485,o), +(89,457,c), +(49,429,o), +(28,392,o), +(28,348,cs), +(28,254,o), +(104,225,o), +(209,202,cs), +(294,184,o), +(313,177,o), +(313,152,cs), +(313,131,o), +(296,122,o), +(259,122,cs), +(222,122,o), +(196,136,o), +(193,171,c), +(5,171,l), +(7,63,o), +(103,-10,o), +(254,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(309,334,o), +(284,341,o), +(253,348,cs), +(218,357,o), +(206,367,o), +(206,385,cs), +(206,391,o), +(208,399,o), +(212,407,c), +(231,401,o), +(248,396,o), +(268,391,cs), +(305,382,o), +(324,373,o), +(324,350,cs), +(324,342,o), +(323,336,o), +(319,330,c) +); +} +); +width = 533; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(453,42,o), +(453,135,cs), +(453,184,o), +(438,216,o), +(409,237,c), +(444,262,o), +(463,299,o), +(463,347,cs), +(463,451,o), +(392,478,o), +(292,493,cs), +(187,508,o), +(139,532,o), +(139,601,cs), +(139,664,o), +(190,706,o), +(282,706,cs), +(366,706,o), +(424,672,o), +(429,585,c), +(463,585,l), +(460,681,o), +(395,739,o), +(281,739,cs), +(173,739,o), +(102,682,o), +(102,597,cs), +(102,549,o), +(120,518,o), +(153,496,c), +(117,471,o), +(92,429,o), +(92,385,cs), +(92,293,o), +(151,263,o), +(266,246,cs), +(372,230,o), +(417,207,o), +(417,132,cs), +(417,62,o), +(362,23,o), +(265,23,cs), +(172,23,o), +(110,63,o), +(104,149,c), +(67,149,l), +(72,53,o), +(144,-10,o), +(264,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(351,267,o), +(315,275,o), +(272,281,cs), +(174,295,o), +(129,320,o), +(129,389,cs), +(129,426,o), +(150,458,o), +(185,482,c), +(212,471,o), +(247,464,o), +(286,458,cs), +(385,443,o), +(427,419,o), +(427,344,cs), +(427,306,o), +(411,278,o), +(381,253,c) +); +} +); +width = 545; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(451,-10,o), +(552,56,o), +(552,174,cs), +(552,279,o), +(497,326,o), +(355,344,cs), +(280,354,o), +(254,360,o), +(254,388,cs), +(254,403,o), +(262,413,o), +(275,418,c), +(163,524,l), +(100,493,o), +(63,439,o), +(63,371,cs), +(63,262,o), +(129,220,o), +(275,199,cs), +(337,190,o), +(358,186,o), +(358,157,cs), +(358,136,o), +(341,122,o), +(304,122,cs), +(267,122,o), +(241,136,o), +(238,171,c), +(50,171,l), +(51,63,o), +(148,-10,o), +(299,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(510,228,o), +(552,283,o), +(552,359,cs), +(552,464,o), +(497,511,o), +(355,529,cs), +(280,539,o), +(254,545,o), +(254,573,cs), +(254,596,o), +(273,607,o), +(301,607,cs), +(333,607,o), +(352,594,o), +(353,568,c), +(541,568,l), +(535,670,o), +(442,739,o), +(307,739,cs), +(161,739,o), +(63,666,o), +(63,556,cs), +(63,447,o), +(129,405,o), +(275,384,cs), +(337,375,o), +(358,371,o), +(358,342,cs), +(358,329,o), +(352,319,o), +(339,313,c), +(439,199,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(419,-10,o), +(517,56,o), +(517,165,cs), +(517,207,o), +(502,243,o), +(470,276,c), +(504,298,o), +(526,333,o), +(526,373,cs), +(526,465,o), +(472,503,o), +(346,529,cs), +(282,542,o), +(249,550,o), +(249,576,cs), +(249,599,o), +(267,607,o), +(292,607,cs), +(321,607,o), +(338,594,o), +(339,568,c), +(525,568,l), +(515,670,o), +(429,739,o), +(298,739,cs), +(156,739,o), +(60,670,o), +(60,565,cs), +(60,521,o), +(73,486,o), +(111,457,c), +(71,428,o), +(51,392,o), +(51,348,cs), +(51,254,o), +(125,225,o), +(227,202,cs), +(307,184,o), +(325,177,o), +(325,152,cs), +(325,131,o), +(310,122,o), +(276,122,cs), +(243,122,o), +(219,136,o), +(216,171,c), +(30,171,l), +(32,63,o), +(125,-10,o), +(271,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,337,o), +(289,343,o), +(270,348,cs), +(238,357,o), +(228,367,o), +(228,385,cs), +(228,391,o), +(229,398,o), +(232,407,c), +(250,401,o), +(267,396,o), +(285,391,cs), +(318,382,o), +(336,373,o), +(336,350,cs), +(336,341,o), +(335,335,o), +(332,330,c) +); +} +); +width = 565; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,-10,o), +(242,41,o), +(242,149,cs), +(242,179,o), +(236,202,o), +(223,223,c), +(265,255,o), +(292,297,o), +(292,365,cs), +(292,421,o), +(270,450,o), +(225,495,cs), +(198,522,o), +(166,555,o), +(166,604,cs), +(166,672,o), +(199,713,o), +(248,713,cs), +(324,713,o), +(315,639,o), +(307,582,c), +(334,582,l), +(348,650,o), +(343,742,o), +(250,742,cs), +(182,742,o), +(137,685,o), +(137,601,cs), +(137,570,o), +(145,542,o), +(165,515,c), +(117,487,o), +(87,444,o), +(87,384,cs), +(87,338,o), +(107,299,o), +(152,258,cs), +(196,217,o), +(213,188,o), +(213,146,cs), +(213,65,o), +(178,18,o), +(121,18,cs), +(39,18,o), +(41,96,o), +(51,161,c), +(24,161,l), +(9,87,o), +(18,-10,o), +(118,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,255,o), +(191,264,o), +(175,279,cs), +(148,306,o), +(116,339,o), +(116,388,cs), +(116,438,o), +(141,471,o), +(181,496,c), +(187,488,o), +(194,481,o), +(202,474,cs), +(246,433,o), +(263,404,o), +(263,362,cs), +(263,309,o), +(243,273,o), +(208,244,c) +); +} +); +width = 327; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-10,o), +(385,60,o), +(385,165,cs), +(385,208,o), +(378,229,o), +(363,248,c), +(407,274,o), +(432,314,o), +(432,372,cs), +(432,457,o), +(379,491,o), +(325,522,cs), +(280,548,o), +(262,561,o), +(262,588,cs), +(262,611,o), +(272,630,o), +(295,630,cs), +(324,630,o), +(327,609,o), +(320,565,c), +(470,565,l), +(483,683,o), +(412,739,o), +(289,739,cs), +(182,739,o), +(104,672,o), +(104,585,cs), +(104,548,o), +(116,513,o), +(139,493,c), +(82,469,o), +(48,418,o), +(48,367,cs), +(48,299,o), +(89,255,o), +(141,222,cs), +(196,187,o), +(208,175,o), +(208,145,cs), +(208,122,o), +(202,102,o), +(176,102,cs), +(145,102,o), +(144,134,o), +(152,169,c), +(-5,169,l), +(-17,46,o), +(51,-10,o), +(177,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(258,325,o), +(251,329,o), +(241,334,cs), +(208,351,o), +(196,364,o), +(196,383,cs), +(196,396,o), +(203,407,o), +(214,417,c), +(221,412,o), +(226,409,o), +(234,405,cs), +(262,389,o), +(282,375,o), +(277,349,cs), +(275,338,o), +(272,330,o), +(263,321,c) +); +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,-10,o), +(439,48,o), +(439,152,cs), +(439,183,o), +(428,207,o), +(409,225,c), +(461,253,o), +(490,297,o), +(490,353,cs), +(490,437,o), +(427,469,o), +(340,490,cs), +(252,511,o), +(205,535,o), +(205,589,cs), +(205,658,o), +(259,704,o), +(349,704,cs), +(443,704,o), +(502,658,o), +(497,583,c), +(534,583,l), +(537,675,o), +(465,737,o), +(352,737,cs), +(252,737,o), +(167,684,o), +(167,586,cs), +(167,551,o), +(178,526,o), +(203,505,c), +(151,479,o), +(116,429,o), +(116,377,cs), +(116,303,o), +(169,270,o), +(268,246,cs), +(358,224,o), +(400,201,o), +(400,147,cs), +(400,67,o), +(344,23,o), +(244,23,cs), +(140,23,o), +(76,74,o), +(82,161,c), +(47,161,l), +(41,58,o), +(110,-10,o), +(242,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(356,261,o), +(319,272,o), +(280,281,cs), +(196,300,o), +(154,325,o), +(154,378,cs), +(154,428,o), +(185,464,o), +(232,489,c), +(255,475,o), +(286,466,o), +(328,456,cs), +(413,435,o), +(451,408,o), +(451,348,cs), +(451,301,o), +(427,268,o), +(385,243,c) +); +} +); +width = 551; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(513,54,o), +(513,168,cs), +(513,199,o), +(503,231,o), +(484,256,c), +(534,278,o), +(562,322,o), +(562,372,cs), +(562,446,o), +(511,486,o), +(404,521,cs), +(345,540,o), +(313,552,o), +(313,573,cs), +(313,596,o), +(330,605,o), +(353,605,cs), +(385,605,o), +(416,594,o), +(410,558,c), +(596,558,l), +(596,672,o), +(490,737,o), +(353,737,cs), +(225,737,o), +(120,672,o), +(120,556,cs), +(120,526,o), +(130,498,o), +(154,474,c), +(101,448,o), +(70,401,o), +(70,351,cs), +(70,271,o), +(135,237,o), +(223,208,cs), +(298,182,o), +(317,175,o), +(317,155,cs), +(317,131,o), +(299,122,o), +(272,122,cs), +(231,122,o), +(199,139,o), +(201,175,c), +(13,175,l), +(9,54,o), +(132,-10,o), +(277,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(336,334,o), +(310,344,o), +(295,349,cs), +(261,361,o), +(252,372,o), +(255,391,cs), +(256,397,o), +(260,404,o), +(266,412,c), +(283,404,o), +(302,396,o), +(318,390,cs), +(355,376,o), +(369,364,o), +(365,345,cs), +(363,337,o), +(360,330,o), +(356,324,c) +); +} +); +width = 584; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-10,o), +(417,48,o), +(417,152,cs), +(417,183,o), +(406,207,o), +(387,225,c), +(439,253,o), +(468,297,o), +(468,353,cs), +(468,437,o), +(405,469,o), +(318,490,cs), +(230,511,o), +(183,535,o), +(183,589,cs), +(183,658,o), +(237,704,o), +(327,704,cs), +(421,704,o), +(480,658,o), +(475,583,c), +(512,583,l), +(515,675,o), +(443,737,o), +(330,737,cs), +(230,737,o), +(145,684,o), +(145,586,cs), +(145,551,o), +(156,526,o), +(181,505,c), +(129,479,o), +(94,429,o), +(94,377,cs), +(94,303,o), +(147,270,o), +(246,246,cs), +(336,224,o), +(378,201,o), +(378,147,cs), +(378,67,o), +(322,23,o), +(222,23,cs), +(118,23,o), +(54,74,o), +(60,161,c), +(25,161,l), +(19,58,o), +(88,-10,o), +(220,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,261,o), +(297,272,o), +(258,281,cs), +(174,300,o), +(132,325,o), +(132,378,cs), +(132,428,o), +(163,464,o), +(210,489,c), +(233,475,o), +(264,466,o), +(306,456,cs), +(391,435,o), +(429,408,o), +(429,348,cs), +(429,301,o), +(405,268,o), +(363,243,c) +); +} +); +width = 506; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,-10,o), +(497,54,o), +(497,168,cs), +(497,199,o), +(487,231,o), +(468,256,c), +(518,278,o), +(546,322,o), +(546,372,cs), +(546,446,o), +(495,486,o), +(388,521,cs), +(329,540,o), +(297,552,o), +(297,573,cs), +(297,596,o), +(314,605,o), +(337,605,cs), +(369,605,o), +(400,594,o), +(394,558,c), +(580,558,l), +(580,672,o), +(474,737,o), +(337,737,cs), +(209,737,o), +(104,672,o), +(104,556,cs), +(104,526,o), +(114,498,o), +(138,474,c), +(85,448,o), +(54,401,o), +(54,351,cs), +(54,271,o), +(119,237,o), +(207,208,cs), +(282,182,o), +(301,175,o), +(301,155,cs), +(301,131,o), +(283,122,o), +(256,122,cs), +(215,122,o), +(183,139,o), +(185,175,c), +(-3,175,l), +(-7,54,o), +(116,-10,o), +(261,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,334,o), +(294,344,o), +(279,349,cs), +(245,361,o), +(236,372,o), +(239,391,cs), +(240,397,o), +(244,404,o), +(250,412,c), +(267,404,o), +(286,396,o), +(302,390,cs), +(339,376,o), +(353,364,o), +(349,345,cs), +(347,337,o), +(344,330,o), +(340,324,c) +); +} +); +width = 553; +} +); +unicode = 167; +userData = { +KernOnSpecialSpacing = { +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/semicolon.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/semicolon.glyph new file mode 100644 index 00000000..87f21c04 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/semicolon.glyph @@ -0,0 +1,1150 @@ +{ +color = 6; +glyphname = semicolon; +kernLeft = KO_colon; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(89,-167,l), +(143,-123,o), +(197,-26,o), +(197,56,cs), +(197,126,o), +(155,164,o), +(100,164,cs), +(45,164,o), +(5,129,o), +(5,77,cs), +(5,27,o), +(40,-5,o), +(88,-5,cs), +(98,-5,o), +(112,-4,o), +(123,1,c), +(109,14,l), +(100,-37,o), +(59,-103,o), +(-11,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(156,377,o), +(197,409,o), +(197,464,cs), +(197,519,o), +(156,551,o), +(101,551,cs), +(46,551,o), +(5,519,o), +(5,464,cs), +(5,409,o), +(46,377,o), +(101,377,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (1,387); +ref = period; +} +); +width = 211; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(45,-125,l), +(69,-102,o), +(101,-37,o), +(101,8,cs), +(101,31,o), +(90,42,o), +(73,42,cs), +(58,42,o), +(47,32,o), +(47,17,cs), +(47,2,o), +(57,-7,o), +(72,-7,cs), +(79,-7,o), +(83,-6,o), +(88,-2,c), +(81,0,l), +(79,-37,o), +(55,-87,o), +(22,-125,c) +); +}, +{ +closed = 1; +nodes = ( +(85,473,o), +(96,483,o), +(96,497,cs), +(96,511,o), +(85,521,o), +(71,521,cs), +(57,521,o), +(46,511,o), +(46,497,cs), +(46,483,o), +(57,473,o), +(71,473,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (-1,480); +ref = period; +} +); +width = 130; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(49,-124,l), +(73,-99,o), +(107,-36,o), +(107,11,cs), +(107,39,o), +(93,51,o), +(75,51,cs), +(57,51,o), +(45,40,o), +(45,23,cs), +(45,8,o), +(55,-4,o), +(73,-4,cs), +(84,-4,o), +(92,2,o), +(94,8,c), +(89,9,l), +(87,-27,o), +(66,-77,o), +(26,-124,c) +); +}, +{ +closed = 1; +nodes = ( +(92,465,o), +(105,477,o), +(105,494,cs), +(105,511,o), +(92,523,o), +(75,523,cs), +(58,523,o), +(45,511,o), +(45,494,cs), +(45,477,o), +(58,465,o), +(75,465,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (0,473); +ref = period; +} +); +width = 146; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(135,-167,l), +(193,-117,o), +(253,-18,o), +(253,62,cs), +(253,139,o), +(205,175,o), +(132,175,cs), +(67,175,o), +(18,142,o), +(18,83,cs), +(18,32,o), +(51,-2,o), +(122,-2,cs), +(151,-2,o), +(180,6,o), +(195,18,c), +(137,18,l), +(126,-32,o), +(69,-106,o), +(4,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(220,369,o), +(254,408,o), +(254,462,cs), +(254,515,o), +(220,554,o), +(136,554,cs), +(52,554,o), +(18,515,o), +(18,462,cs), +(18,408,o), +(52,369,o), +(136,369,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (2,379); +ref = period; +} +); +width = 267; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(45,-125,l), +(69,-102,o), +(101,-37,o), +(101,8,cs), +(101,31,o), +(90,42,o), +(73,42,cs), +(58,42,o), +(47,32,o), +(47,17,cs), +(47,2,o), +(57,-7,o), +(72,-7,cs), +(79,-7,o), +(83,-6,o), +(88,-2,c), +(81,0,l), +(79,-37,o), +(55,-87,o), +(22,-125,c) +); +}, +{ +closed = 1; +nodes = ( +(85,473,o), +(96,483,o), +(96,497,cs), +(96,511,o), +(85,521,o), +(71,521,cs), +(57,521,o), +(46,511,o), +(46,497,cs), +(46,483,o), +(57,473,o), +(71,473,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (9,474); +ref = period; +} +); +width = 100; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(89,-167,l), +(143,-123,o), +(197,-26,o), +(197,56,cs), +(197,126,o), +(155,164,o), +(100,164,cs), +(45,164,o), +(5,129,o), +(5,77,cs), +(5,27,o), +(40,-5,o), +(88,-5,cs), +(98,-5,o), +(112,-4,o), +(123,1,c), +(109,14,l), +(100,-37,o), +(59,-103,o), +(-11,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(156,377,o), +(197,409,o), +(197,464,cs), +(197,519,o), +(156,551,o), +(101,551,cs), +(46,551,o), +(5,519,o), +(5,464,cs), +(5,409,o), +(46,377,o), +(101,377,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (-5,369); +ref = period; +} +); +width = 200; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(63,-124,l), +(87,-99,o), +(121,-36,o), +(121,11,cs), +(121,39,o), +(107,51,o), +(89,51,cs), +(71,51,o), +(59,40,o), +(59,23,cs), +(59,8,o), +(69,-4,o), +(87,-4,cs), +(98,-4,o), +(106,2,o), +(108,8,c), +(103,9,l), +(101,-27,o), +(80,-77,o), +(40,-124,c) +); +}, +{ +closed = 1; +nodes = ( +(106,465,o), +(119,477,o), +(119,494,cs), +(119,511,o), +(106,523,o), +(89,523,cs), +(72,523,o), +(59,511,o), +(59,494,cs), +(59,477,o), +(72,465,o), +(89,465,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +anchor = top; +ref = comma; +}, +{ +alignment = -1; +anchor = top; +pos = (6,473); +ref = period; +} +); +width = 179; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(95,-167,l), +(148,-119,o), +(205,-18,o), +(205,62,cs), +(205,128,o), +(163,168,o), +(107,168,cs), +(50,168,o), +(12,132,o), +(12,79,cs), +(12,31,o), +(44,-3,o), +(98,-3,cs), +(123,-3,o), +(144,4,o), +(157,15,c), +(110,15,l), +(100,-34,o), +(50,-107,o), +(-8,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(162,378,o), +(200,413,o), +(200,466,cs), +(200,519,o), +(162,554,o), +(106,554,cs), +(50,554,o), +(12,519,o), +(12,466,cs), +(12,413,o), +(50,378,o), +(106,378,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +anchor = top; +ref = comma; +}, +{ +alignment = -1; +anchor = top; +pos = (9,384); +ref = period; +} +); +width = 220; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(49,-124,l), +(73,-99,o), +(107,-36,o), +(107,11,cs), +(107,39,o), +(93,51,o), +(75,51,cs), +(57,51,o), +(45,40,o), +(45,23,cs), +(45,8,o), +(55,-4,o), +(73,-4,cs), +(84,-4,o), +(92,2,o), +(94,8,c), +(89,9,l), +(87,-27,o), +(66,-77,o), +(26,-124,c) +); +}, +{ +closed = 1; +nodes = ( +(92,465,o), +(105,477,o), +(105,494,cs), +(105,511,o), +(92,523,o), +(75,523,cs), +(58,523,o), +(45,511,o), +(45,494,cs), +(45,477,o), +(58,465,o), +(75,465,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +anchor = top; +ref = comma; +}, +{ +alignment = -1; +anchor = top; +pos = (0,473); +ref = period; +} +); +width = 146; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(135,-167,l), +(193,-117,o), +(253,-18,o), +(253,62,cs), +(253,139,o), +(205,175,o), +(132,175,cs), +(67,175,o), +(18,142,o), +(18,83,cs), +(18,32,o), +(51,-2,o), +(122,-2,cs), +(151,-2,o), +(180,6,o), +(195,18,c), +(137,18,l), +(126,-32,o), +(69,-106,o), +(4,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(220,369,o), +(254,408,o), +(254,462,cs), +(254,515,o), +(220,554,o), +(136,554,cs), +(52,554,o), +(18,515,o), +(18,462,cs), +(18,408,o), +(52,369,o), +(136,369,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (6,346); +ref = period; +} +); +width = 297; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(63,-124,l), +(87,-99,o), +(121,-36,o), +(121,11,cs), +(121,39,o), +(107,51,o), +(89,51,cs), +(71,51,o), +(59,40,o), +(59,23,cs), +(59,8,o), +(69,-4,o), +(87,-4,cs), +(98,-4,o), +(106,2,o), +(108,8,c), +(103,9,l), +(101,-27,o), +(80,-77,o), +(40,-124,c) +); +}, +{ +closed = 1; +nodes = ( +(106,465,o), +(119,477,o), +(119,494,cs), +(119,511,o), +(106,523,o), +(89,523,cs), +(72,523,o), +(59,511,o), +(59,494,cs), +(59,477,o), +(72,465,o), +(89,465,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (6,461); +ref = period; +} +); +width = 210; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(95,-167,l), +(148,-119,o), +(205,-18,o), +(205,62,cs), +(205,128,o), +(163,168,o), +(107,168,cs), +(50,168,o), +(12,132,o), +(12,79,cs), +(12,31,o), +(44,-3,o), +(98,-3,cs), +(123,-3,o), +(144,4,o), +(157,15,c), +(110,15,l), +(100,-34,o), +(50,-107,o), +(-8,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(162,378,o), +(200,413,o), +(200,466,cs), +(200,519,o), +(162,554,o), +(106,554,cs), +(50,554,o), +(12,519,o), +(12,466,cs), +(12,413,o), +(50,378,o), +(106,378,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (-3,356); +ref = period; +} +); +width = 289; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-22,-122,l), +(6,-99,o), +(61,-25,o), +(61,15,cs), +(61,31,o), +(51,42,o), +(35,42,cs), +(21,42,o), +(10,33,o), +(10,17,cs), +(10,3,o), +(20,-6,o), +(34,-6,cs), +(39,-6,o), +(43,-5,o), +(46,-3,c), +(41,2,l), +(31,-35,o), +(-6,-85,o), +(-45,-122,c) +); +}, +{ +closed = 1; +nodes = ( +(148,474,o), +(158,483,o), +(158,498,cs), +(158,513,o), +(148,522,o), +(134,522,cs), +(121,522,o), +(110,513,o), +(110,498,cs), +(110,483,o), +(121,474,o), +(134,474,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (100,480); +ref = period; +} +); +width = 128; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(15,-167,l), +(82,-122,o), +(173,-16,o), +(173,73,cs), +(173,128,o), +(135,164,o), +(79,164,cs), +(18,164,o), +(-23,127,o), +(-23,75,cs), +(-23,30,o), +(12,-1,o), +(59,-1,cs), +(71,-1,o), +(81,1,o), +(88,4,c), +(72,17,l), +(47,-38,o), +(-14,-108,o), +(-96,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(209,377,o), +(251,414,o), +(251,469,cs), +(251,518,o), +(218,551,o), +(161,551,cs), +(98,551,o), +(56,514,o), +(56,459,cs), +(56,410,o), +(89,377,o), +(146,377,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (78,387); +ref = period; +} +); +width = 218; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-15,-124,l), +(21,-88,o), +(66,-20,o), +(66,18,cs), +(66,38,o), +(54,51,o), +(34,51,cs), +(16,51,o), +(3,40,o), +(3,20,cs), +(3,3,o), +(15,-8,o), +(33,-8,cs), +(39,-8,o), +(44,-6,o), +(48,-4,c), +(45,2,l), +(34,-35,o), +(0,-83,o), +(-39,-124,c) +); +}, +{ +closed = 1; +nodes = ( +(150,465,o), +(163,476,o), +(163,495,cs), +(163,512,o), +(151,523,o), +(134,523,cs), +(116,523,o), +(103,512,o), +(103,493,cs), +(103,476,o), +(115,465,o), +(132,465,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (100,473); +ref = period; +} +); +width = 175; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(25,-167,l), +(93,-122,o), +(184,-15,o), +(184,75,cs), +(184,131,o), +(146,167,o), +(90,167,cs), +(28,167,o), +(-13,130,o), +(-13,77,cs), +(-13,32,o), +(22,1,o), +(69,1,cs), +(82,1,o), +(92,3,o), +(99,6,c), +(83,19,l), +(57,-37,o), +(-4,-107,o), +(-87,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(220,379,o), +(264,416,o), +(264,474,cs), +(264,522,o), +(228,554,o), +(174,554,cs), +(110,554,o), +(66,517,o), +(66,459,cs), +(66,411,o), +(102,379,o), +(156,379,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (80,385); +ref = period; +} +); +width = 247; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-17,-124,l), +(19,-88,o), +(64,-20,o), +(64,18,cs), +(64,38,o), +(52,51,o), +(32,51,cs), +(14,51,o), +(1,40,o), +(1,20,cs), +(1,3,o), +(13,-8,o), +(31,-8,cs), +(37,-8,o), +(42,-6,o), +(46,-4,c), +(43,2,l), +(32,-35,o), +(-2,-83,o), +(-41,-124,c) +); +}, +{ +closed = 1; +nodes = ( +(146,467,o), +(159,478,o), +(159,497,cs), +(159,514,o), +(147,525,o), +(130,525,cs), +(112,525,o), +(99,514,o), +(99,495,cs), +(99,478,o), +(111,467,o), +(128,467,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (98,473); +ref = period; +} +); +width = 148; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(76,-167,l), +(162,-106,o), +(224,-11,o), +(224,64,cs), +(224,131,o), +(182,175,o), +(105,175,cs), +(30,175,o), +(-13,137,o), +(-13,79,cs), +(-13,29,o), +(24,-4,o), +(90,-4,cs), +(107,-4,o), +(120,-2,o), +(129,1,c), +(116,22,l), +(89,-33,o), +(21,-104,o), +(-66,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(256,369,o), +(302,405,o), +(302,469,cs), +(302,520,o), +(261,554,o), +(189,554,cs), +(108,554,o), +(62,518,o), +(62,454,cs), +(62,403,o), +(103,369,o), +(175,369,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (78,379); +ref = period; +} +); +width = 267; +} +); +metricLeft = comma; +metricRight = period; +unicode = 59; +userData = { +KernOnSpecialSpacing = { +L = "spaced-off"; +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/semicolon.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/semicolon.ss01.glyph new file mode 100644 index 00000000..5e30c685 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/semicolon.ss01.glyph @@ -0,0 +1,296 @@ +{ +color = 6; +glyphname = semicolon.ss01; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (-1,367); +ref = period.ss01; +} +); +width = 206; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,462); +ref = period.ss01; +} +); +width = 122; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,456); +ref = period.ss01; +} +); +width = 137; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (-1,380); +ref = period.ss01; +} +); +width = 272; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (0,462); +ref = period.ss01; +} +); +width = 122; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (4,367); +ref = period.ss01; +} +); +width = 191; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (-2,456); +ref = period.ss01; +} +); +width = 162; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (-1,380); +ref = period.ss01; +} +); +width = 234; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (0,456); +ref = period.ss01; +} +); +width = 137; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = comma.ss01; +}, +{ +alignment = -1; +anchor = top; +pos = (-1,380); +ref = period.ss01; +} +); +width = 272; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (-2,456); +ref = period.ss01; +} +); +width = 163; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (-3,380); +ref = period.ss01; +} +); +width = 247; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (95,462); +ref = period.ss01; +} +); +width = 121; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (74,367); +ref = period.ss01; +} +); +width = 203; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (94,456); +ref = period.ss01; +} +); +width = 163; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (77,380); +ref = period.ss01; +} +); +width = 252; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (94,456); +ref = period.ss01; +} +); +width = 136; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (76,380); +ref = period.ss01; +} +); +width = 268; +} +); +metricLeft = comma; +metricRight = period; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/seven.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.blackC_ircled.glyph new file mode 100644 index 00000000..5dc7a6a7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.blackC_ircled.glyph @@ -0,0 +1,1874 @@ +{ +color = 0; +glyphname = seven.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,294,o), +(331,375,o), +(377,468,c), +(308,468,l), +(308,403,l), +(216,403,l), +(216,570,l), +(491,570,l), +(491,485,l), +(436,359,o), +(413,307,o), +(413,137,c), +(302,137,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(299,306,o), +(330,387,o), +(376,480,c), +(307,480,l), +(307,415,l), +(215,415,l), +(215,582,l), +(490,582,l), +(490,497,l), +(432,364,o), +(412,315,o), +(412,149,c), +(301,149,l) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(318,275,o), +(351,394,o), +(416,542,c), +(277,542,l), +(277,445,l), +(251,445,l), +(251,570,l), +(448,570,l), +(448,545,l), +(372,375,o), +(349,262,o), +(349,137,c), +(318,137,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(317,286,o), +(350,405,o), +(415,553,c), +(276,553,l), +(276,456,l), +(250,456,l), +(250,581,l), +(447,581,l), +(447,556,l), +(371,386,o), +(348,273,o), +(348,148,c), +(317,148,l) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(406,293,o), +(476,426,o), +(570,540,c), +(310,540,l), +(310,444,l), +(280,444,l), +(280,570,l), +(611,570,l), +(611,545,l), +(513,427,o), +(443,288,o), +(422,137,c), +(384,137,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(402,306,o), +(472,439,o), +(566,553,c), +(306,553,l), +(306,457,l), +(276,457,l), +(276,583,l), +(607,583,l), +(607,558,l), +(509,440,o), +(439,301,o), +(418,150,c), +(380,150,l) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,252,o), +(397,368,o), +(472,455,c), +(354,455,l), +(354,393,l), +(244,393,l), +(244,572,l), +(621,572,l), +(621,476,l), +(554,392,o), +(486,253,o), +(474,139,c), +(328,139,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,266,o), +(395,382,o), +(470,469,c), +(352,469,l), +(352,407,l), +(242,407,l), +(242,586,l), +(619,586,l), +(619,490,l), +(552,406,o), +(484,267,o), +(472,153,c), +(326,153,l) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(318,275,o), +(351,394,o), +(416,542,c), +(277,542,l), +(277,445,l), +(251,445,l), +(251,570,l), +(448,570,l), +(448,545,l), +(372,375,o), +(349,262,o), +(349,137,c), +(318,137,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,286,o), +(330,405,o), +(395,553,c), +(256,553,l), +(256,456,l), +(230,456,l), +(230,581,l), +(427,581,l), +(427,556,l), +(351,386,o), +(328,273,o), +(328,148,c), +(297,148,l) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,294,o), +(331,375,o), +(377,468,c), +(308,468,l), +(308,403,l), +(216,403,l), +(216,570,l), +(491,570,l), +(491,485,l), +(436,359,o), +(413,307,o), +(413,137,c), +(302,137,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(289,306,o), +(320,387,o), +(366,480,c), +(297,480,l), +(297,415,l), +(205,415,l), +(205,582,l), +(480,582,l), +(480,497,l), +(422,364,o), +(402,315,o), +(402,149,c), +(291,149,l) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(392,315,o), +(461,429,o), +(536,539,c), +(323,539,l), +(323,445,l), +(294,445,l), +(294,570,l), +(577,570,l), +(577,546,l), +(499,431,o), +(429,322,o), +(429,137,c), +(392,137,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,327,o), +(441,441,o), +(516,551,c), +(303,551,l), +(303,457,l), +(274,457,l), +(274,582,l), +(557,582,l), +(557,558,l), +(479,443,o), +(409,334,o), +(409,149,c), +(372,149,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +112, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +617, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +354, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +459, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +610, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +298, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +409, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-19, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-19, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(349,293,o), +(400,395,o), +(446,459,c), +(357,459,l), +(357,397,l), +(256,397,l), +(256,570,l), +(597,570,l), +(597,476,l), +(531,384,o), +(486,306,o), +(486,137,c), +(349,137,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,307,o), +(380,409,o), +(426,473,c), +(337,473,l), +(337,411,l), +(236,411,l), +(236,584,l), +(577,584,l), +(577,490,l), +(511,398,o), +(466,320,o), +(466,151,c), +(329,151,l) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(406,293,o), +(476,426,o), +(570,540,c), +(310,540,l), +(310,444,l), +(280,444,l), +(280,570,l), +(611,570,l), +(611,545,l), +(513,427,o), +(443,288,o), +(422,137,c), +(384,137,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(392,306,o), +(462,439,o), +(556,553,c), +(296,553,l), +(296,457,l), +(266,457,l), +(266,583,l), +(597,583,l), +(597,558,l), +(499,440,o), +(429,301,o), +(408,150,c), +(370,150,l) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,252,o), +(397,368,o), +(472,455,c), +(354,455,l), +(354,393,l), +(244,393,l), +(244,572,l), +(621,572,l), +(621,476,l), +(554,392,o), +(486,253,o), +(474,139,c), +(328,139,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,266,o), +(385,382,o), +(460,469,c), +(342,469,l), +(342,407,l), +(232,407,l), +(232,586,l), +(609,586,l), +(609,490,l), +(542,406,o), +(474,267,o), +(462,153,c), +(316,153,l) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(392,315,o), +(461,429,o), +(536,539,c), +(323,539,l), +(323,445,l), +(294,445,l), +(294,570,l), +(577,570,l), +(577,546,l), +(499,431,o), +(429,322,o), +(429,137,c), +(392,137,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(387,327,o), +(454,441,o), +(529,551,c), +(320,551,l), +(320,457,l), +(291,457,l), +(291,582,l), +(568,582,l), +(568,558,l), +(492,443,o), +(424,334,o), +(424,149,c), +(387,149,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +112, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +617, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +354, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +459, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +610, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +298, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +409, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-19, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-19, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(349,293,o), +(400,395,o), +(446,459,c), +(357,459,l), +(357,397,l), +(256,397,l), +(256,570,l), +(597,570,l), +(597,476,l), +(531,384,o), +(486,306,o), +(486,137,c), +(349,137,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,307,o), +(390,409,o), +(435,473,c), +(350,473,l), +(350,411,l), +(250,411,l), +(250,584,l), +(584,584,l), +(584,490,l), +(520,398,o), +(476,320,o), +(476,151,c), +(341,151,l) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(355,275,o), +(388,394,o), +(453,542,c), +(314,542,l), +(314,445,l), +(288,445,l), +(288,570,l), +(485,570,l), +(485,545,l), +(409,375,o), +(386,262,o), +(386,137,c), +(355,137,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(354,286,o), +(387,405,o), +(452,553,c), +(313,553,l), +(313,456,l), +(287,456,l), +(287,581,l), +(484,581,l), +(484,556,l), +(408,386,o), +(385,273,o), +(385,148,c), +(354,148,l) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,294,o), +(363,375,o), +(409,468,c), +(340,468,l), +(340,403,l), +(248,403,l), +(248,570,l), +(523,570,l), +(523,485,l), +(468,359,o), +(445,307,o), +(445,137,c), +(334,137,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,306,o), +(362,387,o), +(408,480,c), +(339,480,l), +(339,415,l), +(247,415,l), +(247,582,l), +(522,582,l), +(522,497,l), +(464,364,o), +(444,315,o), +(444,149,c), +(333,149,l) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(424,315,o), +(493,429,o), +(568,539,c), +(355,539,l), +(355,445,l), +(326,445,l), +(326,570,l), +(609,570,l), +(609,546,l), +(531,431,o), +(461,322,o), +(461,137,c), +(424,137,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(424,327,o), +(493,441,o), +(568,551,c), +(355,551,l), +(355,457,l), +(326,457,l), +(326,582,l), +(609,582,l), +(609,558,l), +(531,443,o), +(461,334,o), +(461,149,c), +(424,149,l) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,293,o), +(428,395,o), +(474,459,c), +(385,459,l), +(385,397,l), +(284,397,l), +(284,570,l), +(625,570,l), +(625,476,l), +(559,384,o), +(514,306,o), +(514,137,c), +(377,137,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(378,307,o), +(429,409,o), +(475,473,c), +(386,473,l), +(386,411,l), +(285,411,l), +(285,584,l), +(626,584,l), +(626,490,l), +(560,398,o), +(515,320,o), +(515,151,c), +(378,151,l) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,293,o), +(507,426,o), +(601,540,c), +(341,540,l), +(341,444,l), +(311,444,l), +(311,570,l), +(642,570,l), +(642,545,l), +(544,427,o), +(474,288,o), +(453,137,c), +(415,137,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(433,306,o), +(503,439,o), +(597,553,c), +(337,553,l), +(337,457,l), +(307,457,l), +(307,583,l), +(638,583,l), +(638,558,l), +(540,440,o), +(470,301,o), +(449,150,c), +(411,150,l) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,252,o), +(426,368,o), +(501,455,c), +(383,455,l), +(383,393,l), +(273,393,l), +(273,572,l), +(650,572,l), +(650,476,l), +(583,392,o), +(515,253,o), +(503,139,c), +(357,139,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,266,o), +(424,382,o), +(499,469,c), +(381,469,l), +(381,407,l), +(271,407,l), +(271,586,l), +(648,586,l), +(648,490,l), +(581,406,o), +(513,267,o), +(501,153,c), +(355,153,l) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 10108; +userData = { +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/seven.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.circled.glyph new file mode 100644 index 00000000..9cb5fa3c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.circled.glyph @@ -0,0 +1,1337 @@ +{ +color = 0; +glyphname = seven.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(349,137,l), +(349,262,o), +(372,375,o), +(448,545,c), +(448,570,l), +(251,570,l), +(251,445,l), +(277,445,l), +(277,542,l), +(416,542,l), +(351,394,o), +(318,275,o), +(318,137,c) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (235,188); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(413,137,l), +(413,307,o), +(436,359,o), +(491,485,c), +(491,570,l), +(216,570,l), +(216,403,l), +(308,403,l), +(308,468,l), +(377,468,l), +(331,375,o), +(300,294,o), +(302,137,c) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (201,189); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(422,137,l), +(443,288,o), +(513,427,o), +(611,545,c), +(611,570,l), +(280,570,l), +(280,444,l), +(310,444,l), +(310,540,l), +(570,540,l), +(476,426,o), +(406,293,o), +(384,137,c) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (250,190); +ref = seveninferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(474,139,l), +(486,253,o), +(554,392,o), +(621,476,c), +(621,572,l), +(244,572,l), +(244,393,l), +(354,393,l), +(354,455,l), +(472,455,l), +(397,368,o), +(341,252,o), +(328,139,c) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (230,193); +ref = seveninferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(349,137,l), +(349,262,o), +(372,375,o), +(448,545,c), +(448,570,l), +(251,570,l), +(251,445,l), +(277,445,l), +(277,542,l), +(416,542,l), +(351,394,o), +(318,275,o), +(318,137,c) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (225,188); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 658; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(413,137,l), +(413,307,o), +(436,359,o), +(491,485,c), +(491,570,l), +(216,570,l), +(216,403,l), +(308,403,l), +(308,468,l), +(377,468,l), +(331,375,o), +(300,294,o), +(302,137,c) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (200,189); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(429,137,l), +(429,322,o), +(499,431,o), +(577,546,c), +(577,570,l), +(294,570,l), +(294,445,l), +(323,445,l), +(323,539,l), +(536,539,l), +(461,429,o), +(392,315,o), +(392,137,c) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (253,189); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 831; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(486,137,l), +(486,306,o), +(531,384,o), +(597,476,c), +(597,570,l), +(256,570,l), +(256,397,l), +(357,397,l), +(357,459,l), +(446,459,l), +(400,395,o), +(349,293,o), +(349,137,c) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (232,191); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 825; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(422,137,l), +(443,288,o), +(513,427,o), +(611,545,c), +(611,570,l), +(280,570,l), +(280,444,l), +(310,444,l), +(310,540,l), +(570,540,l), +(476,426,o), +(406,293,o), +(384,137,c) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (250,190); +ref = seveninferior; +} +); +width = 864; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(474,139,l), +(486,253,o), +(554,392,o), +(621,476,c), +(621,572,l), +(244,572,l), +(244,393,l), +(354,393,l), +(354,455,l), +(472,455,l), +(397,368,o), +(341,252,o), +(328,139,c) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (229,193); +ref = seveninferior; +} +); +width = 840; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(429,137,l), +(429,322,o), +(499,431,o), +(577,546,c), +(577,570,l), +(294,570,l), +(294,445,l), +(323,445,l), +(323,539,l), +(536,539,l), +(461,429,o), +(392,315,o), +(392,137,c) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (249,189); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(486,137,l), +(486,306,o), +(531,384,o), +(597,476,c), +(597,570,l), +(256,570,l), +(256,397,l), +(357,397,l), +(357,459,l), +(446,459,l), +(400,395,o), +(349,293,o), +(349,137,c) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (230,191); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(386,137,l), +(386,262,o), +(409,375,o), +(485,545,c), +(485,570,l), +(288,570,l), +(288,445,l), +(314,445,l), +(314,542,l), +(453,542,l), +(388,394,o), +(355,275,o), +(355,137,c) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (272,188); +ref = seveninferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(445,137,l), +(445,307,o), +(468,359,o), +(523,485,c), +(523,570,l), +(248,570,l), +(248,403,l), +(340,403,l), +(340,468,l), +(409,468,l), +(363,375,o), +(332,294,o), +(334,137,c) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (233,189); +ref = seveninferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(461,137,l), +(461,322,o), +(531,431,o), +(609,546,c), +(609,570,l), +(326,570,l), +(326,445,l), +(355,445,l), +(355,539,l), +(568,539,l), +(493,429,o), +(424,315,o), +(424,137,c) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = master01; +pos = (272,186); +ref = seveninferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(514,137,l), +(514,306,o), +(559,384,o), +(625,476,c), +(625,570,l), +(284,570,l), +(284,397,l), +(385,397,l), +(385,459,l), +(474,459,l), +(428,395,o), +(377,293,o), +(377,137,c) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (253,188); +ref = seveninferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(453,137,l), +(474,288,o), +(544,427,o), +(642,545,c), +(642,570,l), +(311,570,l), +(311,444,l), +(341,444,l), +(341,540,l), +(601,540,l), +(507,426,o), +(437,293,o), +(415,137,c) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (281,190); +ref = seveninferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(503,139,l), +(515,253,o), +(583,392,o), +(650,476,c), +(650,572,l), +(273,572,l), +(273,393,l), +(383,393,l), +(383,455,l), +(501,455,l), +(426,368,o), +(370,252,o), +(357,139,c) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (259,193); +ref = seveninferior; +} +); +width = 880; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9318; +userData = { +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/seven.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.dnom.glyph new file mode 100644 index 00000000..f01186a2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.dnom.glyph @@ -0,0 +1,688 @@ +{ +glyphname = seven.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,0,l), +(191,142,o), +(207,182,o), +(257,298,c), +(257,375,l), +(14,375,l), +(14,228,l), +(98,228,l), +(98,282,l), +(153,282,l), +(115,205,o), +(87,139,o), +(89,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 268; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(107,116,o), +(128,218,o), +(198,375,c), +(198,397,l), +(17,397,l), +(17,283,l), +(41,283,l), +(41,371,l), +(168,371,l), +(115,250,o), +(79,137,o), +(79,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 206; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,0,l), +(176,138,o), +(241,267,o), +(330,374,c), +(330,397,l), +(26,397,l), +(26,281,l), +(54,281,l), +(54,368,l), +(291,368,l), +(206,266,o), +(141,142,o), +(121,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 344; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,0,l), +(224,100,o), +(286,221,o), +(348,293,c), +(348,375,l), +(12,375,l), +(12,221,l), +(106,221,l), +(106,276,l), +(221,276,l), +(152,199,o), +(101,98,o), +(89,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 350; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(97,116,o), +(118,218,o), +(188,375,c), +(188,397,l), +(7,397,l), +(7,283,l), +(31,283,l), +(31,371,l), +(158,371,l), +(105,250,o), +(69,137,o), +(69,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 188; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,0,l), +(182,142,o), +(198,182,o), +(248,298,c), +(248,375,l), +(5,375,l), +(5,228,l), +(89,228,l), +(89,282,l), +(144,282,l), +(106,205,o), +(78,139,o), +(80,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 252; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(144,169,o), +(208,270,o), +(280,375,c), +(280,397,l), +(20,397,l), +(20,283,l), +(47,283,l), +(47,369,l), +(242,369,l), +(169,262,o), +(110,159,o), +(110,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 282; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,0,l), +(209,145,o), +(249,212,o), +(310,293,c), +(310,375,l), +(4,375,l), +(4,224,l), +(93,224,l), +(93,277,l), +(176,277,l), +(134,223,o), +(88,134,o), +(88,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 310; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,0,l), +(166,138,o), +(231,267,o), +(320,374,c), +(320,397,l), +(16,397,l), +(16,281,l), +(44,281,l), +(44,368,l), +(281,368,l), +(196,266,o), +(131,142,o), +(111,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 329; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(214,100,o), +(276,221,o), +(338,293,c), +(338,375,l), +(2,375,l), +(2,221,l), +(96,221,l), +(96,276,l), +(211,276,l), +(142,199,o), +(91,98,o), +(79,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 335; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(163,0,l), +(163,169,o), +(227,270,o), +(297,375,c), +(297,397,l), +(43,397,l), +(43,283,l), +(68,283,l), +(68,369,l), +(259,369,l), +(188,262,o), +(131,159,o), +(131,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 326; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,145,o), +(259,212,o), +(317,293,c), +(317,375,l), +(24,375,l), +(24,224,l), +(112,224,l), +(112,277,l), +(184,277,l), +(146,223,o), +(103,134,o), +(103,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 332; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,0,l), +(75,114,o), +(118,220,o), +(220,375,c), +(225,397,l), +(46,397,l), +(22,283,l), +(45,283,l), +(64,371,l), +(190,371,l), +(112,249,o), +(53,137,o), +(23,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 204; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,0,l), +(163,147,o), +(196,200,o), +(260,298,c), +(277,375,l), +(36,375,l), +(5,228,l), +(89,228,l), +(99,282,l), +(160,282,l), +(89,191,o), +(53,98,o), +(35,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 266; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(151,134,o), +(216,251,o), +(318,368,c), +(325,397,l), +(69,397,l), +(45,283,l), +(72,283,l), +(89,368,l), +(286,368,l), +(199,272,o), +(122,151,o), +(73,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 325; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,0,l), +(205,135,o), +(271,217,o), +(336,294,c), +(353,375,l), +(47,375,l), +(15,224,l), +(104,224,l), +(115,277,l), +(211,277,l), +(145,211,o), +(79,101,o), +(45,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 350; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(146,120,o), +(224,247,o), +(355,373,c), +(360,397,l), +(55,397,l), +(31,281,l), +(59,281,l), +(77,368,l), +(313,368,l), +(210,269,o), +(120,149,o), +(71,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 345; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(200,106,o), +(250,197,o), +(359,288,c), +(377,375,l), +(33,375,l), +(1,221,l), +(94,221,l), +(105,273,l), +(216,273,l), +(153,224,o), +(82,141,o), +(55,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 358; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/seven.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.glyph new file mode 100644 index 00000000..f3dd9b6c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.glyph @@ -0,0 +1,735 @@ +{ +glyphname = seven; +kernLeft = KO_seven; +kernRight = KO_seven; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,0,l), +(344,277,o), +(379,363,o), +(477,589,c), +(477,730,l), +(16,730,l), +(16,451,l), +(169,451,l), +(169,562,l), +(368,562,l), +(310,606,l), +(222,426,o), +(156,292,o), +(160,0,c) +); +} +); +width = 490; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,l), +(161,201,o), +(199,405,o), +(333,703,c), +(333,730,l), +(17,730,l), +(17,530,l), +(47,530,l), +(47,700,l), +(309,700,l), +(300,708,l), +(198,473,o), +(127,256,o), +(127,0,c) +); +} +); +width = 338; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(281,0,l), +(281,216,o), +(344,443,o), +(570,696,c), +(570,721,l), +(25,721,l), +(25,524,l), +(57,524,l), +(57,690,l), +(525,690,l), +(332,474,o), +(243,251,o), +(243,0,c) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,l), +(288,263,o), +(409,500,o), +(579,705,c), +(579,730,l), +(30,730,l), +(30,531,l), +(63,531,l), +(63,699,l), +(551,699,l), +(541,707,l), +(377,511,o), +(250,277,o), +(211,0,c) +); +} +); +width = 595; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(404,201,o), +(517,435,o), +(639,585,c), +(639,730,l), +(14,730,l), +(14,441,l), +(181,441,l), +(181,554,l), +(512,554,l), +(456,602,l), +(304,444,o), +(186,221,o), +(161,0,c) +); +} +); +width = 642; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(149,201,o), +(187,405,o), +(319,702,c), +(319,729,l), +(7,729,l), +(7,531,l), +(36,531,l), +(36,699,l), +(295,699,l), +(286,707,l), +(186,472,o), +(115,256,o), +(115,0,c) +); +} +); +width = 316; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,0,l), +(325,178,o), +(368,398,o), +(447,590,c), +(447,729,l), +(7,729,l), +(7,453,l), +(158,453,l), +(158,563,l), +(340,563,l), +(283,609,l), +(190,429,o), +(136,199,o), +(139,0,c) +); +} +); +width = 452; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(246,0,l), +(274,237,o), +(349,468,o), +(505,696,c), +(505,721,l), +(45,721,l), +(45,524,l), +(78,524,l), +(78,687,l), +(460,687,l), +(334,501,o), +(240,284,o), +(206,0,c) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(230,316,o), +(352,507,o), +(485,704,c), +(485,729,l), +(25,729,l), +(25,532,l), +(58,532,l), +(58,696,l), +(456,696,l), +(446,704,l), +(312,505,o), +(190,312,o), +(190,0,c) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 490; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(371,0,l), +(399,265,o), +(491,432,o), +(583,582,c), +(583,721,l), +(28,721,l), +(28,445,l), +(179,445,l), +(179,555,l), +(378,555,l), +(292,438,o), +(203,265,o), +(171,0,c) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,0,l), +(368,210,o), +(430,395,o), +(562,580,c), +(562,729,l), +(7,729,l), +(7,453,l), +(158,453,l), +(158,553,l), +(411,553,l), +(359,597,l), +(226,436,o), +(153,222,o), +(153,0,c) +); +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(281,0,l), +(281,216,o), +(344,443,o), +(570,696,c), +(570,721,l), +(25,721,l), +(25,524,l), +(57,524,l), +(57,690,l), +(525,690,l), +(332,474,o), +(243,251,o), +(243,0,c) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,0,l), +(274,263,o), +(394,500,o), +(562,704,c), +(562,729,l), +(20,729,l), +(20,532,l), +(52,532,l), +(52,698,l), +(534,698,l), +(524,706,l), +(362,511,o), +(237,277,o), +(198,0,c) +); +} +); +width = 573; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,0,l), +(410,197,o), +(522,425,o), +(641,571,c), +(641,729,l), +(4,729,l), +(4,444,l), +(174,444,l), +(174,550,l), +(510,550,l), +(455,597,l), +(301,441,o), +(179,220,o), +(154,0,c) +); +} +); +width = 641; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,0,l), +(262,237,o), +(337,468,o), +(493,696,c), +(493,721,l), +(33,721,l), +(33,524,l), +(66,524,l), +(66,687,l), +(448,687,l), +(322,501,o), +(228,284,o), +(194,0,c) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(241,0,l), +(241,230,o), +(311,456,o), +(472,705,c), +(472,730,l), +(42,730,l), +(42,561,l), +(73,561,l), +(73,697,l), +(438,697,l), +(438,695,l), +(273,457,o), +(202,230,o), +(202,0,c) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 493; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(368,0,l), +(396,265,o), +(488,432,o), +(580,582,c), +(580,721,l), +(25,721,l), +(25,445,l), +(176,445,l), +(176,555,l), +(375,555,l), +(289,438,o), +(200,265,o), +(168,0,c) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(376,0,l), +(376,209,o), +(434,396,o), +(555,584,c), +(555,730,l), +(24,730,l), +(24,471,l), +(175,471,l), +(175,557,l), +(341,558,l), +(341,549,l), +(216,401,o), +(160,217,o), +(160,0,c) +); +} +); +width = 563; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(145,199,o), +(227,406,o), +(421,703,c), +(427,730,l), +(114,730,l), +(73,530,l), +(101,530,l), +(138,700,l), +(397,700,l), +(389,708,l), +(241,474,o), +(125,258,o), +(69,0,c) +); +} +); +width = 335; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,0,l), +(343,287,o), +(411,397,o), +(538,589,c), +(568,730,l), +(111,730,l), +(53,451,l), +(205,451,l), +(227,562,l), +(434,562,l), +(389,607,l), +(234,417,o), +(147,221,o), +(106,0,c) +); +} +); +width = 486; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,0,l), +(266,312,o), +(420,497,o), +(592,696,c), +(597,721,l), +(151,721,l), +(111,524,l), +(143,524,l), +(178,688,l), +(541,688,l), +(374,493,o), +(225,304,o), +(160,0,c) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,0,l), +(271,236,o), +(392,465,o), +(591,692,c), +(600,730,l), +(143,730,l), +(101,531,l), +(135,531,l), +(169,696,l), +(570,696,l), +(561,704,l), +(391,513,o), +(247,292,o), +(152,0,c) +); +} +); +width = 535; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,0,l), +(403,268,o), +(532,437,o), +(656,589,c), +(685,730,l), +(124,730,l), +(65,451,l), +(218,451,l), +(241,562,l), +(528,562,l), +(476,597,l), +(336,461,o), +(192,232,o), +(116,0,c) +); +} +); +width = 611; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,0,l), +(275,223,o), +(423,465,o), +(670,705,c), +(676,730,l), +(128,730,l), +(86,531,l), +(118,531,l), +(153,699,l), +(638,699,l), +(629,707,l), +(423,510,o), +(252,277,o), +(156,0,c) +); +} +); +width = 595; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(367,0,l), +(408,211,o), +(507,393,o), +(715,575,c), +(747,730,l), +(108,730,l), +(48,441,l), +(213,441,l), +(236,549,l), +(559,549,l), +(498,580,l), +(363,474,o), +(203,302,o), +(143,0,c) +); +} +); +width = 656; +} +); +unicode = 55; +userData = { +KernOnName = seven; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/seven.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.numr.glyph new file mode 100644 index 00000000..dda0f0e9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.numr.glyph @@ -0,0 +1,446 @@ +{ +color = 6; +glyphname = seven.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 268; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 206; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 344; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 350; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +pos = (0,333); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 188; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 252; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +pos = (0,332); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 282; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.dnom; +}; +width = 322; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +pos = (0,333); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 329; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +pos = (0,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 335; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 326; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.dnom; +}; +width = 332; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 204; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 266; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 325; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 350; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 345; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 358; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/seven.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.tf.glyph new file mode 100644 index 00000000..197d07aa --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/seven.tf.glyph @@ -0,0 +1,717 @@ +{ +glyphname = seven.tf; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,0,l), +(338,281,o), +(377,372,o), +(470,582,c), +(470,721,l), +(13,721,l), +(13,445,l), +(164,445,l), +(164,555,l), +(282,555,l), +(206,398,o), +(152,265,o), +(156,0,c) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,l), +(232,196,o), +(270,400,o), +(404,694,c), +(404,721,l), +(89,721,l), +(89,523,l), +(118,523,l), +(118,691,l), +(367,691,l), +(268,462,o), +(198,250,o), +(198,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,0,l), +(349,260,o), +(474,495,o), +(645,696,c), +(645,721,l), +(90,721,l), +(90,524,l), +(122,524,l), +(122,690,l), +(600,690,l), +(437,498,o), +(312,270,o), +(273,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(461,0,l), +(461,293,o), +(553,419,o), +(701,568,c), +(701,721,l), +(45,721,l), +(45,436,l), +(211,436,l), +(211,542,l), +(458,542,l), +(347,436,o), +(238,271,o), +(238,0,c) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,0,l), +(442,199,o), +(559,431,o), +(686,578,c), +(686,721,l), +(45,721,l), +(45,436,l), +(213,436,l), +(213,547,l), +(459,547,l), +(324,396,o), +(222,198,o), +(197,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,0,l), +(212,196,o), +(250,400,o), +(384,694,c), +(384,721,l), +(69,721,l), +(69,523,l), +(98,523,l), +(98,691,l), +(347,691,l), +(248,462,o), +(178,250,o), +(178,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,0,l), +(329,281,o), +(368,372,o), +(461,582,c), +(461,721,l), +(4,721,l), +(4,445,l), +(155,445,l), +(155,555,l), +(273,555,l), +(197,398,o), +(143,265,o), +(147,0,c) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,0,l), +(273,222,o), +(341,444,o), +(520,696,c), +(520,721,l), +(56,721,l), +(56,524,l), +(89,524,l), +(89,688,l), +(475,688,l), +(300,439,o), +(234,220,o), +(234,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,0,l), +(366,284,o), +(443,422,o), +(553,582,c), +(553,721,l), +(14,721,l), +(14,445,l), +(162,445,l), +(162,555,l), +(331,555,l), +(251,438,o), +(165,266,o), +(165,0,c) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,0,l), +(339,260,o), +(464,495,o), +(635,696,c), +(635,721,l), +(80,721,l), +(80,524,l), +(112,524,l), +(112,690,l), +(590,690,l), +(427,498,o), +(302,270,o), +(263,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 700; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(461,0,l), +(461,293,o), +(553,419,o), +(701,568,c), +(701,721,l), +(45,721,l), +(45,436,l), +(211,436,l), +(211,542,l), +(458,542,l), +(347,436,o), +(238,271,o), +(238,0,c) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,0,l), +(432,199,o), +(549,431,o), +(676,578,c), +(676,721,l), +(35,721,l), +(35,436,l), +(203,436,l), +(203,547,l), +(449,547,l), +(314,396,o), +(212,198,o), +(187,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(279,0,l), +(279,312,o), +(401,501,o), +(533,696,c), +(533,721,l), +(77,721,l), +(77,524,l), +(110,524,l), +(110,688,l), +(488,688,l), +(358,494,o), +(242,304,o), +(242,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(378,0,l), +(378,284,o), +(451,422,o), +(557,582,c), +(557,721,l), +(34,721,l), +(34,445,l), +(180,445,l), +(180,555,l), +(338,555,l), +(261,438,o), +(179,266,o), +(179,0,c) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,0,l), +(217,197,o), +(299,400,o), +(493,694,c), +(499,721,l), +(185,721,l), +(144,523,l), +(172,523,l), +(208,691,l), +(456,691,l), +(310,463,o), +(196,250,o), +(142,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,0,l), +(339,283,o), +(404,389,o), +(532,582,c), +(562,721,l), +(108,721,l), +(50,445,l), +(200,445,l), +(222,555,l), +(350,555,l), +(217,380,o), +(141,201,o), +(104,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,0,l), +(304,234,o), +(424,459,o), +(624,683,c), +(633,721,l), +(173,721,l), +(132,524,l), +(165,524,l), +(199,687,l), +(587,687,l), +(419,500,o), +(279,284,o), +(185,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 85; +}; +}; +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,l), +(396,265,o), +(524,435,o), +(641,582,c), +(670,721,l), +(127,721,l), +(69,445,l), +(218,445,l), +(241,555,l), +(432,555,l), +(307,419,o), +(184,210,o), +(116,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,0,l), +(333,220,o), +(486,460,o), +(738,696,c), +(744,721,l), +(181,721,l), +(140,524,l), +(172,524,l), +(206,690,l), +(692,690,l), +(486,498,o), +(312,268,o), +(216,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,0,l), +(439,208,o), +(541,388,o), +(753,568,c), +(785,721,l), +(134,721,l), +(74,436,l), +(238,436,l), +(261,542,l), +(500,542,l), +(368,434,o), +(230,271,o), +(175,0,c) +); +} +); +userData = { +RMXScaler = { +keepStroke = 80; +monoWidth = 700; +}; +}; +width = 720; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/seveneighths.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/seveneighths.glyph new file mode 100644 index 00000000..3f71a721 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/seveneighths.glyph @@ -0,0 +1,338 @@ +{ +color = 6; +glyphname = seveneighths; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (239,0); +ref = fraction; +}, +{ +pos = (358,0); +ref = eight.dnom; +} +); +width = 619; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (186,0); +ref = fraction; +}, +{ +pos = (237,0); +ref = eight.dnom; +} +); +width = 508; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (294,0); +ref = fraction; +}, +{ +pos = (395,0); +ref = eight.dnom; +} +); +width = 810; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (300,0); +ref = fraction; +}, +{ +pos = (423,0); +ref = eight.dnom; +} +); +width = 830; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (168,0); +ref = fraction; +}, +{ +pos = (205,0); +ref = eight.dnom; +} +); +width = 436; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (217,0); +ref = fraction; +}, +{ +pos = (324,0); +ref = eight.dnom; +} +); +width = 567; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (241,0); +ref = fraction; +}, +{ +pos = (311,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.numr; +}; +width = 662; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = seven.numr; +}, +{ +alignment = -1; +pos = (289,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (424,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.numr; +}; +width = 763; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (284,0); +ref = fraction; +}, +{ +pos = (375,0); +ref = eight.dnom; +} +); +width = 770; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (282,0); +ref = fraction; +}, +{ +pos = (392,0); +ref = eight.dnom; +} +); +width = 779; +}, +{ +layerId = m019; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (302,0); +ref = fraction; +}, +{ +pos = (411,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.numr; +}; +width = 799; +}, +{ +layerId = m020; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (298,0); +ref = fraction; +}, +{ +pos = (427,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.numr; +}; +width = 779; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (188,0); +ref = fraction; +}, +{ +pos = (248,0); +ref = eight.dnom; +} +); +width = 519; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (240,0); +ref = fraction; +}, +{ +pos = (374,0); +ref = eight.dnom; +} +); +width = 633; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (297,0); +ref = fraction; +}, +{ +pos = (417,0); +ref = eight.dnom; +} +); +width = 808; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (316,0); +ref = fraction; +}, +{ +pos = (483,0); +ref = eight.dnom; +} +); +width = 856; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (298,0); +ref = fraction; +}, +{ +pos = (410,0); +ref = eight.dnom; +} +); +width = 824; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (322,0); +ref = fraction; +}, +{ +pos = (462,0); +ref = eight.dnom; +} +); +width = 867; +} +); +unicode = 8542; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/seveninferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/seveninferior.glyph new file mode 100644 index 00000000..50ad4bb7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/seveninferior.glyph @@ -0,0 +1,805 @@ +{ +glyphname = seveninferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (152,177); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-40,l), +(211,126,o), +(231,175,o), +(289,308,c), +(289,393,l), +(14,393,l), +(14,226,l), +(106,226,l), +(106,291,l), +(175,291,l), +(129,198,o), +(98,117,o), +(100,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 299; +}, +{ +anchors = ( +{ +name = _center; +pos = (114,177); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(113,-40,l), +(113,85,o), +(136,198,o), +(212,368,c), +(212,393,l), +(15,393,l), +(15,268,l), +(41,268,l), +(41,365,l), +(180,365,l), +(115,217,o), +(82,98,o), +(82,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 219; +}, +{ +anchors = ( +{ +name = _center; +pos = (192,173); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(168,-40,l), +(189,111,o), +(259,250,o), +(357,368,c), +(357,393,l), +(26,393,l), +(26,267,l), +(56,267,l), +(56,363,l), +(316,363,l), +(222,249,o), +(152,116,o), +(130,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 370; +}, +{ +anchors = ( +{ +name = _center; +pos = (200.5,171); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(242,-40,l), +(254,74,o), +(322,213,o), +(389,297,c), +(389,393,l), +(12,393,l), +(12,214,l), +(122,214,l), +(122,276,l), +(240,276,l), +(165,189,o), +(109,73,o), +(96,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 391; +}, +{ +anchors = ( +{ +name = _center; +pos = (104,177); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,-40,l), +(103,85,o), +(126,198,o), +(202,368,c), +(202,393,l), +(5,393,l), +(5,268,l), +(31,268,l), +(31,365,l), +(170,365,l), +(105,217,o), +(72,98,o), +(72,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 201; +}, +{ +anchors = ( +{ +name = _center; +pos = (143,177); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-40,l), +(202,126,o), +(222,175,o), +(280,308,c), +(280,393,l), +(5,393,l), +(5,226,l), +(97,226,l), +(97,291,l), +(166,291,l), +(120,198,o), +(89,117,o), +(91,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 283; +}, +{ +anchors = ( +{ +name = _center; +pos = (162,174); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,-40,l), +(155,145,o), +(225,254,o), +(303,369,c), +(303,393,l), +(20,393,l), +(20,268,l), +(49,268,l), +(49,362,l), +(262,362,l), +(187,252,o), +(118,138,o), +(118,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 307; +}, +{ +anchors = ( +{ +name = _center; +pos = (175,174); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,-40,l), +(234,129,o), +(279,207,o), +(345,299,c), +(345,393,l), +(4,393,l), +(4,220,l), +(105,220,l), +(105,282,l), +(194,282,l), +(148,218,o), +(97,116,o), +(97,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 344; +}, +{ +anchors = ( +{ +name = _center; +pos = (182,173); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,-40,l), +(179,111,o), +(249,250,o), +(347,368,c), +(347,393,l), +(16,393,l), +(16,267,l), +(46,267,l), +(46,363,l), +(306,363,l), +(212,249,o), +(142,116,o), +(120,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 355; +}, +{ +anchors = ( +{ +name = _center; +pos = (191,171); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,-40,l), +(244,74,o), +(312,213,o), +(379,297,c), +(379,393,l), +(2,393,l), +(2,214,l), +(112,214,l), +(112,276,l), +(230,276,l), +(155,189,o), +(99,73,o), +(86,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 376; +}, +{ +anchors = ( +{ +name = _center; +pos = (181,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(174,-40,l), +(174,145,o), +(244,254,o), +(320,369,c), +(320,393,l), +(43,393,l), +(43,268,l), +(70,268,l), +(70,362,l), +(279,362,l), +(206,252,o), +(139,138,o), +(139,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 348; +}, +{ +anchors = ( +{ +name = _center; +pos = (188,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(248,-40,l), +(248,129,o), +(289,207,o), +(351,299,c), +(351,393,l), +(24,393,l), +(24,220,l), +(124,220,l), +(124,282,l), +(202,282,l), +(159,218,o), +(112,116,o), +(112,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 365; +}, +{ +anchors = ( +{ +name = _center; +pos = (128,177); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(50,-40,l), +(76,87,o), +(123,200,o), +(233,368,c), +(238,393,l), +(43,393,l), +(17,268,l), +(43,268,l), +(63,365,l), +(201,365,l), +(115,232,o), +(50,107,o), +(19,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 217; +}, +{ +anchors = ( +{ +name = _center; +pos = (159,177); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-40,l), +(180,131,o), +(222,197,o), +(294,308,c), +(313,393,l), +(40,393,l), +(5,226,l), +(97,226,l), +(110,291,l), +(184,291,l), +(107,191,o), +(60,83,o), +(38,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 298; +}, +{ +anchors = ( +{ +name = _center; +pos = (195,177); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,-40,l), +(156,102,o), +(227,232,o), +(340,362,c), +(347,393,l), +(68,393,l), +(42,268,l), +(71,268,l), +(91,362,l), +(304,362,l), +(207,252,o), +(126,125,o), +(72,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 347; +}, +{ +anchors = ( +{ +name = _center; +pos = (203,177); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,-40,l), +(227,117,o), +(298,207,o), +(373,301,c), +(392,393,l), +(50,393,l), +(14,220,l), +(115,220,l), +(128,282,l), +(231,282,l), +(158,204,o), +(85,81,o), +(45,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 384; +}, +{ +anchors = ( +{ +name = _center; +pos = (207,177); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(109,-40,l), +(152,91,o), +(238,231,o), +(381,368,c), +(386,393,l), +(54,393,l), +(28,267,l), +(57,267,l), +(77,362,l), +(337,362,l), +(223,254,o), +(124,121,o), +(71,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 371; +}, +{ +anchors = ( +{ +name = _center; +pos = (211,177); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,-40,l), +(228,90,o), +(288,192,o), +(401,290,c), +(423,393,l), +(37,393,l), +(-1,214,l), +(108,214,l), +(121,273,l), +(233,273,l), +(152,206,o), +(84,108,o), +(58,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 400; +} +); +unicode = 8327; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/sevensuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/sevensuperior.glyph new file mode 100644 index 00000000..d4972b75 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/sevensuperior.glyph @@ -0,0 +1,448 @@ +{ +color = 6; +glyphname = sevensuperior; +kernLeft = KO_sevensuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 299; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 219; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 370; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 391; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 201; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 283; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seveninferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seveninferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 307; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seveninferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seveninferior; +}; +width = 356; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 355; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 376; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seveninferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seveninferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 348; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seveninferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seveninferior; +}; +width = 365; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 217; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 298; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 347; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 384; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 371; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 400; +} +); +unicode = 8311; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/sheqel.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/sheqel.glyph new file mode 100644 index 00000000..e68ad771 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/sheqel.glyph @@ -0,0 +1,768 @@ +{ +glyphname = sheqel; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(593,0,ls), +(696,0,o), +(736,53,o), +(736,133,cs), +(736,729,l), +(574,729,l), +(574,151,l), +(369,151,l), +(369,540,l), +(232,540,l), +(232,0,l) +); +}, +{ +closed = 1; +nodes = ( +(197,0,l), +(197,578,l), +(402,578,l), +(402,189,l), +(539,189,l), +(539,596,ls), +(539,676,o), +(499,729,o), +(396,729,cs), +(35,729,l), +(35,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(492,0,ls), +(588,0,o), +(625,53,o), +(625,133,cs), +(625,729,l), +(476,729,l), +(476,151,l), +(314,151,l), +(314,540,l), +(214,540,l), +(214,0,l) +); +}, +{ +closed = 1; +nodes = ( +(183,0,l), +(183,578,l), +(345,578,l), +(345,189,l), +(445,189,l), +(445,596,ls), +(445,676,o), +(409,729,o), +(312,729,cs), +(34,729,l), +(34,0,l) +); +} +); +width = 657; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,0,ls), +(499,0,o), +(518,17,o), +(518,61,cs), +(518,729,l), +(486,729,l), +(486,30,l), +(246,30,l), +(246,571,l), +(214,571,l), +(214,0,l) +); +}, +{ +closed = 1; +nodes = ( +(110,0,l), +(110,699,l), +(350,699,l), +(350,158,l), +(382,158,l), +(382,668,ls), +(382,712,o), +(363,729,o), +(322,729,cs), +(78,729,l), +(78,0,l) +); +} +); +width = 595; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(674,0,ls), +(718,0,o), +(741,18,o), +(741,67,cs), +(741,729,l), +(703,729,l), +(703,37,l), +(329,37,l), +(329,571,l), +(291,571,l), +(291,0,l) +); +}, +{ +closed = 1; +nodes = ( +(123,0,l), +(123,692,l), +(497,692,l), +(497,159,l), +(536,159,l), +(536,663,ls), +(536,712,o), +(514,729,o), +(470,729,cs), +(85,729,l), +(85,0,l) +); +} +); +width = 826; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(671,0,ls), +(766,0,o), +(830,49,o), +(830,153,cs), +(830,729,l), +(629,729,l), +(629,165,l), +(424,165,l), +(424,528,l), +(293,528,l), +(293,0,l) +); +}, +{ +closed = 1; +nodes = ( +(256,0,l), +(256,565,l), +(461,565,l), +(461,202,l), +(591,202,l), +(591,602,ls), +(591,678,o), +(551,729,o), +(467,729,cs), +(55,729,l), +(55,0,l) +); +} +); +width = 881; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,0,ls), +(479,0,o), +(498,17,o), +(498,61,cs), +(498,729,l), +(466,729,l), +(466,30,l), +(226,30,l), +(226,571,l), +(194,571,l), +(194,0,l) +); +}, +{ +closed = 1; +nodes = ( +(90,0,l), +(90,699,l), +(330,699,l), +(330,158,l), +(362,158,l), +(362,668,ls), +(362,712,o), +(343,729,o), +(302,729,cs), +(58,729,l), +(58,0,l) +); +} +); +width = 555; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(593,0,ls), +(696,0,o), +(736,53,o), +(736,133,cs), +(736,729,l), +(574,729,l), +(574,151,l), +(369,151,l), +(369,540,l), +(232,540,l), +(232,0,l) +); +}, +{ +closed = 1; +nodes = ( +(197,0,l), +(197,578,l), +(402,578,l), +(402,189,l), +(539,189,l), +(539,596,ls), +(539,676,o), +(499,729,o), +(396,729,cs), +(35,729,l), +(35,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(482,0,ls), +(578,0,o), +(615,53,o), +(615,133,cs), +(615,729,l), +(466,729,l), +(466,151,l), +(304,151,l), +(304,540,l), +(204,540,l), +(204,0,l) +); +}, +{ +closed = 1; +nodes = ( +(173,0,l), +(173,578,l), +(335,578,l), +(335,189,l), +(435,189,l), +(435,596,ls), +(435,676,o), +(399,729,o), +(302,729,cs), +(24,729,l), +(24,0,l) +); +} +); +width = 637; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(596,0,ls), +(640,0,o), +(663,18,o), +(663,67,cs), +(663,729,l), +(622,729,l), +(622,37,l), +(303,37,l), +(303,571,l), +(264,571,l), +(264,0,l) +); +}, +{ +closed = 1; +nodes = ( +(126,0,l), +(126,692,l), +(445,692,l), +(445,159,l), +(486,159,l), +(486,663,ls), +(486,712,o), +(464,729,o), +(420,729,cs), +(87,729,l), +(87,0,l) +); +} +); +width = 749; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(597,0,ls), +(686,0,o), +(746,55,o), +(746,153,cs), +(746,729,l), +(585,729,l), +(585,151,l), +(376,151,l), +(376,540,l), +(247,540,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(207,0,l), +(207,579,l), +(416,579,l), +(416,190,l), +(545,190,l), +(545,576,ls), +(545,668,o), +(503,729,o), +(396,729,cs), +(46,729,l), +(46,0,l) +); +} +); +width = 787; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(664,0,ls), +(708,0,o), +(731,18,o), +(731,67,cs), +(731,729,l), +(693,729,l), +(693,37,l), +(319,37,l), +(319,571,l), +(281,571,l), +(281,0,l) +); +}, +{ +closed = 1; +nodes = ( +(113,0,l), +(113,692,l), +(487,692,l), +(487,159,l), +(526,159,l), +(526,663,ls), +(526,712,o), +(504,729,o), +(460,729,cs), +(75,729,l), +(75,0,l) +); +} +); +width = 806; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(661,0,ls), +(756,0,o), +(820,49,o), +(820,153,cs), +(820,729,l), +(619,729,l), +(619,165,l), +(414,165,l), +(414,528,l), +(283,528,l), +(283,0,l) +); +}, +{ +closed = 1; +nodes = ( +(246,0,l), +(246,565,l), +(451,565,l), +(451,202,l), +(581,202,l), +(581,602,ls), +(581,678,o), +(541,729,o), +(457,729,cs), +(45,729,l), +(45,0,l) +); +} +); +width = 861; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(611,0,ls), +(653,0,o), +(676,18,o), +(676,67,cs), +(676,729,l), +(637,729,l), +(637,37,l), +(324,37,l), +(324,571,l), +(285,571,l), +(285,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,0,l), +(150,692,l), +(462,692,l), +(462,159,l), +(503,159,l), +(503,663,ls), +(503,712,o), +(481,729,o), +(439,729,cs), +(112,729,l), +(112,0,l) +); +} +); +width = 786; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(605,0,ls), +(692,0,o), +(751,55,o), +(751,153,cs), +(751,729,l), +(592,729,l), +(592,151,l), +(392,151,l), +(392,540,l), +(264,540,l), +(264,0,l) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(228,579,l), +(428,579,l), +(428,190,l), +(555,190,l), +(555,576,ls), +(555,668,o), +(514,729,o), +(409,729,cs), +(68,729,l), +(68,0,l) +); +} +); +width = 814; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,0,ls), +(446,0,o), +(468,17,o), +(477,61,cs), +(615,729,l), +(583,729,l), +(439,30,l), +(199,30,l), +(311,571,l), +(279,571,l), +(161,0,l) +); +}, +{ +closed = 1; +nodes = ( +(57,0,l), +(201,699,l), +(441,699,l), +(329,158,l), +(361,158,l), +(467,668,ls), +(476,712,o), +(460,729,o), +(419,729,cs), +(175,729,l), +(25,0,l) +); +} +); +width = 595; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,0,ls), +(640,0,o), +(690,53,o), +(707,133,cs), +(830,729,l), +(668,729,l), +(549,151,l), +(344,151,l), +(424,540,l), +(287,540,l), +(176,0,l) +); +}, +{ +closed = 1; +nodes = ( +(141,0,l), +(260,578,l), +(465,578,l), +(385,189,l), +(522,189,l), +(606,596,ls), +(623,676,o), +(593,729,o), +(490,729,cs), +(129,729,l), +(-21,0,l) +); +} +); +width = 767; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(566,0,ls), +(610,0,o), +(636,18,o), +(646,67,cs), +(783,729,l), +(742,729,l), +(599,37,l), +(280,37,l), +(391,571,l), +(352,571,l), +(234,0,l) +); +}, +{ +closed = 1; +nodes = ( +(96,0,l), +(239,692,l), +(558,692,l), +(447,159,l), +(488,159,l), +(593,663,ls), +(603,712,o), +(584,729,o), +(540,729,cs), +(207,729,l), +(57,0,l) +); +} +); +width = 796; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,0,ls), +(654,0,o), +(725,55,o), +(745,153,cs), +(864,729,l), +(703,729,l), +(584,151,l), +(375,151,l), +(455,540,l), +(326,540,l), +(215,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(294,579,l), +(503,579,l), +(423,190,l), +(552,190,l), +(632,576,ls), +(651,668,o), +(621,729,o), +(514,729,cs), +(164,729,l), +(14,0,l) +); +} +); +width = 835; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(621,0,ls), +(665,0,o), +(691,18,o), +(701,67,cs), +(838,729,l), +(800,729,l), +(657,37,l), +(283,37,l), +(394,571,l), +(356,571,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(70,0,l), +(213,692,l), +(587,692,l), +(476,159,l), +(515,159,l), +(620,663,ls), +(630,712,o), +(611,729,o), +(567,729,cs), +(182,729,l), +(32,0,l) +); +} +); +width = 826; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(616,0,ls), +(711,0,o), +(785,49,o), +(806,153,cs), +(925,729,l), +(724,729,l), +(608,165,l), +(403,165,l), +(478,528,l), +(347,528,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(201,0,l), +(318,565,l), +(523,565,l), +(447,202,l), +(577,202,l), +(660,602,ls), +(676,678,o), +(646,729,o), +(562,729,cs), +(150,729,l), +(0,0,l) +); +} +); +width = 882; +} +); +unicode = 8362; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/six.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/six.blackC_ircled.glyph new file mode 100644 index 00000000..d1a0003e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/six.blackC_ircled.glyph @@ -0,0 +1,3050 @@ +{ +color = 0; +glyphname = six.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,236,o), +(382,258,o), +(382,293,cs), +(382,342,o), +(373,354,o), +(359,354,cs), +(339,354,o), +(334,334,o), +(334,297,cs), +(334,248,o), +(343,236,o), +(357,236,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,145,o), +(214,232,o), +(214,362,cs), +(214,541,o), +(272,588,o), +(357,588,cs), +(429,588,o), +(483,551,o), +(486,465,c), +(381,465,l), +(381,485,o), +(370,496,o), +(357,496,cs), +(334,496,o), +(327,467,o), +(328,408,c), +(334,408,l), +(341,426,o), +(365,440,o), +(394,440,cs), +(464,440,o), +(492,388,o), +(492,295,cs), +(492,193,o), +(443,145,o), +(357,145,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,144,o), +(214,231,o), +(214,361,cs), +(214,540,o), +(272,587,o), +(357,587,cs), +(429,587,o), +(483,550,o), +(486,464,c), +(381,464,l), +(381,484,o), +(370,495,o), +(357,495,cs), +(334,495,o), +(327,466,o), +(328,407,c), +(334,407,l), +(341,425,o), +(365,439,o), +(394,439,cs), +(464,439,o), +(492,387,o), +(492,294,cs), +(492,192,o), +(443,144,o), +(357,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,235,o), +(382,257,o), +(382,292,cs), +(382,341,o), +(373,353,o), +(359,353,cs), +(339,353,o), +(334,333,o), +(334,296,cs), +(334,247,o), +(343,235,o), +(357,235,cs) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(403,169,o), +(415,217,o), +(415,288,cs), +(415,381,o), +(390,404,o), +(353,404,cs), +(309,404,o), +(289,355,o), +(289,284,cs), +(289,201,o), +(315,169,o), +(353,169,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,143,o), +(255,215,o), +(253,339,cs), +(250,534,o), +(288,587,o), +(351,587,cs), +(404,587,o), +(430,550,o), +(436,478,c), +(408,478,l), +(402,542,o), +(383,561,o), +(351,561,cs), +(295,561,o), +(283,493,o), +(281,352,c), +(284,352,l), +(294,407,o), +(325,428,o), +(358,428,cs), +(423,428,o), +(445,373,o), +(445,288,cs), +(445,180,o), +(409,143,o), +(353,143,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,142,o), +(255,214,o), +(253,338,cs), +(250,533,o), +(288,586,o), +(351,586,cs), +(404,586,o), +(430,549,o), +(436,477,c), +(408,477,l), +(402,541,o), +(383,560,o), +(351,560,cs), +(295,560,o), +(283,492,o), +(281,351,c), +(284,351,l), +(294,406,o), +(325,427,o), +(358,427,cs), +(423,427,o), +(445,372,o), +(445,287,cs), +(445,179,o), +(409,142,o), +(353,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(403,168,o), +(415,216,o), +(415,287,cs), +(415,380,o), +(390,403,o), +(353,403,cs), +(309,403,o), +(289,354,o), +(289,283,cs), +(289,200,o), +(315,168,o), +(353,168,cs) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(540,173,o), +(586,218,o), +(586,286,cs), +(586,360,o), +(531,396,o), +(449,396,cs), +(360,396,o), +(305,346,o), +(305,282,cs), +(305,209,o), +(363,173,o), +(447,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,142,o), +(259,216,o), +(259,336,cs), +(259,510,o), +(324,584,o), +(454,584,cs), +(547,584,o), +(610,540,o), +(617,476,c), +(580,476,l), +(572,526,o), +(522,554,o), +(453,554,cs), +(321,554,o), +(296,462,o), +(295,332,c), +(298,331,l), +(316,388,o), +(377,425,o), +(455,425,cs), +(559,425,o), +(625,375,o), +(625,287,cs), +(625,196,o), +(553,142,o), +(446,142,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,145,o), +(259,219,o), +(259,339,cs), +(259,513,o), +(324,587,o), +(454,587,cs), +(547,587,o), +(610,543,o), +(617,479,c), +(580,479,l), +(572,529,o), +(522,557,o), +(453,557,cs), +(321,557,o), +(296,465,o), +(295,335,c), +(298,334,l), +(316,391,o), +(377,428,o), +(455,428,cs), +(559,428,o), +(625,378,o), +(625,290,cs), +(625,199,o), +(553,145,o), +(446,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(540,176,o), +(586,221,o), +(586,289,cs), +(586,363,o), +(531,399,o), +(449,399,cs), +(360,399,o), +(305,349,o), +(305,285,cs), +(305,212,o), +(363,176,o), +(447,176,cs) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(478,254,o), +(497,270,o), +(497,294,cs), +(497,321,o), +(477,335,o), +(439,335,cs), +(399,335,o), +(382,319,o), +(382,294,cs), +(382,267,o), +(405,254,o), +(439,254,cs) +); +}, +{ +closed = 1; +nodes = ( +(326,143,o), +(218,185,o), +(218,362,cs), +(218,528,o), +(323,586,o), +(445,586,cs), +(554,586,o), +(626,534,o), +(640,456,c), +(494,456,l), +(483,470,o), +(468,474,o), +(440,474,cs), +(398,474,o), +(369,450,o), +(367,396,c), +(374,395,l), +(394,419,o), +(435,435,o), +(485,435,cs), +(581,435,o), +(646,386,o), +(646,300,cs), +(646,199,o), +(562,143,o), +(436,143,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(324,148,o), +(216,190,o), +(216,367,cs), +(216,533,o), +(321,591,o), +(443,591,cs), +(552,591,o), +(624,539,o), +(638,461,c), +(492,461,l), +(481,475,o), +(466,479,o), +(438,479,cs), +(396,479,o), +(367,455,o), +(365,401,c), +(372,400,l), +(392,424,o), +(433,440,o), +(483,440,cs), +(579,440,o), +(644,391,o), +(644,305,cs), +(644,204,o), +(560,148,o), +(434,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(476,259,o), +(495,275,o), +(495,299,cs), +(495,326,o), +(475,340,o), +(437,340,cs), +(397,340,o), +(380,324,o), +(380,299,cs), +(380,272,o), +(403,259,o), +(437,259,cs) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(403,169,o), +(415,217,o), +(415,288,cs), +(415,381,o), +(390,404,o), +(353,404,cs), +(309,404,o), +(289,355,o), +(289,284,cs), +(289,201,o), +(315,169,o), +(353,169,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,143,o), +(255,215,o), +(253,339,cs), +(250,534,o), +(288,587,o), +(351,587,cs), +(404,587,o), +(430,550,o), +(436,478,c), +(408,478,l), +(402,542,o), +(383,561,o), +(351,561,cs), +(295,561,o), +(283,493,o), +(281,352,c), +(284,352,l), +(294,407,o), +(325,428,o), +(358,428,cs), +(423,428,o), +(445,373,o), +(445,288,cs), +(445,180,o), +(409,143,o), +(353,143,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,142,o), +(235,214,o), +(233,338,cs), +(230,533,o), +(268,586,o), +(331,586,cs), +(384,586,o), +(410,549,o), +(416,477,c), +(388,477,l), +(382,541,o), +(363,560,o), +(331,560,cs), +(275,560,o), +(263,492,o), +(261,351,c), +(264,351,l), +(274,406,o), +(305,427,o), +(338,427,cs), +(403,427,o), +(425,372,o), +(425,287,cs), +(425,179,o), +(389,142,o), +(333,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,168,o), +(395,216,o), +(395,287,cs), +(395,380,o), +(370,403,o), +(333,403,cs), +(289,403,o), +(269,354,o), +(269,283,cs), +(269,200,o), +(295,168,o), +(333,168,cs) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,236,o), +(382,258,o), +(382,293,cs), +(382,342,o), +(373,354,o), +(359,354,cs), +(339,354,o), +(334,334,o), +(334,297,cs), +(334,248,o), +(343,236,o), +(357,236,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,145,o), +(214,232,o), +(214,362,cs), +(214,541,o), +(272,588,o), +(357,588,cs), +(429,588,o), +(483,551,o), +(486,465,c), +(381,465,l), +(381,485,o), +(370,496,o), +(357,496,cs), +(334,496,o), +(327,467,o), +(328,408,c), +(334,408,l), +(341,426,o), +(365,440,o), +(394,440,cs), +(464,440,o), +(492,388,o), +(492,295,cs), +(492,193,o), +(443,145,o), +(357,145,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,144,o), +(204,231,o), +(204,361,cs), +(204,540,o), +(262,587,o), +(347,587,cs), +(419,587,o), +(473,550,o), +(476,464,c), +(371,464,l), +(371,484,o), +(360,495,o), +(347,495,cs), +(324,495,o), +(317,466,o), +(318,407,c), +(324,407,l), +(331,425,o), +(355,439,o), +(384,439,cs), +(454,439,o), +(482,387,o), +(482,294,cs), +(482,192,o), +(433,144,o), +(347,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,235,o), +(372,257,o), +(372,292,cs), +(372,341,o), +(363,353,o), +(349,353,cs), +(329,353,o), +(324,333,o), +(324,296,cs), +(324,247,o), +(333,235,o), +(347,235,cs) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(504,173,o), +(547,217,o), +(547,283,cs), +(547,349,o), +(503,390,o), +(441,390,cs), +(372,390,o), +(330,341,o), +(330,279,cs), +(330,213,o), +(375,173,o), +(440,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(336,142,o), +(289,214,o), +(289,335,cs), +(289,511,o), +(340,585,o), +(446,585,cs), +(520,585,o), +(573,542,o), +(579,478,c), +(545,478,l), +(536,533,o), +(494,555,o), +(445,555,cs), +(343,555,o), +(324,467,o), +(322,337,c), +(324,337,l), +(338,386,o), +(383,419,o), +(447,419,cs), +(528,419,o), +(583,364,o), +(583,283,cs), +(583,197,o), +(523,142,o), +(438,142,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,144,o), +(269,216,o), +(269,337,cs), +(269,513,o), +(320,587,o), +(426,587,cs), +(500,587,o), +(553,544,o), +(559,480,c), +(525,480,l), +(516,535,o), +(474,557,o), +(425,557,cs), +(323,557,o), +(304,469,o), +(302,339,c), +(304,339,l), +(318,388,o), +(363,421,o), +(427,421,cs), +(508,421,o), +(563,366,o), +(563,285,cs), +(563,199,o), +(503,144,o), +(418,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(484,175,o), +(527,219,o), +(527,285,cs), +(527,351,o), +(483,392,o), +(421,392,cs), +(352,392,o), +(310,343,o), +(310,281,cs), +(310,215,o), +(355,175,o), +(420,175,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +139, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +435, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +624, +31 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +351, +39 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +632, +39 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +135, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +430, +34 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +616, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +294, +41 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +583, +44 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-7, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-7, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(456,253,o), +(474,270,o), +(474,295,cs), +(474,320,o), +(456,338,o), +(429,338,cs), +(403,338,o), +(385,322,o), +(385,296,cs), +(385,271,o), +(402,253,o), +(429,253,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,143,o), +(246,205,o), +(246,362,cs), +(246,506,o), +(315,587,o), +(435,587,cs), +(533,587,o), +(595,536,o), +(606,457,c), +(478,457,l), +(473,471,o), +(452,479,o), +(433,479,cs), +(399,479,o), +(371,454,o), +(371,401,c), +(376,401,l), +(392,418,o), +(423,432,o), +(465,432,cs), +(547,432,o), +(601,377,o), +(601,297,cs), +(601,205,o), +(532,143,o), +(425,143,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,146,o), +(227,208,o), +(227,365,cs), +(227,509,o), +(296,590,o), +(416,590,cs), +(514,590,o), +(576,539,o), +(587,460,c), +(459,460,l), +(454,474,o), +(433,482,o), +(414,482,cs), +(380,482,o), +(352,457,o), +(352,404,c), +(357,404,l), +(373,421,o), +(404,435,o), +(446,435,cs), +(528,435,o), +(582,380,o), +(582,300,cs), +(582,208,o), +(513,146,o), +(406,146,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,256,o), +(455,273,o), +(455,298,cs), +(455,323,o), +(437,341,o), +(410,341,cs), +(384,341,o), +(366,325,o), +(366,299,cs), +(366,274,o), +(383,256,o), +(410,256,cs) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(540,173,o), +(586,218,o), +(586,286,cs), +(586,360,o), +(531,396,o), +(449,396,cs), +(360,396,o), +(305,346,o), +(305,282,cs), +(305,209,o), +(363,173,o), +(447,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,142,o), +(259,216,o), +(259,336,cs), +(259,510,o), +(324,584,o), +(454,584,cs), +(547,584,o), +(610,540,o), +(617,476,c), +(580,476,l), +(572,526,o), +(522,554,o), +(453,554,cs), +(321,554,o), +(296,462,o), +(295,332,c), +(298,331,l), +(316,388,o), +(377,425,o), +(455,425,cs), +(559,425,o), +(625,375,o), +(625,287,cs), +(625,196,o), +(553,142,o), +(446,142,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,145,o), +(249,219,o), +(249,339,cs), +(249,513,o), +(314,587,o), +(444,587,cs), +(537,587,o), +(600,543,o), +(607,479,c), +(570,479,l), +(562,529,o), +(512,557,o), +(443,557,cs), +(311,557,o), +(286,465,o), +(285,335,c), +(288,334,l), +(306,391,o), +(367,428,o), +(445,428,cs), +(549,428,o), +(615,378,o), +(615,290,cs), +(615,199,o), +(543,145,o), +(436,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(530,176,o), +(576,221,o), +(576,289,cs), +(576,363,o), +(521,399,o), +(439,399,cs), +(350,399,o), +(295,349,o), +(295,285,cs), +(295,212,o), +(353,176,o), +(437,176,cs) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(478,254,o), +(497,270,o), +(497,294,cs), +(497,321,o), +(477,335,o), +(439,335,cs), +(399,335,o), +(382,319,o), +(382,294,cs), +(382,267,o), +(405,254,o), +(439,254,cs) +); +}, +{ +closed = 1; +nodes = ( +(326,143,o), +(218,185,o), +(218,362,cs), +(218,528,o), +(323,586,o), +(445,586,cs), +(554,586,o), +(626,534,o), +(640,456,c), +(494,456,l), +(483,470,o), +(468,474,o), +(440,474,cs), +(398,474,o), +(369,450,o), +(367,396,c), +(374,395,l), +(394,419,o), +(435,435,o), +(485,435,cs), +(581,435,o), +(646,386,o), +(646,300,cs), +(646,199,o), +(562,143,o), +(436,143,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(314,148,o), +(206,190,o), +(206,367,cs), +(206,533,o), +(311,591,o), +(433,591,cs), +(542,591,o), +(614,539,o), +(628,461,c), +(482,461,l), +(471,475,o), +(456,479,o), +(428,479,cs), +(386,479,o), +(357,455,o), +(355,401,c), +(362,400,l), +(382,424,o), +(423,440,o), +(473,440,cs), +(569,440,o), +(634,391,o), +(634,305,cs), +(634,204,o), +(550,148,o), +(424,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(466,259,o), +(485,275,o), +(485,299,cs), +(485,326,o), +(465,340,o), +(427,340,cs), +(387,340,o), +(370,324,o), +(370,299,cs), +(370,272,o), +(393,259,o), +(427,259,cs) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(504,173,o), +(547,217,o), +(547,283,cs), +(547,349,o), +(503,390,o), +(441,390,cs), +(372,390,o), +(330,341,o), +(330,279,cs), +(330,213,o), +(375,173,o), +(440,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(336,142,o), +(289,214,o), +(289,335,cs), +(289,511,o), +(340,585,o), +(446,585,cs), +(520,585,o), +(573,542,o), +(579,478,c), +(545,478,l), +(536,533,o), +(494,555,o), +(445,555,cs), +(343,555,o), +(324,467,o), +(322,337,c), +(324,337,l), +(338,386,o), +(383,419,o), +(447,419,cs), +(528,419,o), +(583,364,o), +(583,283,cs), +(583,197,o), +(523,142,o), +(438,142,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(333,144,o), +(286,216,o), +(286,337,cs), +(286,513,o), +(337,587,o), +(441,587,cs), +(513,587,o), +(564,544,o), +(570,480,c), +(538,480,l), +(529,535,o), +(487,557,o), +(440,557,cs), +(340,557,o), +(321,469,o), +(319,339,c), +(321,339,l), +(335,388,o), +(378,421,o), +(442,421,cs), +(521,421,o), +(574,366,o), +(574,285,cs), +(574,199,o), +(516,144,o), +(433,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(497,175,o), +(540,219,o), +(540,285,cs), +(540,351,o), +(496,392,o), +(436,392,cs), +(367,392,o), +(327,343,o), +(327,281,cs), +(327,215,o), +(370,175,o), +(435,175,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +139, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +435, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +624, +31 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +351, +39 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +632, +39 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +135, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +430, +34 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +616, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +294, +41 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +583, +44 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-7, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-7, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(456,253,o), +(474,270,o), +(474,295,cs), +(474,320,o), +(456,338,o), +(429,338,cs), +(403,338,o), +(385,322,o), +(385,296,cs), +(385,271,o), +(402,253,o), +(429,253,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,143,o), +(246,205,o), +(246,362,cs), +(246,506,o), +(315,587,o), +(435,587,cs), +(533,587,o), +(595,536,o), +(606,457,c), +(478,457,l), +(473,471,o), +(452,479,o), +(433,479,cs), +(399,479,o), +(371,454,o), +(371,401,c), +(376,401,l), +(392,418,o), +(423,432,o), +(465,432,cs), +(547,432,o), +(601,377,o), +(601,297,cs), +(601,205,o), +(532,143,o), +(425,143,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(314,146,o), +(242,208,o), +(242,365,cs), +(242,508,o), +(309,590,o), +(427,590,cs), +(523,590,o), +(583,539,o), +(594,460,c), +(467,460,l), +(462,474,o), +(443,482,o), +(425,482,cs), +(393,482,o), +(365,457,o), +(365,404,c), +(370,404,l), +(386,421,o), +(416,435,o), +(456,435,cs), +(537,435,o), +(589,380,o), +(589,300,cs), +(589,208,o), +(522,146,o), +(417,146,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,256,o), +(463,273,o), +(463,298,cs), +(463,323,o), +(446,341,o), +(421,341,cs), +(396,341,o), +(379,325,o), +(379,299,cs), +(379,274,o), +(395,256,o), +(421,256,cs) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(440,169,o), +(452,217,o), +(452,288,cs), +(452,381,o), +(427,404,o), +(390,404,cs), +(346,404,o), +(326,355,o), +(326,284,cs), +(326,201,o), +(352,169,o), +(390,169,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,143,o), +(292,215,o), +(290,339,cs), +(287,534,o), +(325,587,o), +(388,587,cs), +(441,587,o), +(467,550,o), +(473,478,c), +(445,478,l), +(439,542,o), +(420,561,o), +(388,561,cs), +(332,561,o), +(320,493,o), +(318,352,c), +(321,352,l), +(331,407,o), +(362,428,o), +(395,428,cs), +(460,428,o), +(482,373,o), +(482,288,cs), +(482,180,o), +(446,143,o), +(390,143,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,142,o), +(292,214,o), +(290,338,cs), +(287,533,o), +(325,586,o), +(388,586,cs), +(441,586,o), +(467,549,o), +(473,477,c), +(445,477,l), +(439,541,o), +(420,560,o), +(388,560,cs), +(332,560,o), +(320,492,o), +(318,351,c), +(321,351,l), +(331,406,o), +(362,427,o), +(395,427,cs), +(460,427,o), +(482,372,o), +(482,287,cs), +(482,179,o), +(446,142,o), +(390,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(440,168,o), +(452,216,o), +(452,287,cs), +(452,380,o), +(427,403,o), +(390,403,cs), +(346,403,o), +(326,354,o), +(326,283,cs), +(326,200,o), +(352,168,o), +(390,168,cs) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,236,o), +(414,258,o), +(414,293,cs), +(414,342,o), +(405,354,o), +(391,354,cs), +(371,354,o), +(366,334,o), +(366,297,cs), +(366,248,o), +(375,236,o), +(389,236,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,145,o), +(246,232,o), +(246,362,cs), +(246,541,o), +(304,588,o), +(389,588,cs), +(461,588,o), +(515,551,o), +(518,465,c), +(413,465,l), +(413,485,o), +(402,496,o), +(389,496,cs), +(366,496,o), +(359,467,o), +(360,408,c), +(366,408,l), +(373,426,o), +(397,440,o), +(426,440,cs), +(496,440,o), +(524,388,o), +(524,295,cs), +(524,193,o), +(475,145,o), +(389,145,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,144,o), +(246,231,o), +(246,361,cs), +(246,540,o), +(304,587,o), +(389,587,cs), +(461,587,o), +(515,550,o), +(518,464,c), +(413,464,l), +(413,484,o), +(402,495,o), +(389,495,cs), +(366,495,o), +(359,466,o), +(360,407,c), +(366,407,l), +(373,425,o), +(397,439,o), +(426,439,cs), +(496,439,o), +(524,387,o), +(524,294,cs), +(524,192,o), +(475,144,o), +(389,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,235,o), +(414,257,o), +(414,292,cs), +(414,341,o), +(405,353,o), +(391,353,cs), +(371,353,o), +(366,333,o), +(366,296,cs), +(366,247,o), +(375,235,o), +(389,235,cs) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,173,o), +(579,217,o), +(579,283,cs), +(579,349,o), +(535,390,o), +(473,390,cs), +(404,390,o), +(362,341,o), +(362,279,cs), +(362,213,o), +(407,173,o), +(472,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,142,o), +(321,214,o), +(321,335,cs), +(321,511,o), +(372,585,o), +(478,585,cs), +(552,585,o), +(605,542,o), +(611,478,c), +(577,478,l), +(568,533,o), +(526,555,o), +(477,555,cs), +(375,555,o), +(356,467,o), +(354,337,c), +(356,337,l), +(370,386,o), +(415,419,o), +(479,419,cs), +(560,419,o), +(615,364,o), +(615,283,cs), +(615,197,o), +(555,142,o), +(470,142,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,144,o), +(321,216,o), +(321,337,cs), +(321,513,o), +(372,587,o), +(478,587,cs), +(552,587,o), +(605,544,o), +(611,480,c), +(577,480,l), +(568,535,o), +(526,557,o), +(477,557,cs), +(375,557,o), +(356,469,o), +(354,339,c), +(356,339,l), +(370,388,o), +(415,421,o), +(479,421,cs), +(560,421,o), +(615,366,o), +(615,285,cs), +(615,199,o), +(555,144,o), +(470,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,175,o), +(579,219,o), +(579,285,cs), +(579,351,o), +(535,392,o), +(473,392,cs), +(404,392,o), +(362,343,o), +(362,281,cs), +(362,215,o), +(407,175,o), +(472,175,cs) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(484,253,o), +(502,270,o), +(502,295,cs), +(502,320,o), +(484,338,o), +(457,338,cs), +(431,338,o), +(413,322,o), +(413,296,cs), +(413,271,o), +(430,253,o), +(457,253,cs) +); +}, +{ +closed = 1; +nodes = ( +(347,143,o), +(274,205,o), +(274,362,cs), +(274,506,o), +(343,587,o), +(463,587,cs), +(561,587,o), +(623,536,o), +(634,457,c), +(506,457,l), +(501,471,o), +(480,479,o), +(461,479,cs), +(427,479,o), +(399,454,o), +(399,401,c), +(404,401,l), +(420,418,o), +(451,432,o), +(493,432,cs), +(575,432,o), +(629,377,o), +(629,297,cs), +(629,205,o), +(560,143,o), +(453,143,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(349,146,o), +(276,208,o), +(276,365,cs), +(276,509,o), +(345,590,o), +(465,590,cs), +(563,590,o), +(625,539,o), +(636,460,c), +(508,460,l), +(503,474,o), +(482,482,o), +(463,482,cs), +(429,482,o), +(401,457,o), +(401,404,c), +(406,404,l), +(422,421,o), +(453,435,o), +(495,435,cs), +(577,435,o), +(631,380,o), +(631,300,cs), +(631,208,o), +(562,146,o), +(455,146,cs) +); +}, +{ +closed = 1; +nodes = ( +(486,256,o), +(504,273,o), +(504,298,cs), +(504,323,o), +(486,341,o), +(459,341,cs), +(433,341,o), +(415,325,o), +(415,299,cs), +(415,274,o), +(432,256,o), +(459,256,cs) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,173,o), +(617,218,o), +(617,286,cs), +(617,360,o), +(562,396,o), +(480,396,cs), +(391,396,o), +(336,346,o), +(336,282,cs), +(336,209,o), +(394,173,o), +(478,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,142,o), +(290,216,o), +(290,336,cs), +(290,510,o), +(355,584,o), +(485,584,cs), +(578,584,o), +(641,540,o), +(648,476,c), +(611,476,l), +(603,526,o), +(553,554,o), +(484,554,cs), +(352,554,o), +(327,462,o), +(326,332,c), +(329,331,l), +(347,388,o), +(408,425,o), +(486,425,cs), +(590,425,o), +(656,375,o), +(656,287,cs), +(656,196,o), +(584,142,o), +(477,142,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,145,o), +(290,219,o), +(290,339,cs), +(290,513,o), +(355,587,o), +(485,587,cs), +(578,587,o), +(641,543,o), +(648,479,c), +(611,479,l), +(603,529,o), +(553,557,o), +(484,557,cs), +(352,557,o), +(327,465,o), +(326,335,c), +(329,334,l), +(347,391,o), +(408,428,o), +(486,428,cs), +(590,428,o), +(656,378,o), +(656,290,cs), +(656,199,o), +(584,145,o), +(477,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,176,o), +(617,221,o), +(617,289,cs), +(617,363,o), +(562,399,o), +(480,399,cs), +(391,399,o), +(336,349,o), +(336,285,cs), +(336,212,o), +(394,176,o), +(478,176,cs) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(507,254,o), +(526,270,o), +(526,294,cs), +(526,321,o), +(506,335,o), +(468,335,cs), +(428,335,o), +(411,319,o), +(411,294,cs), +(411,267,o), +(434,254,o), +(468,254,cs) +); +}, +{ +closed = 1; +nodes = ( +(355,143,o), +(247,185,o), +(247,362,cs), +(247,528,o), +(352,586,o), +(474,586,cs), +(583,586,o), +(655,534,o), +(669,456,c), +(523,456,l), +(512,470,o), +(497,474,o), +(469,474,cs), +(427,474,o), +(398,450,o), +(396,396,c), +(403,395,l), +(423,419,o), +(464,435,o), +(514,435,cs), +(610,435,o), +(675,386,o), +(675,300,cs), +(675,199,o), +(591,143,o), +(465,143,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(353,148,o), +(245,190,o), +(245,367,cs), +(245,533,o), +(350,591,o), +(472,591,cs), +(581,591,o), +(653,539,o), +(667,461,c), +(521,461,l), +(510,475,o), +(495,479,o), +(467,479,cs), +(425,479,o), +(396,455,o), +(394,401,c), +(401,400,l), +(421,424,o), +(462,440,o), +(512,440,cs), +(608,440,o), +(673,391,o), +(673,305,cs), +(673,204,o), +(589,148,o), +(463,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(505,259,o), +(524,275,o), +(524,299,cs), +(524,326,o), +(504,340,o), +(466,340,cs), +(426,340,o), +(409,324,o), +(409,299,cs), +(409,272,o), +(432,259,o), +(466,259,cs) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 10107; +userData = { +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/six.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/six.circled.glyph new file mode 100644 index 00000000..b8652f8b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/six.circled.glyph @@ -0,0 +1,1881 @@ +{ +color = 0; +glyphname = six.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,143,o), +(445,180,o), +(445,288,cs), +(445,373,o), +(423,428,o), +(358,428,cs), +(325,428,o), +(294,407,o), +(284,352,c), +(281,352,l), +(283,493,o), +(295,561,o), +(351,561,cs), +(383,561,o), +(402,542,o), +(408,478,c), +(436,478,l), +(430,550,o), +(404,587,o), +(351,587,cs), +(288,587,o), +(250,534,o), +(253,339,cs), +(255,215,o), +(276,143,o), +(353,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,169,o), +(289,201,o), +(289,284,cs), +(289,355,o), +(309,404,o), +(353,404,cs), +(390,404,o), +(415,381,o), +(415,288,cs), +(415,217,o), +(403,169,o), +(353,169,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (206,188); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(443,145,o), +(492,193,o), +(492,295,cs), +(492,388,o), +(464,440,o), +(394,440,cs), +(365,440,o), +(341,426,o), +(334,408,c), +(328,408,l), +(327,467,o), +(334,496,o), +(357,496,cs), +(370,496,o), +(381,485,o), +(381,465,c), +(486,465,l), +(483,551,o), +(429,588,o), +(357,588,cs), +(272,588,o), +(214,541,o), +(214,362,cs), +(214,232,o), +(242,145,o), +(357,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(343,236,o), +(334,248,o), +(334,297,cs), +(334,334,o), +(339,354,o), +(359,354,cs), +(373,354,o), +(382,342,o), +(382,293,cs), +(382,258,o), +(377,236,o), +(357,236,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (199,189); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(553,142,o), +(625,196,o), +(625,287,cs), +(625,375,o), +(559,425,o), +(455,425,cs), +(377,425,o), +(316,388,o), +(298,331,c), +(295,332,l), +(296,462,o), +(321,554,o), +(453,554,cs), +(522,554,o), +(572,526,o), +(580,476,c), +(617,476,l), +(610,540,o), +(547,584,o), +(454,584,cs), +(324,584,o), +(259,510,o), +(259,336,cs), +(259,216,o), +(311,142,o), +(446,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,173,o), +(305,209,o), +(305,282,cs), +(305,346,o), +(360,396,o), +(449,396,cs), +(531,396,o), +(586,360,o), +(586,286,cs), +(586,218,o), +(540,173,o), +(447,173,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (216,190); +ref = sixinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,143,o), +(646,199,o), +(646,300,cs), +(646,386,o), +(581,435,o), +(485,435,cs), +(435,435,o), +(394,419,o), +(374,395,c), +(367,396,l), +(369,450,o), +(398,474,o), +(440,474,cs), +(468,474,o), +(483,470,o), +(494,456,c), +(640,456,l), +(626,534,o), +(554,586,o), +(445,586,cs), +(323,586,o), +(218,528,o), +(218,362,cs), +(218,185,o), +(326,143,o), +(436,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(405,254,o), +(382,267,o), +(382,294,cs), +(382,319,o), +(399,335,o), +(439,335,cs), +(477,335,o), +(497,321,o), +(497,294,cs), +(497,270,o), +(478,254,o), +(439,254,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (199,193); +ref = sixinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,143,o), +(445,180,o), +(445,288,cs), +(445,373,o), +(423,428,o), +(358,428,cs), +(325,428,o), +(294,407,o), +(284,352,c), +(281,352,l), +(283,493,o), +(295,561,o), +(351,561,cs), +(383,561,o), +(402,542,o), +(408,478,c), +(436,478,l), +(430,550,o), +(404,587,o), +(351,587,cs), +(288,587,o), +(250,534,o), +(253,339,cs), +(255,215,o), +(276,143,o), +(353,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,169,o), +(289,201,o), +(289,284,cs), +(289,355,o), +(309,404,o), +(353,404,cs), +(390,404,o), +(415,381,o), +(415,288,cs), +(415,217,o), +(403,169,o), +(353,169,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (206,188); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(443,145,o), +(492,193,o), +(492,295,cs), +(492,388,o), +(464,440,o), +(394,440,cs), +(365,440,o), +(341,426,o), +(334,408,c), +(328,408,l), +(327,467,o), +(334,496,o), +(357,496,cs), +(370,496,o), +(381,485,o), +(381,465,c), +(486,465,l), +(483,551,o), +(429,588,o), +(357,588,cs), +(272,588,o), +(214,541,o), +(214,362,cs), +(214,232,o), +(242,145,o), +(357,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(343,236,o), +(334,248,o), +(334,297,cs), +(334,334,o), +(339,354,o), +(359,354,cs), +(373,354,o), +(382,342,o), +(382,293,cs), +(382,258,o), +(377,236,o), +(357,236,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (198,189); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,142,o), +(583,197,o), +(583,283,cs), +(583,364,o), +(528,419,o), +(447,419,cs), +(383,419,o), +(338,386,o), +(324,337,c), +(322,337,l), +(324,467,o), +(343,555,o), +(445,555,cs), +(494,555,o), +(536,533,o), +(545,478,c), +(579,478,l), +(573,542,o), +(520,585,o), +(446,585,cs), +(340,585,o), +(289,511,o), +(289,335,cs), +(289,214,o), +(336,142,o), +(438,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(375,173,o), +(330,213,o), +(330,279,cs), +(330,341,o), +(372,390,o), +(441,390,cs), +(503,390,o), +(547,349,o), +(547,283,cs), +(547,217,o), +(504,173,o), +(440,173,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (224,189); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 871; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(532,143,o), +(601,205,o), +(601,297,cs), +(601,377,o), +(547,432,o), +(465,432,cs), +(423,432,o), +(392,418,o), +(376,401,c), +(371,401,l), +(371,454,o), +(399,479,o), +(433,479,cs), +(452,479,o), +(473,471,o), +(478,457,c), +(606,457,l), +(595,536,o), +(533,587,o), +(435,587,cs), +(315,587,o), +(246,506,o), +(246,362,cs), +(246,205,o), +(319,143,o), +(425,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(402,253,o), +(385,271,o), +(385,296,cs), +(385,322,o), +(403,338,o), +(429,338,cs), +(456,338,o), +(474,320,o), +(474,295,cs), +(474,270,o), +(456,253,o), +(429,253,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (217,191); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 835; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(553,142,o), +(625,196,o), +(625,287,cs), +(625,375,o), +(559,425,o), +(455,425,cs), +(377,425,o), +(316,388,o), +(298,331,c), +(295,332,l), +(296,462,o), +(321,554,o), +(453,554,cs), +(522,554,o), +(572,526,o), +(580,476,c), +(617,476,l), +(610,540,o), +(547,584,o), +(454,584,cs), +(324,584,o), +(259,510,o), +(259,336,cs), +(259,216,o), +(311,142,o), +(446,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,173,o), +(305,209,o), +(305,282,cs), +(305,346,o), +(360,396,o), +(449,396,cs), +(531,396,o), +(586,360,o), +(586,286,cs), +(586,218,o), +(540,173,o), +(447,173,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (216,190); +ref = sixinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,143,o), +(646,199,o), +(646,300,cs), +(646,386,o), +(581,435,o), +(485,435,cs), +(435,435,o), +(394,419,o), +(374,395,c), +(367,396,l), +(369,450,o), +(398,474,o), +(440,474,cs), +(468,474,o), +(483,470,o), +(494,456,c), +(640,456,l), +(626,534,o), +(554,586,o), +(445,586,cs), +(323,586,o), +(218,528,o), +(218,362,cs), +(218,185,o), +(326,143,o), +(436,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(405,254,o), +(382,267,o), +(382,294,cs), +(382,319,o), +(399,335,o), +(439,335,cs), +(477,335,o), +(497,321,o), +(497,294,cs), +(497,270,o), +(478,254,o), +(439,254,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (199,193); +ref = sixinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,142,o), +(583,197,o), +(583,283,cs), +(583,364,o), +(528,419,o), +(447,419,cs), +(383,419,o), +(338,386,o), +(324,337,c), +(322,337,l), +(324,467,o), +(343,555,o), +(445,555,cs), +(494,555,o), +(536,533,o), +(545,478,c), +(579,478,l), +(573,542,o), +(520,585,o), +(446,585,cs), +(340,585,o), +(289,511,o), +(289,335,cs), +(289,214,o), +(336,142,o), +(438,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(375,173,o), +(330,213,o), +(330,279,cs), +(330,341,o), +(372,390,o), +(441,390,cs), +(503,390,o), +(547,349,o), +(547,283,cs), +(547,217,o), +(504,173,o), +(440,173,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (220,189); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(532,143,o), +(601,205,o), +(601,297,cs), +(601,377,o), +(547,432,o), +(465,432,cs), +(423,432,o), +(392,418,o), +(376,401,c), +(371,401,l), +(371,454,o), +(399,479,o), +(433,479,cs), +(452,479,o), +(473,471,o), +(478,457,c), +(606,457,l), +(595,536,o), +(533,587,o), +(435,587,cs), +(315,587,o), +(246,506,o), +(246,362,cs), +(246,205,o), +(319,143,o), +(425,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(402,253,o), +(385,271,o), +(385,296,cs), +(385,322,o), +(403,338,o), +(429,338,cs), +(456,338,o), +(474,320,o), +(474,295,cs), +(474,270,o), +(456,253,o), +(429,253,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (215,191); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,143,o), +(482,180,o), +(482,288,cs), +(482,373,o), +(460,428,o), +(395,428,cs), +(362,428,o), +(331,407,o), +(321,352,c), +(318,352,l), +(320,493,o), +(332,561,o), +(388,561,cs), +(420,561,o), +(439,542,o), +(445,478,c), +(473,478,l), +(467,550,o), +(441,587,o), +(388,587,cs), +(325,587,o), +(287,534,o), +(290,339,cs), +(292,215,o), +(313,143,o), +(390,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(352,169,o), +(326,201,o), +(326,284,cs), +(326,355,o), +(346,404,o), +(390,404,cs), +(427,404,o), +(452,381,o), +(452,288,cs), +(452,217,o), +(440,169,o), +(390,169,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (243,188); +ref = sixinferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(475,145,o), +(524,193,o), +(524,295,cs), +(524,388,o), +(496,440,o), +(426,440,cs), +(397,440,o), +(373,426,o), +(366,408,c), +(360,408,l), +(359,467,o), +(366,496,o), +(389,496,cs), +(402,496,o), +(413,485,o), +(413,465,c), +(518,465,l), +(515,551,o), +(461,588,o), +(389,588,cs), +(304,588,o), +(246,541,o), +(246,362,cs), +(246,232,o), +(274,145,o), +(389,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(375,236,o), +(366,248,o), +(366,297,cs), +(366,334,o), +(371,354,o), +(391,354,cs), +(405,354,o), +(414,342,o), +(414,293,cs), +(414,258,o), +(409,236,o), +(389,236,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (231,189); +ref = sixinferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(555,142,o), +(615,197,o), +(615,283,cs), +(615,364,o), +(560,419,o), +(479,419,cs), +(415,419,o), +(370,386,o), +(356,337,c), +(354,337,l), +(356,467,o), +(375,555,o), +(477,555,cs), +(526,555,o), +(568,533,o), +(577,478,c), +(611,478,l), +(605,542,o), +(552,585,o), +(478,585,cs), +(372,585,o), +(321,511,o), +(321,335,cs), +(321,214,o), +(368,142,o), +(470,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(407,173,o), +(362,213,o), +(362,279,cs), +(362,341,o), +(404,390,o), +(473,390,cs), +(535,390,o), +(579,349,o), +(579,283,cs), +(579,217,o), +(536,173,o), +(472,173,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = master01; +pos = (266,186); +ref = sixinferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(560,143,o), +(629,205,o), +(629,297,cs), +(629,377,o), +(575,432,o), +(493,432,cs), +(451,432,o), +(420,418,o), +(404,401,c), +(399,401,l), +(399,454,o), +(427,479,o), +(461,479,cs), +(480,479,o), +(501,471,o), +(506,457,c), +(634,457,l), +(623,536,o), +(561,587,o), +(463,587,cs), +(343,587,o), +(274,506,o), +(274,362,cs), +(274,205,o), +(347,143,o), +(453,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(430,253,o), +(413,271,o), +(413,296,cs), +(413,322,o), +(431,338,o), +(457,338,cs), +(484,338,o), +(502,320,o), +(502,295,cs), +(502,270,o), +(484,253,o), +(457,253,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (260,188); +ref = sixinferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(584,142,o), +(656,196,o), +(656,287,cs), +(656,375,o), +(590,425,o), +(486,425,cs), +(408,425,o), +(347,388,o), +(329,331,c), +(326,332,l), +(327,462,o), +(352,554,o), +(484,554,cs), +(553,554,o), +(603,526,o), +(611,476,c), +(648,476,l), +(641,540,o), +(578,584,o), +(485,584,cs), +(355,584,o), +(290,510,o), +(290,336,cs), +(290,216,o), +(342,142,o), +(477,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(394,173,o), +(336,209,o), +(336,282,cs), +(336,346,o), +(391,396,o), +(480,396,cs), +(562,396,o), +(617,360,o), +(617,286,cs), +(617,218,o), +(571,173,o), +(478,173,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (247,190); +ref = sixinferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(591,143,o), +(675,199,o), +(675,300,cs), +(675,386,o), +(610,435,o), +(514,435,cs), +(464,435,o), +(423,419,o), +(403,395,c), +(396,396,l), +(398,450,o), +(427,474,o), +(469,474,cs), +(497,474,o), +(512,470,o), +(523,456,c), +(669,456,l), +(655,534,o), +(583,586,o), +(474,586,cs), +(352,586,o), +(247,528,o), +(247,362,cs), +(247,185,o), +(355,143,o), +(465,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,254,o), +(411,267,o), +(411,294,cs), +(411,319,o), +(428,335,o), +(468,335,cs), +(506,335,o), +(526,321,o), +(526,294,cs), +(526,270,o), +(507,254,o), +(468,254,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (228,193); +ref = sixinferior; +} +); +width = 880; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9317; +userData = { +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/six.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/six.dnom.glyph new file mode 100644 index 00000000..666f7632 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/six.dnom.glyph @@ -0,0 +1,1256 @@ +{ +glyphname = six.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(219,-5,o), +(262,38,o), +(262,126,cs), +(262,207,o), +(238,252,o), +(177,252,cs), +(151,252,o), +(131,240,o), +(125,227,c), +(121,227,l), +(119,269,o), +(124,296,o), +(142,296,cs), +(153,296,o), +(162,287,o), +(162,272,c), +(257,272,l), +(255,343,o), +(211,380,o), +(143,380,cs), +(67,380,o), +(16,338,o), +(16,185,cs), +(16,72,o), +(41,-5,o), +(143,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(132,78,o), +(126,88,o), +(126,128,cs), +(126,156,o), +(128,173,o), +(144,173,cs), +(155,173,o), +(162,164,o), +(162,124,cs), +(162,96,o), +(158,78,o), +(143,78,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 277; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-5,o), +(224,29,o), +(224,128,cs), +(224,204,o), +(204,256,o), +(144,256,cs), +(112,256,o), +(85,234,o), +(76,186,c), +(73,186,l), +(75,317,o), +(88,378,o), +(138,378,cs), +(166,378,o), +(185,361,o), +(190,302,c), +(216,302,l), +(210,370,o), +(185,402,o), +(137,402,cs), +(82,402,o), +(45,356,o), +(48,174,cs), +(50,60,o), +(70,-5,o), +(140,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(105,18,o), +(81,47,o), +(81,124,cs), +(81,191,o), +(100,234,o), +(139,234,cs), +(173,234,o), +(197,213,o), +(197,128,cs), +(197,61,o), +(185,18,o), +(140,18,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 268; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-4,o), +(379,45,o), +(379,129,cs), +(379,209,o), +(319,255,o), +(223,255,cs), +(153,255,o), +(96,221,o), +(80,170,c), +(77,170,l), +(78,289,o), +(101,372,o), +(222,372,cs), +(285,372,o), +(329,347,o), +(337,301,c), +(372,301,l), +(365,361,o), +(307,401,o), +(222,401,cs), +(103,401,o), +(43,333,o), +(43,173,cs), +(43,62,o), +(92,-4,o), +(215,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(139,25,o), +(87,58,o), +(87,124,cs), +(87,182,o), +(136,228,o), +(218,228,cs), +(292,228,o), +(343,195,o), +(343,128,cs), +(343,66,o), +(301,25,o), +(216,25,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 418; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-5,o), +(398,44,o), +(398,131,cs), +(398,206,o), +(340,249,o), +(253,249,cs), +(206,249,o), +(168,234,o), +(150,213,c), +(144,214,l), +(146,262,o), +(171,284,o), +(216,284,cs), +(239,284,o), +(259,282,o), +(269,267,c), +(393,267,l), +(382,333,o), +(319,380,o), +(220,380,cs), +(109,380,o), +(18,328,o), +(18,185,cs), +(18,32,o), +(112,-5,o), +(212,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,90,o), +(157,102,o), +(157,126,cs), +(157,149,o), +(176,164,o), +(215,164,cs), +(252,164,o), +(272,151,o), +(272,127,cs), +(272,104,o), +(252,90,o), +(214,90,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 416; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(171,-5,o), +(204,29,o), +(204,128,cs), +(204,204,o), +(184,256,o), +(124,256,cs), +(92,256,o), +(65,234,o), +(56,186,c), +(53,186,l), +(55,317,o), +(68,378,o), +(118,378,cs), +(146,378,o), +(165,361,o), +(170,302,c), +(196,302,l), +(190,370,o), +(165,402,o), +(117,402,cs), +(62,402,o), +(25,356,o), +(28,174,cs), +(30,60,o), +(50,-5,o), +(120,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(85,18,o), +(61,47,o), +(61,124,cs), +(61,191,o), +(80,234,o), +(119,234,cs), +(153,234,o), +(177,213,o), +(177,128,cs), +(177,61,o), +(165,18,o), +(120,18,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 228; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,-5,o), +(253,38,o), +(253,126,cs), +(253,207,o), +(229,252,o), +(168,252,cs), +(142,252,o), +(122,240,o), +(116,227,c), +(112,227,l), +(110,269,o), +(115,296,o), +(133,296,cs), +(144,296,o), +(153,287,o), +(153,272,c), +(248,272,l), +(246,343,o), +(202,380,o), +(134,380,cs), +(58,380,o), +(7,338,o), +(7,185,cs), +(7,72,o), +(32,-5,o), +(134,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(123,78,o), +(117,88,o), +(117,128,cs), +(117,156,o), +(119,173,o), +(135,173,cs), +(146,173,o), +(153,164,o), +(153,124,cs), +(153,96,o), +(149,78,o), +(134,78,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 259; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,-4,o), +(315,45,o), +(315,125,cs), +(315,199,o), +(264,249,o), +(190,249,cs), +(130,249,o), +(89,218,o), +(77,174,c), +(75,174,l), +(77,294,o), +(95,374,o), +(188,374,cs), +(239,374,o), +(273,348,o), +(280,304,c), +(311,304,l), +(305,363,o), +(256,402,o), +(188,402,cs), +(92,402,o), +(45,334,o), +(45,172,cs), +(45,61,o), +(88,-4,o), +(182,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(123,24,o), +(83,61,o), +(83,121,cs), +(83,178,o), +(121,223,o), +(184,223,cs), +(242,223,o), +(282,185,o), +(282,125,cs), +(282,64,o), +(242,24,o), +(183,24,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 356; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(267,-5,o), +(329,50,o), +(329,129,cs), +(329,199,o), +(280,246,o), +(207,246,cs), +(170,246,o), +(142,236,o), +(126,221,c), +(122,221,l), +(121,265,o), +(147,285,o), +(179,285,cs), +(197,285,o), +(216,278,o), +(220,267,c), +(334,267,l), +(324,335,o), +(268,380,o), +(180,380,cs), +(73,380,o), +(11,311,o), +(11,186,cs), +(11,49,o), +(76,-5,o), +(172,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,93,o), +(133,108,o), +(133,129,cs), +(133,150,o), +(150,163,o), +(175,163,cs), +(200,163,o), +(217,149,o), +(217,128,cs), +(217,107,o), +(200,93,o), +(175,93,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 344; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,-4,o), +(369,45,o), +(369,129,cs), +(369,209,o), +(309,255,o), +(213,255,cs), +(143,255,o), +(86,221,o), +(70,170,c), +(67,170,l), +(68,289,o), +(91,372,o), +(212,372,cs), +(275,372,o), +(319,347,o), +(327,301,c), +(362,301,l), +(355,361,o), +(297,401,o), +(212,401,cs), +(93,401,o), +(33,333,o), +(33,173,cs), +(33,62,o), +(82,-4,o), +(205,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,25,o), +(77,58,o), +(77,124,cs), +(77,182,o), +(126,228,o), +(208,228,cs), +(282,228,o), +(333,195,o), +(333,128,cs), +(333,66,o), +(291,25,o), +(206,25,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 398; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-5,o), +(388,44,o), +(388,131,cs), +(388,206,o), +(330,249,o), +(243,249,cs), +(196,249,o), +(158,234,o), +(140,213,c), +(134,214,l), +(136,262,o), +(161,284,o), +(206,284,cs), +(229,284,o), +(249,282,o), +(259,267,c), +(383,267,l), +(372,333,o), +(309,380,o), +(210,380,cs), +(99,380,o), +(8,328,o), +(8,185,cs), +(8,32,o), +(102,-5,o), +(202,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,90,o), +(147,102,o), +(147,126,cs), +(147,149,o), +(166,164,o), +(205,164,cs), +(242,164,o), +(262,151,o), +(262,127,cs), +(262,104,o), +(242,90,o), +(204,90,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 396; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(276,-4,o), +(332,45,o), +(332,125,cs), +(332,199,o), +(281,249,o), +(209,249,cs), +(150,249,o), +(110,218,o), +(98,174,c), +(96,174,l), +(98,294,o), +(116,374,o), +(207,374,cs), +(256,374,o), +(290,348,o), +(297,304,c), +(328,304,l), +(322,363,o), +(273,402,o), +(207,402,cs), +(113,402,o), +(66,334,o), +(66,172,cs), +(66,61,o), +(109,-4,o), +(201,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,24,o), +(104,61,o), +(104,121,cs), +(104,178,o), +(142,223,o), +(203,223,cs), +(259,223,o), +(299,185,o), +(299,125,cs), +(299,64,o), +(259,24,o), +(202,24,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 393; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(276,-5,o), +(336,50,o), +(336,129,cs), +(336,199,o), +(289,246,o), +(220,246,cs), +(186,246,o), +(159,236,o), +(145,221,c), +(141,221,l), +(140,265,o), +(164,285,o), +(192,285,cs), +(205,285,o), +(224,279,o), +(228,267,c), +(341,267,l), +(331,335,o), +(277,380,o), +(193,380,cs), +(90,380,o), +(31,310,o), +(31,186,cs), +(31,49,o), +(94,-5,o), +(185,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,93,o), +(150,108,o), +(150,129,cs), +(150,150,o), +(166,163,o), +(188,163,cs), +(210,163,o), +(225,149,o), +(225,128,cs), +(225,107,o), +(210,93,o), +(188,93,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 369; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-5,o), +(176,35,o), +(194,120,cs), +(209,192,o), +(204,256,o), +(138,256,cs), +(112,256,o), +(82,241,o), +(62,191,c), +(59,191,l), +(87,315,o), +(111,377,o), +(157,377,cs), +(198,377,o), +(203,344,o), +(198,297,c), +(222,297,l), +(227,346,o), +(226,400,o), +(158,400,cs), +(106,400,o), +(66,354,o), +(32,181,cs), +(10,68,o), +(15,-5,o), +(94,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(45,18,o), +(42,70,o), +(54,128,cs), +(67,189,o), +(90,234,o), +(129,234,cs), +(178,234,o), +(181,186,o), +(168,125,cs), +(154,59,o), +(136,18,o), +(95,18,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 266; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,-5,o), +(212,34,o), +(229,117,cs), +(243,184,o), +(231,243,o), +(174,248,cs), +(148,250,o), +(130,245,o), +(117,228,c), +(112,228,l), +(119,269,o), +(128,296,o), +(146,296,cs), +(159,296,o), +(163,283,o), +(162,272,c), +(256,272,l), +(264,342,o), +(222,379,o), +(149,379,cs), +(83,379,o), +(31,338,o), +(1,196,cs), +(-24,80,o), +(-14,-5,o), +(100,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(89,78,o), +(89,97,o), +(96,129,cs), +(102,159,o), +(109,173,o), +(121,173,cs), +(138,173,o), +(136,150,o), +(130,122,cs), +(125,97,o), +(118,78,o), +(105,78,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 275; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(256,-6,o), +(311,56,o), +(311,134,cs), +(311,203,o), +(262,249,o), +(197,249,cs), +(147,249,o), +(102,226,o), +(82,179,c), +(79,179,l), +(89,304,o), +(144,373,o), +(224,373,cs), +(271,373,o), +(304,348,o), +(309,304,c), +(341,304,l), +(334,363,o), +(289,401,o), +(224,401,cs), +(116,401,o), +(49,301,o), +(49,147,cs), +(49,48,o), +(92,-6,o), +(175,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(118,22,o), +(84,59,o), +(84,117,cs), +(84,179,o), +(129,223,o), +(191,223,cs), +(243,223,o), +(278,188,o), +(278,134,cs), +(278,67,o), +(235,22,o), +(172,22,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 397; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,-5,o), +(321,48,o), +(321,133,cs), +(321,203,o), +(267,246,o), +(202,246,cs), +(172,246,o), +(144,237,o), +(132,226,c), +(128,228,l), +(135,267,o), +(157,285,o), +(192,285,cs), +(214,285,o), +(230,278,o), +(233,266,c), +(344,266,l), +(339,334,o), +(281,379,o), +(202,379,cs), +(75,379,o), +(13,281,o), +(13,156,cs), +(13,53,o), +(68,-5,o), +(165,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(140,90,o), +(124,104,o), +(124,125,cs), +(124,147,o), +(137,167,o), +(169,167,cs), +(192,167,o), +(208,153,o), +(208,131,cs), +(208,106,o), +(191,90,o), +(162,90,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 382; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-6,o), +(354,48,o), +(357,133,cs), +(360,210,o), +(299,256,o), +(212,256,cs), +(147,256,o), +(90,230,o), +(64,180,c), +(62,180,l), +(74,296,o), +(128,372,o), +(233,372,cs), +(308,372,o), +(347,338,o), +(351,293,c), +(384,293,l), +(380,363,o), +(318,401,o), +(234,401,cs), +(115,401,o), +(33,318,o), +(27,155,cs), +(23,48,o), +(77,-6,o), +(188,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,24,o), +(62,59,o), +(64,120,cs), +(67,189,o), +(126,229,o), +(204,229,cs), +(271,229,o), +(323,198,o), +(321,133,cs), +(319,68,o), +(274,24,o), +(188,24,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 424; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,-6,o), +(366,50,o), +(366,134,cs), +(366,206,o), +(310,246,o), +(224,246,cs), +(189,246,o), +(153,238,o), +(137,228,c), +(132,230,l), +(139,266,o), +(171,284,o), +(211,284,cs), +(242,284,o), +(261,279,o), +(267,262,c), +(390,262,l), +(381,334,o), +(325,379,o), +(220,379,cs), +(89,379,o), +(-2,294,o), +(-2,149,cs), +(-2,41,o), +(70,-6,o), +(177,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,89,o), +(127,102,o), +(127,124,cs), +(127,151,o), +(152,164,o), +(188,164,cs), +(220,164,o), +(241,151,o), +(241,129,cs), +(241,100,o), +(214,89,o), +(179,89,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 415; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/six.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/six.glyph new file mode 100644 index 00000000..50085be3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/six.glyph @@ -0,0 +1,1866 @@ +{ +glyphname = six; +kernLeft = KO_six; +kernRight = KO_six; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(386,-9,o), +(475,71,o), +(475,242,cs), +(475,396,o), +(417,483,o), +(313,483,cs), +(266,483,o), +(225,461,o), +(212,427,c), +(203,427,l), +(201,522,o), +(210,580,o), +(252,580,cs), +(275,580,o), +(294,562,o), +(294,526,c), +(465,526,l), +(461,661,o), +(379,730,o), +(252,730,cs), +(111,730,o), +(16,651,o), +(16,352,cs), +(16,135,o), +(63,-9,o), +(253,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,140,o), +(213,161,o), +(213,245,cs), +(213,307,o), +(221,342,o), +(255,342,cs), +(280,342,o), +(295,322,o), +(295,238,cs), +(295,177,o), +(287,140,o), +(253,140,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-9,o), +(481,72,o), +(481,245,cs), +(481,401,o), +(435,489,o), +(317,489,cs), +(269,489,o), +(228,467,o), +(215,432,c), +(206,432,l), +(204,529,o), +(213,587,o), +(255,587,cs), +(278,587,o), +(298,569,o), +(298,533,c), +(471,533,l), +(467,669,o), +(384,739,o), +(255,739,cs), +(112,739,o), +(16,659,o), +(16,356,cs), +(16,137,o), +(64,-9,o), +(256,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,142,o), +(216,163,o), +(216,248,cs), +(216,311,o), +(224,346,o), +(258,346,cs), +(284,346,o), +(299,326,o), +(299,241,cs), +(299,179,o), +(291,142,o), +(256,142,cs) +); +} +); +width = 495; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(345,48,o), +(345,231,cs), +(345,371,o), +(310,464,o), +(201,464,cs), +(145,464,o), +(94,427,o), +(77,329,c), +(74,329,l), +(79,545,o), +(99,703,o), +(207,703,cs), +(267,703,o), +(299,664,o), +(310,552,c), +(340,552,l), +(329,664,o), +(294,730,o), +(206,730,cs), +(112,730,o), +(46,650,o), +(46,315,cs), +(46,120,o), +(84,-10,o), +(203,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,17,o), +(86,75,o), +(86,223,cs), +(86,352,o), +(123,438,o), +(201,438,cs), +(269,438,o), +(315,397,o), +(315,231,cs), +(315,103,o), +(293,17,o), +(203,17,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,-10,o), +(351,50,o), +(351,234,cs), +(351,375,o), +(316,469,o), +(208,469,cs), +(145,469,o), +(96,426,o), +(79,330,c), +(74,330,l), +(79,587,o), +(101,710,o), +(203,710,cs), +(259,710,o), +(295,676,o), +(306,559,c), +(336,559,l), +(325,678,o), +(287,739,o), +(201,739,cs), +(108,739,o), +(47,662,o), +(47,359,cs), +(47,147,o), +(69,-10,o), +(207,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(137,18,o), +(89,76,o), +(89,226,cs), +(89,355,o), +(127,442,o), +(205,442,cs), +(272,442,o), +(319,401,o), +(319,234,cs), +(319,104,o), +(297,18,o), +(207,18,cs) +); +} +); +width = 395; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(528,-8,o), +(646,81,o), +(646,234,cs), +(646,383,o), +(536,468,o), +(357,468,cs), +(220,468,o), +(112,400,o), +(82,298,c), +(78,298,l), +(80,535,o), +(120,704,o), +(365,704,cs), +(490,704,o), +(581,652,o), +(594,559,c), +(633,559,l), +(622,667,o), +(515,738,o), +(365,738,cs), +(144,738,o), +(43,611,o), +(43,313,cs), +(43,122,o), +(118,-8,o), +(351,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,26,o), +(95,92,o), +(95,226,cs), +(95,342,o), +(194,434,o), +(356,434,cs), +(505,434,o), +(605,369,o), +(605,234,cs), +(605,109,o), +(522,26,o), +(353,26,cs) +); +} +); +width = 681; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(579,-9,o), +(713,83,o), +(713,246,cs), +(713,384,o), +(617,477,o), +(430,477,cs), +(351,477,o), +(279,453,o), +(247,417,c), +(237,419,l), +(240,511,o), +(286,562,o), +(379,562,cs), +(429,562,o), +(467,552,o), +(485,518,c), +(703,518,l), +(679,634,o), +(591,730,o), +(386,730,cs), +(180,730,o), +(15,629,o), +(15,351,cs), +(15,68,o), +(182,-9,o), +(371,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,158,o), +(260,185,o), +(260,241,cs), +(260,292,o), +(298,327,o), +(376,327,cs), +(450,327,o), +(491,298,o), +(491,242,cs), +(491,191,o), +(453,158,o), +(375,158,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(583,-9,o), +(722,85,o), +(722,253,cs), +(722,400,o), +(613,483,o), +(449,483,cs), +(358,483,o), +(284,451,o), +(250,402,c), +(240,404,l), +(243,512,o), +(290,569,o), +(384,569,cs), +(434,569,o), +(473,559,o), +(491,524,c), +(712,524,l), +(691,653,o), +(571,739,o), +(391,739,cs), +(182,739,o), +(15,637,o), +(15,355,cs), +(15,69,o), +(184,-9,o), +(376,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,160,o), +(263,187,o), +(263,244,cs), +(263,296,o), +(302,331,o), +(381,331,cs), +(456,331,o), +(497,302,o), +(497,245,cs), +(497,193,o), +(459,160,o), +(380,160,cs) +); +} +); +width = 734; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(345,48,o), +(345,231,cs), +(345,371,o), +(310,464,o), +(201,464,cs), +(145,464,o), +(94,427,o), +(77,329,c), +(74,329,l), +(79,545,o), +(99,703,o), +(207,703,cs), +(267,703,o), +(299,664,o), +(310,552,c), +(340,552,l), +(329,664,o), +(294,730,o), +(206,730,cs), +(112,730,o), +(46,650,o), +(46,315,cs), +(46,120,o), +(84,-10,o), +(203,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,17,o), +(86,75,o), +(86,223,cs), +(86,352,o), +(123,438,o), +(201,438,cs), +(269,438,o), +(315,397,o), +(315,231,cs), +(315,103,o), +(293,17,o), +(203,17,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-10,o), +(327,49,o), +(327,238,cs), +(327,406,o), +(282,480,o), +(185,480,cs), +(123,480,o), +(71,438,o), +(54,343,c), +(53,343,l), +(58,587,o), +(80,708,o), +(182,708,cs), +(245,708,o), +(275,662,o), +(285,553,c), +(315,553,l), +(304,677,o), +(266,737,o), +(181,737,cs), +(87,737,o), +(26,661,o), +(26,355,cs), +(26,145,o), +(48,-10,o), +(184,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(115,18,o), +(66,75,o), +(66,230,cs), +(66,368,o), +(105,454,o), +(182,454,cs), +(261,454,o), +(295,389,o), +(295,238,cs), +(295,83,o), +(262,18,o), +(184,18,cs) +); +} +); +width = 350; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(386,-9,o), +(475,71,o), +(475,242,cs), +(475,396,o), +(417,483,o), +(313,483,cs), +(266,483,o), +(225,461,o), +(212,427,c), +(203,427,l), +(201,522,o), +(210,580,o), +(252,580,cs), +(275,580,o), +(294,562,o), +(294,526,c), +(465,526,l), +(461,661,o), +(379,730,o), +(252,730,cs), +(111,730,o), +(16,651,o), +(16,352,cs), +(16,135,o), +(63,-9,o), +(253,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,140,o), +(213,161,o), +(213,245,cs), +(213,307,o), +(221,342,o), +(255,342,cs), +(280,342,o), +(295,322,o), +(295,238,cs), +(295,177,o), +(287,140,o), +(253,140,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(386,-9,o), +(466,71,o), +(466,244,cs), +(466,402,o), +(421,489,o), +(304,489,cs), +(256,489,o), +(214,466,o), +(195,433,c), +(194,433,l), +(192,528,o), +(201,586,o), +(242,586,cs), +(263,586,o), +(281,568,o), +(283,522,c), +(454,522,l), +(448,667,o), +(373,736,o), +(242,736,cs), +(102,736,o), +(7,657,o), +(7,352,cs), +(7,135,o), +(54,-9,o), +(244,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(219,140,o), +(204,160,o), +(204,241,cs), +(204,307,o), +(216,337,o), +(246,337,cs), +(274,337,o), +(286,306,o), +(286,234,cs), +(286,175,o), +(278,140,o), +(244,140,cs) +); +} +); +width = 471; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(436,-8,o), +(532,83,o), +(532,229,cs), +(532,371,o), +(442,464,o), +(311,464,cs), +(202,464,o), +(124,403,o), +(102,311,c), +(99,311,l), +(103,532,o), +(132,696,o), +(313,696,cs), +(409,696,o), +(478,645,o), +(488,552,c), +(522,552,l), +(513,662,o), +(436,730,o), +(313,730,cs), +(143,730,o), +(64,605,o), +(64,315,cs), +(64,115,o), +(135,-8,o), +(301,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(189,26,o), +(112,100,o), +(112,223,cs), +(112,339,o), +(184,431,o), +(305,431,cs), +(416,431,o), +(491,355,o), +(491,231,cs), +(491,107,o), +(416,26,o), +(303,26,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(431,-8,o), +(532,81,o), +(532,229,cs), +(532,372,o), +(441,465,o), +(302,465,cs), +(189,465,o), +(106,404,o), +(80,312,c), +(79,312,l), +(83,541,o), +(112,702,o), +(300,702,cs), +(406,702,o), +(468,643,o), +(481,544,c), +(517,544,l), +(508,661,o), +(429,736,o), +(300,736,cs), +(125,736,o), +(44,612,o), +(44,307,cs), +(44,112,o), +(120,-8,o), +(291,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,26,o), +(92,98,o), +(92,227,cs), +(92,340,o), +(172,431,o), +(298,431,cs), +(415,431,o), +(492,355,o), +(492,229,cs), +(492,105,o), +(412,26,o), +(293,26,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 556; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(507,-9,o), +(619,82,o), +(619,244,cs), +(619,387,o), +(529,483,o), +(393,483,cs), +(329,483,o), +(278,461,o), +(253,427,c), +(245,427,l), +(242,522,o), +(283,566,o), +(347,566,cs), +(386,566,o), +(418,550,o), +(427,526,c), +(614,526,l), +(600,648,o), +(503,730,o), +(348,730,cs), +(160,730,o), +(50,603,o), +(50,356,cs), +(50,100,o), +(166,-9,o), +(341,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(291,156,o), +(258,192,o), +(258,249,cs), +(258,306,o), +(291,342,o), +(344,342,cs), +(397,342,o), +(430,306,o), +(430,249,cs), +(430,192,o), +(397,156,o), +(344,156,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(504,-9,o), +(625,93,o), +(625,245,cs), +(625,381,o), +(526,473,o), +(380,473,cs), +(304,473,o), +(249,451,o), +(217,407,c), +(216,407,l), +(216,517,o), +(261,574,o), +(333,574,cs), +(374,574,o), +(410,554,o), +(419,510,c), +(633,510,l), +(613,656,o), +(508,736,o), +(336,736,cs), +(128,736,o), +(10,602,o), +(10,350,cs), +(10,97,o), +(133,-9,o), +(321,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,156,o), +(237,191,o), +(237,243,cs), +(237,294,o), +(273,327,o), +(327,327,cs), +(380,327,o), +(416,294,o), +(416,243,cs), +(416,191,o), +(380,156,o), +(327,156,cs) +); +} +); +width = 638; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(529,-8,o), +(646,80,o), +(646,241,cs), +(646,398,o), +(537,482,o), +(353,482,cs), +(208,482,o), +(98,415,o), +(68,314,c), +(67,314,l), +(69,534,o), +(109,703,o), +(356,703,cs), +(497,703,o), +(575,649,o), +(588,547,c), +(626,547,l), +(615,668,o), +(519,737,o), +(356,737,cs), +(132,737,o), +(32,610,o), +(32,309,cs), +(32,120,o), +(108,-8,o), +(347,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,26,o), +(84,91,o), +(84,233,cs), +(84,358,o), +(183,449,o), +(352,449,cs), +(507,449,o), +(606,384,o), +(606,241,cs), +(606,108,o), +(524,26,o), +(349,26,cs) +); +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(584,-9,o), +(718,83,o), +(718,246,cs), +(718,384,o), +(622,477,o), +(435,477,cs), +(356,477,o), +(284,453,o), +(252,417,c), +(242,419,l), +(245,511,o), +(291,562,o), +(384,562,cs), +(434,562,o), +(472,552,o), +(490,518,c), +(708,518,l), +(684,634,o), +(596,730,o), +(391,730,cs), +(185,730,o), +(20,629,o), +(20,351,cs), +(20,68,o), +(187,-9,o), +(376,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,158,o), +(265,185,o), +(265,241,cs), +(265,292,o), +(303,327,o), +(381,327,cs), +(455,327,o), +(496,298,o), +(496,242,cs), +(496,191,o), +(458,158,o), +(380,158,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(574,-9,o), +(713,84,o), +(713,250,cs), +(713,395,o), +(603,477,o), +(438,477,cs), +(343,477,o), +(267,448,o), +(233,398,c), +(232,398,l), +(235,508,o), +(281,567,o), +(374,567,cs), +(431,567,o), +(469,545,o), +(484,503,c), +(710,503,l), +(688,649,o), +(566,735,o), +(381,735,cs), +(172,735,o), +(5,633,o), +(5,351,cs), +(5,68,o), +(174,-9,o), +(366,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,158,o), +(255,185,o), +(255,241,cs), +(255,295,o), +(298,327,o), +(371,327,cs), +(445,327,o), +(486,298,o), +(486,242,cs), +(486,191,o), +(448,158,o), +(370,158,cs) +); +} +); +width = 717; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(449,-8,o), +(545,83,o), +(545,229,cs), +(545,371,o), +(455,464,o), +(324,464,cs), +(215,464,o), +(137,403,o), +(115,311,c), +(112,311,l), +(116,532,o), +(145,696,o), +(326,696,cs), +(422,696,o), +(491,645,o), +(501,552,c), +(535,552,l), +(526,662,o), +(449,730,o), +(326,730,cs), +(156,730,o), +(77,605,o), +(77,315,cs), +(77,115,o), +(148,-8,o), +(314,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(202,26,o), +(125,100,o), +(125,223,cs), +(125,339,o), +(197,431,o), +(318,431,cs), +(429,431,o), +(504,355,o), +(504,231,cs), +(504,107,o), +(429,26,o), +(316,26,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(443,-8,o), +(532,86,o), +(532,227,cs), +(532,365,o), +(447,457,o), +(322,457,cs), +(217,457,o), +(142,397,o), +(120,307,c), +(117,307,l), +(122,572,o), +(174,703,o), +(325,703,cs), +(409,703,o), +(473,659,o), +(487,564,c), +(523,564,l), +(514,669,o), +(434,739,o), +(325,739,cs), +(160,739,o), +(83,610,o), +(83,311,cs), +(83,113,o), +(152,-8,o), +(313,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,28,o), +(130,104,o), +(130,224,cs), +(130,333,o), +(201,422,o), +(318,422,cs), +(422,422,o), +(493,347,o), +(493,227,cs), +(493,109,o), +(421,28,o), +(315,28,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 605; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(503,-9,o), +(615,82,o), +(615,244,cs), +(615,387,o), +(525,483,o), +(389,483,cs), +(325,483,o), +(274,461,o), +(249,427,c), +(241,427,l), +(238,522,o), +(279,566,o), +(343,566,cs), +(382,566,o), +(414,550,o), +(423,526,c), +(610,526,l), +(596,648,o), +(499,730,o), +(344,730,cs), +(156,730,o), +(46,603,o), +(46,356,cs), +(46,100,o), +(162,-9,o), +(337,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(287,156,o), +(254,192,o), +(254,249,cs), +(254,306,o), +(287,342,o), +(340,342,cs), +(393,342,o), +(426,306,o), +(426,249,cs), +(426,192,o), +(393,156,o), +(340,156,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(498,-10,o), +(610,94,o), +(610,248,cs), +(610,383,o), +(522,476,o), +(390,476,cs), +(325,476,o), +(280,452,o), +(253,412,c), +(240,412,l), +(240,515,o), +(281,568,o), +(342,568,cs), +(379,568,o), +(406,551,o), +(413,519,c), +(616,519,l), +(599,655,o), +(500,739,o), +(344,739,cs), +(153,739,o), +(45,605,o), +(45,354,cs), +(45,99,o), +(158,-10,o), +(330,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(292,157,o), +(263,192,o), +(263,244,cs), +(263,296,o), +(292,330,o), +(336,330,cs), +(379,330,o), +(408,296,o), +(408,244,cs), +(408,192,o), +(379,157,o), +(336,157,cs) +); +} +); +width = 649; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,-10,o), +(306,49,o), +(341,221,cs), +(370,352,o), +(361,469,o), +(239,469,cs), +(190,469,o), +(135,440,o), +(96,341,c), +(90,341,l), +(147,587,o), +(193,708,o), +(286,708,cs), +(378,708,o), +(372,623,o), +(365,548,c), +(394,548,l), +(403,641,o), +(402,738,o), +(286,738,cs), +(196,738,o), +(123,650,o), +(61,328,cs), +(24,138,o), +(22,-10,o), +(165,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(69,18,o), +(60,120,o), +(84,235,cs), +(110,360,o), +(160,441,o), +(233,441,cs), +(331,441,o), +(336,348,o), +(310,224,cs), +(284,99,o), +(247,18,o), +(167,18,cs) +); +} +); +width = 388; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-9,o), +(434,65,o), +(468,226,cs), +(496,360,o), +(473,473,o), +(357,483,cs), +(312,487,o), +(267,468,o), +(247,435,c), +(238,435,l), +(255,528,o), +(275,586,o), +(315,586,cs), +(343,586,o), +(353,561,o), +(349,532,c), +(520,532,l), +(536,664,o), +(460,738,o), +(321,738,cs), +(195,738,o), +(95,657,o), +(37,377,cs), +(-10,154,o), +(8,-9,o), +(223,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,142,o), +(197,190,o), +(210,250,cs), +(223,313,o), +(237,345,o), +(266,345,cs), +(305,345,o), +(301,299,o), +(289,237,cs), +(276,178,o), +(261,142,o), +(232,142,cs) +); +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(448,-10,o), +(541,105,o), +(541,243,cs), +(541,368,o), +(455,451,o), +(339,451,cs), +(240,451,o), +(154,401,o), +(119,311,c), +(115,311,l), +(133,557,o), +(236,695,o), +(394,695,cs), +(485,695,o), +(551,646,o), +(560,558,c), +(598,558,l), +(585,661,o), +(510,729,o), +(393,729,cs), +(206,729,o), +(81,557,o), +(81,257,cs), +(81,89,o), +(153,-10,o), +(301,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,24,o), +(126,91,o), +(126,209,cs), +(126,331,o), +(209,417,o), +(332,417,cs), +(434,417,o), +(502,348,o), +(502,243,cs), +(502,112,o), +(420,24,o), +(296,24,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(454,-10,o), +(550,104,o), +(550,245,cs), +(550,373,o), +(462,457,o), +(343,457,cs), +(245,457,o), +(159,410,o), +(119,315,c), +(115,315,l), +(135,564,o), +(240,704,o), +(400,704,cs), +(494,704,o), +(559,652,o), +(568,565,c), +(606,565,l), +(594,669,o), +(515,738,o), +(399,738,cs), +(205,738,o), +(81,556,o), +(81,267,cs), +(81,84,o), +(159,-10,o), +(306,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(193,24,o), +(128,97,o), +(128,213,cs), +(128,336,o), +(217,422,o), +(337,422,cs), +(440,422,o), +(510,352,o), +(510,245,cs), +(510,113,o), +(425,24,o), +(301,24,cs) +); +} +); +width = 613; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-8,o), +(563,76,o), +(585,225,cs), +(606,377,o), +(524,478,o), +(393,478,cs), +(342,478,o), +(290,464,o), +(260,433,c), +(253,436,l), +(269,519,o), +(313,567,o), +(375,567,cs), +(419,567,o), +(447,548,o), +(452,515,c), +(640,515,l), +(632,643,o), +(532,729,o), +(391,729,cs), +(178,729,o), +(76,574,o), +(51,362,cs), +(25,141,o), +(104,-8,o), +(303,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(252,154,o), +(230,200,o), +(239,258,cs), +(247,310,o), +(279,344,o), +(330,344,cs), +(385,344,o), +(407,298,o), +(398,240,cs), +(390,188,o), +(358,154,o), +(307,154,cs) +); +} +); +}; +guides = ( +{ +pos = (622,520); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(489,-10,o), +(614,95,o), +(614,259,cs), +(614,393,o), +(514,476,o), +(394,476,cs), +(334,476,o), +(277,455,o), +(252,422,c), +(245,425,l), +(260,528,o), +(311,576,o), +(385,576,cs), +(430,576,o), +(465,558,o), +(471,524,c), +(661,524,l), +(651,653,o), +(547,738,o), +(401,738,cs), +(166,738,o), +(48,546,o), +(48,293,cs), +(48,109,o), +(139,-10,o), +(324,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,154,o), +(238,187,o), +(238,237,cs), +(238,292,o), +(269,339,o), +(337,339,cs), +(387,339,o), +(419,306,o), +(419,256,cs), +(419,193,o), +(382,154,o), +(319,154,cs) +); +} +); +width = 648; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(531,-10,o), +(649,92,o), +(649,245,cs), +(649,384,o), +(542,464,o), +(386,464,cs), +(259,464,o), +(149,412,o), +(100,311,c), +(97,311,l), +(119,542,o), +(224,695,o), +(432,695,cs), +(560,695,o), +(651,638,o), +(663,537,c), +(699,536,l), +(692,652,o), +(586,729,o), +(433,729,cs), +(220,729,o), +(72,580,o), +(61,281,cs), +(55,99,o), +(148,-10,o), +(350,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,24,o), +(103,100,o), +(103,215,cs), +(103,342,o), +(215,432,o), +(379,432,cs), +(516,432,o), +(610,366,o), +(610,244,cs), +(610,107,o), +(511,24,o), +(348,24,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,-10,o), +(657,91,o), +(657,246,cs), +(657,389,o), +(543,470,o), +(391,470,cs), +(268,470,o), +(146,422,o), +(97,307,c), +(93,307,l), +(112,545,o), +(215,704,o), +(442,704,cs), +(566,704,o), +(657,640,o), +(671,544,c), +(708,544,l), +(694,661,o), +(588,738,o), +(443,738,cs), +(248,738,o), +(107,627,o), +(67,392,cs), +(24,141,o), +(115,-10,o), +(351,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,24,o), +(104,93,o), +(104,217,cs), +(104,349,o), +(223,437,o), +(384,437,cs), +(522,437,o), +(618,371,o), +(618,242,cs), +(618,112,o), +(510,24,o), +(349,24,cs) +); +} +); +width = 700; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(558,-10,o), +(698,94,o), +(703,248,cs), +(708,385,o), +(604,477,o), +(451,477,cs), +(374,477,o), +(300,455,o), +(262,412,c), +(253,414,l), +(267,502,o), +(329,561,o), +(427,561,cs), +(482,561,o), +(524,544,o), +(534,507,c), +(749,507,l), +(734,650,o), +(611,730,o), +(439,729,cs), +(201,729,o), +(37,580,o), +(28,321,cs), +(21,119,o), +(130,-10,o), +(353,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,157,o), +(252,186,o), +(254,237,cs), +(256,297,o), +(305,327,o), +(378,327,cs), +(442,327,o), +(484,298,o), +(482,249,cs), +(480,185,o), +(430,157,o), +(358,157,cs) +); +} +); +}; +guides = ( +{ +pos = (387,562); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(571,-10,o), +(714,100,o), +(714,264,cs), +(714,396,o), +(623,483,o), +(459,483,cs), +(381,483,o), +(306,461,o), +(267,417,c), +(258,419,l), +(272,508,o), +(336,568,o), +(434,568,cs), +(490,568,o), +(534,546,o), +(543,513,c), +(760,513,l), +(748,651,o), +(621,738,o), +(447,738,cs), +(198,738,o), +(31,574,o), +(31,313,cs), +(31,112,o), +(149,-10,o), +(359,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,159,o), +(259,187,o), +(259,237,cs), +(259,300,o), +(310,331,o), +(385,331,cs), +(449,331,o), +(490,304,o), +(490,255,cs), +(490,188,o), +(438,159,o), +(365,159,cs) +); +} +); +width = 732; +} +); +unicode = 54; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/six.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/six.numr.glyph new file mode 100644 index 00000000..456ce854 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/six.numr.glyph @@ -0,0 +1,478 @@ +{ +color = 6; +glyphname = six.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 277; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 268; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 418; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 416; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 268; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 259; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,332); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = six.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = six.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 396; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = six.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = six.dnom; +}; +width = 366; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 418; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 416; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = six.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = six.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 393; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = six.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = six.dnom; +}; +width = 369; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 266; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 275; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 397; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 382; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 424; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 415; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/six.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/six.tf.glyph new file mode 100644 index 00000000..9edba86c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/six.tf.glyph @@ -0,0 +1,1293 @@ +{ +glyphname = six.tf; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,-9,o), +(469,71,o), +(469,242,cs), +(469,396,o), +(424,483,o), +(308,483,cs), +(262,483,o), +(221,461,o), +(208,427,c), +(199,427,l), +(197,525,o), +(207,580,o), +(247,580,cs), +(270,580,o), +(289,562,o), +(289,526,c), +(459,526,l), +(455,661,o), +(373,730,o), +(247,730,cs), +(108,730,o), +(13,651,o), +(13,352,cs), +(13,135,o), +(60,-9,o), +(248,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,140,o), +(209,161,o), +(209,245,cs), +(209,307,o), +(217,342,o), +(250,342,cs), +(275,342,o), +(290,322,o), +(290,238,cs), +(290,178,o), +(282,140,o), +(248,140,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,-10,o), +(396,50,o), +(396,231,cs), +(396,369,o), +(361,463,o), +(253,463,cs), +(191,463,o), +(142,421,o), +(125,326,c), +(120,326,l), +(125,580,o), +(147,701,o), +(248,701,cs), +(304,701,o), +(340,668,o), +(351,552,c), +(381,552,l), +(370,670,o), +(331,730,o), +(247,730,cs), +(151,730,o), +(87,647,o), +(93,312,cs), +(97,106,o), +(132,-10,o), +(252,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,18,o), +(135,76,o), +(135,223,cs), +(135,350,o), +(172,437,o), +(250,437,cs), +(318,437,o), +(364,395,o), +(364,231,cs), +(364,104,o), +(342,18,o), +(252,18,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,-8,o), +(649,80,o), +(649,231,cs), +(649,378,o), +(545,462,o), +(377,462,cs), +(248,462,o), +(147,395,o), +(119,294,c), +(115,294,l), +(117,528,o), +(155,695,o), +(383,695,cs), +(499,695,o), +(586,644,o), +(598,552,c), +(637,552,l), +(626,659,o), +(525,729,o), +(383,729,cs), +(175,729,o), +(79,602,o), +(79,309,cs), +(79,120,o), +(152,-8,o), +(371,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,26,o), +(131,91,o), +(131,223,cs), +(131,338,o), +(224,429,o), +(375,429,cs), +(514,429,o), +(608,364,o), +(608,231,cs), +(608,108,o), +(530,26,o), +(373,26,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(562,-9,o), +(693,84,o), +(693,250,cs), +(693,395,o), +(591,477,o), +(438,477,cs), +(355,477,o), +(288,445,o), +(256,397,c), +(247,399,l), +(250,509,o), +(295,562,o), +(375,562,cs), +(419,562,o), +(453,552,o), +(470,518,c), +(684,518,l), +(663,645,o), +(552,730,o), +(382,730,cs), +(188,730,o), +(29,629,o), +(29,351,cs), +(29,68,o), +(191,-9,o), +(368,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,158,o), +(269,185,o), +(269,241,cs), +(269,292,o), +(302,327,o), +(372,327,cs), +(439,327,o), +(476,298,o), +(476,242,cs), +(476,191,o), +(441,158,o), +(371,158,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(376,50,o), +(376,231,cs), +(376,369,o), +(341,463,o), +(233,463,cs), +(171,463,o), +(122,421,o), +(105,326,c), +(100,326,l), +(105,580,o), +(127,701,o), +(228,701,cs), +(284,701,o), +(320,668,o), +(331,552,c), +(361,552,l), +(350,670,o), +(311,730,o), +(227,730,cs), +(131,730,o), +(67,647,o), +(73,312,cs), +(77,106,o), +(112,-10,o), +(232,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(162,18,o), +(115,76,o), +(115,223,cs), +(115,350,o), +(152,437,o), +(230,437,cs), +(298,437,o), +(344,395,o), +(344,231,cs), +(344,104,o), +(322,18,o), +(232,18,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,-9,o), +(460,71,o), +(460,242,cs), +(460,396,o), +(415,483,o), +(299,483,cs), +(253,483,o), +(212,461,o), +(199,427,c), +(190,427,l), +(188,525,o), +(198,580,o), +(238,580,cs), +(261,580,o), +(280,562,o), +(280,526,c), +(450,526,l), +(446,661,o), +(364,730,o), +(238,730,cs), +(99,730,o), +(4,651,o), +(4,352,cs), +(4,135,o), +(51,-9,o), +(239,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(215,140,o), +(200,161,o), +(200,245,cs), +(200,307,o), +(208,342,o), +(241,342,cs), +(266,342,o), +(281,322,o), +(281,238,cs), +(281,178,o), +(273,140,o), +(239,140,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 464; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(425,-8,o), +(524,81,o), +(524,224,cs), +(524,360,o), +(431,451,o), +(295,451,cs), +(184,451,o), +(104,392,o), +(82,303,c), +(79,303,l), +(83,537,o), +(112,696,o), +(300,696,cs), +(393,696,o), +(464,652,o), +(479,557,c), +(515,557,l), +(506,661,o), +(418,730,o), +(300,730,cs), +(126,730,o), +(44,608,o), +(44,307,cs), +(44,112,o), +(118,-8,o), +(288,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(172,26,o), +(92,98,o), +(92,217,cs), +(92,328,o), +(167,417,o), +(292,417,cs), +(405,417,o), +(484,343,o), +(484,224,cs), +(484,105,o), +(405,26,o), +(290,26,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,-9,o), +(563,93,o), +(563,245,cs), +(563,380,o), +(475,470,o), +(343,470,cs), +(275,470,o), +(221,446,o), +(193,407,c), +(185,407,l), +(185,513,o), +(229,569,o), +(298,569,cs), +(336,569,o), +(372,552,o), +(381,520,c), +(569,520,l), +(552,647,o), +(455,731,o), +(300,731,cs), +(110,731,o), +(2,599,o), +(2,350,cs), +(2,97,o), +(114,-9,o), +(285,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,156,o), +(206,191,o), +(206,243,cs), +(206,295,o), +(240,329,o), +(291,329,cs), +(341,329,o), +(376,295,o), +(376,243,cs), +(376,191,o), +(341,156,o), +(291,156,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 566; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(527,-8,o), +(639,80,o), +(639,231,cs), +(639,378,o), +(535,462,o), +(367,462,cs), +(238,462,o), +(137,395,o), +(109,294,c), +(105,294,l), +(107,528,o), +(145,695,o), +(373,695,cs), +(489,695,o), +(576,644,o), +(588,552,c), +(627,552,l), +(616,659,o), +(515,729,o), +(373,729,cs), +(165,729,o), +(69,602,o), +(69,309,cs), +(69,120,o), +(142,-8,o), +(361,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(219,26,o), +(121,91,o), +(121,223,cs), +(121,338,o), +(214,429,o), +(365,429,cs), +(504,429,o), +(598,364,o), +(598,231,cs), +(598,108,o), +(520,26,o), +(363,26,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(552,-9,o), +(683,84,o), +(683,250,cs), +(683,395,o), +(581,477,o), +(428,477,cs), +(345,477,o), +(278,445,o), +(246,397,c), +(237,399,l), +(240,509,o), +(285,562,o), +(365,562,cs), +(409,562,o), +(443,552,o), +(460,518,c), +(674,518,l), +(653,645,o), +(542,730,o), +(372,730,cs), +(178,730,o), +(19,629,o), +(19,351,cs), +(19,68,o), +(181,-9,o), +(358,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,158,o), +(259,185,o), +(259,241,cs), +(259,292,o), +(292,327,o), +(362,327,cs), +(429,327,o), +(466,298,o), +(466,242,cs), +(466,191,o), +(431,158,o), +(361,158,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(440,-8,o), +(537,81,o), +(537,224,cs), +(537,360,o), +(445,451,o), +(312,451,cs), +(203,451,o), +(125,392,o), +(103,303,c), +(100,303,l), +(104,537,o), +(133,696,o), +(317,696,cs), +(408,696,o), +(477,652,o), +(492,557,c), +(528,557,l), +(519,661,o), +(433,730,o), +(317,730,cs), +(147,730,o), +(65,608,o), +(65,307,cs), +(65,112,o), +(139,-8,o), +(305,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,26,o), +(113,98,o), +(113,217,cs), +(113,328,o), +(186,417,o), +(309,417,cs), +(420,417,o), +(497,343,o), +(497,224,cs), +(497,105,o), +(420,26,o), +(307,26,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-9,o), +(563,93,o), +(563,245,cs), +(563,380,o), +(478,470,o), +(350,470,cs), +(284,470,o), +(234,445,o), +(207,407,c), +(199,407,l), +(199,513,o), +(242,569,o), +(305,569,cs), +(340,569,o), +(374,553,o), +(383,520,c), +(569,520,l), +(552,647,o), +(458,731,o), +(307,731,cs), +(123,731,o), +(18,598,o), +(18,350,cs), +(18,97,o), +(128,-9,o), +(293,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,156,o), +(220,191,o), +(220,243,cs), +(220,295,o), +(251,329,o), +(299,329,cs), +(346,329,o), +(378,295,o), +(378,243,cs), +(378,191,o), +(346,156,o), +(299,156,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 581; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(287,-10,o), +(351,48,o), +(386,216,cs), +(414,348,o), +(406,463,o), +(284,463,cs), +(236,463,o), +(180,435,o), +(142,337,c), +(136,337,l), +(192,580,o), +(238,699,o), +(330,699,cs), +(410,699,o), +(420,635,o), +(409,542,c), +(438,540,l), +(450,640,o), +(436,720,o), +(345,728,cs), +(249,737,o), +(171,659,o), +(107,324,cs), +(71,136,o), +(69,-10,o), +(211,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(115,18,o), +(106,119,o), +(130,232,cs), +(156,356,o), +(205,436,o), +(278,436,cs), +(377,436,o), +(381,344,o), +(355,220,cs), +(329,98,o), +(293,18,o), +(213,18,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-10,o), +(351,48,o), +(386,216,cs), +(414,348,o), +(406,463,o), +(284,463,cs), +(236,463,o), +(180,435,o), +(142,337,c), +(136,337,l), +(192,580,o), +(238,699,o), +(330,699,cs), +(421,699,o), +(416,616,o), +(409,541,c), +(438,541,l), +(447,631,o), +(445,729,o), +(331,729,cs), +(207,729,o), +(148,548,o), +(107,324,cs), +(71,136,o), +(69,-10,o), +(211,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(115,18,o), +(106,119,o), +(130,232,cs), +(156,356,o), +(205,436,o), +(278,436,cs), +(377,436,o), +(381,344,o), +(355,220,cs), +(329,98,o), +(293,18,o), +(213,18,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,-9,o), +(424,64,o), +(457,223,cs), +(485,356,o), +(462,467,o), +(349,477,cs), +(305,481,o), +(261,462,o), +(241,430,c), +(232,430,l), +(249,521,o), +(270,579,o), +(307,579,cs), +(334,579,o), +(345,554,o), +(341,525,c), +(509,525,l), +(524,656,o), +(449,729,o), +(313,729,cs), +(186,729,o), +(91,641,o), +(35,374,cs), +(-13,152,o), +(6,-9,o), +(216,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(187,140,o), +(192,189,o), +(204,246,cs), +(217,309,o), +(231,341,o), +(259,341,cs), +(297,341,o), +(293,295,o), +(280,232,cs), +(269,178,o), +(254,140,o), +(225,140,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,-10,o), +(543,103,o), +(543,241,cs), +(543,368,o), +(454,451,o), +(336,451,cs), +(238,451,o), +(152,405,o), +(113,311,c), +(109,311,l), +(127,557,o), +(233,695,o), +(392,695,cs), +(486,695,o), +(552,644,o), +(561,558,c), +(599,558,l), +(587,661,o), +(507,729,o), +(391,729,cs), +(198,729,o), +(75,550,o), +(75,266,cs), +(75,85,o), +(152,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,24,o), +(121,96,o), +(121,211,cs), +(121,332,o), +(210,417,o), +(330,417,cs), +(433,417,o), +(504,348,o), +(504,241,cs), +(504,112,o), +(419,24,o), +(295,24,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 85; +}; +}; +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(454,-10,o), +(575,95,o), +(575,258,cs), +(575,389,o), +(481,470,o), +(369,470,cs), +(314,470,o), +(260,449,o), +(236,417,c), +(229,420,l), +(246,521,o), +(292,569,o), +(360,569,cs), +(401,569,o), +(432,551,o), +(437,518,c), +(622,518,l), +(613,648,o), +(512,729,o), +(376,729,cs), +(153,729,o), +(37,536,o), +(37,284,cs), +(37,106,o), +(123,-10,o), +(297,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,152,o), +(221,184,o), +(221,232,cs), +(221,286,o), +(250,335,o), +(313,335,cs), +(357,335,o), +(386,303,o), +(386,255,cs), +(386,192,o), +(350,152,o), +(293,152,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(528,-10,o), +(643,90,o), +(643,251,cs), +(643,389,o), +(541,464,o), +(399,464,cs), +(280,464,o), +(177,412,o), +(129,311,c), +(126,311,l), +(150,542,o), +(251,695,o), +(444,695,cs), +(575,695,o), +(653,633,o), +(658,537,c), +(694,537,l), +(690,657,o), +(589,729,o), +(445,729,cs), +(193,729,o), +(89,492,o), +(89,254,cs), +(89,89,o), +(167,-10,o), +(358,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,24,o), +(131,91,o), +(131,204,cs), +(131,338,o), +(235,432,o), +(391,432,cs), +(519,432,o), +(604,364,o), +(604,253,cs), +(604,122,o), +(521,24,o), +(356,24,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(544,-11,o), +(685,91,o), +(685,259,cs), +(685,398,o), +(591,472,o), +(442,472,cs), +(381,472,o), +(317,453,o), +(287,426,c), +(279,429,l), +(295,514,o), +(353,561,o), +(423,561,cs), +(477,561,o), +(509,546,o), +(519,506,c), +(732,506,l), +(720,643,o), +(621,729,o), +(440,729,cs), +(173,729,o), +(43,512,o), +(43,275,cs), +(43,78,o), +(168,-11,o), +(350,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,156,o), +(268,183,o), +(268,230,cs), +(268,294,o), +(314,327,o), +(378,327,cs), +(431,327,o), +(466,303,o), +(466,253,cs), +(466,182,o), +(416,156,o), +(355,156,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 80; +monoWidth = 700; +}; +}; +width = 720; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/sixinferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/sixinferior.glyph new file mode 100644 index 00000000..afd2f2fb --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/sixinferior.glyph @@ -0,0 +1,1373 @@ +{ +glyphname = sixinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (154,177); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(244,-45,o), +(293,3,o), +(293,105,cs), +(293,198,o), +(265,250,o), +(195,250,cs), +(166,250,o), +(142,236,o), +(135,218,c), +(129,218,l), +(128,277,o), +(135,306,o), +(158,306,cs), +(171,306,o), +(182,295,o), +(182,275,c), +(287,275,l), +(284,361,o), +(230,398,o), +(158,398,cs), +(73,398,o), +(15,351,o), +(15,172,cs), +(15,42,o), +(43,-45,o), +(158,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,46,o), +(135,58,o), +(135,107,cs), +(135,144,o), +(140,164,o), +(160,164,cs), +(174,164,o), +(183,152,o), +(183,103,cs), +(183,68,o), +(178,46,o), +(158,46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 307; +}, +{ +anchors = ( +{ +name = _center; +pos = (143,177); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(203,-46,o), +(239,-9,o), +(239,99,cs), +(239,184,o), +(217,239,o), +(152,239,cs), +(119,239,o), +(88,218,o), +(78,163,c), +(75,163,l), +(77,304,o), +(89,372,o), +(145,372,cs), +(177,372,o), +(196,353,o), +(202,289,c), +(230,289,l), +(224,361,o), +(198,398,o), +(145,398,cs), +(82,398,o), +(44,345,o), +(47,150,cs), +(49,26,o), +(70,-46,o), +(147,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(109,-20,o), +(83,12,o), +(83,95,cs), +(83,166,o), +(103,215,o), +(147,215,cs), +(184,215,o), +(209,192,o), +(209,99,cs), +(209,28,o), +(197,-20,o), +(147,-20,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 281; +}, +{ +anchors = ( +{ +name = _center; +pos = (226,173); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(337,-45,o), +(409,9,o), +(409,100,cs), +(409,188,o), +(343,238,o), +(239,238,cs), +(161,238,o), +(100,201,o), +(82,144,c), +(79,145,l), +(80,275,o), +(105,367,o), +(237,367,cs), +(306,367,o), +(356,339,o), +(364,289,c), +(401,289,l), +(394,353,o), +(331,397,o), +(238,397,cs), +(108,397,o), +(43,323,o), +(43,149,cs), +(43,29,o), +(95,-45,o), +(230,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,-14,o), +(89,22,o), +(89,95,cs), +(89,159,o), +(144,209,o), +(233,209,cs), +(315,209,o), +(370,173,o), +(370,99,cs), +(370,31,o), +(324,-14,o), +(231,-14,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 447; +}, +{ +anchors = ( +{ +name = _center; +pos = (231,171); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-45,o), +(445,11,o), +(445,112,cs), +(445,198,o), +(380,247,o), +(284,247,cs), +(234,247,o), +(193,231,o), +(173,207,c), +(166,208,l), +(168,262,o), +(197,286,o), +(239,286,cs), +(267,286,o), +(282,282,o), +(293,268,c), +(439,268,l), +(425,346,o), +(353,398,o), +(244,398,cs), +(122,398,o), +(17,340,o), +(17,174,cs), +(17,-3,o), +(125,-45,o), +(235,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,66,o), +(181,79,o), +(181,106,cs), +(181,131,o), +(198,147,o), +(238,147,cs), +(276,147,o), +(296,133,o), +(296,106,cs), +(296,82,o), +(277,66,o), +(238,66,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 461; +}, +{ +anchors = ( +{ +name = _center; +pos = (123,177); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(183,-46,o), +(219,-9,o), +(219,99,cs), +(219,184,o), +(197,239,o), +(132,239,cs), +(99,239,o), +(68,218,o), +(58,163,c), +(55,163,l), +(57,304,o), +(69,372,o), +(125,372,cs), +(157,372,o), +(176,353,o), +(182,289,c), +(210,289,l), +(204,361,o), +(178,398,o), +(125,398,cs), +(62,398,o), +(24,345,o), +(27,150,cs), +(29,26,o), +(50,-46,o), +(127,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(89,-20,o), +(63,12,o), +(63,95,cs), +(63,166,o), +(83,215,o), +(127,215,cs), +(164,215,o), +(189,192,o), +(189,99,cs), +(189,28,o), +(177,-20,o), +(127,-20,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 241; +}, +{ +anchors = ( +{ +name = _center; +pos = (145,177); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,-45,o), +(284,3,o), +(284,105,cs), +(284,198,o), +(256,250,o), +(186,250,cs), +(157,250,o), +(133,236,o), +(126,218,c), +(120,218,l), +(119,277,o), +(126,306,o), +(149,306,cs), +(162,306,o), +(173,295,o), +(173,275,c), +(278,275,l), +(275,361,o), +(221,398,o), +(149,398,cs), +(64,398,o), +(6,351,o), +(6,172,cs), +(6,42,o), +(34,-45,o), +(149,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(135,46,o), +(126,58,o), +(126,107,cs), +(126,144,o), +(131,164,o), +(151,164,cs), +(165,164,o), +(174,152,o), +(174,103,cs), +(174,68,o), +(169,46,o), +(149,46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 289; +}, +{ +anchors = ( +{ +name = _center; +pos = (191,174); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,-45,o), +(338,10,o), +(338,96,cs), +(338,177,o), +(283,232,o), +(202,232,cs), +(138,232,o), +(93,199,o), +(79,150,c), +(77,150,l), +(79,280,o), +(98,368,o), +(200,368,cs), +(249,368,o), +(291,346,o), +(300,291,c), +(334,291,l), +(328,355,o), +(275,398,o), +(201,398,cs), +(95,398,o), +(44,324,o), +(44,148,cs), +(44,27,o), +(91,-45,o), +(193,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,-14,o), +(85,26,o), +(85,92,cs), +(85,154,o), +(127,203,o), +(196,203,cs), +(258,203,o), +(302,162,o), +(302,96,cs), +(302,30,o), +(259,-14,o), +(195,-14,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 377; +}, +{ +anchors = ( +{ +name = _center; +pos = (190,174); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(296,-45,o), +(365,17,o), +(365,109,cs), +(365,189,o), +(311,244,o), +(229,244,cs), +(187,244,o), +(156,230,o), +(140,213,c), +(135,213,l), +(135,266,o), +(163,291,o), +(197,291,cs), +(216,291,o), +(237,283,o), +(242,269,c), +(370,269,l), +(359,348,o), +(297,399,o), +(199,399,cs), +(79,399,o), +(10,318,o), +(10,174,cs), +(10,17,o), +(83,-45,o), +(189,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,65,o), +(149,83,o), +(149,108,cs), +(149,134,o), +(167,150,o), +(193,150,cs), +(220,150,o), +(238,132,o), +(238,107,cs), +(238,82,o), +(220,65,o), +(193,65,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 378; +}, +{ +anchors = ( +{ +name = _center; +pos = (216,173); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(327,-45,o), +(399,9,o), +(399,100,cs), +(399,188,o), +(333,238,o), +(229,238,cs), +(151,238,o), +(90,201,o), +(72,144,c), +(69,145,l), +(70,275,o), +(95,367,o), +(227,367,cs), +(296,367,o), +(346,339,o), +(354,289,c), +(391,289,l), +(384,353,o), +(321,397,o), +(228,397,cs), +(98,397,o), +(33,323,o), +(33,149,cs), +(33,29,o), +(85,-45,o), +(220,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(137,-14,o), +(79,22,o), +(79,95,cs), +(79,159,o), +(134,209,o), +(223,209,cs), +(305,209,o), +(360,173,o), +(360,99,cs), +(360,31,o), +(314,-14,o), +(221,-14,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 427; +}, +{ +anchors = ( +{ +name = _center; +pos = (221,171); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-45,o), +(435,11,o), +(435,112,cs), +(435,198,o), +(370,247,o), +(274,247,cs), +(224,247,o), +(183,231,o), +(163,207,c), +(156,208,l), +(158,262,o), +(187,286,o), +(229,286,cs), +(257,286,o), +(272,282,o), +(283,268,c), +(429,268,l), +(415,346,o), +(343,398,o), +(234,398,cs), +(112,398,o), +(7,340,o), +(7,174,cs), +(7,-3,o), +(115,-45,o), +(225,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,66,o), +(171,79,o), +(171,106,cs), +(171,131,o), +(188,147,o), +(228,147,cs), +(266,147,o), +(286,133,o), +(286,106,cs), +(286,82,o), +(267,66,o), +(228,66,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 441; +}, +{ +anchors = ( +{ +name = _center; +pos = (210,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-45,o), +(353,10,o), +(353,96,cs), +(353,177,o), +(300,232,o), +(221,232,cs), +(157,232,o), +(114,199,o), +(100,150,c), +(98,150,l), +(100,280,o), +(119,368,o), +(219,368,cs), +(266,368,o), +(308,346,o), +(317,291,c), +(349,291,l), +(345,355,o), +(292,398,o), +(220,398,cs), +(116,398,o), +(65,324,o), +(65,148,cs), +(65,27,o), +(112,-45,o), +(212,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,-14,o), +(106,26,o), +(106,92,cs), +(106,154,o), +(148,203,o), +(215,203,cs), +(275,203,o), +(319,162,o), +(319,96,cs), +(319,30,o), +(276,-14,o), +(214,-14,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 414; +}, +{ +anchors = ( +{ +name = _center; +pos = (203,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-45,o), +(371,17,o), +(371,109,cs), +(371,189,o), +(320,244,o), +(242,244,cs), +(203,244,o), +(173,230,o), +(158,213,c), +(153,213,l), +(153,266,o), +(180,291,o), +(210,291,cs), +(225,291,o), +(245,284,o), +(249,269,c), +(376,269,l), +(365,348,o), +(306,399,o), +(212,399,cs), +(96,399,o), +(30,317,o), +(30,174,cs), +(30,17,o), +(101,-45,o), +(202,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,65,o), +(167,83,o), +(167,108,cs), +(167,134,o), +(183,150,o), +(206,150,cs), +(230,150,o), +(246,132,o), +(246,107,cs), +(246,82,o), +(230,65,o), +(206,65,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 403; +}, +{ +anchors = ( +{ +name = _center; +pos = (125,177); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(142,-46,o), +(182,-10,o), +(203,92,cs), +(220,173,o), +(212,239,o), +(142,239,cs), +(113,239,o), +(81,223,o), +(59,169,c), +(55,169,l), +(86,304,o), +(113,371,o), +(163,371,cs), +(207,371,o), +(213,335,o), +(207,284,c), +(234,283,l), +(241,346,o), +(230,392,o), +(170,397,cs), +(112,401,o), +(64,355,o), +(26,158,cs), +(0,26,o), +(12,-46,o), +(94,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(41,-20,o), +(37,36,o), +(50,99,cs), +(65,170,o), +(91,215,o), +(132,215,cs), +(182,215,o), +(190,169,o), +(174,94,cs), +(159,24,o), +(139,-20,o), +(95,-20,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 279; +}, +{ +anchors = ( +{ +name = _center; +pos = (136,177); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,-45,o), +(234,-2,o), +(254,93,cs), +(271,175,o), +(257,240,o), +(189,246,cs), +(157,249,o), +(135,236,o), +(124,219,c), +(118,219,l), +(128,273,o), +(140,306,o), +(162,306,cs), +(179,306,o), +(184,290,o), +(182,275,c), +(285,275,l), +(294,354,o), +(248,397,o), +(166,397,cs), +(92,397,o), +(31,349,o), +(-3,185,cs), +(-32,47,o), +(-7,-45,o), +(108,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(91,46,o), +(94,75,o), +(101,108,cs), +(108,142,o), +(116,163,o), +(133,163,cs), +(155,163,o), +(153,136,o), +(146,101,cs), +(139,67,o), +(130,46,o), +(113,46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 304; +}, +{ +anchors = ( +{ +name = _center; +pos = (201,177); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(268,-46,o), +(327,21,o), +(327,106,cs), +(327,182,o), +(274,232,o), +(204,232,cs), +(148,232,o), +(100,206,o), +(78,155,c), +(75,155,l), +(86,291,o), +(145,367,o), +(232,367,cs), +(281,367,o), +(320,342,o), +(326,292,c), +(360,292,l), +(353,355,o), +(306,397,o), +(233,397,cs), +(115,397,o), +(42,289,o), +(42,120,cs), +(42,12,o), +(89,-46,o), +(179,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(117,-16,o), +(81,25,o), +(81,88,cs), +(81,155,o), +(129,204,o), +(196,204,cs), +(253,204,o), +(292,165,o), +(292,106,cs), +(292,34,o), +(245,-16,o), +(176,-16,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 417; +}, +{ +anchors = ( +{ +name = _center; +pos = (196,177); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(277,-46,o), +(354,16,o), +(354,115,cs), +(354,194,o), +(294,244,o), +(222,244,cs), +(190,244,o), +(159,233,o), +(145,219,c), +(141,221,l), +(150,273,o), +(178,291,o), +(211,291,cs), +(234,291,o), +(252,283,o), +(255,267,c), +(381,267,l), +(375,346,o), +(311,397,o), +(222,397,cs), +(80,397,o), +(10,282,o), +(10,136,cs), +(10,27,o), +(65,-46,o), +(178,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(151,62,o), +(135,79,o), +(135,102,cs), +(135,129,o), +(149,154,o), +(184,154,cs), +(209,154,o), +(225,137,o), +(225,113,cs), +(225,82,o), +(207,62,o), +(175,62,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 417; +}, +{ +anchors = ( +{ +name = _center; +pos = (215,177); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,-46,o), +(377,13,o), +(380,104,cs), +(383,189,o), +(319,239,o), +(223,239,cs), +(150,239,o), +(88,210,o), +(60,156,c), +(58,156,l), +(70,283,o), +(131,366,o), +(245,366,cs), +(323,366,o), +(370,333,o), +(375,280,c), +(410,279,l), +(406,350,o), +(344,397,o), +(247,397,cs), +(117,397,o), +(27,306,o), +(21,129,cs), +(17,18,o), +(69,-46,o), +(197,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(110,-15,o), +(57,26,o), +(60,91,cs), +(63,164,o), +(125,211,o), +(214,211,cs), +(289,211,o), +(345,173,o), +(343,107,cs), +(340,29,o), +(285,-15,o), +(196,-15,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 452; +}, +{ +anchors = ( +{ +name = _center; +pos = (213,177); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,-47,o), +(403,14,o), +(406,107,cs), +(409,197,o), +(348,244,o), +(250,244,cs), +(212,244,o), +(175,235,o), +(158,225,c), +(152,228,l), +(160,266,o), +(194,285,o), +(233,285,cs), +(263,285,o), +(282,281,o), +(289,262,c), +(433,260,l), +(424,347,o), +(358,397,o), +(244,397,cs), +(102,397,o), +(-1,306,o), +(-7,140,cs), +(-12,10,o), +(72,-47,o), +(192,-47,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,65,o), +(144,79,o), +(145,103,cs), +(146,133,o), +(170,147,o), +(207,147,cs), +(239,147,o), +(259,133,o), +(258,109,cs), +(257,77,o), +(231,65,o), +(195,65,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 456; +} +); +unicode = 8326; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/sixsuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/sixsuperior.glyph new file mode 100644 index 00000000..1f5f2769 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/sixsuperior.glyph @@ -0,0 +1,480 @@ +{ +color = 6; +glyphname = sixsuperior; +kernLeft = KO_sixsuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 307; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 281; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 447; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 461; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 281; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 289; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = sixinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = sixinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 417; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = sixinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = sixinferior; +}; +width = 400; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 447; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 461; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = sixinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = sixinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 414; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = sixinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = sixinferior; +}; +width = 403; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 279; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 304; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 417; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 417; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 452; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 456; +} +); +unicode = 8310; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/slash.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/slash.glyph new file mode 100644 index 00000000..6cec1bba --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/slash.glyph @@ -0,0 +1,353 @@ +{ +glyphname = slash; +kernLeft = KO_slash; +kernRight = KO_slash; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,-82,l), +(368,729,l), +(205,729,l), +(-2,-82,l) +); +} +); +width = 366; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-82,l), +(202,729,l), +(173,729,l), +(-32,-82,l) +); +} +); +width = 190; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(28,-81,l), +(437,729,l), +(401,729,l), +(-11,-81,l) +); +} +); +width = 444; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,-82,l), +(531,729,l), +(320,729,l), +(-24,-82,l) +); +} +); +width = 535; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(-1,-82,l), +(204,729,l), +(175,729,l), +(-30,-82,l) +); +} +); +width = 189; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,-82,l), +(363,729,l), +(200,729,l), +(-7,-82,l) +); +} +); +width = 356; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(7,-81,l), +(331,729,l), +(295,729,l), +(-32,-81,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 324; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,-82,l), +(450,729,l), +(267,729,l), +(-20,-82,l) +); +} +); +width = 449; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(23,-81,l), +(432,729,l), +(396,729,l), +(-16,-81,l) +); +} +); +width = 434; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-82,l), +(526,729,l), +(315,729,l), +(-29,-82,l) +); +} +); +width = 525; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(27,-81,l), +(345,729,l), +(309,729,l), +(-12,-81,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 355; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-82,l), +(446,729,l), +(265,729,l), +(-9,-82,l) +); +} +); +width = 460; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-65,-82,l), +(309,729,l), +(279,729,l), +(-94,-82,l) +); +} +); +width = 200; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-82,l), +(471,729,l), +(301,729,l), +(-75,-82,l) +); +} +); +width = 374; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-34,-81,l), +(456,729,l), +(418,729,l), +(-74,-81,l) +); +} +); +width = 372; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(115,-82,l), +(572,729,l), +(379,729,l), +(-76,-82,l) +); +} +); +width = 495; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(-43,-81,l), +(533,729,l), +(496,729,l), +(-81,-81,l) +); +} +); +width = 445; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(126,-82,l), +(639,729,l), +(414,729,l), +(-97,-82,l) +); +} +); +width = 520; +} +); +unicode = 47; +userData = { +KernOnName = slash; +KernOnSpecialSpacing = { +L = slash; +R = slash; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/slashlongcomb.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/slashlongcomb.case.glyph new file mode 100644 index 00000000..b07b9201 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/slashlongcomb.case.glyph @@ -0,0 +1,397 @@ +{ +glyphname = slashlongcomb.case; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (265,324); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-82,l), +(490,729,l), +(407,729,l), +(40,-82,l) +); +} +); +width = 530; +}, +{ +anchors = ( +{ +name = _center; +pos = (228,324); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(71,-82,l), +(416,729,l), +(385,729,l), +(40,-82,l) +); +} +); +width = 456; +}, +{ +anchors = ( +{ +name = _center; +pos = (390,324); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(86,-81,l), +(740,729,l), +(697,729,l), +(40,-81,l) +); +} +); +width = 780; +}, +{ +anchors = ( +{ +name = _center; +pos = (463,324); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,-81,l), +(886,729,l), +(697,729,l), +(40,-81,l) +); +} +); +width = 926; +}, +{ +anchors = ( +{ +name = _center; +pos = (208,324); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,-82,l), +(396,729,l), +(365,729,l), +(20,-82,l) +); +} +); +width = 416; +}, +{ +anchors = ( +{ +name = _center; +pos = (255,324); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,-82,l), +(480,729,l), +(397,729,l), +(30,-82,l) +); +} +); +width = 510; +}, +{ +anchors = ( +{ +name = _center; +pos = (339,324); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(64,-81,l), +(658,729,l), +(617,729,l), +(20,-81,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 441; +}; +width = 678; +}, +{ +anchors = ( +{ +name = _center; +pos = (393,324); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(171,-81,l), +(765,729,l), +(616,729,l), +(19,-81,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 552; +}; +width = 784; +}, +{ +anchors = ( +{ +name = _center; +pos = (380,324); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,-81,l), +(730,729,l), +(687,729,l), +(30,-81,l) +); +} +); +width = 760; +}, +{ +anchors = ( +{ +name = _center; +pos = (453,324); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,-81,l), +(876,729,l), +(687,729,l), +(30,-81,l) +); +} +); +width = 906; +}, +{ +anchors = ( +{ +name = _center; +pos = (354,324); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(85,-81,l), +(667,729,l), +(628,729,l), +(43,-81,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 441; +}; +width = 709; +}, +{ +anchors = ( +{ +name = _center; +pos = (404,324); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(189,-81,l), +(767,729,l), +(620,729,l), +(39,-81,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 552; +}; +width = 805; +}, +{ +anchors = ( +{ +name = _center; +pos = (222,324); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(0,-82,l), +(473,729,l), +(443,729,l), +(-30,-82,l) +); +} +); +width = 415; +}, +{ +anchors = ( +{ +name = _center; +pos = (248,324); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,-82,l), +(529,729,l), +(442,729,l), +(-33,-82,l) +); +} +); +width = 474; +}, +{ +anchors = ( +{ +name = _center; +pos = (371,324); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(14,-81,l), +(771,729,l), +(729,729,l), +(-30,-81,l) +); +} +); +width = 714; +}, +{ +anchors = ( +{ +name = _center; +pos = (409,324); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,-81,l), +(877,729,l), +(726,729,l), +(-33,-81,l) +); +} +); +width = 822; +}, +{ +anchors = ( +{ +name = _center; +pos = (402,324); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(17,-81,l), +(833,729,l), +(789,729,l), +(-30,-81,l) +); +} +); +width = 776; +}, +{ +anchors = ( +{ +name = _center; +pos = (479,324); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,-81,l), +(991,729,l), +(786,729,l), +(-33,-81,l) +); +} +); +width = 936; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/slashlongcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/slashlongcomb.glyph new file mode 100644 index 00000000..b7ae5ecf --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/slashlongcomb.glyph @@ -0,0 +1,404 @@ +{ +glyphname = slashlongcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (192,271); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,-60,l), +(343,601,l), +(290,601,l), +(40,-60,l) +); +} +); +width = 383; +}, +{ +anchors = ( +{ +name = _center; +pos = (175,258); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,-60,l), +(309,576,l), +(280,576,l), +(40,-60,l) +); +} +); +width = 349; +}, +{ +anchors = ( +{ +name = _center; +pos = (320,259); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(84,-60,l), +(599,577,l), +(558,577,l), +(40,-60,l) +); +} +); +width = 639; +}, +{ +anchors = ( +{ +name = _center; +pos = (379,272); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,-60,l), +(717,604,l), +(577,604,l), +(40,-60,l) +); +} +); +width = 757; +}, +{ +anchors = ( +{ +name = _center; +pos = (155,258); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,-60,l), +(289,576,l), +(260,576,l), +(20,-60,l) +); +} +); +width = 309; +}, +{ +anchors = ( +{ +name = _center; +pos = (182,271); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,-60,l), +(333,601,l), +(280,601,l), +(30,-60,l) +); +} +); +width = 363; +}, +{ +anchors = ( +{ +name = _center; +pos = (275,259); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(61,-60,l), +(529,577,l), +(489,577,l), +(20,-60,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 441; +}; +width = 549; +}, +{ +anchors = ( +{ +name = _center; +pos = (319,272); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,-60,l), +(619,604,l), +(509,604,l), +(19,-60,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 552; +}; +width = 638; +}, +{ +anchors = ( +{ +name = _center; +pos = (310,259); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(74,-60,l), +(589,577,l), +(548,577,l), +(30,-60,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (369,272); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,-60,l), +(707,604,l), +(567,604,l), +(30,-60,l) +); +} +); +width = 737; +}, +{ +anchors = ( +{ +name = _center; +pos = (292,259); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(82,-60,l), +(542,577,l), +(502,577,l), +(43,-60,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 441; +}; +width = 582; +}, +{ +anchors = ( +{ +name = _center; +pos = (331,272); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(149,-60,l), +(623,604,l), +(514,604,l), +(39,-60,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 552; +}; +width = 660; +}, +{ +anchors = ( +{ +name = _center; +pos = (175,258); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(5,-60,l), +(376,576,l), +(345,576,l), +(-26,-60,l) +); +} +); +width = 350; +}, +{ +anchors = ( +{ +name = _center; +pos = (190,271); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(26,-60,l), +(413,601,l), +(358,601,l), +(-28,-60,l) +); +} +); +width = 385; +}, +{ +anchors = ( +{ +name = _center; +pos = (294,259); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(18,-60,l), +(614,577,l), +(571,577,l), +(-26,-60,l) +); +} +); +width = 588; +}, +{ +anchors = ( +{ +name = _center; +pos = (341,272); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-60,l), +(715,604,l), +(596,604,l), +(-29,-60,l) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = _center; +pos = (319,259); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(21,-60,l), +(663,577,l), +(620,577,l), +(-26,-60,l) +); +} +); +width = 637; +}, +{ +anchors = ( +{ +name = _center; +pos = (380,272); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(124,-60,l), +(794,604,l), +(642,604,l), +(-29,-60,l) +); +} +); +width = 765; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 824; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/slashshortcomb.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/slashshortcomb.case.glyph new file mode 100644 index 00000000..1fee34a6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/slashshortcomb.case.glyph @@ -0,0 +1,385 @@ +{ +glyphname = slashshortcomb.case; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (228,342); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,342,l), +(228,374,l), +(40,243,l), +(40,211,l) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = _center; +pos = (318,403); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,403,l), +(318,543,l), +(40,350,l), +(40,214,l) +); +} +); +width = 358; +}, +{ +anchors = ( +{ +name = _center; +pos = (400,294); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,359,l), +(400,396,l), +(40,237,l), +(40,200,l) +); +} +); +width = 440; +}, +{ +anchors = ( +{ +name = _center; +pos = (457,295); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,318,l), +(457,493,l), +(40,309,l), +(40,134,l) +); +} +); +width = 497; +}, +{ +anchors = ( +{ +name = _center; +pos = (208,342); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,342,l), +(208,374,l), +(20,243,l), +(20,211,l) +); +} +); +width = 228; +}, +{ +anchors = ( +{ +name = _center; +pos = (308,403); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,403,l), +(308,543,l), +(30,350,l), +(30,214,l) +); +} +); +width = 338; +}, +{ +anchors = ( +{ +name = _center; +pos = (335,340); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(335,340,l), +(335,375,l), +(20,236,l), +(20,201,l) +); +} +); +width = 355; +}, +{ +anchors = ( +{ +name = _center; +pos = (406,305); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(406,305,l), +(406,480,l), +(19,309,l), +(19,134,l) +); +} +); +width = 425; +}, +{ +anchors = ( +{ +name = _center; +pos = (390,294); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(390,359,l), +(390,396,l), +(30,237,l), +(30,200,l) +); +} +); +width = 420; +}, +{ +anchors = ( +{ +name = _center; +pos = (447,295); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,318,l), +(447,493,l), +(30,309,l), +(30,134,l) +); +} +); +width = 477; +}, +{ +anchors = ( +{ +name = _center; +pos = (350,340); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(350,340,l), +(350,375,l), +(43,236,l), +(43,201,l) +); +} +); +width = 392; +}, +{ +anchors = ( +{ +name = _center; +pos = (412,305); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(412,305,l), +(412,480,l), +(39,309,l), +(39,134,l) +); +} +); +width = 449; +}, +{ +anchors = ( +{ +name = _center; +pos = (183,294); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(245,341,l), +(253,376,l), +(38,246,l), +(30,210,l) +); +} +); +width = 269; +}, +{ +anchors = ( +{ +name = _center; +pos = (343,395); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,395,l), +(376,551,l), +(58,358,l), +(27,206,l) +); +} +); +width = 358; +}, +{ +anchors = ( +{ +name = _center; +pos = (363,294); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,339,l), +(380,376,l), +(36,237,l), +(29,200,l) +); +} +); +width = 396; +}, +{ +anchors = ( +{ +name = _center; +pos = (433,300); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,300,l), +(471,484,l), +(48,313,l), +(10,129,l) +); +} +); +width = 467; +}, +{ +anchors = ( +{ +name = _center; +pos = (409,294); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(422,358,l), +(429,397,l), +(36,238,l), +(29,199,l) +); +} +); +width = 441; +}, +{ +anchors = ( +{ +name = _center; +pos = (462,295); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,318,l), +(503,493,l), +(48,309,l), +(12,134,l) +); +} +); +width = 497; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/slashshortcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/slashshortcomb.glyph new file mode 100644 index 00000000..e3ee4e2e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/slashshortcomb.glyph @@ -0,0 +1,386 @@ +{ +glyphname = slashshortcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (102,354); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,374,l), +(164,403,l), +(40,333,l), +(40,304,l) +); +} +); +width = 204; +}, +{ +anchors = ( +{ +name = _center; +pos = (162,292); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,286,l), +(284,439,l), +(40,298,l), +(40,144,l) +); +} +); +width = 324; +}, +{ +anchors = ( +{ +name = _center; +pos = (134,342); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,376,l), +(228,413,l), +(40,308,l), +(40,270,l) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = _center; +pos = (196,302); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,305,l), +(351,479,l), +(40,300,l), +(40,124,l) +); +} +); +width = 391; +}, +{ +anchors = ( +{ +name = _center; +pos = (82,354); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,374,l), +(144,403,l), +(20,333,l), +(20,304,l) +); +} +); +width = 164; +}, +{ +anchors = ( +{ +name = _center; +pos = (152,292); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,286,l), +(274,439,l), +(30,298,l), +(30,144,l) +); +} +); +width = 304; +}, +{ +anchors = ( +{ +name = _center; +pos = (114,342); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,376,l), +(208,413,l), +(20,308,l), +(20,270,l) +); +} +); +width = 228; +}, +{ +anchors = ( +{ +name = _center; +pos = (159,302); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,306,l), +(298,459,l), +(19,298,l), +(19,144,l) +); +} +); +width = 317; +}, +{ +anchors = ( +{ +name = _center; +pos = (124,342); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,376,l), +(218,413,l), +(30,308,l), +(30,270,l) +); +} +); +width = 248; +}, +{ +anchors = ( +{ +name = _center; +pos = (186,302); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(341,305,l), +(341,479,l), +(30,300,l), +(30,124,l) +); +} +); +width = 371; +}, +{ +anchors = ( +{ +name = _center; +pos = (135,342); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(227,376,l), +(227,413,l), +(43,308,l), +(43,270,l) +); +} +); +width = 267; +}, +{ +anchors = ( +{ +name = _center; +pos = (172,302); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(305,306,l), +(305,459,l), +(39,298,l), +(39,144,l) +); +} +); +width = 343; +}, +{ +anchors = ( +{ +name = _center; +pos = (122,354); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,373,l), +(194,404,l), +(56,334,l), +(50,303,l) +); +} +); +width = 204; +}, +{ +anchors = ( +{ +name = _center; +pos = (167,292); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,286,l), +(320,439,l), +(46,298,l), +(14,144,l) +); +} +); +width = 325; +}, +{ +anchors = ( +{ +name = _center; +pos = (151,342); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,376,l), +(260,413,l), +(50,308,l), +(42,270,l) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = _center; +pos = (186,302); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,306,l), +(358,459,l), +(45,298,l), +(13,144,l) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = _center; +pos = (151,342); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,376,l), +(260,413,l), +(50,308,l), +(42,270,l) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = _center; +pos = (202,302); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,305,l), +(394,479,l), +(46,300,l), +(9,124,l) +); +} +); +width = 391; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 823; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/space.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/space.glyph new file mode 100644 index 00000000..e9708037 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/space.glyph @@ -0,0 +1,84 @@ +{ +glyphname = space; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +width = 150; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +width = 239; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +width = 260; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +width = 210; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +width = 160; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +width = 135; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +width = 210; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +width = 180; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +width = 240; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +width = 205; +}, +{ +layerId = m019; +width = 250; +}, +{ +layerId = m020; +width = 218; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +width = 237; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +width = 149; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +width = 237; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +width = 201; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +width = 237; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +width = 201; +} +); +unicode = 32; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/sterling.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/sterling.glyph new file mode 100644 index 00000000..1f4c8c4d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/sterling.glyph @@ -0,0 +1,1631 @@ +{ +glyphname = sterling; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(629,0,l), +(629,239,l), +(467,239,l), +(467,162,l), +(286,162,l), +(286,292,l), +(504,292,l), +(504,443,l), +(286,443,l), +(286,500,ls), +(286,550,o), +(311,569,o), +(346,569,cs), +(373,569,o), +(396,557,o), +(402,525,c), +(599,525,l), +(592,653,o), +(492,738,o), +(349,738,cs), +(193,738,o), +(89,647,o), +(89,500,cs), +(89,443,l), +(24,443,l), +(24,292,l), +(89,292,l), +(89,162,l), +(24,162,l), +(24,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,132,l), +(259,179,o), +(274,230,o), +(274,298,cs), +(274,372,o), +(248,455,o), +(248,508,cs), +(248,568,o), +(263,588,o), +(288,588,cs), +(320,588,o), +(331,560,o), +(330,501,c), +(492,501,l), +(496,642,o), +(431,737,o), +(283,737,cs), +(164,737,o), +(74,654,o), +(74,511,cs), +(74,437,o), +(99,364,o), +(99,289,cs), +(99,237,o), +(91,194,o), +(66,132,c) +); +}, +{ +closed = 1; +nodes = ( +(489,0,l), +(489,223,l), +(346,223,l), +(346,135,l), +(20,135,l), +(20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(368,296,l), +(368,420,l), +(27,420,l), +(27,296,l) +); +} +); +width = 514; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(461,0,l), +(461,177,l), +(430,177,l), +(430,29,l), +(182,29,l), +(182,350,l), +(359,350,l), +(359,379,l), +(182,379,l), +(182,539,ls), +(182,639,o), +(217,706,o), +(304,706,cs), +(381,706,o), +(432,658,o), +(432,539,cs), +(432,509,l), +(464,509,l), +(464,539,ls), +(464,657,o), +(413,736,o), +(304,736,cs), +(212,736,o), +(150,674,o), +(150,539,cs), +(150,379,l), +(83,379,l), +(83,350,l), +(150,350,l), +(150,29,l), +(83,29,l), +(83,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,19,l), +(134,82,o), +(149,138,o), +(149,226,cs), +(149,354,o), +(108,439,o), +(108,543,cs), +(108,650,o), +(159,709,o), +(248,709,cs), +(335,709,o), +(375,642,o), +(373,524,c), +(405,524,l), +(408,670,o), +(343,739,o), +(248,739,cs), +(139,739,o), +(76,666,o), +(76,542,cs), +(76,433,o), +(117,354,o), +(117,224,cs), +(117,144,o), +(106,85,o), +(52,19,c) +); +}, +{ +closed = 1; +nodes = ( +(387,0,l), +(387,180,l), +(356,180,l), +(356,29,l), +(22,29,l), +(22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(312,355,l), +(312,384,l), +(37,384,l), +(37,355,l) +); +} +); +width = 443; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(88,13,l), +(165,86,o), +(189,157,o), +(189,241,cs), +(189,367,o), +(107,426,o), +(107,534,cs), +(107,639,o), +(193,700,o), +(334,700,cs), +(472,700,o), +(554,637,o), +(554,526,c), +(595,527,l), +(595,659,o), +(494,738,o), +(334,738,cs), +(171,738,o), +(68,661,o), +(68,535,cs), +(68,420,o), +(148,364,o), +(148,241,cs), +(148,155,o), +(125,99,o), +(57,31,c) +); +}, +{ +closed = 1; +nodes = ( +(588,0,l), +(588,178,l), +(551,178,l), +(551,36,l), +(-13,36,l), +(-13,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,345,l), +(453,380,l), +(12,380,l), +(12,345,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,29,l), +(210,76,o), +(232,137,o), +(232,208,cs), +(232,326,o), +(145,399,o), +(145,510,cs), +(145,626,o), +(231,702,o), +(364,702,cs), +(501,702,o), +(585,628,o), +(585,506,c), +(624,506,l), +(625,648,o), +(524,739,o), +(364,739,cs), +(209,739,o), +(105,647,o), +(105,510,cs), +(105,389,o), +(193,318,o), +(193,208,cs), +(193,130,o), +(164,74,o), +(108,30,c) +); +}, +{ +closed = 1; +nodes = ( +(613,0,l), +(613,176,l), +(576,176,l), +(576,36,l), +(32,36,l), +(32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(498,330,l), +(498,365,l), +(57,365,l), +(57,330,l) +); +} +); +width = 674; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,132,l), +(354,183,o), +(382,241,o), +(382,301,cs), +(382,381,o), +(338,438,o), +(338,492,cs), +(338,543,o), +(377,567,o), +(426,567,cs), +(479,567,o), +(509,540,o), +(508,491,c), +(736,491,l), +(739,640,o), +(623,739,o), +(425,739,cs), +(237,739,o), +(109,648,o), +(109,506,cs), +(109,422,o), +(161,369,o), +(161,292,cs), +(161,250,o), +(144,213,o), +(92,153,c) +); +}, +{ +closed = 1; +nodes = ( +(728,0,l), +(728,229,l), +(530,229,l), +(530,155,l), +(22,155,l), +(22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(555,281,l), +(555,423,l), +(37,423,l), +(37,281,l) +); +} +); +width = 761; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(461,0,l), +(461,177,l), +(430,177,l), +(430,29,l), +(182,29,l), +(182,350,l), +(359,350,l), +(359,379,l), +(182,379,l), +(182,539,ls), +(182,639,o), +(217,706,o), +(304,706,cs), +(381,706,o), +(432,658,o), +(432,539,cs), +(432,509,l), +(464,509,l), +(464,539,ls), +(464,657,o), +(413,736,o), +(304,736,cs), +(212,736,o), +(150,674,o), +(150,539,cs), +(150,379,l), +(83,379,l), +(83,350,l), +(150,350,l), +(150,29,l), +(83,29,l), +(83,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(61,19,l), +(114,82,o), +(129,138,o), +(129,226,cs), +(129,354,o), +(88,439,o), +(88,543,cs), +(88,650,o), +(139,709,o), +(228,709,cs), +(315,709,o), +(355,642,o), +(353,524,c), +(385,524,l), +(388,670,o), +(323,739,o), +(228,739,cs), +(119,739,o), +(56,666,o), +(56,542,cs), +(56,433,o), +(97,354,o), +(97,224,cs), +(97,144,o), +(86,85,o), +(32,19,c) +); +}, +{ +closed = 1; +nodes = ( +(367,0,l), +(367,180,l), +(336,180,l), +(336,29,l), +(2,29,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(292,355,l), +(292,384,l), +(17,384,l), +(17,355,l) +); +} +); +width = 403; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(629,0,l), +(629,239,l), +(467,239,l), +(467,162,l), +(286,162,l), +(286,292,l), +(504,292,l), +(504,443,l), +(286,443,l), +(286,500,ls), +(286,550,o), +(311,569,o), +(346,569,cs), +(373,569,o), +(396,557,o), +(402,525,c), +(599,525,l), +(592,653,o), +(492,738,o), +(349,738,cs), +(193,738,o), +(89,647,o), +(89,500,cs), +(89,443,l), +(24,443,l), +(24,292,l), +(89,292,l), +(89,162,l), +(24,162,l), +(24,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,132,l), +(249,179,o), +(264,230,o), +(264,298,cs), +(264,372,o), +(238,455,o), +(238,508,cs), +(238,568,o), +(253,588,o), +(278,588,cs), +(310,588,o), +(321,560,o), +(320,501,c), +(482,501,l), +(486,642,o), +(421,737,o), +(273,737,cs), +(154,737,o), +(64,654,o), +(64,511,cs), +(64,437,o), +(89,364,o), +(89,289,cs), +(89,237,o), +(81,194,o), +(56,132,c) +); +}, +{ +closed = 1; +nodes = ( +(479,0,l), +(479,223,l), +(336,223,l), +(336,135,l), +(10,135,l), +(10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(358,296,l), +(358,420,l), +(17,420,l), +(17,296,l) +); +} +); +width = 494; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,13,l), +(183,86,o), +(203,156,o), +(203,241,cs), +(203,367,o), +(138,426,o), +(138,534,cs), +(138,639,o), +(205,700,o), +(316,700,cs), +(425,700,o), +(489,637,o), +(489,526,c), +(530,527,l), +(530,659,o), +(448,738,o), +(316,738,cs), +(182,738,o), +(98,661,o), +(98,535,cs), +(98,420,o), +(161,364,o), +(161,241,cs), +(161,155,o), +(143,99,o), +(89,31,c) +); +}, +{ +closed = 1; +nodes = ( +(524,0,l), +(524,178,l), +(488,178,l), +(488,36,l), +(32,36,l), +(32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(413,345,l), +(413,380,l), +(52,380,l), +(52,345,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +30 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 583; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(246,150,l), +(316,202,o), +(326,248,o), +(326,310,cs), +(326,375,o), +(302,459,o), +(302,497,cs), +(302,540,o), +(328,569,o), +(371,569,cs), +(409,569,o), +(438,549,o), +(436,494,c), +(619,499,l), +(621,642,o), +(530,738,o), +(365,738,cs), +(210,738,o), +(107,644,o), +(107,504,cs), +(107,439,o), +(130,366,o), +(130,299,cs), +(130,238,o), +(114,204,o), +(82,150,c) +); +}, +{ +closed = 1; +nodes = ( +(613,0,l), +(613,209,l), +(451,209,l), +(451,152,l), +(28,152,l), +(28,0,l) +); +}, +{ +closed = 1; +nodes = ( +(458,294,l), +(458,435,l), +(38,435,l), +(38,294,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(224,146,l), +(295,193,o), +(313,242,o), +(313,308,cs), +(313,375,o), +(277,458,o), +(277,498,cs), +(277,543,o), +(300,573,o), +(350,573,cs), +(387,573,o), +(418,553,o), +(419,500,c), +(597,500,l), +(600,643,o), +(509,738,o), +(344,738,cs), +(190,738,o), +(88,646,o), +(88,507,cs), +(88,439,o), +(121,365,o), +(121,297,cs), +(121,244,o), +(110,208,o), +(73,146,c) +); +}, +{ +closed = 1; +nodes = ( +(590,0,l), +(590,228,l), +(432,228,l), +(432,149,l), +(19,149,l), +(19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(447,288,l), +(447,425,l), +(29,425,l), +(29,288,l) +); +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(88,13,l), +(165,86,o), +(189,157,o), +(189,241,cs), +(189,367,o), +(107,426,o), +(107,534,cs), +(107,639,o), +(193,700,o), +(334,700,cs), +(472,700,o), +(554,637,o), +(554,526,c), +(595,527,l), +(595,659,o), +(494,738,o), +(334,738,cs), +(171,738,o), +(68,661,o), +(68,535,cs), +(68,420,o), +(148,364,o), +(148,241,cs), +(148,155,o), +(125,99,o), +(57,31,c) +); +}, +{ +closed = 1; +nodes = ( +(588,0,l), +(588,178,l), +(551,178,l), +(551,36,l), +(-13,36,l), +(-13,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,345,l), +(453,380,l), +(12,380,l), +(12,345,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,29,l), +(200,76,o), +(222,137,o), +(222,208,cs), +(222,326,o), +(135,399,o), +(135,510,cs), +(135,626,o), +(221,702,o), +(354,702,cs), +(491,702,o), +(575,628,o), +(575,506,c), +(614,506,l), +(615,648,o), +(514,739,o), +(354,739,cs), +(199,739,o), +(95,647,o), +(95,510,cs), +(95,389,o), +(183,318,o), +(183,208,cs), +(183,130,o), +(154,74,o), +(98,30,c) +); +}, +{ +closed = 1; +nodes = ( +(603,0,l), +(603,176,l), +(566,176,l), +(566,36,l), +(22,36,l), +(22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,330,l), +(488,365,l), +(47,365,l), +(47,330,l) +); +} +); +width = 654; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,132,l), +(344,183,o), +(372,241,o), +(372,301,cs), +(372,381,o), +(328,438,o), +(328,492,cs), +(328,543,o), +(367,567,o), +(416,567,cs), +(469,567,o), +(499,540,o), +(498,491,c), +(726,491,l), +(729,640,o), +(613,739,o), +(415,739,cs), +(227,739,o), +(99,648,o), +(99,506,cs), +(99,422,o), +(151,369,o), +(151,292,cs), +(151,250,o), +(134,213,o), +(82,153,c) +); +}, +{ +closed = 1; +nodes = ( +(718,0,l), +(718,229,l), +(520,229,l), +(520,155,l), +(12,155,l), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(545,281,l), +(545,423,l), +(27,423,l), +(27,281,l) +); +} +); +width = 741; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(141,13,l), +(202,86,o), +(222,156,o), +(222,241,cs), +(222,367,o), +(157,426,o), +(157,534,cs), +(157,639,o), +(224,700,o), +(333,700,cs), +(440,700,o), +(502,637,o), +(502,526,c), +(542,527,l), +(542,659,o), +(461,738,o), +(333,738,cs), +(201,738,o), +(119,661,o), +(119,535,cs), +(119,420,o), +(180,364,o), +(180,241,cs), +(180,155,o), +(162,99,o), +(110,31,c) +); +}, +{ +closed = 1; +nodes = ( +(537,0,l), +(537,178,l), +(501,178,l), +(501,36,l), +(53,36,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(428,345,l), +(428,380,l), +(73,380,l), +(73,345,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +30 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 616; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(246,150,l), +(316,202,o), +(326,248,o), +(326,310,cs), +(326,375,o), +(302,459,o), +(302,497,cs), +(302,540,o), +(328,569,o), +(371,569,cs), +(409,569,o), +(438,549,o), +(436,494,c), +(619,499,l), +(621,642,o), +(530,738,o), +(365,738,cs), +(210,738,o), +(107,644,o), +(107,504,cs), +(107,439,o), +(130,366,o), +(130,299,cs), +(130,238,o), +(114,204,o), +(82,150,c) +); +}, +{ +closed = 1; +nodes = ( +(613,0,l), +(613,209,l), +(451,209,l), +(451,152,l), +(28,152,l), +(28,0,l) +); +}, +{ +closed = 1; +nodes = ( +(458,294,l), +(458,435,l), +(38,435,l), +(38,294,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(241,146,l), +(310,194,o), +(327,242,o), +(327,308,cs), +(327,375,o), +(293,458,o), +(293,498,cs), +(293,542,o), +(314,573,o), +(360,573,cs), +(395,573,o), +(424,553,o), +(425,500,c), +(601,500,l), +(604,643,o), +(516,738,o), +(354,738,cs), +(205,738,o), +(106,646,o), +(106,507,cs), +(106,439,o), +(137,365,o), +(137,297,cs), +(137,245,o), +(127,209,o), +(91,146,c) +); +}, +{ +closed = 1; +nodes = ( +(594,0,l), +(594,228,l), +(438,228,l), +(438,149,l), +(39,149,l), +(39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(454,288,l), +(454,425,l), +(49,425,l), +(49,288,l) +); +} +); +width = 641; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(27,19,l), +(93,81,o), +(120,140,o), +(137,222,cs), +(163,348,o), +(139,432,o), +(161,536,cs), +(183,644,o), +(246,702,o), +(335,702,cs), +(422,702,o), +(449,636,o), +(422,519,c), +(454,519,l), +(488,666,o), +(435,732,o), +(342,732,cs), +(233,732,o), +(119,662,o), +(119,407,cs), +(119,398,o), +(119,389,o), +(119,381,cs), +(119,143,o), +(35,55,o), +(-2,19,c) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(366,178,l), +(335,178,l), +(304,29,l), +(-30,29,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(327,351,l), +(333,380,l), +(58,380,l), +(52,351,l) +); +} +); +}; +guides = ( +{ +pos = (315,519); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(38,19,l), +(100,67,o), +(140,140,o), +(157,225,cs), +(183,353,o), +(158,457,o), +(181,570,cs), +(200,661,o), +(250,711,o), +(325,711,cs), +(417,711,o), +(452,637,o), +(414,511,c), +(447,511,l), +(488,655,o), +(436,739,o), +(325,739,cs), +(238,739,o), +(170,676,o), +(150,579,cs), +(126,465,o), +(151,358,o), +(126,234,cs), +(109,149,o), +(73,83,o), +(16,29,c) +); +}, +{ +closed = 1; +nodes = ( +(330,0,l), +(366,177,l), +(335,177,l), +(305,29,l), +(-30,29,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(337,349,l), +(343,378,l), +(68,378,l), +(62,349,l) +); +} +); +width = 437; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,132,l), +(240,179,o), +(266,230,o), +(280,299,cs), +(295,372,o), +(287,452,o), +(299,517,cs), +(309,570,o), +(328,588,o), +(354,588,cs), +(392,588,o), +(388,548,o), +(378,501,c), +(540,501,l), +(566,643,o), +(501,736,o), +(363,737,cs), +(240,738,o), +(157,675,o), +(130,542,cs), +(107,431,o), +(123,366,o), +(107,289,cs), +(97,241,o), +(76,195,o), +(37,132,c) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(479,223,l), +(336,223,l), +(318,135,l), +(-8,135,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(373,296,l), +(399,420,l), +(58,420,l), +(32,296,l) +); +} +); +width = 513; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,18,l), +(188,109,o), +(227,201,o), +(227,313,cs), +(227,387,o), +(210,433,o), +(210,493,cs), +(210,631,o), +(290,696,o), +(411,696,cs), +(510,696,o), +(573,635,o), +(568,527,c), +(609,527,l), +(614,649,o), +(539,731,o), +(408,731,cs), +(267,731,o), +(169,644,o), +(169,489,cs), +(169,426,o), +(185,371,o), +(185,305,cs), +(185,216,o), +(156,129,o), +(42,33,c) +); +}, +{ +closed = 1; +nodes = ( +(491,0,l), +(528,178,l), +(492,178,l), +(462,36,l), +(6,36,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(451,345,l), +(459,380,l), +(98,380,l), +(90,345,l) +); +} +); +width = 622; +}, +{ +guides = ( +{ +pos = (561,500); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,146,l), +(318,204,o), +(346,273,o), +(346,371,cs), +(346,407,o), +(342,444,o), +(342,477,cs), +(342,533,o), +(371,571,o), +(423,571,cs), +(471,571,o), +(495,542,o), +(488,499,c), +(667,499,l), +(681,641,o), +(585,736,o), +(428,736,cs), +(262,736,o), +(151,638,o), +(151,464,cs), +(151,422,o), +(152,398,o), +(152,374,cs), +(152,282,o), +(133,236,o), +(59,146,c) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(601,228,l), +(443,228,l), +(427,149,l), +(14,149,l), +(-17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,288,l), +(499,425,l), +(81,425,l), +(53,288,l) +); +} +); +width = 659; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,25,l), +(177,71,o), +(228,164,o), +(228,267,cs), +(228,353,o), +(193,399,o), +(193,482,cs), +(193,622,o), +(293,701,o), +(432,701,cs), +(567,701,o), +(647,626,o), +(641,509,c), +(681,509,l), +(687,650,o), +(586,738,o), +(434,738,cs), +(269,738,o), +(153,636,o), +(153,480,cs), +(153,393,o), +(188,341,o), +(188,261,cs), +(188,166,o), +(139,75,o), +(61,24,c) +); +}, +{ +closed = 1; +nodes = ( +(561,0,l), +(598,176,l), +(561,176,l), +(531,36,l), +(-14,36,l), +(-21,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,332,l), +(522,367,l), +(80,367,l), +(72,332,l) +); +} +); +width = 675; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,148,l), +(337,188,o), +(393,245,o), +(393,354,cs), +(393,399,o), +(381,437,o), +(381,473,cs), +(381,531,o), +(419,566,o), +(474,566,cs), +(530,566,o), +(562,538,o), +(556,494,c), +(785,494,l), +(790,641,o), +(683,739,o), +(476,739,cs), +(288,739,o), +(153,637,o), +(153,484,cs), +(153,436,o), +(169,396,o), +(169,350,cs), +(169,264,o), +(132,206,o), +(58,141,c) +); +}, +{ +closed = 1; +nodes = ( +(672,0,l), +(719,230,l), +(521,230,l), +(506,155,l), +(-2,155,l), +(-34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(557,282,l), +(587,424,l), +(69,424,l), +(39,282,l) +); +} +); +width = 761; +} +); +unicode = 163; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/strokelongcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/strokelongcomb.glyph new file mode 100644 index 00000000..4fc33f64 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/strokelongcomb.glyph @@ -0,0 +1,386 @@ +{ +glyphname = strokelongcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (249,369); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,355,l), +(458,383,l), +(40,383,l), +(40,355,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _center; +pos = (300,369); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(560,300,l), +(560,438,l), +(40,438,l), +(40,300,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = _center; +pos = (462,369); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(884,352,l), +(884,386,l), +(40,386,l), +(40,352,l) +); +} +); +width = 924; +}, +{ +anchors = ( +{ +name = _center; +pos = (499,365); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(958,300,l), +(958,438,l), +(40,438,l), +(40,300,l) +); +} +); +width = 998; +}, +{ +anchors = ( +{ +name = _center; +pos = (229,369); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,355,l), +(438,383,l), +(20,383,l), +(20,355,l) +); +} +); +width = 458; +}, +{ +anchors = ( +{ +name = _center; +pos = (290,369); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(550,300,l), +(550,438,l), +(30,438,l), +(30,300,l) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = _center; +pos = (407,369); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(794,352,l), +(794,386,l), +(20,386,l), +(20,352,l) +); +} +); +width = 814; +}, +{ +anchors = ( +{ +name = _center; +pos = (434,365); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(849,300,l), +(849,438,l), +(19,438,l), +(19,300,l) +); +} +); +width = 868; +}, +{ +anchors = ( +{ +name = _center; +pos = (452,369); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(874,352,l), +(874,386,l), +(30,386,l), +(30,352,l) +); +} +); +width = 904; +}, +{ +anchors = ( +{ +name = _center; +pos = (489,365); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(948,300,l), +(948,438,l), +(30,438,l), +(30,300,l) +); +} +); +width = 978; +}, +{ +anchors = ( +{ +name = _center; +pos = (422,369); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(801,352,l), +(801,386,l), +(43,386,l), +(43,352,l) +); +} +); +width = 842; +}, +{ +anchors = ( +{ +name = _center; +pos = (445,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(850,300,l), +(850,438,l), +(39,438,l), +(39,300,l) +); +} +); +width = 888; +}, +{ +anchors = ( +{ +name = _center; +pos = (272,369); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(478,355,l), +(484,383,l), +(66,383,l), +(60,355,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _center; +pos = (321,369); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(567,300,l), +(595,438,l), +(75,438,l), +(47,300,l) +); +} +); +width = 601; +}, +{ +anchors = ( +{ +name = _center; +pos = (450,369); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(833,352,l), +(841,386,l), +(67,386,l), +(59,352,l) +); +} +); +width = 855; +}, +{ +anchors = ( +{ +name = _center; +pos = (474,365); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(876,300,l), +(904,438,l), +(74,438,l), +(46,300,l) +); +} +); +width = 910; +}, +{ +anchors = ( +{ +name = _center; +pos = (485,369); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(903,352,l), +(911,386,l), +(67,386,l), +(59,352,l) +); +} +); +width = 925; +}, +{ +anchors = ( +{ +name = _center; +pos = (518,365); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(964,300,l), +(992,438,l), +(74,438,l), +(46,300,l) +); +} +); +width = 998; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 822; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.case.T_.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.case.T_.glyph new file mode 100644 index 00000000..a8b4190d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.case.T_.glyph @@ -0,0 +1,386 @@ +{ +export = 0; +glyphname = strokeshortcomb.case.T; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (160,354); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(280,340,l), +(280,368,l), +(40,368,l), +(40,340,l) +); +} +); +width = 320; +}, +{ +anchors = ( +{ +name = _center; +pos = (192,347); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,274,l), +(343,420,l), +(40,420,l), +(40,274,l) +); +} +); +width = 383; +}, +{ +anchors = ( +{ +name = _center; +pos = (266,355); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(492,338,l), +(492,371,l), +(40,371,l), +(40,338,l) +); +} +); +width = 532; +}, +{ +anchors = ( +{ +name = _center; +pos = (286,347); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,264,l), +(531,430,l), +(40,430,l), +(40,264,l) +); +} +); +width = 571; +}, +{ +anchors = ( +{ +name = _center; +pos = (140,354); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,340,l), +(260,368,l), +(20,368,l), +(20,340,l) +); +} +); +width = 280; +}, +{ +anchors = ( +{ +name = _center; +pos = (182,347); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,274,l), +(333,420,l), +(30,420,l), +(30,274,l) +); +} +); +width = 363; +}, +{ +anchors = ( +{ +name = _center; +pos = (210,354); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,337,l), +(400,371,l), +(20,371,l), +(20,337,l) +); +} +); +width = 420; +}, +{ +anchors = ( +{ +name = _center; +pos = (240,347); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(460,264,l), +(460,430,l), +(19,430,l), +(19,264,l) +); +} +); +width = 479; +}, +{ +anchors = ( +{ +name = _center; +pos = (256,355); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(482,338,l), +(482,371,l), +(30,371,l), +(30,338,l) +); +} +); +width = 512; +}, +{ +anchors = ( +{ +name = _center; +pos = (276,347); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,264,l), +(521,430,l), +(30,430,l), +(30,264,l) +); +} +); +width = 551; +}, +{ +anchors = ( +{ +name = _center; +pos = (223,354); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(409,337,l), +(409,371,l), +(37,371,l), +(37,337,l) +); +} +); +width = 446; +}, +{ +anchors = ( +{ +name = _center; +pos = (248,347); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(461,264,l), +(461,430,l), +(35,430,l), +(35,264,l) +); +} +); +width = 496; +}, +{ +anchors = ( +{ +name = _center; +pos = (180,354); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,340,l), +(303,368,l), +(63,368,l), +(57,340,l) +); +} +); +width = 320; +}, +{ +anchors = ( +{ +name = _center; +pos = (208,347); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,274,l), +(374,420,l), +(71,420,l), +(41,274,l) +); +} +); +width = 383; +}, +{ +anchors = ( +{ +name = _center; +pos = (250,354); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(436,337,l), +(444,371,l), +(64,371,l), +(56,337,l) +); +} +); +width = 461; +}, +{ +anchors = ( +{ +name = _center; +pos = (277,347); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,264,l), +(514,430,l), +(73,430,l), +(39,264,l) +); +} +); +width = 522; +}, +{ +anchors = ( +{ +name = _center; +pos = (286,355); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,338,l), +(515,371,l), +(63,371,l), +(57,338,l) +); +} +); +width = 533; +}, +{ +anchors = ( +{ +name = _center; +pos = (302,347); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,264,l), +(564,430,l), +(73,430,l), +(39,264,l) +); +} +); +width = 572; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.case.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.case.glyph new file mode 100644 index 00000000..c32d70a5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.case.glyph @@ -0,0 +1,391 @@ +{ +glyphname = strokeshortcomb.case; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (119,279); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,267,l), +(239,291,l), +(40,291,l), +(40,267,l) +); +} +); +width = 279; +}, +{ +anchors = ( +{ +name = _center; +pos = (168,306); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,235,l), +(297,378,l), +(40,378,l), +(40,235,l) +); +} +); +width = 337; +}, +{ +anchors = ( +{ +name = _center; +pos = (217,388); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,372,l), +(450,404,l), +(40,404,l), +(40,372,l) +); +} +); +width = 490; +}, +{ +anchors = ( +{ +name = _center; +pos = (242,303); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(479,243,l), +(479,364,l), +(40,364,l), +(40,243,l) +); +} +); +width = 519; +}, +{ +anchors = ( +{ +name = _center; +pos = (99,279); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(219,267,l), +(219,291,l), +(20,291,l), +(20,267,l) +); +} +); +width = 239; +}, +{ +anchors = ( +{ +name = _center; +pos = (158,306); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,235,l), +(287,378,l), +(30,378,l), +(30,235,l) +); +} +); +width = 317; +}, +{ +anchors = ( +{ +name = _center; +pos = (165,388); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,372,l), +(374,404,l), +(20,404,l), +(20,372,l) +); +} +); +width = 394; +}, +{ +anchors = ( +{ +name = _center; +pos = (230,378); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,310,l), +(430,455,l), +(19,455,l), +(19,310,l) +); +} +); +width = 449; +}, +{ +anchors = ( +{ +name = _center; +pos = (207,388); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(440,372,l), +(440,404,l), +(30,404,l), +(30,372,l) +); +} +); +width = 470; +}, +{ +anchors = ( +{ +name = _center; +pos = (232,303); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,243,l), +(469,364,l), +(30,364,l), +(30,243,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _center; +pos = (184,388); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(389,372,l), +(389,404,l), +(43,404,l), +(43,372,l) +); +} +); +width = 431; +}, +{ +anchors = ( +{ +name = _center; +pos = (244,378); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(436,310,l), +(436,455,l), +(39,455,l), +(39,310,l) +); +} +); +width = 473; +}, +{ +anchors = ( +{ +name = _center; +pos = (124,279); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,267,l), +(246,291,l), +(47,291,l), +(43,267,l) +); +} +); +width = 280; +}, +{ +anchors = ( +{ +name = _center; +pos = (176,306); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,235,l), +(320,378,l), +(63,378,l), +(33,235,l) +); +} +); +width = 338; +}, +{ +anchors = ( +{ +name = _center; +pos = (212,388); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,372,l), +(424,404,l), +(70,404,l), +(64,372,l) +); +} +); +width = 434; +}, +{ +anchors = ( +{ +name = _center; +pos = (273,378); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,310,l), +(489,455,l), +(78,455,l), +(48,310,l) +); +} +); +width = 491; +}, +{ +anchors = ( +{ +name = _center; +pos = (244,388); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(474,372,l), +(480,404,l), +(70,404,l), +(64,372,l) +); +} +); +width = 490; +}, +{ +anchors = ( +{ +name = _center; +pos = (249,303); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,243,l), +(499,364,l), +(60,364,l), +(34,243,l) +); +} +); +width = 520; +} +); +metricLeft = "=40"; +metricRight = "=40"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.glyph new file mode 100644 index 00000000..c2d1d25f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.glyph @@ -0,0 +1,386 @@ +{ +glyphname = strokeshortcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (134,306); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,293,l), +(228,320,l), +(40,320,l), +(40,293,l) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = _center; +pos = (181,306); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,245,l), +(322,368,l), +(40,368,l), +(40,245,l) +); +} +); +width = 362; +}, +{ +anchors = ( +{ +name = _center; +pos = (202,307); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,290,l), +(364,324,l), +(40,324,l), +(40,290,l) +); +} +); +width = 404; +}, +{ +anchors = ( +{ +name = _center; +pos = (235,306); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(429,248,l), +(429,364,l), +(40,364,l), +(40,248,l) +); +} +); +width = 469; +}, +{ +anchors = ( +{ +name = _center; +pos = (114,306); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(208,293,l), +(208,320,l), +(20,320,l), +(20,293,l) +); +} +); +width = 228; +}, +{ +anchors = ( +{ +name = _center; +pos = (171,306); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,245,l), +(312,368,l), +(30,368,l), +(30,245,l) +); +} +); +width = 342; +}, +{ +anchors = ( +{ +name = _center; +pos = (172,307); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,291,l), +(324,323,l), +(20,323,l), +(20,291,l) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = _center; +pos = (194,306); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,248,l), +(368,364,l), +(19,364,l), +(19,248,l) +); +} +); +width = 387; +}, +{ +anchors = ( +{ +name = _center; +pos = (192,307); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(354,290,l), +(354,324,l), +(30,324,l), +(30,290,l) +); +} +); +width = 384; +}, +{ +anchors = ( +{ +name = _center; +pos = (225,306); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,248,l), +(419,364,l), +(30,364,l), +(30,248,l) +); +} +); +width = 449; +}, +{ +anchors = ( +{ +name = _center; +pos = (191,307); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(341,291,l), +(341,323,l), +(43,323,l), +(43,291,l) +); +} +); +width = 381; +}, +{ +anchors = ( +{ +name = _center; +pos = (207,306); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(374,248,l), +(374,364,l), +(39,364,l), +(39,248,l) +); +} +); +width = 412; +}, +{ +anchors = ( +{ +name = _center; +pos = (144,306); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,293,l), +(241,320,l), +(53,320,l), +(47,293,l) +); +} +); +width = 268; +}, +{ +anchors = ( +{ +name = _center; +pos = (189,306); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,245,l), +(343,368,l), +(61,368,l), +(35,245,l) +); +} +); +width = 363; +}, +{ +anchors = ( +{ +name = _center; +pos = (202,307); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,291,l), +(357,323,l), +(53,323,l), +(47,291,l) +); +} +); +width = 384; +}, +{ +anchors = ( +{ +name = _center; +pos = (222,306); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,248,l), +(408,364,l), +(59,364,l), +(35,248,l) +); +} +); +width = 429; +}, +{ +anchors = ( +{ +name = _center; +pos = (213,307); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,290,l), +(379,324,l), +(55,324,l), +(47,290,l) +); +} +); +width = 405; +}, +{ +anchors = ( +{ +name = _center; +pos = (242,306); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(424,248,l), +(448,364,l), +(59,364,l), +(35,248,l) +); +} +); +width = 469; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 821; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.t.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.t.glyph new file mode 100644 index 00000000..cb1269e0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/strokeshortcomb.t.glyph @@ -0,0 +1,386 @@ +{ +export = 0; +glyphname = strokeshortcomb.t; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (105,258); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,246,l), +(169,270,l), +(40,270,l), +(40,246,l) +); +} +); +width = 209; +}, +{ +anchors = ( +{ +name = _center; +pos = (171,272); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,200,l), +(302,343,l), +(40,343,l), +(40,200,l) +); +} +); +width = 342; +}, +{ +anchors = ( +{ +name = _center; +pos = (190,279); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,263,l), +(340,295,l), +(40,295,l), +(40,263,l) +); +} +); +width = 380; +}, +{ +anchors = ( +{ +name = _center; +pos = (260,285); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(479,224,l), +(479,345,l), +(40,345,l), +(40,224,l) +); +} +); +width = 519; +}, +{ +anchors = ( +{ +name = _center; +pos = (85,258); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,246,l), +(149,270,l), +(20,270,l), +(20,246,l) +); +} +); +width = 169; +}, +{ +anchors = ( +{ +name = _center; +pos = (161,272); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,200,l), +(292,343,l), +(30,343,l), +(30,200,l) +); +} +); +width = 322; +}, +{ +anchors = ( +{ +name = _center; +pos = (157,259); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,243,l), +(294,275,l), +(20,275,l), +(20,243,l) +); +} +); +width = 314; +}, +{ +anchors = ( +{ +name = _center; +pos = (210,277); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,204,l), +(400,349,l), +(19,349,l), +(19,204,l) +); +} +); +width = 419; +}, +{ +anchors = ( +{ +name = _center; +pos = (180,279); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,263,l), +(330,295,l), +(30,295,l), +(30,263,l) +); +} +); +width = 360; +}, +{ +anchors = ( +{ +name = _center; +pos = (250,285); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,224,l), +(469,345,l), +(30,345,l), +(30,224,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _center; +pos = (170,259); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(305,243,l), +(305,275,l), +(37,275,l), +(37,243,l) +); +} +); +width = 342; +}, +{ +anchors = ( +{ +name = _center; +pos = (219,277); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(402,204,l), +(402,349,l), +(35,349,l), +(35,204,l) +); +} +); +width = 437; +}, +{ +anchors = ( +{ +name = _center; +pos = (105,258); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,246,l), +(172,270,l), +(43,270,l), +(38,246,l) +); +} +); +width = 210; +}, +{ +anchors = ( +{ +name = _center; +pos = (171,272); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,200,l), +(317,343,l), +(55,343,l), +(25,200,l) +); +} +); +width = 342; +}, +{ +anchors = ( +{ +name = _center; +pos = (177,259); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,243,l), +(317,275,l), +(43,275,l), +(37,243,l) +); +} +); +width = 354; +}, +{ +anchors = ( +{ +name = _center; +pos = (232,277); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(407,204,l), +(437,349,l), +(56,349,l), +(26,204,l) +); +} +); +width = 461; +}, +{ +anchors = ( +{ +name = _center; +pos = (190,259); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,243,l), +(343,275,l), +(43,275,l), +(37,243,l) +); +} +); +width = 380; +}, +{ +anchors = ( +{ +name = _center; +pos = (262,285); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,224,l), +(494,345,l), +(55,345,l), +(30,224,l) +); +} +); +width = 519; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/summation.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/summation.glyph new file mode 100644 index 00000000..46c1d47f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/summation.glyph @@ -0,0 +1,586 @@ +{ +glyphname = summation; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(410,-151,l), +(410,11,l), +(291,11,l), +(221,9,l), +(221,18,l), +(371,289,l), +(221,560,l), +(221,569,l), +(291,567,l), +(410,567,l), +(410,729,l), +(15,729,l), +(15,547,l), +(159,301,l), +(159,277,l), +(15,31,l), +(15,-151,l) +); +} +); +width = 423; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-151,l), +(323,-122,l), +(154,-122,l), +(39,-122,l), +(39,-119,l), +(223,289,l), +(39,697,l), +(39,700,l), +(154,700,l), +(323,700,l), +(323,729,l), +(7,729,l), +(7,694,l), +(186,291,l), +(186,288,l), +(7,-116,l), +(7,-151,l) +); +} +); +width = 321; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(585,-151,l), +(585,-117,l), +(283,-117,l), +(58,-117,l), +(58,-114,l), +(407,289,l), +(58,692,l), +(58,695,l), +(283,695,l), +(585,695,l), +(585,729,l), +(15,729,l), +(15,689,l), +(359,291,l), +(359,288,l), +(15,-111,l), +(15,-151,l) +); +} +); +width = 598; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-151,l), +(659,48,l), +(483,48,l), +(318,46,l), +(318,56,l), +(565,289,l), +(318,522,l), +(318,532,l), +(483,530,l), +(659,530,l), +(659,729,l), +(16,729,l), +(16,518,l), +(247,302,l), +(247,276,l), +(16,60,l), +(16,-151,l) +); +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-151,l), +(305,-122,l), +(136,-122,l), +(21,-122,l), +(21,-119,l), +(205,289,l), +(21,697,l), +(21,700,l), +(136,700,l), +(305,700,l), +(305,729,l), +(-11,729,l), +(-11,694,l), +(168,291,l), +(168,288,l), +(-11,-116,l), +(-11,-151,l) +); +} +); +width = 285; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(401,-151,l), +(401,11,l), +(282,11,l), +(212,9,l), +(212,18,l), +(362,289,l), +(212,560,l), +(212,569,l), +(282,567,l), +(401,567,l), +(401,729,l), +(6,729,l), +(6,547,l), +(150,301,l), +(150,277,l), +(6,31,l), +(6,-151,l) +); +} +); +width = 405; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,-151,l), +(480,-117,l), +(232,-117,l), +(48,-117,l), +(48,-114,l), +(336,289,l), +(48,692,l), +(48,695,l), +(232,695,l), +(480,695,l), +(480,729,l), +(3,729,l), +(3,689,l), +(286,291,l), +(286,288,l), +(3,-111,l), +(3,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 484; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-151,l), +(523,48,l), +(371,48,l), +(262,46,l), +(262,56,l), +(484,289,l), +(262,522,l), +(262,532,l), +(371,530,l), +(523,530,l), +(523,729,l), +(8,729,l), +(8,518,l), +(213,302,l), +(213,276,l), +(8,60,l), +(8,-151,l) +); +} +); +width = 529; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-151,l), +(580,-117,l), +(278,-117,l), +(53,-117,l), +(53,-114,l), +(402,289,l), +(53,692,l), +(53,695,l), +(278,695,l), +(580,695,l), +(580,729,l), +(10,729,l), +(10,689,l), +(354,291,l), +(354,288,l), +(10,-111,l), +(10,-151,l) +); +} +); +width = 588; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-151,l), +(649,48,l), +(473,48,l), +(308,46,l), +(308,56,l), +(555,289,l), +(308,522,l), +(308,532,l), +(473,530,l), +(649,530,l), +(649,729,l), +(6,729,l), +(6,518,l), +(237,302,l), +(237,276,l), +(6,60,l), +(6,-151,l) +); +} +); +width = 653; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(498,-151,l), +(498,-117,l), +(254,-117,l), +(74,-117,l), +(74,-114,l), +(356,289,l), +(74,692,l), +(74,695,l), +(254,695,l), +(498,695,l), +(498,729,l), +(31,729,l), +(31,689,l), +(308,291,l), +(308,288,l), +(31,-111,l), +(31,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 524; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(528,-151,l), +(528,48,l), +(383,48,l), +(279,46,l), +(279,56,l), +(493,289,l), +(279,522,l), +(279,532,l), +(383,530,l), +(528,530,l), +(528,729,l), +(28,729,l), +(28,518,l), +(224,302,l), +(224,276,l), +(28,60,l), +(28,-151,l) +); +} +); +width = 552; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,-151,l), +(241,-122,l), +(43,-122,l), +(-38,-122,l), +(-38,-119,l), +(227,287,l), +(129,697,l), +(129,700,l), +(195,700,l), +(412,700,l), +(419,729,l), +(106,729,l), +(98,694,l), +(191,293,l), +(191,290,l), +(-71,-116,l), +(-79,-151,l) +); +} +); +width = 319; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,-151,l), +(353,11,l), +(245,11,l), +(176,9,l), +(177,18,l), +(372,284,l), +(271,560,l), +(272,569,l), +(342,567,l), +(469,567,l), +(504,729,l), +(113,729,l), +(74,547,l), +(165,306,l), +(160,282,l), +(-34,31,l), +(-73,-151,l) +); +} +); +width = 422; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,-151,l), +(421,-117,l), +(121,-117,l), +(-5,-117,l), +(-4,-114,l), +(364,287,l), +(159,692,l), +(160,695,l), +(267,695,l), +(592,695,l), +(599,729,l), +(127,729,l), +(118,689,l), +(315,293,l), +(314,290,l), +(-50,-111,l), +(-58,-151,l) +); +} +); +width = 526; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-151,l), +(492,48,l), +(362,48,l), +(253,46,l), +(255,56,l), +(499,284,l), +(317,522,l), +(319,532,l), +(426,530,l), +(592,530,l), +(635,729,l), +(125,729,l), +(80,518,l), +(228,308,l), +(223,282,l), +(-15,60,l), +(-60,-151,l) +); +} +); +width = 566; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(493,-151,l), +(500,-117,l), +(157,-117,l), +(-17,-117,l), +(-16,-114,l), +(410,288,l), +(144,692,l), +(146,695,l), +(291,695,l), +(671,695,l), +(678,729,l), +(114,729,l), +(106,689,l), +(362,293,l), +(362,290,l), +(-63,-111,l), +(-71,-151,l) +); +} +); +width = 593; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(564,-151,l), +(606,48,l), +(435,48,l), +(271,46,l), +(273,56,l), +(562,288,l), +(364,522,l), +(367,532,l), +(529,530,l), +(706,530,l), +(749,729,l), +(112,729,l), +(67,518,l), +(249,303,l), +(244,277,l), +(-28,60,l), +(-73,-151,l) +); +} +); +width = 667; +} +); +unicode = 8721; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/t.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/t.glyph new file mode 100644 index 00000000..73a0797b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/t.glyph @@ -0,0 +1,1555 @@ +{ +glyphname = t; +kernLeft = KO_t; +kernRight = KO_t; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (176,0); +}, +{ +name = center; +pos = (141,271); +}, +{ +name = top; +pos = (136,541); +}, +{ +name = topright; +pos = (225,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(256,-4,o), +(270,4,c), +(270,127,l), +(263,124,o), +(252,122,o), +(246,122,cs), +(228,122,o), +(225,132,o), +(225,156,cs), +(225,401,l), +(270,398,l), +(270,541,l), +(225,539,l), +(225,683,l), +(46,668,l), +(46,539,l), +(8,541,l), +(8,398,l), +(46,401,l), +(46,126,ls), +(46,25,o), +(93,-10,o), +(189,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(270,132,l), +(246,132,ls), +(228,132,o), +(225,137,o), +(225,160,cs), +(225,401,l), +(270,398,l), +(270,541,l), +(225,539,l), +(225,683,l), +(49,668,l), +(49,539,l), +(11,541,l), +(11,398,l), +(49,401,l), +(49,124,ls), +(49,40,o), +(87,0,o), +(176,0,cs) +); +} +); +width = 287; +}, +{ +anchors = ( +{ +name = bottom; +pos = (106,0); +}, +{ +name = center; +pos = (83,258); +}, +{ +name = top; +pos = (77,516); +}, +{ +name = topright; +pos = (91,785); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(147,0,l), +(147,29,l), +(118,29,ls), +(99,29,o), +(91,38,o), +(91,54,cs), +(91,492,l), +(147,492,l), +(147,516,l), +(91,516,l), +(91,700,l), +(63,697,l), +(63,516,l), +(18,516,l), +(18,492,l), +(63,492,l), +(63,48,ls), +(63,10,o), +(86,0,o), +(113,0,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,0,l), +(146,29,l), +(119,29,ls), +(96,29,o), +(92,41,o), +(92,64,cs), +(92,492,l), +(147,492,l), +(147,516,l), +(92,516,l), +(92,700,l), +(63,697,l), +(63,516,l), +(18,516,l), +(18,492,l), +(63,492,l), +(63,56,ls), +(63,14,o), +(82,0,o), +(115,0,cs) +); +} +); +width = 163; +}, +{ +anchors = ( +{ +name = bottom; +pos = (212,0); +}, +{ +name = center; +pos = (161,279); +}, +{ +name = top; +pos = (165,517); +}, +{ +name = topright; +pos = (171,776); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(311,0,l), +(311,36,l), +(222,36,ls), +(185,36,o), +(166,49,o), +(166,95,cs), +(166,485,l), +(311,485,l), +(311,517,l), +(166,517,l), +(166,690,l), +(129,681,l), +(129,517,l), +(11,517,l), +(11,485,l), +(129,485,l), +(129,88,ls), +(129,26,o), +(163,0,o), +(217,0,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,0,l), +(311,36,l), +(232,36,ls), +(184,36,o), +(166,58,o), +(166,106,cs), +(166,485,l), +(311,485,l), +(311,517,l), +(166,517,l), +(166,690,l), +(129,681,l), +(129,517,l), +(11,517,l), +(11,485,l), +(129,485,l), +(129,103,ls), +(129,32,o), +(162,0,o), +(233,0,cs) +); +} +); +width = 330; +}, +{ +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = center; +pos = (224,284); +}, +{ +name = top; +pos = (225,544); +}, +{ +name = topright; +pos = (313,754); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,l), +(443,186,l), +(375,186,ls), +(329,186,o), +(314,195,o), +(314,243,cs), +(314,379,l), +(443,379,l), +(443,544,l), +(314,544,l), +(314,710,l), +(97,669,l), +(97,544,l), +(4,544,l), +(4,379,l), +(97,379,l), +(97,164,ls), +(97,48,o), +(163,0,o), +(272,0,cs) +); +}, +{ +closed = 0; +nodes = ( +(310,153,ls), +(287,153,o), +(271,160,o), +(271,188,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,l), +(443,186,l), +(353,186,ls), +(330,186,o), +(314,193,o), +(314,221,cs), +(314,379,l), +(443,379,l), +(443,544,l), +(314,544,l), +(314,710,l), +(97,669,l), +(97,544,l), +(4,544,l), +(4,379,l), +(97,379,l), +(97,155,ls), +(97,55,o), +(150,0,o), +(251,0,cs) +); +} +); +width = 471; +}, +{ +anchors = ( +{ +name = bottom; +pos = (108,0); +}, +{ +name = center; +pos = (85,258); +}, +{ +name = top; +pos = (79,516); +}, +{ +name = topright; +pos = (93,785); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,0,l), +(159,29,l), +(130,29,ls), +(111,29,o), +(103,38,o), +(103,54,cs), +(103,492,l), +(159,492,l), +(159,516,l), +(103,516,l), +(103,700,l), +(75,697,l), +(75,516,l), +(30,516,l), +(30,492,l), +(75,492,l), +(75,48,ls), +(75,10,o), +(98,0,o), +(125,0,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,0,l), +(179,29,l), +(138,29,ls), +(109,29,o), +(95,46,o), +(95,86,cs), +(95,489,l), +(180,489,l), +(180,516,l), +(95,516,l), +(95,700,l), +(65,693,l), +(65,516,l), +(1,516,l), +(1,489,l), +(65,489,l), +(65,82,ls), +(65,26,o), +(88,0,o), +(138,0,cs) +); +} +); +width = 184; +}, +{ +anchors = ( +{ +name = bottom; +pos = (179,0); +}, +{ +name = center; +pos = (144,271); +}, +{ +name = top; +pos = (139,541); +}, +{ +name = topright; +pos = (228,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(236,-10,o), +(266,-4,o), +(280,4,c), +(280,127,l), +(273,124,o), +(262,122,o), +(256,122,cs), +(238,122,o), +(235,132,o), +(235,156,cs), +(235,401,l), +(280,398,l), +(280,541,l), +(235,539,l), +(235,683,l), +(56,668,l), +(56,539,l), +(18,541,l), +(18,398,l), +(56,401,l), +(56,126,ls), +(56,25,o), +(103,-10,o), +(199,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,0,l), +(286,143,l), +(258,143,ls), +(236,143,o), +(228,151,o), +(228,175,cs), +(228,398,l), +(286,398,l), +(286,541,l), +(228,541,l), +(228,680,l), +(52,647,l), +(52,541,l), +(5,541,l), +(5,398,l), +(52,398,l), +(52,137,ls), +(52,41,o), +(91,0,o), +(191,0,cs) +); +} +); +width = 293; +}, +{ +anchors = ( +{ +name = bottom; +pos = (199,0); +}, +{ +name = center; +pos = (140,259); +}, +{ +name = top; +pos = (128,517); +}, +{ +name = topright; +pos = (159,785); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-203,0,l), +(-203,34,l), +(-283,34,ls), +(-324,34,o), +(-334,44,o), +(-334,85,cs), +(-334,485,l), +(-203,485,l), +(-203,517,l), +(-334,517,l), +(-334,690,l), +(-370,681,l), +(-370,517,l), +(-477,517,l), +(-477,485,l), +(-370,485,l), +(-370,79,ls), +(-370,23,o), +(-347,0,o), +(-291,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(798,0,l), +(798,36,l), +(729,36,ls), +(679,36,o), +(667,62,o), +(667,102,cs), +(667,485,l), +(797,485,l), +(797,517,l), +(666,517,l), +(666,690,l), +(630,681,l), +(630,517,l), +(523,517,l), +(523,485,l), +(630,485,l), +(630,91,ls), +(630,30,o), +(667,0,o), +(722,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,0,l), +(298,36,l), +(223,36,ls), +(186,36,o), +(167,49,o), +(167,95,cs), +(167,485,l), +(297,485,l), +(297,517,l), +(166,517,l), +(166,690,l), +(130,681,l), +(130,517,l), +(23,517,l), +(23,485,l), +(130,485,l), +(130,88,ls), +(130,26,o), +(164,0,o), +(218,0,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,0,l), +(279,36,l), +(209,36,ls), +(166,36,o), +(147,56,o), +(147,101,cs), +(147,485,l), +(277,485,l), +(277,517,l), +(146,517,l), +(146,690,l), +(110,681,l), +(110,517,l), +(3,517,l), +(3,485,l), +(110,485,l), +(110,97,ls), +(110,28,o), +(146,0,o), +(206,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 284; +}, +{ +anchors = ( +{ +name = bottom; +pos = (260,0); +}, +{ +name = center; +pos = (191,272); +}, +{ +name = top; +pos = (201,544); +}, +{ +name = topright; +pos = (294,739); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(398,0,l), +(398,153,l), +(338,153,ls), +(315,153,o), +(299,160,o), +(299,188,cs), +(299,391,l), +(398,391,l), +(398,544,l), +(299,544,l), +(299,699,l), +(108,683,l), +(108,544,l), +(17,544,l), +(17,391,l), +(108,391,l), +(108,152,ls), +(108,61,o), +(139,0,o), +(269,0,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(381,153,l), +(321,153,ls), +(298,153,o), +(282,160,o), +(282,188,cs), +(282,391,l), +(381,391,l), +(381,544,l), +(282,544,l), +(282,699,l), +(91,673,l), +(91,544,l), +(0,544,l), +(0,391,l), +(91,391,l), +(91,152,ls), +(91,47,o), +(136,0,o), +(242,0,cs) +); +} +); +width = 393; +}, +{ +anchors = ( +{ +name = bottom; +pos = (207,0); +}, +{ +name = center; +pos = (156,279); +}, +{ +name = top; +pos = (160,517); +}, +{ +name = topright; +pos = (166,776); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(311,0,l), +(311,36,l), +(222,36,ls), +(185,36,o), +(166,49,o), +(166,95,cs), +(166,485,l), +(311,485,l), +(311,517,l), +(166,517,l), +(166,690,l), +(129,681,l), +(129,517,l), +(11,517,l), +(11,485,l), +(129,485,l), +(129,88,ls), +(129,26,o), +(163,0,o), +(217,0,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,l), +(306,36,l), +(227,36,ls), +(179,36,o), +(161,58,o), +(161,106,cs), +(161,485,l), +(306,485,l), +(306,517,l), +(161,517,l), +(161,690,l), +(124,681,l), +(124,517,l), +(6,517,l), +(6,485,l), +(124,485,l), +(124,103,ls), +(124,32,o), +(157,0,o), +(228,0,cs) +); +} +); +width = 315; +}, +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = center; +pos = (219,284); +}, +{ +name = top; +pos = (220,544); +}, +{ +name = topright; +pos = (308,754); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,l), +(443,186,l), +(375,186,ls), +(329,186,o), +(314,195,o), +(314,243,cs), +(314,379,l), +(443,379,l), +(443,544,l), +(314,544,l), +(314,710,l), +(97,669,l), +(97,544,l), +(4,544,l), +(4,379,l), +(97,379,l), +(97,164,ls), +(97,48,o), +(163,0,o), +(272,0,cs) +); +}, +{ +closed = 0; +nodes = ( +(310,153,ls), +(287,153,o), +(271,160,o), +(271,188,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,0,l), +(438,186,l), +(348,186,ls), +(325,186,o), +(309,193,o), +(309,221,cs), +(309,379,l), +(438,379,l), +(438,544,l), +(309,544,l), +(309,710,l), +(92,669,l), +(92,544,l), +(-1,544,l), +(-1,379,l), +(92,379,l), +(92,155,ls), +(92,55,o), +(145,0,o), +(246,0,cs) +); +} +); +width = 456; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = center; +pos = (158,259); +}, +{ +name = top; +pos = (148,517); +}, +{ +name = topright; +pos = (177,785); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-204,0,l), +(-204,34,l), +(-284,34,ls), +(-325,34,o), +(-335,44,o), +(-335,85,cs), +(-335,485,l), +(-204,485,l), +(-204,517,l), +(-335,517,l), +(-335,690,l), +(-371,681,l), +(-371,517,l), +(-478,517,l), +(-478,485,l), +(-371,485,l), +(-371,79,ls), +(-371,23,o), +(-348,0,o), +(-292,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(797,0,l), +(797,36,l), +(728,36,ls), +(678,36,o), +(666,62,o), +(666,102,cs), +(666,485,l), +(796,485,l), +(796,517,l), +(665,517,l), +(665,690,l), +(629,681,l), +(629,517,l), +(522,517,l), +(522,485,l), +(629,485,l), +(629,91,ls), +(629,30,o), +(666,0,o), +(721,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,0,l), +(297,36,l), +(222,36,ls), +(185,36,o), +(166,49,o), +(166,95,cs), +(166,485,l), +(296,485,l), +(296,517,l), +(165,517,l), +(165,690,l), +(129,681,l), +(129,517,l), +(22,517,l), +(22,485,l), +(129,485,l), +(129,88,ls), +(129,26,o), +(163,0,o), +(217,0,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(295,36,l), +(227,36,ls), +(184,36,o), +(165,56,o), +(165,101,cs), +(165,485,l), +(293,485,l), +(293,517,l), +(164,517,l), +(164,690,l), +(130,681,l), +(130,517,l), +(25,517,l), +(25,485,l), +(130,485,l), +(130,97,ls), +(130,28,o), +(164,0,o), +(224,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 329; +}, +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = center; +pos = (200,272); +}, +{ +name = top; +pos = (211,544); +}, +{ +name = topright; +pos = (302,739); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(398,0,l), +(398,153,l), +(338,153,ls), +(315,153,o), +(299,160,o), +(299,188,cs), +(299,391,l), +(398,391,l), +(398,544,l), +(299,544,l), +(299,699,l), +(108,683,l), +(108,544,l), +(17,544,l), +(17,391,l), +(108,391,l), +(108,152,ls), +(108,61,o), +(139,0,o), +(269,0,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(383,0,l), +(383,153,l), +(327,153,ls), +(306,153,o), +(291,160,o), +(291,188,cs), +(291,391,l), +(383,391,l), +(383,544,l), +(291,544,l), +(291,699,l), +(101,683,l), +(101,544,l), +(16,544,l), +(16,391,l), +(101,391,l), +(101,152,ls), +(101,47,o), +(145,0,o), +(248,0,cs) +); +} +); +width = 416; +}, +{ +anchors = ( +{ +name = bottom; +pos = (53,0); +}, +{ +name = center; +pos = (83,258); +}, +{ +name = top; +pos = (131,516); +}, +{ +name = topright; +pos = (201,785); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,0,l), +(97,30,l), +(72,30,ls), +(49,30,o), +(45,41,o), +(54,82,cs), +(139,492,l), +(195,492,l), +(199,516,l), +(144,516,l), +(183,700,l), +(154,697,l), +(116,516,l), +(72,516,l), +(67,492,l), +(111,492,l), +(23,70,ls), +(12,18,o), +(28,0,o), +(64,0,cs) +); +} +); +width = 162; +}, +{ +anchors = ( +{ +name = bottom; +pos = (118,0); +}, +{ +name = center; +pos = (141,271); +}, +{ +name = top; +pos = (194,541); +}, +{ +name = topright; +pos = (321,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,l), +(243,133,l), +(229,133,ls), +(203,133,o), +(197,139,o), +(203,166,cs), +(252,401,l), +(297,399,l), +(327,541,l), +(281,539,l), +(311,683,l), +(132,668,l), +(105,539,l), +(68,541,l), +(38,399,l), +(76,401,l), +(22,136,ls), +(3,44,o), +(34,0,o), +(135,0,cs) +); +} +); +width = 287; +}, +{ +anchors = ( +{ +name = bottom; +pos = (173,0); +}, +{ +name = center; +pos = (158,259); +}, +{ +name = top; +pos = (199,517); +}, +{ +name = topright; +pos = (273,785); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,0,l), +(245,33,l), +(198,33,ls), +(145,33,o), +(118,46,o), +(132,111,cs), +(210,485,l), +(340,485,l), +(346,517,l), +(216,517,l), +(252,690,l), +(215,681,l), +(181,517,l), +(76,517,l), +(70,485,l), +(174,485,l), +(96,108,ls), +(81,34,o), +(112,0,o), +(183,0,cs) +); +} +); +}; +guides = ( +{ +angle = 78.3; +pos = (131,105); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,0,l), +(245,33,l), +(198,33,ls), +(145,33,o), +(118,46,o), +(132,111,cs), +(210,485,l), +(340,485,l), +(346,517,l), +(216,517,l), +(252,690,l), +(215,681,l), +(181,517,l), +(76,517,l), +(70,485,l), +(174,485,l), +(96,108,ls), +(81,34,o), +(112,0,o), +(183,0,cs) +); +} +); +width = 324; +}, +{ +anchors = ( +{ +name = bottom; +pos = (223,0); +}, +{ +name = center; +pos = (206,272); +}, +{ +name = top; +pos = (259,544); +}, +{ +name = topright; +pos = (393,739); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,0,l), +(369,153,l), +(314,153,ls), +(286,153,o), +(272,160,o), +(278,188,cs), +(321,391,l), +(419,391,l), +(451,544,l), +(353,544,l), +(385,699,l), +(193,683,l), +(164,544,l), +(74,544,l), +(42,391,l), +(132,391,l), +(84,166,ls), +(63,66,o), +(106,0,o), +(223,0,cs) +); +} +); +width = 430; +}, +{ +anchors = ( +{ +name = bottom; +pos = (177,0); +}, +{ +name = center; +pos = (160,259); +}, +{ +name = top; +pos = (200,517); +}, +{ +name = topright; +pos = (272,776); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(261,36,l), +(184,36,ls), +(141,36,o), +(119,49,o), +(130,102,cs), +(211,485,l), +(355,485,l), +(361,517,l), +(217,517,l), +(254,690,l), +(215,681,l), +(180,517,l), +(64,517,l), +(58,485,l), +(174,485,l), +(92,94,ls), +(77,20,o), +(127,0,o), +(177,0,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(260,35,l), +(198,35,ls), +(145,35,o), +(119,48,o), +(132,111,cs), +(209,485,l), +(355,485,l), +(361,517,l), +(216,517,l), +(252,690,l), +(214,681,l), +(180,517,l), +(65,517,l), +(59,485,l), +(173,485,l), +(95,108,ls), +(80,34,o), +(116,0,o), +(179,0,cs) +); +} +); +width = 326; +}, +{ +anchors = ( +{ +name = bottom; +pos = (230,0); +}, +{ +name = center; +pos = (224,284); +}, +{ +name = top; +pos = (261,544); +}, +{ +name = topright; +pos = (412,754); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(420,186,l), +(333,186,ls), +(304,186,o), +(295,195,o), +(301,223,cs), +(333,379,l), +(461,379,l), +(495,544,l), +(367,544,l), +(403,710,l), +(179,669,l), +(153,544,l), +(61,544,l), +(26,379,l), +(118,379,l), +(75,171,ls), +(50,52,o), +(113,0,o), +(227,0,cs) +); +} +); +width = 466; +} +); +unicode = 116; +userData = { +KernOnName = t; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/t_i.liga.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/t_i.liga.glyph new file mode 100644 index 00000000..419bb6a0 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/t_i.liga.glyph @@ -0,0 +1,1593 @@ +{ +glyphname = t_i.liga; +kernLeft = KO_t; +kernRight = KO_fi; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (77,0); +}, +{ +name = bottom_2; +pos = (231,0); +}, +{ +name = caret_1; +pos = (154,0); +}, +{ +name = center_1; +pos = (77,258); +}, +{ +name = center_2; +pos = (231,258); +}, +{ +name = top_1; +pos = (77,700); +}, +{ +name = top_2; +pos = (231,700); +}, +{ +name = topright_1; +pos = (288,729); +}, +{ +name = topright_2; +pos = (288,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,0,l), +(147,29,l), +(118,29,ls), +(99,29,o), +(91,38,o), +(91,54,cs), +(91,492,l), +(219,492,l), +(219,0,l), +(248,0,l), +(248,516,l), +(91,516,l), +(91,700,l), +(63,697,l), +(63,516,l), +(18,516,l), +(18,492,l), +(63,492,l), +(63,48,ls), +(63,10,o), +(86,0,o), +(113,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(247,616,o), +(257,625,o), +(257,639,cs), +(257,653,o), +(247,662,o), +(234,662,cs), +(221,662,o), +(211,653,o), +(211,639,cs), +(211,625,o), +(221,616,o), +(234,616,cs) +); +} +); +width = 308; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (129,0); +}, +{ +name = bottom_2; +pos = (386,0); +}, +{ +name = caret_1; +pos = (257.5,0); +}, +{ +name = center_1; +pos = (129,271); +}, +{ +name = center_2; +pos = (386,271); +}, +{ +name = top_1; +pos = (129,751); +}, +{ +name = top_2; +pos = (386,751); +}, +{ +name = topright_1; +pos = (495,729); +}, +{ +name = topright_2; +pos = (495,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,0,l), +(273,132,l), +(249,132,ls), +(231,132,o), +(228,137,o), +(228,160,cs), +(228,398,l), +(311,398,l), +(311,0,l), +(488,0,l), +(488,541,l), +(228,541,l), +(228,683,l), +(49,668,l), +(49,539,l), +(11,541,l), +(11,398,l), +(49,401,l), +(49,124,ls), +(49,40,o), +(87,0,o), +(176,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(453,586,o), +(494,615,o), +(494,668,cs), +(494,721,o), +(453,751,o), +(400,751,cs), +(347,751,o), +(306,721,o), +(306,668,cs), +(306,615,o), +(347,586,o), +(400,586,cs) +); +} +); +width = 515; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (125,0); +}, +{ +name = bottom_2; +pos = (376,0); +}, +{ +name = caret_1; +pos = (250.5,0); +}, +{ +name = center_1; +pos = (125,259); +}, +{ +name = center_2; +pos = (376,259); +}, +{ +name = top_1; +pos = (125,690); +}, +{ +name = top_2; +pos = (376,690); +}, +{ +name = topright_1; +pos = (481,729); +}, +{ +name = topright_2; +pos = (481,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,0,l), +(311,36,l), +(237,36,ls), +(192,36,o), +(166,48,o), +(166,95,cs), +(166,485,l), +(398,485,l), +(398,0,l), +(435,0,l), +(435,517,l), +(166,517,l), +(166,690,l), +(129,681,l), +(129,517,l), +(11,517,l), +(11,485,l), +(129,485,l), +(129,89,ls), +(129,28,o), +(164,0,o), +(231,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(436,625,o), +(449,638,o), +(449,656,cs), +(449,674,o), +(436,687,o), +(417,687,cs), +(398,687,o), +(385,674,o), +(385,656,cs), +(385,638,o), +(398,625,o), +(417,625,cs) +); +} +); +width = 501; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (192,0); +}, +{ +name = bottom_2; +pos = (577,0); +}, +{ +name = caret_1; +pos = (384.5,0); +}, +{ +name = center_1; +pos = (192,272); +}, +{ +name = center_2; +pos = (577,272); +}, +{ +name = top_1; +pos = (192,754); +}, +{ +name = top_2; +pos = (577,754); +}, +{ +name = topright_1; +pos = (749,729); +}, +{ +name = topright_2; +pos = (749,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,l), +(443,186,l), +(355,186,ls), +(326,186,o), +(314,195,o), +(314,223,cs), +(314,379,l), +(505,379,l), +(505,0,l), +(726,0,l), +(726,544,l), +(314,544,l), +(314,710,l), +(97,669,l), +(97,544,l), +(4,544,l), +(4,379,l), +(97,379,l), +(97,150,ls), +(97,48,o), +(163,0,o), +(261,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(687,586,o), +(734,613,o), +(734,670,cs), +(734,720,o), +(696,754,o), +(616,754,cs), +(545,754,o), +(498,727,o), +(498,670,cs), +(498,620,o), +(536,586,o), +(616,586,cs) +); +} +); +width = 769; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (67,0); +}, +{ +name = bottom_2; +pos = (221,0); +}, +{ +name = caret_1; +pos = (144,0); +}, +{ +name = center_1; +pos = (67,258); +}, +{ +name = center_2; +pos = (221,258); +}, +{ +name = top_1; +pos = (67,700); +}, +{ +name = top_2; +pos = (221,700); +}, +{ +name = topright_1; +pos = (278,729); +}, +{ +name = topright_2; +pos = (278,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(137,29,l), +(108,29,ls), +(89,29,o), +(81,38,o), +(81,54,cs), +(81,492,l), +(209,492,l), +(209,0,l), +(238,0,l), +(238,516,l), +(81,516,l), +(81,700,l), +(53,697,l), +(53,516,l), +(8,516,l), +(8,492,l), +(53,492,l), +(53,48,ls), +(53,10,o), +(76,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,616,o), +(247,625,o), +(247,639,cs), +(247,653,o), +(237,662,o), +(224,662,cs), +(211,662,o), +(201,653,o), +(201,639,cs), +(201,625,o), +(211,616,o), +(224,616,cs) +); +} +); +width = 278; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (122,0); +}, +{ +name = bottom_2; +pos = (379,0); +}, +{ +name = caret_1; +pos = (251,0); +}, +{ +name = center_1; +pos = (122,271); +}, +{ +name = center_2; +pos = (379,271); +}, +{ +name = top_1; +pos = (122,751); +}, +{ +name = top_2; +pos = (379,751); +}, +{ +name = topright_1; +pos = (488,729); +}, +{ +name = topright_2; +pos = (488,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,0,l), +(266,132,l), +(242,132,ls), +(224,132,o), +(221,137,o), +(221,160,cs), +(221,398,l), +(304,398,l), +(304,0,l), +(481,0,l), +(481,541,l), +(221,541,l), +(221,683,l), +(42,668,l), +(42,539,l), +(4,541,l), +(4,398,l), +(42,401,l), +(42,124,ls), +(42,40,o), +(80,0,o), +(169,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,586,o), +(487,615,o), +(487,668,cs), +(487,721,o), +(446,751,o), +(393,751,cs), +(340,751,o), +(299,721,o), +(299,668,cs), +(299,615,o), +(340,586,o), +(393,586,cs) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (114,0); +}, +{ +name = bottom_2; +pos = (383,0); +}, +{ +name = caret_1; +pos = (249,0); +}, +{ +name = center_1; +pos = (114,259); +}, +{ +name = center_2; +pos = (383,259); +}, +{ +name = top_1; +pos = (114,690); +}, +{ +name = top_2; +pos = (383,690); +}, +{ +name = topright_1; +pos = (497,729); +}, +{ +name = topright_2; +pos = (497,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,l), +(276,34,l), +(196,34,ls), +(155,34,o), +(145,44,o), +(145,85,cs), +(145,485,l), +(395,485,l), +(395,0,l), +(432,0,l), +(432,517,l), +(145,517,l), +(145,690,l), +(109,681,l), +(109,517,l), +(2,517,l), +(2,485,l), +(109,485,l), +(109,79,ls), +(109,23,o), +(132,0,o), +(188,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(433,625,o), +(446,638,o), +(446,656,cs), +(446,674,o), +(433,687,o), +(414,687,cs), +(395,687,o), +(382,674,o), +(382,656,cs), +(382,638,o), +(395,625,o), +(414,625,cs) +); +} +); +width = 497; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (164,0); +}, +{ +name = bottom_2; +pos = (525,0); +}, +{ +name = caret_1; +pos = (344,0); +}, +{ +name = center_1; +pos = (164,272); +}, +{ +name = center_2; +pos = (525,272); +}, +{ +name = top_1; +pos = (164,755); +}, +{ +name = top_2; +pos = (525,755); +}, +{ +name = topright_1; +pos = (685,729); +}, +{ +name = topright_2; +pos = (685,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(381,153,l), +(321,153,ls), +(298,153,o), +(282,160,o), +(282,188,cs), +(282,391,l), +(460,391,l), +(460,0,l), +(651,0,l), +(651,544,l), +(282,544,l), +(282,699,l), +(91,683,l), +(91,544,l), +(0,544,l), +(0,391,l), +(91,391,l), +(91,152,ls), +(91,61,o), +(122,0,o), +(252,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(612,589,o), +(653,619,o), +(653,672,cs), +(653,725,o), +(612,755,o), +(556,755,cs), +(500,755,o), +(459,725,o), +(459,672,cs), +(459,619,o), +(500,589,o), +(556,589,cs) +); +} +); +width = 684; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (120,0); +}, +{ +name = bottom_2; +pos = (371,0); +}, +{ +name = caret_1; +pos = (246,0); +}, +{ +name = center_1; +pos = (120,259); +}, +{ +name = center_2; +pos = (371,259); +}, +{ +name = top_1; +pos = (120,690); +}, +{ +name = top_2; +pos = (371,690); +}, +{ +name = topright_1; +pos = (476,729); +}, +{ +name = topright_2; +pos = (476,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,l), +(306,36,l), +(232,36,ls), +(187,36,o), +(161,48,o), +(161,95,cs), +(161,485,l), +(393,485,l), +(393,0,l), +(430,0,l), +(430,517,l), +(161,517,l), +(161,690,l), +(124,681,l), +(124,517,l), +(6,517,l), +(6,485,l), +(124,485,l), +(124,89,ls), +(124,28,o), +(159,0,o), +(226,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(431,625,o), +(444,638,o), +(444,656,cs), +(444,674,o), +(431,687,o), +(412,687,cs), +(393,687,o), +(380,674,o), +(380,656,cs), +(380,638,o), +(393,625,o), +(412,625,cs) +); +} +); +width = 486; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (187,0); +}, +{ +name = bottom_2; +pos = (572,0); +}, +{ +name = caret_1; +pos = (380,0); +}, +{ +name = center_1; +pos = (187,272); +}, +{ +name = center_2; +pos = (572,272); +}, +{ +name = top_1; +pos = (187,754); +}, +{ +name = top_2; +pos = (572,754); +}, +{ +name = topright_1; +pos = (744,729); +}, +{ +name = topright_2; +pos = (744,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,0,l), +(438,186,l), +(350,186,ls), +(321,186,o), +(309,195,o), +(309,223,cs), +(309,379,l), +(500,379,l), +(500,0,l), +(721,0,l), +(721,544,l), +(309,544,l), +(309,710,l), +(92,669,l), +(92,544,l), +(-1,544,l), +(-1,379,l), +(92,379,l), +(92,150,ls), +(92,48,o), +(158,0,o), +(256,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(682,586,o), +(729,613,o), +(729,670,cs), +(729,720,o), +(691,754,o), +(611,754,cs), +(540,754,o), +(493,727,o), +(493,670,cs), +(493,620,o), +(531,586,o), +(611,586,cs) +); +} +); +width = 754; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (135,0); +}, +{ +name = bottom_2; +pos = (398,0); +}, +{ +name = caret_1; +pos = (266,0); +}, +{ +name = center_1; +pos = (135,259); +}, +{ +name = center_2; +pos = (398,259); +}, +{ +name = top_1; +pos = (135,690); +}, +{ +name = top_2; +pos = (398,690); +}, +{ +name = topright_1; +pos = (510,729); +}, +{ +name = topright_2; +pos = (510,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(293,0,l), +(293,34,l), +(215,34,ls), +(174,34,o), +(164,44,o), +(164,85,cs), +(164,485,l), +(410,485,l), +(410,0,l), +(446,0,l), +(446,517,l), +(164,517,l), +(164,690,l), +(130,681,l), +(130,517,l), +(25,517,l), +(25,485,l), +(130,485,l), +(130,79,ls), +(130,23,o), +(151,0,o), +(207,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(447,625,o), +(459,638,o), +(459,656,cs), +(459,674,o), +(447,687,o), +(429,687,cs), +(410,687,o), +(397,674,o), +(397,656,cs), +(397,638,o), +(410,625,o), +(429,625,cs) +); +} +); +width = 532; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (175,0); +}, +{ +name = bottom_2; +pos = (527,0); +}, +{ +name = caret_1; +pos = (350,0); +}, +{ +name = center_1; +pos = (175,272); +}, +{ +name = center_2; +pos = (527,272); +}, +{ +name = top_1; +pos = (175,755); +}, +{ +name = top_2; +pos = (527,755); +}, +{ +name = topright_1; +pos = (683,729); +}, +{ +name = topright_2; +pos = (683,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(387,0,l), +(387,153,l), +(330,153,ls), +(308,153,o), +(292,160,o), +(292,188,cs), +(292,391,l), +(461,391,l), +(461,0,l), +(650,0,l), +(650,544,l), +(292,544,l), +(292,699,l), +(103,683,l), +(103,544,l), +(16,544,l), +(16,391,l), +(103,391,l), +(103,152,ls), +(103,61,o), +(134,0,o), +(261,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(612,589,o), +(652,619,o), +(652,672,cs), +(652,725,o), +(612,755,o), +(556,755,cs), +(502,755,o), +(461,725,o), +(461,672,cs), +(461,619,o), +(502,589,o), +(556,589,cs) +); +} +); +width = 702; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (24,0); +}, +{ +name = bottom_2; +pos = (178,0); +}, +{ +name = caret_1; +pos = (154,0); +}, +{ +name = center_1; +pos = (77,258); +}, +{ +name = center_2; +pos = (231,258); +}, +{ +name = top_1; +pos = (169,700); +}, +{ +name = top_2; +pos = (323,700); +}, +{ +name = topright_1; +pos = (386,729); +}, +{ +name = topright_2; +pos = (386,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,0,l), +(97,30,l), +(72,30,ls), +(49,30,o), +(45,41,o), +(54,82,cs), +(139,492,l), +(267,492,l), +(164,0,l), +(193,0,l), +(301,516,l), +(144,516,l), +(183,700,l), +(154,697,l), +(116,516,l), +(72,516,l), +(67,492,l), +(111,492,l), +(23,70,ls), +(12,18,o), +(28,0,o), +(64,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,616,o), +(329,625,o), +(329,639,cs), +(329,653,o), +(319,662,o), +(306,662,cs), +(293,662,o), +(283,653,o), +(283,639,cs), +(283,625,o), +(293,616,o), +(306,616,cs) +); +} +); +width = 308; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (72,0); +}, +{ +name = bottom_2; +pos = (329,0); +}, +{ +name = caret_1; +pos = (256.5,0); +}, +{ +name = center_1; +pos = (128,271); +}, +{ +name = center_2; +pos = (385,271); +}, +{ +name = top_1; +pos = (228,751); +}, +{ +name = top_2; +pos = (485,751); +}, +{ +name = topright_1; +pos = (588,729); +}, +{ +name = topright_2; +pos = (588,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,l), +(243,134,l), +(229,133,ls), +(203,131,o), +(197,139,o), +(203,166,cs), +(251,399,l), +(337,399,l), +(254,0,l), +(430,0,l), +(543,541,l), +(282,541,l), +(311,683,l), +(132,668,l), +(105,539,l), +(68,541,l), +(38,399,l), +(76,401,l), +(22,136,ls), +(3,44,o), +(34,0,o), +(135,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(534,586,o), +(573,621,o), +(573,673,cs), +(573,720,o), +(542,751,o), +(488,751,cs), +(428,751,o), +(389,716,o), +(389,664,cs), +(389,617,o), +(420,586,o), +(474,586,cs) +); +} +); +width = 513; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (79,0); +}, +{ +name = bottom_2; +pos = (346,0); +}, +{ +name = caret_1; +pos = (266.5,0); +}, +{ +name = center_1; +pos = (133,259); +}, +{ +name = center_2; +pos = (400,259); +}, +{ +name = top_1; +pos = (222,690); +}, +{ +name = top_2; +pos = (489,690); +}, +{ +name = topright_1; +pos = (610,729); +}, +{ +name = topright_2; +pos = (610,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,0,l), +(245,33,l), +(198,33,ls), +(145,33,o), +(118,46,o), +(132,111,cs), +(210,485,l), +(459,485,l), +(358,0,l), +(393,0,l), +(502,517,l), +(216,517,l), +(252,690,l), +(215,681,l), +(181,517,l), +(76,517,l), +(70,485,l), +(174,485,l), +(96,108,ls), +(81,34,o), +(112,0,o), +(183,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(531,625,o), +(544,639,o), +(544,658,cs), +(544,676,o), +(531,687,o), +(515,687,cs), +(495,687,o), +(482,673,o), +(482,654,cs), +(482,636,o), +(495,625,o), +(511,625,cs) +); +} +); +width = 533; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (124,0); +}, +{ +name = bottom_2; +pos = (485,0); +}, +{ +name = caret_1; +pos = (360.5,0); +}, +{ +name = center_1; +pos = (180,272); +}, +{ +name = center_2; +pos = (541,272); +}, +{ +name = top_1; +pos = (280,755); +}, +{ +name = top_2; +pos = (641,755); +}, +{ +name = topright_1; +pos = (796,729); +}, +{ +name = topright_2; +pos = (796,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,0,l), +(369,153,l), +(314,153,ls), +(286,153,o), +(272,160,o), +(278,188,cs), +(321,391,l), +(499,391,l), +(417,0,l), +(608,0,l), +(723,544,l), +(353,544,l), +(385,699,l), +(193,683,l), +(164,544,l), +(74,544,l), +(42,391,l), +(132,391,l), +(84,166,ls), +(63,66,o), +(106,0,o), +(223,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(711,589,o), +(753,624,o), +(753,676,cs), +(753,723,o), +(720,755,o), +(660,755,cs), +(596,755,o), +(554,720,o), +(554,668,cs), +(554,621,o), +(587,589,o), +(647,589,cs) +); +} +); +width = 721; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (70,0); +}, +{ +name = bottom_2; +pos = (317,0); +}, +{ +name = caret_1; +pos = (247.5,0); +}, +{ +name = center_1; +pos = (124,259); +}, +{ +name = center_2; +pos = (371,259); +}, +{ +name = top_1; +pos = (213,690); +}, +{ +name = top_2; +pos = (460,690); +}, +{ +name = topright_1; +pos = (572,729); +}, +{ +name = topright_2; +pos = (572,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,0,l), +(262,36,l), +(185,36,ls), +(142,36,o), +(120,49,o), +(131,102,cs), +(212,485,l), +(440,485,l), +(339,0,l), +(375,0,l), +(483,517,l), +(218,517,l), +(255,690,l), +(216,681,l), +(181,517,l), +(65,517,l), +(59,485,l), +(175,485,l), +(93,94,ls), +(78,20,o), +(128,0,o), +(178,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(512,625,o), +(525,639,o), +(525,658,cs), +(525,676,o), +(512,687,o), +(496,687,cs), +(476,687,o), +(463,673,o), +(463,654,cs), +(463,636,o), +(476,625,o), +(492,625,cs) +); +} +); +width = 495; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (136,0); +}, +{ +name = bottom_2; +pos = (519,0); +}, +{ +name = caret_1; +pos = (383,0); +}, +{ +name = center_1; +pos = (192,272); +}, +{ +name = center_2; +pos = (575,272); +}, +{ +name = top_1; +pos = (292,754); +}, +{ +name = top_2; +pos = (675,754); +}, +{ +name = topright_1; +pos = (841,729); +}, +{ +name = topright_2; +pos = (841,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(420,186,l), +(333,186,ls), +(304,186,o), +(295,195,o), +(301,223,cs), +(333,379,l), +(526,379,l), +(447,0,l), +(666,0,l), +(779,544,l), +(367,544,l), +(403,710,l), +(179,669,l), +(153,544,l), +(61,544,l), +(26,379,l), +(118,379,l), +(75,171,ls), +(50,52,o), +(113,0,o), +(227,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(769,586,o), +(815,619,o), +(815,677,cs), +(815,725,o), +(778,754,o), +(702,754,cs), +(621,754,o), +(575,721,o), +(575,663,cs), +(575,615,o), +(612,586,o), +(688,586,cs) +); +} +); +width = 766; +} +); +metricLeft = t; +metricRight = i; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/t_i.liga.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/t_i.liga.ss01.glyph new file mode 100644 index 00000000..2137a76c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/t_i.liga.ss01.glyph @@ -0,0 +1,1449 @@ +{ +glyphname = t_i.liga.ss01; +kernLeft = KO_t; +kernRight = KO_l; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (80,0); +}, +{ +name = bottom_2; +pos = (239,0); +}, +{ +name = caret_1; +pos = (159,0); +}, +{ +name = center_1; +pos = (80,258); +}, +{ +name = center_2; +pos = (239,258); +}, +{ +name = top_1; +pos = (80,729); +}, +{ +name = top_2; +pos = (239,729); +}, +{ +name = topright_1; +pos = (298,729); +}, +{ +name = topright_2; +pos = (298,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,0,l), +(146,29,l), +(119,29,ls), +(96,29,o), +(92,41,o), +(92,64,cs), +(92,492,l), +(229,492,l), +(229,0,l), +(258,0,l), +(258,516,l), +(92,516,l), +(92,700,l), +(63,697,l), +(63,516,l), +(18,516,l), +(18,492,l), +(63,492,l), +(63,56,ls), +(63,14,o), +(82,0,o), +(115,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(258,614,l), +(258,729,l), +(229,729,l), +(229,614,l) +); +} +); +width = 318; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (128,0); +}, +{ +name = bottom_2; +pos = (384,0); +}, +{ +name = caret_1; +pos = (256,0); +}, +{ +name = center_1; +pos = (128,271); +}, +{ +name = center_2; +pos = (384,271); +}, +{ +name = top_1; +pos = (128,729); +}, +{ +name = top_2; +pos = (384,729); +}, +{ +name = topright_1; +pos = (492,729); +}, +{ +name = topright_2; +pos = (492,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(270,132,l), +(246,132,ls), +(228,132,o), +(225,137,o), +(225,160,cs), +(225,398,l), +(308,398,l), +(308,0,l), +(485,0,l), +(485,541,l), +(225,541,l), +(225,683,l), +(49,668,l), +(49,539,l), +(11,541,l), +(11,398,l), +(49,401,l), +(49,124,ls), +(49,40,o), +(87,0,o), +(176,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(485,598,l), +(485,729,l), +(308,729,l), +(308,598,l) +); +} +); +width = 512; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (125,0); +}, +{ +name = bottom_2; +pos = (376,0); +}, +{ +name = caret_1; +pos = (250.5,0); +}, +{ +name = center_1; +pos = (125,259); +}, +{ +name = center_2; +pos = (376,259); +}, +{ +name = top_1; +pos = (125,729); +}, +{ +name = top_2; +pos = (376,729); +}, +{ +name = topright_1; +pos = (481,729); +}, +{ +name = topright_2; +pos = (481,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,0,l), +(311,36,l), +(232,36,ls), +(184,36,o), +(166,58,o), +(166,106,cs), +(166,485,l), +(398,485,l), +(398,0,l), +(435,0,l), +(435,517,l), +(166,517,l), +(166,690,l), +(129,681,l), +(129,517,l), +(11,517,l), +(11,485,l), +(129,485,l), +(129,103,ls), +(129,32,o), +(162,0,o), +(233,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,615,l), +(435,729,l), +(398,729,l), +(398,615,l) +); +} +); +width = 501; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (192,0); +}, +{ +name = bottom_2; +pos = (577,0); +}, +{ +name = caret_1; +pos = (384.5,0); +}, +{ +name = center_1; +pos = (192,272); +}, +{ +name = center_2; +pos = (577,272); +}, +{ +name = top_1; +pos = (192,729); +}, +{ +name = top_2; +pos = (577,729); +}, +{ +name = topright_1; +pos = (749,729); +}, +{ +name = topright_2; +pos = (749,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,l), +(443,186,l), +(353,186,ls), +(330,186,o), +(314,193,o), +(314,221,cs), +(314,379,l), +(505,379,l), +(505,0,l), +(726,0,l), +(726,544,l), +(314,544,l), +(314,710,l), +(97,669,l), +(97,544,l), +(4,544,l), +(4,379,l), +(97,379,l), +(97,155,ls), +(97,55,o), +(150,0,o), +(251,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(726,600,l), +(726,729,l), +(505,729,l), +(505,600,l) +); +} +); +width = 769; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (70,0); +}, +{ +name = bottom_2; +pos = (229,0); +}, +{ +name = caret_1; +pos = (149,0); +}, +{ +name = center_1; +pos = (70,258); +}, +{ +name = center_2; +pos = (229,258); +}, +{ +name = top_1; +pos = (70,729); +}, +{ +name = top_2; +pos = (229,729); +}, +{ +name = topright_1; +pos = (288,729); +}, +{ +name = topright_2; +pos = (288,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,0,l), +(136,29,l), +(109,29,ls), +(86,29,o), +(82,41,o), +(82,64,cs), +(82,492,l), +(219,492,l), +(219,0,l), +(248,0,l), +(248,516,l), +(82,516,l), +(82,700,l), +(53,697,l), +(53,516,l), +(8,516,l), +(8,492,l), +(53,492,l), +(53,56,ls), +(53,14,o), +(72,0,o), +(105,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,614,l), +(248,729,l), +(219,729,l), +(219,614,l) +); +} +); +width = 284; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (121,0); +}, +{ +name = bottom_2; +pos = (377,0); +}, +{ +name = caret_1; +pos = (249,0); +}, +{ +name = center_1; +pos = (121,271); +}, +{ +name = center_2; +pos = (377,271); +}, +{ +name = top_1; +pos = (121,729); +}, +{ +name = top_2; +pos = (377,729); +}, +{ +name = topright_1; +pos = (485,729); +}, +{ +name = topright_2; +pos = (485,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,l), +(263,132,l), +(239,132,ls), +(221,132,o), +(218,137,o), +(218,160,cs), +(218,398,l), +(301,398,l), +(301,0,l), +(478,0,l), +(478,541,l), +(218,541,l), +(218,683,l), +(42,668,l), +(42,539,l), +(4,541,l), +(4,398,l), +(42,401,l), +(42,124,ls), +(42,40,o), +(80,0,o), +(169,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(478,598,l), +(478,729,l), +(301,729,l), +(301,598,l) +); +} +); +width = 494; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (115,0); +}, +{ +name = bottom_2; +pos = (384,0); +}, +{ +name = caret_1; +pos = (250,0); +}, +{ +name = center_1; +pos = (115,259); +}, +{ +name = center_2; +pos = (384,259); +}, +{ +name = top_1; +pos = (115,729); +}, +{ +name = top_2; +pos = (384,729); +}, +{ +name = topright_1; +pos = (499,729); +}, +{ +name = topright_2; +pos = (499,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(278,36,l), +(208,36,ls), +(165,36,o), +(146,56,o), +(146,101,cs), +(146,485,l), +(397,485,l), +(397,0,l), +(434,0,l), +(434,517,l), +(145,517,l), +(145,690,l), +(109,681,l), +(109,517,l), +(2,517,l), +(2,485,l), +(109,485,l), +(109,97,ls), +(109,28,o), +(145,0,o), +(205,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,613,l), +(434,729,l), +(397,729,l), +(397,613,l) +); +} +); +width = 493; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (164,0); +}, +{ +name = bottom_2; +pos = (525,0); +}, +{ +name = caret_1; +pos = (344,0); +}, +{ +name = center_1; +pos = (164,272); +}, +{ +name = center_2; +pos = (525,272); +}, +{ +name = top_1; +pos = (164,729); +}, +{ +name = top_2; +pos = (525,729); +}, +{ +name = topright_1; +pos = (685,729); +}, +{ +name = topright_2; +pos = (685,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(381,153,l), +(321,153,ls), +(298,153,o), +(282,160,o), +(282,188,cs), +(282,391,l), +(460,391,l), +(460,0,l), +(651,0,l), +(651,544,l), +(282,544,l), +(282,699,l), +(91,683,l), +(91,544,l), +(0,544,l), +(0,391,l), +(91,391,l), +(91,152,ls), +(91,47,o), +(136,0,o), +(242,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,601,l), +(651,729,l), +(460,729,l), +(460,601,l) +); +} +); +width = 681; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (120,0); +}, +{ +name = bottom_2; +pos = (371,0); +}, +{ +name = caret_1; +pos = (246,0); +}, +{ +name = center_1; +pos = (120,259); +}, +{ +name = center_2; +pos = (371,259); +}, +{ +name = top_1; +pos = (120,729); +}, +{ +name = top_2; +pos = (371,729); +}, +{ +name = topright_1; +pos = (476,729); +}, +{ +name = topright_2; +pos = (476,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,l), +(306,36,l), +(227,36,ls), +(179,36,o), +(161,58,o), +(161,106,cs), +(161,485,l), +(393,485,l), +(393,0,l), +(430,0,l), +(430,517,l), +(161,517,l), +(161,690,l), +(124,681,l), +(124,517,l), +(6,517,l), +(6,485,l), +(124,485,l), +(124,103,ls), +(124,32,o), +(157,0,o), +(228,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(430,615,l), +(430,729,l), +(393,729,l), +(393,615,l) +); +} +); +width = 486; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (187,0); +}, +{ +name = bottom_2; +pos = (572,0); +}, +{ +name = caret_1; +pos = (380,0); +}, +{ +name = center_1; +pos = (187,272); +}, +{ +name = center_2; +pos = (572,272); +}, +{ +name = top_1; +pos = (187,729); +}, +{ +name = top_2; +pos = (572,729); +}, +{ +name = topright_1; +pos = (744,729); +}, +{ +name = topright_2; +pos = (744,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,0,l), +(438,186,l), +(348,186,ls), +(325,186,o), +(309,193,o), +(309,221,cs), +(309,379,l), +(500,379,l), +(500,0,l), +(721,0,l), +(721,544,l), +(309,544,l), +(309,710,l), +(92,669,l), +(92,544,l), +(-1,544,l), +(-1,379,l), +(92,379,l), +(92,155,ls), +(92,55,o), +(145,0,o), +(246,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(721,600,l), +(721,729,l), +(500,729,l), +(500,600,l) +); +} +); +width = 754; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (136,0); +}, +{ +name = bottom_2; +pos = (399,0); +}, +{ +name = caret_1; +pos = (267,0); +}, +{ +name = center_1; +pos = (136,259); +}, +{ +name = center_2; +pos = (399,259); +}, +{ +name = top_1; +pos = (136,729); +}, +{ +name = top_2; +pos = (399,729); +}, +{ +name = topright_1; +pos = (512,729); +}, +{ +name = topright_2; +pos = (512,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(295,36,l), +(227,36,ls), +(184,36,o), +(165,56,o), +(165,101,cs), +(165,485,l), +(412,485,l), +(412,0,l), +(448,0,l), +(448,517,l), +(164,517,l), +(164,690,l), +(130,681,l), +(130,517,l), +(25,517,l), +(25,485,l), +(130,485,l), +(130,97,ls), +(130,28,o), +(164,0,o), +(224,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,613,l), +(448,729,l), +(412,729,l), +(412,613,l) +); +} +); +width = 534; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (175,0); +}, +{ +name = bottom_2; +pos = (527,0); +}, +{ +name = caret_1; +pos = (350,0); +}, +{ +name = center_1; +pos = (175,272); +}, +{ +name = center_2; +pos = (527,272); +}, +{ +name = top_1; +pos = (175,729); +}, +{ +name = top_2; +pos = (527,729); +}, +{ +name = topright_1; +pos = (682,729); +}, +{ +name = topright_2; +pos = (682,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(386,0,l), +(386,153,l), +(329,153,ls), +(308,153,o), +(292,160,o), +(292,188,cs), +(292,391,l), +(461,391,l), +(461,0,l), +(650,0,l), +(650,544,l), +(292,544,l), +(292,699,l), +(103,683,l), +(103,544,l), +(16,544,l), +(16,391,l), +(103,391,l), +(103,152,ls), +(103,47,o), +(147,0,o), +(250,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(650,601,l), +(650,729,l), +(461,729,l), +(461,601,l) +); +} +); +width = 702; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (27,0); +}, +{ +name = bottom_2; +pos = (187,0); +}, +{ +name = caret_1; +pos = (160,0); +}, +{ +name = center_1; +pos = (80,258); +}, +{ +name = center_2; +pos = (240,258); +}, +{ +name = top_1; +pos = (178,729); +}, +{ +name = top_2; +pos = (338,729); +}, +{ +name = topright_1; +pos = (398,729); +}, +{ +name = topright_2; +pos = (398,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,0,l), +(97,30,l), +(72,30,ls), +(49,30,o), +(45,41,o), +(54,82,cs), +(139,492,l), +(279,492,l), +(176,0,l), +(205,0,l), +(313,516,l), +(144,516,l), +(183,700,l), +(154,697,l), +(116,516,l), +(72,516,l), +(67,492,l), +(111,492,l), +(23,70,ls), +(12,18,o), +(28,0,o), +(64,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,614,l), +(356,729,l), +(327,729,l), +(303,614,l) +); +} +); +width = 320; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (72,0); +}, +{ +name = bottom_2; +pos = (328,0); +}, +{ +name = caret_1; +pos = (256,0); +}, +{ +name = center_1; +pos = (128,271); +}, +{ +name = center_2; +pos = (384,271); +}, +{ +name = top_1; +pos = (223,729); +}, +{ +name = top_2; +pos = (479,729); +}, +{ +name = topright_1; +pos = (587,729); +}, +{ +name = topright_2; +pos = (587,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,l), +(243,134,l), +(229,133,ls), +(203,131,o), +(197,139,o), +(203,166,cs), +(252,399,l), +(336,399,l), +(253,0,l), +(429,0,l), +(542,541,l), +(281,541,l), +(311,683,l), +(132,668,l), +(105,539,l), +(68,541,l), +(38,399,l), +(76,401,l), +(22,136,ls), +(3,44,o), +(34,0,o), +(135,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(554,598,l), +(581,729,l), +(405,729,l), +(378,598,l) +); +} +); +width = 512; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (74,0); +}, +{ +name = bottom_2; +pos = (331,0); +}, +{ +name = caret_1; +pos = (256.5,0); +}, +{ +name = center_1; +pos = (128,259); +}, +{ +name = center_2; +pos = (385,259); +}, +{ +name = top_1; +pos = (225,729); +}, +{ +name = top_2; +pos = (482,729); +}, +{ +name = topright_1; +pos = (590,729); +}, +{ +name = topright_2; +pos = (590,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,0,l), +(245,33,l), +(198,33,ls), +(145,33,o), +(118,46,o), +(132,111,cs), +(210,485,l), +(439,485,l), +(338,0,l), +(373,0,l), +(482,517,l), +(216,517,l), +(252,690,l), +(215,681,l), +(181,517,l), +(76,517,l), +(70,485,l), +(174,485,l), +(96,108,ls), +(81,34,o), +(112,0,o), +(183,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(502,615,l), +(526,729,l), +(490,729,l), +(466,615,l) +); +} +); +width = 513; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (125,0); +}, +{ +name = bottom_2; +pos = (486,0); +}, +{ +name = caret_1; +pos = (361,0); +}, +{ +name = center_1; +pos = (181,272); +}, +{ +name = center_2; +pos = (542,272); +}, +{ +name = top_1; +pos = (276,729); +}, +{ +name = top_2; +pos = (637,729); +}, +{ +name = topright_1; +pos = (797,729); +}, +{ +name = topright_2; +pos = (797,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,0,l), +(369,153,l), +(314,153,ls), +(286,153,o), +(272,160,o), +(278,188,cs), +(321,391,l), +(500,391,l), +(418,0,l), +(609,0,l), +(724,544,l), +(353,544,l), +(385,699,l), +(193,683,l), +(164,544,l), +(74,544,l), +(42,391,l), +(132,391,l), +(84,166,ls), +(63,66,o), +(106,0,o), +(223,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(738,611,l), +(763,729,l), +(571,729,l), +(546,611,l) +); +} +); +width = 722; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (70,0); +}, +{ +name = bottom_2; +pos = (319,0); +}, +{ +name = caret_1; +pos = (248.5,0); +}, +{ +name = center_1; +pos = (124,259); +}, +{ +name = center_2; +pos = (373,259); +}, +{ +name = top_1; +pos = (221,729); +}, +{ +name = top_2; +pos = (470,729); +}, +{ +name = topright_1; +pos = (574,729); +}, +{ +name = topright_2; +pos = (574,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(260,35,l), +(198,35,ls), +(145,35,o), +(119,48,o), +(132,111,cs), +(209,485,l), +(442,485,l), +(341,0,l), +(377,0,l), +(485,517,l), +(216,517,l), +(252,690,l), +(214,681,l), +(180,517,l), +(65,517,l), +(59,485,l), +(173,485,l), +(95,108,ls), +(80,34,o), +(116,0,o), +(179,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(505,615,l), +(529,729,l), +(493,729,l), +(469,615,l) +); +} +); +width = 497; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (136,0); +}, +{ +name = bottom_2; +pos = (520,0); +}, +{ +name = caret_1; +pos = (384,0); +}, +{ +name = center_1; +pos = (192,272); +}, +{ +name = center_2; +pos = (576,272); +}, +{ +name = top_1; +pos = (287,730); +}, +{ +name = top_2; +pos = (671,730); +}, +{ +name = topright_1; +pos = (843,729); +}, +{ +name = topright_2; +pos = (843,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(420,186,l), +(333,186,ls), +(304,186,o), +(295,195,o), +(301,223,cs), +(333,379,l), +(528,379,l), +(449,0,l), +(668,0,l), +(781,544,l), +(367,544,l), +(403,710,l), +(179,669,l), +(153,544,l), +(61,544,l), +(26,379,l), +(118,379,l), +(75,171,ls), +(50,52,o), +(113,0,o), +(227,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(792,601,l), +(818,730,l), +(599,730,l), +(573,601,l) +); +} +); +width = 768; +} +); +metricLeft = t; +metricRight = i.ss01; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/t_t.liga.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/t_t.liga.glyph new file mode 100644 index 00000000..ee80c068 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/t_t.liga.glyph @@ -0,0 +1,1911 @@ +{ +glyphname = t_t.liga; +kernLeft = KO_t; +kernRight = KO_t; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (137,0); +}, +{ +name = bottom_2; +pos = (410,0); +}, +{ +name = caret_1; +pos = (273,0); +}, +{ +name = center_1; +pos = (137,271); +}, +{ +name = center_2; +pos = (410,271); +}, +{ +name = top_1; +pos = (137,683); +}, +{ +name = top_2; +pos = (410,683); +}, +{ +name = topright_1; +pos = (526,729); +}, +{ +name = topright_2; +pos = (526,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(270,132,l), +(246,132,ls), +(228,132,o), +(225,137,o), +(225,160,cs), +(225,399,l), +(308,399,l), +(308,124,ls), +(308,40,o), +(346,0,o), +(435,0,cs), +(529,0,l), +(529,132,l), +(505,132,ls), +(487,132,o), +(484,137,o), +(484,160,cs), +(484,401,l), +(529,398,l), +(529,541,l), +(484,539,l), +(484,683,l), +(308,668,l), +(308,541,l), +(225,541,l), +(225,683,l), +(49,668,l), +(49,539,l), +(11,541,l), +(11,398,l), +(49,401,l), +(49,124,ls), +(49,40,o), +(87,0,o), +(176,0,cs) +); +} +); +width = 546; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (79,0); +}, +{ +name = bottom_2; +pos = (236,0); +}, +{ +name = caret_1; +pos = (157,0); +}, +{ +name = center_1; +pos = (79,258); +}, +{ +name = center_2; +pos = (236,258); +}, +{ +name = top_1; +pos = (79,700); +}, +{ +name = top_2; +pos = (236,700); +}, +{ +name = topright_1; +pos = (294,729); +}, +{ +name = topright_2; +pos = (294,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,-5,o), +(140,-3,o), +(147,0,c), +(147,29,l), +(139,25,o), +(124,25,o), +(121,25,cs), +(98,25,o), +(91,36,o), +(91,77,cs), +(91,492,l), +(214,492,l), +(214,65,ls), +(214,14,o), +(231,-5,o), +(270,-5,cs), +(280,-5,o), +(291,-3,o), +(298,0,c), +(298,29,l), +(290,25,o), +(275,25,o), +(272,25,cs), +(249,25,o), +(242,36,o), +(242,77,cs), +(242,492,l), +(298,492,l), +(298,516,l), +(242,516,l), +(242,700,l), +(214,697,l), +(214,516,l), +(91,516,l), +(91,700,l), +(63,697,l), +(63,516,l), +(18,516,l), +(18,492,l), +(63,492,l), +(63,65,ls), +(63,14,o), +(80,-5,o), +(119,-5,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,0,l), +(146,29,l), +(119,29,ls), +(96,29,o), +(92,41,o), +(92,64,cs), +(92,492,l), +(214,492,l), +(214,56,ls), +(214,14,o), +(233,0,o), +(266,0,cs), +(297,0,l), +(297,29,l), +(270,29,ls), +(247,29,o), +(243,41,o), +(243,64,cs), +(243,492,l), +(298,492,l), +(298,516,l), +(243,516,l), +(243,700,l), +(214,697,l), +(214,516,l), +(92,516,l), +(92,700,l), +(63,697,l), +(63,516,l), +(18,516,l), +(18,492,l), +(63,492,l), +(63,56,ls), +(63,14,o), +(82,0,o), +(115,0,cs) +); +} +); +width = 314; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (152,0); +}, +{ +name = bottom_2; +pos = (456,0); +}, +{ +name = caret_1; +pos = (304,0); +}, +{ +name = center_1; +pos = (152,259); +}, +{ +name = center_2; +pos = (456,259); +}, +{ +name = top_1; +pos = (152,690); +}, +{ +name = top_2; +pos = (456,690); +}, +{ +name = topright_1; +pos = (588,729); +}, +{ +name = topright_2; +pos = (588,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,0,l), +(311,36,l), +(232,36,ls), +(184,36,o), +(166,58,o), +(166,106,cs), +(166,485,l), +(407,485,l), +(407,103,ls), +(407,32,o), +(440,0,o), +(511,0,cs), +(589,0,l), +(589,36,l), +(510,36,ls), +(462,36,o), +(444,58,o), +(444,106,cs), +(444,485,l), +(589,485,l), +(589,517,l), +(444,517,l), +(444,690,l), +(407,681,l), +(407,517,l), +(166,517,l), +(166,690,l), +(129,681,l), +(129,517,l), +(11,517,l), +(11,485,l), +(129,485,l), +(129,103,ls), +(129,32,o), +(162,0,o), +(233,0,cs) +); +} +); +width = 608; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (219,0); +}, +{ +name = bottom_2; +pos = (656,0); +}, +{ +name = caret_1; +pos = (437.5,0); +}, +{ +name = center_1; +pos = (219,272); +}, +{ +name = center_2; +pos = (656,272); +}, +{ +name = top_1; +pos = (219,710); +}, +{ +name = top_2; +pos = (656,710); +}, +{ +name = topright_1; +pos = (855,729); +}, +{ +name = topright_2; +pos = (855,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,l), +(443,186,l), +(353,186,ls), +(330,186,o), +(314,193,o), +(314,221,cs), +(314,379,l), +(501,379,l), +(501,155,ls), +(501,55,o), +(554,0,o), +(655,0,cs), +(847,0,l), +(847,186,l), +(757,186,ls), +(734,186,o), +(718,193,o), +(718,221,cs), +(718,379,l), +(847,379,l), +(847,544,l), +(718,544,l), +(718,710,l), +(501,669,l), +(501,544,l), +(314,544,l), +(314,710,l), +(97,669,l), +(97,544,l), +(4,544,l), +(4,379,l), +(97,379,l), +(97,155,ls), +(97,55,o), +(150,0,o), +(251,0,cs) +); +} +); +width = 875; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (69,0); +}, +{ +name = bottom_2; +pos = (226,0); +}, +{ +name = caret_1; +pos = (147,0); +}, +{ +name = center_1; +pos = (69,258); +}, +{ +name = center_2; +pos = (226,258); +}, +{ +name = top_1; +pos = (69,700); +}, +{ +name = top_2; +pos = (226,700); +}, +{ +name = topright_1; +pos = (284,729); +}, +{ +name = topright_2; +pos = (284,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,-5,o), +(140,-3,o), +(147,0,c), +(147,29,l), +(139,25,o), +(124,25,o), +(121,25,cs), +(98,25,o), +(91,36,o), +(91,77,cs), +(91,492,l), +(214,492,l), +(214,65,ls), +(214,14,o), +(231,-5,o), +(270,-5,cs), +(280,-5,o), +(291,-3,o), +(298,0,c), +(298,29,l), +(290,25,o), +(275,25,o), +(272,25,cs), +(249,25,o), +(242,36,o), +(242,77,cs), +(242,492,l), +(298,492,l), +(298,516,l), +(242,516,l), +(242,700,l), +(214,697,l), +(214,516,l), +(91,516,l), +(91,700,l), +(63,697,l), +(63,516,l), +(18,516,l), +(18,492,l), +(63,492,l), +(63,65,ls), +(63,14,o), +(80,-5,o), +(119,-5,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,0,l), +(136,29,l), +(109,29,ls), +(86,29,o), +(82,41,o), +(82,64,cs), +(82,492,l), +(204,492,l), +(204,56,ls), +(204,14,o), +(223,0,o), +(256,0,cs), +(287,0,l), +(287,29,l), +(260,29,ls), +(237,29,o), +(233,41,o), +(233,64,cs), +(233,492,l), +(288,492,l), +(288,516,l), +(233,516,l), +(233,700,l), +(204,697,l), +(204,516,l), +(82,516,l), +(82,700,l), +(53,697,l), +(53,516,l), +(8,516,l), +(8,492,l), +(53,492,l), +(53,56,ls), +(53,14,o), +(72,0,o), +(105,0,cs) +); +} +); +width = 294; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (130,0); +}, +{ +name = bottom_2; +pos = (403,0); +}, +{ +name = caret_1; +pos = (266,0); +}, +{ +name = center_1; +pos = (130,271); +}, +{ +name = center_2; +pos = (403,271); +}, +{ +name = top_1; +pos = (130,683); +}, +{ +name = top_2; +pos = (403,683); +}, +{ +name = topright_1; +pos = (519,729); +}, +{ +name = topright_2; +pos = (519,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,l), +(263,132,l), +(239,132,ls), +(221,132,o), +(218,137,o), +(218,160,cs), +(218,399,l), +(301,399,l), +(301,124,ls), +(301,40,o), +(339,0,o), +(428,0,cs), +(522,0,l), +(522,132,l), +(498,132,ls), +(480,132,o), +(477,137,o), +(477,160,cs), +(477,401,l), +(522,398,l), +(522,541,l), +(477,539,l), +(477,683,l), +(301,668,l), +(301,541,l), +(218,541,l), +(218,683,l), +(42,668,l), +(42,539,l), +(4,541,l), +(4,398,l), +(42,401,l), +(42,124,ls), +(42,40,o), +(80,0,o), +(169,0,cs) +); +} +); +width = 529; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (131,0); +}, +{ +name = bottom_2; +pos = (433,0); +}, +{ +name = caret_1; +pos = (282,0); +}, +{ +name = center_1; +pos = (131,259); +}, +{ +name = center_2; +pos = (433,259); +}, +{ +name = top_1; +pos = (131,690); +}, +{ +name = top_2; +pos = (433,690); +}, +{ +name = topright_1; +pos = (564,729); +}, +{ +name = topright_2; +pos = (564,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(278,36,l), +(208,36,ls), +(165,36,o), +(146,56,o), +(146,101,cs), +(146,485,l), +(383,485,l), +(383,97,ls), +(383,28,o), +(419,0,o), +(479,0,cs), +(552,0,l), +(552,36,l), +(482,36,ls), +(439,36,o), +(420,56,o), +(420,101,cs), +(420,485,l), +(550,485,l), +(550,517,l), +(419,517,l), +(419,690,l), +(383,681,l), +(383,517,l), +(145,517,l), +(145,690,l), +(109,681,l), +(109,517,l), +(2,517,l), +(2,485,l), +(109,485,l), +(109,97,ls), +(109,28,o), +(145,0,o), +(205,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = t; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = t; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +42 +); +stem = -2; +target = ( +0, +43 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +1 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +30 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +} +); +}; +width = 559; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (181,0); +}, +{ +name = bottom_2; +pos = (576,0); +}, +{ +name = caret_1; +pos = (379,0); +}, +{ +name = center_1; +pos = (181,272); +}, +{ +name = center_2; +pos = (576,272); +}, +{ +name = top_1; +pos = (181,699); +}, +{ +name = top_2; +pos = (576,699); +}, +{ +name = topright_1; +pos = (754,729); +}, +{ +name = topright_2; +pos = (754,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(322,-10,o), +(375,0,o), +(406,14,c), +(406,156,l), +(390,148,o), +(371,143,o), +(351,143,cs), +(313,143,o), +(292,145,o), +(292,202,cs), +(292,391,l), +(465,391,l), +(465,158,ls), +(465,33,o), +(533,-10,o), +(636,-10,cs), +(686,-10,o), +(739,0,o), +(770,14,c), +(770,156,l), +(754,148,o), +(735,143,o), +(715,143,cs), +(677,143,o), +(656,145,o), +(656,202,cs), +(656,391,l), +(770,391,l), +(770,544,l), +(656,544,l), +(656,710,l), +(465,668,l), +(465,544,l), +(292,544,l), +(292,710,l), +(101,668,l), +(101,544,l), +(17,544,l), +(17,391,l), +(101,391,l), +(101,158,ls), +(101,33,o), +(169,-10,o), +(272,-10,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(381,153,l), +(321,153,ls), +(298,153,o), +(282,160,o), +(282,188,cs), +(282,391,l), +(449,391,l), +(449,152,ls), +(449,47,o), +(494,0,o), +(600,0,cs), +(739,0,l), +(739,153,l), +(679,153,ls), +(656,153,o), +(640,160,o), +(640,188,cs), +(640,391,l), +(739,391,l), +(739,544,l), +(640,544,l), +(640,699,l), +(449,683,l), +(449,544,l), +(282,544,l), +(282,699,l), +(91,683,l), +(91,544,l), +(0,544,l), +(0,391,l), +(91,391,l), +(91,152,ls), +(91,47,o), +(136,0,o), +(242,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = t; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = t; +}; +width = 753; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (147,0); +}, +{ +name = bottom_2; +pos = (451,0); +}, +{ +name = caret_1; +pos = (299,0); +}, +{ +name = center_1; +pos = (147,259); +}, +{ +name = center_2; +pos = (451,259); +}, +{ +name = top_1; +pos = (147,690); +}, +{ +name = top_2; +pos = (451,690); +}, +{ +name = topright_1; +pos = (583,729); +}, +{ +name = topright_2; +pos = (583,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,l), +(306,36,l), +(227,36,ls), +(179,36,o), +(161,58,o), +(161,106,cs), +(161,485,l), +(402,485,l), +(402,103,ls), +(402,32,o), +(435,0,o), +(506,0,cs), +(584,0,l), +(584,36,l), +(505,36,ls), +(457,36,o), +(439,58,o), +(439,106,cs), +(439,485,l), +(584,485,l), +(584,517,l), +(439,517,l), +(439,690,l), +(402,681,l), +(402,517,l), +(161,517,l), +(161,690,l), +(124,681,l), +(124,517,l), +(6,517,l), +(6,485,l), +(124,485,l), +(124,103,ls), +(124,32,o), +(157,0,o), +(228,0,cs) +); +} +); +width = 593; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (214,0); +}, +{ +name = bottom_2; +pos = (651,0); +}, +{ +name = caret_1; +pos = (433,0); +}, +{ +name = center_1; +pos = (214,272); +}, +{ +name = center_2; +pos = (651,272); +}, +{ +name = top_1; +pos = (214,710); +}, +{ +name = top_2; +pos = (651,710); +}, +{ +name = topright_1; +pos = (850,729); +}, +{ +name = topright_2; +pos = (850,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,0,l), +(438,186,l), +(348,186,ls), +(325,186,o), +(309,193,o), +(309,221,cs), +(309,379,l), +(496,379,l), +(496,155,ls), +(496,55,o), +(549,0,o), +(650,0,cs), +(842,0,l), +(842,186,l), +(752,186,ls), +(729,186,o), +(713,193,o), +(713,221,cs), +(713,379,l), +(842,379,l), +(842,544,l), +(713,544,l), +(713,710,l), +(496,669,l), +(496,544,l), +(309,544,l), +(309,710,l), +(92,669,l), +(92,544,l), +(-1,544,l), +(-1,379,l), +(92,379,l), +(92,155,ls), +(92,55,o), +(145,0,o), +(246,0,cs) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (151,0); +}, +{ +name = bottom_2; +pos = (447,0); +}, +{ +name = caret_1; +pos = (299,0); +}, +{ +name = center_1; +pos = (151,259); +}, +{ +name = center_2; +pos = (447,259); +}, +{ +name = top_1; +pos = (151,690); +}, +{ +name = top_2; +pos = (447,690); +}, +{ +name = topright_1; +pos = (575,729); +}, +{ +name = topright_2; +pos = (575,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(295,36,l), +(227,36,ls), +(184,36,o), +(165,56,o), +(165,101,cs), +(165,485,l), +(398,485,l), +(398,97,ls), +(398,28,o), +(434,0,o), +(492,0,cs), +(563,0,l), +(563,36,l), +(495,36,ls), +(452,36,o), +(435,56,o), +(435,101,cs), +(435,485,l), +(561,485,l), +(561,517,l), +(434,517,l), +(434,690,l), +(398,681,l), +(398,517,l), +(164,517,l), +(164,690,l), +(130,681,l), +(130,517,l), +(25,517,l), +(25,485,l), +(130,485,l), +(130,97,ls), +(130,28,o), +(164,0,o), +(224,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = t; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = t; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +42 +); +stem = -2; +target = ( +0, +43 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +1 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +30 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +} +); +}; +width = 597; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (193,0); +}, +{ +name = bottom_2; +pos = (578,0); +}, +{ +name = caret_1; +pos = (386,0); +}, +{ +name = center_1; +pos = (193,272); +}, +{ +name = center_2; +pos = (578,272); +}, +{ +name = top_1; +pos = (193,699); +}, +{ +name = top_2; +pos = (578,699); +}, +{ +name = topright_1; +pos = (752,729); +}, +{ +name = topright_2; +pos = (752,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(322,-10,o), +(375,0,o), +(406,14,c), +(406,156,l), +(390,148,o), +(371,143,o), +(351,143,cs), +(313,143,o), +(292,145,o), +(292,202,cs), +(292,391,l), +(465,391,l), +(465,158,ls), +(465,33,o), +(533,-10,o), +(636,-10,cs), +(686,-10,o), +(739,0,o), +(770,14,c), +(770,156,l), +(754,148,o), +(735,143,o), +(715,143,cs), +(677,143,o), +(656,145,o), +(656,202,cs), +(656,391,l), +(770,391,l), +(770,544,l), +(656,544,l), +(656,710,l), +(465,668,l), +(465,544,l), +(292,544,l), +(292,710,l), +(101,668,l), +(101,544,l), +(17,544,l), +(17,391,l), +(101,391,l), +(101,158,ls), +(101,33,o), +(169,-10,o), +(272,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(388,0,l), +(388,153,l), +(330,153,ls), +(308,153,o), +(293,160,o), +(293,188,cs), +(293,391,l), +(453,391,l), +(453,152,ls), +(453,47,o), +(497,0,o), +(601,0,cs), +(738,0,l), +(738,153,l), +(679,153,ls), +(657,153,o), +(643,160,o), +(643,188,cs), +(643,391,l), +(738,391,l), +(738,544,l), +(643,544,l), +(643,699,l), +(453,683,l), +(453,544,l), +(293,544,l), +(293,699,l), +(104,683,l), +(104,544,l), +(16,544,l), +(16,391,l), +(104,391,l), +(104,152,ls), +(104,47,o), +(148,0,o), +(251,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = t; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = t; +}; +width = 770; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (25,0); +}, +{ +name = bottom_2; +pos = (180,0); +}, +{ +name = caret_1; +pos = (155.5,0); +}, +{ +name = center_1; +pos = (78,258); +}, +{ +name = center_2; +pos = (233,258); +}, +{ +name = top_1; +pos = (170,700); +}, +{ +name = top_2; +pos = (325,700); +}, +{ +name = topright_1; +pos = (389,729); +}, +{ +name = topright_2; +pos = (389,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,0,l), +(97,30,l), +(72,30,ls), +(49,30,o), +(45,41,o), +(54,82,cs), +(139,492,l), +(261,492,l), +(173,70,ls), +(162,18,o), +(177,0,o), +(213,0,cs), +(241,0,l), +(247,30,l), +(222,30,ls), +(198,30,o), +(195,41,o), +(203,82,cs), +(289,492,l), +(344,492,l), +(349,516,l), +(293,516,l), +(333,700,l), +(304,697,l), +(266,516,l), +(144,516,l), +(183,700,l), +(154,697,l), +(116,516,l), +(72,516,l), +(67,492,l), +(111,492,l), +(23,70,ls), +(13,18,o), +(28,0,o), +(64,0,cs) +); +} +); +width = 311; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (81,0); +}, +{ +name = bottom_2; +pos = (354,0); +}, +{ +name = caret_1; +pos = (273.5,0); +}, +{ +name = center_1; +pos = (137,271); +}, +{ +name = center_2; +pos = (410,271); +}, +{ +name = top_1; +pos = (222,683); +}, +{ +name = top_2; +pos = (495,683); +}, +{ +name = topright_1; +pos = (622,729); +}, +{ +name = topright_2; +pos = (622,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,l), +(243,134,l), +(229,133,ls), +(203,131,o), +(197,139,o), +(203,166,cs), +(252,401,l), +(336,401,l), +(281,136,ls), +(262,44,o), +(293,0,o), +(394,0,cs), +(474,0,l), +(503,134,l), +(489,133,ls), +(462,131,o), +(456,139,o), +(462,166,cs), +(511,401,l), +(557,399,l), +(586,541,l), +(541,539,l), +(570,683,l), +(392,668,l), +(364,539,l), +(281,539,l), +(311,683,l), +(132,668,l), +(105,539,l), +(68,541,l), +(38,399,l), +(76,401,l), +(22,136,ls), +(3,44,o), +(34,0,o), +(135,0,cs) +); +} +); +width = 547; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (91,0); +}, +{ +name = bottom_2; +pos = (381,0); +}, +{ +name = caret_1; +pos = (290,0); +}, +{ +name = center_1; +pos = (145,259); +}, +{ +name = center_2; +pos = (435,259); +}, +{ +name = top_1; +pos = (234,690); +}, +{ +name = top_2; +pos = (524,690); +}, +{ +name = topright_1; +pos = (657,729); +}, +{ +name = topright_2; +pos = (657,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,0,l), +(245,33,l), +(198,33,ls), +(145,33,o), +(118,46,o), +(132,111,cs), +(210,485,l), +(430,485,l), +(352,108,ls), +(337,34,o), +(368,0,o), +(439,0,cs), +(494,0,l), +(501,33,l), +(454,33,ls), +(401,33,o), +(374,46,o), +(388,111,cs), +(466,485,l), +(596,485,l), +(602,517,l), +(472,517,l), +(508,690,l), +(471,681,l), +(437,517,l), +(216,517,l), +(252,690,l), +(215,681,l), +(181,517,l), +(76,517,l), +(70,485,l), +(174,485,l), +(96,108,ls), +(81,34,o), +(112,0,o), +(183,0,cs) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (136,0); +}, +{ +name = bottom_2; +pos = (519,0); +}, +{ +name = caret_1; +pos = (383,0); +}, +{ +name = center_1; +pos = (192,272); +}, +{ +name = center_2; +pos = (575,272); +}, +{ +name = top_1; +pos = (280,699); +}, +{ +name = top_2; +pos = (663,699); +}, +{ +name = topright_1; +pos = (841,729); +}, +{ +name = topright_2; +pos = (841,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,0,l), +(369,153,l), +(314,153,ls), +(286,153,o), +(272,160,o), +(278,188,cs), +(321,391,l), +(468,391,l), +(421,166,ls), +(401,66,o), +(443,0,o), +(560,0,cs), +(673,0,l), +(705,153,l), +(651,153,ls), +(622,153,o), +(609,160,o), +(615,188,cs), +(657,391,l), +(755,391,l), +(787,544,l), +(689,544,l), +(722,699,l), +(530,683,l), +(500,544,l), +(353,544,l), +(385,699,l), +(193,683,l), +(164,544,l), +(74,544,l), +(42,391,l), +(132,391,l), +(84,166,ls), +(63,66,o), +(106,0,o), +(223,0,cs) +); +} +); +width = 766; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (95,0); +}, +{ +name = bottom_2; +pos = (392,0); +}, +{ +name = caret_1; +pos = (297.5,0); +}, +{ +name = center_1; +pos = (149,259); +}, +{ +name = center_2; +pos = (446,259); +}, +{ +name = top_1; +pos = (238,690); +}, +{ +name = top_2; +pos = (535,690); +}, +{ +name = topright_1; +pos = (672,729); +}, +{ +name = topright_2; +pos = (672,729); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(260,35,l), +(198,35,ls), +(145,35,o), +(119,48,o), +(132,111,cs), +(209,485,l), +(442,485,l), +(364,108,ls), +(349,34,o), +(385,0,o), +(448,0,cs), +(522,0,l), +(529,35,l), +(467,35,ls), +(414,35,o), +(388,48,o), +(401,111,cs), +(478,485,l), +(624,485,l), +(630,517,l), +(485,517,l), +(521,690,l), +(483,681,l), +(449,517,l), +(216,517,l), +(252,690,l), +(214,681,l), +(180,517,l), +(65,517,l), +(59,485,l), +(173,485,l), +(95,108,ls), +(80,34,o), +(116,0,o), +(179,0,cs) +); +} +); +width = 595; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (159,0); +}, +{ +name = bottom_2; +pos = (588,0); +}, +{ +name = caret_1; +pos = (429,0); +}, +{ +name = center_1; +pos = (215,272); +}, +{ +name = center_2; +pos = (644,272); +}, +{ +name = top_1; +pos = (306,710); +}, +{ +name = top_2; +pos = (735,710); +}, +{ +name = topright_1; +pos = (933,729); +}, +{ +name = topright_2; +pos = (933,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,l), +(420,186,l), +(333,186,ls), +(304,186,o), +(295,195,o), +(301,223,cs), +(333,379,l), +(510,379,l), +(467,171,ls), +(442,52,o), +(505,0,o), +(619,0,cs), +(773,0,l), +(812,186,l), +(725,186,ls), +(696,186,o), +(687,195,o), +(693,223,cs), +(725,379,l), +(853,379,l), +(887,544,l), +(759,544,l), +(795,710,l), +(571,669,l), +(545,544,l), +(367,544,l), +(403,710,l), +(179,669,l), +(153,544,l), +(61,544,l), +(26,379,l), +(118,379,l), +(75,171,ls), +(50,52,o), +(113,0,o), +(227,0,cs) +); +} +); +width = 858; +} +); +metricLeft = t; +metricRight = t; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/tbar.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/tbar.glyph new file mode 100644 index 00000000..e331c9ae --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/tbar.glyph @@ -0,0 +1,277 @@ +{ +color = 7; +glyphname = tbar; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +pos = (6,0); +ref = t; +}, +{ +pos = (-16,0); +ref = strokeshortcomb.t; +} +); +width = 177; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = t; +}, +{ +pos = (-23,-1); +ref = strokeshortcomb.t; +} +); +width = 301; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +pos = (11,0); +ref = t; +}, +{ +pos = (-18,0); +ref = strokeshortcomb.t; +} +); +width = 352; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +pos = (17,0); +ref = t; +}, +{ +pos = (-19,-1); +ref = strokeshortcomb.t; +} +); +width = 501; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (6,0); +ref = t; +}, +{ +pos = (6,0); +ref = strokeshortcomb.t; +} +); +width = 137; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = t; +}, +{ +pos = (-10,-1); +ref = strokeshortcomb.t; +} +); +width = 281; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (14,0); +ref = t; +}, +{ +pos = (-3,0); +ref = strokeshortcomb.t; +} +); +width = 317; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = t; +}, +{ +pos = (-1,-5); +ref = strokeshortcomb.t; +} +); +width = 426; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (11,0); +ref = t; +}, +{ +pos = (-13,0); +ref = strokeshortcomb.t; +} +); +width = 332; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (17,0); +ref = t; +}, +{ +pos = (-14,-1); +ref = strokeshortcomb.t; +} +); +width = 481; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (14,0); +ref = t; +}, +{ +pos = (2,0); +ref = strokeshortcomb.t; +} +); +width = 354; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = t; +}, +{ +pos = (-1,-5); +ref = strokeshortcomb.t; +} +); +width = 460; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +pos = (6,0); +ref = t; +}, +{ +pos = (-16,0); +ref = strokeshortcomb.t; +} +); +width = 176; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +pos = (7,0); +ref = t; +}, +{ +pos = (-23,-1); +ref = strokeshortcomb.t; +} +); +width = 301; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +pos = (14,0); +ref = t; +}, +{ +pos = (-5,0); +ref = strokeshortcomb.t; +} +); +width = 353; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +pos = (19,0); +ref = t; +}, +{ +pos = (-7,-5); +ref = strokeshortcomb.t; +} +); +width = 465; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +pos = (11,0); +ref = t; +}, +{ +pos = (-19,0); +ref = strokeshortcomb.t; +} +); +width = 349; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +pos = (18,0); +ref = t; +}, +{ +pos = (-20,-1); +ref = strokeshortcomb.t; +} +); +width = 498; +} +); +unicode = 359; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/tcaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/tcaron.glyph new file mode 100644 index 00000000..953b0097 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/tcaron.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = tcaron; +kernLeft = KO_t; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = t; +}, +{ +pos = (100,56); +ref = caroncomb.alt; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = t; +}, +{ +pos = (204,0); +ref = caroncomb.alt; +} +); +width = 287; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = t; +}, +{ +pos = (199,47); +ref = caroncomb.alt; +} +); +width = 330; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = t; +}, +{ +pos = (303,25); +ref = caroncomb.alt; +} +); +width = 471; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = t; +}, +{ +pos = (122,56); +ref = caroncomb.alt; +} +); +width = 184; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = t; +}, +{ +pos = (217,0); +ref = caroncomb.alt; +} +); +width = 293; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = t; +}, +{ +pos = (197,56); +ref = caroncomb.alt; +} +); +width = 284; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = t; +}, +{ +alignment = -1; +pos = (294,10); +ref = caroncomb.alt; +} +); +width = 405; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = t; +}, +{ +pos = (204,47); +ref = caroncomb.alt; +} +); +width = 315; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = t; +}, +{ +pos = (308,25); +ref = caroncomb.alt; +} +); +width = 456; +}, +{ +layerId = m019; +shapes = ( +{ +ref = t; +}, +{ +pos = (198,56); +ref = caroncomb.alt; +} +); +width = 329; +}, +{ +layerId = m020; +shapes = ( +{ +ref = t; +}, +{ +pos = (279,10); +ref = caroncomb.alt; +} +); +width = 416; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = t; +}, +{ +pos = (113,56); +ref = caroncomb.alt; +} +); +width = 162; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = t; +}, +{ +pos = (204,0); +ref = caroncomb.alt; +} +); +width = 287; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = t; +}, +{ +pos = (194,56); +ref = caroncomb.alt; +} +); +width = 324; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = t; +}, +{ +pos = (286,10); +ref = caroncomb.alt; +} +); +width = 430; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = t; +}, +{ +pos = (203,47); +ref = caroncomb.alt; +} +); +width = 326; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = t; +}, +{ +pos = (307,25); +ref = caroncomb.alt; +} +); +width = 466; +} +); +unicode = 357; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/tcedilla.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/tcedilla.glyph new file mode 100644 index 00000000..b9f39205 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/tcedilla.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = tcedilla; +kernLeft = KO_t; +kernRight = KO_t; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-35,0); +ref = cedillacomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-30,0); +ref = cedillacomb; +} +); +width = 287; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = t; +}, +{ +pos = (59,0); +ref = cedillacomb; +} +); +width = 330; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = t; +}, +{ +pos = (62,0); +ref = cedillacomb; +} +); +width = 471; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-13,0); +ref = cedillacomb; +} +); +width = 184; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-17,0); +ref = cedillacomb; +} +); +width = 293; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = t; +}, +{ +pos = (75,0); +ref = cedillacomb; +} +); +width = 284; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = t; +}, +{ +alignment = -1; +pos = (63,0); +ref = cedillacomb; +} +); +width = 405; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = t; +}, +{ +pos = (64,0); +ref = cedillacomb; +} +); +width = 315; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = t; +}, +{ +pos = (67,0); +ref = cedillacomb; +} +); +width = 456; +}, +{ +layerId = m019; +shapes = ( +{ +ref = t; +}, +{ +pos = (72,0); +ref = cedillacomb; +} +); +width = 329; +}, +{ +layerId = m020; +shapes = ( +{ +ref = t; +}, +{ +pos = (56,0); +ref = cedillacomb; +} +); +width = 416; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-21,0); +ref = cedillacomb; +} +); +width = 162; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-33,0); +ref = cedillacomb; +} +); +width = 287; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = t; +}, +{ +pos = (87,0); +ref = cedillacomb; +} +); +width = 324; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = t; +}, +{ +pos = (64,0); +ref = cedillacomb; +} +); +width = 430; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = t; +}, +{ +pos = (76,0); +ref = cedillacomb; +} +); +width = 326; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = t; +}, +{ +pos = (54,0); +ref = cedillacomb; +} +); +width = 466; +} +); +unicode = 355; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/tcommaaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/tcommaaccent.glyph new file mode 100644 index 00000000..40a45651 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/tcommaaccent.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = tcommaaccent; +kernLeft = KO_t; +kernRight = KO_t; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = t; +}, +{ +pos = (9,0); +ref = commaaccentcomb; +} +); +width = 163; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-6,0); +ref = commaaccentcomb; +} +); +width = 287; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = t; +}, +{ +pos = (111,0); +ref = commaaccentcomb; +} +); +width = 330; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = t; +}, +{ +pos = (103,0); +ref = commaaccentcomb; +} +); +width = 471; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = t; +}, +{ +pos = (31,0); +ref = commaaccentcomb; +} +); +width = 184; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = t; +}, +{ +pos = (7,0); +ref = commaaccentcomb; +} +); +width = 293; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = t; +}, +{ +pos = (113,0); +ref = commaaccentcomb; +} +); +width = 284; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = t; +}, +{ +alignment = -1; +pos = (111,0); +ref = commaaccentcomb; +} +); +width = 405; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = t; +}, +{ +pos = (116,0); +ref = commaaccentcomb; +} +); +width = 315; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = t; +}, +{ +pos = (108,0); +ref = commaaccentcomb; +} +); +width = 456; +}, +{ +layerId = m019; +shapes = ( +{ +ref = t; +}, +{ +pos = (110,0); +ref = commaaccentcomb; +} +); +width = 329; +}, +{ +layerId = m020; +shapes = ( +{ +ref = t; +}, +{ +pos = (103,0); +ref = commaaccentcomb; +} +); +width = 416; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = t; +}, +{ +pos = (10,0); +ref = commaaccentcomb; +} +); +width = 162; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-6,0); +ref = commaaccentcomb; +} +); +width = 287; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = t; +}, +{ +pos = (121,0); +ref = commaaccentcomb; +} +); +width = 324; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = t; +}, +{ +pos = (108,0); +ref = commaaccentcomb; +} +); +width = 430; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = t; +}, +{ +pos = (129,0); +ref = commaaccentcomb; +} +); +width = 326; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = t; +}, +{ +pos = (107,0); +ref = commaaccentcomb; +} +); +width = 466; +} +); +unicode = 539; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/tenge.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/tenge.glyph new file mode 100644 index 00000000..e5214a95 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/tenge.glyph @@ -0,0 +1,606 @@ +{ +glyphname = tenge; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(163,0,l), +(194,0,l), +(194,578,l), +(163,578,l) +); +}, +{ +closed = 1; +nodes = ( +(336,599,l), +(21,599,l), +(21,570,l), +(336,570,l) +); +}, +{ +closed = 1; +nodes = ( +(336,729,l), +(21,729,l), +(21,700,l), +(336,700,l) +); +} +); +width = 356; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(295,0,l), +(295,408,l), +(111,408,l) +); +}, +{ +closed = 1; +nodes = ( +(388,541,l), +(23,541,l), +(23,392,l), +(388,392,l) +); +}, +{ +closed = 1; +nodes = ( +(388,729,l), +(23,729,l), +(23,580,l), +(388,580,l) +); +} +); +width = 410; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(289,0,l), +(325,0,l), +(325,508,l), +(289,508,l) +); +}, +{ +closed = 1; +nodes = ( +(576,534,l), +(37,534,l), +(37,498,l), +(576,498,l) +); +}, +{ +closed = 1; +nodes = ( +(576,729,l), +(37,729,l), +(37,693,l), +(576,693,l) +); +} +); +width = 613; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(448,0,l), +(448,357,l), +(235,357,l) +); +}, +{ +closed = 1; +nodes = ( +(660,502,l), +(28,502,l), +(28,342,l), +(660,342,l) +); +}, +{ +closed = 1; +nodes = ( +(660,729,l), +(28,729,l), +(28,559,l), +(660,559,l) +); +} +); +width = 688; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,l), +(174,0,l), +(174,578,l), +(143,578,l) +); +}, +{ +closed = 1; +nodes = ( +(316,599,l), +(1,599,l), +(1,570,l), +(316,570,l) +); +}, +{ +closed = 1; +nodes = ( +(316,729,l), +(1,729,l), +(1,700,l), +(316,700,l) +); +} +); +width = 318; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,0,l), +(285,0,l), +(285,408,l), +(101,408,l) +); +}, +{ +closed = 1; +nodes = ( +(378,541,l), +(13,541,l), +(13,392,l), +(378,392,l) +); +}, +{ +closed = 1; +nodes = ( +(378,729,l), +(13,729,l), +(13,580,l), +(378,580,l) +); +} +); +width = 390; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,0,l), +(298,0,l), +(298,527,l), +(260,527,l) +); +}, +{ +closed = 1; +nodes = ( +(523,553,l), +(35,553,l), +(35,517,l), +(523,517,l) +); +}, +{ +closed = 1; +nodes = ( +(523,729,l), +(35,729,l), +(35,693,l), +(523,693,l) +); +} +); +width = 558; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(395,0,l), +(395,379,l), +(202,379,l) +); +}, +{ +closed = 1; +nodes = ( +(574,519,l), +(23,519,l), +(23,363,l), +(574,363,l) +); +}, +{ +closed = 1; +nodes = ( +(574,729,l), +(23,729,l), +(23,571,l), +(574,571,l) +); +} +); +width = 597; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,0,l), +(315,0,l), +(315,508,l), +(279,508,l) +); +}, +{ +closed = 1; +nodes = ( +(566,534,l), +(27,534,l), +(27,498,l), +(566,498,l) +); +}, +{ +closed = 1; +nodes = ( +(566,729,l), +(27,729,l), +(27,693,l), +(566,693,l) +); +} +); +width = 593; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,0,l), +(438,0,l), +(438,357,l), +(225,357,l) +); +}, +{ +closed = 1; +nodes = ( +(650,502,l), +(18,502,l), +(18,342,l), +(650,342,l) +); +}, +{ +closed = 1; +nodes = ( +(650,729,l), +(18,729,l), +(18,559,l), +(650,559,l) +); +} +); +width = 668; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(277,0,l), +(315,0,l), +(315,527,l), +(277,527,l) +); +}, +{ +closed = 1; +nodes = ( +(536,553,l), +(56,553,l), +(56,517,l), +(536,517,l) +); +}, +{ +closed = 1; +nodes = ( +(536,729,l), +(56,729,l), +(56,693,l), +(536,693,l) +); +} +); +width = 591; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,l), +(406,0,l), +(406,379,l), +(215,379,l) +); +}, +{ +closed = 1; +nodes = ( +(578,519,l), +(43,519,l), +(43,363,l), +(578,363,l) +); +}, +{ +closed = 1; +nodes = ( +(578,729,l), +(43,729,l), +(43,571,l), +(578,571,l) +); +} +); +width = 620; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(142,0,l), +(261,578,l), +(230,578,l) +); +}, +{ +closed = 1; +nodes = ( +(408,599,l), +(93,599,l), +(87,570,l), +(402,570,l) +); +}, +{ +closed = 1; +nodes = ( +(434,729,l), +(119,729,l), +(113,700,l), +(428,700,l) +); +} +); +width = 357; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(55,0,l), +(239,0,l), +(323,408,l), +(139,408,l) +); +}, +{ +closed = 1; +nodes = ( +(444,541,l), +(79,541,l), +(48,392,l), +(413,392,l) +); +}, +{ +closed = 1; +nodes = ( +(482,729,l), +(117,729,l), +(87,580,l), +(452,580,l) +); +} +); +width = 410; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,0,l), +(265,0,l), +(374,527,l), +(336,527,l) +); +}, +{ +closed = 1; +nodes = ( +(604,553,l), +(116,553,l), +(109,517,l), +(597,517,l) +); +}, +{ +closed = 1; +nodes = ( +(640,729,l), +(152,729,l), +(145,693,l), +(633,693,l) +); +} +); +width = 598; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,0,l), +(360,0,l), +(438,379,l), +(245,379,l) +); +}, +{ +closed = 1; +nodes = ( +(646,519,l), +(95,519,l), +(63,363,l), +(614,363,l) +); +}, +{ +closed = 1; +nodes = ( +(689,729,l), +(138,729,l), +(106,571,l), +(657,571,l) +); +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,l), +(272,0,l), +(377,508,l), +(341,508,l) +); +}, +{ +closed = 1; +nodes = ( +(633,534,l), +(94,534,l), +(87,498,l), +(626,498,l) +); +}, +{ +closed = 1; +nodes = ( +(673,729,l), +(134,729,l), +(127,693,l), +(666,693,l) +); +} +); +width = 613; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(393,0,l), +(466,357,l), +(253,357,l) +); +}, +{ +closed = 1; +nodes = ( +(708,502,l), +(76,502,l), +(43,342,l), +(675,342,l) +); +}, +{ +closed = 1; +nodes = ( +(755,729,l), +(123,729,l), +(88,559,l), +(720,559,l) +); +} +); +width = 689; +} +); +unicode = 8376; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/thorn.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/thorn.glyph new file mode 100644 index 00000000..57837e43 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/thorn.glyph @@ -0,0 +1,1099 @@ +{ +glyphname = thorn; +kernRight = KO_o; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (169,0); +}, +{ +name = top; +pos = (169,729); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(89,-167,l), +(89,77,l), +(91,77,l), +(107,26,o), +(133,-10,o), +(185,-10,cs), +(252,-10,o), +(299,51,o), +(299,258,cs), +(299,464,o), +(253,526,o), +(185,526,cs), +(133,526,o), +(107,491,o), +(91,439,c), +(89,439,l), +(89,729,l), +(60,729,l), +(60,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(125,16,o), +(89,76,o), +(89,206,cs), +(89,309,ls), +(89,437,o), +(124,500,o), +(177,500,cs), +(250,500,o), +(269,414,o), +(269,258,cs), +(269,101,o), +(250,16,o), +(177,16,cs) +); +} +); +width = 344; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = top; +pos = (236,729); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,-167,l), +(204,64,l), +(210,64,l), +(230,15,o), +(266,-10,o), +(315,-10,cs), +(426,-10,o), +(454,99,o), +(454,271,cs), +(454,492,o), +(398,551,o), +(315,551,cs), +(264,551,o), +(228,526,o), +(210,477,c), +(204,477,l), +(204,729,l), +(27,729,l), +(27,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(211,128,o), +(204,174,o), +(204,256,cs), +(204,285,ls), +(204,381,o), +(215,415,o), +(240,415,cs), +(271,415,o), +(278,369,o), +(278,271,cs), +(278,160,o), +(267,128,o), +(240,128,cs) +); +} +); +width = 470; +}, +{ +anchors = ( +{ +name = bottom; +pos = (323,0); +}, +{ +name = top; +pos = (323,729); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,-167,l), +(103,130,l), +(107,130,l), +(139,46,o), +(232,-9,o), +(343,-9,cs), +(500,-9,o), +(605,97,o), +(605,259,cs), +(605,424,o), +(499,526,o), +(343,526,cs), +(226,526,o), +(139,474,o), +(107,398,c), +(103,398,l), +(103,729,l), +(66,729,l), +(66,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(190,25,o), +(103,126,o), +(103,234,cs), +(103,294,ls), +(103,396,o), +(190,492,o), +(339,492,cs), +(475,492,o), +(567,407,o), +(567,259,cs), +(567,118,o), +(476,25,o), +(339,25,cs) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (370,0); +}, +{ +name = top; +pos = (370,729); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-167,l), +(264,69,l), +(271,69,l), +(306,19,o), +(373,-10,o), +(452,-10,cs), +(611,-10,o), +(717,99,o), +(717,271,cs), +(717,444,o), +(611,552,o), +(454,552,cs), +(357,552,o), +(298,520,o), +(266,473,c), +(259,473,l), +(259,729,l), +(43,729,l), +(43,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(308,155,o), +(264,200,o), +(264,265,cs), +(264,277,ls), +(264,342,o), +(308,387,o), +(383,387,cs), +(451,387,o), +(496,346,o), +(496,271,cs), +(496,195,o), +(450,155,o), +(383,155,cs) +); +} +); +width = 729; +}, +{ +anchors = ( +{ +name = bottom; +pos = (145,0); +}, +{ +name = top; +pos = (145,729); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(65,-167,l), +(65,77,l), +(67,77,l), +(83,26,o), +(109,-10,o), +(161,-10,cs), +(228,-10,o), +(275,51,o), +(275,258,cs), +(275,464,o), +(229,526,o), +(161,526,cs), +(109,526,o), +(83,491,o), +(67,439,c), +(65,439,l), +(65,729,l), +(36,729,l), +(36,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(101,16,o), +(65,76,o), +(65,206,cs), +(65,309,ls), +(65,437,o), +(100,500,o), +(153,500,cs), +(226,500,o), +(245,414,o), +(245,258,cs), +(245,101,o), +(226,16,o), +(153,16,cs) +); +} +); +width = 298; +}, +{ +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = top; +pos = (225,729); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,-167,l), +(193,64,l), +(199,64,l), +(219,15,o), +(255,-10,o), +(304,-10,cs), +(415,-10,o), +(443,99,o), +(443,271,cs), +(443,492,o), +(387,551,o), +(304,551,cs), +(253,551,o), +(217,526,o), +(199,477,c), +(193,477,l), +(193,729,l), +(16,729,l), +(16,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(200,128,o), +(193,174,o), +(193,256,cs), +(193,285,ls), +(193,381,o), +(204,415,o), +(229,415,cs), +(260,415,o), +(267,369,o), +(267,271,cs), +(267,160,o), +(256,128,o), +(229,128,cs) +); +} +); +width = 450; +}, +{ +anchors = ( +{ +name = bottom; +pos = (265,0); +}, +{ +name = top; +pos = (265,729); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,-167,l), +(95,119,l), +(98,119,l), +(125,42,o), +(196,-9,o), +(294,-9,cs), +(423,-9,o), +(511,92,o), +(511,258,cs), +(511,423,o), +(423,525,o), +(294,525,cs), +(196,525,o), +(125,473,o), +(98,396,c), +(96,396,l), +(96,729,l), +(59,729,l), +(59,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(166,24,o), +(96,120,o), +(96,222,cs), +(96,293,ls), +(96,395,o), +(166,491,o), +(286,491,cs), +(398,491,o), +(473,405,o), +(473,258,cs), +(473,109,o), +(398,24,o), +(286,24,cs) +); +} +); +width = 546; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (302,729); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-167,l), +(221,79,l), +(229,79,l), +(249,26,o), +(310,-10,o), +(383,-10,cs), +(515,-10,o), +(602,93,o), +(602,272,cs), +(602,451,o), +(515,554,o), +(383,554,cs), +(310,554,o), +(249,518,o), +(229,465,c), +(221,465,l), +(221,729,l), +(30,729,l), +(30,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(255,143,o), +(221,181,o), +(221,249,cs), +(221,295,ls), +(221,359,o), +(249,401,o), +(312,401,cs), +(382,401,o), +(407,349,o), +(407,272,cs), +(407,195,o), +(379,143,o), +(307,143,cs) +); +} +); +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = top; +pos = (313,729); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-167,l), +(93,130,l), +(97,130,l), +(129,46,o), +(222,-9,o), +(333,-9,cs), +(490,-9,o), +(595,97,o), +(595,259,cs), +(595,424,o), +(489,526,o), +(333,526,cs), +(216,526,o), +(129,474,o), +(97,398,c), +(93,398,l), +(93,729,l), +(56,729,l), +(56,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(180,25,o), +(93,126,o), +(93,234,cs), +(93,294,ls), +(93,396,o), +(180,492,o), +(329,492,cs), +(465,492,o), +(557,407,o), +(557,259,cs), +(557,118,o), +(466,25,o), +(329,25,cs) +); +} +); +width = 620; +}, +{ +anchors = ( +{ +name = bottom; +pos = (360,0); +}, +{ +name = top; +pos = (360,729); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,-167,l), +(254,69,l), +(261,69,l), +(296,19,o), +(363,-10,o), +(442,-10,cs), +(601,-10,o), +(707,99,o), +(707,271,cs), +(707,444,o), +(601,552,o), +(444,552,cs), +(347,552,o), +(288,520,o), +(256,473,c), +(249,473,l), +(249,729,l), +(33,729,l), +(33,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(298,155,o), +(254,200,o), +(254,265,cs), +(254,277,ls), +(254,342,o), +(298,387,o), +(373,387,cs), +(441,387,o), +(486,346,o), +(486,271,cs), +(486,195,o), +(440,155,o), +(373,155,cs) +); +} +); +width = 709; +}, +{ +anchors = ( +{ +name = bottom; +pos = (288,0); +}, +{ +name = top; +pos = (288,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(122,-167,l), +(122,119,l), +(125,119,l), +(151,42,o), +(221,-9,o), +(317,-9,cs), +(444,-9,o), +(530,92,o), +(530,258,cs), +(530,423,o), +(444,525,o), +(317,525,cs), +(221,525,o), +(151,473,o), +(125,396,c), +(123,396,l), +(123,729,l), +(86,729,l), +(86,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(191,24,o), +(123,120,o), +(123,222,cs), +(123,293,ls), +(123,395,o), +(191,491,o), +(309,491,cs), +(419,491,o), +(492,405,o), +(492,258,cs), +(492,109,o), +(419,24,o), +(309,24,cs) +); +} +); +width = 585; +}, +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (317,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(242,-167,l), +(242,79,l), +(249,79,l), +(268,27,o), +(326,-10,o), +(397,-10,cs), +(525,-10,o), +(609,93,o), +(609,272,cs), +(609,451,o), +(525,554,o), +(397,554,cs), +(326,554,o), +(268,517,o), +(249,465,c), +(242,465,l), +(242,729,l), +(52,729,l), +(52,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(273,143,o), +(242,181,o), +(242,249,cs), +(242,295,ls), +(242,359,o), +(267,401,o), +(327,401,cs), +(393,401,o), +(416,349,o), +(416,272,cs), +(416,195,o), +(390,143,o), +(322,143,cs) +); +} +); +width = 635; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (266,729); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(1,-167,l), +(53,84,l), +(54,84,l), +(58,25,o), +(82,-8,o), +(136,-8,cs), +(201,-8,o), +(256,58,o), +(296,253,cs), +(326,392,o), +(333,526,o), +(232,526,cs), +(190,526,o), +(157,499,o), +(130,445,c), +(128,445,l), +(187,729,l), +(158,729,l), +(-28,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(67,19,o), +(56,99,o), +(80,214,cs), +(102,319,ls), +(128,443,o), +(171,501,o), +(222,501,cs), +(307,501,o), +(295,389,o), +(266,252,cs), +(233,92,o), +(197,19,o), +(132,19,cs) +); +} +); +width = 341; +}, +{ +anchors = ( +{ +name = bottom; +pos = (179,0); +}, +{ +name = top; +pos = (330,729); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,-167,l), +(161,71,l), +(167,71,l), +(176,16,o), +(214,-10,o), +(264,-10,cs), +(350,-10,o), +(409,63,o), +(450,258,cs), +(484,422,o), +(486,551,o), +(360,551,cs), +(312,551,o), +(276,526,o), +(254,485,c), +(247,485,l), +(298,729,l), +(123,729,l), +(-65,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(177,133,o), +(184,182,o), +(201,264,cs), +(208,298,ls), +(227,391,o), +(242,419,o), +(268,419,cs), +(302,419,o), +(295,367,o), +(276,274,cs), +(256,175,o), +(240,133,o), +(213,133,cs) +); +} +); +width = 469; +}, +{ +anchors = ( +{ +name = bottom; +pos = (234,0); +}, +{ +name = top; +pos = (385,729); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(33,-167,l), +(94,126,l), +(98,126,l), +(118,45,o), +(183,-9,o), +(274,-9,cs), +(428,-9,o), +(532,112,o), +(532,316,cs), +(532,443,o), +(458,527,o), +(347,527,cs), +(269,527,o), +(197,491,o), +(155,414,c), +(152,414,l), +(218,729,l), +(182,729,l), +(-3,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(154,25,o), +(92,118,o), +(121,258,cs), +(133,315,ls), +(156,422,o), +(233,493,o), +(342,493,cs), +(439,493,o), +(494,421,o), +(494,312,cs), +(494,142,o), +(413,25,o), +(275,25,cs) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = top; +pos = (427,729); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,-167,l), +(219,95,l), +(226,95,l), +(246,32,o), +(304,-10,o), +(383,-10,cs), +(511,-10,o), +(609,85,o), +(633,254,cs), +(658,433,o), +(586,553,o), +(453,553,cs), +(390,553,o), +(330,521,o), +(302,473,c), +(297,473,l), +(350,729,l), +(149,729,l), +(-37,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(268,140,o), +(239,194,o), +(253,263,cs), +(264,316,ls), +(276,372,o), +(310,403,o), +(362,403,cs), +(410,403,o), +(442,366,o), +(442,300,cs), +(442,205,o), +(399,140,o), +(326,140,cs) +); +} +); +width = 665; +}, +{ +anchors = ( +{ +name = bottom; +pos = (271,0); +}, +{ +name = top; +pos = (422,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(30,-167,l), +(86,154,l), +(90,154,l), +(108,56,o), +(201,-10,o), +(323,-10,cs), +(496,-10,o), +(617,114,o), +(617,290,cs), +(617,433,o), +(515,527,o), +(372,527,cs), +(271,527,o), +(177,486,o), +(134,408,c), +(131,408,l), +(186,729,l), +(150,729,l), +(-7,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(173,24,o), +(83,124,o), +(107,270,cs), +(112,301,ls), +(130,414,o), +(228,493,o), +(366,493,cs), +(494,493,o), +(579,413,o), +(579,288,cs), +(579,129,o), +(477,24,o), +(321,24,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(14,-167,l), +(81,154,l), +(85,154,l), +(99,56,o), +(188,-10,o), +(308,-10,cs), +(478,-10,o), +(605,118,o), +(611,295,cs), +(616,436,o), +(522,527,o), +(382,527,cs), +(278,527,o), +(185,488,o), +(137,408,c), +(134,408,l), +(200,729,l), +(163,729,l), +(-22,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(160,24,o), +(78,124,o), +(107,270,cs), +(113,300,ls), +(136,414,o), +(232,493,o), +(376,493,cs), +(501,493,o), +(578,416,o), +(574,294,cs), +(568,136,o), +(458,24,o), +(312,24,cs) +); +} +); +width = 644; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (460,729); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,-167,l), +(225,87,l), +(233,87,l), +(256,25,o), +(334,-10,o), +(415,-10,cs), +(582,-10,o), +(697,111,o), +(706,296,cs), +(714,452,o), +(618,554,o), +(471,554,cs), +(398,554,o), +(347,531,o), +(312,492,c), +(304,492,l), +(357,729,l), +(138,729,l), +(-48,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(289,160,o), +(248,210,o), +(264,281,cs), +(267,294,ls), +(280,351,o), +(315,390,o), +(385,390,cs), +(444,390,o), +(488,351,o), +(485,288,cs), +(483,207,o), +(433,155,o), +(361,157,cs) +); +} +); +width = 719; +} +); +metricLeft = l; +metricRight = b; +unicode = 254; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/three.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/three.blackC_ircled.glyph new file mode 100644 index 00000000..abea3fa1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/three.blackC_ircled.glyph @@ -0,0 +1,3166 @@ +{ +color = 0; +glyphname = three.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(247,144,o), +(215,205,o), +(217,285,c), +(327,285,l), +(327,249,o), +(336,236,o), +(350,236,cs), +(369,236,o), +(378,248,o), +(378,282,cs), +(378,315,o), +(364,329,o), +(342,329,cs), +(304,329,l), +(304,409,l), +(338,409,ls), +(363,409,o), +(373,430,o), +(373,454,cs), +(373,485,o), +(368,496,o), +(350,496,cs), +(337,496,o), +(328,481,o), +(330,449,c), +(221,449,l), +(219,538,o), +(272,588,o), +(354,588,cs), +(435,588,o), +(481,540,o), +(481,468,cs), +(481,427,o), +(465,388,o), +(426,376,c), +(426,371,l), +(468,361,o), +(488,323,o), +(488,276,cs), +(488,192,o), +(432,144,o), +(349,144,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,143,o), +(216,204,o), +(218,284,c), +(328,284,l), +(328,248,o), +(337,235,o), +(351,235,cs), +(370,235,o), +(379,247,o), +(379,281,cs), +(379,314,o), +(365,328,o), +(343,328,cs), +(305,328,l), +(305,408,l), +(339,408,ls), +(364,408,o), +(374,429,o), +(374,453,cs), +(374,484,o), +(369,495,o), +(351,495,cs), +(338,495,o), +(329,480,o), +(331,448,c), +(222,448,l), +(220,537,o), +(273,587,o), +(355,587,cs), +(436,587,o), +(482,539,o), +(482,467,cs), +(482,426,o), +(466,387,o), +(427,375,c), +(427,370,l), +(469,360,o), +(489,322,o), +(489,275,cs), +(489,191,o), +(433,143,o), +(350,143,cs) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,144,o), +(255,199,o), +(256,281,c), +(286,281,l), +(285,200,o), +(311,169,o), +(350,169,cs), +(393,169,o), +(413,204,o), +(413,268,cs), +(413,324,o), +(390,360,o), +(348,360,cs), +(326,360,l), +(326,386,l), +(348,386,ls), +(389,386,o), +(408,426,o), +(408,473,cs), +(408,528,o), +(384,561,o), +(345,561,cs), +(302,561,o), +(285,520,o), +(287,457,c), +(257,457,l), +(255,545,o), +(292,586,o), +(346,586,cs), +(401,586,o), +(437,544,o), +(437,476,cs), +(437,430,o), +(419,388,o), +(385,375,c), +(385,373,l), +(424,361,o), +(443,322,o), +(443,267,cs), +(443,189,o), +(409,144,o), +(350,144,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,143,o), +(255,198,o), +(256,280,c), +(286,280,l), +(285,199,o), +(311,168,o), +(350,168,cs), +(393,168,o), +(413,203,o), +(413,267,cs), +(413,323,o), +(390,359,o), +(348,359,cs), +(326,359,l), +(326,385,l), +(348,385,ls), +(389,385,o), +(408,425,o), +(408,472,cs), +(408,527,o), +(384,560,o), +(345,560,cs), +(302,560,o), +(285,519,o), +(287,456,c), +(257,456,l), +(255,544,o), +(292,585,o), +(346,585,cs), +(401,585,o), +(437,543,o), +(437,475,cs), +(437,429,o), +(419,387,o), +(385,374,c), +(385,372,l), +(424,360,o), +(443,321,o), +(443,266,cs), +(443,188,o), +(409,143,o), +(350,143,cs) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,142,o), +(265,194,o), +(264,280,c), +(301,280,l), +(301,208,o), +(357,173,o), +(439,173,cs), +(534,173,o), +(582,210,o), +(582,267,cs), +(582,333,o), +(533,357,o), +(458,357,cs), +(399,357,l), +(399,385,l), +(451,385,ls), +(538,385,o), +(574,420,o), +(574,471,cs), +(574,530,o), +(519,554,o), +(443,554,cs), +(364,554,o), +(309,515,o), +(308,449,c), +(273,449,l), +(270,532,o), +(344,584,o), +(443,584,cs), +(541,584,o), +(611,551,o), +(611,474,cs), +(611,419,o), +(571,382,o), +(515,373,c), +(515,370,l), +(576,365,o), +(621,330,o), +(621,265,cs), +(621,188,o), +(551,142,o), +(439,142,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,145,o), +(264,197,o), +(263,283,c), +(300,283,l), +(300,211,o), +(356,176,o), +(438,176,cs), +(533,176,o), +(581,213,o), +(581,270,cs), +(581,336,o), +(532,360,o), +(457,360,cs), +(398,360,l), +(398,388,l), +(450,388,ls), +(537,388,o), +(573,423,o), +(573,474,cs), +(573,533,o), +(518,557,o), +(442,557,cs), +(363,557,o), +(308,518,o), +(307,452,c), +(272,452,l), +(269,535,o), +(343,587,o), +(442,587,cs), +(540,587,o), +(610,554,o), +(610,477,cs), +(610,422,o), +(570,385,o), +(514,376,c), +(514,373,l), +(575,368,o), +(620,333,o), +(620,268,cs), +(620,191,o), +(550,145,o), +(438,145,cs) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(299,143,o), +(232,190,o), +(226,286,c), +(374,286,l), +(378,261,o), +(398,251,o), +(431,251,cs), +(468,251,o), +(487,265,o), +(487,289,cs), +(487,308,o), +(470,321,o), +(432,321,cs), +(371,321,l), +(371,414,l), +(431,414,ls), +(463,414,o), +(478,428,o), +(478,447,cs), +(478,467,o), +(461,479,o), +(431,479,cs), +(396,479,o), +(383,468,o), +(377,445,c), +(232,445,l), +(241,545,o), +(317,587,o), +(437,587,cs), +(561,587,o), +(629,541,o), +(629,466,cs), +(629,423,o), +(603,387,o), +(554,375,c), +(554,370,l), +(603,364,o), +(638,327,o), +(638,274,cs), +(638,197,o), +(566,143,o), +(429,143,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,147,o), +(230,194,o), +(224,290,c), +(372,290,l), +(376,265,o), +(396,255,o), +(429,255,cs), +(466,255,o), +(485,269,o), +(485,293,cs), +(485,312,o), +(468,325,o), +(430,325,cs), +(369,325,l), +(369,418,l), +(429,418,ls), +(461,418,o), +(476,432,o), +(476,451,cs), +(476,471,o), +(459,483,o), +(429,483,cs), +(394,483,o), +(381,472,o), +(375,449,c), +(230,449,l), +(239,549,o), +(315,591,o), +(435,591,cs), +(559,591,o), +(627,545,o), +(627,470,cs), +(627,427,o), +(601,391,o), +(552,379,c), +(552,374,l), +(601,368,o), +(636,331,o), +(636,278,cs), +(636,201,o), +(564,147,o), +(427,147,cs) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,144,o), +(255,199,o), +(256,281,c), +(286,281,l), +(285,200,o), +(311,169,o), +(350,169,cs), +(393,169,o), +(413,204,o), +(413,268,cs), +(413,324,o), +(390,360,o), +(348,360,cs), +(326,360,l), +(326,386,l), +(348,386,ls), +(389,386,o), +(408,426,o), +(408,473,cs), +(408,528,o), +(384,561,o), +(345,561,cs), +(302,561,o), +(285,520,o), +(287,457,c), +(257,457,l), +(255,545,o), +(292,586,o), +(346,586,cs), +(401,586,o), +(437,544,o), +(437,476,cs), +(437,430,o), +(419,388,o), +(385,375,c), +(385,373,l), +(424,361,o), +(443,322,o), +(443,267,cs), +(443,189,o), +(409,144,o), +(350,144,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,143,o), +(235,198,o), +(236,280,c), +(266,280,l), +(265,199,o), +(291,168,o), +(330,168,cs), +(373,168,o), +(393,203,o), +(393,267,cs), +(393,323,o), +(370,359,o), +(328,359,cs), +(306,359,l), +(306,385,l), +(328,385,ls), +(369,385,o), +(388,425,o), +(388,472,cs), +(388,527,o), +(364,560,o), +(325,560,cs), +(282,560,o), +(265,519,o), +(267,456,c), +(237,456,l), +(235,544,o), +(272,585,o), +(326,585,cs), +(381,585,o), +(417,543,o), +(417,475,cs), +(417,429,o), +(399,387,o), +(365,374,c), +(365,372,l), +(404,360,o), +(423,321,o), +(423,266,cs), +(423,188,o), +(389,143,o), +(330,143,cs) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(247,144,o), +(215,205,o), +(217,285,c), +(327,285,l), +(327,249,o), +(336,236,o), +(350,236,cs), +(369,236,o), +(378,248,o), +(378,282,cs), +(378,315,o), +(364,329,o), +(342,329,cs), +(304,329,l), +(304,409,l), +(338,409,ls), +(363,409,o), +(373,430,o), +(373,454,cs), +(373,485,o), +(368,496,o), +(350,496,cs), +(337,496,o), +(328,481,o), +(330,449,c), +(221,449,l), +(219,538,o), +(272,588,o), +(354,588,cs), +(435,588,o), +(481,540,o), +(481,468,cs), +(481,427,o), +(465,388,o), +(426,376,c), +(426,371,l), +(468,361,o), +(488,323,o), +(488,276,cs), +(488,192,o), +(432,144,o), +(349,144,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(238,143,o), +(206,204,o), +(208,284,c), +(318,284,l), +(318,248,o), +(327,235,o), +(341,235,cs), +(360,235,o), +(369,247,o), +(369,281,cs), +(369,314,o), +(355,328,o), +(333,328,cs), +(295,328,l), +(295,408,l), +(329,408,ls), +(354,408,o), +(364,429,o), +(364,453,cs), +(364,484,o), +(359,495,o), +(341,495,cs), +(328,495,o), +(319,480,o), +(321,448,c), +(212,448,l), +(210,537,o), +(263,587,o), +(345,587,cs), +(426,587,o), +(472,539,o), +(472,467,cs), +(472,426,o), +(456,387,o), +(417,375,c), +(417,370,l), +(459,360,o), +(479,322,o), +(479,275,cs), +(479,191,o), +(423,143,o), +(340,143,cs) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(352,142,o), +(298,191,o), +(295,262,c), +(329,262,l), +(333,205,o), +(376,172,o), +(432,172,cs), +(498,172,o), +(541,209,o), +(541,267,cs), +(541,328,o), +(502,357,o), +(444,357,cs), +(403,357,l), +(403,385,l), +(435,385,ls), +(502,385,o), +(539,420,o), +(539,471,cs), +(539,525,o), +(499,555,o), +(441,555,cs), +(382,555,o), +(342,519,o), +(339,465,c), +(304,465,l), +(308,540,o), +(365,585,o), +(441,585,cs), +(523,585,o), +(574,541,o), +(574,474,cs), +(574,423,o), +(541,387,o), +(497,374,c), +(497,371,l), +(547,360,o), +(577,320,o), +(577,265,cs), +(577,191,o), +(519,142,o), +(432,142,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,144,o), +(278,193,o), +(275,264,c), +(309,264,l), +(313,207,o), +(356,174,o), +(412,174,cs), +(478,174,o), +(521,211,o), +(521,269,cs), +(521,330,o), +(482,359,o), +(424,359,cs), +(383,359,l), +(383,387,l), +(415,387,ls), +(482,387,o), +(519,422,o), +(519,473,cs), +(519,527,o), +(479,557,o), +(421,557,cs), +(362,557,o), +(322,521,o), +(319,467,c), +(284,467,l), +(288,542,o), +(345,587,o), +(421,587,cs), +(503,587,o), +(554,543,o), +(554,476,cs), +(554,425,o), +(521,389,o), +(477,376,c), +(477,373,l), +(527,362,o), +(557,322,o), +(557,267,cs), +(557,193,o), +(499,144,o), +(412,144,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +138, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +395, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +624, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +359, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +473, +100 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +621, +41 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +363, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +613, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +135, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +384, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +616, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +301, +41 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +420, +110 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +578, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +305, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +570, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,143,o), +(260,200,o), +(256,287,c), +(380,287,l), +(380,262,o), +(400,248,o), +(426,248,cs), +(453,248,o), +(468,265,o), +(468,287,cs), +(468,309,o), +(454,322,o), +(426,322,cs), +(374,322,l), +(374,414,l), +(422,414,ls), +(447,414,o), +(461,429,o), +(461,449,cs), +(461,470,o), +(448,481,o), +(425,481,cs), +(399,481,o), +(384,467,o), +(383,445,c), +(259,445,l), +(262,532,o), +(327,587,o), +(430,587,cs), +(522,587,o), +(586,542,o), +(586,465,cs), +(586,423,o), +(560,389,o), +(527,376,c), +(527,371,l), +(572,358,o), +(597,320,o), +(597,276,cs), +(597,190,o), +(524,143,o), +(426,143,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,145,o), +(240,202,o), +(236,289,c), +(360,289,l), +(360,264,o), +(380,250,o), +(406,250,cs), +(433,250,o), +(448,267,o), +(448,289,cs), +(448,311,o), +(434,324,o), +(406,324,cs), +(354,324,l), +(354,416,l), +(402,416,ls), +(427,416,o), +(441,431,o), +(441,451,cs), +(441,472,o), +(428,483,o), +(405,483,cs), +(379,483,o), +(364,469,o), +(363,447,c), +(239,447,l), +(242,534,o), +(307,589,o), +(410,589,cs), +(502,589,o), +(566,544,o), +(566,467,cs), +(566,425,o), +(540,391,o), +(507,378,c), +(507,373,l), +(552,360,o), +(577,322,o), +(577,278,cs), +(577,192,o), +(504,145,o), +(406,145,cs) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,142,o), +(265,194,o), +(264,280,c), +(301,280,l), +(301,208,o), +(357,173,o), +(439,173,cs), +(534,173,o), +(582,210,o), +(582,267,cs), +(582,333,o), +(533,357,o), +(458,357,cs), +(399,357,l), +(399,385,l), +(451,385,ls), +(538,385,o), +(574,420,o), +(574,471,cs), +(574,530,o), +(519,554,o), +(443,554,cs), +(364,554,o), +(309,515,o), +(308,449,c), +(273,449,l), +(270,532,o), +(344,584,o), +(443,584,cs), +(541,584,o), +(611,551,o), +(611,474,cs), +(611,419,o), +(571,382,o), +(515,373,c), +(515,370,l), +(576,365,o), +(621,330,o), +(621,265,cs), +(621,188,o), +(551,142,o), +(439,142,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,145,o), +(254,197,o), +(253,283,c), +(290,283,l), +(290,211,o), +(346,176,o), +(428,176,cs), +(523,176,o), +(571,213,o), +(571,270,cs), +(571,336,o), +(522,360,o), +(447,360,cs), +(388,360,l), +(388,388,l), +(440,388,ls), +(527,388,o), +(563,423,o), +(563,474,cs), +(563,533,o), +(508,557,o), +(432,557,cs), +(353,557,o), +(298,518,o), +(297,452,c), +(262,452,l), +(259,535,o), +(333,587,o), +(432,587,cs), +(530,587,o), +(600,554,o), +(600,477,cs), +(600,422,o), +(560,385,o), +(504,376,c), +(504,373,l), +(565,368,o), +(610,333,o), +(610,268,cs), +(610,191,o), +(540,145,o), +(428,145,cs) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(299,143,o), +(232,190,o), +(226,286,c), +(374,286,l), +(378,261,o), +(398,251,o), +(431,251,cs), +(468,251,o), +(487,265,o), +(487,289,cs), +(487,308,o), +(470,321,o), +(432,321,cs), +(371,321,l), +(371,414,l), +(431,414,ls), +(463,414,o), +(478,428,o), +(478,447,cs), +(478,467,o), +(461,479,o), +(431,479,cs), +(396,479,o), +(383,468,o), +(377,445,c), +(232,445,l), +(241,545,o), +(317,587,o), +(437,587,cs), +(561,587,o), +(629,541,o), +(629,466,cs), +(629,423,o), +(603,387,o), +(554,375,c), +(554,370,l), +(603,364,o), +(638,327,o), +(638,274,cs), +(638,197,o), +(566,143,o), +(429,143,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(287,147,o), +(220,194,o), +(214,290,c), +(362,290,l), +(366,265,o), +(386,255,o), +(419,255,cs), +(456,255,o), +(475,269,o), +(475,293,cs), +(475,312,o), +(458,325,o), +(420,325,cs), +(359,325,l), +(359,418,l), +(419,418,ls), +(451,418,o), +(466,432,o), +(466,451,cs), +(466,471,o), +(449,483,o), +(419,483,cs), +(384,483,o), +(371,472,o), +(365,449,c), +(220,449,l), +(229,549,o), +(305,591,o), +(425,591,cs), +(549,591,o), +(617,545,o), +(617,470,cs), +(617,427,o), +(591,391,o), +(542,379,c), +(542,374,l), +(591,368,o), +(626,331,o), +(626,278,cs), +(626,201,o), +(554,147,o), +(417,147,cs) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(352,142,o), +(298,191,o), +(295,262,c), +(329,262,l), +(333,205,o), +(376,172,o), +(432,172,cs), +(498,172,o), +(541,209,o), +(541,267,cs), +(541,328,o), +(502,357,o), +(444,357,cs), +(403,357,l), +(403,385,l), +(435,385,ls), +(502,385,o), +(539,420,o), +(539,471,cs), +(539,525,o), +(499,555,o), +(441,555,cs), +(382,555,o), +(342,519,o), +(339,465,c), +(304,465,l), +(308,540,o), +(365,585,o), +(441,585,cs), +(523,585,o), +(574,541,o), +(574,474,cs), +(574,423,o), +(541,387,o), +(497,374,c), +(497,371,l), +(547,360,o), +(577,320,o), +(577,265,cs), +(577,191,o), +(519,142,o), +(432,142,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,144,o), +(295,193,o), +(292,264,c), +(326,264,l), +(330,207,o), +(371,174,o), +(427,174,cs), +(491,174,o), +(534,211,o), +(534,269,cs), +(534,330,o), +(495,359,o), +(439,359,cs), +(398,359,l), +(398,387,l), +(430,387,ls), +(495,387,o), +(532,422,o), +(532,473,cs), +(532,527,o), +(492,557,o), +(436,557,cs), +(377,557,o), +(339,521,o), +(336,467,c), +(301,467,l), +(305,542,o), +(360,587,o), +(436,587,cs), +(516,587,o), +(565,543,o), +(565,476,cs), +(565,425,o), +(534,389,o), +(490,376,c), +(490,373,l), +(540,362,o), +(568,322,o), +(568,267,cs), +(568,193,o), +(512,144,o), +(427,144,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +138, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +395, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +624, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +359, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +473, +100 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +621, +41 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +363, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +613, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +135, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +384, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +616, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +301, +41 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +420, +110 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +578, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +305, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +570, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,143,o), +(260,200,o), +(256,287,c), +(380,287,l), +(380,262,o), +(400,248,o), +(426,248,cs), +(453,248,o), +(468,265,o), +(468,287,cs), +(468,309,o), +(454,322,o), +(426,322,cs), +(374,322,l), +(374,414,l), +(422,414,ls), +(447,414,o), +(461,429,o), +(461,449,cs), +(461,470,o), +(448,481,o), +(425,481,cs), +(399,481,o), +(384,467,o), +(383,445,c), +(259,445,l), +(262,532,o), +(327,587,o), +(430,587,cs), +(522,587,o), +(586,542,o), +(586,465,cs), +(586,423,o), +(560,389,o), +(527,376,c), +(527,371,l), +(572,358,o), +(597,320,o), +(597,276,cs), +(597,190,o), +(524,143,o), +(426,143,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,145,o), +(254,202,o), +(250,289,c), +(373,289,l), +(373,264,o), +(392,250,o), +(417,250,cs), +(443,250,o), +(456,267,o), +(456,289,cs), +(456,311,o), +(444,324,o), +(417,324,cs), +(365,324,l), +(365,416,l), +(413,416,ls), +(437,416,o), +(449,431,o), +(449,451,cs), +(449,472,o), +(438,483,o), +(416,483,cs), +(391,483,o), +(377,469,o), +(376,447,c), +(253,447,l), +(256,534,o), +(320,589,o), +(421,589,cs), +(510,589,o), +(573,544,o), +(573,467,cs), +(573,424,o), +(547,391,o), +(516,378,c), +(516,373,l), +(559,360,o), +(584,323,o), +(584,278,cs), +(584,192,o), +(513,145,o), +(417,145,cs) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,144,o), +(292,199,o), +(293,281,c), +(323,281,l), +(322,200,o), +(348,169,o), +(387,169,cs), +(430,169,o), +(450,204,o), +(450,268,cs), +(450,324,o), +(427,360,o), +(385,360,cs), +(363,360,l), +(363,386,l), +(385,386,ls), +(426,386,o), +(445,426,o), +(445,473,cs), +(445,528,o), +(421,561,o), +(382,561,cs), +(339,561,o), +(322,520,o), +(324,457,c), +(294,457,l), +(292,545,o), +(329,586,o), +(383,586,cs), +(438,586,o), +(474,544,o), +(474,476,cs), +(474,430,o), +(456,388,o), +(422,375,c), +(422,373,l), +(461,361,o), +(480,322,o), +(480,267,cs), +(480,189,o), +(446,144,o), +(387,144,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,143,o), +(292,198,o), +(293,280,c), +(323,280,l), +(322,199,o), +(348,168,o), +(387,168,cs), +(430,168,o), +(450,203,o), +(450,267,cs), +(450,323,o), +(427,359,o), +(385,359,cs), +(363,359,l), +(363,385,l), +(385,385,ls), +(426,385,o), +(445,425,o), +(445,472,cs), +(445,527,o), +(421,560,o), +(382,560,cs), +(339,560,o), +(322,519,o), +(324,456,c), +(294,456,l), +(292,544,o), +(329,585,o), +(383,585,cs), +(438,585,o), +(474,543,o), +(474,475,cs), +(474,429,o), +(456,387,o), +(422,374,c), +(422,372,l), +(461,360,o), +(480,321,o), +(480,266,cs), +(480,188,o), +(446,143,o), +(387,143,cs) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,144,o), +(247,205,o), +(249,285,c), +(359,285,l), +(359,249,o), +(368,236,o), +(382,236,cs), +(401,236,o), +(410,248,o), +(410,282,cs), +(410,315,o), +(396,329,o), +(374,329,cs), +(336,329,l), +(336,409,l), +(370,409,ls), +(395,409,o), +(405,430,o), +(405,454,cs), +(405,485,o), +(400,496,o), +(382,496,cs), +(369,496,o), +(360,481,o), +(362,449,c), +(253,449,l), +(251,538,o), +(304,588,o), +(386,588,cs), +(467,588,o), +(513,540,o), +(513,468,cs), +(513,427,o), +(497,388,o), +(458,376,c), +(458,371,l), +(500,361,o), +(520,323,o), +(520,276,cs), +(520,192,o), +(464,144,o), +(381,144,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(280,143,o), +(248,204,o), +(250,284,c), +(360,284,l), +(360,248,o), +(369,235,o), +(383,235,cs), +(402,235,o), +(411,247,o), +(411,281,cs), +(411,314,o), +(397,328,o), +(375,328,cs), +(337,328,l), +(337,408,l), +(371,408,ls), +(396,408,o), +(406,429,o), +(406,453,cs), +(406,484,o), +(401,495,o), +(383,495,cs), +(370,495,o), +(361,480,o), +(363,448,c), +(254,448,l), +(252,537,o), +(305,587,o), +(387,587,cs), +(468,587,o), +(514,539,o), +(514,467,cs), +(514,426,o), +(498,387,o), +(459,375,c), +(459,370,l), +(501,360,o), +(521,322,o), +(521,275,cs), +(521,191,o), +(465,143,o), +(382,143,cs) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(384,142,o), +(330,191,o), +(327,262,c), +(361,262,l), +(365,205,o), +(408,172,o), +(464,172,cs), +(530,172,o), +(573,209,o), +(573,267,cs), +(573,328,o), +(534,357,o), +(476,357,cs), +(435,357,l), +(435,385,l), +(467,385,ls), +(534,385,o), +(571,420,o), +(571,471,cs), +(571,525,o), +(531,555,o), +(473,555,cs), +(414,555,o), +(374,519,o), +(371,465,c), +(336,465,l), +(340,540,o), +(397,585,o), +(473,585,cs), +(555,585,o), +(606,541,o), +(606,474,cs), +(606,423,o), +(573,387,o), +(529,374,c), +(529,371,l), +(579,360,o), +(609,320,o), +(609,265,cs), +(609,191,o), +(551,142,o), +(464,142,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(384,144,o), +(330,193,o), +(327,264,c), +(361,264,l), +(365,207,o), +(408,174,o), +(464,174,cs), +(530,174,o), +(573,211,o), +(573,269,cs), +(573,330,o), +(534,359,o), +(476,359,cs), +(435,359,l), +(435,387,l), +(467,387,ls), +(534,387,o), +(571,422,o), +(571,473,cs), +(571,527,o), +(531,557,o), +(473,557,cs), +(414,557,o), +(374,521,o), +(371,467,c), +(336,467,l), +(340,542,o), +(397,587,o), +(473,587,cs), +(555,587,o), +(606,543,o), +(606,476,cs), +(606,425,o), +(573,389,o), +(529,376,c), +(529,373,l), +(579,362,o), +(609,322,o), +(609,267,cs), +(609,193,o), +(551,144,o), +(464,144,cs) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,143,o), +(288,200,o), +(284,287,c), +(408,287,l), +(408,262,o), +(428,248,o), +(454,248,cs), +(481,248,o), +(496,265,o), +(496,287,cs), +(496,309,o), +(482,322,o), +(454,322,cs), +(402,322,l), +(402,414,l), +(450,414,ls), +(475,414,o), +(489,429,o), +(489,449,cs), +(489,470,o), +(476,481,o), +(453,481,cs), +(427,481,o), +(412,467,o), +(411,445,c), +(287,445,l), +(290,532,o), +(355,587,o), +(458,587,cs), +(550,587,o), +(614,542,o), +(614,465,cs), +(614,423,o), +(588,389,o), +(555,376,c), +(555,371,l), +(600,358,o), +(625,320,o), +(625,276,cs), +(625,190,o), +(552,143,o), +(454,143,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(349,145,o), +(289,202,o), +(285,289,c), +(409,289,l), +(409,264,o), +(429,250,o), +(455,250,cs), +(482,250,o), +(497,267,o), +(497,289,cs), +(497,311,o), +(483,324,o), +(455,324,cs), +(403,324,l), +(403,416,l), +(451,416,ls), +(476,416,o), +(490,431,o), +(490,451,cs), +(490,472,o), +(477,483,o), +(454,483,cs), +(428,483,o), +(413,469,o), +(412,447,c), +(288,447,l), +(291,534,o), +(356,589,o), +(459,589,cs), +(551,589,o), +(615,544,o), +(615,467,cs), +(615,425,o), +(589,391,o), +(556,378,c), +(556,373,l), +(601,360,o), +(626,322,o), +(626,278,cs), +(626,192,o), +(553,145,o), +(455,145,cs) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(361,142,o), +(296,194,o), +(295,280,c), +(332,280,l), +(332,208,o), +(388,173,o), +(470,173,cs), +(565,173,o), +(613,210,o), +(613,267,cs), +(613,333,o), +(564,357,o), +(489,357,cs), +(430,357,l), +(430,385,l), +(482,385,ls), +(569,385,o), +(605,420,o), +(605,471,cs), +(605,530,o), +(550,554,o), +(474,554,cs), +(395,554,o), +(340,515,o), +(339,449,c), +(304,449,l), +(301,532,o), +(375,584,o), +(474,584,cs), +(572,584,o), +(642,551,o), +(642,474,cs), +(642,419,o), +(602,382,o), +(546,373,c), +(546,370,l), +(607,365,o), +(652,330,o), +(652,265,cs), +(652,188,o), +(582,142,o), +(470,142,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(360,145,o), +(295,197,o), +(294,283,c), +(331,283,l), +(331,211,o), +(387,176,o), +(469,176,cs), +(564,176,o), +(612,213,o), +(612,270,cs), +(612,336,o), +(563,360,o), +(488,360,cs), +(429,360,l), +(429,388,l), +(481,388,ls), +(568,388,o), +(604,423,o), +(604,474,cs), +(604,533,o), +(549,557,o), +(473,557,cs), +(394,557,o), +(339,518,o), +(338,452,c), +(303,452,l), +(300,535,o), +(374,587,o), +(473,587,cs), +(571,587,o), +(641,554,o), +(641,477,cs), +(641,422,o), +(601,385,o), +(545,376,c), +(545,373,l), +(606,368,o), +(651,333,o), +(651,268,cs), +(651,191,o), +(581,145,o), +(469,145,cs) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(328,143,o), +(261,190,o), +(255,286,c), +(403,286,l), +(407,261,o), +(427,251,o), +(460,251,cs), +(497,251,o), +(516,265,o), +(516,289,cs), +(516,308,o), +(499,321,o), +(461,321,cs), +(400,321,l), +(400,414,l), +(460,414,ls), +(492,414,o), +(507,428,o), +(507,447,cs), +(507,467,o), +(490,479,o), +(460,479,cs), +(425,479,o), +(412,468,o), +(406,445,c), +(261,445,l), +(270,545,o), +(346,587,o), +(466,587,cs), +(590,587,o), +(658,541,o), +(658,466,cs), +(658,423,o), +(632,387,o), +(583,375,c), +(583,370,l), +(632,364,o), +(667,327,o), +(667,274,cs), +(667,197,o), +(595,143,o), +(458,143,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(326,147,o), +(259,194,o), +(253,290,c), +(401,290,l), +(405,265,o), +(425,255,o), +(458,255,cs), +(495,255,o), +(514,269,o), +(514,293,cs), +(514,312,o), +(497,325,o), +(459,325,cs), +(398,325,l), +(398,418,l), +(458,418,ls), +(490,418,o), +(505,432,o), +(505,451,cs), +(505,471,o), +(488,483,o), +(458,483,cs), +(423,483,o), +(410,472,o), +(404,449,c), +(259,449,l), +(268,549,o), +(344,591,o), +(464,591,cs), +(588,591,o), +(656,545,o), +(656,470,cs), +(656,427,o), +(630,391,o), +(581,379,c), +(581,374,l), +(630,368,o), +(665,331,o), +(665,278,cs), +(665,201,o), +(593,147,o), +(456,147,cs) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 10104; +userData = { +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/three.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/three.circled.glyph new file mode 100644 index 00000000..f4727a62 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/three.circled.glyph @@ -0,0 +1,1863 @@ +{ +color = 0; +glyphname = three.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,144,o), +(443,189,o), +(443,267,cs), +(443,322,o), +(424,361,o), +(385,373,c), +(385,375,l), +(419,388,o), +(437,430,o), +(437,476,cs), +(437,544,o), +(401,586,o), +(346,586,cs), +(292,586,o), +(255,545,o), +(257,457,c), +(287,457,l), +(285,520,o), +(302,561,o), +(345,561,cs), +(384,561,o), +(408,528,o), +(408,473,cs), +(408,426,o), +(389,386,o), +(348,386,cs), +(326,386,l), +(326,360,l), +(348,360,ls), +(390,360,o), +(413,324,o), +(413,268,cs), +(413,204,o), +(393,169,o), +(350,169,cs), +(311,169,o), +(285,200,o), +(286,281,c), +(256,281,l), +(255,199,o), +(282,144,o), +(350,144,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (222,188); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(432,144,o), +(488,192,o), +(488,276,cs), +(488,323,o), +(468,361,o), +(426,371,c), +(426,376,l), +(465,388,o), +(481,427,o), +(481,468,cs), +(481,540,o), +(435,588,o), +(354,588,cs), +(272,588,o), +(219,538,o), +(221,449,c), +(330,449,l), +(328,481,o), +(337,496,o), +(350,496,cs), +(368,496,o), +(373,485,o), +(373,454,cs), +(373,430,o), +(363,409,o), +(338,409,cs), +(304,409,l), +(304,329,l), +(342,329,ls), +(364,329,o), +(378,315,o), +(378,282,cs), +(378,248,o), +(369,236,o), +(350,236,cs), +(336,236,o), +(327,249,o), +(327,285,c), +(217,285,l), +(215,205,o), +(247,144,o), +(349,144,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (207,189); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(551,142,o), +(621,188,o), +(621,265,cs), +(621,330,o), +(576,365,o), +(515,370,c), +(515,373,l), +(571,382,o), +(611,419,o), +(611,474,cs), +(611,551,o), +(541,584,o), +(443,584,cs), +(344,584,o), +(270,532,o), +(273,449,c), +(308,449,l), +(309,515,o), +(364,554,o), +(443,554,cs), +(519,554,o), +(574,530,o), +(574,471,cs), +(574,420,o), +(538,385,o), +(451,385,cs), +(399,385,l), +(399,357,l), +(458,357,ls), +(533,357,o), +(582,333,o), +(582,267,cs), +(582,210,o), +(534,173,o), +(439,173,cs), +(357,173,o), +(301,208,o), +(301,280,c), +(264,280,l), +(265,194,o), +(330,142,o), +(439,142,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (231,190); +ref = threeinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(566,143,o), +(638,197,o), +(638,274,cs), +(638,327,o), +(603,364,o), +(554,370,c), +(554,375,l), +(603,387,o), +(629,423,o), +(629,466,cs), +(629,541,o), +(561,587,o), +(437,587,cs), +(317,587,o), +(241,545,o), +(232,445,c), +(377,445,l), +(383,468,o), +(396,479,o), +(431,479,cs), +(461,479,o), +(478,467,o), +(478,447,cs), +(478,428,o), +(463,414,o), +(431,414,cs), +(371,414,l), +(371,321,l), +(432,321,ls), +(470,321,o), +(487,308,o), +(487,289,cs), +(487,265,o), +(468,251,o), +(431,251,cs), +(398,251,o), +(378,261,o), +(374,286,c), +(226,286,l), +(232,190,o), +(299,143,o), +(429,143,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (214,193); +ref = threeinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,144,o), +(443,189,o), +(443,267,cs), +(443,322,o), +(424,361,o), +(385,373,c), +(385,375,l), +(419,388,o), +(437,430,o), +(437,476,cs), +(437,544,o), +(401,586,o), +(346,586,cs), +(292,586,o), +(255,545,o), +(257,457,c), +(287,457,l), +(285,520,o), +(302,561,o), +(345,561,cs), +(384,561,o), +(408,528,o), +(408,473,cs), +(408,426,o), +(389,386,o), +(348,386,cs), +(326,386,l), +(326,360,l), +(348,360,ls), +(390,360,o), +(413,324,o), +(413,268,cs), +(413,204,o), +(393,169,o), +(350,169,cs), +(311,169,o), +(285,200,o), +(286,281,c), +(256,281,l), +(255,199,o), +(282,144,o), +(350,144,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (222,188); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(432,144,o), +(488,192,o), +(488,276,cs), +(488,323,o), +(468,361,o), +(426,371,c), +(426,376,l), +(465,388,o), +(481,427,o), +(481,468,cs), +(481,540,o), +(435,588,o), +(354,588,cs), +(272,588,o), +(219,538,o), +(221,449,c), +(330,449,l), +(328,481,o), +(337,496,o), +(350,496,cs), +(368,496,o), +(373,485,o), +(373,454,cs), +(373,430,o), +(363,409,o), +(338,409,cs), +(304,409,l), +(304,329,l), +(342,329,ls), +(364,329,o), +(378,315,o), +(378,282,cs), +(378,248,o), +(369,236,o), +(350,236,cs), +(336,236,o), +(327,249,o), +(327,285,c), +(217,285,l), +(215,205,o), +(247,144,o), +(349,144,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (204,189); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,142,o), +(577,191,o), +(577,265,cs), +(577,320,o), +(547,360,o), +(497,371,c), +(497,374,l), +(541,387,o), +(574,423,o), +(574,474,cs), +(574,541,o), +(523,585,o), +(441,585,cs), +(365,585,o), +(308,540,o), +(304,465,c), +(339,465,l), +(342,519,o), +(382,555,o), +(441,555,cs), +(499,555,o), +(539,525,o), +(539,471,cs), +(539,420,o), +(502,385,o), +(435,385,cs), +(403,385,l), +(403,357,l), +(444,357,ls), +(502,357,o), +(541,328,o), +(541,267,cs), +(541,209,o), +(498,172,o), +(432,172,cs), +(376,172,o), +(333,205,o), +(329,262,c), +(295,262,l), +(298,191,o), +(352,142,o), +(432,142,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (247,189); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 871; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(524,143,o), +(597,190,o), +(597,276,cs), +(597,320,o), +(572,358,o), +(527,371,c), +(527,376,l), +(560,389,o), +(586,423,o), +(586,465,cs), +(586,542,o), +(522,587,o), +(430,587,cs), +(327,587,o), +(262,532,o), +(259,445,c), +(383,445,l), +(384,467,o), +(399,481,o), +(425,481,cs), +(448,481,o), +(461,470,o), +(461,449,cs), +(461,429,o), +(447,414,o), +(422,414,cs), +(374,414,l), +(374,322,l), +(426,322,ls), +(454,322,o), +(468,309,o), +(468,287,cs), +(468,265,o), +(453,248,o), +(426,248,cs), +(400,248,o), +(380,262,o), +(380,287,c), +(256,287,l), +(260,200,o), +(320,143,o), +(426,143,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (233,191); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 835; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(551,142,o), +(621,188,o), +(621,265,cs), +(621,330,o), +(576,365,o), +(515,370,c), +(515,373,l), +(571,382,o), +(611,419,o), +(611,474,cs), +(611,551,o), +(541,584,o), +(443,584,cs), +(344,584,o), +(270,532,o), +(273,449,c), +(308,449,l), +(309,515,o), +(364,554,o), +(443,554,cs), +(519,554,o), +(574,530,o), +(574,471,cs), +(574,420,o), +(538,385,o), +(451,385,cs), +(399,385,l), +(399,357,l), +(458,357,ls), +(533,357,o), +(582,333,o), +(582,267,cs), +(582,210,o), +(534,173,o), +(439,173,cs), +(357,173,o), +(301,208,o), +(301,280,c), +(264,280,l), +(265,194,o), +(330,142,o), +(439,142,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (231,190); +ref = threeinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(566,143,o), +(638,197,o), +(638,274,cs), +(638,327,o), +(603,364,o), +(554,370,c), +(554,375,l), +(603,387,o), +(629,423,o), +(629,466,cs), +(629,541,o), +(561,587,o), +(437,587,cs), +(317,587,o), +(241,545,o), +(232,445,c), +(377,445,l), +(383,468,o), +(396,479,o), +(431,479,cs), +(461,479,o), +(478,467,o), +(478,447,cs), +(478,428,o), +(463,414,o), +(431,414,cs), +(371,414,l), +(371,321,l), +(432,321,ls), +(470,321,o), +(487,308,o), +(487,289,cs), +(487,265,o), +(468,251,o), +(431,251,cs), +(398,251,o), +(378,261,o), +(374,286,c), +(226,286,l), +(232,190,o), +(299,143,o), +(429,143,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (214,193); +ref = threeinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,142,o), +(577,191,o), +(577,265,cs), +(577,320,o), +(547,360,o), +(497,371,c), +(497,374,l), +(541,387,o), +(574,423,o), +(574,474,cs), +(574,541,o), +(523,585,o), +(441,585,cs), +(365,585,o), +(308,540,o), +(304,465,c), +(339,465,l), +(342,519,o), +(382,555,o), +(441,555,cs), +(499,555,o), +(539,525,o), +(539,471,cs), +(539,420,o), +(502,385,o), +(435,385,cs), +(403,385,l), +(403,357,l), +(444,357,ls), +(502,357,o), +(541,328,o), +(541,267,cs), +(541,209,o), +(498,172,o), +(432,172,cs), +(376,172,o), +(333,205,o), +(329,262,c), +(295,262,l), +(298,191,o), +(352,142,o), +(432,142,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (243,189); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(524,143,o), +(597,190,o), +(597,276,cs), +(597,320,o), +(572,358,o), +(527,371,c), +(527,376,l), +(560,389,o), +(586,423,o), +(586,465,cs), +(586,542,o), +(522,587,o), +(430,587,cs), +(327,587,o), +(262,532,o), +(259,445,c), +(383,445,l), +(384,467,o), +(399,481,o), +(425,481,cs), +(448,481,o), +(461,470,o), +(461,449,cs), +(461,429,o), +(447,414,o), +(422,414,cs), +(374,414,l), +(374,322,l), +(426,322,ls), +(454,322,o), +(468,309,o), +(468,287,cs), +(468,265,o), +(453,248,o), +(426,248,cs), +(400,248,o), +(380,262,o), +(380,287,c), +(256,287,l), +(260,200,o), +(320,143,o), +(426,143,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (231,191); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,144,o), +(480,189,o), +(480,267,cs), +(480,322,o), +(461,361,o), +(422,373,c), +(422,375,l), +(456,388,o), +(474,430,o), +(474,476,cs), +(474,544,o), +(438,586,o), +(383,586,cs), +(329,586,o), +(292,545,o), +(294,457,c), +(324,457,l), +(322,520,o), +(339,561,o), +(382,561,cs), +(421,561,o), +(445,528,o), +(445,473,cs), +(445,426,o), +(426,386,o), +(385,386,cs), +(363,386,l), +(363,360,l), +(385,360,ls), +(427,360,o), +(450,324,o), +(450,268,cs), +(450,204,o), +(430,169,o), +(387,169,cs), +(348,169,o), +(322,200,o), +(323,281,c), +(293,281,l), +(292,199,o), +(319,144,o), +(387,144,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (259,188); +ref = threeinferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,144,o), +(520,192,o), +(520,276,cs), +(520,323,o), +(500,361,o), +(458,371,c), +(458,376,l), +(497,388,o), +(513,427,o), +(513,468,cs), +(513,540,o), +(467,588,o), +(386,588,cs), +(304,588,o), +(251,538,o), +(253,449,c), +(362,449,l), +(360,481,o), +(369,496,o), +(382,496,cs), +(400,496,o), +(405,485,o), +(405,454,cs), +(405,430,o), +(395,409,o), +(370,409,cs), +(336,409,l), +(336,329,l), +(374,329,ls), +(396,329,o), +(410,315,o), +(410,282,cs), +(410,248,o), +(401,236,o), +(382,236,cs), +(368,236,o), +(359,249,o), +(359,285,c), +(249,285,l), +(247,205,o), +(279,144,o), +(381,144,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (239,189); +ref = threeinferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(551,142,o), +(609,191,o), +(609,265,cs), +(609,320,o), +(579,360,o), +(529,371,c), +(529,374,l), +(573,387,o), +(606,423,o), +(606,474,cs), +(606,541,o), +(555,585,o), +(473,585,cs), +(397,585,o), +(340,540,o), +(336,465,c), +(371,465,l), +(374,519,o), +(414,555,o), +(473,555,cs), +(531,555,o), +(571,525,o), +(571,471,cs), +(571,420,o), +(534,385,o), +(467,385,cs), +(435,385,l), +(435,357,l), +(476,357,ls), +(534,357,o), +(573,328,o), +(573,267,cs), +(573,209,o), +(530,172,o), +(464,172,cs), +(408,172,o), +(365,205,o), +(361,262,c), +(327,262,l), +(330,191,o), +(384,142,o), +(464,142,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = master01; +pos = (300,186); +ref = threeinferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(552,143,o), +(625,190,o), +(625,276,cs), +(625,320,o), +(600,358,o), +(555,371,c), +(555,376,l), +(588,389,o), +(614,423,o), +(614,465,cs), +(614,542,o), +(550,587,o), +(458,587,cs), +(355,587,o), +(290,532,o), +(287,445,c), +(411,445,l), +(412,467,o), +(427,481,o), +(453,481,cs), +(476,481,o), +(489,470,o), +(489,449,cs), +(489,429,o), +(475,414,o), +(450,414,cs), +(402,414,l), +(402,322,l), +(454,322,ls), +(482,322,o), +(496,309,o), +(496,287,cs), +(496,265,o), +(481,248,o), +(454,248,cs), +(428,248,o), +(408,262,o), +(408,287,c), +(284,287,l), +(288,200,o), +(348,143,o), +(454,143,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (287,188); +ref = threeinferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(582,142,o), +(652,188,o), +(652,265,cs), +(652,330,o), +(607,365,o), +(546,370,c), +(546,373,l), +(602,382,o), +(642,419,o), +(642,474,cs), +(642,551,o), +(572,584,o), +(474,584,cs), +(375,584,o), +(301,532,o), +(304,449,c), +(339,449,l), +(340,515,o), +(395,554,o), +(474,554,cs), +(550,554,o), +(605,530,o), +(605,471,cs), +(605,420,o), +(569,385,o), +(482,385,cs), +(430,385,l), +(430,357,l), +(489,357,ls), +(564,357,o), +(613,333,o), +(613,267,cs), +(613,210,o), +(565,173,o), +(470,173,cs), +(388,173,o), +(332,208,o), +(332,280,c), +(295,280,l), +(296,194,o), +(361,142,o), +(470,142,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (262,190); +ref = threeinferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(595,143,o), +(667,197,o), +(667,274,cs), +(667,327,o), +(632,364,o), +(583,370,c), +(583,375,l), +(632,387,o), +(658,423,o), +(658,466,cs), +(658,541,o), +(590,587,o), +(466,587,cs), +(346,587,o), +(270,545,o), +(261,445,c), +(406,445,l), +(412,468,o), +(425,479,o), +(460,479,cs), +(490,479,o), +(507,467,o), +(507,447,cs), +(507,428,o), +(492,414,o), +(460,414,cs), +(400,414,l), +(400,321,l), +(461,321,ls), +(499,321,o), +(516,308,o), +(516,289,cs), +(516,265,o), +(497,251,o), +(460,251,cs), +(427,251,o), +(407,261,o), +(403,286,c), +(255,286,l), +(261,190,o), +(328,143,o), +(458,143,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (243,193); +ref = threeinferior; +} +); +width = 880; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9314; +userData = { +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/three.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/three.dnom.glyph new file mode 100644 index 00000000..1fd6409d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/three.dnom.glyph @@ -0,0 +1,1322 @@ +{ +glyphname = three.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-5,o), +(252,36,o), +(252,110,cs), +(252,149,o), +(235,183,o), +(198,192,c), +(198,195,l), +(232,206,o), +(246,240,o), +(246,275,cs), +(246,337,o), +(206,380,o), +(134,380,cs), +(61,380,o), +(14,336,o), +(15,259,c), +(115,259,l), +(114,283,o), +(119,296,o), +(130,296,cs), +(144,296,o), +(148,288,o), +(148,262,cs), +(148,243,o), +(139,226,o), +(119,226,cs), +(89,226,l), +(89,153,l), +(122,153,ls), +(140,153,o), +(152,142,o), +(152,115,cs), +(152,89,o), +(145,78,o), +(130,78,cs), +(119,78,o), +(112,89,o), +(112,117,c), +(12,117,l), +(10,44,o), +(42,-5,o), +(129,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 266; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,-5,o), +(207,36,o), +(207,108,cs), +(207,158,o), +(190,194,o), +(154,205,c), +(154,207,l), +(185,219,o), +(202,257,o), +(202,300,cs), +(202,362,o), +(169,401,o), +(118,401,cs), +(69,401,o), +(35,363,o), +(37,282,c), +(64,282,l), +(62,340,o), +(78,378,o), +(118,378,cs), +(153,378,o), +(175,348,o), +(175,297,cs), +(175,254,o), +(158,217,o), +(120,217,cs), +(100,217,l), +(100,194,l), +(121,194,ls), +(158,194,o), +(180,162,o), +(180,109,cs), +(180,50,o), +(161,18,o), +(123,18,cs), +(87,18,o), +(62,47,o), +(63,121,c), +(36,121,l), +(35,46,o), +(60,-5,o), +(122,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 252; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,-5,o), +(362,38,o), +(362,108,cs), +(362,167,o), +(321,200,o), +(265,205,c), +(265,207,l), +(319,216,o), +(353,251,o), +(353,300,cs), +(353,370,o), +(289,401,o), +(199,401,cs), +(109,401,o), +(40,355,o), +(42,276,c), +(76,276,l), +(76,337,o), +(127,372,o), +(198,372,cs), +(268,372,o), +(317,350,o), +(317,297,cs), +(317,250,o), +(284,219,o), +(206,219,cs), +(157,219,l), +(157,192,l), +(212,192,ls), +(281,192,o), +(325,170,o), +(325,110,cs), +(325,58,o), +(281,24,o), +(195,24,cs), +(120,24,o), +(69,57,o), +(69,122,c), +(34,122,l), +(35,46,o), +(91,-5,o), +(195,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 404; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-5,o), +(379,41,o), +(379,108,cs), +(379,154,o), +(347,186,o), +(302,192,c), +(302,195,l), +(345,206,o), +(371,236,o), +(371,275,cs), +(371,340,o), +(309,380,o), +(200,380,cs), +(93,380,o), +(25,343,o), +(18,256,c), +(141,256,l), +(146,280,o), +(163,288,o), +(194,288,cs), +(225,288,o), +(243,277,o), +(243,259,cs), +(243,241,o), +(227,229,o), +(196,229,cs), +(142,229,l), +(142,150,l), +(196,150,ls), +(234,150,o), +(251,138,o), +(251,121,cs), +(251,99,o), +(232,87,o), +(194,87,cs), +(162,87,o), +(140,96,o), +(138,119,c), +(12,119,l), +(17,36,o), +(77,-5,o), +(193,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 398; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(156,-5,o), +(187,36,o), +(187,108,cs), +(187,158,o), +(170,194,o), +(134,205,c), +(134,207,l), +(165,219,o), +(182,257,o), +(182,300,cs), +(182,362,o), +(149,401,o), +(98,401,cs), +(49,401,o), +(15,363,o), +(17,282,c), +(44,282,l), +(42,340,o), +(58,378,o), +(98,378,cs), +(133,378,o), +(155,348,o), +(155,297,cs), +(155,254,o), +(138,217,o), +(100,217,cs), +(80,217,l), +(80,194,l), +(101,194,ls), +(138,194,o), +(160,162,o), +(160,109,cs), +(160,50,o), +(141,18,o), +(103,18,cs), +(67,18,o), +(42,47,o), +(43,121,c), +(16,121,l), +(15,46,o), +(40,-5,o), +(102,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 212; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,-5,o), +(243,36,o), +(243,110,cs), +(243,149,o), +(226,183,o), +(189,192,c), +(189,195,l), +(223,206,o), +(237,240,o), +(237,275,cs), +(237,337,o), +(197,380,o), +(125,380,cs), +(52,380,o), +(5,336,o), +(6,259,c), +(106,259,l), +(105,283,o), +(110,296,o), +(121,296,cs), +(135,296,o), +(139,288,o), +(139,262,cs), +(139,243,o), +(130,226,o), +(110,226,cs), +(80,226,l), +(80,153,l), +(113,153,ls), +(131,153,o), +(143,142,o), +(143,115,cs), +(143,89,o), +(136,78,o), +(121,78,cs), +(110,78,o), +(103,89,o), +(103,117,c), +(3,117,l), +(1,44,o), +(33,-5,o), +(120,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 248; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,-5,o), +(287,40,o), +(287,108,cs), +(287,161,o), +(258,196,o), +(214,205,c), +(214,208,l), +(257,221,o), +(285,255,o), +(285,300,cs), +(285,361,o), +(238,402,o), +(163,402,cs), +(94,402,o), +(41,361,o), +(38,292,c), +(69,292,l), +(72,341,o), +(109,374,o), +(163,374,cs), +(217,374,o), +(253,346,o), +(253,297,cs), +(253,250,o), +(218,218,o), +(157,218,cs), +(128,218,l), +(128,193,l), +(165,193,ls), +(219,193,o), +(254,165,o), +(254,110,cs), +(254,57,o), +(215,23,o), +(155,23,cs), +(101,23,o), +(63,56,o), +(60,106,c), +(29,106,l), +(32,40,o), +(82,-5,o), +(155,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 334; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,-5,o), +(310,36,o), +(310,111,cs), +(310,148,o), +(288,181,o), +(248,193,c), +(248,197,l), +(279,209,o), +(301,239,o), +(301,273,cs), +(301,340,o), +(244,380,o), +(161,380,cs), +(68,380,o), +(11,332,o), +(8,256,c), +(117,256,l), +(119,278,o), +(136,286,o), +(156,286,cs), +(178,286,o), +(191,277,o), +(191,260,cs), +(191,242,o), +(177,230,o), +(154,230,cs), +(111,230,l), +(111,149,l), +(158,149,ls), +(183,149,o), +(196,138,o), +(196,120,cs), +(196,101,o), +(182,88,o), +(157,88,cs), +(134,88,o), +(114,99,o), +(115,120,c), +(5,120,l), +(8,45,o), +(63,-5,o), +(157,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 321; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-5,o), +(352,38,o), +(352,108,cs), +(352,167,o), +(311,200,o), +(255,205,c), +(255,207,l), +(309,216,o), +(343,251,o), +(343,300,cs), +(343,370,o), +(279,401,o), +(189,401,cs), +(99,401,o), +(30,355,o), +(32,276,c), +(66,276,l), +(66,337,o), +(117,372,o), +(188,372,cs), +(258,372,o), +(307,350,o), +(307,297,cs), +(307,250,o), +(274,219,o), +(196,219,cs), +(147,219,l), +(147,192,l), +(202,192,ls), +(271,192,o), +(315,170,o), +(315,110,cs), +(315,58,o), +(271,24,o), +(185,24,cs), +(110,24,o), +(59,57,o), +(59,122,c), +(24,122,l), +(25,46,o), +(81,-5,o), +(185,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 384; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,-5,o), +(369,41,o), +(369,108,cs), +(369,154,o), +(337,186,o), +(292,192,c), +(292,195,l), +(335,206,o), +(361,236,o), +(361,275,cs), +(361,340,o), +(299,380,o), +(190,380,cs), +(83,380,o), +(15,343,o), +(8,256,c), +(131,256,l), +(136,280,o), +(153,288,o), +(184,288,cs), +(215,288,o), +(233,277,o), +(233,259,cs), +(233,241,o), +(217,229,o), +(186,229,cs), +(132,229,l), +(132,150,l), +(186,150,ls), +(224,150,o), +(241,138,o), +(241,121,cs), +(241,99,o), +(222,87,o), +(184,87,cs), +(152,87,o), +(130,96,o), +(128,119,c), +(2,119,l), +(7,36,o), +(67,-5,o), +(183,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 378; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(251,-5,o), +(304,40,o), +(304,108,cs), +(304,161,o), +(275,196,o), +(233,205,c), +(233,208,l), +(274,221,o), +(302,255,o), +(302,300,cs), +(302,361,o), +(255,402,o), +(182,402,cs), +(115,402,o), +(62,361,o), +(59,292,c), +(90,292,l), +(93,341,o), +(130,374,o), +(182,374,cs), +(236,374,o), +(270,346,o), +(270,297,cs), +(270,250,o), +(237,218,o), +(176,218,cs), +(149,218,l), +(149,193,l), +(184,193,ls), +(238,193,o), +(271,165,o), +(271,110,cs), +(271,57,o), +(234,23,o), +(174,23,cs), +(122,23,o), +(84,56,o), +(81,106,c), +(52,106,l), +(53,40,o), +(103,-5,o), +(174,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 371; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(255,-5,o), +(317,36,o), +(317,111,cs), +(317,148,o), +(296,181,o), +(258,193,c), +(258,197,l), +(287,209,o), +(308,239,o), +(308,273,cs), +(308,340,o), +(253,380,o), +(174,380,cs), +(84,380,o), +(31,332,o), +(28,256,c), +(135,256,l), +(137,278,o), +(151,286,o), +(169,286,cs), +(188,286,o), +(199,277,o), +(199,260,cs), +(199,242,o), +(187,230,o), +(167,230,cs), +(126,230,l), +(126,149,l), +(171,149,ls), +(193,149,o), +(204,138,o), +(204,120,cs), +(204,101,o), +(192,88,o), +(170,88,cs), +(150,88,o), +(133,99,o), +(134,120,c), +(25,120,l), +(28,45,o), +(80,-5,o), +(170,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 347; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,-4,o), +(160,34,o), +(173,101,cs), +(182,147,o), +(177,186,o), +(141,202,c), +(142,205,l), +(176,214,o), +(201,253,o), +(208,293,cs), +(219,355,o), +(198,401,o), +(139,401,cs), +(94,401,o), +(58,366,o), +(44,291,c), +(70,291,l), +(81,346,o), +(102,377,o), +(136,377,cs), +(178,377,o), +(191,339,o), +(181,293,cs), +(171,245,o), +(147,214,o), +(110,217,cs), +(91,219,l), +(86,195,l), +(106,194,ls), +(145,191,o), +(158,155,o), +(147,105,cs), +(135,49,o), +(113,18,o), +(78,18,cs), +(29,18,o), +(21,63,o), +(36,127,c), +(8,127,l), +(-7,52,o), +(5,-4,o), +(77,-4,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 251; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,-5,o), +(201,29,o), +(216,99,cs), +(223,133,o), +(219,172,o), +(180,186,c), +(181,189,l), +(224,201,o), +(246,242,o), +(247,289,cs), +(248,348,o), +(208,379,o), +(142,379,cs), +(76,379,o), +(28,339,o), +(16,264,c), +(113,264,l), +(118,286,o), +(126,296,o), +(134,296,cs), +(150,296,o), +(151,285,o), +(145,258,cs), +(141,239,o), +(132,227,o), +(104,227,cs), +(80,227,l), +(65,154,l), +(93,154,ls), +(120,154,o), +(124,136,o), +(119,112,cs), +(114,88,o), +(107,79,o), +(93,79,cs), +(74,79,o), +(78,103,o), +(82,124,c), +(-18,124,l), +(-36,39,o), +(2,-5,o), +(88,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 266; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,-6,o), +(272,44,o), +(272,116,cs), +(272,155,o), +(246,192,o), +(217,201,c), +(218,203,l), +(271,215,o), +(304,257,o), +(304,306,cs), +(304,363,o), +(260,401,o), +(196,401,cs), +(125,401,o), +(73,365,o), +(60,292,c), +(91,292,l), +(102,344,o), +(138,373,o), +(193,373,cs), +(239,373,o), +(271,345,o), +(271,301,cs), +(271,249,o), +(230,217,o), +(173,217,cs), +(131,217,l), +(126,191,l), +(165,191,ls), +(210,191,o), +(239,161,o), +(239,117,cs), +(239,61,o), +(201,22,o), +(136,22,cs), +(82,22,o), +(48,53,o), +(52,106,c), +(21,106,l), +(18,40,o), +(62,-6,o), +(134,-6,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 367; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,-5,o), +(298,42,o), +(298,111,cs), +(298,152,o), +(273,181,o), +(247,190,c), +(248,194,l), +(290,207,o), +(318,240,o), +(318,283,cs), +(318,341,o), +(266,379,o), +(193,379,cs), +(102,379,o), +(33,335,o), +(25,260,c), +(136,260,l), +(138,274,o), +(152,284,o), +(173,284,cs), +(188,284,o), +(201,275,o), +(201,261,cs), +(201,243,o), +(184,231,o), +(159,231,cs), +(120,231,l), +(102,148,l), +(146,148,ls), +(170,148,o), +(183,139,o), +(183,120,cs), +(183,100,o), +(166,90,o), +(144,90,cs), +(127,90,o), +(107,95,o), +(104,117,c), +(-6,117,l), +(-5,44,o), +(45,-5,o), +(137,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 361; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,-5,o), +(323,39,o), +(326,110,cs), +(328,168,o), +(300,195,o), +(249,203,c), +(250,206,l), +(310,212,o), +(356,249,o), +(358,303,cs), +(360,366,o), +(304,401,o), +(214,401,cs), +(123,401,o), +(58,356,o), +(45,283,c), +(78,283,l), +(90,339,o), +(141,373,o), +(210,373,cs), +(284,373,o), +(323,347,o), +(322,299,cs), +(320,249,o), +(273,219,o), +(196,219,cs), +(145,219,l), +(140,192,l), +(188,192,ls), +(261,192,o), +(292,167,o), +(290,109,cs), +(288,62,o), +(240,23,o), +(160,23,cs), +(80,23,o), +(36,60,o), +(39,121,c), +(5,121,l), +(1,45,o), +(54,-5,o), +(157,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 400; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,-5,o), +(339,38,o), +(341,113,cs), +(342,152,o), +(320,182,o), +(281,190,c), +(282,193,l), +(334,204,o), +(367,234,o), +(368,278,cs), +(370,360,o), +(275,379,o), +(211,379,cs), +(110,379,o), +(33,344,o), +(16,257,c), +(137,257,l), +(145,277,o), +(162,287,o), +(193,287,cs), +(220,287,o), +(237,281,o), +(237,264,cs), +(237,239,o), +(214,229,o), +(178,229,cs), +(130,229,l), +(114,150,l), +(162,150,ls), +(192,150,o), +(216,146,o), +(216,121,cs), +(216,96,o), +(192,87,o), +(155,87,cs), +(127,87,o), +(108,96,o), +(106,120,c), +(-19,120,l), +(-19,45,o), +(24,-5,o), +(147,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 395; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/three.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/three.glyph new file mode 100644 index 00000000..205cc6b3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/three.glyph @@ -0,0 +1,1868 @@ +{ +glyphname = three; +kernLeft = KO_three; +kernRight = KO_three; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(368,-10,o), +(460,69,o), +(460,210,cs), +(460,288,o), +(427,352,o), +(367,369,c), +(367,376,l), +(421,397,o), +(449,460,o), +(449,531,cs), +(449,650,o), +(373,730,o), +(239,730,cs), +(103,730,o), +(15,647,o), +(18,499,c), +(197,499,l), +(194,554,o), +(208,580,o), +(232,580,cs), +(263,580,o), +(272,560,o), +(272,507,cs), +(272,467,o), +(255,431,o), +(213,431,cs), +(157,431,l), +(157,300,l), +(219,300,ls), +(256,300,o), +(280,276,o), +(280,219,cs), +(280,162,o), +(265,140,o), +(232,140,cs), +(208,140,o), +(192,161,o), +(192,225,c), +(12,225,l), +(8,84,o), +(69,-10,o), +(230,-10,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(466,70,o), +(466,213,cs), +(466,292,o), +(432,356,o), +(361,374,c), +(361,381,l), +(426,402,o), +(455,466,o), +(455,538,cs), +(455,658,o), +(378,739,o), +(242,739,cs), +(104,739,o), +(15,655,o), +(18,505,c), +(199,505,l), +(196,561,o), +(211,587,o), +(235,587,cs), +(266,587,o), +(275,567,o), +(275,513,cs), +(275,473,o), +(258,436,o), +(216,436,cs), +(159,436,l), +(159,304,l), +(222,304,ls), +(259,304,o), +(284,279,o), +(284,222,cs), +(284,164,o), +(268,142,o), +(235,142,cs), +(211,142,o), +(194,163,o), +(194,228,c), +(12,228,l), +(8,85,o), +(70,-10,o), +(233,-10,cs) +); +} +); +width = 479; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,-8,o), +(327,66,o), +(327,197,cs), +(327,291,o), +(296,357,o), +(231,378,c), +(231,382,l), +(287,404,o), +(318,473,o), +(318,554,cs), +(318,668,o), +(259,738,o), +(171,738,cs), +(85,738,o), +(28,669,o), +(32,521,c), +(64,521,l), +(61,635,o), +(91,710,o), +(171,710,cs), +(241,710,o), +(286,651,o), +(286,552,cs), +(286,466,o), +(252,395,o), +(179,395,cs), +(144,395,l), +(144,363,l), +(179,363,ls), +(253,363,o), +(295,300,o), +(295,198,cs), +(295,83,o), +(258,19,o), +(181,19,cs), +(109,19,o), +(61,76,o), +(63,223,c), +(30,223,l), +(29,84,o), +(72,-8,o), +(181,-8,cs) +); +} +); +width = 367; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(504,-8,o), +(621,68,o), +(621,197,cs), +(621,304,o), +(551,368,o), +(437,378,c), +(437,382,l), +(534,396,o), +(604,458,o), +(604,554,cs), +(604,684,o), +(485,738,o), +(326,738,cs), +(163,738,o), +(38,648,o), +(47,510,c), +(82,510,l), +(81,631,o), +(183,704,o), +(326,704,cs), +(467,704,o), +(566,660,o), +(566,553,cs), +(566,460,o), +(502,396,o), +(342,396,cs), +(255,396,l), +(255,362,l), +(354,362,ls), +(490,362,o), +(580,320,o), +(580,198,cs), +(580,95,o), +(494,26,o), +(320,26,cs), +(169,26,o), +(68,92,o), +(68,223,c), +(30,223,l), +(30,86,o), +(135,-8,o), +(320,-8,cs) +); +} +); +width = 658; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(567,-10,o), +(687,79,o), +(687,210,cs), +(687,300,o), +(628,363,o), +(542,374,c), +(542,381,l), +(626,401,o), +(673,462,o), +(673,538,cs), +(673,665,o), +(557,739,o), +(354,739,cs), +(156,739,o), +(29,665,o), +(17,500,c), +(236,500,l), +(245,554,o), +(281,575,o), +(345,575,cs), +(409,575,o), +(446,552,o), +(446,509,cs), +(446,469,o), +(414,441,o), +(348,441,cs), +(248,441,l), +(248,299,l), +(350,299,ls), +(425,299,o), +(460,274,o), +(460,232,cs), +(460,182,o), +(421,154,o), +(344,154,cs), +(277,154,o), +(235,177,o), +(230,231,c), +(6,231,l), +(14,78,o), +(118,-10,o), +(342,-10,cs) +); +} +); +width = 701; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,-8,o), +(304,65,o), +(304,203,cs), +(304,307,o), +(270,372,o), +(208,391,c), +(208,392,l), +(260,413,o), +(293,478,o), +(293,555,cs), +(293,663,o), +(243,729,o), +(155,729,cs), +(65,729,o), +(13,654,o), +(14,526,c), +(45,526,l), +(45,636,o), +(86,701,o), +(155,701,cs), +(223,701,o), +(261,644,o), +(261,553,cs), +(261,476,o), +(228,406,o), +(157,406,cs), +(106,406,l), +(106,375,l), +(157,375,ls), +(232,375,o), +(272,316,o), +(272,204,cs), +(272,82,o), +(236,19,o), +(159,19,cs), +(88,19,o), +(40,75,o), +(42,228,c), +(10,228,l), +(9,83,o), +(51,-8,o), +(159,-8,cs) +); +} +); +width = 322; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(368,-10,o), +(460,69,o), +(460,210,cs), +(460,288,o), +(427,352,o), +(367,369,c), +(367,376,l), +(421,397,o), +(449,460,o), +(449,531,cs), +(449,650,o), +(373,730,o), +(239,730,cs), +(103,730,o), +(15,647,o), +(18,499,c), +(197,499,l), +(194,554,o), +(208,580,o), +(232,580,cs), +(263,580,o), +(272,560,o), +(272,507,cs), +(272,467,o), +(255,431,o), +(213,431,cs), +(157,431,l), +(157,300,l), +(219,300,ls), +(256,300,o), +(280,276,o), +(280,219,cs), +(280,162,o), +(265,140,o), +(232,140,cs), +(208,140,o), +(192,161,o), +(192,225,c), +(12,225,l), +(8,84,o), +(69,-10,o), +(230,-10,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,-10,o), +(451,73,o), +(451,225,cs), +(451,309,o), +(419,378,o), +(351,395,c), +(351,396,l), +(410,416,o), +(440,467,o), +(440,546,cs), +(440,662,o), +(358,736,o), +(230,736,cs), +(94,736,o), +(6,653,o), +(9,505,c), +(188,505,l), +(186,559,o), +(201,584,o), +(226,584,cs), +(252,584,o), +(263,565,o), +(263,525,cs), +(263,479,o), +(241,452,o), +(204,452,cs), +(143,452,l), +(143,309,l), +(210,309,ls), +(247,309,o), +(271,285,o), +(271,223,cs), +(271,164,o), +(259,142,o), +(227,142,cs), +(197,142,o), +(183,171,o), +(183,243,c), +(3,243,l), +(-1,84,o), +(60,-10,o), +(221,-10,cs) +); +} +); +width = 455; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-8,o), +(506,73,o), +(506,195,cs), +(506,289,o), +(454,356,o), +(365,374,c), +(365,378,l), +(442,400,o), +(493,461,o), +(493,547,cs), +(493,657,o), +(411,730,o), +(277,730,cs), +(142,730,o), +(50,641,o), +(55,514,c), +(93,515,l), +(89,624,o), +(164,697,o), +(277,697,cs), +(383,697,o), +(454,642,o), +(454,546,cs), +(454,459,o), +(397,391,o), +(289,391,cs), +(221,391,l), +(221,358,l), +(287,358,ls), +(394,358,o), +(466,306,o), +(466,196,cs), +(466,92,o), +(389,26,o), +(272,26,cs), +(156,26,o), +(81,104,o), +(85,220,c), +(50,220,l), +(46,83,o), +(135,-8,o), +(273,-8,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(403,-8,o), +(493,72,o), +(493,200,cs), +(493,300,o), +(438,369,o), +(345,387,c), +(345,388,l), +(424,411,o), +(474,476,o), +(474,548,cs), +(474,662,o), +(392,735,o), +(262,735,cs), +(138,735,o), +(50,656,o), +(41,537,c), +(79,537,l), +(89,636,o), +(159,702,o), +(262,702,cs), +(368,702,o), +(435,642,o), +(435,547,cs), +(435,461,o), +(364,402,o), +(252,402,cs), +(201,402,l), +(201,369,l), +(267,369,ls), +(384,369,o), +(453,307,o), +(453,201,cs), +(453,93,o), +(379,26,o), +(257,26,cs), +(144,26,o), +(67,86,o), +(58,212,c), +(20,212,l), +(28,66,o), +(123,-8,o), +(257,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 523; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1277,-10,o), +(1395,69,o), +(1395,210,cs), +(1395,288,o), +(1347,355,o), +(1276,371,c), +(1276,378,l), +(1335,397,o), +(1379,457,o), +(1379,528,cs), +(1379,655,o), +(1275,730,o), +(1120,730,cs), +(951,730,o), +(845,640,o), +(840,499,c), +(1029,499,l), +(1032,542,o), +(1064,568,o), +(1113,568,cs), +(1160,568,o), +(1188,546,o), +(1188,505,cs), +(1188,464,o), +(1160,436,o), +(1108,436,cs), +(1030,436,l), +(1030,295,l), +(1116,295,ls), +(1170,295,o), +(1198,270,o), +(1198,227,cs), +(1198,182,o), +(1167,152,o), +(1112,152,cs), +(1060,152,o), +(1024,178,o), +(1023,225,c), +(833,225,l), +(839,84,o), +(939,-10,o), +(1113,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,-10,o), +(590,69,o), +(590,210,cs), +(590,287,o), +(543,355,o), +(473,371,c), +(473,378,l), +(531,397,o), +(574,458,o), +(574,528,cs), +(574,655,o), +(471,730,o), +(318,730,cs), +(150,730,o), +(45,640,o), +(40,499,c), +(229,499,l), +(232,541,o), +(262,568,o), +(311,568,cs), +(356,568,o), +(383,546,o), +(383,505,cs), +(383,464,o), +(355,436,o), +(305,436,cs), +(228,436,l), +(228,295,l), +(313,295,ls), +(366,295,o), +(393,270,o), +(393,227,cs), +(393,182,o), +(363,152,o), +(310,152,cs), +(260,152,o), +(224,178,o), +(223,225,c), +(33,225,l), +(39,84,o), +(139,-10,o), +(311,-10,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-10,o), +(582,69,o), +(582,212,cs), +(582,294,o), +(536,360,o), +(458,381,c), +(458,382,l), +(520,405,o), +(566,466,o), +(566,536,cs), +(566,662,o), +(457,737,o), +(295,737,cs), +(121,737,o), +(13,647,o), +(7,506,c), +(206,506,l), +(213,550,o), +(243,575,o), +(288,575,cs), +(335,575,o), +(363,555,o), +(363,517,cs), +(363,477,o), +(334,450,o), +(283,450,cs), +(206,450,l), +(206,304,l), +(291,304,ls), +(345,304,o), +(373,278,o), +(373,228,cs), +(373,182,o), +(342,152,o), +(287,152,cs), +(239,152,o), +(204,179,o), +(200,225,c), +(0,225,l), +(7,84,o), +(110,-10,o), +(288,-10,cs) +); +} +); +width = 587; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-8,o), +(611,68,o), +(611,202,cs), +(611,314,o), +(539,379,o), +(422,389,c), +(422,390,l), +(516,404,o), +(585,466,o), +(585,556,cs), +(585,677,o), +(493,738,o), +(317,738,cs), +(154,738,o), +(40,649,o), +(37,507,c), +(73,507,l), +(77,632,o), +(174,704,o), +(317,704,cs), +(468,704,o), +(547,654,o), +(547,555,cs), +(547,468,o), +(485,405,o), +(328,405,cs), +(242,405,l), +(242,372,l), +(340,372,ls), +(479,372,o), +(571,330,o), +(571,203,cs), +(571,88,o), +(476,26,o), +(310,26,cs), +(159,26,o), +(60,91,o), +(56,235,c), +(19,235,l), +(23,85,o), +(124,-8,o), +(310,-8,cs) +); +} +); +width = 630; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(558,-10,o), +(679,78,o), +(679,209,cs), +(679,298,o), +(621,367,o), +(535,379,c), +(535,380,l), +(612,399,o), +(665,463,o), +(665,532,cs), +(665,664,o), +(552,737,o), +(345,737,cs), +(149,737,o), +(24,664,o), +(12,501,c), +(228,501,l), +(236,547,o), +(274,572,o), +(336,572,cs), +(400,572,o), +(435,551,o), +(435,512,cs), +(435,475,o), +(404,450,o), +(339,450,cs), +(240,450,l), +(240,298,l), +(341,298,ls), +(415,298,o), +(449,275,o), +(449,231,cs), +(449,183,o), +(411,156,o), +(335,156,cs), +(269,156,o), +(227,178,o), +(221,231,c), +(0,231,l), +(9,77,o), +(112,-10,o), +(333,-10,cs) +); +} +); +width = 682; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-8,o), +(506,73,o), +(506,195,cs), +(506,289,o), +(454,356,o), +(365,374,c), +(365,378,l), +(442,400,o), +(493,461,o), +(493,547,cs), +(493,657,o), +(411,730,o), +(277,730,cs), +(142,730,o), +(50,641,o), +(55,514,c), +(93,515,l), +(89,624,o), +(164,697,o), +(277,697,cs), +(383,697,o), +(454,642,o), +(454,546,cs), +(454,459,o), +(397,391,o), +(289,391,cs), +(221,391,l), +(221,358,l), +(287,358,ls), +(394,358,o), +(466,306,o), +(466,196,cs), +(466,92,o), +(389,26,o), +(272,26,cs), +(156,26,o), +(81,104,o), +(85,220,c), +(50,220,l), +(46,83,o), +(135,-8,o), +(273,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(403,-8,o), +(488,73,o), +(488,200,cs), +(488,297,o), +(440,364,o), +(358,383,c), +(358,387,l), +(421,409,o), +(466,470,o), +(466,556,cs), +(466,666,o), +(395,739,o), +(277,739,cs), +(161,739,o), +(81,659,o), +(76,542,c), +(113,542,l), +(118,637,o), +(181,703,o), +(277,703,cs), +(367,703,o), +(428,649,o), +(428,555,cs), +(428,462,o), +(370,400,o), +(267,400,cs), +(218,400,l), +(218,366,l), +(282,366,ls), +(382,366,o), +(449,314,o), +(449,201,cs), +(449,96,o), +(379,28,o), +(267,28,cs), +(162,28,o), +(92,93,o), +(86,189,c), +(51,189,l), +(54,72,o), +(143,-8,o), +(267,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 558; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1266,-10,o), +(1384,69,o), +(1384,210,cs), +(1384,288,o), +(1336,355,o), +(1265,371,c), +(1265,378,l), +(1324,397,o), +(1368,457,o), +(1368,528,cs), +(1368,655,o), +(1264,730,o), +(1109,730,cs), +(940,730,o), +(834,640,o), +(829,499,c), +(1018,499,l), +(1021,542,o), +(1053,568,o), +(1102,568,cs), +(1149,568,o), +(1177,546,o), +(1177,505,cs), +(1177,464,o), +(1149,436,o), +(1097,436,cs), +(1019,436,l), +(1019,295,l), +(1105,295,ls), +(1159,295,o), +(1187,270,o), +(1187,227,cs), +(1187,182,o), +(1156,152,o), +(1101,152,cs), +(1049,152,o), +(1013,178,o), +(1012,225,c), +(822,225,l), +(828,84,o), +(928,-10,o), +(1102,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(462,-10,o), +(579,69,o), +(579,210,cs), +(579,287,o), +(532,355,o), +(462,371,c), +(462,378,l), +(520,397,o), +(563,458,o), +(563,528,cs), +(563,655,o), +(460,730,o), +(307,730,cs), +(139,730,o), +(34,640,o), +(29,499,c), +(218,499,l), +(221,541,o), +(251,568,o), +(300,568,cs), +(345,568,o), +(372,546,o), +(372,505,cs), +(372,464,o), +(344,436,o), +(294,436,cs), +(217,436,l), +(217,295,l), +(302,295,ls), +(355,295,o), +(382,270,o), +(382,227,cs), +(382,182,o), +(352,152,o), +(299,152,cs), +(249,152,o), +(213,178,o), +(212,225,c), +(22,225,l), +(28,84,o), +(128,-10,o), +(300,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(456,-10,o), +(561,77,o), +(561,214,cs), +(561,292,o), +(520,356,o), +(448,378,c), +(448,385,l), +(506,408,o), +(546,466,o), +(546,537,cs), +(546,661,o), +(449,739,o), +(297,739,cs), +(134,739,o), +(32,648,o), +(27,501,c), +(223,501,l), +(225,544,o), +(250,569,o), +(289,569,cs), +(324,569,o), +(346,550,o), +(346,511,cs), +(346,472,o), +(324,443,o), +(286,443,cs), +(210,443,l), +(210,304,l), +(293,304,ls), +(336,304,o), +(357,277,o), +(357,231,cs), +(357,188,o), +(331,160,o), +(290,160,cs), +(248,160,o), +(218,185,o), +(218,233,c), +(21,233,l), +(27,85,o), +(124,-10,o), +(291,-10,cs) +); +} +); +width = 594; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,-15,o), +(279,55,o), +(305,184,cs), +(321,259,o), +(316,339,o), +(249,369,c), +(250,373,l), +(309,390,o), +(354,457,o), +(369,531,cs), +(392,643,o), +(355,729,o), +(252,729,cs), +(176,729,o), +(114,667,o), +(89,532,c), +(119,532,l), +(139,634,o), +(179,700,o), +(249,700,cs), +(332,700,o), +(356,625,o), +(337,534,cs), +(318,445,o), +(271,384,o), +(203,390,cs), +(170,393,l), +(162,362,l), +(197,359,ls), +(275,352,o), +(293,278,o), +(274,187,cs), +(251,79,o), +(209,19,o), +(139,19,cs), +(39,19,o), +(30,115,o), +(56,230,c), +(23,230,l), +(-4,102,o), +(13,3,o), +(124,-7,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(224,-8,o), +(284,63,o), +(309,186,cs), +(326,265,o), +(314,342,o), +(252,374,c), +(253,378,l), +(313,395,o), +(358,463,o), +(374,538,cs), +(397,651,o), +(360,738,o), +(255,738,cs), +(178,738,o), +(115,675,o), +(90,539,c), +(120,539,l), +(141,642,o), +(181,709,o), +(252,709,cs), +(335,709,o), +(360,633,o), +(341,541,cs), +(322,451,o), +(276,395,o), +(214,395,cs), +(171,395,l), +(163,363,l), +(199,363,ls), +(278,363,o), +(297,281,o), +(277,189,cs), +(254,80,o), +(212,19,o), +(141,19,cs), +(41,19,o), +(30,115,o), +(57,233,c), +(23,233,l), +(-6,95,o), +(18,-8,o), +(140,-8,cs) +); +} +); +width = 365; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,-9,o), +(420,63,o), +(447,191,cs), +(462,262,o), +(452,336,o), +(379,362,c), +(380,370,l), +(462,390,o), +(506,478,o), +(508,561,cs), +(512,667,o), +(443,738,o), +(311,738,cs), +(186,738,o), +(94,661,o), +(72,516,c), +(248,516,l), +(258,564,o), +(276,587,o), +(296,587,cs), +(332,587,o), +(334,558,o), +(323,507,cs), +(315,466,o), +(295,438,o), +(239,438,cs), +(192,438,l), +(165,306,l), +(218,306,ls), +(273,306,o), +(280,265,o), +(271,217,cs), +(260,164,o), +(243,143,o), +(214,143,cs), +(173,143,o), +(176,189,o), +(186,240,c), +(5,240,l), +(-29,78,o), +(41,-9,o), +(204,-9,cs) +); +} +); +width = 477; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(375,-6,o), +(476,82,o), +(476,213,cs), +(476,285,o), +(428,351,o), +(376,367,c), +(377,371,l), +(472,388,o), +(536,464,o), +(536,558,cs), +(536,661,o), +(459,729,o), +(344,729,cs), +(215,729,o), +(122,661,o), +(104,516,c), +(140,516,l), +(155,623,o), +(221,695,o), +(344,695,cs), +(437,695,o), +(497,639,o), +(497,554,cs), +(497,451,o), +(417,391,o), +(306,391,cs), +(229,391,l), +(223,358,l), +(292,358,ls), +(382,358,o), +(437,298,o), +(437,214,cs), +(437,103,o), +(363,28,o), +(234,28,cs), +(118,28,o), +(50,101,o), +(74,221,c), +(38,221,l), +(15,91,o), +(93,-6,o), +(231,-6,cs) +); +} +); +}; +guides = ( +{ +pos = (298,391); +}, +{ +pos = (296,358); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(482,80,o), +(482,213,cs), +(482,286,o), +(433,353,o), +(381,370,c), +(382,374,l), +(477,394,o), +(543,469,o), +(543,564,cs), +(543,669,o), +(465,738,o), +(348,738,cs), +(227,738,o), +(134,677,o), +(108,542,c), +(145,542,l), +(165,637,o), +(230,704,o), +(348,704,cs), +(442,704,o), +(503,647,o), +(503,560,cs), +(503,456,o), +(422,394,o), +(310,394,cs), +(232,394,l), +(226,360,l), +(296,360,ls), +(386,360,o), +(442,300,o), +(442,214,cs), +(442,101,o), +(368,24,o), +(237,24,cs), +(130,24,o), +(63,86,o), +(71,190,c), +(34,190,l), +(28,73,o), +(105,-10,o), +(234,-10,cs) +); +} +); +width = 556; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(563,80,o), +(563,214,cs), +(563,293,o), +(515,349,o), +(469,365,c), +(471,372,l), +(547,396,o), +(605,459,o), +(605,547,cs), +(605,657,o), +(511,729,o), +(379,729,cs), +(213,729,o), +(91,648,o), +(74,505,c), +(262,505,l), +(268,544,o), +(301,567,o), +(345,567,cs), +(380,567,o), +(406,545,o), +(406,511,cs), +(406,466,o), +(370,436,o), +(315,436,cs), +(243,436,l), +(212,295,l), +(293,295,ls), +(333,295,o), +(367,277,o), +(367,229,cs), +(367,180,o), +(333,152,o), +(280,152,cs), +(237,152,o), +(201,171,o), +(199,219,c), +(12,219,l), +(12,82,o), +(104,-10,o), +(269,-10,cs) +); +} +); +}; +guides = ( +{ +pos = (36,225); +}, +{ +pos = (234,436); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,-10,o), +(570,81,o), +(570,217,cs), +(570,297,o), +(521,353,o), +(475,370,c), +(477,377,l), +(568,412,o), +(611,478,o), +(611,552,cs), +(611,663,o), +(518,738,o), +(380,738,cs), +(216,738,o), +(92,656,o), +(75,511,c), +(265,511,l), +(271,549,o), +(299,574,o), +(347,574,cs), +(389,574,o), +(411,552,o), +(411,517,cs), +(411,472,o), +(375,441,o), +(319,441,cs), +(246,441,l), +(215,299,l), +(297,299,ls), +(337,299,o), +(372,280,o), +(372,232,cs), +(372,182,o), +(337,154,o), +(284,154,cs), +(240,154,o), +(204,173,o), +(201,222,c), +(12,222,l), +(10,84,o), +(105,-10,o), +(272,-10,cs) +); +} +); +width = 609; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(469,-10,o), +(598,71,o), +(603,204,cs), +(606,290,o), +(544,356,o), +(457,370,c), +(459,374,l), +(579,392,o), +(656,456,o), +(660,552,cs), +(664,659,o), +(571,729,o), +(403,729,cs), +(246,729,o), +(127,644,o), +(105,517,c), +(139,517,l), +(162,624,o), +(266,696,o), +(399,696,cs), +(536,696,o), +(625,649,o), +(622,548,cs), +(619,452,o), +(528,391,o), +(376,391,cs), +(283,391,l), +(276,358,l), +(334,358,ls), +(491,358,o), +(568,307,o), +(564,203,cs), +(560,99,o), +(466,24,o), +(306,24,cs), +(155,24,o), +(59,94,o), +(67,218,c), +(31,218,l), +(23,81,o), +(120,-10,o), +(303,-10,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,-10,o), +(611,74,o), +(611,213,cs), +(611,297,o), +(549,360,o), +(463,375,c), +(465,379,l), +(589,397,o), +(668,465,o), +(668,566,cs), +(668,670,o), +(574,738,o), +(401,738,cs), +(230,738,o), +(115,659,o), +(84,523,c), +(124,523,l), +(154,639,o), +(250,705,o), +(399,705,cs), +(541,705,o), +(630,659,o), +(630,560,cs), +(630,460,o), +(538,396,o), +(381,396,cs), +(287,396,l), +(279,362,l), +(338,362,ls), +(493,362,o), +(571,313,o), +(571,214,cs), +(571,103,o), +(476,24,o), +(310,24,cs), +(157,24,o), +(60,95,o), +(68,221,c), +(31,221,l), +(23,82,o), +(122,-10,o), +(307,-10,cs) +); +} +); +width = 661; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(508,-9,o), +(651,73,o), +(656,216,cs), +(659,294,o), +(615,352,o), +(544,365,c), +(545,372,l), +(640,390,o), +(706,450,o), +(709,536,cs), +(714,683,o), +(555,728,o), +(421,728,cs), +(235,728,o), +(94,660,o), +(62,497,c), +(276,497,l), +(292,543,o), +(327,567,o), +(390,567,cs), +(444,567,o), +(479,552,o), +(478,511,cs), +(476,459,o), +(433,436,o), +(359,436,cs), +(271,436,l), +(242,296,l), +(332,296,ls), +(393,296,o), +(436,283,o), +(435,230,cs), +(433,175,o), +(386,153,o), +(312,153,cs), +(250,153,o), +(216,179,o), +(215,230,c), +(-5,230,l), +(-6,86,o), +(73,-9,o), +(298,-9,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(517,-9,o), +(664,76,o), +(664,225,cs), +(664,296,o), +(614,355,o), +(551,370,c), +(552,377,l), +(652,402,o), +(708,473,o), +(708,549,cs), +(708,670,o), +(589,737,o), +(426,737,cs), +(236,737,o), +(92,653,o), +(63,503,c), +(279,503,l), +(295,546,o), +(333,574,o), +(395,574,cs), +(449,574,o), +(484,555,o), +(484,515,cs), +(484,466,o), +(439,441,o), +(363,441,cs), +(274,441,l), +(245,300,l), +(336,300,ls), +(397,300,o), +(440,287,o), +(440,235,cs), +(440,178,o), +(392,155,o), +(320,155,cs), +(258,155,o), +(219,183,o), +(218,233,c), +(-5,233,l), +(-6,88,o), +(104,-9,o), +(305,-9,cs) +); +} +); +width = 689; +} +); +unicode = 51; +userData = { +KernOnName = three; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/three.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/three.numr.glyph new file mode 100644 index 00000000..6c7211ac --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/three.numr.glyph @@ -0,0 +1,562 @@ +{ +color = 6; +glyphname = three.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 266; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 252; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 404; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 398; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 252; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 248; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,332); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 374; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.dnom; +}; +width = 343; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 404; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 398; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 371; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.dnom; +}; +width = 347; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 251; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 266; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 367; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 361; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 400; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 395; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/three.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/three.tf.glyph new file mode 100644 index 00000000..07f50cb1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/three.tf.glyph @@ -0,0 +1,1358 @@ +{ +glyphname = three.tf; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,-10,o), +(464,69,o), +(464,210,cs), +(464,287,o), +(431,352,o), +(361,369,c), +(361,376,l), +(425,397,o), +(453,460,o), +(453,531,cs), +(453,650,o), +(376,730,o), +(242,730,cs), +(107,730,o), +(18,647,o), +(21,499,c), +(200,499,l), +(197,554,o), +(212,580,o), +(235,580,cs), +(267,580,o), +(276,559,o), +(276,507,cs), +(276,468,o), +(259,431,o), +(216,431,cs), +(160,431,l), +(160,300,l), +(222,300,ls), +(259,300,o), +(284,276,o), +(284,219,cs), +(284,163,o), +(269,140,o), +(235,140,cs), +(211,140,o), +(195,162,o), +(195,225,c), +(15,225,l), +(11,84,o), +(72,-10,o), +(233,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,-8,o), +(383,65,o), +(383,195,cs), +(383,286,o), +(352,353,o), +(287,373,c), +(287,377,l), +(343,399,o), +(374,468,o), +(374,547,cs), +(374,660,o), +(315,729,o), +(227,729,cs), +(142,729,o), +(85,661,o), +(89,515,c), +(120,515,l), +(117,627,o), +(147,701,o), +(227,701,cs), +(297,701,o), +(342,643,o), +(342,545,cs), +(342,461,o), +(309,390,o), +(236,390,cs), +(200,390,l), +(200,359,l), +(236,359,ls), +(309,359,o), +(351,296,o), +(351,196,cs), +(351,83,o), +(315,19,o), +(238,19,cs), +(166,19,o), +(117,75,o), +(119,220,c), +(87,220,l), +(86,83,o), +(129,-8,o), +(238,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-8,o), +(643,67,o), +(643,195,cs), +(643,300,o), +(575,363,o), +(466,373,c), +(466,377,l), +(559,391,o), +(627,453,o), +(627,547,cs), +(627,676,o), +(511,729,o), +(358,729,cs), +(200,729,o), +(79,640,o), +(87,504,c), +(122,504,l), +(121,623,o), +(220,695,o), +(357,695,cs), +(493,695,o), +(589,652,o), +(589,546,cs), +(589,454,o), +(527,391,o), +(373,391,cs), +(289,391,l), +(289,358,l), +(385,358,ls), +(515,358,o), +(603,316,o), +(603,196,cs), +(603,94,o), +(519,26,o), +(352,26,cs), +(206,26,o), +(108,91,o), +(108,220,c), +(71,220,l), +(71,85,o), +(172,-8,o), +(352,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(568,-10,o), +(684,78,o), +(684,207,cs), +(684,296,o), +(627,359,o), +(545,369,c), +(545,376,l), +(623,395,o), +(670,454,o), +(670,531,cs), +(670,657,o), +(559,730,o), +(364,730,cs), +(174,730,o), +(53,657,o), +(41,494,c), +(254,494,l), +(263,547,o), +(297,568,o), +(355,568,cs), +(414,568,o), +(448,545,o), +(448,503,cs), +(448,463,o), +(418,436,o), +(358,436,cs), +(262,436,l), +(262,295,l), +(360,295,ls), +(430,295,o), +(462,271,o), +(462,229,cs), +(462,180,o), +(426,152,o), +(355,152,cs), +(294,152,o), +(253,175,o), +(248,228,c), +(30,228,l), +(38,77,o), +(138,-10,o), +(353,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(310,-8,o), +(363,65,o), +(363,195,cs), +(363,286,o), +(332,353,o), +(267,373,c), +(267,377,l), +(323,399,o), +(354,468,o), +(354,547,cs), +(354,660,o), +(295,729,o), +(207,729,cs), +(122,729,o), +(65,661,o), +(69,515,c), +(100,515,l), +(97,627,o), +(127,701,o), +(207,701,cs), +(277,701,o), +(322,643,o), +(322,545,cs), +(322,461,o), +(289,390,o), +(216,390,cs), +(180,390,l), +(180,359,l), +(216,359,ls), +(289,359,o), +(331,296,o), +(331,196,cs), +(331,83,o), +(295,19,o), +(218,19,cs), +(146,19,o), +(97,75,o), +(99,220,c), +(67,220,l), +(66,83,o), +(109,-8,o), +(218,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,-10,o), +(455,69,o), +(455,210,cs), +(455,287,o), +(422,352,o), +(352,369,c), +(352,376,l), +(416,397,o), +(444,460,o), +(444,531,cs), +(444,650,o), +(367,730,o), +(233,730,cs), +(98,730,o), +(9,647,o), +(12,499,c), +(191,499,l), +(188,554,o), +(203,580,o), +(226,580,cs), +(258,580,o), +(267,559,o), +(267,507,cs), +(267,468,o), +(250,431,o), +(207,431,cs), +(151,431,l), +(151,300,l), +(213,300,ls), +(250,300,o), +(275,276,o), +(275,219,cs), +(275,163,o), +(260,140,o), +(226,140,cs), +(202,140,o), +(186,162,o), +(186,225,c), +(6,225,l), +(2,84,o), +(63,-10,o), +(224,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 462; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,-8,o), +(502,73,o), +(502,195,cs), +(502,284,o), +(456,355,o), +(365,374,c), +(365,378,l), +(445,401,o), +(499,463,o), +(499,547,cs), +(499,657,o), +(416,730,o), +(281,730,cs), +(154,730,o), +(63,651,o), +(58,535,c), +(96,535,l), +(102,631,o), +(175,697,o), +(281,697,cs), +(388,697,o), +(460,642,o), +(460,546,cs), +(460,453,o), +(392,391,o), +(271,391,cs), +(220,391,l), +(220,358,l), +(286,358,ls), +(391,358,o), +(462,306,o), +(462,196,cs), +(462,92,o), +(384,26,o), +(265,26,cs), +(157,26,o), +(85,91,o), +(79,187,c), +(41,187,l), +(46,71,o), +(136,-8,o), +(265,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,-10,o), +(549,69,o), +(549,210,cs), +(549,286,o), +(506,350,o), +(433,371,c), +(433,378,l), +(491,401,o), +(533,459,o), +(533,529,cs), +(533,655,o), +(431,730,o), +(282,730,cs), +(118,730,o), +(16,640,o), +(11,499,c), +(194,499,l), +(197,546,o), +(229,572,o), +(275,572,cs), +(321,572,o), +(348,549,o), +(348,506,cs), +(348,464,o), +(320,435,o), +(271,435,cs), +(195,435,l), +(195,297,l), +(278,297,ls), +(331,297,o), +(358,271,o), +(358,226,cs), +(358,180,o), +(328,148,o), +(275,148,cs), +(225,148,o), +(188,176,o), +(188,225,c), +(4,225,l), +(10,84,o), +(107,-10,o), +(276,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(520,-8,o), +(633,67,o), +(633,195,cs), +(633,300,o), +(565,363,o), +(456,373,c), +(456,377,l), +(549,391,o), +(617,453,o), +(617,547,cs), +(617,676,o), +(501,729,o), +(348,729,cs), +(190,729,o), +(69,640,o), +(77,504,c), +(112,504,l), +(111,623,o), +(210,695,o), +(347,695,cs), +(483,695,o), +(579,652,o), +(579,546,cs), +(579,454,o), +(517,391,o), +(363,391,cs), +(279,391,l), +(279,358,l), +(375,358,ls), +(505,358,o), +(593,316,o), +(593,196,cs), +(593,94,o), +(509,26,o), +(342,26,cs), +(196,26,o), +(98,91,o), +(98,220,c), +(61,220,l), +(61,85,o), +(162,-8,o), +(342,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(558,-10,o), +(674,78,o), +(674,207,cs), +(674,296,o), +(617,359,o), +(535,369,c), +(535,376,l), +(613,395,o), +(660,454,o), +(660,531,cs), +(660,657,o), +(549,730,o), +(354,730,cs), +(164,730,o), +(43,657,o), +(31,494,c), +(244,494,l), +(253,547,o), +(287,568,o), +(345,568,cs), +(404,568,o), +(438,545,o), +(438,503,cs), +(438,463,o), +(408,436,o), +(348,436,cs), +(252,436,l), +(252,295,l), +(350,295,ls), +(420,295,o), +(452,271,o), +(452,229,cs), +(452,180,o), +(416,152,o), +(345,152,cs), +(284,152,o), +(243,175,o), +(238,228,c), +(20,228,l), +(28,77,o), +(128,-10,o), +(343,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-8,o), +(515,73,o), +(515,195,cs), +(515,284,o), +(469,355,o), +(380,374,c), +(380,378,l), +(458,401,o), +(512,463,o), +(512,547,cs), +(512,657,o), +(431,730,o), +(298,730,cs), +(173,730,o), +(84,651,o), +(79,535,c), +(117,535,l), +(123,631,o), +(194,697,o), +(298,697,cs), +(403,697,o), +(473,642,o), +(473,546,cs), +(473,453,o), +(407,391,o), +(288,391,cs), +(239,391,l), +(239,358,l), +(303,358,ls), +(406,358,o), +(475,306,o), +(475,196,cs), +(475,92,o), +(399,26,o), +(282,26,cs), +(176,26,o), +(106,91,o), +(100,187,c), +(62,187,l), +(67,71,o), +(155,-8,o), +(282,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-10,o), +(553,69,o), +(553,210,cs), +(553,286,o), +(512,350,o), +(442,371,c), +(442,378,l), +(497,401,o), +(538,459,o), +(538,529,cs), +(538,655,o), +(439,730,o), +(294,730,cs), +(135,730,o), +(36,640,o), +(31,499,c), +(212,499,l), +(215,546,o), +(244,572,o), +(287,572,cs), +(330,572,o), +(354,549,o), +(354,506,cs), +(354,464,o), +(329,435,o), +(283,435,cs), +(209,435,l), +(209,297,l), +(290,297,ls), +(340,297,o), +(364,271,o), +(364,226,cs), +(364,180,o), +(337,148,o), +(287,148,cs), +(241,148,o), +(206,176,o), +(206,225,c), +(24,225,l), +(30,84,o), +(124,-10,o), +(288,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 581; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(276,-15,o), +(341,56,o), +(367,183,cs), +(383,259,o), +(378,339,o), +(310,369,c), +(311,373,l), +(372,391,o), +(416,458,o), +(431,531,cs), +(454,643,o), +(417,729,o), +(312,729,cs), +(236,729,o), +(173,667,o), +(148,532,c), +(178,532,l), +(198,634,o), +(238,700,o), +(309,700,cs), +(394,700,o), +(418,625,o), +(399,534,cs), +(380,445,o), +(333,384,o), +(264,390,cs), +(230,393,l), +(222,362,l), +(258,359,ls), +(337,352,o), +(355,278,o), +(336,186,cs), +(313,79,o), +(271,19,o), +(200,19,cs), +(98,19,o), +(89,115,o), +(115,230,c), +(82,230,l), +(55,102,o), +(72,3,o), +(185,-7,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,-8,o), +(340,62,o), +(365,184,cs), +(382,262,o), +(370,338,o), +(309,369,c), +(310,373,l), +(369,390,o), +(414,457,o), +(429,531,cs), +(452,643,o), +(416,729,o), +(312,729,cs), +(236,729,o), +(174,667,o), +(149,532,c), +(179,532,l), +(199,634,o), +(239,700,o), +(309,700,cs), +(391,700,o), +(416,625,o), +(397,534,cs), +(378,445,o), +(333,390,o), +(271,390,cs), +(229,390,l), +(221,359,l), +(257,359,ls), +(335,359,o), +(353,278,o), +(334,187,cs), +(311,79,o), +(269,19,o), +(199,19,cs), +(100,19,o), +(90,114,o), +(116,230,c), +(83,230,l), +(54,94,o), +(78,-8,o), +(198,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,-9,o), +(420,62,o), +(446,188,cs), +(461,259,o), +(451,332,o), +(378,358,c), +(379,365,l), +(461,385,o), +(504,471,o), +(507,554,cs), +(510,660,o), +(443,729,o), +(311,729,cs), +(188,729,o), +(96,653,o), +(74,510,c), +(248,510,l), +(258,554,o), +(275,580,o), +(296,580,cs), +(333,580,o), +(334,550,o), +(324,502,cs), +(315,459,o), +(295,433,o), +(240,433,cs), +(194,433,l), +(167,302,l), +(219,302,ls), +(275,302,o), +(282,262,o), +(272,212,cs), +(262,162,o), +(244,141,o), +(215,141,cs), +(175,141,o), +(177,187,o), +(187,237,c), +(8,237,l), +(-26,77,o), +(44,-9,o), +(205,-9,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(404,-10,o), +(506,79,o), +(506,209,cs), +(506,281,o), +(457,349,o), +(403,365,c), +(404,369,l), +(500,389,o), +(566,463,o), +(566,556,cs), +(566,660,o), +(487,729,o), +(370,729,cs), +(248,729,o), +(154,669,o), +(129,535,c), +(165,535,l), +(185,629,o), +(250,695,o), +(370,695,cs), +(465,695,o), +(527,639,o), +(527,552,cs), +(527,450,o), +(446,389,o), +(332,389,cs), +(254,389,l), +(248,356,l), +(318,356,ls), +(408,356,o), +(467,297,o), +(467,210,cs), +(467,100,o), +(392,24,o), +(260,24,cs), +(153,24,o), +(84,85,o), +(92,188,c), +(56,188,l), +(50,72,o), +(129,-10,o), +(257,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 85; +}; +}; +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,-10,o), +(558,80,o), +(558,215,cs), +(558,293,o), +(511,349,o), +(466,365,c), +(468,372,l), +(543,396,o), +(600,460,o), +(600,548,cs), +(600,657,o), +(508,729,o), +(378,729,cs), +(214,729,o), +(93,648,o), +(76,505,c), +(263,505,l), +(269,544,o), +(301,567,o), +(344,567,cs), +(377,567,o), +(402,545,o), +(402,511,cs), +(402,466,o), +(366,436,o), +(313,436,cs), +(242,436,l), +(211,295,l), +(291,295,ls), +(330,295,o), +(363,277,o), +(363,230,cs), +(363,182,o), +(331,152,o), +(278,152,cs), +(236,152,o), +(202,171,o), +(200,219,c), +(14,219,l), +(14,82,o), +(105,-10,o), +(267,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(500,-10,o), +(628,75,o), +(628,214,cs), +(628,305,o), +(568,359,o), +(485,370,c), +(487,374,l), +(604,386,o), +(685,455,o), +(685,561,cs), +(685,665,o), +(596,729,o), +(432,729,cs), +(279,729,o), +(161,650,o), +(138,517,c), +(172,517,l), +(196,631,o), +(298,696,o), +(428,696,cs), +(573,696,o), +(647,647,o), +(647,554,cs), +(647,458,o), +(560,391,o), +(404,391,cs), +(313,391,l), +(306,358,l), +(393,358,ls), +(521,358,o), +(588,310,o), +(588,212,cs), +(588,106,o), +(497,24,o), +(334,24,cs), +(183,24,o), +(92,95,o), +(100,218,c), +(64,218,l), +(56,81,o), +(151,-10,o), +(331,-10,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(525,-9,o), +(666,77,o), +(666,224,cs), +(666,307,o), +(621,353,o), +(560,365,c), +(561,372,l), +(660,392,o), +(720,458,o), +(720,544,cs), +(720,682,o), +(571,728,o), +(440,728,cs), +(259,728,o), +(121,660,o), +(89,497,c), +(302,497,l), +(318,543,o), +(350,567,o), +(409,567,cs), +(452,567,o), +(490,556,o), +(490,514,cs), +(490,464,o), +(454,436,o), +(377,436,cs), +(292,436,l), +(263,296,l), +(350,296,ls), +(411,296,o), +(446,284,o), +(446,230,cs), +(446,176,o), +(398,153,o), +(330,153,cs), +(272,153,o), +(242,179,o), +(241,230,c), +(22,230,l), +(20,86,o), +(97,-9,o), +(316,-9,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 80; +monoWidth = 700; +}; +}; +width = 720; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/threeeighths.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/threeeighths.glyph new file mode 100644 index 00000000..f1a8a78b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/threeeighths.glyph @@ -0,0 +1,350 @@ +{ +color = 6; +glyphname = threeeighths; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (254,0); +ref = fraction; +}, +{ +pos = (373,0); +ref = eight.dnom; +} +); +width = 634; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (247,0); +ref = fraction; +}, +{ +pos = (298,0); +ref = eight.dnom; +} +); +width = 569; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (404,0); +ref = fraction; +}, +{ +pos = (505,0); +ref = eight.dnom; +} +); +width = 920; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (383,0); +ref = fraction; +}, +{ +pos = (506,0); +ref = eight.dnom; +} +); +width = 913; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (252,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (292,0); +ref = eight.dnom; +} +); +width = 523; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (236,0); +ref = fraction; +}, +{ +pos = (343,0); +ref = eight.dnom; +} +); +width = 586; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (359,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (429,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 780; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (335,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (470,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 809; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (404,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (494,0); +ref = eight.dnom; +} +); +width = 889; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (391,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (510,0); +ref = eight.dnom; +} +); +width = 897; +}, +{ +layerId = m019; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (371,0); +ref = fraction; +}, +{ +pos = (480,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 868; +}, +{ +layerId = m020; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (334,0); +ref = fraction; +}, +{ +pos = (463,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 815; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (249,0); +ref = fraction; +}, +{ +pos = (309,0); +ref = eight.dnom; +} +); +width = 580; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (260,0); +ref = fraction; +}, +{ +pos = (394,0); +ref = eight.dnom; +} +); +width = 653; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (367,0); +ref = fraction; +}, +{ +pos = (487,0); +ref = eight.dnom; +} +); +width = 878; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (359,0); +ref = fraction; +}, +{ +pos = (526,0); +ref = eight.dnom; +} +); +width = 899; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (406,0); +ref = fraction; +}, +{ +pos = (518,0); +ref = eight.dnom; +} +); +width = 932; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (386,0); +ref = fraction; +}, +{ +pos = (526,0); +ref = eight.dnom; +} +); +width = 931; +} +); +unicode = 8540; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/threeinferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/threeinferior.glyph new file mode 100644 index 00000000..74bcd388 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/threeinferior.glyph @@ -0,0 +1,1439 @@ +{ +glyphname = threeinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (146,177); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(226,-46,o), +(282,2,o), +(282,86,cs), +(282,133,o), +(262,171,o), +(220,181,c), +(220,186,l), +(259,198,o), +(275,237,o), +(275,278,cs), +(275,350,o), +(229,398,o), +(148,398,cs), +(66,398,o), +(13,348,o), +(15,259,c), +(124,259,l), +(122,291,o), +(131,306,o), +(144,306,cs), +(162,306,o), +(167,295,o), +(167,264,cs), +(167,240,o), +(157,219,o), +(132,219,cs), +(98,219,l), +(98,139,l), +(136,139,ls), +(158,139,o), +(172,125,o), +(172,92,cs), +(172,58,o), +(163,46,o), +(144,46,cs), +(130,46,o), +(121,59,o), +(121,95,c), +(11,95,l), +(9,15,o), +(41,-46,o), +(143,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 295; +}, +{ +anchors = ( +{ +name = _center; +pos = (127,177); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(187,-45,o), +(221,0,o), +(221,78,cs), +(221,133,o), +(202,172,o), +(163,184,c), +(163,186,l), +(197,199,o), +(215,241,o), +(215,287,cs), +(215,355,o), +(179,397,o), +(124,397,cs), +(70,397,o), +(33,356,o), +(35,268,c), +(65,268,l), +(63,331,o), +(80,372,o), +(123,372,cs), +(162,372,o), +(186,339,o), +(186,284,cs), +(186,237,o), +(167,197,o), +(126,197,cs), +(104,197,l), +(104,171,l), +(126,171,ls), +(168,171,o), +(191,135,o), +(191,79,cs), +(191,15,o), +(171,-20,o), +(128,-20,cs), +(89,-20,o), +(63,11,o), +(64,92,c), +(34,92,l), +(33,10,o), +(60,-45,o), +(128,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 265; +}, +{ +anchors = ( +{ +name = _center; +pos = (211,173); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-45,o), +(389,1,o), +(389,78,cs), +(389,143,o), +(344,178,o), +(283,183,c), +(283,186,l), +(339,195,o), +(379,232,o), +(379,287,cs), +(379,364,o), +(309,397,o), +(211,397,cs), +(112,397,o), +(38,345,o), +(41,262,c), +(76,262,l), +(77,328,o), +(132,367,o), +(211,367,cs), +(287,367,o), +(342,343,o), +(342,284,cs), +(342,233,o), +(306,198,o), +(219,198,cs), +(167,198,l), +(167,170,l), +(226,170,ls), +(301,170,o), +(350,146,o), +(350,80,cs), +(350,23,o), +(302,-14,o), +(207,-14,cs), +(125,-14,o), +(69,21,o), +(69,93,c), +(32,93,l), +(33,7,o), +(98,-45,o), +(207,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 429; +}, +{ +anchors = ( +{ +name = _center; +pos = (216,171); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(350,-46,o), +(422,8,o), +(422,85,cs), +(422,138,o), +(387,175,o), +(338,181,c), +(338,186,l), +(387,198,o), +(413,234,o), +(413,277,cs), +(413,352,o), +(345,398,o), +(221,398,cs), +(101,398,o), +(25,356,o), +(16,256,c), +(161,256,l), +(167,279,o), +(180,290,o), +(215,290,cs), +(245,290,o), +(262,278,o), +(262,258,cs), +(262,239,o), +(247,225,o), +(215,225,cs), +(155,225,l), +(155,132,l), +(216,132,ls), +(254,132,o), +(271,119,o), +(271,100,cs), +(271,76,o), +(252,62,o), +(215,62,cs), +(182,62,o), +(162,72,o), +(158,97,c), +(10,97,l), +(16,1,o), +(83,-46,o), +(213,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 439; +}, +{ +anchors = ( +{ +name = _center; +pos = (107,177); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,-45,o), +(201,0,o), +(201,78,cs), +(201,133,o), +(182,172,o), +(143,184,c), +(143,186,l), +(177,199,o), +(195,241,o), +(195,287,cs), +(195,355,o), +(159,397,o), +(104,397,cs), +(50,397,o), +(13,356,o), +(15,268,c), +(45,268,l), +(43,331,o), +(60,372,o), +(103,372,cs), +(142,372,o), +(166,339,o), +(166,284,cs), +(166,237,o), +(147,197,o), +(106,197,cs), +(84,197,l), +(84,171,l), +(106,171,ls), +(148,171,o), +(171,135,o), +(171,79,cs), +(171,15,o), +(151,-20,o), +(108,-20,cs), +(69,-20,o), +(43,11,o), +(44,92,c), +(14,92,l), +(13,10,o), +(40,-45,o), +(108,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 225; +}, +{ +anchors = ( +{ +name = _center; +pos = (139,177); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(219,-46,o), +(275,2,o), +(275,86,cs), +(275,133,o), +(255,171,o), +(213,181,c), +(213,186,l), +(252,198,o), +(268,237,o), +(268,278,cs), +(268,350,o), +(222,398,o), +(141,398,cs), +(59,398,o), +(6,348,o), +(8,259,c), +(117,259,l), +(115,291,o), +(124,306,o), +(137,306,cs), +(155,306,o), +(160,295,o), +(160,264,cs), +(160,240,o), +(150,219,o), +(125,219,cs), +(91,219,l), +(91,139,l), +(129,139,ls), +(151,139,o), +(165,125,o), +(165,92,cs), +(165,58,o), +(156,46,o), +(137,46,cs), +(123,46,o), +(114,59,o), +(114,95,c), +(4,95,l), +(2,15,o), +(34,-46,o), +(136,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 279; +}, +{ +anchors = ( +{ +name = _center; +pos = (168,174); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,-45,o), +(309,4,o), +(309,78,cs), +(309,133,o), +(279,173,o), +(229,184,c), +(229,187,l), +(273,200,o), +(306,236,o), +(306,287,cs), +(306,354,o), +(255,398,o), +(173,398,cs), +(97,398,o), +(40,353,o), +(36,278,c), +(71,278,l), +(74,332,o), +(114,368,o), +(173,368,cs), +(231,368,o), +(271,338,o), +(271,284,cs), +(271,233,o), +(234,198,o), +(167,198,cs), +(135,198,l), +(135,170,l), +(176,170,ls), +(234,170,o), +(273,141,o), +(273,80,cs), +(273,22,o), +(230,-15,o), +(164,-15,cs), +(108,-15,o), +(65,18,o), +(61,75,c), +(27,75,l), +(30,4,o), +(84,-45,o), +(164,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 353; +}, +{ +anchors = ( +{ +name = _center; +pos = (174,174); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,-46,o), +(344,1,o), +(344,87,cs), +(344,131,o), +(319,169,o), +(274,182,c), +(274,187,l), +(307,200,o), +(333,234,o), +(333,276,cs), +(333,353,o), +(269,398,o), +(177,398,cs), +(74,398,o), +(9,343,o), +(6,256,c), +(130,256,l), +(131,278,o), +(146,292,o), +(172,292,cs), +(195,292,o), +(208,281,o), +(208,260,cs), +(208,240,o), +(194,225,o), +(169,225,cs), +(121,225,l), +(121,133,l), +(173,133,ls), +(201,133,o), +(215,120,o), +(215,98,cs), +(215,76,o), +(200,59,o), +(173,59,cs), +(147,59,o), +(127,73,o), +(127,98,c), +(3,98,l), +(7,11,o), +(67,-46,o), +(173,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 352; +}, +{ +anchors = ( +{ +name = _center; +pos = (201,173); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,-45,o), +(379,1,o), +(379,78,cs), +(379,143,o), +(334,178,o), +(273,183,c), +(273,186,l), +(329,195,o), +(369,232,o), +(369,287,cs), +(369,364,o), +(299,397,o), +(201,397,cs), +(102,397,o), +(28,345,o), +(31,262,c), +(66,262,l), +(67,328,o), +(122,367,o), +(201,367,cs), +(277,367,o), +(332,343,o), +(332,284,cs), +(332,233,o), +(296,198,o), +(209,198,cs), +(157,198,l), +(157,170,l), +(216,170,ls), +(291,170,o), +(340,146,o), +(340,80,cs), +(340,23,o), +(292,-14,o), +(197,-14,cs), +(115,-14,o), +(59,21,o), +(59,93,c), +(22,93,l), +(23,7,o), +(88,-45,o), +(197,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 409; +}, +{ +anchors = ( +{ +name = _center; +pos = (206,171); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-46,o), +(412,8,o), +(412,85,cs), +(412,138,o), +(377,175,o), +(328,181,c), +(328,186,l), +(377,198,o), +(403,234,o), +(403,277,cs), +(403,352,o), +(335,398,o), +(211,398,cs), +(91,398,o), +(15,356,o), +(6,256,c), +(151,256,l), +(157,279,o), +(170,290,o), +(205,290,cs), +(235,290,o), +(252,278,o), +(252,258,cs), +(252,239,o), +(237,225,o), +(205,225,cs), +(145,225,l), +(145,132,l), +(206,132,ls), +(244,132,o), +(261,119,o), +(261,100,cs), +(261,76,o), +(242,62,o), +(205,62,cs), +(172,62,o), +(152,72,o), +(148,97,c), +(0,97,l), +(6,1,o), +(73,-46,o), +(203,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 419; +}, +{ +anchors = ( +{ +name = _center; +pos = (187,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(268,-45,o), +(326,4,o), +(326,78,cs), +(326,133,o), +(296,173,o), +(248,184,c), +(248,187,l), +(290,200,o), +(323,236,o), +(323,287,cs), +(323,354,o), +(272,398,o), +(192,398,cs), +(118,398,o), +(61,353,o), +(57,278,c), +(92,278,l), +(95,332,o), +(135,368,o), +(192,368,cs), +(249,368,o), +(288,338,o), +(288,284,cs), +(288,233,o), +(251,198,o), +(186,198,cs), +(154,198,l), +(154,170,l), +(195,170,ls), +(251,170,o), +(290,141,o), +(290,80,cs), +(290,22,o), +(248,-15,o), +(183,-15,cs), +(129,-15,o), +(86,18,o), +(82,75,c), +(50,75,l), +(52,4,o), +(105,-45,o), +(183,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 390; +}, +{ +anchors = ( +{ +name = _center; +pos = (187,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(280,-46,o), +(350,1,o), +(350,87,cs), +(350,131,o), +(327,169,o), +(284,182,c), +(284,187,l), +(315,200,o), +(340,234,o), +(340,276,cs), +(340,353,o), +(278,398,o), +(190,398,cs), +(90,398,o), +(29,343,o), +(26,256,c), +(148,256,l), +(149,278,o), +(161,292,o), +(185,292,cs), +(205,292,o), +(216,281,o), +(216,260,cs), +(216,240,o), +(204,225,o), +(182,225,cs), +(136,225,l), +(136,133,l), +(186,133,ls), +(211,133,o), +(223,120,o), +(223,98,cs), +(223,76,o), +(210,59,o), +(186,59,cs), +(163,59,o), +(146,73,o), +(146,98,c), +(23,98,l), +(27,11,o), +(84,-46,o), +(186,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 377; +}, +{ +anchors = ( +{ +name = _center; +pos = (107,177); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(130,-44,o), +(165,0,o), +(179,70,cs), +(189,117,o), +(186,163,o), +(145,181,c), +(145,183,l), +(181,193,o), +(209,235,o), +(217,278,cs), +(229,342,o), +(209,397,o), +(142,397,cs), +(93,397,o), +(53,359,o), +(39,278,c), +(67,278,l), +(78,335,o), +(101,371,o), +(139,371,cs), +(186,371,o), +(198,329,o), +(187,276,cs), +(177,229,o), +(150,193,o), +(111,197,cs), +(90,199,l), +(84,173,l), +(106,171,ls), +(152,167,o), +(161,125,o), +(150,72,cs), +(137,11,o), +(112,-20,o), +(75,-20,cs), +(19,-20,o), +(15,32,o), +(29,99,c), +(-1,99,l), +(-17,21,o), +(-3,-44,o), +(72,-44,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 262; +}, +{ +anchors = ( +{ +name = _center; +pos = (123,177); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,-45,o), +(224,-3,o), +(240,74,cs), +(250,123,o), +(238,161,o), +(199,175,c), +(200,179,l), +(245,191,o), +(274,234,o), +(276,292,cs), +(278,361,o), +(233,397,o), +(158,397,cs), +(85,397,o), +(29,353,o), +(16,266,c), +(122,266,l), +(128,294,o), +(139,306,o), +(149,306,cs), +(172,306,o), +(170,288,o), +(164,259,cs), +(159,236,o), +(149,220,o), +(115,220,cs), +(88,220,l), +(71,140,l), +(103,140,ls), +(133,140,o), +(140,119,o), +(134,89,cs), +(128,58,o), +(117,46,o), +(101,46,cs), +(79,46,o), +(79,70,o), +(85,102,c), +(-24,102,l), +(-44,10,o), +(-6,-45,o), +(95,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 294; +}, +{ +anchors = ( +{ +name = _center; +pos = (167,177); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,-46,o), +(287,7,o), +(287,86,cs), +(287,130,o), +(258,169,o), +(227,179,c), +(228,182,l), +(283,194,o), +(321,238,o), +(321,293,cs), +(321,356,o), +(274,397,o), +(203,397,cs), +(129,397,o), +(70,360,o), +(56,279,c), +(89,279,l), +(100,330,o), +(136,367,o), +(201,367,cs), +(252,367,o), +(285,336,o), +(285,289,cs), +(285,232,o), +(241,197,o), +(179,197,cs), +(133,197,l), +(127,169,l), +(170,169,ls), +(219,169,o), +(251,136,o), +(251,88,cs), +(251,27,o), +(210,-16,o), +(138,-16,cs), +(79,-16,o), +(42,19,o), +(46,75,c), +(13,75,l), +(10,4,o), +(57,-46,o), +(136,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 386; +}, +{ +anchors = ( +{ +name = _center; +pos = (169,177); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,-46,o), +(327,8,o), +(327,89,cs), +(327,134,o), +(301,168,o), +(271,179,c), +(272,183,l), +(316,198,o), +(351,235,o), +(351,287,cs), +(351,354,o), +(292,397,o), +(212,397,cs), +(109,397,o), +(33,347,o), +(23,260,c), +(149,260,l), +(152,281,o), +(171,289,o), +(189,289,cs), +(204,289,o), +(217,279,o), +(217,263,cs), +(217,241,o), +(199,226,o), +(171,226,cs), +(129,226,l), +(108,132,l), +(158,132,ls), +(176,132,o), +(196,125,o), +(196,99,cs), +(196,75,o), +(179,62,o), +(154,62,cs), +(132,62,o), +(114,71,o), +(112,94,c), +(-13,94,l), +(-12,6,o), +(48,-46,o), +(146,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 393; +}, +{ +anchors = ( +{ +name = _center; +pos = (189,177); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,-46,o), +(344,3,o), +(347,83,cs), +(349,141,o), +(316,174,o), +(262,182,c), +(263,184,l), +(329,191,o), +(379,231,o), +(381,290,cs), +(384,358,o), +(325,397,o), +(224,397,cs), +(130,397,o), +(55,351,o), +(41,269,c), +(75,269,l), +(89,332,o), +(147,367,o), +(220,367,cs), +(303,367,o), +(345,340,o), +(343,285,cs), +(341,229,o), +(286,198,o), +(205,198,cs), +(150,198,l), +(144,170,l), +(197,170,ls), +(273,170,o), +(311,142,o), +(309,84,cs), +(307,27,o), +(256,-15,o), +(165,-15,cs), +(80,-15,o), +(29,24,o), +(33,92,c), +(-3,92,l), +(-7,9,o), +(49,-46,o), +(163,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 425; +}, +{ +anchors = ( +{ +name = _center; +pos = (191,177); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-45,o), +(374,4,o), +(377,90,cs), +(379,136,o), +(355,170,o), +(313,179,c), +(313,183,l), +(366,193,o), +(407,230,o), +(409,280,cs), +(412,373,o), +(307,397,o), +(233,397,cs), +(115,397,o), +(32,354,o), +(13,256,c), +(156,256,l), +(165,278,o), +(181,289,o), +(212,289,cs), +(242,289,o), +(254,283,o), +(253,258,cs), +(252,236,o), +(227,225,o), +(193,225,cs), +(141,225,l), +(121,132,l), +(176,132,ls), +(205,132,o), +(229,128,o), +(229,100,cs), +(229,72,o), +(204,63,o), +(167,63,cs), +(136,63,o), +(122,76,o), +(121,99,c), +(-27,99,l), +(-27,12,o), +(19,-45,o), +(157,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 434; +} +); +unicode = 8323; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/threequarters.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/threequarters.glyph new file mode 100644 index 00000000..91f16c11 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/threequarters.glyph @@ -0,0 +1,350 @@ +{ +color = 6; +glyphname = threequarters; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (254,0); +ref = fraction; +}, +{ +pos = (338,0); +ref = four.dnom; +} +); +width = 621; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (247,0); +ref = fraction; +}, +{ +pos = (283,0); +ref = four.dnom; +} +); +width = 525; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (404,0); +ref = fraction; +}, +{ +pos = (455,0); +ref = four.dnom; +} +); +width = 863; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (383,0); +ref = fraction; +}, +{ +pos = (459,0); +ref = four.dnom; +} +); +width = 859; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (252,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (271,0); +ref = four.dnom; +} +); +width = 483; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (236,0); +ref = fraction; +}, +{ +pos = (308,0); +ref = four.dnom; +} +); +width = 577; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (359,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (392,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 708; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (335,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (442,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 802; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (404,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (444,0); +ref = four.dnom; +} +); +width = 832; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = three.numr; +}, +{ +alignment = -1; +pos = (391,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (468,0); +ref = four.dnom; +} +); +width = 858; +}, +{ +layerId = m019; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (371,0); +ref = fraction; +}, +{ +pos = (446,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 809; +}, +{ +layerId = m020; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (334,0); +ref = fraction; +}, +{ +pos = (436,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 801; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (249,0); +ref = fraction; +}, +{ +pos = (292,0); +ref = four.dnom; +} +); +width = 533; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (260,0); +ref = fraction; +}, +{ +pos = (359,0); +ref = four.dnom; +} +); +width = 640; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (367,0); +ref = fraction; +}, +{ +pos = (456,0); +ref = four.dnom; +} +); +width = 821; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (359,0); +ref = fraction; +}, +{ +pos = (490,0); +ref = four.dnom; +} +); +width = 872; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (406,0); +ref = fraction; +}, +{ +pos = (459,0); +ref = four.dnom; +} +); +width = 844; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (386,0); +ref = fraction; +}, +{ +pos = (480,0); +ref = four.dnom; +} +); +width = 871; +} +); +unicode = 190; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/threesuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/threesuperior.glyph new file mode 100644 index 00000000..57a7a7f6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/threesuperior.glyph @@ -0,0 +1,564 @@ +{ +color = 6; +glyphname = threesuperior; +kernLeft = KO_threesuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 295; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 265; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 429; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 439; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 265; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 279; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = threeinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = threeinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 393; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = threeinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = threeinferior; +}; +width = 374; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 429; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 439; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = threeinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = threeinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 390; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = threeinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = threeinferior; +}; +width = 377; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 262; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 294; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 386; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 393; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 425; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 434; +} +); +unicode = 179; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/tilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/tilde.glyph new file mode 100644 index 00000000..d17d6b02 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/tilde.glyph @@ -0,0 +1,187 @@ +{ +color = 6; +glyphname = tilde; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 281; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 461; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 419; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 524; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = tildecomb; +} +); +width = 281; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = tildecomb; +} +); +width = 461; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = tildecomb; +} +); +width = 383; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = tildecomb; +} +); +width = 494; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = tildecomb; +} +); +width = 419; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = tildecomb; +} +); +width = 524; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 380; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 496; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 280; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 459; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 383; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 513; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 419; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 513; +} +); +unicode = 732; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/tildecomb.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/tildecomb.glyph new file mode 100644 index 00000000..ceab500e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/tildecomb.glyph @@ -0,0 +1,941 @@ +{ +glyphname = tildecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (140,672); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(199,777,o), +(221,786,o), +(241,824,c), +(223,837,l), +(213,818,o), +(200,807,o), +(181,807,cs), +(153,807,o), +(130,835,o), +(100,835,cs), +(78,835,o), +(60,821,o), +(40,786,c), +(57,775,l), +(70,797,o), +(84,804,o), +(98,804,cs), +(126,804,o), +(144,777,o), +(178,777,cs) +); +} +); +width = 281; +}, +{ +anchors = ( +{ +name = _top; +pos = (232,679); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(353,730,o), +(396,756,o), +(424,853,c), +(348,900,l), +(335,871,o), +(322,860,o), +(292,860,cs), +(245,860,o), +(224,901,o), +(159,901,cs), +(109,901,o), +(65,877,o), +(37,778,c), +(113,731,l), +(128,758,o), +(145,770,o), +(174,770,cs), +(217,770,o), +(238,730,o), +(306,730,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,745,o), +(394,765,o), +(421,843,c), +(345,882,l), +(334,858,o), +(320,850,o), +(291,850,cs), +(247,850,o), +(224,878,o), +(160,878,cs), +(110,878,o), +(67,859,o), +(40,779,c), +(116,740,l), +(130,763,o), +(146,773,o), +(176,773,cs), +(213,773,o), +(238,745,o), +(307,745,cs) +); +} +); +width = 461; +}, +{ +anchors = ( +{ +name = _top; +pos = (207,672); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,776,o), +(352,790,o), +(379,825,c), +(357,838,l), +(338,817,o), +(313,808,o), +(288,808,cs), +(238,808,o), +(181,836,o), +(135,836,cs), +(92,836,o), +(69,822,o), +(40,786,c), +(61,774,l), +(81,797,o), +(102,803,o), +(127,803,cs), +(177,803,o), +(212,776,o), +(280,776,cs) +); +} +); +width = 419; +}, +{ +anchors = ( +{ +name = _top; +pos = (264,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(133,894,o), +(73,859,o), +(40,771,c), +(124,724,l), +(144,751,o), +(156,764,o), +(192,764,cs), +(248,764,o), +(265,726,o), +(334,726,cs), +(382,726,o), +(446,752,o), +(484,843,c), +(402,893,l), +(383,874,o), +(363,854,o), +(330,854,cs), +(276,854,o), +(252,894,o), +(191,894,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(382,726,o), +(446,752,o), +(484,849,c), +(400,896,l), +(380,869,o), +(368,856,o), +(332,856,cs), +(276,856,o), +(259,894,o), +(190,894,cs), +(142,894,o), +(78,868,o), +(40,771,c), +(124,724,l), +(144,751,o), +(156,764,o), +(192,764,cs), +(248,764,o), +(265,726,o), +(334,726,cs) +); +} +); +width = 524; +}, +{ +anchors = ( +{ +name = _top; +pos = (120,672); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,777,o), +(201,786,o), +(221,824,c), +(203,837,l), +(193,818,o), +(180,807,o), +(161,807,cs), +(133,807,o), +(110,835,o), +(80,835,cs), +(58,835,o), +(40,821,o), +(20,786,c), +(37,775,l), +(50,797,o), +(64,804,o), +(78,804,cs), +(106,804,o), +(124,777,o), +(158,777,cs) +); +} +); +width = 241; +}, +{ +anchors = ( +{ +name = _top; +pos = (222,679); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(353,730,o), +(396,756,o), +(424,853,c), +(348,900,l), +(335,871,o), +(322,860,o), +(292,860,cs), +(245,860,o), +(224,901,o), +(159,901,cs), +(109,901,o), +(65,877,o), +(37,778,c), +(113,731,l), +(128,758,o), +(145,770,o), +(174,770,cs), +(217,770,o), +(238,730,o), +(306,730,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,745,o), +(384,765,o), +(411,843,c), +(335,882,l), +(324,858,o), +(310,850,o), +(281,850,cs), +(237,850,o), +(214,878,o), +(150,878,cs), +(100,878,o), +(57,859,o), +(30,779,c), +(106,740,l), +(120,763,o), +(136,773,o), +(166,773,cs), +(203,773,o), +(228,745,o), +(297,745,cs) +); +} +); +width = 441; +}, +{ +anchors = ( +{ +name = _top; +pos = (169,672); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,776,o), +(299,790,o), +(323,825,c), +(302,838,l), +(286,817,o), +(264,808,o), +(242,808,cs), +(196,807,o), +(147,836,o), +(106,836,cs), +(67,836,o), +(45,822,o), +(20,786,c), +(40,774,l), +(57,796,o), +(74,803,o), +(99,803,cs), +(142,803,o), +(174,776,o), +(234,776,cs) +); +} +); +width = 343; +}, +{ +anchors = ( +{ +name = _top; +pos = (237,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(365,730,o), +(423,756,o), +(456,853,c), +(380,900,l), +(366,877,o), +(352,860,o), +(319,860,cs), +(268,860,o), +(253,898,o), +(191,898,cs), +(148,898,o), +(90,872,o), +(57,775,c), +(133,728,l), +(147,751,o), +(161,768,o), +(194,768,cs), +(245,768,o), +(260,730,o), +(322,730,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,736,o), +(418,759,o), +(453,846,c), +(369,894,l), +(351,868,o), +(328,857,o), +(303,857,cs), +(259,857,o), +(214,892,o), +(155,892,cs), +(107,892,o), +(61,869,o), +(19,782,c), +(102,734,l), +(117,755,o), +(137,771,o), +(167,771,cs), +(212,771,o), +(248,736,o), +(314,736,cs) +); +} +); +width = 472; +}, +{ +anchors = ( +{ +name = _top; +pos = (197,672); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,776,o), +(342,790,o), +(369,825,c), +(347,838,l), +(328,817,o), +(303,808,o), +(278,808,cs), +(228,808,o), +(171,836,o), +(125,836,cs), +(82,836,o), +(59,822,o), +(30,786,c), +(51,774,l), +(71,797,o), +(92,803,o), +(117,803,cs), +(167,803,o), +(202,776,o), +(270,776,cs) +); +} +); +width = 399; +}, +{ +anchors = ( +{ +name = _top; +pos = (254,673); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(133,894,o), +(73,859,o), +(40,771,c), +(124,724,l), +(144,751,o), +(156,764,o), +(192,764,cs), +(248,764,o), +(265,726,o), +(334,726,cs), +(382,726,o), +(446,752,o), +(484,843,c), +(402,893,l), +(383,874,o), +(363,854,o), +(330,854,cs), +(276,854,o), +(252,894,o), +(191,894,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(372,726,o), +(436,752,o), +(474,849,c), +(390,896,l), +(370,869,o), +(358,856,o), +(322,856,cs), +(266,856,o), +(249,894,o), +(180,894,cs), +(132,894,o), +(68,868,o), +(30,771,c), +(114,724,l), +(134,751,o), +(146,764,o), +(182,764,cs), +(238,764,o), +(255,726,o), +(324,726,cs) +); +} +); +width = 504; +}, +{ +anchors = ( +{ +name = _top; +pos = (188,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(289,776,o), +(316,790,o), +(340,825,c), +(319,838,l), +(303,817,o), +(281,808,o), +(259,808,cs), +(215,807,o), +(166,836,o), +(127,836,cs), +(88,836,o), +(66,822,o), +(43,786,c), +(61,774,l), +(78,796,o), +(95,803,o), +(120,803,cs), +(161,803,o), +(193,776,o), +(251,776,cs) +); +} +); +width = 380; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(365,730,o), +(423,756,o), +(456,853,c), +(380,900,l), +(366,877,o), +(352,860,o), +(319,860,cs), +(268,860,o), +(253,898,o), +(191,898,cs), +(148,898,o), +(90,872,o), +(57,775,c), +(133,728,l), +(147,751,o), +(161,768,o), +(194,768,cs), +(245,768,o), +(260,730,o), +(322,730,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(375,736,o), +(425,759,o), +(458,846,c), +(375,894,l), +(357,867,o), +(335,857,o), +(312,857,cs), +(270,857,o), +(228,892,o), +(170,892,cs), +(125,892,o), +(79,869,o), +(39,782,c), +(121,734,l), +(136,756,o), +(155,771,o), +(183,771,cs), +(226,771,o), +(260,736,o), +(324,736,cs) +); +} +); +width = 496; +}, +{ +anchors = ( +{ +name = _top; +pos = (225,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(735,776,o), +(761,790,o), +(790,825,c), +(774,838,l), +(755,817,o), +(733,808,o), +(713,808,cs), +(679,807,o), +(661,836,o), +(637,836,cs), +(602,836,o), +(580,822,o), +(549,786,c), +(565,774,l), +(585,796,o), +(601,803,o), +(624,803,cs), +(655,803,o), +(665,776,o), +(700,776,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,777,o), +(336,787,o), +(357,825,c), +(342,836,l), +(328,817,o), +(313,807,o), +(294,807,cs), +(266,807,o), +(243,835,o), +(213,835,cs), +(190,835,o), +(169,820,o), +(149,786,c), +(164,775,l), +(181,797,o), +(197,804,o), +(210,804,cs), +(238,804,o), +(257,777,o), +(291,777,cs) +); +} +); +width = 280; +}, +{ +anchors = ( +{ +name = _top; +pos = (318,679); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,745,o), +(496,765,o), +(538,843,c), +(470,882,l), +(454,858,o), +(437,850,o), +(414,850,cs), +(372,850,o), +(338,878,o), +(285,878,cs), +(234,878,o), +(188,859,o), +(145,779,c), +(213,740,l), +(230,761,o), +(250,773,o), +(275,773,cs), +(312,773,o), +(348,745,o), +(400,745,cs) +); +} +); +width = 459; +}, +{ +anchors = ( +{ +name = _top; +pos = (274,672); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,776,o), +(429,790,o), +(460,825,c), +(442,838,l), +(421,817,o), +(397,808,o), +(375,808,cs), +(329,807,o), +(286,836,o), +(245,836,cs), +(206,836,o), +(181,822,o), +(149,786,c), +(166,774,l), +(188,796,o), +(206,803,o), +(231,803,cs), +(274,803,o), +(301,776,o), +(361,776,cs) +); +} +); +width = 383; +}, +{ +anchors = ( +{ +name = _top; +pos = (344,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(355,898,o), +(294,863,o), +(250,775,c), +(317,728,l), +(326,739,o), +(344,768,o), +(385,768,cs), +(435,768,o), +(450,730,o), +(504,730,cs), +(548,730,o), +(609,756,o), +(659,847,c), +(594,897,l), +(568,871,o), +(547,858,o), +(524,858,cs), +(476,858,o), +(461,898,o), +(406,898,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(485,736,o), +(540,758,o), +(592,846,c), +(518,894,l), +(495,868,o), +(469,857,o), +(445,857,cs), +(401,857,o), +(362,892,o), +(303,892,cs), +(256,892,o), +(205,869,o), +(146,782,c), +(220,734,l), +(239,755,o), +(262,771,o), +(292,771,cs), +(337,771,o), +(366,736,o), +(432,736,cs) +); +} +); +width = 513; +}, +{ +anchors = ( +{ +name = _top; +pos = (292,672); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,776,o), +(462,790,o), +(496,825,c), +(477,838,l), +(453,817,o), +(426,808,o), +(401,808,cs), +(351,808,o), +(300,836,o), +(254,836,cs), +(211,836,o), +(185,822,o), +(149,786,c), +(167,774,l), +(192,797,o), +(214,803,o), +(239,803,cs), +(289,803,o), +(319,776,o), +(387,776,cs) +); +} +); +width = 419; +}, +{ +anchors = ( +{ +name = _top; +pos = (344,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(368,894,o), +(300,859,o), +(249,771,c), +(323,724,l), +(334,735,o), +(354,764,o), +(400,764,cs), +(455,763,o), +(465,726,o), +(534,726,cs), +(583,726,o), +(651,752,o), +(708,843,c), +(636,893,l), +(614,873,o), +(589,854,o), +(556,854,cs), +(503,854,o), +(487,894,o), +(426,894,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(500,736,o), +(554,759,o), +(592,846,c), +(518,894,l), +(498,868,o), +(479,857,o), +(450,857,cs), +(401,857,o), +(365,892,o), +(299,892,cs), +(252,892,o), +(192,868,o), +(146,782,c), +(220,734,l), +(236,756,o), +(257,771,o), +(288,771,cs), +(333,771,o), +(373,736,o), +(439,736,cs) +); +} +); +width = 513; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 771; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/trademark.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/trademark.glyph new file mode 100644 index 00000000..d2629b5f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/trademark.glyph @@ -0,0 +1,876 @@ +{ +glyphname = trademark; +kernLeft = KO_trademark; +layers = ( +{ +guides = ( +{ +pos = (452,415); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,415,l), +(366,518,l), +(363,604,l), +(365,604,l), +(405,415,l), +(472,415,l), +(511,604,l), +(514,604,l), +(512,518,l), +(512,415,l), +(608,415,l), +(608,729,l), +(469,729,l), +(441,562,l), +(438,562,l), +(408,729,l), +(269,729,l), +(269,415,l) +); +}, +{ +closed = 1; +nodes = ( +(180,415,l), +(180,639,l), +(237,639,l), +(237,729,l), +(20,729,l), +(20,639,l), +(77,639,l), +(77,415,l) +); +} +); +width = 642; +}, +{ +guides = ( +{ +pos = (160,419); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,419,l), +(303,573,l), +(302,693,l), +(304,693,l), +(376,419,l), +(409,419,l), +(482,693,l), +(484,693,l), +(482,573,l), +(482,419,l), +(510,419,l), +(510,729,l), +(465,729,l), +(393,453,l), +(391,453,l), +(320,729,l), +(277,729,l), +(277,419,l) +); +}, +{ +closed = 1; +nodes = ( +(130,419,l), +(130,704,l), +(219,704,l), +(219,729,l), +(19,729,l), +(19,704,l), +(103,704,l), +(103,419,l) +); +} +); +width = 588; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,419,l), +(400,569,l), +(399,686,l), +(401,686,l), +(536,419,l), +(564,419,l), +(699,686,l), +(702,686,l), +(699,569,l), +(699,419,l), +(735,419,l), +(735,729,l), +(687,729,l), +(551,459,l), +(548,459,l), +(412,729,l), +(367,729,l), +(367,419,l) +); +}, +{ +closed = 1; +nodes = ( +(189,419,l), +(189,699,l), +(313,699,l), +(313,729,l), +(36,729,l), +(36,699,l), +(155,699,l), +(155,419,l) +); +} +); +width = 820; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,415,l), +(505,500,l), +(504,579,l), +(507,579,l), +(573,415,l), +(670,415,l), +(736,579,l), +(739,579,l), +(739,500,l), +(739,415,l), +(860,415,l), +(860,729,l), +(686,729,l), +(625,574,l), +(621,574,l), +(558,729,l), +(383,729,l), +(383,415,l) +); +}, +{ +closed = 1; +nodes = ( +(247,415,l), +(247,619,l), +(343,619,l), +(343,729,l), +(22,729,l), +(22,619,l), +(117,619,l), +(117,415,l) +); +} +); +width = 915; +}, +{ +guides = ( +{ +pos = (150,419); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(293,419,l), +(293,573,l), +(292,693,l), +(294,693,l), +(366,419,l), +(399,419,l), +(472,693,l), +(474,693,l), +(472,573,l), +(472,419,l), +(500,419,l), +(500,729,l), +(455,729,l), +(383,453,l), +(381,453,l), +(310,729,l), +(267,729,l), +(267,419,l) +); +}, +{ +closed = 1; +nodes = ( +(120,419,l), +(120,704,l), +(209,704,l), +(209,729,l), +(9,729,l), +(9,704,l), +(93,704,l), +(93,419,l) +); +} +); +width = 558; +}, +{ +guides = ( +{ +pos = (442,415); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,415,l), +(356,518,l), +(353,604,l), +(355,604,l), +(395,415,l), +(462,415,l), +(501,604,l), +(504,604,l), +(502,518,l), +(502,415,l), +(598,415,l), +(598,729,l), +(459,729,l), +(431,562,l), +(428,562,l), +(398,729,l), +(259,729,l), +(259,415,l) +); +}, +{ +closed = 1; +nodes = ( +(170,415,l), +(170,639,l), +(227,639,l), +(227,729,l), +(10,729,l), +(10,639,l), +(67,639,l), +(67,415,l) +); +} +); +width = 622; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,419,l), +(373,569,l), +(372,686,l), +(374,686,l), +(497,419,l), +(525,419,l), +(648,686,l), +(651,686,l), +(648,569,l), +(648,419,l), +(683,419,l), +(683,729,l), +(636,729,l), +(512,459,l), +(509,459,l), +(385,729,l), +(341,729,l), +(341,419,l) +); +}, +{ +closed = 1; +nodes = ( +(177,419,l), +(177,699,l), +(291,699,l), +(291,729,l), +(34,729,l), +(34,699,l), +(144,699,l), +(144,419,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 770; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,415,l), +(459,507,l), +(458,590,l), +(461,590,l), +(516,415,l), +(605,415,l), +(660,590,l), +(663,590,l), +(662,507,l), +(662,415,l), +(774,415,l), +(774,729,l), +(614,729,l), +(564,562,l), +(560,562,l), +(508,729,l), +(348,729,l), +(348,415,l) +); +}, +{ +closed = 1; +nodes = ( +(219,415,l), +(219,627,l), +(303,627,l), +(303,729,l), +(17,729,l), +(17,627,l), +(99,627,l), +(99,415,l) +); +} +); +width = 820; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(390,419,l), +(390,569,l), +(389,686,l), +(391,686,l), +(526,419,l), +(554,419,l), +(689,686,l), +(692,686,l), +(689,569,l), +(689,419,l), +(725,419,l), +(725,729,l), +(677,729,l), +(541,459,l), +(538,459,l), +(402,729,l), +(357,729,l), +(357,419,l) +); +}, +{ +closed = 1; +nodes = ( +(179,419,l), +(179,699,l), +(303,699,l), +(303,729,l), +(26,729,l), +(26,699,l), +(145,699,l), +(145,419,l) +); +} +); +width = 800; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(495,415,l), +(495,500,l), +(494,579,l), +(497,579,l), +(563,415,l), +(660,415,l), +(726,579,l), +(729,579,l), +(729,500,l), +(729,415,l), +(850,415,l), +(850,729,l), +(676,729,l), +(615,574,l), +(611,574,l), +(548,729,l), +(373,729,l), +(373,415,l) +); +}, +{ +closed = 1; +nodes = ( +(237,415,l), +(237,619,l), +(333,619,l), +(333,729,l), +(12,729,l), +(12,619,l), +(107,619,l), +(107,415,l) +); +} +); +width = 895; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(388,419,l), +(388,569,l), +(387,686,l), +(389,686,l), +(510,419,l), +(538,419,l), +(657,686,l), +(660,686,l), +(657,569,l), +(657,419,l), +(692,419,l), +(692,729,l), +(646,729,l), +(525,459,l), +(522,459,l), +(400,729,l), +(356,729,l), +(356,419,l) +); +}, +{ +closed = 1; +nodes = ( +(196,419,l), +(196,699,l), +(308,699,l), +(308,729,l), +(55,729,l), +(55,699,l), +(163,699,l), +(163,419,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 803; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(469,415,l), +(469,507,l), +(468,590,l), +(471,590,l), +(524,415,l), +(612,415,l), +(663,590,l), +(666,590,l), +(665,507,l), +(665,415,l), +(776,415,l), +(776,729,l), +(618,729,l), +(571,562,l), +(567,562,l), +(518,729,l), +(359,729,l), +(359,415,l) +); +}, +{ +closed = 1; +nodes = ( +(235,415,l), +(235,627,l), +(316,627,l), +(316,729,l), +(37,729,l), +(37,627,l), +(116,627,l), +(116,415,l) +); +} +); +width = 843; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,419,l), +(366,573,l), +(391,693,l), +(393,693,l), +(406,419,l), +(439,419,l), +(568,693,l), +(570,693,l), +(543,573,l), +(511,419,l), +(540,419,l), +(603,729,l), +(559,729,l), +(431,453,l), +(429,453,l), +(415,729,l), +(373,729,l), +(308,419,l) +); +}, +{ +closed = 1; +nodes = ( +(163,419,l), +(222,704,l), +(310,704,l), +(315,729,l), +(117,729,l), +(112,704,l), +(195,704,l), +(136,419,l) +); +} +); +width = 584; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,415,l), +(412,518,l), +(428,604,l), +(430,604,l), +(430,415,l), +(496,415,l), +(575,604,l), +(578,604,l), +(556,518,l), +(536,415,l), +(631,415,l), +(697,729,l), +(559,729,l), +(496,562,l), +(493,562,l), +(499,729,l), +(360,729,l), +(295,415,l) +); +}, +{ +closed = 1; +nodes = ( +(207,415,l), +(254,639,l), +(311,639,l), +(330,729,l), +(115,729,l), +(96,639,l), +(152,639,l), +(105,415,l) +); +} +); +width = 636; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(422,419,l), +(453,569,l), +(477,686,l), +(479,686,l), +(545,419,l), +(573,419,l), +(750,686,l), +(753,686,l), +(725,569,l), +(694,419,l), +(729,419,l), +(793,729,l), +(747,729,l), +(568,459,l), +(565,459,l), +(498,729,l), +(455,729,l), +(390,419,l) +); +}, +{ +closed = 1; +nodes = ( +(228,419,l), +(286,699,l), +(399,699,l), +(405,729,l), +(151,729,l), +(145,699,l), +(254,699,l), +(195,419,l) +); +} +); +width = 807; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,415,l), +(525,507,l), +(541,590,l), +(544,590,l), +(561,415,l), +(650,415,l), +(741,590,l), +(744,590,l), +(726,507,l), +(707,415,l), +(817,415,l), +(883,729,l), +(725,729,l), +(640,562,l), +(636,562,l), +(620,729,l), +(460,729,l), +(395,415,l) +); +}, +{ +closed = 1; +nodes = ( +(267,415,l), +(312,627,l), +(396,627,l), +(417,729,l), +(134,729,l), +(112,627,l), +(194,627,l), +(149,415,l) +); +} +); +width = 857; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,419,l), +(460,569,l), +(484,686,l), +(486,686,l), +(564,419,l), +(592,419,l), +(781,686,l), +(784,686,l), +(757,569,l), +(726,419,l), +(761,419,l), +(825,729,l), +(778,729,l), +(587,459,l), +(584,459,l), +(506,729,l), +(461,729,l), +(397,419,l) +); +}, +{ +closed = 1; +nodes = ( +(221,419,l), +(279,699,l), +(402,699,l), +(408,729,l), +(133,729,l), +(127,699,l), +(245,699,l), +(187,419,l) +); +} +); +width = 813; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(529,415,l), +(547,500,l), +(563,579,l), +(566,579,l), +(597,415,l), +(693,415,l), +(793,579,l), +(795,579,l), +(778,500,l), +(761,415,l), +(881,415,l), +(947,729,l), +(775,729,l), +(681,574,l), +(678,574,l), +(648,729,l), +(474,729,l), +(409,415,l) +); +}, +{ +closed = 1; +nodes = ( +(274,415,l), +(317,619,l), +(412,619,l), +(435,729,l), +(118,729,l), +(94,619,l), +(188,619,l), +(145,415,l) +); +} +); +width = 907; +} +); +unicode = 8482; +userData = { +KernOnSpecialSpacing = { +L = superiors; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/two.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/two.blackC_ircled.glyph new file mode 100644 index 00000000..f29cd84e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/two.blackC_ircled.glyph @@ -0,0 +1,2110 @@ +{ +color = 0; +glyphname = two.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,183,ls), +(228,286,o), +(370,389,o), +(370,464,cs), +(370,488,o), +(365,500,o), +(350,500,cs), +(328,500,o), +(327,470,o), +(330,438,c), +(222,438,l), +(217,528,o), +(260,592,o), +(350,592,cs), +(429,592,o), +(480,556,o), +(480,465,cs), +(480,367,o), +(368,276,o), +(365,245,c), +(483,245,l), +(483,154,l), +(228,154,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,178,ls), +(229,281,o), +(371,384,o), +(371,459,cs), +(371,483,o), +(366,495,o), +(351,495,cs), +(329,495,o), +(328,465,o), +(331,433,c), +(223,433,l), +(218,523,o), +(261,587,o), +(351,587,cs), +(430,587,o), +(481,551,o), +(481,460,cs), +(481,362,o), +(369,271,o), +(366,240,c), +(484,240,l), +(484,149,l), +(229,149,l) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,157,ls), +(260,271,o), +(403,358,o), +(403,478,cs), +(403,533,o), +(380,558,o), +(346,558,cs), +(301,558,o), +(286,516,o), +(287,452,c), +(258,452,l), +(255,541,o), +(291,584,o), +(346,584,cs), +(403,584,o), +(432,540,o), +(432,480,cs), +(432,355,o), +(294,256,o), +(294,172,c), +(440,172,l), +(440,146,l), +(260,146,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,159,ls), +(260,273,o), +(403,360,o), +(403,480,cs), +(403,535,o), +(380,560,o), +(346,560,cs), +(301,560,o), +(286,518,o), +(287,454,c), +(258,454,l), +(255,543,o), +(291,586,o), +(346,586,cs), +(403,586,o), +(432,542,o), +(432,482,cs), +(432,357,o), +(294,258,o), +(294,174,c), +(440,174,l), +(440,148,l), +(260,148,l) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,155,ls), +(276,316,o), +(563,310,o), +(563,454,cs), +(563,518,o), +(513,551,o), +(441,551,cs), +(359,551,o), +(312,508,o), +(312,445,c), +(277,445,l), +(278,533,o), +(344,582,o), +(443,582,cs), +(543,582,o), +(601,531,o), +(601,456,cs), +(601,298,o), +(324,286,o), +(319,175,c), +(609,175,l), +(609,144,l), +(276,144,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(275,161,ls), +(275,322,o), +(562,316,o), +(562,460,cs), +(562,524,o), +(512,557,o), +(440,557,cs), +(358,557,o), +(311,514,o), +(311,451,c), +(276,451,l), +(277,539,o), +(343,588,o), +(442,588,cs), +(542,588,o), +(600,537,o), +(600,462,cs), +(600,304,o), +(323,292,o), +(318,181,c), +(608,181,l), +(608,150,l), +(275,150,l) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,178,ls), +(241,346,o), +(468,372,o), +(468,447,cs), +(468,472,o), +(444,481,o), +(435,481,cs), +(407,481,o), +(392,466,o), +(387,434,c), +(243,434,l), +(257,545,o), +(323,594,o), +(440,594,cs), +(552,594,o), +(617,537,o), +(617,450,cs), +(617,334,o), +(486,288,o), +(441,269,c), +(618,269,l), +(618,157,l), +(241,157,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,174,ls), +(241,342,o), +(468,368,o), +(468,443,cs), +(468,468,o), +(454,477,o), +(435,477,cs), +(407,477,o), +(392,462,o), +(387,430,c), +(243,430,l), +(257,541,o), +(323,590,o), +(440,590,cs), +(552,590,o), +(617,533,o), +(617,446,cs), +(617,330,o), +(486,284,o), +(441,265,c), +(618,265,l), +(618,153,l), +(241,153,l) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,157,ls), +(260,271,o), +(403,358,o), +(403,478,cs), +(403,533,o), +(380,558,o), +(346,558,cs), +(301,558,o), +(286,516,o), +(287,452,c), +(258,452,l), +(255,541,o), +(291,584,o), +(346,584,cs), +(403,584,o), +(432,540,o), +(432,480,cs), +(432,355,o), +(294,256,o), +(294,172,c), +(440,172,l), +(440,146,l), +(260,146,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,159,ls), +(240,273,o), +(383,360,o), +(383,480,cs), +(383,535,o), +(360,560,o), +(326,560,cs), +(281,560,o), +(266,518,o), +(267,454,c), +(238,454,l), +(235,543,o), +(271,586,o), +(326,586,cs), +(383,586,o), +(412,542,o), +(412,482,cs), +(412,357,o), +(274,258,o), +(274,174,c), +(420,174,l), +(420,148,l), +(240,148,l) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,183,ls), +(228,286,o), +(370,389,o), +(370,464,cs), +(370,488,o), +(365,500,o), +(350,500,cs), +(328,500,o), +(327,470,o), +(330,438,c), +(222,438,l), +(217,528,o), +(260,592,o), +(350,592,cs), +(429,592,o), +(480,556,o), +(480,465,cs), +(480,367,o), +(368,276,o), +(365,245,c), +(483,245,l), +(483,154,l), +(228,154,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(219,178,ls), +(219,281,o), +(361,384,o), +(361,459,cs), +(361,483,o), +(356,495,o), +(341,495,cs), +(319,495,o), +(318,465,o), +(321,433,c), +(213,433,l), +(208,523,o), +(251,587,o), +(341,587,cs), +(420,587,o), +(471,551,o), +(471,460,cs), +(471,362,o), +(359,271,o), +(356,240,c), +(474,240,l), +(474,149,l), +(219,149,l) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,158,ls), +(304,308,o), +(533,340,o), +(533,462,cs), +(533,518,o), +(496,552,o), +(437,552,cs), +(378,552,o), +(334,514,o), +(336,451,c), +(301,450,l), +(299,528,o), +(355,582,o), +(438,582,cs), +(518,582,o), +(568,535,o), +(568,463,cs), +(568,326,o), +(351,293,o), +(339,176,c), +(571,176,l), +(571,145,l), +(304,145,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(284,162,ls), +(284,312,o), +(513,344,o), +(513,466,cs), +(513,522,o), +(476,556,o), +(417,556,cs), +(358,556,o), +(314,518,o), +(316,455,c), +(281,455,l), +(279,533,o), +(335,586,o), +(418,586,cs), +(498,586,o), +(548,539,o), +(548,467,cs), +(548,330,o), +(331,297,o), +(319,180,c), +(551,180,l), +(551,149,l), +(284,149,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +place = ( +413, +222 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +138, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +613, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +306, +38 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +570, +42 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,169,ls), +(262,345,o), +(462,371,o), +(462,446,cs), +(462,466,o), +(446,477,o), +(429,477,cs), +(399,477,o), +(389,456,o), +(388,437,c), +(262,437,l), +(269,526,o), +(330,584,o), +(436,584,cs), +(529,584,o), +(590,529,o), +(590,452,cs), +(590,335,o), +(445,292,o), +(407,257,c), +(587,257,l), +(587,147,l), +(262,147,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,173,ls), +(243,349,o), +(443,375,o), +(443,450,cs), +(443,470,o), +(427,481,o), +(410,481,cs), +(380,481,o), +(370,460,o), +(369,441,c), +(243,441,l), +(250,530,o), +(311,588,o), +(417,588,cs), +(510,588,o), +(571,533,o), +(571,456,cs), +(571,339,o), +(426,296,o), +(388,261,c), +(568,261,l), +(568,151,l), +(243,151,l) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,155,ls), +(276,316,o), +(563,310,o), +(563,454,cs), +(563,518,o), +(513,551,o), +(441,551,cs), +(359,551,o), +(312,508,o), +(312,445,c), +(277,445,l), +(278,533,o), +(344,582,o), +(443,582,cs), +(543,582,o), +(601,531,o), +(601,456,cs), +(601,298,o), +(324,286,o), +(319,175,c), +(609,175,l), +(609,144,l), +(276,144,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,161,ls), +(265,322,o), +(552,316,o), +(552,460,cs), +(552,524,o), +(502,557,o), +(430,557,cs), +(348,557,o), +(301,514,o), +(301,451,c), +(266,451,l), +(267,539,o), +(333,588,o), +(432,588,cs), +(532,588,o), +(590,537,o), +(590,462,cs), +(590,304,o), +(313,292,o), +(308,181,c), +(598,181,l), +(598,150,l), +(265,150,l) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,178,ls), +(241,346,o), +(468,372,o), +(468,447,cs), +(468,472,o), +(444,481,o), +(435,481,cs), +(407,481,o), +(392,466,o), +(387,434,c), +(243,434,l), +(257,545,o), +(323,594,o), +(440,594,cs), +(552,594,o), +(617,537,o), +(617,450,cs), +(617,334,o), +(486,288,o), +(441,269,c), +(618,269,l), +(618,157,l), +(241,157,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,174,ls), +(231,342,o), +(458,368,o), +(458,443,cs), +(458,468,o), +(444,477,o), +(425,477,cs), +(397,477,o), +(382,462,o), +(377,430,c), +(233,430,l), +(247,541,o), +(313,590,o), +(430,590,cs), +(542,590,o), +(607,533,o), +(607,446,cs), +(607,330,o), +(476,284,o), +(431,265,c), +(608,265,l), +(608,153,l), +(231,153,l) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,158,ls), +(304,308,o), +(533,340,o), +(533,462,cs), +(533,518,o), +(496,552,o), +(437,552,cs), +(378,552,o), +(334,514,o), +(336,451,c), +(301,450,l), +(299,528,o), +(355,582,o), +(438,582,cs), +(518,582,o), +(568,535,o), +(568,463,cs), +(568,326,o), +(351,293,o), +(339,176,c), +(571,176,l), +(571,145,l), +(304,145,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,162,ls), +(301,312,o), +(526,344,o), +(526,466,cs), +(526,522,o), +(489,556,o), +(432,556,cs), +(373,556,o), +(331,518,o), +(333,455,c), +(298,455,l), +(296,533,o), +(350,586,o), +(433,586,cs), +(511,586,o), +(559,539,o), +(559,467,cs), +(559,330,o), +(347,297,o), +(336,180,c), +(562,180,l), +(562,149,l), +(301,149,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +place = ( +413, +222 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +138, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +613, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +306, +38 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +570, +42 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,169,ls), +(262,345,o), +(462,371,o), +(462,446,cs), +(462,466,o), +(446,477,o), +(429,477,cs), +(399,477,o), +(389,456,o), +(388,437,c), +(262,437,l), +(269,526,o), +(330,584,o), +(436,584,cs), +(529,584,o), +(590,529,o), +(590,452,cs), +(590,335,o), +(445,292,o), +(407,257,c), +(587,257,l), +(587,147,l), +(262,147,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,173,ls), +(257,349,o), +(451,375,o), +(451,450,cs), +(451,470,o), +(437,481,o), +(421,481,cs), +(392,481,o), +(383,460,o), +(382,441,c), +(257,441,l), +(264,530,o), +(324,588,o), +(428,588,cs), +(519,588,o), +(578,533,o), +(578,456,cs), +(578,339,o), +(439,296,o), +(401,261,c), +(575,261,l), +(575,151,l), +(257,151,l) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,157,ls), +(297,271,o), +(440,358,o), +(440,478,cs), +(440,533,o), +(417,558,o), +(383,558,cs), +(338,558,o), +(323,516,o), +(324,452,c), +(295,452,l), +(292,541,o), +(328,584,o), +(383,584,cs), +(440,584,o), +(469,540,o), +(469,480,cs), +(469,355,o), +(331,256,o), +(331,172,c), +(477,172,l), +(477,146,l), +(297,146,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,159,ls), +(297,273,o), +(440,360,o), +(440,480,cs), +(440,535,o), +(417,560,o), +(383,560,cs), +(338,560,o), +(323,518,o), +(324,454,c), +(295,454,l), +(292,543,o), +(328,586,o), +(383,586,cs), +(440,586,o), +(469,542,o), +(469,482,cs), +(469,357,o), +(331,258,o), +(331,174,c), +(477,174,l), +(477,148,l), +(297,148,l) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,183,ls), +(260,286,o), +(402,389,o), +(402,464,cs), +(402,488,o), +(397,500,o), +(382,500,cs), +(360,500,o), +(359,470,o), +(362,438,c), +(254,438,l), +(249,528,o), +(292,592,o), +(382,592,cs), +(461,592,o), +(512,556,o), +(512,465,cs), +(512,367,o), +(400,276,o), +(397,245,c), +(515,245,l), +(515,154,l), +(260,154,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,178,ls), +(261,281,o), +(403,384,o), +(403,459,cs), +(403,483,o), +(398,495,o), +(383,495,cs), +(361,495,o), +(360,465,o), +(363,433,c), +(255,433,l), +(250,523,o), +(293,587,o), +(383,587,cs), +(462,587,o), +(513,551,o), +(513,460,cs), +(513,362,o), +(401,271,o), +(398,240,c), +(516,240,l), +(516,149,l), +(261,149,l) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(336,158,ls), +(336,308,o), +(565,340,o), +(565,462,cs), +(565,518,o), +(528,552,o), +(469,552,cs), +(410,552,o), +(366,514,o), +(368,451,c), +(333,450,l), +(331,528,o), +(387,582,o), +(470,582,cs), +(550,582,o), +(600,535,o), +(600,463,cs), +(600,326,o), +(383,293,o), +(371,176,c), +(603,176,l), +(603,145,l), +(336,145,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(336,162,ls), +(336,312,o), +(565,344,o), +(565,466,cs), +(565,522,o), +(528,556,o), +(469,556,cs), +(410,556,o), +(366,518,o), +(368,455,c), +(333,455,l), +(331,533,o), +(387,586,o), +(470,586,cs), +(550,586,o), +(600,539,o), +(600,467,cs), +(600,330,o), +(383,297,o), +(371,180,c), +(603,180,l), +(603,149,l), +(336,149,l) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(290,169,ls), +(290,345,o), +(490,371,o), +(490,446,cs), +(490,466,o), +(474,477,o), +(457,477,cs), +(427,477,o), +(417,456,o), +(416,437,c), +(290,437,l), +(297,526,o), +(358,584,o), +(464,584,cs), +(557,584,o), +(618,529,o), +(618,452,cs), +(618,335,o), +(473,292,o), +(435,257,c), +(615,257,l), +(615,147,l), +(290,147,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(292,173,ls), +(292,349,o), +(492,375,o), +(492,450,cs), +(492,470,o), +(476,481,o), +(459,481,cs), +(429,481,o), +(419,460,o), +(418,441,c), +(292,441,l), +(299,530,o), +(360,588,o), +(466,588,cs), +(559,588,o), +(620,533,o), +(620,456,cs), +(620,339,o), +(475,296,o), +(437,261,c), +(617,261,l), +(617,151,l), +(292,151,l) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(307,155,ls), +(307,316,o), +(594,310,o), +(594,454,cs), +(594,518,o), +(544,551,o), +(472,551,cs), +(390,551,o), +(343,508,o), +(343,445,c), +(308,445,l), +(309,533,o), +(375,582,o), +(474,582,cs), +(574,582,o), +(632,531,o), +(632,456,cs), +(632,298,o), +(355,286,o), +(350,175,c), +(640,175,l), +(640,144,l), +(307,144,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,161,ls), +(306,322,o), +(593,316,o), +(593,460,cs), +(593,524,o), +(543,557,o), +(471,557,cs), +(389,557,o), +(342,514,o), +(342,451,c), +(307,451,l), +(308,539,o), +(374,588,o), +(473,588,cs), +(573,588,o), +(631,537,o), +(631,462,cs), +(631,304,o), +(354,292,o), +(349,181,c), +(639,181,l), +(639,150,l), +(306,150,l) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,178,ls), +(270,346,o), +(497,372,o), +(497,447,cs), +(497,472,o), +(473,481,o), +(464,481,cs), +(436,481,o), +(421,466,o), +(416,434,c), +(272,434,l), +(286,545,o), +(352,594,o), +(469,594,cs), +(581,594,o), +(646,537,o), +(646,450,cs), +(646,334,o), +(515,288,o), +(470,269,c), +(647,269,l), +(647,157,l), +(270,157,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,174,ls), +(270,342,o), +(497,368,o), +(497,443,cs), +(497,468,o), +(483,477,o), +(464,477,cs), +(436,477,o), +(421,462,o), +(416,430,c), +(272,430,l), +(286,541,o), +(352,590,o), +(469,590,cs), +(581,590,o), +(646,533,o), +(646,446,cs), +(646,330,o), +(515,284,o), +(470,265,c), +(647,265,l), +(647,153,l), +(270,153,l) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 10103; +userData = { +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/two.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/two.circled.glyph new file mode 100644 index 00000000..292ff6ce --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/two.circled.glyph @@ -0,0 +1,1521 @@ +{ +color = 0; +glyphname = two.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(440,146,l), +(440,172,l), +(294,172,l), +(294,256,o), +(432,355,o), +(432,480,cs), +(432,540,o), +(403,584,o), +(346,584,cs), +(291,584,o), +(255,541,o), +(258,452,c), +(287,452,l), +(286,516,o), +(301,558,o), +(346,558,cs), +(380,558,o), +(403,533,o), +(403,478,cs), +(403,358,o), +(260,271,o), +(260,157,cs), +(260,146,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (229,188); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(483,154,l), +(483,245,l), +(365,245,l), +(368,276,o), +(480,367,o), +(480,465,cs), +(480,556,o), +(429,592,o), +(350,592,cs), +(260,592,o), +(217,528,o), +(222,438,c), +(330,438,l), +(327,470,o), +(328,500,o), +(350,500,cs), +(365,500,o), +(370,488,o), +(370,464,cs), +(370,389,o), +(228,286,o), +(228,183,cs), +(228,154,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (211,189); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(609,144,l), +(609,175,l), +(319,175,l), +(324,286,o), +(601,298,o), +(601,456,cs), +(601,531,o), +(543,582,o), +(443,582,cs), +(344,582,o), +(278,533,o), +(277,445,c), +(312,445,l), +(312,508,o), +(359,551,o), +(441,551,cs), +(513,551,o), +(563,518,o), +(563,454,cs), +(563,310,o), +(276,316,o), +(276,155,cs), +(276,144,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (243,190); +ref = twoinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(618,157,l), +(618,269,l), +(441,269,l), +(486,288,o), +(617,334,o), +(617,450,cs), +(617,537,o), +(552,594,o), +(440,594,cs), +(323,594,o), +(257,545,o), +(243,434,c), +(387,434,l), +(392,466,o), +(407,481,o), +(435,481,cs), +(444,481,o), +(468,472,o), +(468,447,cs), +(468,372,o), +(241,346,o), +(241,178,cs), +(241,157,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (229,193); +ref = twoinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(440,146,l), +(440,172,l), +(294,172,l), +(294,256,o), +(432,355,o), +(432,480,cs), +(432,540,o), +(403,584,o), +(346,584,cs), +(291,584,o), +(255,541,o), +(258,452,c), +(287,452,l), +(286,516,o), +(301,558,o), +(346,558,cs), +(380,558,o), +(403,533,o), +(403,478,cs), +(403,358,o), +(260,271,o), +(260,157,cs), +(260,146,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (229,188); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(483,154,l), +(483,245,l), +(365,245,l), +(368,276,o), +(480,367,o), +(480,465,cs), +(480,556,o), +(429,592,o), +(350,592,cs), +(260,592,o), +(217,528,o), +(222,438,c), +(330,438,l), +(327,470,o), +(328,500,o), +(350,500,cs), +(365,500,o), +(370,488,o), +(370,464,cs), +(370,389,o), +(228,286,o), +(228,183,cs), +(228,154,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (210,189); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,145,l), +(571,176,l), +(339,176,l), +(351,293,o), +(568,326,o), +(568,463,cs), +(568,535,o), +(518,582,o), +(438,582,cs), +(355,582,o), +(299,528,o), +(301,450,c), +(336,451,l), +(334,514,o), +(378,552,o), +(437,552,cs), +(496,552,o), +(533,518,o), +(533,462,cs), +(533,340,o), +(304,308,o), +(304,158,cs), +(304,145,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (250,189); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 871; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(587,147,l), +(587,257,l), +(407,257,l), +(445,292,o), +(590,335,o), +(590,452,cs), +(590,529,o), +(529,584,o), +(436,584,cs), +(330,584,o), +(269,526,o), +(262,437,c), +(388,437,l), +(389,456,o), +(399,477,o), +(429,477,cs), +(446,477,o), +(462,466,o), +(462,446,cs), +(462,371,o), +(262,345,o), +(262,169,cs), +(262,147,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (237,191); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 835; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(609,144,l), +(609,175,l), +(319,175,l), +(324,286,o), +(601,298,o), +(601,456,cs), +(601,531,o), +(543,582,o), +(443,582,cs), +(344,582,o), +(278,533,o), +(277,445,c), +(312,445,l), +(312,508,o), +(359,551,o), +(441,551,cs), +(513,551,o), +(563,518,o), +(563,454,cs), +(563,310,o), +(276,316,o), +(276,155,cs), +(276,144,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (243,190); +ref = twoinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(618,157,l), +(618,269,l), +(441,269,l), +(486,288,o), +(617,334,o), +(617,450,cs), +(617,537,o), +(552,594,o), +(440,594,cs), +(323,594,o), +(257,545,o), +(243,434,c), +(387,434,l), +(392,466,o), +(407,481,o), +(435,481,cs), +(444,481,o), +(468,472,o), +(468,447,cs), +(468,372,o), +(241,346,o), +(241,178,cs), +(241,157,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (229,193); +ref = twoinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,145,l), +(571,176,l), +(339,176,l), +(351,293,o), +(568,326,o), +(568,463,cs), +(568,535,o), +(518,582,o), +(438,582,cs), +(355,582,o), +(299,528,o), +(301,450,c), +(336,451,l), +(334,514,o), +(378,552,o), +(437,552,cs), +(496,552,o), +(533,518,o), +(533,462,cs), +(533,340,o), +(304,308,o), +(304,158,cs), +(304,145,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (246,189); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(587,147,l), +(587,257,l), +(407,257,l), +(445,292,o), +(590,335,o), +(590,452,cs), +(590,529,o), +(529,584,o), +(436,584,cs), +(330,584,o), +(269,526,o), +(262,437,c), +(388,437,l), +(389,456,o), +(399,477,o), +(429,477,cs), +(446,477,o), +(462,466,o), +(462,446,cs), +(462,371,o), +(262,345,o), +(262,169,cs), +(262,147,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (235,191); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(477,146,l), +(477,172,l), +(331,172,l), +(331,256,o), +(469,355,o), +(469,480,cs), +(469,540,o), +(440,584,o), +(383,584,cs), +(328,584,o), +(292,541,o), +(295,452,c), +(324,452,l), +(323,516,o), +(338,558,o), +(383,558,cs), +(417,558,o), +(440,533,o), +(440,478,cs), +(440,358,o), +(297,271,o), +(297,157,cs), +(297,146,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (266,188); +ref = twoinferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(515,154,l), +(515,245,l), +(397,245,l), +(400,276,o), +(512,367,o), +(512,465,cs), +(512,556,o), +(461,592,o), +(382,592,cs), +(292,592,o), +(249,528,o), +(254,438,c), +(362,438,l), +(359,470,o), +(360,500,o), +(382,500,cs), +(397,500,o), +(402,488,o), +(402,464,cs), +(402,389,o), +(260,286,o), +(260,183,cs), +(260,154,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (243,189); +ref = twoinferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(603,145,l), +(603,176,l), +(371,176,l), +(383,293,o), +(600,326,o), +(600,463,cs), +(600,535,o), +(550,582,o), +(470,582,cs), +(387,582,o), +(331,528,o), +(333,450,c), +(368,451,l), +(366,514,o), +(410,552,o), +(469,552,cs), +(528,552,o), +(565,518,o), +(565,462,cs), +(565,340,o), +(336,308,o), +(336,158,cs), +(336,145,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = master01; +pos = (306,186); +ref = twoinferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(615,147,l), +(615,257,l), +(435,257,l), +(473,292,o), +(618,335,o), +(618,452,cs), +(618,529,o), +(557,584,o), +(464,584,cs), +(358,584,o), +(297,526,o), +(290,437,c), +(416,437,l), +(417,456,o), +(427,477,o), +(457,477,cs), +(474,477,o), +(490,466,o), +(490,446,cs), +(490,371,o), +(290,345,o), +(290,169,cs), +(290,147,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (301,188); +ref = twoinferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(640,144,l), +(640,175,l), +(350,175,l), +(355,286,o), +(632,298,o), +(632,456,cs), +(632,531,o), +(574,582,o), +(474,582,cs), +(375,582,o), +(309,533,o), +(308,445,c), +(343,445,l), +(343,508,o), +(390,551,o), +(472,551,cs), +(544,551,o), +(594,518,o), +(594,454,cs), +(594,310,o), +(307,316,o), +(307,155,cs), +(307,144,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (274,190); +ref = twoinferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(647,157,l), +(647,269,l), +(470,269,l), +(515,288,o), +(646,334,o), +(646,450,cs), +(646,537,o), +(581,594,o), +(469,594,cs), +(352,594,o), +(286,545,o), +(272,434,c), +(416,434,l), +(421,466,o), +(436,481,o), +(464,481,cs), +(473,481,o), +(497,472,o), +(497,447,cs), +(497,372,o), +(270,346,o), +(270,178,cs), +(270,157,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (258,193); +ref = twoinferior; +} +); +width = 880; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9313; +userData = { +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/two.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/two.dnom.glyph new file mode 100644 index 00000000..cfbc036e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/two.dnom.glyph @@ -0,0 +1,877 @@ +{ +glyphname = two.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,l), +(243,82,l), +(143,82,l), +(146,107,o), +(241,184,o), +(241,269,cs), +(241,349,o), +(195,380,o), +(125,380,cs), +(49,380,o), +(7,326,o), +(12,245,c), +(110,245,l), +(107,277,o), +(110,296,o), +(125,296,cs), +(137,296,o), +(141,286,o), +(141,268,cs), +(141,205,o), +(18,115,o), +(18,27,cs), +(18,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 258; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,l), +(198,24,l), +(64,24,l), +(64,101,o), +(191,191,o), +(191,306,cs), +(191,361,o), +(164,402,o), +(112,402,cs), +(61,402,o), +(28,361,o), +(31,280,c), +(58,280,l), +(56,339,o), +(71,378,o), +(112,378,cs), +(143,378,o), +(163,354,o), +(163,304,cs), +(163,195,o), +(33,114,o), +(33,10,cs), +(33,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 225; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,0,l), +(338,29,l), +(74,29,l), +(79,130,o), +(332,141,o), +(332,286,cs), +(332,355,o), +(278,401,o), +(186,401,cs), +(95,401,o), +(35,356,o), +(34,276,c), +(67,276,l), +(68,336,o), +(113,372,o), +(185,372,cs), +(250,372,o), +(296,342,o), +(296,284,cs), +(296,153,o), +(33,158,o), +(33,11,cs), +(33,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 371; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,0,l), +(350,95,l), +(183,95,l), +(221,114,o), +(349,153,o), +(349,255,cs), +(349,329,o), +(292,379,o), +(191,379,cs), +(87,379,o), +(27,336,o), +(16,241,c), +(137,241,l), +(141,264,o), +(153,282,o), +(187,282,cs), +(200,282,o), +(222,274,o), +(222,252,cs), +(222,185,o), +(14,163,o), +(14,18,cs), +(14,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 376; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,0,l), +(178,24,l), +(44,24,l), +(44,101,o), +(171,191,o), +(171,306,cs), +(171,361,o), +(144,402,o), +(92,402,cs), +(41,402,o), +(8,361,o), +(11,280,c), +(38,280,l), +(36,339,o), +(51,378,o), +(92,378,cs), +(123,378,o), +(143,354,o), +(143,304,cs), +(143,195,o), +(13,114,o), +(13,10,cs), +(13,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 185; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,0,l), +(234,82,l), +(134,82,l), +(137,107,o), +(232,184,o), +(232,269,cs), +(232,349,o), +(186,380,o), +(116,380,cs), +(40,380,o), +(-2,326,o), +(3,245,c), +(101,245,l), +(98,277,o), +(101,296,o), +(116,296,cs), +(128,296,o), +(132,286,o), +(132,268,cs), +(132,205,o), +(9,115,o), +(9,27,cs), +(9,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 240; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,0,l), +(279,28,l), +(67,28,l), +(77,136,o), +(277,166,o), +(277,291,cs), +(277,357,o), +(231,401,o), +(157,401,cs), +(78,401,o), +(30,347,o), +(32,280,c), +(64,280,l), +(62,335,o), +(99,373,o), +(157,373,cs), +(211,373,o), +(244,342,o), +(244,291,cs), +(244,179,o), +(34,149,o), +(34,12,cs), +(34,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 311; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,0,l), +(299,97,l), +(136,97,l), +(170,126,o), +(302,163,o), +(302,264,cs), +(302,331,o), +(247,379,o), +(164,379,cs), +(74,379,o), +(14,332,o), +(8,251,c), +(120,251,l), +(120,269,o), +(132,284,o), +(158,284,cs), +(174,284,o), +(189,275,o), +(189,259,cs), +(189,195,o), +(8,173,o), +(8,20,cs), +(8,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +}; +width = 317; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(328,0,l), +(328,29,l), +(64,29,l), +(69,130,o), +(322,141,o), +(322,286,cs), +(322,355,o), +(268,401,o), +(176,401,cs), +(85,401,o), +(25,356,o), +(24,276,c), +(57,276,l), +(58,336,o), +(103,372,o), +(175,372,cs), +(240,372,o), +(286,342,o), +(286,284,cs), +(286,153,o), +(23,158,o), +(23,11,cs), +(23,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 351; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,0,l), +(340,95,l), +(173,95,l), +(211,114,o), +(339,153,o), +(339,255,cs), +(339,329,o), +(282,379,o), +(181,379,cs), +(77,379,o), +(17,336,o), +(6,241,c), +(127,241,l), +(131,264,o), +(143,282,o), +(177,282,cs), +(190,282,o), +(212,274,o), +(212,252,cs), +(212,185,o), +(4,163,o), +(4,18,cs), +(4,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 356; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(296,0,l), +(296,28,l), +(88,28,l), +(98,136,o), +(294,166,o), +(294,291,cs), +(294,357,o), +(249,401,o), +(176,401,cs), +(99,401,o), +(52,347,o), +(53,280,c), +(85,280,l), +(83,335,o), +(120,373,o), +(176,373,cs), +(230,373,o), +(261,342,o), +(261,291,cs), +(261,179,o), +(55,149,o), +(55,12,cs), +(55,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 349; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,l), +(306,97,l), +(154,97,l), +(189,127,o), +(309,163,o), +(309,264,cs), +(309,331,o), +(256,379,o), +(177,379,cs), +(92,379,o), +(34,332,o), +(28,251,c), +(139,251,l), +(139,269,o), +(149,284,o), +(171,284,cs), +(184,284,o), +(197,275,o), +(197,259,cs), +(197,195,o), +(28,173,o), +(28,20,cs), +(28,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +}; +width = 343; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,l), +(148,24,l), +(15,24,l), +(26,103,o), +(172,175,o), +(198,298,cs), +(210,357,o), +(191,402,o), +(133,402,cs), +(85,402,o), +(51,362,o), +(38,290,c), +(65,290,l), +(74,345,o), +(96,377,o), +(131,377,cs), +(169,377,o), +(181,345,o), +(171,299,cs), +(149,193,o), +(2,122,o), +(-18,17,cs), +(-21,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 224; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,0,l), +(204,82,l), +(105,82,l), +(115,107,o), +(221,172,o), +(239,258,cs), +(256,338,o), +(215,380,o), +(136,380,cs), +(63,380,o), +(20,325,o), +(9,250,c), +(107,250,l), +(111,282,o), +(119,296,o), +(130,296,cs), +(145,296,o), +(144,282,o), +(140,263,cs), +(129,213,o), +(-13,125,o), +(-31,31,cs), +(-37,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 259; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(259,28,l), +(53,28,l), +(77,133,o), +(298,160,o), +(298,296,cs), +(298,358,o), +(254,401,o), +(188,401,cs), +(114,401,o), +(65,357,o), +(54,283,c), +(86,283,l), +(95,339,o), +(129,373,o), +(187,373,cs), +(235,373,o), +(267,342,o), +(267,295,cs), +(267,176,o), +(41,149,o), +(16,22,cs), +(12,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 353; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(268,0,l), +(288,97,l), +(133,97,l), +(179,134,o), +(311,165,o), +(311,270,cs), +(311,337,o), +(258,380,o), +(181,380,cs), +(99,380,o), +(36,327,o), +(27,250,c), +(134,250,l), +(133,273,o), +(150,287,o), +(171,287,cs), +(190,287,o), +(202,276,o), +(202,261,cs), +(202,195,o), +(-5,176,o), +(-23,7,cs), +(-24,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 356; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,0,l), +(291,29,l), +(30,29,l), +(63,137,o), +(332,141,o), +(338,293,cs), +(341,361,o), +(294,402,o), +(211,402,cs), +(122,402,o), +(55,357,o), +(39,276,c), +(74,276,l), +(85,333,o), +(134,373,o), +(208,373,cs), +(267,373,o), +(304,345,o), +(302,293,cs), +(297,157,o), +(12,164,o), +(-16,11,cs), +(-18,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 372; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(310,0,l), +(328,97,l), +(166,97,l), +(237,132,o), +(351,162,o), +(351,264,cs), +(351,334,o), +(300,380,o), +(189,380,cs), +(89,380,o), +(28,334,o), +(9,246,c), +(133,246,l), +(140,272,o), +(152,285,o), +(185,285,cs), +(209,285,o), +(224,276,o), +(224,254,cs), +(224,189,o), +(-16,166,o), +(-30,9,cs), +(-31,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 386; +} +); +userData = { +KernOnName = two.dnom; +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/two.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/two.glyph new file mode 100644 index 00000000..4bb19b97 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/two.glyph @@ -0,0 +1,1132 @@ +{ +glyphname = two; +kernLeft = KO_two; +kernRight = KO_two; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,0,l), +(450,150,l), +(169,150,l), +(257,134,l), +(226,154,o), +(297,221,o), +(359,310,cs), +(418,394,o), +(446,449,o), +(446,527,cs), +(446,678,o), +(359,739,o), +(227,739,cs), +(82,739,o), +(4,637,o), +(13,480,c), +(191,480,l), +(187,533,o), +(188,587,o), +(227,587,cs), +(253,587,o), +(263,567,o), +(263,524,cs), +(263,480,o), +(245,444,o), +(198,378,cs), +(110,253,o), +(23,163,o), +(23,49,cs), +(23,0,l) +); +} +); +width = 465; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,0,l), +(322,29,l), +(55,29,l), +(68,22,l), +(64,110,o), +(141,204,o), +(209,307,cs), +(260,387,o), +(307,473,o), +(307,568,cs), +(307,662,o), +(263,739,o), +(171,739,cs), +(79,739,o), +(27,662,o), +(31,520,c), +(64,520,l), +(61,637,o), +(91,710,o), +(171,710,cs), +(233,710,o), +(274,664,o), +(274,565,cs), +(274,477,o), +(232,400,o), +(183,326,cs), +(114,224,o), +(33,128,o), +(33,14,cs), +(33,0,l) +); +} +); +width = 340; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(584,0,l), +(584,34,l), +(53,34,l), +(70,25,l), +(62,141,o), +(205,208,o), +(340,277,cs), +(459,338,o), +(570,400,o), +(570,531,cs), +(570,655,o), +(474,739,o), +(307,739,cs), +(143,739,o), +(35,656,o), +(33,513,c), +(69,513,l), +(72,628,o), +(156,705,o), +(305,705,cs), +(440,705,o), +(531,644,o), +(531,528,cs), +(531,414,o), +(433,363,o), +(324,308,cs), +(187,239,o), +(32,167,o), +(32,17,cs), +(32,0,l) +); +} +); +width = 613; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(635,0,l), +(635,169,l), +(209,169,l), +(294,147,l), +(297,175,o), +(369,203,o), +(447,246,cs), +(536,298,o), +(632,373,o), +(632,499,cs), +(632,643,o), +(524,738,o), +(337,738,cs), +(145,738,o), +(32,655,o), +(12,474,c), +(229,474,l), +(236,531,o), +(266,566,o), +(330,566,cs), +(360,566,o), +(406,546,o), +(406,494,cs), +(406,444,o), +(349,412,o), +(281,371,cs), +(164,300,o), +(9,216,o), +(9,33,cs), +(9,0,l) +); +} +); +width = 655; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,0,l), +(298,29,l), +(34,29,l), +(47,22,l), +(43,108,o), +(118,209,o), +(180,304,cs), +(236,390,o), +(283,466,o), +(283,561,cs), +(283,654,o), +(240,730,o), +(149,730,cs), +(58,730,o), +(7,654,o), +(11,514,c), +(43,514,l), +(40,629,o), +(70,701,o), +(149,701,cs), +(210,701,o), +(251,656,o), +(251,558,cs), +(251,471,o), +(209,405,o), +(156,325,cs), +(93,231,o), +(13,126,o), +(13,14,cs), +(13,0,l) +); +} +); +width = 306; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,0,l), +(432,157,l), +(152,157,l), +(213,117,l), +(213,174,o), +(243,208,o), +(307,280,cs), +(402,389,o), +(431,445,o), +(431,527,cs), +(431,666,o), +(360,737,o), +(218,737,cs), +(80,737,o), +(2,636,o), +(4,482,c), +(179,482,l), +(181,546,o), +(191,581,o), +(218,581,cs), +(240,581,o), +(251,564,o), +(251,534,cs), +(251,492,o), +(227,461,o), +(162,384,cs), +(35,235,o), +(8,175,o), +(8,38,cs), +(8,0,l) +); +} +); +width = 441; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(494,0,l), +(494,34,l), +(90,34,l), +(99,242,o), +(483,300,o), +(483,532,cs), +(483,646,o), +(400,730,o), +(272,730,cs), +(139,730,o), +(47,643,o), +(52,515,c), +(86,515,l), +(82,624,o), +(158,696,o), +(269,696,cs), +(375,696,o), +(445,630,o), +(445,529,cs), +(445,309,o), +(51,269,o), +(51,13,cs), +(51,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,0,l), +(480,34,l), +(47,34,l), +(63,23,l), +(63,137,o), +(157,210,o), +(267,288,cs), +(395,378,o), +(455,443,o), +(455,539,cs), +(455,659,o), +(376,736,o), +(249,736,cs), +(119,736,o), +(30,647,o), +(25,509,c), +(63,509,l), +(69,628,o), +(141,702,o), +(249,702,cs), +(353,702,o), +(416,641,o), +(416,539,cs), +(416,454,o), +(364,399,o), +(254,321,cs), +(137,238,o), +(27,156,o), +(27,20,cs), +(27,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 494; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(568,0,l), +(568,165,l), +(185,165,l), +(267,133,l), +(263,227,o), +(563,285,o), +(563,511,cs), +(563,639,o), +(465,729,o), +(312,729,cs), +(148,729,o), +(41,639,o), +(31,487,c), +(220,487,l), +(221,532,o), +(247,568,o), +(302,568,cs), +(342,568,o), +(372,544,o), +(372,503,cs), +(372,367,o), +(30,322,o), +(30,35,cs), +(30,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(558,0,l), +(558,165,l), +(177,162,l), +(255,126,l), +(258,167,o), +(316,200,o), +(382,248,cs), +(497,332,o), +(555,398,o), +(555,512,cs), +(555,645,o), +(453,737,o), +(294,737,cs), +(124,737,o), +(12,634,o), +(0,475,c), +(202,475,l), +(207,529,o), +(240,566,o), +(283,566,cs), +(323,566,o), +(351,541,o), +(351,505,cs), +(351,469,o), +(322,444,o), +(235,380,cs), +(62,253,o), +(7,173,o), +(7,35,cs), +(7,0,l) +); +} +); +width = 567; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(583,0,l), +(583,34,l), +(30,34,l), +(44,25,l), +(44,131,o), +(133,192,o), +(332,289,cs), +(508,375,o), +(554,430,o), +(554,535,cs), +(554,652,o), +(461,735,o), +(299,735,cs), +(145,735,o), +(35,656,o), +(23,500,c), +(60,500,l), +(73,628,o), +(159,701,o), +(297,701,cs), +(428,701,o), +(515,641,o), +(515,532,cs), +(515,444,o), +(479,400,o), +(321,324,cs), +(106,221,o), +(10,145,o), +(10,17,cs), +(10,0,l) +); +} +); +width = 590; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,0,l), +(649,170,l), +(198,170,l), +(285,158,l), +(288,186,o), +(366,210,o), +(448,251,cs), +(544,299,o), +(646,369,o), +(646,493,cs), +(646,635,o), +(534,729,o), +(339,729,cs), +(133,729,o), +(16,639,o), +(-6,461,c), +(219,461,l), +(229,526,o), +(266,559,o), +(331,559,cs), +(382,559,o), +(416,530,o), +(416,488,cs), +(416,443,o), +(358,415,o), +(288,379,cs), +(163,315,o), +(-5,237,o), +(-5,46,cs), +(-5,0,l) +); +} +); +width = 657; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(494,0,l), +(494,34,l), +(90,34,l), +(99,242,o), +(483,300,o), +(483,532,cs), +(483,646,o), +(400,730,o), +(272,730,cs), +(139,730,o), +(47,643,o), +(52,515,c), +(86,515,l), +(82,624,o), +(158,696,o), +(269,696,cs), +(375,696,o), +(445,630,o), +(445,529,cs), +(445,309,o), +(51,269,o), +(51,13,cs), +(51,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(481,0,l), +(481,36,l), +(81,36,l), +(97,23,l), +(97,139,o), +(189,210,o), +(284,283,cs), +(404,374,o), +(459,442,o), +(459,539,cs), +(459,660,o), +(385,738,o), +(264,738,cs), +(146,738,o), +(63,649,o), +(62,518,c), +(99,519,l), +(101,628,o), +(167,702,o), +(264,702,cs), +(362,702,o), +(422,641,o), +(422,539,cs), +(422,456,o), +(373,399,o), +(267,318,cs), +(166,241,o), +(61,157,o), +(61,20,cs), +(61,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 525; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(563,0,l), +(563,165,l), +(180,165,l), +(262,133,l), +(258,227,o), +(558,285,o), +(558,511,cs), +(558,639,o), +(460,729,o), +(307,729,cs), +(143,729,o), +(36,639,o), +(26,487,c), +(215,487,l), +(216,532,o), +(242,568,o), +(297,568,cs), +(337,568,o), +(367,544,o), +(367,503,cs), +(367,367,o), +(25,322,o), +(25,35,cs), +(25,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(545,0,l), +(545,167,l), +(155,167,l), +(244,118,l), +(248,156,o), +(322,206,o), +(395,263,cs), +(501,345,o), +(548,423,o), +(548,517,cs), +(548,647,o), +(451,738,o), +(299,738,cs), +(140,738,o), +(36,647,o), +(25,489,c), +(221,489,l), +(228,537,o), +(252,565,o), +(289,565,cs), +(326,565,o), +(347,541,o), +(347,501,cs), +(347,457,o), +(294,420,o), +(230,371,cs), +(83,260,o), +(26,156,o), +(26,35,cs), +(26,0,l) +); +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(265,0,l), +(270,29,l), +(6,29,l), +(18,23,l), +(26,113,o), +(119,197,o), +(209,295,cs), +(277,371,o), +(345,455,o), +(367,557,cs), +(387,657,o), +(354,739,o), +(255,739,cs), +(173,739,o), +(113,670,o), +(89,539,c), +(122,539,l), +(141,645,o), +(182,709,o), +(252,709,cs), +(326,709,o), +(352,646,o), +(334,559,cs), +(315,467,o), +(257,393,o), +(193,324,cs), +(105,228,o), +(6,141,o), +(-16,27,cs), +(-21,0,l) +); +} +); +width = 338; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,0,l), +(422,150,l), +(144,150,l), +(227,133,l), +(208,157,o), +(279,210,o), +(353,285,cs), +(413,345,o), +(476,421,o), +(493,506,cs), +(524,658,o), +(450,739,o), +(300,739,cs), +(168,739,o), +(82,644,o), +(59,491,c), +(237,491,l), +(245,557,o), +(263,587,o), +(289,587,cs), +(321,587,o), +(322,557,o), +(314,519,cs), +(305,475,o), +(262,426,o), +(212,374,cs), +(122,280,o), +(2,174,o), +(-21,58,cs), +(-32,0,l) +); +} +); +width = 464; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(436,0,l), +(443,34,l), +(43,34,l), +(89,269,o), +(536,280,o), +(535,549,cs), +(535,658,o), +(456,729,o), +(344,729,cs), +(219,729,o), +(126,661,o), +(108,516,c), +(144,516,l), +(159,623,o), +(225,695,o), +(342,695,cs), +(436,695,o), +(496,637,o), +(496,551,cs), +(496,297,o), +(62,311,o), +(6,30,cs), +(0,0,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,0,l), +(463,34,l), +(56,34,l), +(71,25,l), +(85,141,o), +(219,208,o), +(340,286,cs), +(444,352,o), +(539,426,o), +(539,547,cs), +(539,660,o), +(459,738,o), +(341,738,cs), +(208,738,o), +(120,660,o), +(99,525,c), +(141,525,l), +(159,638,o), +(228,704,o), +(341,704,cs), +(436,704,o), +(499,641,o), +(499,547,cs), +(499,446,o), +(418,380,o), +(324,318,cs), +(204,239,o), +(61,168,o), +(34,44,cs), +(25,0,l) +); +} +); +width = 550; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(508,0,l), +(543,165,l), +(245,165,l), +(327,255,o), +(593,314,o), +(593,524,cs), +(593,647,o), +(498,729,o), +(357,729,cs), +(206,729,o), +(94,631,o), +(76,486,c), +(258,486,l), +(259,540,o), +(293,572,o), +(341,572,cs), +(381,572,o), +(408,547,o), +(408,508,cs), +(408,366,o), +(19,328,o), +(-18,17,cs), +(-20,0,l) +); +} +); +}; +guides = ( +{ +pos = (228,487); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(514,0,l), +(550,167,l), +(161,167,l), +(231,138,l), +(245,186,o), +(329,224,o), +(414,274,cs), +(507,331,o), +(601,404,o), +(601,528,cs), +(601,654,o), +(512,738,o), +(358,738,cs), +(201,738,o), +(85,639,o), +(75,492,c), +(261,492,l), +(262,545,o), +(297,576,o), +(345,576,cs), +(385,576,o), +(410,554,o), +(410,515,cs), +(410,470,o), +(365,434,o), +(304,395,cs), +(189,322,o), +(20,235,o), +(-15,36,cs), +(-21,0,l) +); +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(550,0,l), +(557,34,l), +(51,34,l), +(89,256,o), +(629,238,o), +(629,527,cs), +(629,648,o), +(532,729,o), +(388,729,cs), +(221,729,o), +(107,648,o), +(79,508,c), +(118,508,l), +(145,628,o), +(241,695,o), +(388,695,cs), +(510,695,o), +(590,628,o), +(590,526,cs), +(590,263,o), +(64,286,o), +(14,44,cs), +(5,0,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(557,0,l), +(564,34,l), +(33,34,l), +(49,25,l), +(67,155,o), +(230,212,o), +(381,277,cs), +(513,335,o), +(637,399,o), +(637,534,cs), +(637,656,o), +(539,738,o), +(393,738,cs), +(224,738,o), +(108,656,o), +(80,514,c), +(119,514,l), +(147,636,o), +(244,704,o), +(393,704,cs), +(516,704,o), +(597,636,o), +(597,533,cs), +(597,420,o), +(490,365,o), +(370,311,cs), +(217,244,o), +(43,182,o), +(12,35,cs), +(5,0,l) +); +} +); +width = 635; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(630,170,l), +(319,170,l), +(447,254,o), +(680,306,o), +(680,510,cs), +(680,652,o), +(555,730,o), +(387,730,cs), +(209,730,o), +(74,639,o), +(53,476,c), +(271,476,l), +(280,529,o), +(316,564,o), +(379,564,cs), +(425,564,o), +(456,536,o), +(456,495,cs), +(456,355,o), +(10,317,o), +(-25,17,cs), +(-27,0,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(606,0,l), +(638,172,l), +(201,172,l), +(265,144,l), +(303,184,o), +(390,214,o), +(475,255,cs), +(582,307,o), +(689,378,o), +(689,513,cs), +(689,658,o), +(570,739,o), +(394,739,cs), +(210,739,o), +(75,647,o), +(54,482,c), +(274,482,l), +(284,536,o), +(320,571,o), +(384,571,cs), +(433,571,o), +(462,547,o), +(462,503,cs), +(462,452,o), +(400,419,o), +(320,382,cs), +(190,320,o), +(13,242,o), +(-22,38,cs), +(-28,0,l) +); +} +); +width = 675; +} +); +unicode = 50; +userData = { +KernOnName = two; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/two.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/two.numr.glyph new file mode 100644 index 00000000..ac48685f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/two.numr.glyph @@ -0,0 +1,450 @@ +{ +color = 6; +glyphname = two.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 258; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 225; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 371; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 376; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 225; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 240; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,332); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 351; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +}; +width = 339; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 371; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 376; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 349; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +}; +width = 343; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 224; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 259; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 353; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 356; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 372; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 386; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/two.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/two.tf.glyph new file mode 100644 index 00000000..101c9db9 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/two.tf.glyph @@ -0,0 +1,923 @@ +{ +glyphname = two.tf; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,0,l), +(457,148,l), +(257,148,l), +(262,203,o), +(453,354,o), +(453,520,cs), +(453,670,o), +(367,730,o), +(234,730,cs), +(90,730,o), +(12,629,o), +(21,474,c), +(198,474,l), +(194,526,o), +(196,580,o), +(234,580,cs), +(261,580,o), +(271,560,o), +(271,518,cs), +(271,390,o), +(31,220,o), +(31,48,cs), +(31,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,0,l), +(388,29,l), +(134,29,l), +(134,181,o), +(373,347,o), +(373,561,cs), +(373,654,o), +(329,730,o), +(237,730,cs), +(146,730,o), +(94,654,o), +(98,514,c), +(130,514,l), +(127,629,o), +(157,701,o), +(237,701,cs), +(299,701,o), +(341,656,o), +(341,558,cs), +(341,349,o), +(100,206,o), +(100,14,cs), +(100,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(636,0,l), +(636,34,l), +(125,34,l), +(125,239,o), +(622,251,o), +(622,524,cs), +(622,647,o), +(526,730,o), +(360,730,cs), +(198,730,o), +(88,648,o), +(89,507,c), +(124,507,l), +(124,620,o), +(211,696,o), +(358,696,cs), +(493,696,o), +(583,636,o), +(583,521,cs), +(583,267,o), +(88,283,o), +(88,17,cs), +(88,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(669,0,l), +(669,167,l), +(339,167,l), +(405,221,o), +(666,289,o), +(666,493,cs), +(666,635,o), +(558,729,o), +(370,729,cs), +(178,729,o), +(64,647,o), +(44,468,c), +(259,468,l), +(266,521,o), +(295,559,o), +(363,559,cs), +(395,559,o), +(441,539,o), +(441,488,cs), +(441,347,o), +(41,311,o), +(41,33,cs), +(41,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 720; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,0,l), +(368,29,l), +(114,29,l), +(114,181,o), +(353,347,o), +(353,561,cs), +(353,654,o), +(309,730,o), +(217,730,cs), +(126,730,o), +(74,654,o), +(78,514,c), +(110,514,l), +(107,629,o), +(137,701,o), +(217,701,cs), +(279,701,o), +(321,656,o), +(321,558,cs), +(321,349,o), +(80,206,o), +(80,14,cs), +(80,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 440; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,0,l), +(447,148,l), +(247,148,l), +(252,203,o), +(443,354,o), +(443,520,cs), +(443,670,o), +(357,730,o), +(224,730,cs), +(80,730,o), +(2,629,o), +(11,474,c), +(188,474,l), +(184,526,o), +(186,580,o), +(224,580,cs), +(251,580,o), +(261,560,o), +(261,518,cs), +(261,390,o), +(21,220,o), +(21,48,cs), +(21,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 460; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(502,0,l), +(502,34,l), +(100,34,l), +(113,247,o), +(496,300,o), +(496,532,cs), +(496,652,o), +(414,729,o), +(281,729,cs), +(146,729,o), +(54,639,o), +(59,512,c), +(97,513,l), +(93,621,o), +(168,695,o), +(281,695,cs), +(391,695,o), +(457,634,o), +(457,532,cs), +(457,319,o), +(64,264,o), +(64,20,cs), +(64,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 560; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(618,0,l), +(618,167,l), +(458,167,ls), +(415,167,o), +(369,164,o), +(325,160,c), +(417,255,o), +(613,310,o), +(613,507,cs), +(613,649,o), +(509,730,o), +(354,730,cs), +(188,730,o), +(79,631,o), +(83,474,c), +(273,474,l), +(267,537,o), +(297,567,o), +(343,567,cs), +(386,567,o), +(415,542,o), +(415,498,cs), +(415,363,o), +(80,339,o), +(80,24,cs), +(80,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,0,l), +(536,165,l), +(226,165,l), +(285,243,o), +(539,312,o), +(539,511,cs), +(539,639,o), +(441,729,o), +(290,729,cs), +(128,729,o), +(21,639,o), +(11,487,c), +(199,487,l), +(200,532,o), +(226,568,o), +(280,568,cs), +(319,568,o), +(349,544,o), +(349,503,cs), +(349,367,o), +(12,322,o), +(12,35,cs), +(12,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 558; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(626,0,l), +(626,34,l), +(115,34,l), +(115,239,o), +(612,251,o), +(612,524,cs), +(612,647,o), +(516,730,o), +(350,730,cs), +(188,730,o), +(78,648,o), +(79,507,c), +(114,507,l), +(114,620,o), +(201,696,o), +(348,696,cs), +(483,696,o), +(573,636,o), +(573,521,cs), +(573,267,o), +(78,283,o), +(78,17,cs), +(78,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 700; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,0,l), +(659,167,l), +(329,167,l), +(395,221,o), +(656,289,o), +(656,493,cs), +(656,635,o), +(548,729,o), +(360,729,cs), +(168,729,o), +(54,647,o), +(34,468,c), +(249,468,l), +(256,521,o), +(285,559,o), +(353,559,cs), +(385,559,o), +(431,539,o), +(431,488,cs), +(431,347,o), +(31,311,o), +(31,33,cs), +(31,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 700; +}; +}; +width = 700; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(515,0,l), +(515,34,l), +(121,34,l), +(134,247,o), +(509,300,o), +(509,532,cs), +(509,652,o), +(429,729,o), +(298,729,cs), +(165,729,o), +(75,639,o), +(80,512,c), +(118,513,l), +(114,621,o), +(187,695,o), +(298,695,cs), +(406,695,o), +(470,634,o), +(470,532,cs), +(470,319,o), +(85,264,o), +(85,20,cs), +(85,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 593; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(618,0,l), +(618,167,l), +(458,167,ls), +(415,167,o), +(369,164,o), +(325,160,c), +(417,255,o), +(613,310,o), +(613,507,cs), +(613,649,o), +(509,730,o), +(354,730,cs), +(188,730,o), +(79,631,o), +(83,474,c), +(273,474,l), +(267,537,o), +(297,567,o), +(343,567,cs), +(386,567,o), +(415,542,o), +(415,498,cs), +(415,363,o), +(80,339,o), +(80,24,cs), +(80,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(541,0,l), +(541,165,l), +(244,165,l), +(302,243,o), +(544,312,o), +(544,511,cs), +(544,639,o), +(448,729,o), +(302,729,cs), +(145,729,o), +(41,639,o), +(31,487,c), +(217,487,l), +(218,532,o), +(242,568,o), +(292,568,cs), +(328,568,o), +(355,544,o), +(355,503,cs), +(355,367,o), +(32,322,o), +(32,35,cs), +(32,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 581; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(340,29,l), +(88,29,l), +(108,186,o), +(387,319,o), +(435,551,cs), +(455,649,o), +(422,730,o), +(323,730,cs), +(241,730,o), +(181,662,o), +(157,532,c), +(189,532,l), +(208,637,o), +(250,700,o), +(320,700,cs), +(395,700,o), +(421,638,o), +(403,551,cs), +(359,339,o), +(89,219,o), +(53,27,cs), +(48,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 400; +useSpacing = 90; +}; +}; +width = 480; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,0,l), +(430,148,l), +(232,148,l), +(252,204,o), +(465,331,o), +(500,500,cs), +(531,650,o), +(456,730,o), +(307,730,cs), +(176,730,o), +(90,636,o), +(67,485,c), +(244,485,l), +(252,550,o), +(270,580,o), +(296,580,cs), +(329,580,o), +(330,550,o), +(322,512,cs), +(298,397,o), +(23,238,o), +(-13,57,cs), +(-24,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 500; +useSpacing = 70; +}; +}; +width = 480; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,0,l), +(492,34,l), +(94,34,l), +(131,239,o), +(566,287,o), +(566,539,cs), +(566,651,o), +(484,729,o), +(364,729,cs), +(228,729,o), +(141,652,o), +(120,519,c), +(161,519,l), +(179,630,o), +(248,695,o), +(364,695,cs), +(462,695,o), +(527,632,o), +(527,539,cs), +(527,313,o), +(103,263,o), +(57,43,cs), +(48,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 85; +}; +}; +width = 600; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,0,l), +(546,165,l), +(247,165,l), +(329,255,o), +(596,314,o), +(596,524,cs), +(596,648,o), +(500,730,o), +(359,730,cs), +(208,730,o), +(96,632,o), +(78,486,c), +(260,486,l), +(261,540,o), +(296,572,o), +(343,572,cs), +(383,572,o), +(411,547,o), +(411,508,cs), +(411,366,o), +(21,328,o), +(-17,17,cs), +(-19,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 600; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,0,l), +(586,34,l), +(79,34,l), +(128,248,o), +(668,250,o), +(679,539,cs), +(683,657,o), +(600,730,o), +(455,730,cs), +(296,730,o), +(170,650,o), +(142,507,c), +(180,507,l), +(201,619,o), +(304,697,o), +(450,697,cs), +(569,697,o), +(643,642,o), +(639,539,cs), +(629,271,o), +(94,294,o), +(39,20,cs), +(35,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 640; +useSpacing = 60; +}; +}; +width = 720; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(621,0,l), +(652,170,l), +(347,170,l), +(474,253,o), +(694,304,o), +(702,504,cs), +(707,641,o), +(615,730,o), +(412,730,cs), +(228,730,o), +(116,643,o), +(81,476,c), +(299,476,l), +(313,529,o), +(334,564,o), +(404,564,cs), +(452,564,o), +(480,543,o), +(478,491,cs), +(473,356,o), +(31,316,o), +(3,17,cs), +(1,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 80; +monoWidth = 700; +}; +}; +width = 720; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/twoinferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/twoinferior.glyph new file mode 100644 index 00000000..ce6bc8ed --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/twoinferior.glyph @@ -0,0 +1,986 @@ +{ +glyphname = twoinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (142,177); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(273,-40,l), +(273,51,l), +(155,51,l), +(158,82,o), +(270,173,o), +(270,271,cs), +(270,362,o), +(219,398,o), +(140,398,cs), +(50,398,o), +(7,334,o), +(12,244,c), +(120,244,l), +(117,276,o), +(118,306,o), +(140,306,cs), +(155,306,o), +(160,294,o), +(160,270,cs), +(160,195,o), +(18,92,o), +(18,-11,cs), +(18,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 287; +}, +{ +anchors = ( +{ +name = _center; +pos = (120,177); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-40,l), +(211,-14,l), +(65,-14,l), +(65,70,o), +(203,169,o), +(203,294,cs), +(203,354,o), +(174,398,o), +(117,398,cs), +(62,398,o), +(26,355,o), +(29,266,c), +(58,266,l), +(57,330,o), +(72,372,o), +(117,372,cs), +(151,372,o), +(174,347,o), +(174,292,cs), +(174,172,o), +(31,85,o), +(31,-29,cs), +(31,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 236; +}, +{ +anchors = ( +{ +name = _center; +pos = (199,173); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(365,-40,l), +(365,-9,l), +(75,-9,l), +(80,102,o), +(357,114,o), +(357,272,cs), +(357,347,o), +(299,398,o), +(199,398,cs), +(100,398,o), +(34,349,o), +(33,261,c), +(68,261,l), +(68,324,o), +(115,367,o), +(197,367,cs), +(269,367,o), +(319,334,o), +(319,270,cs), +(319,126,o), +(32,132,o), +(32,-29,cs), +(32,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 395; +}, +{ +anchors = ( +{ +name = _center; +pos = (201,171); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(389,-40,l), +(389,72,l), +(212,72,l), +(257,91,o), +(388,137,o), +(388,253,cs), +(388,340,o), +(323,397,o), +(211,397,cs), +(94,397,o), +(28,348,o), +(14,237,c), +(158,237,l), +(163,269,o), +(178,284,o), +(206,284,cs), +(225,284,o), +(239,275,o), +(239,250,cs), +(239,175,o), +(12,149,o), +(12,-19,cs), +(12,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 414; +}, +{ +anchors = ( +{ +name = _center; +pos = (100,177); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-40,l), +(191,-14,l), +(45,-14,l), +(45,70,o), +(183,169,o), +(183,294,cs), +(183,354,o), +(154,398,o), +(97,398,cs), +(42,398,o), +(6,355,o), +(9,266,c), +(38,266,l), +(37,330,o), +(52,372,o), +(97,372,cs), +(131,372,o), +(154,347,o), +(154,292,cs), +(154,172,o), +(11,85,o), +(11,-29,cs), +(11,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 196; +}, +{ +anchors = ( +{ +name = _center; +pos = (133,177); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-40,l), +(264,51,l), +(146,51,l), +(149,82,o), +(261,173,o), +(261,271,cs), +(261,362,o), +(210,398,o), +(131,398,cs), +(41,398,o), +(-2,334,o), +(3,244,c), +(111,244,l), +(108,276,o), +(109,306,o), +(131,306,cs), +(146,306,o), +(151,294,o), +(151,270,cs), +(151,195,o), +(9,92,o), +(9,-11,cs), +(9,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 269; +}, +{ +anchors = ( +{ +name = _center; +pos = (165,174); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,-40,l), +(300,-9,l), +(68,-9,l), +(80,108,o), +(297,141,o), +(297,278,cs), +(297,350,o), +(247,397,o), +(167,397,cs), +(84,397,o), +(28,344,o), +(30,266,c), +(65,266,l), +(63,329,o), +(107,367,o), +(166,367,cs), +(225,367,o), +(262,333,o), +(262,277,cs), +(262,155,o), +(33,123,o), +(33,-27,cs), +(33,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 330; +}, +{ +anchors = ( +{ +name = _center; +pos = (170,174); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,-40,l), +(331,70,l), +(151,70,l), +(189,105,o), +(334,148,o), +(334,265,cs), +(334,342,o), +(273,397,o), +(180,397,cs), +(74,397,o), +(13,339,o), +(6,250,c), +(132,250,l), +(133,269,o), +(143,290,o), +(173,290,cs), +(190,290,o), +(206,279,o), +(206,259,cs), +(206,184,o), +(6,158,o), +(6,-18,cs), +(6,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 347; +}, +{ +anchors = ( +{ +name = _center; +pos = (189,173); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,-40,l), +(355,-9,l), +(65,-9,l), +(70,102,o), +(347,114,o), +(347,272,cs), +(347,347,o), +(289,398,o), +(189,398,cs), +(90,398,o), +(24,349,o), +(23,261,c), +(58,261,l), +(58,324,o), +(105,367,o), +(187,367,cs), +(259,367,o), +(309,334,o), +(309,270,cs), +(309,126,o), +(22,132,o), +(22,-29,cs), +(22,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 375; +}, +{ +anchors = ( +{ +name = _center; +pos = (191,171); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-40,l), +(379,72,l), +(202,72,l), +(247,91,o), +(378,137,o), +(378,253,cs), +(378,340,o), +(313,397,o), +(201,397,cs), +(84,397,o), +(18,348,o), +(4,237,c), +(148,237,l), +(153,269,o), +(168,284,o), +(196,284,cs), +(215,284,o), +(229,275,o), +(229,250,cs), +(229,175,o), +(2,149,o), +(2,-19,cs), +(2,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 394; +}, +{ +anchors = ( +{ +name = _center; +pos = (184,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(317,-40,l), +(317,-9,l), +(89,-9,l), +(101,108,o), +(314,141,o), +(314,278,cs), +(314,350,o), +(264,397,o), +(186,397,cs), +(105,397,o), +(51,344,o), +(52,266,c), +(86,266,l), +(84,329,o), +(128,367,o), +(185,367,cs), +(244,367,o), +(279,333,o), +(279,277,cs), +(279,155,o), +(54,123,o), +(54,-27,cs), +(54,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 367; +}, +{ +anchors = ( +{ +name = _center; +pos = (183,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-40,l), +(338,70,l), +(169,70,l), +(207,105,o), +(341,148,o), +(341,265,cs), +(341,342,o), +(282,397,o), +(193,397,cs), +(91,397,o), +(33,339,o), +(26,250,c), +(150,250,l), +(151,269,o), +(159,290,o), +(186,290,cs), +(200,290,o), +(214,279,o), +(214,259,cs), +(214,184,o), +(26,158,o), +(26,-18,cs), +(26,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 372; +}, +{ +anchors = ( +{ +name = _center; +pos = (90,177); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-40,l), +(153,-14,l), +(8,-14,l), +(21,73,o), +(180,152,o), +(208,285,cs), +(221,346,o), +(202,398,o), +(137,398,cs), +(83,398,o), +(47,353,o), +(33,276,c), +(63,276,l), +(73,336,o), +(97,371,o), +(134,371,cs), +(175,371,o), +(189,337,o), +(179,289,cs), +(154,171,o), +(-5,93,o), +(-27,-22,cs), +(-31,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 236; +}, +{ +anchors = ( +{ +name = _center; +pos = (113,177); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,-40,l), +(226,51,l), +(109,51,l), +(121,83,o), +(246,158,o), +(267,258,cs), +(286,350,o), +(242,398,o), +(152,398,cs), +(75,398,o), +(22,344,o), +(8,250,c), +(115,250,l), +(120,289,o), +(131,306,o), +(145,306,cs), +(163,306,o), +(164,290,o), +(159,267,cs), +(145,203,o), +(-17,103,o), +(-39,-5,cs), +(-46,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 286; +}, +{ +anchors = ( +{ +name = _center; +pos = (161,177); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(267,-40,l), +(273,-9,l), +(49,-9,l), +(75,105,o), +(317,134,o), +(317,283,cs), +(317,351,o), +(267,397,o), +(196,397,cs), +(116,397,o), +(62,350,o), +(50,269,c), +(85,269,l), +(95,331,o), +(132,367,o), +(195,367,cs), +(247,367,o), +(282,333,o), +(282,281,cs), +(282,152,o), +(36,123,o), +(9,-16,cs), +(4,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 373; +}, +{ +anchors = ( +{ +name = _center; +pos = (155,177); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-40,l), +(315,70,l), +(144,70,l), +(198,115,o), +(343,151,o), +(343,273,cs), +(343,348,o), +(285,398,o), +(198,398,cs), +(105,398,o), +(36,337,o), +(26,249,c), +(147,249,l), +(146,278,o), +(165,293,o), +(187,293,cs), +(206,293,o), +(219,281,o), +(219,262,cs), +(219,184,o), +(-11,162,o), +(-33,-32,cs), +(-34,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 387; +}, +{ +anchors = ( +{ +name = _center; +pos = (166,177); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-40,l), +(308,-9,l), +(22,-9,l), +(58,110,o), +(360,114,o), +(360,286,cs), +(360,356,o), +(309,398,o), +(222,398,cs), +(128,398,o), +(52,352,o), +(34,262,c), +(71,262,l), +(83,324,o), +(138,368,o), +(219,368,cs), +(282,368,o), +(322,338,o), +(322,284,cs), +(322,131,o), +(5,139,o), +(-26,-28,cs), +(-28,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 395; +}, +{ +anchors = ( +{ +name = _center; +pos = (175,177); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,-40,l), +(364,74,l), +(193,74,l), +(279,114,o), +(390,148,o), +(390,265,cs), +(390,346,o), +(334,398,o), +(208,398,cs), +(95,398,o), +(27,345,o), +(6,243,c), +(152,243,l), +(160,270,o), +(167,287,o), +(203,287,cs), +(225,287,o), +(241,277,o), +(240,252,cs), +(238,185,o), +(-24,151,o), +(-39,-30,cs), +(-40,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 426; +} +); +unicode = 8322; +userData = { +KernOnName = twoinferior; +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/twosuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/twosuperior.glyph new file mode 100644 index 00000000..98762cc5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/twosuperior.glyph @@ -0,0 +1,451 @@ +{ +color = 6; +glyphname = twosuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 287; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 236; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 395; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 414; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 236; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 269; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = twoinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = twoinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 370; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = twoinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = twoinferior; +}; +width = 369; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 395; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 414; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = twoinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = twoinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 367; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = twoinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = twoinferior; +}; +width = 372; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 236; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 286; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 373; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 387; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 395; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 426; +} +); +unicode = 178; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/u.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/u.glyph new file mode 100644 index 00000000..1e45e5df --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/u.glyph @@ -0,0 +1,1039 @@ +{ +glyphname = u; +kernLeft = KO_u; +kernRight = KO_a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = ogonek; +pos = (447,0); +}, +{ +name = top; +pos = (235,541); +}, +{ +name = topright; +pos = (327,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-10,o), +(243,18,o), +(264,64,c), +(271,64,l), +(277,0,l), +(447,0,l), +(447,541,l), +(271,541,l), +(271,213,ls), +(271,160,o), +(264,131,o), +(234,131,cs), +(211,131,o), +(200,148,o), +(200,206,cs), +(200,541,l), +(23,541,l), +(23,194,ls), +(23,46,o), +(65,-10,o), +(154,-10,cs) +); +} +); +width = 474; +}, +{ +anchors = ( +{ +name = bottom; +pos = (176,0); +}, +{ +name = ogonek; +pos = (294,0); +}, +{ +name = top; +pos = (176,516); +}, +{ +name = topright; +pos = (280,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-10,o), +(247,21,o), +(263,77,c), +(265,77,l), +(266,0,l), +(294,0,l), +(294,516,l), +(265,516,l), +(265,209,ls), +(265,95,o), +(238,16,o), +(164,16,cs), +(114,16,o), +(86,41,o), +(86,145,cs), +(86,516,l), +(57,516,l), +(57,138,ls), +(57,39,o), +(88,-10,o), +(156,-10,cs) +); +} +); +width = 354; +}, +{ +anchors = ( +{ +name = bottom; +pos = (307,0); +}, +{ +name = ogonek; +pos = (560,0); +}, +{ +name = top; +pos = (307,517); +}, +{ +name = topright; +pos = (523,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(386,-8,o), +(477,42,o), +(518,130,c), +(523,130,l), +(524,0,l), +(560,0,l), +(560,517,l), +(523,517,l), +(523,262,ls), +(523,120,o), +(425,26,o), +(286,26,cs), +(159,26,o), +(91,88,o), +(91,238,cs), +(91,517,l), +(54,517,l), +(54,232,ls), +(54,56,o), +(149,-8,o), +(281,-8,cs) +); +} +); +width = 626; +}, +{ +anchors = ( +{ +name = bottom; +pos = (359,0); +}, +{ +name = ogonek; +pos = (680,0); +}, +{ +name = top; +pos = (356,544); +}, +{ +name = topright; +pos = (494,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(346,-10,o), +(419,26,o), +(450,79,c), +(459,79,l), +(468,0,l), +(680,0,l), +(680,544,l), +(459,544,l), +(459,273,ls), +(459,204,o), +(417,155,o), +(346,155,cs), +(271,155,o), +(253,209,o), +(253,284,cs), +(253,544,l), +(32,544,l), +(32,244,ls), +(32,55,o), +(124,-10,o), +(267,-10,cs) +); +} +); +width = 723; +}, +{ +anchors = ( +{ +name = bottom; +pos = (150,0); +}, +{ +name = ogonek; +pos = (265,0); +}, +{ +name = top; +pos = (150,516); +}, +{ +name = topright; +pos = (251,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,-10,o), +(220,23,o), +(235,79,c), +(236,79,l), +(237,0,l), +(266,0,l), +(266,516,l), +(236,516,l), +(236,209,ls), +(236,98,o), +(195,16,o), +(139,16,cs), +(92,16,o), +(64,41,o), +(64,145,cs), +(64,516,l), +(34,516,l), +(34,138,ls), +(34,39,o), +(65,-10,o), +(131,-10,cs) +); +} +); +width = 301; +}, +{ +anchors = ( +{ +name = bottom; +pos = (223,0); +}, +{ +name = ogonek; +pos = (433,0); +}, +{ +name = top; +pos = (223,541); +}, +{ +name = topright; +pos = (315,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,-10,o), +(230,18,o), +(256,72,c), +(257,72,l), +(263,0,l), +(433,0,l), +(433,541,l), +(257,541,l), +(257,213,ls), +(257,160,o), +(250,131,o), +(222,131,cs), +(200,131,o), +(190,148,o), +(190,206,cs), +(190,541,l), +(13,541,l), +(13,194,ls), +(13,46,o), +(54,-10,o), +(142,-10,cs) +); +} +); +width = 449; +}, +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = ogonek; +pos = (476,0); +}, +{ +name = top; +pos = (266,517); +}, +{ +name = topright; +pos = (439,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,-8,o), +(407,42,o), +(438,129,c), +(439,129,l), +(442,0,l), +(476,0,l), +(476,517,l), +(439,517,l), +(439,249,ls), +(439,112,o), +(360,26,o), +(252,26,cs), +(139,26,o), +(92,94,o), +(92,211,cs), +(92,517,l), +(55,517,l), +(55,204,ls), +(55,61,o), +(131,-8,o), +(244,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 535; +}, +{ +anchors = ( +{ +name = bottom; +pos = (300,0); +}, +{ +name = ogonek; +pos = (575,0); +}, +{ +name = top; +pos = (300,544); +}, +{ +name = topright; +pos = (413,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-10,o), +(353,29,o), +(383,99,c), +(384,99,l), +(391,0,l), +(575,0,l), +(575,544,l), +(384,544,l), +(384,246,ls), +(384,187,o), +(346,144,o), +(295,144,cs), +(238,144,o), +(216,181,o), +(216,253,cs), +(216,544,l), +(25,544,l), +(25,201,ls), +(25,66,o), +(88,-10,o), +(217,-10,cs) +); +} +); +width = 605; +}, +{ +anchors = ( +{ +name = bottom; +pos = (297,0); +}, +{ +name = ogonek; +pos = (550,0); +}, +{ +name = top; +pos = (297,517); +}, +{ +name = topright; +pos = (513,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(383,-8,o), +(473,46,o), +(512,137,c), +(513,137,l), +(514,0,l), +(550,0,l), +(550,517,l), +(513,517,l), +(513,262,ls), +(513,120,o), +(415,26,o), +(276,26,cs), +(149,26,o), +(81,88,o), +(81,238,cs), +(81,517,l), +(44,517,l), +(44,232,ls), +(44,56,o), +(139,-8,o), +(271,-8,cs) +); +} +); +width = 606; +}, +{ +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = ogonek; +pos = (669,0); +}, +{ +name = top; +pos = (345,544); +}, +{ +name = topright; +pos = (483,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(335,-10,o), +(408,26,o), +(439,79,c), +(448,79,l), +(457,0,l), +(669,0,l), +(669,544,l), +(448,544,l), +(448,273,ls), +(448,204,o), +(406,155,o), +(335,155,cs), +(260,155,o), +(242,209,o), +(242,284,cs), +(242,544,l), +(21,544,l), +(21,244,ls), +(21,55,o), +(113,-10,o), +(256,-10,cs) +); +} +); +width = 699; +}, +{ +anchors = ( +{ +name = bottom; +pos = (279,0); +}, +{ +name = ogonek; +pos = (476,0); +}, +{ +name = top; +pos = (279,517); +}, +{ +name = topright; +pos = (441,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-8,o), +(411,40,o), +(437,117,c), +(441,117,l), +(444,0,l), +(476,0,l), +(476,517,l), +(441,517,l), +(441,245,ls), +(441,108,o), +(366,26,o), +(265,26,cs), +(161,26,o), +(119,93,o), +(119,207,cs), +(119,517,l), +(82,517,l), +(82,200,ls), +(82,60,o), +(152,-8,o), +(257,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 561; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = ogonek; +pos = (567,0); +}, +{ +name = top; +pos = (309,544); +}, +{ +name = topright; +pos = (412,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-10,o), +(347,25,o), +(368,89,c), +(380,89,l), +(385,0,l), +(567,0,l), +(567,544,l), +(378,544,l), +(378,231,ls), +(378,189,o), +(355,144,o), +(304,144,cs), +(260,144,o), +(242,179,o), +(242,248,cs), +(242,544,l), +(52,544,l), +(52,200,ls), +(52,67,o), +(109,-10,o), +(228,-10,cs) +); +} +); +width = 624; +}, +{ +anchors = ( +{ +name = bottom; +pos = (132,0); +}, +{ +name = ogonek; +pos = (239,0); +}, +{ +name = top; +pos = (228,516); +}, +{ +name = topright; +pos = (316,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(156,-10,o), +(198,19,o), +(221,70,c), +(223,70,l), +(212,0,l), +(239,0,l), +(345,516,l), +(316,516,l), +(252,201,ls), +(229,88,o), +(186,15,o), +(120,15,cs), +(50,15,o), +(46,68,o), +(63,149,cs), +(139,516,l), +(110,516,l), +(33,145,ls), +(15,59,o), +(24,-10,o), +(108,-10,cs) +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = bottom; +pos = (188,0); +}, +{ +name = ogonek; +pos = (389,0); +}, +{ +name = top; +pos = (290,541); +}, +{ +name = topright; +pos = (376,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,-10,o), +(185,10,o), +(217,56,c), +(223,56,l), +(217,0,l), +(389,0,l), +(500,541,l), +(324,541,l), +(254,204,ls), +(243,151,o), +(230,125,o), +(204,125,cs), +(174,125,o), +(174,155,o), +(184,201,cs), +(256,541,l), +(78,541,l), +(8,203,ls), +(-21,65,o), +(1,-10,o), +(107,-10,cs) +); +} +); +width = 471; +}, +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = ogonek; +pos = (430,0); +}, +{ +name = top; +pos = (333,517); +}, +{ +name = topright; +pos = (501,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-10,o), +(362,25,o), +(411,103,c), +(414,103,l), +(399,0,l), +(430,0,l), +(537,517,l), +(501,517,l), +(441,225,ls), +(415,98,o), +(327,24,o), +(223,24,cs), +(115,24,o), +(76,98,o), +(104,230,cs), +(164,517,l), +(127,517,l), +(66,227,ls), +(33,69,o), +(101,-10,o), +(215,-10,cs) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = bottom; +pos = (269,0); +}, +{ +name = ogonek; +pos = (527,0); +}, +{ +name = top; +pos = (371,544); +}, +{ +name = topright; +pos = (475,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,-10,o), +(304,14,o), +(344,77,c), +(352,77,l), +(344,0,l), +(527,0,l), +(640,544,l), +(449,544,l), +(383,231,ls), +(372,178,o), +(341,143,o), +(291,143,cs), +(235,143,o), +(218,183,o), +(232,252,cs), +(292,544,l), +(101,544,l), +(36,233,ls), +(4,78,o), +(54,-10,o), +(178,-10,cs) +); +} +); +width = 638; +}, +{ +anchors = ( +{ +name = bottom; +pos = (261,0); +}, +{ +name = ogonek; +pos = (500,0); +}, +{ +name = top; +pos = (357,517); +}, +{ +name = topright; +pos = (571,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,-10,o), +(425,33,o), +(479,112,c), +(484,112,l), +(464,0,l), +(500,0,l), +(607,517,l), +(571,517,l), +(513,241,ls), +(485,109,o), +(382,23,o), +(252,23,cs), +(124,23,o), +(55,88,o), +(88,251,cs), +(142,517,l), +(106,517,l), +(50,247,ls), +(14,72,o), +(99,-10,o), +(243,-10,cs) +); +} +); +width = 620; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = ogonek; +pos = (614,0); +}, +{ +name = top; +pos = (407,544); +}, +{ +name = topright; +pos = (548,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-10,o), +(364,19,o), +(401,66,c), +(408,66,l), +(406,0,l), +(614,0,l), +(728,544,l), +(509,544,l), +(451,268,ls), +(436,196,o), +(399,155,o), +(325,155,cs), +(265,155,o), +(232,197,o), +(250,283,cs), +(305,544,l), +(86,544,l), +(27,262,ls), +(-9,88,o), +(71,-10,o), +(223,-10,cs) +); +} +); +width = 714; +} +); +unicode = 117; +userData = { +KernOnName = u; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uacute.glyph new file mode 100644 index 00000000..50ccbed3 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uacute.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = uacute; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (120,-156); +ref = acutecomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (123,-137); +ref = acutecomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (249,-155); +ref = acutecomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (239,-129); +ref = acutecomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (114,-156); +ref = acutecomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (121,-137); +ref = acutecomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (231,-155); +ref = acutecomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (209,-134); +ref = acutecomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (249,-155); +ref = acutecomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (239,-129); +ref = acutecomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (223,-155); +ref = acutecomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (199,-134); +ref = acutecomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (87,-156); +ref = acutecomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (95,-137); +ref = acutecomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (191,-155); +ref = acutecomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (176,-134); +ref = acutecomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (214,-155); +ref = acutecomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (207,-129); +ref = acutecomb; +} +); +width = 714; +} +); +unicode = 250; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ubreve.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ubreve.glyph new file mode 100644 index 00000000..b9238030 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ubreve.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = ubreve; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (52,-156); +ref = brevecomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (40,-137); +ref = brevecomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (133,-155); +ref = brevecomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (117,-129); +ref = brevecomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (46,-156); +ref = brevecomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (38,-137); +ref = brevecomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (118,-161); +ref = brevecomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (102,-134); +ref = brevecomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (133,-155); +ref = brevecomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (117,-129); +ref = brevecomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (112,-161); +ref = brevecomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (98,-134); +ref = brevecomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (14,-156); +ref = brevecomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (10,-137); +ref = brevecomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (77,-155); +ref = brevecomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (59,-134); +ref = brevecomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (92,-155); +ref = brevecomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (85,-134); +ref = brevecomb; +} +); +width = 714; +} +); +unicode = 365; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ucircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ucircumflex.glyph new file mode 100644 index 00000000..004cfc15 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ucircumflex.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = ucircumflex; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (47,-156); +ref = circumflexcomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (18,-137); +ref = circumflexcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (65,-129); +ref = circumflexcomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (41,-156); +ref = circumflexcomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (16,-137); +ref = circumflexcomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (122,-155); +ref = circumflexcomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (74,-134); +ref = circumflexcomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (128,-155); +ref = circumflexcomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (65,-129); +ref = circumflexcomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (116,-155); +ref = circumflexcomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (70,-134); +ref = circumflexcomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (13,-156); +ref = circumflexcomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (-12,-137); +ref = circumflexcomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (81,-155); +ref = circumflexcomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (42,-134); +ref = circumflexcomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (91,-155); +ref = circumflexcomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (31,-129); +ref = circumflexcomb; +} +); +width = 714; +} +); +unicode = 251; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/udieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/udieresis.glyph new file mode 100644 index 00000000..4729abcc --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/udieresis.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = udieresis; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (58,-156); +ref = dieresiscomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (10,-137); +ref = dieresiscomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (130,-155); +ref = dieresiscomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (73,-134); +ref = dieresiscomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (52,-156); +ref = dieresiscomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (8,-137); +ref = dieresiscomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (124,-155); +ref = dieresiscomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (78,-134); +ref = dieresiscomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (130,-155); +ref = dieresiscomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (73,-134); +ref = dieresiscomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (118,-155); +ref = dieresiscomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (74,-134); +ref = dieresiscomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (19,-156); +ref = dieresiscomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (-27,-137); +ref = dieresiscomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (86,-155); +ref = dieresiscomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (42,-134); +ref = dieresiscomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (95,-155); +ref = dieresiscomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (38,-134); +ref = dieresiscomb; +} +); +width = 714; +} +); +unicode = 252; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/udieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/udieresis.ss01.glyph new file mode 100644 index 00000000..00133efe --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/udieresis.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = udieresis.ss01; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (69,-156); +ref = dieresiscomb.ss01; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (11,-137); +ref = dieresiscomb.ss01; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (163,-155); +ref = dieresiscomb.ss01; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (95,-134); +ref = dieresiscomb.ss01; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (63,-156); +ref = dieresiscomb.ss01; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (9,-137); +ref = dieresiscomb.ss01; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (151,-155); +ref = dieresiscomb.ss01; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (90,-134); +ref = dieresiscomb.ss01; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (163,-155); +ref = dieresiscomb.ss01; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (95,-134); +ref = dieresiscomb.ss01; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (143,-155); +ref = dieresiscomb.ss01; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (86,-134); +ref = dieresiscomb.ss01; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (32,-156); +ref = dieresiscomb.ss01; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (-19,-137); +ref = dieresiscomb.ss01; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (108,-155); +ref = dieresiscomb.ss01; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (58,-134); +ref = dieresiscomb.ss01; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (132,-155); +ref = dieresiscomb.ss01; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (67,-134); +ref = dieresiscomb.ss01; +} +); +width = 714; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/udotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/udotbelow.glyph new file mode 100644 index 00000000..4f3d554d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/udotbelow.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = udotbelow; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (113,0); +ref = dotbelowcomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (117,0); +ref = dotbelowcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (235,0); +ref = dotbelowcomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (206,0); +ref = dotbelowcomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (107,0); +ref = dotbelowcomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (115,0); +ref = dotbelowcomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (214,0); +ref = dotbelowcomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (196,0); +ref = dotbelowcomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (235,0); +ref = dotbelowcomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (206,0); +ref = dotbelowcomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (206,0); +ref = dotbelowcomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (188,0); +ref = dotbelowcomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (122,0); +ref = dotbelowcomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (123,0); +ref = dotbelowcomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (217,0); +ref = dotbelowcomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (198,0); +ref = dotbelowcomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (244,0); +ref = dotbelowcomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (211,0); +ref = dotbelowcomb; +} +); +width = 714; +} +); +unicode = 7909; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/udotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/udotbelow.ss01.glyph new file mode 100644 index 00000000..babcfa22 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/udotbelow.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = udotbelow.ss01; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (121,0); +ref = dotbelowcomb.ss01; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (106,0); +ref = dotbelowcomb.ss01; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (248,0); +ref = dotbelowcomb.ss01; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (218,0); +ref = dotbelowcomb.ss01; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (115,0); +ref = dotbelowcomb.ss01; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (104,0); +ref = dotbelowcomb.ss01; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (227,0); +ref = dotbelowcomb.ss01; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (185,0); +ref = dotbelowcomb.ss01; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (248,0); +ref = dotbelowcomb.ss01; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (218,0); +ref = dotbelowcomb.ss01; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (219,0); +ref = dotbelowcomb.ss01; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (175,0); +ref = dotbelowcomb.ss01; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (130,0); +ref = dotbelowcomb.ss01; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (114,0); +ref = dotbelowcomb.ss01; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (230,0); +ref = dotbelowcomb.ss01; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (189,0); +ref = dotbelowcomb.ss01; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (255,0); +ref = dotbelowcomb.ss01; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (225,0); +ref = dotbelowcomb.ss01; +} +); +width = 714; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ugrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ugrave.glyph new file mode 100644 index 00000000..c3980cbd --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ugrave.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = ugrave; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (42,-156); +ref = gravecomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (26,-137); +ref = gravecomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (163,-155); +ref = gravecomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (122,-129); +ref = gravecomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,-156); +ref = gravecomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (24,-137); +ref = gravecomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (152,-155); +ref = gravecomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (112,-134); +ref = gravecomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (163,-155); +ref = gravecomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (122,-129); +ref = gravecomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (144,-155); +ref = gravecomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (110,-134); +ref = gravecomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (10,-156); +ref = gravecomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (5,-137); +ref = gravecomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (114,-155); +ref = gravecomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (75,-134); +ref = gravecomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (127,-155); +ref = gravecomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (90,-129); +ref = gravecomb; +} +); +width = 714; +} +); +unicode = 249; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uhookabove.glyph new file mode 100644 index 00000000..9fcb57ca --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uhookabove.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = uhookabove; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (95,-156); +ref = hookabovecomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (96,-138); +ref = hookabovecomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (199,-155); +ref = hookabovecomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (203,-134); +ref = hookabovecomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (89,-156); +ref = hookabovecomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (94,-138); +ref = hookabovecomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (178,-155); +ref = hookabovecomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (158,-134); +ref = hookabovecomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (199,-155); +ref = hookabovecomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (203,-134); +ref = hookabovecomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (170,-155); +ref = hookabovecomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (153,-134); +ref = hookabovecomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (39,-157); +ref = hookabovecomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (59,-139); +ref = hookabovecomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (144,-156); +ref = hookabovecomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (116,-135); +ref = hookabovecomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (169,-156); +ref = hookabovecomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (155,-137); +ref = hookabovecomb; +} +); +width = 714; +} +); +unicode = 7911; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uhorn.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorn.glyph new file mode 100644 index 00000000..1aefc5c7 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorn.glyph @@ -0,0 +1,261 @@ +{ +color = 7; +glyphname = uhorn; +kernLeft = KO_u; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (240,0); +ref = horncomb; +} +); +width = 356; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (287,-1); +ref = horncomb; +} +); +width = 518; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (483,-8); +ref = horncomb; +} +); +width = 659; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (454,-66); +ref = horncomb; +} +); +width = 765; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (231,0); +ref = horncomb; +} +); +width = 316; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (285,-1); +ref = horncomb; +} +); +width = 498; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (419,8); +ref = horncomb; +} +); +width = 569; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (394,-46); +ref = horncomb; +} +); +width = 639; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (483,-8); +ref = horncomb; +} +); +width = 639; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (453,-66); +ref = horncomb; +} +); +width = 745; +}, +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (398,8); +ref = horncomb; +} +); +width = 602; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (373,-46); +ref = horncomb; +} +); +width = 671; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (223,0); +ref = horncomb; +} +); +width = 353; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (280,-1); +ref = horncomb; +} +); +width = 515; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (409,7); +ref = horncomb; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (369,-46); +ref = horncomb; +} +); +width = 673; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (476,-8); +ref = horncomb; +} +); +width = 665; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +pos = (436,-78); +ref = horncomb; +} +); +width = 769; +} +); +metricLeft = u; +unicode = 432; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uhornacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uhornacute.glyph new file mode 100644 index 00000000..dbdc7914 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uhornacute.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = uhornacute; +kernLeft = KO_u; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (120,-156); +ref = acutecomb; +} +); +width = 356; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (123,-137); +ref = acutecomb; +} +); +width = 518; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (249,-155); +ref = acutecomb; +} +); +width = 659; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (239,-129); +ref = acutecomb; +} +); +width = 765; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (114,-156); +ref = acutecomb; +} +); +width = 316; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (121,-137); +ref = acutecomb; +} +); +width = 498; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (231,-155); +ref = acutecomb; +} +); +width = 569; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (209,-134); +ref = acutecomb; +} +); +width = 639; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (249,-155); +ref = acutecomb; +} +); +width = 659; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (239,-129); +ref = acutecomb; +} +); +width = 765; +}, +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (223,-155); +ref = acutecomb; +} +); +width = 602; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (199,-134); +ref = acutecomb; +} +); +width = 671; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (87,-156); +ref = acutecomb; +} +); +width = 353; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (95,-137); +ref = acutecomb; +} +); +width = 515; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (191,-155); +ref = acutecomb; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (176,-134); +ref = acutecomb; +} +); +width = 673; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (214,-155); +ref = acutecomb; +} +); +width = 665; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (207,-129); +ref = acutecomb; +} +); +width = 769; +} +); +unicode = 7913; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uhorndotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorndotbelow.glyph new file mode 100644 index 00000000..374dd961 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorndotbelow.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = uhorndotbelow; +kernLeft = KO_u; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (113,0); +ref = dotbelowcomb; +} +); +width = 356; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (117,0); +ref = dotbelowcomb; +} +); +width = 518; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (235,0); +ref = dotbelowcomb; +} +); +width = 659; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (206,0); +ref = dotbelowcomb; +} +); +width = 765; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (107,0); +ref = dotbelowcomb; +} +); +width = 316; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (115,0); +ref = dotbelowcomb; +} +); +width = 498; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (214,0); +ref = dotbelowcomb; +} +); +width = 569; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (196,0); +ref = dotbelowcomb; +} +); +width = 639; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (235,0); +ref = dotbelowcomb; +} +); +width = 659; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (206,0); +ref = dotbelowcomb; +} +); +width = 765; +}, +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (206,0); +ref = dotbelowcomb; +} +); +width = 602; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (188,0); +ref = dotbelowcomb; +} +); +width = 671; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (122,0); +ref = dotbelowcomb; +} +); +width = 353; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (123,0); +ref = dotbelowcomb; +} +); +width = 515; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (217,0); +ref = dotbelowcomb; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (198,0); +ref = dotbelowcomb; +} +); +width = 673; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (244,0); +ref = dotbelowcomb; +} +); +width = 665; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (211,0); +ref = dotbelowcomb; +} +); +width = 769; +} +); +unicode = 7921; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uhorndotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorndotbelow.ss01.glyph new file mode 100644 index 00000000..171ab3b2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorndotbelow.ss01.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = uhorndotbelow.ss01; +kernLeft = KO_u; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (121,0); +ref = dotbelowcomb.ss01; +} +); +width = 356; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (106,0); +ref = dotbelowcomb.ss01; +} +); +width = 518; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (248,0); +ref = dotbelowcomb.ss01; +} +); +width = 659; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (218,0); +ref = dotbelowcomb.ss01; +} +); +width = 765; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (115,0); +ref = dotbelowcomb.ss01; +} +); +width = 316; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (104,0); +ref = dotbelowcomb.ss01; +} +); +width = 498; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (227,0); +ref = dotbelowcomb.ss01; +} +); +width = 569; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (185,0); +ref = dotbelowcomb.ss01; +} +); +width = 639; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (248,0); +ref = dotbelowcomb.ss01; +} +); +width = 659; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (218,0); +ref = dotbelowcomb.ss01; +} +); +width = 765; +}, +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (219,0); +ref = dotbelowcomb.ss01; +} +); +width = 602; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (175,0); +ref = dotbelowcomb.ss01; +} +); +width = 671; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (130,0); +ref = dotbelowcomb.ss01; +} +); +width = 353; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (114,0); +ref = dotbelowcomb.ss01; +} +); +width = 515; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (230,0); +ref = dotbelowcomb.ss01; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (189,0); +ref = dotbelowcomb.ss01; +} +); +width = 673; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (255,0); +ref = dotbelowcomb.ss01; +} +); +width = 665; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (225,0); +ref = dotbelowcomb.ss01; +} +); +width = 769; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uhorngrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorngrave.glyph new file mode 100644 index 00000000..bf658703 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorngrave.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = uhorngrave; +kernLeft = KO_u; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (42,-156); +ref = gravecomb; +} +); +width = 356; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (26,-137); +ref = gravecomb; +} +); +width = 518; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (163,-155); +ref = gravecomb; +} +); +width = 659; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (122,-129); +ref = gravecomb; +} +); +width = 765; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (36,-156); +ref = gravecomb; +} +); +width = 316; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (24,-137); +ref = gravecomb; +} +); +width = 498; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (152,-155); +ref = gravecomb; +} +); +width = 569; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (112,-134); +ref = gravecomb; +} +); +width = 639; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (163,-155); +ref = gravecomb; +} +); +width = 659; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (122,-129); +ref = gravecomb; +} +); +width = 765; +}, +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (144,-155); +ref = gravecomb; +} +); +width = 602; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (110,-134); +ref = gravecomb; +} +); +width = 671; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (10,-156); +ref = gravecomb; +} +); +width = 353; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (5,-137); +ref = gravecomb; +} +); +width = 515; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (114,-155); +ref = gravecomb; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (75,-134); +ref = gravecomb; +} +); +width = 673; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (127,-155); +ref = gravecomb; +} +); +width = 665; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (90,-129); +ref = gravecomb; +} +); +width = 769; +} +); +unicode = 7915; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uhornhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uhornhookabove.glyph new file mode 100644 index 00000000..c2466aba --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uhornhookabove.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = uhornhookabove; +kernLeft = KO_u; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (95,-156); +ref = hookabovecomb; +} +); +width = 356; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (96,-138); +ref = hookabovecomb; +} +); +width = 518; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (199,-155); +ref = hookabovecomb; +} +); +width = 659; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (203,-134); +ref = hookabovecomb; +} +); +width = 765; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (89,-156); +ref = hookabovecomb; +} +); +width = 316; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (94,-138); +ref = hookabovecomb; +} +); +width = 498; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (178,-155); +ref = hookabovecomb; +} +); +width = 569; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (158,-134); +ref = hookabovecomb; +} +); +width = 639; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (199,-155); +ref = hookabovecomb; +} +); +width = 659; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (203,-134); +ref = hookabovecomb; +} +); +width = 765; +}, +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (170,-155); +ref = hookabovecomb; +} +); +width = 602; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (153,-134); +ref = hookabovecomb; +} +); +width = 671; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (39,-157); +ref = hookabovecomb; +} +); +width = 353; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (59,-139); +ref = hookabovecomb; +} +); +width = 515; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (144,-156); +ref = hookabovecomb; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (116,-135); +ref = hookabovecomb; +} +); +width = 673; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (169,-156); +ref = hookabovecomb; +} +); +width = 665; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (155,-137); +ref = hookabovecomb; +} +); +width = 769; +} +); +unicode = 7917; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uhorntilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorntilde.glyph new file mode 100644 index 00000000..0757119d --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uhorntilde.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = uhorntilde; +kernLeft = KO_u; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (36,-156); +ref = tildecomb; +} +); +width = 356; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (3,-138); +ref = tildecomb; +} +); +width = 518; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (100,-155); +ref = tildecomb; +} +); +width = 659; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (92,-129); +ref = tildecomb; +} +); +width = 765; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (30,-156); +ref = tildecomb; +} +); +width = 316; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (1,-138); +ref = tildecomb; +} +); +width = 498; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (97,-155); +ref = tildecomb; +} +); +width = 569; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (63,-134); +ref = tildecomb; +} +); +width = 639; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (100,-155); +ref = tildecomb; +} +); +width = 659; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = uhorn; +}, +{ +alignment = -1; +pos = (92,-129); +ref = tildecomb; +} +); +width = 765; +}, +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (91,-155); +ref = tildecomb; +} +); +width = 602; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (59,-134); +ref = tildecomb; +} +); +width = 671; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (3,-156); +ref = tildecomb; +} +); +width = 353; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-28,-138); +ref = tildecomb; +} +); +width = 515; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (59,-155); +ref = tildecomb; +} +); +width = 603; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (27,-134); +ref = tildecomb; +} +); +width = 673; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (65,-155); +ref = tildecomb; +} +); +width = 665; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (63,-134); +ref = tildecomb; +} +); +width = 769; +} +); +unicode = 7919; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uhungarumlaut.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uhungarumlaut.glyph new file mode 100644 index 00000000..d4f65814 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uhungarumlaut.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = uhungarumlaut; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (79,-156); +ref = hungarumlautcomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (52,-137); +ref = hungarumlautcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (178,-155); +ref = hungarumlautcomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (139,-129); +ref = hungarumlautcomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (73,-156); +ref = hungarumlautcomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (50,-137); +ref = hungarumlautcomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (165,-155); +ref = hungarumlautcomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (108,-134); +ref = hungarumlautcomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (178,-155); +ref = hungarumlautcomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (139,-129); +ref = hungarumlautcomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (157,-155); +ref = hungarumlautcomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (102,-134); +ref = hungarumlautcomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (45,-156); +ref = hungarumlautcomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (14,-137); +ref = hungarumlautcomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (125,-155); +ref = hungarumlautcomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (76,-134); +ref = hungarumlautcomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (142,-155); +ref = hungarumlautcomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (102,-129); +ref = hungarumlautcomb; +} +); +width = 714; +} +); +unicode = 369; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/umacron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/umacron.glyph new file mode 100644 index 00000000..893fd4c1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/umacron.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = umacron; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (39,-155); +ref = macroncomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (41,-139); +ref = macroncomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (79,-154); +ref = macroncomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (92,-129); +ref = macroncomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (33,-155); +ref = macroncomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (39,-139); +ref = macroncomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (86,-155); +ref = macroncomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (79,-134); +ref = macroncomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (79,-154); +ref = macroncomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (92,-129); +ref = macroncomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (80,-155); +ref = macroncomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (75,-134); +ref = macroncomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (5,-155); +ref = macroncomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (11,-139); +ref = macroncomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (47,-155); +ref = macroncomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (63,-134); +ref = macroncomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,-154); +ref = macroncomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (59,-129); +ref = macroncomb; +} +); +width = 714; +} +); +unicode = 363; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/underscore.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/underscore.glyph new file mode 100644 index 00000000..a4ceca84 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/underscore.glyph @@ -0,0 +1,284 @@ +{ +glyphname = underscore; +kernLeft = KO_underscore; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-25,l), +(292,0,l), +(42,0,l), +(42,-25,l) +); +} +); +width = 334; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(383,-150,l), +(383,0,l), +(19,0,l), +(19,-150,l) +); +} +); +width = 402; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(402,-32,l), +(402,0,l), +(46,0,l), +(46,-32,l) +); +} +); +width = 448; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-158,l), +(458,0,l), +(30,0,l), +(30,-158,l) +); +} +); +width = 488; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,-25,l), +(272,0,l), +(22,0,l), +(22,-25,l) +); +} +); +width = 294; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-150,l), +(373,0,l), +(9,0,l), +(9,-150,l) +); +} +); +width = 382; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,-33,l), +(370,0,l), +(40,0,l), +(40,-33,l) +); +} +); +width = 410; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(421,-160,l), +(421,0,l), +(17,0,l), +(17,-160,l) +); +} +); +width = 438; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(392,-32,l), +(392,0,l), +(36,0,l), +(36,-32,l) +); +} +); +width = 428; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-158,l), +(448,0,l), +(20,0,l), +(20,-158,l) +); +} +); +width = 468; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(385,-33,l), +(385,0,l), +(61,0,l), +(61,-33,l) +); +} +); +width = 446; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(427,-160,l), +(427,0,l), +(37,0,l), +(37,-160,l) +); +} +); +width = 462; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-25,l), +(236,0,l), +(-11,0,l), +(-16,-25,l) +); +} +); +width = 332; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-150,l), +(323,0,l), +(-37,0,l), +(-68,-150,l) +); +} +); +width = 398; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-32,l), +(358,0,l), +(6,0,l), +(-1,-32,l) +); +} +); +width = 471; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(348,-160,l), +(382,0,l), +(-18,0,l), +(-52,-160,l) +); +} +); +width = 475; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-32,l), +(345,0,l), +(-7,0,l), +(-14,-32,l) +); +} +); +width = 445; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-158,l), +(397,0,l), +(-26,0,l), +(-60,-158,l) +); +} +); +width = 483; +} +); +unicode = 95; +userData = { +KernOnName = underscore; +KernOnSpecialSpacing = { +L = underscore; +R = underscore; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uogonek.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uogonek.glyph new file mode 100644 index 00000000..9a69c918 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uogonek.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = uogonek; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (159,0); +ref = ogonekcomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (250,0); +ref = ogonekcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (377,0); +ref = ogonekcomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (373,0); +ref = ogonekcomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (150,0); +ref = ogonekcomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (246,0); +ref = ogonekcomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (335,0); +ref = ogonekcomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (315,0); +ref = ogonekcomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (377,0); +ref = ogonekcomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (373,0); +ref = ogonekcomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (316,0); +ref = ogonekcomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (297,0); +ref = ogonekcomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (161,0); +ref = ogonekcomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (248,0); +ref = ogonekcomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (327,0); +ref = ogonekcomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (304,0); +ref = ogonekcomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (375,0); +ref = ogonekcomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (365,0); +ref = ogonekcomb; +} +); +width = 714; +} +); +unicode = 371; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/upA_rrow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/upA_rrow.glyph new file mode 100644 index 00000000..b3181355 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/upA_rrow.glyph @@ -0,0 +1,420 @@ +{ +glyphname = upArrow; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,95,l), +(305,410,l), +(424,321,l), +(424,487,l), +(230,634,l), +(36,487,l), +(36,321,l), +(155,410,l), +(155,95,l) +); +} +); +width = 460; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,95,l), +(253,585,l), +(406,473,l), +(406,510,l), +(238,634,l), +(70,510,l), +(70,473,l), +(223,585,l), +(223,95,l) +); +} +); +width = 476; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,95,l), +(279,578,l), +(460,445,l), +(460,486,l), +(261,634,l), +(62,486,l), +(62,445,l), +(243,578,l), +(243,95,l) +); +} +); +width = 523; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(367,75,l), +(367,412,l), +(512,321,l), +(512,513,l), +(272,664,l), +(32,513,l), +(32,321,l), +(177,412,l), +(177,75,l) +); +} +); +width = 545; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,95,l), +(233,585,l), +(386,473,l), +(386,510,l), +(218,634,l), +(50,510,l), +(50,473,l), +(203,585,l), +(203,95,l) +); +} +); +width = 436; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,95,l), +(295,410,l), +(414,321,l), +(414,487,l), +(220,634,l), +(26,487,l), +(26,321,l), +(145,410,l), +(145,95,l) +); +} +); +width = 440; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,95,l), +(255,578,l), +(420,456,l), +(420,498,l), +(237,634,l), +(54,498,l), +(54,456,l), +(219,578,l), +(219,95,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 473; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,74,l), +(340,436,l), +(488,340,l), +(488,506,l), +(258,655,l), +(28,506,l), +(28,340,l), +(176,436,l), +(176,74,l) +); +} +); +width = 516; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,95,l), +(269,578,l), +(450,445,l), +(450,486,l), +(251,634,l), +(52,486,l), +(52,445,l), +(233,578,l), +(233,95,l) +); +} +); +width = 503; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,75,l), +(357,412,l), +(502,321,l), +(502,513,l), +(262,664,l), +(22,513,l), +(22,321,l), +(167,412,l), +(167,75,l) +); +} +); +width = 525; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(272,95,l), +(272,578,l), +(435,456,l), +(435,498,l), +(254,634,l), +(75,498,l), +(75,456,l), +(238,578,l), +(238,95,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 508; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(351,74,l), +(351,436,l), +(493,340,l), +(493,506,l), +(270,655,l), +(48,506,l), +(48,340,l), +(189,436,l), +(189,74,l) +); +} +); +width = 540; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,95,l), +(294,585,l), +(447,473,l), +(447,510,l), +(279,634,l), +(111,510,l), +(111,473,l), +(264,585,l), +(264,95,l) +); +} +); +width = 482; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,95,l), +(315,410,l), +(434,321,l), +(434,487,l), +(240,634,l), +(46,487,l), +(46,321,l), +(165,410,l), +(165,95,l) +); +} +); +width = 592; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,95,l), +(313,578,l), +(478,456,l), +(478,498,l), +(295,634,l), +(112,498,l), +(112,456,l), +(277,578,l), +(277,95,l) +); +} +); +width = 521; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,74,l), +(399,436,l), +(547,340,l), +(547,506,l), +(317,655,l), +(87,506,l), +(87,340,l), +(235,436,l), +(235,74,l) +); +} +); +width = 591; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,95,l), +(315,578,l), +(496,445,l), +(496,486,l), +(297,634,l), +(98,486,l), +(98,445,l), +(279,578,l), +(279,95,l) +); +} +); +width = 530; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(406,75,l), +(406,412,l), +(551,321,l), +(551,513,l), +(311,664,l), +(71,513,l), +(71,321,l), +(216,412,l), +(216,75,l) +); +} +); +width = 583; +} +); +unicode = 8593; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/uring.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/uring.glyph new file mode 100644 index 00000000..7c921a2c --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/uring.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = uring; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (73,-156); +ref = ringcomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (81,-137); +ref = ringcomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (159,-155); +ref = ringcomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (172,-129); +ref = ringcomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (67,-156); +ref = ringcomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (79,-137); +ref = ringcomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (153,-155); +ref = ringcomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (152,-134); +ref = ringcomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (159,-155); +ref = ringcomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (172,-129); +ref = ringcomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (145,-155); +ref = ringcomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (148,-134); +ref = ringcomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (40,-156); +ref = ringcomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (52,-137); +ref = ringcomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (114,-155); +ref = ringcomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (116,-134); +ref = ringcomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (121,-155); +ref = ringcomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (137,-134); +ref = ringcomb; +} +); +width = 714; +} +); +unicode = 367; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/utilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/utilde.glyph new file mode 100644 index 00000000..265baed6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/utilde.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = utilde; +kernLeft = KO_u; +kernRight = KO_i.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,-156); +ref = tildecomb; +} +); +width = 354; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = u; +}, +{ +pos = (3,-138); +ref = tildecomb; +} +); +width = 474; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = u; +}, +{ +pos = (100,-155); +ref = tildecomb; +} +); +width = 626; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = u; +}, +{ +pos = (92,-129); +ref = tildecomb; +} +); +width = 723; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (30,-156); +ref = tildecomb; +} +); +width = 301; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = u; +}, +{ +pos = (1,-138); +ref = tildecomb; +} +); +width = 449; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = u; +}, +{ +pos = (97,-155); +ref = tildecomb; +} +); +width = 535; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +ref = u; +}, +{ +pos = (63,-134); +ref = tildecomb; +} +); +width = 605; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (100,-155); +ref = tildecomb; +} +); +width = 626; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = u; +}, +{ +alignment = -1; +pos = (92,-129); +ref = tildecomb; +} +); +width = 723; +}, +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (91,-155); +ref = tildecomb; +} +); +width = 561; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (59,-134); +ref = tildecomb; +} +); +width = 624; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = u; +}, +{ +pos = (3,-156); +ref = tildecomb; +} +); +width = 351; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = u; +}, +{ +pos = (-28,-138); +ref = tildecomb; +} +); +width = 471; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = u; +}, +{ +pos = (59,-155); +ref = tildecomb; +} +); +width = 569; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = u; +}, +{ +pos = (27,-134); +ref = tildecomb; +} +); +width = 638; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = u; +}, +{ +pos = (65,-155); +ref = tildecomb; +} +); +width = 620; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = u; +}, +{ +pos = (63,-134); +ref = tildecomb; +} +); +width = 714; +} +); +unicode = 361; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/v.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/v.glyph new file mode 100644 index 00000000..ce4060ec --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/v.glyph @@ -0,0 +1,917 @@ +{ +glyphname = v; +kernLeft = KO_v; +kernRight = KO_v; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (222,0); +}, +{ +name = top; +pos = (222,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(345,0,l), +(434,541,l), +(256,541,l), +(234,268,l), +(225,133,l), +(217,133,l), +(208,269,l), +(187,541,l), +(8,541,l), +(96,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(345,0,l), +(434,541,l), +(256,541,l), +(233,257,l), +(225,133,l), +(217,133,l), +(209,257,l), +(187,541,l), +(8,541,l), +(96,0,l) +); +} +); +width = 442; +}, +{ +anchors = ( +{ +name = bottom; +pos = (131,0); +}, +{ +name = top; +pos = (131,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(253,516,l), +(223,516,l), +(154,151,l), +(134,32,l), +(132,32,l), +(111,152,l), +(41,516,l), +(10,516,l), +(114,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(150,0,l), +(253,516,l), +(223,516,l), +(159,178,l), +(135,32,l), +(131,32,l), +(107,178,l), +(43,516,l), +(13,516,l), +(116,0,l) +); +} +); +width = 266; +}, +{ +anchors = ( +{ +name = bottom; +pos = (288,0); +}, +{ +name = top; +pos = (288,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,l), +(565,517,l), +(524,517,l), +(329,120,l), +(290,36,l), +(288,36,l), +(248,120,l), +(51,517,l), +(9,517,l), +(270,0,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,0,l), +(563,517,l), +(522,517,l), +(358,179,l), +(291,36,l), +(285,36,l), +(217,179,l), +(53,517,l), +(11,517,l), +(267,0,l) +); +} +); +width = 575; +}, +{ +anchors = ( +{ +name = bottom; +pos = (346,0); +}, +{ +name = top; +pos = (346,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(477,0,l), +(698,544,l), +(473,544,l), +(372,248,l), +(349,168,l), +(340,168,l), +(318,248,l), +(218,544,l), +(-7,544,l), +(215,0,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,0,l), +(698,544,l), +(473,544,l), +(395,315,l), +(349,163,l), +(340,163,l), +(294,315,l), +(216,544,l), +(-9,544,l), +(212,0,l) +); +} +); +width = 689; +}, +{ +anchors = ( +{ +name = bottom; +pos = (124,0); +}, +{ +name = top; +pos = (124,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(152,0,l), +(256,516,l), +(226,516,l), +(157,151,l), +(137,32,l), +(135,32,l), +(114,152,l), +(44,516,l), +(13,516,l), +(117,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,l), +(246,516,l), +(215,516,l), +(151,186,l), +(127,52,l), +(126,52,l), +(101,186,l), +(37,516,l), +(6,516,l), +(109,0,l) +); +} +); +width = 252; +}, +{ +anchors = ( +{ +name = bottom; +pos = (213,0); +}, +{ +name = top; +pos = (213,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(341,0,l), +(430,541,l), +(252,541,l), +(230,268,l), +(221,133,l), +(213,133,l), +(204,269,l), +(183,541,l), +(4,541,l), +(92,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,0,l), +(423,541,l), +(251,541,l), +(226,306,l), +(214,199,l), +(213,199,l), +(200,306,l), +(177,541,l), +(1,541,l), +(101,0,l) +); +} +); +width = 424; +}, +{ +anchors = ( +{ +name = bottom; +pos = (223,0); +}, +{ +name = top; +pos = (223,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(266,0,l), +(462,518,l), +(422,518,l), +(280,134,l), +(246,39,l), +(244,39,l), +(209,134,l), +(66,518,l), +(25,518,l), +(224,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,0,l), +(442,517,l), +(402,517,l), +(287,208,l), +(224,41,l), +(223,41,l), +(160,208,l), +(44,517,l), +(4,517,l), +(203,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 446; +}, +{ +anchors = ( +{ +name = bottom; +pos = (293,0); +}, +{ +name = top; +pos = (293,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(424,0,l), +(601,544,l), +(395,544,l), +(338,295,l), +(307,155,l), +(301,155,l), +(269,296,l), +(213,544,l), +(8,544,l), +(185,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,0,l), +(590,544,l), +(385,544,l), +(318,278,l), +(298,194,l), +(297,194,l), +(275,278,l), +(205,544,l), +(-4,544,l), +(183,0,l) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +}, +{ +name = top; +pos = (283,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,l), +(565,517,l), +(524,517,l), +(329,120,l), +(290,36,l), +(288,36,l), +(248,120,l), +(51,517,l), +(9,517,l), +(270,0,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,0,l), +(562,517,l), +(520,517,l), +(354,181,l), +(284,45,l), +(283,45,l), +(211,181,l), +(45,517,l), +(2,517,l), +(263,0,l) +); +} +); +width = 565; +}, +{ +anchors = ( +{ +name = bottom; +pos = (341,0); +}, +{ +name = top; +pos = (341,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(477,0,l), +(698,544,l), +(473,544,l), +(372,248,l), +(349,168,l), +(340,168,l), +(318,248,l), +(218,544,l), +(-7,544,l), +(215,0,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,0,l), +(693,544,l), +(463,544,l), +(388,321,l), +(342,186,l), +(341,186,l), +(293,326,l), +(218,544,l), +(-14,544,l), +(207,0,l) +); +} +); +width = 679; +}, +{ +anchors = ( +{ +name = bottom; +pos = (243,0); +}, +{ +name = top; +pos = (243,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(265,0,l), +(461,518,l), +(421,518,l), +(279,134,l), +(245,39,l), +(243,39,l), +(208,134,l), +(65,518,l), +(24,518,l), +(223,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(456,517,l), +(418,517,l), +(305,208,l), +(245,31,l), +(241,31,l), +(179,208,l), +(66,517,l), +(28,517,l), +(220,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 484; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = top; +pos = (295,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(423,0,l), +(600,544,l), +(394,544,l), +(337,295,l), +(306,155,l), +(300,155,l), +(268,296,l), +(212,544,l), +(7,544,l), +(184,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(413,0,l), +(583,544,l), +(379,544,l), +(313,238,l), +(301,145,l), +(289,145,l), +(275,238,l), +(209,544,l), +(6,544,l), +(176,0,l) +); +} +); +width = 589; +}, +{ +anchors = ( +{ +name = bottom; +pos = (90,0); +}, +{ +name = top; +pos = (196,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(96,0,l), +(306,516,l), +(276,516,l), +(130,151,l), +(115,111,o), +(101,72,o), +(86,32,c), +(84,32,l), +(86,72,o), +(87,112,o), +(89,152,c), +(95,516,l), +(67,516,l), +(61,0,l) +); +} +); +}; +guides = ( +{ +pos = (162,0); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,0,l), +(306,516,l), +(275,516,l), +(129,151,l), +(88,32,l), +(84,32,l), +(89,152,l), +(95,516,l), +(67,516,l), +(61,0,l) +); +} +); +width = 266; +}, +{ +anchors = ( +{ +name = bottom; +pos = (174,0); +}, +{ +name = top; +pos = (286,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(286,0,l), +(486,541,l), +(309,541,l), +(230,268,l), +(194,133,l), +(186,133,l), +(205,269,l), +(241,541,l), +(64,541,l), +(40,0,l) +); +} +); +}; +guides = ( +{ +pos = (228,133); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,0,l), +(489,541,l), +(307,541,l), +(228,273,l), +(192,135,l), +(184,135,l), +(203,273,l), +(238,541,l), +(64,541,l), +(40,0,l) +); +} +); +width = 441; +}, +{ +anchors = ( +{ +name = bottom; +pos = (196,0); +}, +{ +name = top; +pos = (304,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(506,517,l), +(462,517,l), +(245,131,l), +(193,39,l), +(190,39,l), +(176,135,l), +(119,517,l), +(81,517,l), +(163,0,l) +); +} +); +width = 478; +}, +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (358,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,0,l), +(633,544,l), +(431,544,l), +(316,256,l), +(277,154,l), +(271,154,l), +(268,260,l), +(255,544,l), +(64,544,l), +(133,0,l) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (242,0); +}, +{ +name = top; +pos = (350,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(614,517,l), +(572,517,l), +(296,121,l), +(240,35,l), +(238,35,l), +(214,120,l), +(104,517,l), +(66,517,l), +(214,0,l) +); +} +); +width = 571; +}, +{ +anchors = ( +{ +name = bottom; +pos = (292,0); +}, +{ +name = top; +pos = (404,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,0,l), +(743,544,l), +(513,544,l), +(351,242,l), +(316,168,l), +(307,168,l), +(300,243,l), +(263,544,l), +(47,544,l), +(156,0,l) +); +} +); +width = 678; +} +); +unicode = 118; +userData = { +KernOnName = v; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/w.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/w.glyph new file mode 100644 index 00000000..1c440b47 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/w.glyph @@ -0,0 +1,2121 @@ +{ +glyphname = w; +kernLeft = KO_w; +kernRight = KO_w; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1087,0,l), +(1122,368,l), +(1128,368,l), +(1156,0,l), +(1353,0,l), +(1431,541,l), +(1276,541,l), +(1255,147,l), +(1249,147,l), +(1208,541,l), +(1038,541,l), +(1003,147,l), +(997,147,l), +(971,541,l), +(821,541,l), +(890,0,l) +); +}, +{ +closed = 1; +nodes = ( +(292,0,l), +(314,250,ls), +(317,283,o), +(319,315,o), +(322,368,c), +(328,368,l), +(330,315,o), +(331,283,o), +(333,250,cs), +(351,0,l), +(553,0,l), +(631,541,l), +(476,541,l), +(460,251,ls), +(458,223,o), +(457,195,o), +(456,147,c), +(450,147,l), +(446,195,o), +(443,223,o), +(440,251,cs), +(408,541,l), +(238,541,l), +(211,251,ls), +(208,223,o), +(206,195,o), +(202,147,c), +(196,147,l), +(195,195,o), +(193,223,o), +(191,251,cs), +(171,541,l), +(21,541,l), +(90,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,0,l), +(311,174,l), +(320,373,l), +(330,373,l), +(334,174,l), +(342,0,l), +(566,0,l), +(643,541,l), +(470,541,l), +(461,261,l), +(458,153,l), +(450,153,l), +(441,261,l), +(416,541,l), +(229,541,l), +(208,261,l), +(201,153,l), +(193,153,l), +(189,261,l), +(176,541,l), +(9,541,l), +(75,0,l) +); +} +); +width = 651; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = top; +pos = (236,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(232,469,l), +(235,469,l), +(326,0,l), +(365,0,l), +(454,516,l), +(427,516,l), +(347,31,l), +(346,31,l), +(253,516,l), +(217,516,l), +(129,30,l), +(127,30,l), +(44,516,l), +(17,516,l), +(107,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(212,346,l), +(233,478,l), +(237,478,l), +(259,346,l), +(326,0,l), +(367,0,l), +(454,516,l), +(424,516,l), +(364,149,l), +(348,29,l), +(344,29,l), +(325,149,l), +(254,516,l), +(216,516,l), +(148,149,l), +(130,29,l), +(126,29,l), +(109,149,l), +(47,516,l), +(17,516,l), +(108,0,l) +); +} +); +width = 472; +}, +{ +anchors = ( +{ +name = bottom; +pos = (409,0); +}, +{ +name = top; +pos = (409,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,l), +(405,464,l), +(411,464,l), +(571,0,l), +(618,0,l), +(803,517,l), +(765,517,l), +(598,37,l), +(592,37,l), +(427,517,l), +(390,517,l), +(226,37,l), +(220,37,l), +(53,517,l), +(14,517,l), +(199,0,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,l), +(360,331,l), +(405,471,l), +(411,471,l), +(457,331,l), +(571,0,l), +(619,0,l), +(804,517,l), +(765,517,l), +(661,222,l), +(598,35,l), +(592,35,l), +(531,222,l), +(430,517,l), +(387,517,l), +(286,222,l), +(226,35,l), +(220,35,l), +(157,222,l), +(53,517,l), +(14,517,l), +(199,0,l) +); +} +); +width = 818; +}, +{ +anchors = ( +{ +name = bottom; +pos = (467,0); +}, +{ +name = top; +pos = (467,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(395,0,l), +(459,303,l), +(465,303,l), +(530,0,l), +(794,0,l), +(937,544,l), +(738,544,l), +(654,181,l), +(649,181,l), +(581,544,l), +(363,544,l), +(292,185,l), +(284,185,l), +(203,544,l), +(-5,544,l), +(136,0,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,0,l), +(432,173,l), +(459,317,l), +(465,317,l), +(493,173,l), +(530,0,l), +(785,0,l), +(937,544,l), +(738,544,l), +(685,306,l), +(657,171,l), +(652,171,l), +(628,306,l), +(581,544,l), +(363,544,l), +(314,306,l), +(289,175,l), +(281,175,l), +(255,306,l), +(203,544,l), +(-5,544,l), +(144,0,l) +); +} +); +width = 932; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (244,520); +} +); +associatedMasterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +attr = { +coordinates = ( +75, +300, +1, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(168,0,l), +(240,455,l), +(244,455,l), +(323,0,l), +(387,0,l), +(475,520,l), +(429,520,l), +(358,48,l), +(356,48,l), +(274,520,l), +(210,520,l), +(135,47,l), +(132,47,l), +(57,520,l), +(13,520,l), +(100,0,l) +); +} +); +}; +layerId = "673A42B2-1495-4696-86BB-72DD7E74E312"; +name = "{75, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(172,0,l), +(216,287,l), +(240,458,l), +(244,458,l), +(271,287,l), +(319,0,l), +(394,0,l), +(481,520,l), +(426,520,l), +(379,200,l), +(359,56,l), +(357,56,l), +(334,200,l), +(278,520,l), +(206,520,l), +(155,200,l), +(134,55,l), +(131,55,l), +(110,200,l), +(60,520,l), +(7,520,l), +(92,0,l) +); +} +); +width = 487; +}, +{ +anchors = ( +{ +name = bottom; +pos = (416,0); +}, +{ +name = top; +pos = (416,521); +} +); +associatedMasterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +attr = { +coordinates = ( +125, +300, +1, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(274,0,l), +(413,441,l), +(417,441,l), +(559,0,l), +(642,0,l), +(821,521,l), +(760,521,l), +(603,58,l), +(601,58,l), +(452,521,l), +(378,521,l), +(233,58,l), +(230,58,l), +(73,521,l), +(10,521,l), +(189,0,l) +); +} +); +}; +layerId = "DDC07BBB-A62D-45E2-A2C3-7CADEB8B30A5"; +name = "{125, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,0,l), +(372,312,l), +(412,452,l), +(418,452,l), +(459,312,l), +(560,0,l), +(641,0,l), +(821,521,l), +(758,521,l), +(638,165,l), +(605,53,l), +(600,53,l), +(567,165,l), +(452,521,l), +(378,521,l), +(266,165,l), +(234,53,l), +(228,53,l), +(194,165,l), +(74,521,l), +(10,521,l), +(190,0,l) +); +} +); +width = 831; +}, +{ +anchors = ( +{ +name = bottom; +pos = (211,0); +}, +{ +name = top; +pos = (211,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,l), +(217,469,l), +(220,469,l), +(311,0,l), +(350,0,l), +(439,516,l), +(412,516,l), +(332,31,l), +(331,31,l), +(238,516,l), +(202,516,l), +(114,30,l), +(112,30,l), +(29,516,l), +(2,516,l), +(92,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(132,0,l), +(189,340,l), +(210,470,l), +(211,470,l), +(232,340,l), +(292,0,l), +(332,0,l), +(412,516,l), +(383,516,l), +(328,153,l), +(312,34,l), +(311,34,l), +(292,153,l), +(227,516,l), +(193,516,l), +(130,153,l), +(113,34,l), +(112,34,l), +(95,153,l), +(38,516,l), +(10,516,l), +(93,0,l) +); +} +); +width = 422; +}, +{ +anchors = ( +{ +name = bottom; +pos = (248,0); +}, +{ +name = top; +pos = (248,520); +} +); +associatedMasterId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +attr = { +coordinates = ( +75, +300, +100, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(191,0,l), +(263,455,l), +(267,455,l), +(346,0,l), +(410,0,l), +(498,520,l), +(452,520,l), +(381,48,l), +(379,48,l), +(297,520,l), +(233,520,l), +(158,47,l), +(155,47,l), +(80,520,l), +(36,520,l), +(123,0,l) +); +} +); +}; +layerId = "339DB57D-2FDD-4F4B-8909-0660604A1951"; +name = "{75, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(221,318,l), +(243,451,l), +(244,451,l), +(266,318,l), +(327,0,l), +(393,0,l), +(479,520,l), +(425,520,l), +(373,184,l), +(356,66,l), +(355,66,l), +(336,184,l), +(272,520,l), +(215,520,l), +(153,184,l), +(135,66,l), +(134,66,l), +(117,184,l), +(63,520,l), +(9,520,l), +(97,0,l) +); +} +); +width = 488; +}, +{ +anchors = ( +{ +name = bottom; +pos = (306,0); +}, +{ +name = top; +pos = (306,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1074,0,l), +(1109,368,l), +(1115,368,l), +(1143,0,l), +(1340,0,l), +(1418,541,l), +(1263,541,l), +(1242,147,l), +(1236,147,l), +(1195,541,l), +(1025,541,l), +(990,147,l), +(984,147,l), +(958,541,l), +(808,541,l), +(877,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,0,l), +(301,250,ls), +(304,283,o), +(306,315,o), +(309,368,c), +(315,368,l), +(317,315,o), +(318,283,o), +(320,250,cs), +(338,0,l), +(540,0,l), +(618,541,l), +(463,541,l), +(447,251,ls), +(445,223,o), +(444,195,o), +(443,147,c), +(437,147,l), +(433,195,o), +(430,223,o), +(427,251,cs), +(395,541,l), +(225,541,l), +(198,251,ls), +(195,223,o), +(193,195,o), +(189,147,c), +(183,147,l), +(182,195,o), +(180,223,o), +(178,251,cs), +(158,541,l), +(8,541,l), +(77,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,l), +(289,186,l), +(308,340,l), +(309,340,l), +(329,186,l), +(354,0,l), +(542,0,l), +(611,541,l), +(445,541,l), +(436,371,l), +(429,261,l), +(427,261,l), +(413,370,l), +(389,541,l), +(235,541,l), +(211,371,l), +(196,261,l), +(194,261,l), +(187,371,l), +(178,541,l), +(1,541,l), +(69,0,l) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = bottom; +pos = (354,0); +}, +{ +name = top; +pos = (354,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(245,0,l), +(376,471,l), +(379,471,l), +(516,0,l), +(564,0,l), +(709,517,l), +(673,517,l), +(542,38,l), +(540,38,l), +(401,517,l), +(356,517,l), +(223,37,l), +(221,37,l), +(85,517,l), +(49,517,l), +(195,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,0,l), +(298,295,l), +(353,475,l), +(354,475,l), +(410,295,l), +(501,0,l), +(549,0,l), +(704,517,l), +(663,517,l), +(576,209,l), +(524,36,l), +(523,36,l), +(472,209,l), +(374,517,l), +(332,517,l), +(237,209,l), +(187,36,l), +(186,36,l), +(133,209,l), +(45,517,l), +(4,517,l), +(160,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 708; +}, +{ +anchors = ( +{ +name = bottom; +pos = (347,0); +}, +{ +name = top; +pos = (347,521); +} +); +associatedMasterId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +attr = { +coordinates = ( +100, +300, +100, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,0,l), +(321,447,l), +(325,447,l), +(440,0,l), +(518,0,l), +(656,521,l), +(600,521,l), +(482,56,l), +(480,56,l), +(361,521,l), +(285,521,l), +(174,56,l), +(171,56,l), +(50,521,l), +(-7,521,l), +(131,0,l) +); +} +); +}; +layerId = "607F44F6-FD79-496D-8F04-B31F4D6B87B0"; +name = "{100, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,l), +(298,278,l), +(347,453,l), +(346,453,l), +(396,278,l), +(477,0,l), +(545,0,l), +(691,521,l), +(632,521,l), +(554,226,l), +(509,61,l), +(508,61,l), +(463,226,l), +(376,521,l), +(317,521,l), +(233,226,l), +(189,62,l), +(188,62,l), +(141,226,l), +(63,521,l), +(2,521,l), +(148,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 693; +}, +{ +anchors = ( +{ +name = bottom; +pos = (415,0); +}, +{ +name = top; +pos = (415,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,l), +(424,300,l), +(430,300,l), +(477,0,l), +(727,0,l), +(849,544,l), +(660,544,l), +(594,188,l), +(589,188,l), +(539,544,l), +(333,544,l), +(280,191,l), +(272,191,l), +(210,544,l), +(12,544,l), +(132,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,0,l), +(380,174,l), +(410,300,l), +(411,300,l), +(440,174,l), +(483,0,l), +(696,0,l), +(836,544,l), +(647,544,l), +(601,326,l), +(580,214,l), +(578,214,l), +(556,326,l), +(509,544,l), +(333,544,l), +(285,326,l), +(261,217,l), +(260,217,l), +(237,326,l), +(193,544,l), +(-9,544,l), +(125,0,l) +); +} +); +width = 827; +}, +{ +anchors = ( +{ +name = bottom; +pos = (426,0); +}, +{ +name = top; +pos = (426,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,0,l), +(427,464,l), +(433,464,l), +(593,0,l), +(640,0,l), +(825,517,l), +(787,517,l), +(620,37,l), +(614,37,l), +(449,517,l), +(412,517,l), +(248,37,l), +(242,37,l), +(75,517,l), +(36,517,l), +(221,0,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(248,0,l), +(369,331,l), +(422,477,l), +(423,477,l), +(476,331,l), +(598,0,l), +(648,0,l), +(849,517,l), +(808,517,l), +(696,222,l), +(625,35,l), +(624,35,l), +(555,222,l), +(445,517,l), +(401,517,l), +(291,222,l), +(223,35,l), +(222,35,l), +(151,222,l), +(39,517,l), +(-1,517,l), +(199,0,l) +); +} +); +width = 848; +}, +{ +anchors = ( +{ +name = bottom; +pos = (425,0); +}, +{ +name = top; +pos = (425,521); +} +); +associatedMasterId = "106FCE83-F343-403B-A314-646E4D059B3F"; +attr = { +coordinates = ( +125, +300, +100, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(260,0,l), +(399,441,l), +(403,441,l), +(545,0,l), +(628,0,l), +(807,521,l), +(746,521,l), +(589,58,l), +(587,58,l), +(438,521,l), +(364,521,l), +(219,58,l), +(216,58,l), +(59,521,l), +(-4,521,l), +(175,0,l) +); +} +); +}; +layerId = "BAD0B1F8-0B75-4555-9D4C-69ABC79D641B"; +name = "{125, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,0,l), +(372,307,l), +(421,452,l), +(422,452,l), +(472,307,l), +(578,0,l), +(657,0,l), +(848,521,l), +(784,521,l), +(683,238,l), +(620,61,l), +(619,61,l), +(557,238,l), +(458,521,l), +(390,521,l), +(291,238,l), +(229,61,l), +(228,61,l), +(165,238,l), +(64,521,l), +(-2,521,l), +(190,0,l) +); +} +); +width = 847; +}, +{ +anchors = ( +{ +name = bottom; +pos = (520,0); +}, +{ +name = top; +pos = (520,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(453,0,l), +(517,303,l), +(523,303,l), +(588,0,l), +(852,0,l), +(995,544,l), +(796,544,l), +(712,181,l), +(707,181,l), +(639,544,l), +(421,544,l), +(350,185,l), +(342,185,l), +(261,544,l), +(53,544,l), +(194,0,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,0,l), +(476,164,l), +(514,300,l), +(515,300,l), +(555,164,l), +(593,0,l), +(864,0,l), +(1041,544,l), +(822,544,l), +(765,333,l), +(731,214,l), +(730,214,l), +(697,333,l), +(642,544,l), +(412,544,l), +(356,333,l), +(321,218,l), +(320,218,l), +(289,333,l), +(229,544,l), +(-5,544,l), +(177,0,l) +); +} +); +width = 1036; +}, +{ +anchors = ( +{ +name = bottom; +pos = (357,0); +}, +{ +name = top; +pos = (357,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(228,0,l), +(359,471,l), +(362,471,l), +(499,0,l), +(547,0,l), +(692,517,l), +(656,517,l), +(525,38,l), +(523,38,l), +(384,517,l), +(339,517,l), +(206,37,l), +(204,37,l), +(68,517,l), +(32,517,l), +(178,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(227,0,l), +(327,365,l), +(354,476,l), +(358,476,l), +(389,365,l), +(492,0,l), +(541,0,l), +(682,517,l), +(645,517,l), +(547,149,l), +(519,31,l), +(515,31,l), +(483,149,l), +(379,517,l), +(335,517,l), +(233,149,l), +(203,31,l), +(199,31,l), +(168,149,l), +(70,517,l), +(34,517,l), +(176,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 715; +}, +{ +anchors = ( +{ +name = bottom; +pos = (341,0); +}, +{ +name = top; +pos = (341,521); +} +); +associatedMasterId = m019; +attr = { +coordinates = ( +100, +300, +1, +0 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(337,447,l), +(341,447,l), +(456,0,l), +(534,0,l), +(672,521,l), +(616,521,l), +(498,56,l), +(496,56,l), +(377,521,l), +(301,521,l), +(190,56,l), +(187,56,l), +(66,521,l), +(9,521,l), +(147,0,l) +); +} +); +}; +layerId = "3DA4DB50-7755-4BED-8CF9-DD6F3630DC99"; +name = "{100, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(306,318,l), +(337,457,l), +(341,457,l), +(374,318,l), +(456,0,l), +(534,0,l), +(672,521,l), +(616,521,l), +(533,196,l), +(499,52,l), +(494,52,l), +(460,196,l), +(377,521,l), +(301,521,l), +(223,196,l), +(191,52,l), +(186,52,l), +(151,196,l), +(66,521,l), +(9,521,l), +(147,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 681; +}, +{ +anchors = ( +{ +name = bottom; +pos = (422,0); +}, +{ +name = top; +pos = (422,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,l), +(424,300,l), +(430,300,l), +(477,0,l), +(727,0,l), +(849,544,l), +(660,544,l), +(594,188,l), +(589,188,l), +(539,544,l), +(333,544,l), +(280,191,l), +(272,191,l), +(210,544,l), +(12,544,l), +(132,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(370,0,l), +(398,180,l), +(411,320,l), +(423,320,l), +(436,180,l), +(462,0,l), +(712,0,l), +(830,544,l), +(643,544,l), +(599,302,l), +(584,168,l), +(572,168,l), +(560,302,l), +(528,544,l), +(324,544,l), +(289,302,l), +(277,171,l), +(265,171,l), +(248,302,l), +(207,544,l), +(11,544,l), +(127,0,l) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = bottom; +pos = (191,0); +}, +{ +name = top; +pos = (285,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(96,0,l), +(275,469,l), +(277,469,l), +(270,0,l), +(307,0,l), +(504,516,l), +(475,516,l), +(294,31,l), +(292,31,l), +(303,516,l), +(267,516,l), +(80,30,l), +(78,30,l), +(96,516,l), +(71,516,l), +(55,0,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(96,0,l), +(220,326,l), +(276,480,l), +(280,480,l), +(274,326,l), +(269,0,l), +(308,0,l), +(504,516,l), +(473,516,l), +(340,160,l), +(296,29,l), +(292,29,l), +(297,160,l), +(304,516,l), +(265,516,l), +(128,160,l), +(82,30,l), +(78,30,l), +(86,160,l), +(98,516,l), +(70,516,l), +(55,0,l) +); +} +); +width = 468; +}, +{ +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (295,520); +} +); +associatedMasterId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +attr = { +coordinates = ( +75, +300, +1, +1 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(268,455,l), +(271,455,l), +(254,0,l), +(317,0,l), +(513,520,l), +(466,520,l), +(297,48,l), +(294,48,l), +(311,520,l), +(253,520,l), +(78,47,l), +(75,47,l), +(98,520,l), +(56,520,l), +(36,0,l) +); +} +); +}; +layerId = "CED29051-8E87-4931-9B7E-050FF5E47FCE"; +name = "{75, 300, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,0,l), +(213,306,l), +(269,464,l), +(272,464,l), +(265,306,l), +(254,0,l), +(317,0,l), +(513,520,l), +(466,520,l), +(342,174,l), +(296,39,l), +(293,39,l), +(299,174,l), +(311,520,l), +(253,520,l), +(128,182,l), +(77,38,l), +(74,38,l), +(82,182,l), +(98,520,l), +(56,520,l), +(36,0,l) +); +} +); +width = 482; +}, +{ +anchors = ( +{ +name = bottom; +pos = (197,0); +}, +{ +name = top; +pos = (379,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(146,0,l), +(258,368,l), +(264,368,l), +(215,0,l), +(410,0,l), +(599,541,l), +(446,541,l), +(343,147,l), +(339,147,l), +(380,541,l), +(211,541,l), +(95,147,l), +(90,147,l), +(144,541,l), +(-5,541,l), +(-49,0,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,l), +(291,174,l), +(341,373,l), +(351,373,l), +(314,174,l), +(286,0,l), +(510,0,l), +(699,541,l), +(526,541,l), +(459,261,l), +(434,153,l), +(426,153,l), +(439,261,l), +(472,541,l), +(285,541,l), +(206,261,l), +(177,153,l), +(169,153,l), +(187,261,l), +(232,541,l), +(65,541,l), +(19,0,l) +); +} +); +width = 651; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = top; +pos = (405,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,0,l), +(336,344,l), +(395,471,l), +(398,471,l), +(408,340,l), +(435,0,l), +(480,0,l), +(729,517,l), +(692,517,l), +(530,176,l), +(464,38,l), +(462,38,l), +(451,190,l), +(427,517,l), +(383,517,l), +(219,173,l), +(154,37,l), +(152,37,l), +(143,163,l), +(119,517,l), +(86,517,l), +(120,0,l) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = bottom; +pos = (281,0); +}, +{ +name = top; +pos = (389,521); +} +); +associatedMasterId = "095FE76F-1953-440B-9108-AA0678D151F9"; +attr = { +coordinates = ( +100, +300, +1, +1 +); +}; +layerId = "8FB92063-404F-498A-BCC0-76225BDCEC35"; +name = "{100, 300, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,l), +(290,292,l), +(359,447,l), +(363,447,l), +(369,288,l), +(381,0,l), +(459,0,l), +(703,521,l), +(645,521,l), +(498,199,l), +(433,56,l), +(430,56,l), +(424,203,l), +(411,521,l), +(337,521,l), +(182,170,l), +(131,56,l), +(128,56,l), +(123,168,l), +(106,521,l), +(53,521,l), +(80,0,l) +); +} +); +width = 670; +}, +{ +anchors = ( +{ +name = bottom; +pos = (389,0); +}, +{ +name = top; +pos = (481,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,l), +(376,173,l), +(421,310,l), +(427,310,l), +(420,173,l), +(411,0,l), +(659,0,l), +(893,544,l), +(697,544,l), +(616,333,l), +(560,178,l), +(555,178,l), +(566,333,l), +(583,544,l), +(379,544,l), +(304,330,l), +(256,181,l), +(249,181,l), +(254,330,l), +(262,544,l), +(69,544,l), +(72,0,l) +); +} +); +width = 849; +}, +{ +anchors = ( +{ +name = bottom; +pos = (361,0); +}, +{ +name = top; +pos = (457,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(191,0,l), +(445,464,l), +(449,464,l), +(511,0,l), +(558,0,l), +(849,517,l), +(808,517,l), +(542,37,l), +(540,37,l), +(475,517,l), +(438,517,l), +(174,37,l), +(172,37,l), +(105,517,l), +(69,517,l), +(144,0,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,0,l), +(335,265,l), +(447,479,l), +(453,479,l), +(477,265,l), +(511,0,l), +(560,0,l), +(849,517,l), +(808,517,l), +(642,218,l), +(544,35,l), +(539,35,l), +(516,218,l), +(478,517,l), +(435,517,l), +(273,218,l), +(175,35,l), +(170,35,l), +(147,218,l), +(105,517,l), +(69,517,l), +(142,0,l) +); +} +); +width = 810; +}, +{ +anchors = ( +{ +name = bottom; +pos = (357,0); +}, +{ +name = top; +pos = (465,521); +} +); +associatedMasterId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +attr = { +coordinates = ( +125, +300, +1, +1 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(435,441,l), +(440,441,l), +(489,0,l), +(571,0,l), +(856,521,l), +(792,521,l), +(541,58,l), +(539,58,l), +(488,521,l), +(416,521,l), +(175,58,l), +(172,58,l), +(114,521,l), +(55,521,l), +(123,0,l) +); +} +); +}; +layerId = "EADF7CB7-6976-4F25-9FA6-5AB7F7B2C4C6"; +name = "{125, 300, -12}"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,l), +(344,265,l), +(434,441,l), +(441,441,l), +(460,265,l), +(489,0,l), +(571,0,l), +(856,521,l), +(792,521,l), +(612,189,l), +(543,58,l), +(537,58,l), +(525,189,l), +(488,521,l), +(416,521,l), +(243,189,l), +(177,58,l), +(170,58,l), +(156,189,l), +(114,521,l), +(55,521,l), +(123,0,l) +); +} +); +width = 822; +}, +{ +anchors = ( +{ +name = bottom; +pos = (416,0); +}, +{ +name = top; +pos = (514,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(461,303,l), +(467,303,l), +(468,0,l), +(730,0,l), +(984,544,l), +(776,544,l), +(618,181,l), +(613,181,l), +(622,544,l), +(406,544,l), +(261,185,l), +(253,185,l), +(249,544,l), +(52,544,l), +(78,0,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,0,l), +(404,167,l), +(461,314,l), +(467,314,l), +(467,167,l), +(467,0,l), +(730,0,l), +(984,544,l), +(776,544,l), +(674,309,l), +(616,170,l), +(611,170,l), +(616,309,l), +(622,544,l), +(406,544,l), +(311,309,l), +(259,176,l), +(251,176,l), +(252,309,l), +(249,544,l), +(52,544,l), +(78,0,l) +); +} +); +width = 924; +} +); +unicode = 119; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/wacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/wacute.glyph new file mode 100644 index 00000000..1d0c34ff --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/wacute.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = wacute; +kernRight = KO_w; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = w; +}, +{ +pos = (180,-156); +ref = acutecomb; +} +); +width = 472; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = w; +}, +{ +pos = (212,-137); +ref = acutecomb; +} +); +width = 651; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = w; +}, +{ +pos = (351,-155); +ref = acutecomb; +} +); +width = 818; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = w; +}, +{ +pos = (350,-129); +ref = acutecomb; +} +); +width = 932; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (175,-156); +ref = acutecomb; +} +); +width = 422; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = w; +}, +{ +pos = (204,-137); +ref = acutecomb; +} +); +width = 612; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = w; +}, +{ +pos = (319,-155); +ref = acutecomb; +} +); +width = 708; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = w; +}, +{ +alignment = -1; +pos = (324,-134); +ref = acutecomb; +} +); +width = 839; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (378,-155); +ref = acutecomb; +} +); +width = 848; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (413,-129); +ref = acutecomb; +} +); +width = 1036; +}, +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (301,-155); +ref = acutecomb; +} +); +width = 715; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (312,-134); +ref = acutecomb; +} +); +width = 840; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = w; +}, +{ +pos = (144,-156); +ref = acutecomb; +} +); +width = 468; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (184,-137); +ref = acutecomb; +} +); +width = 651; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = w; +}, +{ +pos = (263,-155); +ref = acutecomb; +} +); +width = 706; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = w; +}, +{ +pos = (286,-134); +ref = acutecomb; +} +); +width = 849; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = w; +}, +{ +pos = (314,-155); +ref = acutecomb; +} +); +width = 810; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = w; +}, +{ +pos = (314,-129); +ref = acutecomb; +} +); +width = 924; +} +); +unicode = 7811; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/wcircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/wcircumflex.glyph new file mode 100644 index 00000000..996c6356 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/wcircumflex.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = wcircumflex; +kernLeft = KO_w; +kernRight = KO_w; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = w; +}, +{ +pos = (107,-156); +ref = circumflexcomb; +} +); +width = 472; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = w; +}, +{ +pos = (107,-137); +ref = circumflexcomb; +} +); +width = 651; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = w; +}, +{ +pos = (230,-155); +ref = circumflexcomb; +} +); +width = 818; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = w; +}, +{ +pos = (176,-129); +ref = circumflexcomb; +} +); +width = 932; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (102,-156); +ref = circumflexcomb; +} +); +width = 422; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = w; +}, +{ +pos = (99,-137); +ref = circumflexcomb; +} +); +width = 612; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = w; +}, +{ +pos = (210,-155); +ref = circumflexcomb; +} +); +width = 708; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = w; +}, +{ +alignment = -1; +pos = (189,-134); +ref = circumflexcomb; +} +); +width = 839; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (257,-155); +ref = circumflexcomb; +} +); +width = 848; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (239,-129); +ref = circumflexcomb; +} +); +width = 1036; +}, +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (194,-155); +ref = circumflexcomb; +} +); +width = 715; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (183,-134); +ref = circumflexcomb; +} +); +width = 840; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = w; +}, +{ +pos = (70,-156); +ref = circumflexcomb; +} +); +width = 468; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (77,-137); +ref = circumflexcomb; +} +); +width = 651; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = w; +}, +{ +pos = (153,-155); +ref = circumflexcomb; +} +); +width = 706; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = w; +}, +{ +pos = (152,-134); +ref = circumflexcomb; +} +); +width = 849; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = w; +}, +{ +pos = (191,-155); +ref = circumflexcomb; +} +); +width = 810; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = w; +}, +{ +pos = (138,-129); +ref = circumflexcomb; +} +); +width = 924; +} +); +unicode = 373; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/wdieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/wdieresis.glyph new file mode 100644 index 00000000..17ae8e1b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/wdieresis.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = wdieresis; +kernRight = KO_w; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = w; +}, +{ +pos = (118,-156); +ref = dieresiscomb; +} +); +width = 472; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = w; +}, +{ +pos = (99,-137); +ref = dieresiscomb; +} +); +width = 651; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = w; +}, +{ +pos = (232,-155); +ref = dieresiscomb; +} +); +width = 818; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = w; +}, +{ +pos = (184,-134); +ref = dieresiscomb; +} +); +width = 932; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (113,-156); +ref = dieresiscomb; +} +); +width = 422; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = w; +}, +{ +pos = (91,-137); +ref = dieresiscomb; +} +); +width = 612; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = w; +}, +{ +pos = (212,-155); +ref = dieresiscomb; +} +); +width = 708; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = w; +}, +{ +alignment = -1; +pos = (193,-134); +ref = dieresiscomb; +} +); +width = 839; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (259,-155); +ref = dieresiscomb; +} +); +width = 848; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (247,-134); +ref = dieresiscomb; +} +); +width = 1036; +}, +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (196,-155); +ref = dieresiscomb; +} +); +width = 715; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (187,-134); +ref = dieresiscomb; +} +); +width = 840; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = w; +}, +{ +pos = (76,-156); +ref = dieresiscomb; +} +); +width = 468; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (62,-137); +ref = dieresiscomb; +} +); +width = 651; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = w; +}, +{ +pos = (158,-155); +ref = dieresiscomb; +} +); +width = 706; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = w; +}, +{ +pos = (152,-134); +ref = dieresiscomb; +} +); +width = 849; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = w; +}, +{ +pos = (195,-155); +ref = dieresiscomb; +} +); +width = 810; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = w; +}, +{ +pos = (145,-134); +ref = dieresiscomb; +} +); +width = 924; +} +); +unicode = 7813; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/wdieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/wdieresis.ss01.glyph new file mode 100644 index 00000000..4accb578 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/wdieresis.ss01.glyph @@ -0,0 +1,242 @@ +{ +color = 6; +glyphname = wdieresis.ss01; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = w; +}, +{ +pos = (129,-156); +ref = dieresiscomb.ss01; +} +); +width = 472; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = w; +}, +{ +pos = (100,-137); +ref = dieresiscomb.ss01; +} +); +width = 651; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = w; +}, +{ +pos = (265,-155); +ref = dieresiscomb.ss01; +} +); +width = 818; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = w; +}, +{ +pos = (206,-134); +ref = dieresiscomb.ss01; +} +); +width = 932; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (124,-156); +ref = dieresiscomb.ss01; +} +); +width = 422; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = w; +}, +{ +pos = (92,-137); +ref = dieresiscomb.ss01; +} +); +width = 612; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = w; +}, +{ +pos = (239,-155); +ref = dieresiscomb.ss01; +} +); +width = 708; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = w; +}, +{ +alignment = -1; +pos = (205,-134); +ref = dieresiscomb.ss01; +} +); +width = 839; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (292,-155); +ref = dieresiscomb.ss01; +} +); +width = 848; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (269,-134); +ref = dieresiscomb.ss01; +} +); +width = 1036; +}, +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (221,-155); +ref = dieresiscomb.ss01; +} +); +width = 715; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (199,-134); +ref = dieresiscomb.ss01; +} +); +width = 840; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = w; +}, +{ +pos = (89,-156); +ref = dieresiscomb.ss01; +} +); +width = 468; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (70,-137); +ref = dieresiscomb.ss01; +} +); +width = 651; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = w; +}, +{ +pos = (180,-155); +ref = dieresiscomb.ss01; +} +); +width = 706; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = w; +}, +{ +pos = (168,-134); +ref = dieresiscomb.ss01; +} +); +width = 849; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = w; +}, +{ +pos = (232,-155); +ref = dieresiscomb.ss01; +} +); +width = 810; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = w; +}, +{ +pos = (174,-134); +ref = dieresiscomb.ss01; +} +); +width = 924; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/wgrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/wgrave.glyph new file mode 100644 index 00000000..18df5fe5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/wgrave.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = wgrave; +kernLeft = KO_w; +kernRight = KO_w; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = w; +}, +{ +pos = (102,-156); +ref = gravecomb; +} +); +width = 472; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = w; +}, +{ +pos = (115,-137); +ref = gravecomb; +} +); +width = 651; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = w; +}, +{ +pos = (265,-155); +ref = gravecomb; +} +); +width = 818; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = w; +}, +{ +pos = (233,-129); +ref = gravecomb; +} +); +width = 932; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (97,-156); +ref = gravecomb; +} +); +width = 422; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = w; +}, +{ +pos = (107,-137); +ref = gravecomb; +} +); +width = 612; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = w; +}, +{ +pos = (240,-155); +ref = gravecomb; +} +); +width = 708; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = w; +}, +{ +alignment = -1; +pos = (227,-134); +ref = gravecomb; +} +); +width = 839; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (292,-155); +ref = gravecomb; +} +); +width = 848; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = w; +}, +{ +pos = (296,-129); +ref = gravecomb; +} +); +width = 1036; +}, +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (222,-155); +ref = gravecomb; +} +); +width = 715; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (223,-134); +ref = gravecomb; +} +); +width = 840; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = w; +}, +{ +pos = (67,-156); +ref = gravecomb; +} +); +width = 468; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = w; +}, +{ +pos = (94,-137); +ref = gravecomb; +} +); +width = 651; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = w; +}, +{ +pos = (186,-155); +ref = gravecomb; +} +); +width = 706; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = w; +}, +{ +pos = (185,-134); +ref = gravecomb; +} +); +width = 849; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = w; +}, +{ +pos = (227,-155); +ref = gravecomb; +} +); +width = 810; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = w; +}, +{ +pos = (197,-129); +ref = gravecomb; +} +); +width = 924; +} +); +unicode = 7809; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/whiteC_ircle.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/whiteC_ircle.glyph new file mode 100644 index 00000000..283944d1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/whiteC_ircle.glyph @@ -0,0 +1,834 @@ +{ +glyphname = whiteCircle; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,21,o), +(73,132,o), +(73,365,cs), +(73,598,o), +(176,710,o), +(329,710,cs), +(483,710,o), +(585,599,o), +(585,365,cs), +(585,132,o), +(483,21,o), +(329,21,cs) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,61,o), +(102,192,o), +(102,366,cs), +(102,540,o), +(171,671,o), +(343,671,cs), +(515,671,o), +(584,540,o), +(584,366,cs), +(584,192,o), +(515,61,o), +(343,61,cs) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (415,363); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(212,21,o), +(74,159,o), +(74,363,cs), +(74,567,o), +(212,706,o), +(415,706,cs), +(619,706,o), +(757,567,o), +(757,363,cs), +(757,159,o), +(619,21,o), +(415,21,cs) +); +} +); +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(225,68,o), +(103,187,o), +(103,365,cs), +(103,544,o), +(226,663,o), +(407,663,cs), +(587,663,o), +(710,544,o), +(710,365,cs), +(710,187,o), +(588,68,o), +(407,68,cs) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,24,o), +(87,160,o), +(87,363,cs), +(87,566,o), +(232,702,o), +(432,702,cs), +(632,702,o), +(777,566,o), +(777,363,cs), +(777,160,o), +(632,24,o), +(432,24,cs) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,67,o), +(112,181,o), +(112,364,cs), +(112,547,o), +(240,661,o), +(420,661,cs), +(601,661,o), +(728,547,o), +(728,364,cs), +(728,181,o), +(601,67,o), +(420,67,cs) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (430,363); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,21,o), +(95,159,o), +(95,363,cs), +(95,567,o), +(231,706,o), +(430,706,cs), +(630,706,o), +(764,567,o), +(764,363,cs), +(764,159,o), +(630,21,o), +(430,21,cs) +); +} +); +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,68,o), +(122,187,o), +(122,365,cs), +(122,544,o), +(242,663,o), +(418,663,cs), +(593,663,o), +(713,544,o), +(713,365,cs), +(713,187,o), +(594,68,o), +(418,68,cs) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467,363); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (456,365); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,67,o), +(151,181,o), +(151,364,cs), +(151,547,o), +(279,661,o), +(459,661,cs), +(640,661,o), +(767,547,o), +(767,364,cs), +(767,181,o), +(640,67,o), +(459,67,cs) +); +} +); +width = 880; +} +); +unicode = 9675; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/whiteF_rowningF_ace.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/whiteF_rowningF_ace.glyph new file mode 100644 index 00000000..27996aae --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/whiteF_rowningF_ace.glyph @@ -0,0 +1,1924 @@ +{ +glyphname = whiteFrowningFace; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(637,-10,o), +(798,143,o), +(798,367,cs), +(798,585,o), +(637,739,o), +(419,739,cs), +(201,739,o), +(40,586,o), +(40,367,cs), +(40,143,o), +(201,-10,o), +(419,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,191,l), +(290,235,o), +(349,265,o), +(419,265,cs), +(485,265,o), +(546,238,o), +(576,191,c), +(639,191,l), +(610,275,o), +(521,322,o), +(419,322,cs), +(317,322,o), +(228,275,o), +(199,191,c) +); +}, +{ +closed = 1; +nodes = ( +(238,63,o), +(117,185,o), +(117,367,cs), +(117,546,o), +(238,666,o), +(419,666,cs), +(600,666,o), +(721,546,o), +(721,367,cs), +(721,185,o), +(600,63,o), +(419,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,403,o), +(390,424,o), +(390,454,cs), +(390,484,o), +(367,505,o), +(337,505,cs), +(307,505,o), +(283,484,o), +(283,454,cs), +(283,424,o), +(307,403,o), +(337,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(533,403,o), +(556,424,o), +(556,454,cs), +(556,484,o), +(533,505,o), +(503,505,cs), +(473,505,o), +(449,484,o), +(449,454,cs), +(449,424,o), +(473,403,o), +(503,403,cs) +); +} +); +width = 838; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(652,-10,o), +(809,140,o), +(809,366,cs), +(809,590,o), +(652,739,o), +(435,739,cs), +(218,739,o), +(60,590,o), +(60,366,cs), +(60,140,o), +(218,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,156,l), +(258,235,o), +(337,285,o), +(433,285,cs), +(532,285,o), +(611,235,o), +(640,156,c), +(674,156,l), +(641,254,o), +(554,316,o), +(433,316,cs), +(314,316,o), +(226,254,o), +(194,156,c) +); +}, +{ +closed = 1; +nodes = ( +(237,19,o), +(93,158,o), +(93,366,cs), +(93,572,o), +(237,710,o), +(435,710,cs), +(632,710,o), +(776,572,o), +(776,366,cs), +(776,158,o), +(632,19,o), +(435,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(385,412,o), +(406,431,o), +(406,458,cs), +(406,485,o), +(385,504,o), +(358,504,cs), +(331,504,o), +(310,485,o), +(310,458,cs), +(310,431,o), +(331,412,o), +(358,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(539,412,o), +(560,431,o), +(560,458,cs), +(560,485,o), +(539,504,o), +(512,504,cs), +(485,504,o), +(464,485,o), +(464,458,cs), +(464,431,o), +(485,412,o), +(512,412,cs) +); +} +); +width = 869; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(652,-10,o), +(809,140,o), +(809,366,cs), +(809,590,o), +(652,739,o), +(435,739,cs), +(218,739,o), +(60,590,o), +(60,366,cs), +(60,140,o), +(218,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,156,l), +(258,235,o), +(337,285,o), +(433,285,cs), +(532,285,o), +(611,235,o), +(640,156,c), +(674,156,l), +(641,254,o), +(554,316,o), +(433,316,cs), +(314,316,o), +(226,254,o), +(194,156,c) +); +}, +{ +closed = 1; +nodes = ( +(237,19,o), +(93,158,o), +(93,366,cs), +(93,572,o), +(237,710,o), +(435,710,cs), +(632,710,o), +(776,572,o), +(776,366,cs), +(776,158,o), +(632,19,o), +(435,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(385,412,o), +(406,431,o), +(406,458,cs), +(406,485,o), +(385,504,o), +(358,504,cs), +(331,504,o), +(310,485,o), +(310,458,cs), +(310,431,o), +(331,412,o), +(358,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(539,412,o), +(560,431,o), +(560,458,cs), +(560,485,o), +(539,504,o), +(512,504,cs), +(485,504,o), +(464,485,o), +(464,458,cs), +(464,431,o), +(485,412,o), +(512,412,cs) +); +} +); +width = 869; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(637,-10,o), +(798,143,o), +(798,367,cs), +(798,585,o), +(637,739,o), +(419,739,cs), +(201,739,o), +(40,586,o), +(40,367,cs), +(40,143,o), +(201,-10,o), +(419,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,191,l), +(290,235,o), +(349,265,o), +(419,265,cs), +(485,265,o), +(546,238,o), +(576,191,c), +(639,191,l), +(610,275,o), +(521,322,o), +(419,322,cs), +(317,322,o), +(228,275,o), +(199,191,c) +); +}, +{ +closed = 1; +nodes = ( +(238,63,o), +(117,185,o), +(117,367,cs), +(117,546,o), +(238,666,o), +(419,666,cs), +(600,666,o), +(721,546,o), +(721,367,cs), +(721,185,o), +(600,63,o), +(419,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,403,o), +(390,424,o), +(390,454,cs), +(390,484,o), +(367,505,o), +(337,505,cs), +(307,505,o), +(283,484,o), +(283,454,cs), +(283,424,o), +(307,403,o), +(337,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(533,403,o), +(556,424,o), +(556,454,cs), +(556,484,o), +(533,505,o), +(503,505,cs), +(473,505,o), +(449,484,o), +(449,454,cs), +(449,424,o), +(473,403,o), +(503,403,cs) +); +} +); +width = 838; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(632,-10,o), +(789,140,o), +(789,366,cs), +(789,590,o), +(632,739,o), +(415,739,cs), +(198,739,o), +(40,590,o), +(40,366,cs), +(40,140,o), +(198,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(207,156,l), +(238,235,o), +(317,285,o), +(413,285,cs), +(512,285,o), +(591,235,o), +(620,156,c), +(654,156,l), +(621,254,o), +(534,316,o), +(413,316,cs), +(294,316,o), +(206,254,o), +(174,156,c) +); +}, +{ +closed = 1; +nodes = ( +(217,19,o), +(73,158,o), +(73,366,cs), +(73,572,o), +(217,710,o), +(415,710,cs), +(612,710,o), +(756,572,o), +(756,366,cs), +(756,158,o), +(612,19,o), +(415,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,412,o), +(386,431,o), +(386,458,cs), +(386,485,o), +(365,504,o), +(338,504,cs), +(311,504,o), +(290,485,o), +(290,458,cs), +(290,431,o), +(311,412,o), +(338,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,412,o), +(540,431,o), +(540,458,cs), +(540,485,o), +(519,504,o), +(492,504,cs), +(465,504,o), +(444,485,o), +(444,458,cs), +(444,431,o), +(465,412,o), +(492,412,cs) +); +} +); +width = 829; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(627,-10,o), +(788,143,o), +(788,367,cs), +(788,585,o), +(627,739,o), +(409,739,cs), +(191,739,o), +(30,586,o), +(30,367,cs), +(30,143,o), +(191,-10,o), +(409,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(252,191,l), +(280,235,o), +(339,265,o), +(409,265,cs), +(475,265,o), +(536,238,o), +(566,191,c), +(629,191,l), +(600,275,o), +(511,322,o), +(409,322,cs), +(307,322,o), +(218,275,o), +(189,191,c) +); +}, +{ +closed = 1; +nodes = ( +(228,63,o), +(107,185,o), +(107,367,cs), +(107,546,o), +(228,666,o), +(409,666,cs), +(590,666,o), +(711,546,o), +(711,367,cs), +(711,185,o), +(590,63,o), +(409,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,403,o), +(380,424,o), +(380,454,cs), +(380,484,o), +(357,505,o), +(327,505,cs), +(297,505,o), +(273,484,o), +(273,454,cs), +(273,424,o), +(297,403,o), +(327,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,403,o), +(546,424,o), +(546,454,cs), +(546,484,o), +(523,505,o), +(493,505,cs), +(463,505,o), +(439,484,o), +(439,454,cs), +(439,424,o), +(463,403,o), +(493,403,cs) +); +} +); +width = 818; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(632,-10,o), +(789,140,o), +(789,366,cs), +(789,590,o), +(632,739,o), +(415,739,cs), +(198,739,o), +(40,590,o), +(40,366,cs), +(40,140,o), +(198,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(207,156,l), +(238,235,o), +(317,285,o), +(413,285,cs), +(512,285,o), +(591,235,o), +(620,156,c), +(654,156,l), +(621,254,o), +(534,316,o), +(413,316,cs), +(294,316,o), +(206,254,o), +(174,156,c) +); +}, +{ +closed = 1; +nodes = ( +(217,19,o), +(73,158,o), +(73,366,cs), +(73,572,o), +(217,710,o), +(415,710,cs), +(612,710,o), +(756,572,o), +(756,366,cs), +(756,158,o), +(612,19,o), +(415,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,412,o), +(386,431,o), +(386,458,cs), +(386,485,o), +(365,504,o), +(338,504,cs), +(311,504,o), +(290,485,o), +(290,458,cs), +(290,431,o), +(311,412,o), +(338,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,412,o), +(540,431,o), +(540,458,cs), +(540,485,o), +(519,504,o), +(492,504,cs), +(465,504,o), +(444,485,o), +(444,458,cs), +(444,431,o), +(465,412,o), +(492,412,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +14 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +5 +); +stem = -2; +target = ( +2, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +3, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 829; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(616,-10,o), +(777,143,o), +(777,367,cs), +(777,585,o), +(616,739,o), +(398,739,cs), +(180,739,o), +(19,586,o), +(19,367,cs), +(19,143,o), +(180,-10,o), +(398,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,191,l), +(269,235,o), +(328,265,o), +(398,265,cs), +(464,265,o), +(525,238,o), +(555,191,c), +(618,191,l), +(589,275,o), +(500,322,o), +(398,322,cs), +(296,322,o), +(207,275,o), +(178,191,c) +); +}, +{ +closed = 1; +nodes = ( +(217,63,o), +(96,185,o), +(96,367,cs), +(96,546,o), +(217,666,o), +(398,666,cs), +(579,666,o), +(700,546,o), +(700,367,cs), +(700,185,o), +(579,63,o), +(398,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(346,403,o), +(369,424,o), +(369,454,cs), +(369,484,o), +(346,505,o), +(316,505,cs), +(286,505,o), +(262,484,o), +(262,454,cs), +(262,424,o), +(286,403,o), +(316,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(512,403,o), +(535,424,o), +(535,454,cs), +(535,484,o), +(512,505,o), +(482,505,cs), +(452,505,o), +(428,484,o), +(428,454,cs), +(428,424,o), +(452,403,o), +(482,403,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 796; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(642,-10,o), +(799,140,o), +(799,366,cs), +(799,590,o), +(642,739,o), +(425,739,cs), +(208,739,o), +(50,590,o), +(50,366,cs), +(50,140,o), +(208,-10,o), +(425,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,156,l), +(248,235,o), +(327,285,o), +(423,285,cs), +(522,285,o), +(601,235,o), +(630,156,c), +(664,156,l), +(631,254,o), +(544,316,o), +(423,316,cs), +(304,316,o), +(216,254,o), +(184,156,c) +); +}, +{ +closed = 1; +nodes = ( +(227,19,o), +(83,158,o), +(83,366,cs), +(83,572,o), +(227,710,o), +(425,710,cs), +(622,710,o), +(766,572,o), +(766,366,cs), +(766,158,o), +(622,19,o), +(425,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(375,412,o), +(396,431,o), +(396,458,cs), +(396,485,o), +(375,504,o), +(348,504,cs), +(321,504,o), +(300,485,o), +(300,458,cs), +(300,431,o), +(321,412,o), +(348,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(529,412,o), +(550,431,o), +(550,458,cs), +(550,485,o), +(529,504,o), +(502,504,cs), +(475,504,o), +(454,485,o), +(454,458,cs), +(454,431,o), +(475,412,o), +(502,412,cs) +); +} +); +width = 849; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(627,-10,o), +(788,143,o), +(788,367,cs), +(788,585,o), +(627,739,o), +(409,739,cs), +(191,739,o), +(30,586,o), +(30,367,cs), +(30,143,o), +(191,-10,o), +(409,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(252,191,l), +(280,235,o), +(339,265,o), +(409,265,cs), +(475,265,o), +(536,238,o), +(566,191,c), +(629,191,l), +(600,275,o), +(511,322,o), +(409,322,cs), +(307,322,o), +(218,275,o), +(189,191,c) +); +}, +{ +closed = 1; +nodes = ( +(228,63,o), +(107,185,o), +(107,367,cs), +(107,546,o), +(228,666,o), +(409,666,cs), +(590,666,o), +(711,546,o), +(711,367,cs), +(711,185,o), +(590,63,o), +(409,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,403,o), +(380,424,o), +(380,454,cs), +(380,484,o), +(357,505,o), +(327,505,cs), +(297,505,o), +(273,484,o), +(273,454,cs), +(273,424,o), +(297,403,o), +(327,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,403,o), +(546,424,o), +(546,454,cs), +(546,484,o), +(523,505,o), +(493,505,cs), +(463,505,o), +(439,484,o), +(439,454,cs), +(439,424,o), +(463,403,o), +(493,403,cs) +); +} +); +width = 818; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(642,-10,o), +(796,140,o), +(796,366,cs), +(796,590,o), +(642,739,o), +(430,739,cs), +(217,739,o), +(61,590,o), +(61,366,cs), +(61,140,o), +(217,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,156,l), +(255,235,o), +(334,285,o), +(428,285,cs), +(525,285,o), +(602,235,o), +(631,156,c), +(663,156,l), +(632,254,o), +(546,316,o), +(428,316,cs), +(311,316,o), +(225,254,o), +(193,156,c) +); +}, +{ +closed = 1; +nodes = ( +(236,19,o), +(94,158,o), +(94,366,cs), +(94,572,o), +(236,710,o), +(430,710,cs), +(623,710,o), +(763,572,o), +(763,366,cs), +(763,158,o), +(623,19,o), +(430,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,412,o), +(401,431,o), +(401,458,cs), +(401,485,o), +(380,504,o), +(353,504,cs), +(328,504,o), +(307,485,o), +(307,458,cs), +(307,431,o), +(328,412,o), +(353,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(532,412,o), +(551,431,o), +(551,458,cs), +(551,485,o), +(532,504,o), +(505,504,cs), +(478,504,o), +(457,485,o), +(457,458,cs), +(457,431,o), +(478,412,o), +(505,412,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +14 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +5 +); +stem = -2; +target = ( +2, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +3, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 856; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(622,-10,o), +(779,143,o), +(779,367,cs), +(779,585,o), +(622,739,o), +(409,739,cs), +(196,739,o), +(39,586,o), +(39,367,cs), +(39,143,o), +(196,-10,o), +(409,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,191,l), +(283,234,o), +(340,265,o), +(409,265,cs), +(474,265,o), +(533,237,o), +(561,191,c), +(624,191,l), +(595,276,o), +(507,322,o), +(409,322,cs), +(311,322,o), +(223,276,o), +(194,191,c) +); +}, +{ +closed = 1; +nodes = ( +(233,63,o), +(115,185,o), +(115,367,cs), +(115,546,o), +(233,666,o), +(409,666,cs), +(585,666,o), +(703,546,o), +(703,367,cs), +(703,185,o), +(585,63,o), +(409,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,403,o), +(380,424,o), +(380,454,cs), +(380,484,o), +(357,505,o), +(329,505,cs), +(300,505,o), +(276,484,o), +(276,454,cs), +(276,424,o), +(300,403,o), +(329,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,403,o), +(543,424,o), +(543,454,cs), +(543,484,o), +(520,505,o), +(491,505,cs), +(462,505,o), +(439,484,o), +(439,454,cs), +(439,424,o), +(462,403,o), +(491,403,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 817; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(684,-10,o), +(841,140,o), +(841,366,cs), +(841,590,o), +(684,739,o), +(467,739,cs), +(250,739,o), +(92,590,o), +(92,366,cs), +(92,140,o), +(250,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,156,l), +(290,235,o), +(369,285,o), +(465,285,cs), +(564,285,o), +(643,235,o), +(672,156,c), +(706,156,l), +(673,254,o), +(586,316,o), +(465,316,cs), +(346,316,o), +(258,254,o), +(226,156,c) +); +}, +{ +closed = 1; +nodes = ( +(269,19,o), +(125,158,o), +(125,366,cs), +(125,572,o), +(269,710,o), +(467,710,cs), +(664,710,o), +(808,572,o), +(808,366,cs), +(808,158,o), +(664,19,o), +(467,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(417,412,o), +(438,431,o), +(438,458,cs), +(438,485,o), +(417,504,o), +(390,504,cs), +(363,504,o), +(342,485,o), +(342,458,cs), +(342,431,o), +(363,412,o), +(390,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,412,o), +(592,431,o), +(592,458,cs), +(592,485,o), +(571,504,o), +(544,504,cs), +(517,504,o), +(496,485,o), +(496,458,cs), +(496,431,o), +(517,412,o), +(544,412,cs) +); +} +); +width = 888; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,-10,o), +(827,143,o), +(827,367,cs), +(827,585,o), +(666,739,o), +(448,739,cs), +(230,739,o), +(69,586,o), +(69,367,cs), +(69,143,o), +(230,-10,o), +(448,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(291,191,l), +(319,235,o), +(378,265,o), +(448,265,cs), +(514,265,o), +(575,238,o), +(605,191,c), +(668,191,l), +(639,275,o), +(550,322,o), +(448,322,cs), +(346,322,o), +(257,275,o), +(228,191,c) +); +}, +{ +closed = 1; +nodes = ( +(267,63,o), +(146,185,o), +(146,367,cs), +(146,546,o), +(267,666,o), +(448,666,cs), +(629,666,o), +(750,546,o), +(750,367,cs), +(750,185,o), +(629,63,o), +(448,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(396,403,o), +(419,424,o), +(419,454,cs), +(419,484,o), +(396,505,o), +(366,505,cs), +(336,505,o), +(312,484,o), +(312,454,cs), +(312,424,o), +(336,403,o), +(366,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,403,o), +(585,424,o), +(585,454,cs), +(585,484,o), +(562,505,o), +(532,505,cs), +(502,505,o), +(478,484,o), +(478,454,cs), +(478,424,o), +(502,403,o), +(532,403,cs) +); +} +); +width = 856; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(684,-10,o), +(841,140,o), +(841,366,cs), +(841,590,o), +(684,739,o), +(467,739,cs), +(250,739,o), +(92,590,o), +(92,366,cs), +(92,140,o), +(250,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,156,l), +(290,235,o), +(369,285,o), +(465,285,cs), +(564,285,o), +(643,235,o), +(672,156,c), +(706,156,l), +(673,254,o), +(586,316,o), +(465,316,cs), +(346,316,o), +(258,254,o), +(226,156,c) +); +}, +{ +closed = 1; +nodes = ( +(269,19,o), +(125,158,o), +(125,366,cs), +(125,572,o), +(269,710,o), +(467,710,cs), +(664,710,o), +(808,572,o), +(808,366,cs), +(808,158,o), +(664,19,o), +(467,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(417,412,o), +(438,431,o), +(438,458,cs), +(438,485,o), +(417,504,o), +(390,504,cs), +(363,504,o), +(342,485,o), +(342,458,cs), +(342,431,o), +(363,412,o), +(390,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,412,o), +(592,431,o), +(592,458,cs), +(592,485,o), +(571,504,o), +(544,504,cs), +(517,504,o), +(496,485,o), +(496,458,cs), +(496,431,o), +(517,412,o), +(544,412,cs) +); +} +); +width = 888; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,-10,o), +(827,143,o), +(827,367,cs), +(827,585,o), +(666,739,o), +(448,739,cs), +(230,739,o), +(69,586,o), +(69,367,cs), +(69,143,o), +(230,-10,o), +(448,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(291,191,l), +(319,235,o), +(378,265,o), +(448,265,cs), +(514,265,o), +(575,238,o), +(605,191,c), +(668,191,l), +(639,275,o), +(550,322,o), +(448,322,cs), +(346,322,o), +(257,275,o), +(228,191,c) +); +}, +{ +closed = 1; +nodes = ( +(267,63,o), +(146,185,o), +(146,367,cs), +(146,546,o), +(267,666,o), +(448,666,cs), +(629,666,o), +(750,546,o), +(750,367,cs), +(750,185,o), +(629,63,o), +(448,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(396,403,o), +(419,424,o), +(419,454,cs), +(419,484,o), +(396,505,o), +(366,505,cs), +(336,505,o), +(312,484,o), +(312,454,cs), +(312,424,o), +(336,403,o), +(366,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,403,o), +(585,424,o), +(585,454,cs), +(585,484,o), +(562,505,o), +(532,505,cs), +(502,505,o), +(478,484,o), +(478,454,cs), +(478,424,o), +(502,403,o), +(532,403,cs) +); +} +); +width = 857; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(684,-10,o), +(841,140,o), +(841,366,cs), +(841,590,o), +(684,739,o), +(467,739,cs), +(250,739,o), +(92,590,o), +(92,366,cs), +(92,140,o), +(250,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,156,l), +(290,235,o), +(369,285,o), +(465,285,cs), +(564,285,o), +(643,235,o), +(672,156,c), +(706,156,l), +(673,254,o), +(586,316,o), +(465,316,cs), +(346,316,o), +(258,254,o), +(226,156,c) +); +}, +{ +closed = 1; +nodes = ( +(269,19,o), +(125,158,o), +(125,366,cs), +(125,572,o), +(269,710,o), +(467,710,cs), +(664,710,o), +(808,572,o), +(808,366,cs), +(808,158,o), +(664,19,o), +(467,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(417,412,o), +(438,431,o), +(438,458,cs), +(438,485,o), +(417,504,o), +(390,504,cs), +(363,504,o), +(342,485,o), +(342,458,cs), +(342,431,o), +(363,412,o), +(390,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,412,o), +(592,431,o), +(592,458,cs), +(592,485,o), +(571,504,o), +(544,504,cs), +(517,504,o), +(496,485,o), +(496,458,cs), +(496,431,o), +(517,412,o), +(544,412,cs) +); +} +); +width = 888; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,-10,o), +(827,143,o), +(827,367,cs), +(827,585,o), +(666,739,o), +(448,739,cs), +(230,739,o), +(69,586,o), +(69,367,cs), +(69,143,o), +(230,-10,o), +(448,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(291,191,l), +(319,235,o), +(378,265,o), +(448,265,cs), +(514,265,o), +(575,238,o), +(605,191,c), +(668,191,l), +(639,275,o), +(550,322,o), +(448,322,cs), +(346,322,o), +(257,275,o), +(228,191,c) +); +}, +{ +closed = 1; +nodes = ( +(267,63,o), +(146,185,o), +(146,367,cs), +(146,546,o), +(267,666,o), +(448,666,cs), +(629,666,o), +(750,546,o), +(750,367,cs), +(750,185,o), +(629,63,o), +(448,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(396,403,o), +(419,424,o), +(419,454,cs), +(419,484,o), +(396,505,o), +(366,505,cs), +(336,505,o), +(312,484,o), +(312,454,cs), +(312,424,o), +(336,403,o), +(366,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,403,o), +(585,424,o), +(585,454,cs), +(585,484,o), +(562,505,o), +(532,505,cs), +(502,505,o), +(478,484,o), +(478,454,cs), +(478,424,o), +(502,403,o), +(532,403,cs) +); +} +); +width = 857; +} +); +metricLeft = copyright; +metricRight = copyright; +unicode = 9785; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/whiteS_milingF_ace.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/whiteS_milingF_ace.glyph new file mode 100644 index 00000000..18512a5f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/whiteS_milingF_ace.glyph @@ -0,0 +1,2124 @@ +{ +glyphname = whiteSmilingFace; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(637,-10,o), +(798,143,o), +(798,367,cs), +(798,585,o), +(637,739,o), +(419,739,cs), +(201,739,o), +(40,586,o), +(40,367,cs), +(40,143,o), +(201,-10,o), +(419,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,124,o), +(629,195,o), +(648,297,c), +(673,297,l), +(673,332,l), +(547,332,l), +(547,297,l), +(579,297,l), +(561,232,o), +(500,191,o), +(419,191,cs), +(338,191,o), +(277,232,o), +(259,297,c), +(291,297,l), +(291,332,l), +(165,332,l), +(165,297,l), +(190,297,l), +(209,195,o), +(302,124,o), +(419,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(238,63,o), +(117,185,o), +(117,367,cs), +(117,546,o), +(238,666,o), +(419,666,cs), +(600,666,o), +(721,546,o), +(721,367,cs), +(721,185,o), +(600,63,o), +(419,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,403,o), +(390,424,o), +(390,454,cs), +(390,484,o), +(367,505,o), +(337,505,cs), +(307,505,o), +(283,484,o), +(283,454,cs), +(283,424,o), +(307,403,o), +(337,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(533,403,o), +(556,424,o), +(556,454,cs), +(556,484,o), +(533,505,o), +(503,505,cs), +(473,505,o), +(449,484,o), +(449,454,cs), +(449,424,o), +(473,403,o), +(503,403,cs) +); +} +); +width = 838; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(652,-10,o), +(809,140,o), +(809,366,cs), +(809,590,o), +(652,739,o), +(435,739,cs), +(218,739,o), +(60,590,o), +(60,366,cs), +(60,140,o), +(218,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(572,105,o), +(667,187,o), +(685,311,c), +(721,311,l), +(721,326,l), +(612,326,l), +(612,311,l), +(651,311,l), +(639,206,o), +(550,136,o), +(433,136,cs), +(319,136,o), +(229,206,o), +(216,311,c), +(257,311,l), +(257,326,l), +(148,326,l), +(148,311,l), +(183,311,l), +(200,187,o), +(296,105,o), +(433,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,19,o), +(93,158,o), +(93,366,cs), +(93,572,o), +(237,710,o), +(435,710,cs), +(632,710,o), +(776,572,o), +(776,366,cs), +(776,158,o), +(632,19,o), +(435,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(385,412,o), +(406,431,o), +(406,458,cs), +(406,485,o), +(385,504,o), +(358,504,cs), +(331,504,o), +(310,485,o), +(310,458,cs), +(310,431,o), +(331,412,o), +(358,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(539,412,o), +(560,431,o), +(560,458,cs), +(560,485,o), +(539,504,o), +(512,504,cs), +(485,504,o), +(464,485,o), +(464,458,cs), +(464,431,o), +(485,412,o), +(512,412,cs) +); +} +); +width = 869; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(652,-10,o), +(809,140,o), +(809,366,cs), +(809,590,o), +(652,739,o), +(435,739,cs), +(218,739,o), +(60,590,o), +(60,366,cs), +(60,140,o), +(218,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(572,105,o), +(667,187,o), +(685,311,c), +(721,311,l), +(721,326,l), +(612,326,l), +(612,311,l), +(651,311,l), +(639,206,o), +(550,136,o), +(433,136,cs), +(319,136,o), +(229,206,o), +(216,311,c), +(257,311,l), +(257,326,l), +(148,326,l), +(148,311,l), +(183,311,l), +(200,187,o), +(296,105,o), +(433,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,19,o), +(93,158,o), +(93,366,cs), +(93,572,o), +(237,710,o), +(435,710,cs), +(632,710,o), +(776,572,o), +(776,366,cs), +(776,158,o), +(632,19,o), +(435,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(385,412,o), +(406,431,o), +(406,458,cs), +(406,485,o), +(385,504,o), +(358,504,cs), +(331,504,o), +(310,485,o), +(310,458,cs), +(310,431,o), +(331,412,o), +(358,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(539,412,o), +(560,431,o), +(560,458,cs), +(560,485,o), +(539,504,o), +(512,504,cs), +(485,504,o), +(464,485,o), +(464,458,cs), +(464,431,o), +(485,412,o), +(512,412,cs) +); +} +); +width = 869; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(637,-10,o), +(798,143,o), +(798,367,cs), +(798,585,o), +(637,739,o), +(419,739,cs), +(201,739,o), +(40,586,o), +(40,367,cs), +(40,143,o), +(201,-10,o), +(419,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,124,o), +(629,195,o), +(648,297,c), +(673,297,l), +(673,332,l), +(547,332,l), +(547,297,l), +(579,297,l), +(561,232,o), +(500,191,o), +(419,191,cs), +(338,191,o), +(277,232,o), +(259,297,c), +(291,297,l), +(291,332,l), +(165,332,l), +(165,297,l), +(190,297,l), +(209,195,o), +(302,124,o), +(419,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(238,63,o), +(117,185,o), +(117,367,cs), +(117,546,o), +(238,666,o), +(419,666,cs), +(600,666,o), +(721,546,o), +(721,367,cs), +(721,185,o), +(600,63,o), +(419,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,403,o), +(390,424,o), +(390,454,cs), +(390,484,o), +(367,505,o), +(337,505,cs), +(307,505,o), +(283,484,o), +(283,454,cs), +(283,424,o), +(307,403,o), +(337,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(533,403,o), +(556,424,o), +(556,454,cs), +(556,484,o), +(533,505,o), +(503,505,cs), +(473,505,o), +(449,484,o), +(449,454,cs), +(449,424,o), +(473,403,o), +(503,403,cs) +); +} +); +width = 838; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(632,-10,o), +(789,140,o), +(789,366,cs), +(789,590,o), +(632,739,o), +(415,739,cs), +(198,739,o), +(40,590,o), +(40,366,cs), +(40,140,o), +(198,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(552,105,o), +(647,187,o), +(665,311,c), +(701,311,l), +(701,326,l), +(592,326,l), +(592,311,l), +(631,311,l), +(619,206,o), +(530,136,o), +(413,136,cs), +(299,136,o), +(209,206,o), +(196,311,c), +(237,311,l), +(237,326,l), +(128,326,l), +(128,311,l), +(163,311,l), +(180,187,o), +(276,105,o), +(413,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,19,o), +(73,158,o), +(73,366,cs), +(73,572,o), +(217,710,o), +(415,710,cs), +(612,710,o), +(756,572,o), +(756,366,cs), +(756,158,o), +(612,19,o), +(415,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,412,o), +(386,431,o), +(386,458,cs), +(386,485,o), +(365,504,o), +(338,504,cs), +(311,504,o), +(290,485,o), +(290,458,cs), +(290,431,o), +(311,412,o), +(338,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,412,o), +(540,431,o), +(540,458,cs), +(540,485,o), +(519,504,o), +(492,504,cs), +(465,504,o), +(444,485,o), +(444,458,cs), +(444,431,o), +(465,412,o), +(492,412,cs) +); +} +); +width = 829; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(627,-10,o), +(788,143,o), +(788,367,cs), +(788,585,o), +(627,739,o), +(409,739,cs), +(191,739,o), +(30,586,o), +(30,367,cs), +(30,143,o), +(191,-10,o), +(409,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,124,o), +(619,195,o), +(638,297,c), +(663,297,l), +(663,332,l), +(537,332,l), +(537,297,l), +(569,297,l), +(551,232,o), +(490,191,o), +(409,191,cs), +(328,191,o), +(267,232,o), +(249,297,c), +(281,297,l), +(281,332,l), +(155,332,l), +(155,297,l), +(180,297,l), +(199,195,o), +(292,124,o), +(409,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,63,o), +(107,185,o), +(107,367,cs), +(107,546,o), +(228,666,o), +(409,666,cs), +(590,666,o), +(711,546,o), +(711,367,cs), +(711,185,o), +(590,63,o), +(409,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,403,o), +(380,424,o), +(380,454,cs), +(380,484,o), +(357,505,o), +(327,505,cs), +(297,505,o), +(273,484,o), +(273,454,cs), +(273,424,o), +(297,403,o), +(327,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,403,o), +(546,424,o), +(546,454,cs), +(546,484,o), +(523,505,o), +(493,505,cs), +(463,505,o), +(439,484,o), +(439,454,cs), +(439,424,o), +(463,403,o), +(493,403,cs) +); +} +); +width = 818; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(632,-10,o), +(789,140,o), +(789,366,cs), +(789,590,o), +(632,739,o), +(415,739,cs), +(198,739,o), +(40,590,o), +(40,366,cs), +(40,140,o), +(198,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(552,105,o), +(647,187,o), +(665,311,c), +(701,311,l), +(701,326,l), +(592,326,l), +(592,311,l), +(631,311,l), +(619,206,o), +(530,136,o), +(413,136,cs), +(299,136,o), +(209,206,o), +(196,311,c), +(237,311,l), +(237,326,l), +(128,326,l), +(128,311,l), +(163,311,l), +(180,187,o), +(276,105,o), +(413,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,19,o), +(73,158,o), +(73,366,cs), +(73,572,o), +(217,710,o), +(415,710,cs), +(612,710,o), +(756,572,o), +(756,366,cs), +(756,158,o), +(612,19,o), +(415,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,412,o), +(386,431,o), +(386,458,cs), +(386,485,o), +(365,504,o), +(338,504,cs), +(311,504,o), +(290,485,o), +(290,458,cs), +(290,431,o), +(311,412,o), +(338,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(519,412,o), +(540,431,o), +(540,458,cs), +(540,485,o), +(519,504,o), +(492,504,cs), +(465,504,o), +(444,485,o), +(444,458,cs), +(444,431,o), +(465,412,o), +(492,412,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +10 +); +stem = -2; +target = ( +1, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +16 +); +stem = -2; +target = ( +1, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +5 +); +stem = -2; +target = ( +3, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +17 +); +stem = -2; +target = ( +1, +14 +); +type = Stem; +} +); +}; +width = 829; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(616,-10,o), +(777,143,o), +(777,367,cs), +(777,585,o), +(616,739,o), +(398,739,cs), +(180,739,o), +(19,586,o), +(19,367,cs), +(19,143,o), +(180,-10,o), +(398,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(515,124,o), +(608,195,o), +(627,297,c), +(652,297,l), +(652,332,l), +(526,332,l), +(526,297,l), +(558,297,l), +(540,232,o), +(479,191,o), +(398,191,cs), +(317,191,o), +(256,232,o), +(238,297,c), +(270,297,l), +(270,332,l), +(144,332,l), +(144,297,l), +(169,297,l), +(188,195,o), +(281,124,o), +(398,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,63,o), +(96,185,o), +(96,367,cs), +(96,546,o), +(217,666,o), +(398,666,cs), +(579,666,o), +(700,546,o), +(700,367,cs), +(700,185,o), +(579,63,o), +(398,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(346,403,o), +(369,424,o), +(369,454,cs), +(369,484,o), +(346,505,o), +(316,505,cs), +(286,505,o), +(262,484,o), +(262,454,cs), +(262,424,o), +(286,403,o), +(316,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(512,403,o), +(535,424,o), +(535,454,cs), +(535,484,o), +(512,505,o), +(482,505,cs), +(452,505,o), +(428,484,o), +(428,454,cs), +(428,424,o), +(452,403,o), +(482,403,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 796; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(642,-10,o), +(799,140,o), +(799,366,cs), +(799,590,o), +(642,739,o), +(425,739,cs), +(208,739,o), +(50,590,o), +(50,366,cs), +(50,140,o), +(208,-10,o), +(425,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,105,o), +(657,187,o), +(675,311,c), +(711,311,l), +(711,326,l), +(602,326,l), +(602,311,l), +(641,311,l), +(629,206,o), +(540,136,o), +(423,136,cs), +(309,136,o), +(219,206,o), +(206,311,c), +(247,311,l), +(247,326,l), +(138,326,l), +(138,311,l), +(173,311,l), +(190,187,o), +(286,105,o), +(423,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,19,o), +(83,158,o), +(83,366,cs), +(83,572,o), +(227,710,o), +(425,710,cs), +(622,710,o), +(766,572,o), +(766,366,cs), +(766,158,o), +(622,19,o), +(425,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(375,412,o), +(396,431,o), +(396,458,cs), +(396,485,o), +(375,504,o), +(348,504,cs), +(321,504,o), +(300,485,o), +(300,458,cs), +(300,431,o), +(321,412,o), +(348,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(529,412,o), +(550,431,o), +(550,458,cs), +(550,485,o), +(529,504,o), +(502,504,cs), +(475,504,o), +(454,485,o), +(454,458,cs), +(454,431,o), +(475,412,o), +(502,412,cs) +); +} +); +width = 849; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(627,-10,o), +(788,143,o), +(788,367,cs), +(788,585,o), +(627,739,o), +(409,739,cs), +(191,739,o), +(30,586,o), +(30,367,cs), +(30,143,o), +(191,-10,o), +(409,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(526,124,o), +(619,195,o), +(638,297,c), +(663,297,l), +(663,332,l), +(537,332,l), +(537,297,l), +(569,297,l), +(551,232,o), +(490,191,o), +(409,191,cs), +(328,191,o), +(267,232,o), +(249,297,c), +(281,297,l), +(281,332,l), +(155,332,l), +(155,297,l), +(180,297,l), +(199,195,o), +(292,124,o), +(409,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,63,o), +(107,185,o), +(107,367,cs), +(107,546,o), +(228,666,o), +(409,666,cs), +(590,666,o), +(711,546,o), +(711,367,cs), +(711,185,o), +(590,63,o), +(409,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,403,o), +(380,424,o), +(380,454,cs), +(380,484,o), +(357,505,o), +(327,505,cs), +(297,505,o), +(273,484,o), +(273,454,cs), +(273,424,o), +(297,403,o), +(327,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(523,403,o), +(546,424,o), +(546,454,cs), +(546,484,o), +(523,505,o), +(493,505,cs), +(463,505,o), +(439,484,o), +(439,454,cs), +(439,424,o), +(463,403,o), +(493,403,cs) +); +} +); +width = 818; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(642,-10,o), +(796,140,o), +(796,366,cs), +(796,590,o), +(642,739,o), +(430,739,cs), +(217,739,o), +(61,590,o), +(61,366,cs), +(61,140,o), +(217,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(563,105,o), +(656,187,o), +(674,311,c), +(710,311,l), +(710,326,l), +(603,326,l), +(603,311,l), +(641,311,l), +(630,206,o), +(542,136,o), +(428,136,cs), +(316,136,o), +(228,206,o), +(215,311,c), +(254,311,l), +(254,326,l), +(149,326,l), +(149,311,l), +(182,311,l), +(199,187,o), +(293,105,o), +(428,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,19,o), +(94,158,o), +(94,366,cs), +(94,572,o), +(236,710,o), +(430,710,cs), +(623,710,o), +(763,572,o), +(763,366,cs), +(763,158,o), +(623,19,o), +(430,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,412,o), +(401,431,o), +(401,458,cs), +(401,485,o), +(380,504,o), +(353,504,cs), +(328,504,o), +(307,485,o), +(307,458,cs), +(307,431,o), +(328,412,o), +(353,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(532,412,o), +(551,431,o), +(551,458,cs), +(551,485,o), +(532,504,o), +(505,504,cs), +(478,504,o), +(457,485,o), +(457,458,cs), +(457,431,o), +(478,412,o), +(505,412,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +10 +); +stem = -2; +target = ( +1, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +16 +); +stem = -2; +target = ( +1, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +5 +); +stem = -2; +target = ( +3, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +17 +); +stem = -2; +target = ( +1, +14 +); +type = Stem; +} +); +}; +width = 856; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(622,-10,o), +(779,143,o), +(779,367,cs), +(779,585,o), +(622,739,o), +(409,739,cs), +(196,739,o), +(39,586,o), +(39,367,cs), +(39,143,o), +(196,-10,o), +(409,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(522,124,o), +(614,194,o), +(633,297,c), +(656,297,l), +(656,332,l), +(533,332,l), +(533,297,l), +(564,297,l), +(546,232,o), +(488,191,o), +(409,191,cs), +(330,191,o), +(271,232,o), +(253,297,c), +(285,297,l), +(285,332,l), +(161,332,l), +(161,297,l), +(185,297,l), +(204,194,o), +(296,124,o), +(409,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,63,o), +(115,185,o), +(115,367,cs), +(115,546,o), +(233,666,o), +(409,666,cs), +(585,666,o), +(703,546,o), +(703,367,cs), +(703,185,o), +(585,63,o), +(409,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,403,o), +(380,424,o), +(380,454,cs), +(380,484,o), +(357,505,o), +(329,505,cs), +(300,505,o), +(276,484,o), +(276,454,cs), +(276,424,o), +(300,403,o), +(329,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,403,o), +(543,424,o), +(543,454,cs), +(543,484,o), +(520,505,o), +(491,505,cs), +(462,505,o), +(439,484,o), +(439,454,cs), +(439,424,o), +(462,403,o), +(491,403,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 817; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(684,-10,o), +(841,140,o), +(841,366,cs), +(841,590,o), +(684,739,o), +(467,739,cs), +(250,739,o), +(92,590,o), +(92,366,cs), +(92,140,o), +(250,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(604,105,o), +(699,187,o), +(717,311,c), +(753,311,l), +(753,326,l), +(644,326,l), +(644,311,l), +(683,311,l), +(671,206,o), +(582,136,o), +(465,136,cs), +(351,136,o), +(261,206,o), +(248,311,c), +(289,311,l), +(289,326,l), +(180,326,l), +(180,311,l), +(215,311,l), +(232,187,o), +(328,105,o), +(465,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(269,19,o), +(125,158,o), +(125,366,cs), +(125,572,o), +(269,710,o), +(467,710,cs), +(664,710,o), +(808,572,o), +(808,366,cs), +(808,158,o), +(664,19,o), +(467,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(417,412,o), +(438,431,o), +(438,458,cs), +(438,485,o), +(417,504,o), +(390,504,cs), +(363,504,o), +(342,485,o), +(342,458,cs), +(342,431,o), +(363,412,o), +(390,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,412,o), +(592,431,o), +(592,458,cs), +(592,485,o), +(571,504,o), +(544,504,cs), +(517,504,o), +(496,485,o), +(496,458,cs), +(496,431,o), +(517,412,o), +(544,412,cs) +); +} +); +width = 888; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,-10,o), +(827,143,o), +(827,367,cs), +(827,585,o), +(666,739,o), +(448,739,cs), +(230,739,o), +(69,586,o), +(69,367,cs), +(69,143,o), +(230,-10,o), +(448,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(565,124,o), +(658,195,o), +(677,297,c), +(702,297,l), +(702,332,l), +(576,332,l), +(576,297,l), +(608,297,l), +(590,232,o), +(529,191,o), +(448,191,cs), +(367,191,o), +(306,232,o), +(288,297,c), +(320,297,l), +(320,332,l), +(194,332,l), +(194,297,l), +(219,297,l), +(238,195,o), +(331,124,o), +(448,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,63,o), +(146,185,o), +(146,367,cs), +(146,546,o), +(267,666,o), +(448,666,cs), +(629,666,o), +(750,546,o), +(750,367,cs), +(750,185,o), +(629,63,o), +(448,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(396,403,o), +(419,424,o), +(419,454,cs), +(419,484,o), +(396,505,o), +(366,505,cs), +(336,505,o), +(312,484,o), +(312,454,cs), +(312,424,o), +(336,403,o), +(366,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,403,o), +(585,424,o), +(585,454,cs), +(585,484,o), +(562,505,o), +(532,505,cs), +(502,505,o), +(478,484,o), +(478,454,cs), +(478,424,o), +(502,403,o), +(532,403,cs) +); +} +); +width = 856; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(684,-10,o), +(841,140,o), +(841,366,cs), +(841,590,o), +(684,739,o), +(467,739,cs), +(250,739,o), +(92,590,o), +(92,366,cs), +(92,140,o), +(250,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(604,105,o), +(699,187,o), +(717,311,c), +(753,311,l), +(753,326,l), +(644,326,l), +(644,311,l), +(683,311,l), +(671,206,o), +(582,136,o), +(465,136,cs), +(351,136,o), +(261,206,o), +(248,311,c), +(289,311,l), +(289,326,l), +(180,326,l), +(180,311,l), +(215,311,l), +(232,187,o), +(328,105,o), +(465,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(269,19,o), +(125,158,o), +(125,366,cs), +(125,572,o), +(269,710,o), +(467,710,cs), +(664,710,o), +(808,572,o), +(808,366,cs), +(808,158,o), +(664,19,o), +(467,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(417,412,o), +(438,431,o), +(438,458,cs), +(438,485,o), +(417,504,o), +(390,504,cs), +(363,504,o), +(342,485,o), +(342,458,cs), +(342,431,o), +(363,412,o), +(390,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,412,o), +(592,431,o), +(592,458,cs), +(592,485,o), +(571,504,o), +(544,504,cs), +(517,504,o), +(496,485,o), +(496,458,cs), +(496,431,o), +(517,412,o), +(544,412,cs) +); +} +); +width = 888; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,-10,o), +(827,143,o), +(827,367,cs), +(827,585,o), +(666,739,o), +(448,739,cs), +(230,739,o), +(69,586,o), +(69,367,cs), +(69,143,o), +(230,-10,o), +(448,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(565,124,o), +(658,195,o), +(677,297,c), +(702,297,l), +(702,332,l), +(576,332,l), +(576,297,l), +(608,297,l), +(590,232,o), +(529,191,o), +(448,191,cs), +(367,191,o), +(306,232,o), +(288,297,c), +(320,297,l), +(320,332,l), +(194,332,l), +(194,297,l), +(219,297,l), +(238,195,o), +(331,124,o), +(448,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,63,o), +(146,185,o), +(146,367,cs), +(146,546,o), +(267,666,o), +(448,666,cs), +(629,666,o), +(750,546,o), +(750,367,cs), +(750,185,o), +(629,63,o), +(448,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(396,403,o), +(419,424,o), +(419,454,cs), +(419,484,o), +(396,505,o), +(366,505,cs), +(336,505,o), +(312,484,o), +(312,454,cs), +(312,424,o), +(336,403,o), +(366,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,403,o), +(585,424,o), +(585,454,cs), +(585,484,o), +(562,505,o), +(532,505,cs), +(502,505,o), +(478,484,o), +(478,454,cs), +(478,424,o), +(502,403,o), +(532,403,cs) +); +} +); +width = 857; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(684,-10,o), +(841,140,o), +(841,366,cs), +(841,590,o), +(684,739,o), +(467,739,cs), +(250,739,o), +(92,590,o), +(92,366,cs), +(92,140,o), +(250,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(604,105,o), +(699,187,o), +(717,311,c), +(753,311,l), +(753,326,l), +(644,326,l), +(644,311,l), +(683,311,l), +(671,206,o), +(582,136,o), +(465,136,cs), +(351,136,o), +(261,206,o), +(248,311,c), +(289,311,l), +(289,326,l), +(180,326,l), +(180,311,l), +(215,311,l), +(232,187,o), +(328,105,o), +(465,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(269,19,o), +(125,158,o), +(125,366,cs), +(125,572,o), +(269,710,o), +(467,710,cs), +(664,710,o), +(808,572,o), +(808,366,cs), +(808,158,o), +(664,19,o), +(467,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(417,412,o), +(438,431,o), +(438,458,cs), +(438,485,o), +(417,504,o), +(390,504,cs), +(363,504,o), +(342,485,o), +(342,458,cs), +(342,431,o), +(363,412,o), +(390,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,412,o), +(592,431,o), +(592,458,cs), +(592,485,o), +(571,504,o), +(544,504,cs), +(517,504,o), +(496,485,o), +(496,458,cs), +(496,431,o), +(517,412,o), +(544,412,cs) +); +} +); +width = 888; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,-10,o), +(827,143,o), +(827,367,cs), +(827,585,o), +(666,739,o), +(448,739,cs), +(230,739,o), +(69,586,o), +(69,367,cs), +(69,143,o), +(230,-10,o), +(448,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(565,124,o), +(658,195,o), +(677,297,c), +(702,297,l), +(702,332,l), +(576,332,l), +(576,297,l), +(608,297,l), +(590,232,o), +(529,191,o), +(448,191,cs), +(367,191,o), +(306,232,o), +(288,297,c), +(320,297,l), +(320,332,l), +(194,332,l), +(194,297,l), +(219,297,l), +(238,195,o), +(331,124,o), +(448,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,63,o), +(146,185,o), +(146,367,cs), +(146,546,o), +(267,666,o), +(448,666,cs), +(629,666,o), +(750,546,o), +(750,367,cs), +(750,185,o), +(629,63,o), +(448,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(396,403,o), +(419,424,o), +(419,454,cs), +(419,484,o), +(396,505,o), +(366,505,cs), +(336,505,o), +(312,484,o), +(312,454,cs), +(312,424,o), +(336,403,o), +(366,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(562,403,o), +(585,424,o), +(585,454,cs), +(585,484,o), +(562,505,o), +(532,505,cs), +(502,505,o), +(478,484,o), +(478,454,cs), +(478,424,o), +(502,403,o), +(532,403,cs) +); +} +); +width = 857; +} +); +metricLeft = copyright; +metricRight = copyright; +unicode = 9786; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/won.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/won.glyph new file mode 100644 index 00000000..526280d2 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/won.glyph @@ -0,0 +1,1024 @@ +{ +glyphname = won; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(300,691,l), +(306,691,l), +(402,0,l), +(454,0,l), +(557,729,l), +(524,729,l), +(432,33,l), +(427,33,l), +(329,729,l), +(277,729,l), +(180,33,l), +(175,33,l), +(83,729,l), +(49,729,l), +(153,0,l) +); +}, +{ +closed = 1; +nodes = ( +(581,350,l), +(581,379,l), +(26,379,l), +(26,350,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(259,367,l), +(300,691,l), +(306,691,l), +(348,364,l), +(402,0,l), +(454,0,l), +(557,729,l), +(524,729,l), +(471,361,l), +(432,33,l), +(427,33,l), +(384,363,l), +(329,729,l), +(277,729,l), +(222,363,l), +(180,33,l), +(175,33,l), +(135,364,l), +(83,729,l), +(49,729,l), +(153,0,l) +); +}, +{ +closed = 1; +nodes = ( +(581,350,l), +(581,379,l), +(26,379,l), +(26,350,l) +); +} +); +width = 607; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,0,l), +(378,565,l), +(396,565,l), +(413,0,l), +(651,0,l), +(736,729,l), +(566,729,l), +(540,122,l), +(523,122,l), +(487,729,l), +(286,729,l), +(250,124,l), +(233,124,l), +(203,729,l), +(34,729,l), +(119,0,l) +); +}, +{ +closed = 1; +nodes = ( +(754,290,l), +(754,419,l), +(17,419,l), +(17,290,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,0,l), +(373,352,l), +(378,565,l), +(396,565,l), +(400,352,l), +(413,0,l), +(651,0,l), +(736,729,l), +(566,729,l), +(547,352,l), +(540,122,l), +(523,122,l), +(514,352,l), +(487,729,l), +(286,729,l), +(259,352,l), +(250,124,l), +(233,124,l), +(225,352,l), +(203,729,l), +(34,729,l), +(119,0,l) +); +}, +{ +closed = 1; +nodes = ( +(754,290,l), +(754,419,l), +(17,419,l), +(17,290,l) +); +} +); +width = 771; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(443,478,l), +(504,691,l), +(513,691,l), +(572,478,l), +(709,0,l), +(764,0,l), +(977,729,l), +(936,729,l), +(800,252,l), +(740,40,l), +(733,40,l), +(673,250,l), +(538,729,l), +(480,729,l), +(338,247,l), +(278,41,l), +(272,41,l), +(214,252,l), +(82,729,l), +(40,729,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(974,347,l), +(974,383,l), +(43,383,l), +(43,347,l) +); +} +); +width = 1017; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,0,l), +(530,363,l), +(542,573,l), +(556,573,l), +(571,363,l), +(597,0,l), +(908,0,l), +(1071,729,l), +(839,729,l), +(788,385,l), +(758,174,l), +(742,174,l), +(727,385,l), +(704,729,l), +(399,729,l), +(376,386,l), +(361,174,l), +(343,174,l), +(313,385,l), +(264,729,l), +(24,729,l), +(199,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1073,287,l), +(1073,435,l), +(22,435,l), +(22,287,l) +); +} +); +width = 1096; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,l), +(300,691,l), +(306,691,l), +(402,0,l), +(454,0,l), +(557,729,l), +(524,729,l), +(432,33,l), +(427,33,l), +(329,729,l), +(277,729,l), +(180,33,l), +(175,33,l), +(83,729,l), +(49,729,l), +(153,0,l) +); +}, +{ +closed = 1; +nodes = ( +(581,350,l), +(581,379,l), +(26,379,l), +(26,350,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,0,l), +(239,367,l), +(280,691,l), +(286,691,l), +(328,364,l), +(382,0,l), +(434,0,l), +(537,729,l), +(504,729,l), +(451,361,l), +(412,33,l), +(407,33,l), +(364,363,l), +(309,729,l), +(257,729,l), +(202,363,l), +(160,33,l), +(155,33,l), +(115,364,l), +(63,729,l), +(29,729,l), +(133,0,l) +); +}, +{ +closed = 1; +nodes = ( +(561,350,l), +(561,379,l), +(6,379,l), +(6,350,l) +); +} +); +width = 567; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,0,l), +(378,565,l), +(396,565,l), +(413,0,l), +(651,0,l), +(736,729,l), +(566,729,l), +(540,122,l), +(523,122,l), +(487,729,l), +(286,729,l), +(250,124,l), +(233,124,l), +(203,729,l), +(34,729,l), +(119,0,l) +); +}, +{ +closed = 1; +nodes = ( +(754,290,l), +(754,419,l), +(17,419,l), +(17,290,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(346,0,l), +(363,352,l), +(368,565,l), +(386,565,l), +(390,352,l), +(403,0,l), +(641,0,l), +(726,729,l), +(556,729,l), +(537,352,l), +(530,122,l), +(513,122,l), +(504,352,l), +(477,729,l), +(276,729,l), +(249,352,l), +(240,124,l), +(223,124,l), +(215,352,l), +(193,729,l), +(24,729,l), +(109,0,l) +); +}, +{ +closed = 1; +nodes = ( +(744,290,l), +(744,419,l), +(7,419,l), +(7,290,l) +); +} +); +width = 751; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,0,l), +(408,486,l), +(458,692,l), +(464,692,l), +(513,486,l), +(630,0,l), +(690,0,l), +(866,729,l), +(824,729,l), +(708,225,l), +(664,33,l), +(658,33,l), +(612,224,l), +(491,729,l), +(431,729,l), +(309,222,l), +(264,33,l), +(258,33,l), +(214,225,l), +(98,729,l), +(56,729,l), +(232,0,l) +); +}, +{ +closed = 1; +nodes = ( +(885,348,l), +(885,382,l), +(37,382,l), +(37,348,l) +); +} +); +width = 921; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(434,0,l), +(463,307,l), +(480,580,l), +(492,580,l), +(508,307,l), +(535,0,l), +(816,0,l), +(938,729,l), +(733,729,l), +(696,333,l), +(681,139,l), +(669,139,l), +(651,333,l), +(609,729,l), +(363,729,l), +(323,333,l), +(307,141,l), +(295,141,l), +(278,333,l), +(236,729,l), +(31,729,l), +(153,0,l) +); +}, +{ +closed = 1; +nodes = ( +(954,270,l), +(954,406,l), +(14,406,l), +(14,270,l) +); +} +); +width = 968; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,0,l), +(433,478,l), +(494,691,l), +(503,691,l), +(562,478,l), +(699,0,l), +(754,0,l), +(967,729,l), +(926,729,l), +(790,252,l), +(730,40,l), +(723,40,l), +(663,250,l), +(528,729,l), +(470,729,l), +(328,247,l), +(268,41,l), +(262,41,l), +(204,252,l), +(72,729,l), +(30,729,l), +(237,0,l) +); +}, +{ +closed = 1; +nodes = ( +(964,347,l), +(964,383,l), +(33,383,l), +(33,347,l) +); +} +); +width = 997; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(501,0,l), +(520,363,l), +(532,573,l), +(546,573,l), +(561,363,l), +(587,0,l), +(898,0,l), +(1061,729,l), +(829,729,l), +(778,385,l), +(748,174,l), +(732,174,l), +(717,385,l), +(694,729,l), +(389,729,l), +(366,386,l), +(351,174,l), +(333,174,l), +(303,385,l), +(254,729,l), +(14,729,l), +(189,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1063,287,l), +(1063,435,l), +(12,435,l), +(12,287,l) +); +} +); +width = 1076; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(308,0,l), +(423,486,l), +(471,692,l), +(477,692,l), +(526,486,l), +(640,0,l), +(699,0,l), +(871,729,l), +(831,729,l), +(717,225,l), +(673,33,l), +(667,33,l), +(623,224,l), +(504,729,l), +(445,729,l), +(326,222,l), +(281,33,l), +(275,33,l), +(233,225,l), +(119,729,l), +(77,729,l), +(250,0,l) +); +}, +{ +closed = 1; +nodes = ( +(890,348,l), +(890,382,l), +(58,382,l), +(58,348,l) +); +} +); +width = 946; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(446,0,l), +(474,307,l), +(490,580,l), +(502,580,l), +(517,307,l), +(543,0,l), +(821,0,l), +(939,729,l), +(736,729,l), +(701,333,l), +(687,139,l), +(675,139,l), +(657,333,l), +(618,729,l), +(374,729,l), +(337,333,l), +(321,141,l), +(310,141,l), +(293,333,l), +(253,729,l), +(50,729,l), +(168,0,l) +); +}, +{ +closed = 1; +nodes = ( +(954,270,l), +(954,406,l), +(34,406,l), +(34,270,l) +); +} +); +width = 987; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(316,495,l), +(382,691,l), +(387,691,l), +(374,496,l), +(340,0,l), +(388,0,l), +(643,729,l), +(611,729,l), +(440,225,l), +(373,28,l), +(367,28,l), +(381,230,l), +(417,729,l), +(368,729,l), +(184,184,l), +(131,27,l), +(125,27,l), +(137,193,l), +(175,729,l), +(145,729,l), +(97,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,351,l), +(589,376,l), +(50,376,l), +(45,351,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(273,359,l), +(380,681,l), +(385,681,l), +(361,358,l), +(340,0,l), +(388,0,l), +(643,729,l), +(611,729,l), +(481,359,l), +(372,29,l), +(366,29,l), +(393,358,l), +(417,729,l), +(368,729,l), +(239,360,l), +(132,28,l), +(126,28,l), +(152,361,l), +(175,729,l), +(145,729,l), +(97,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,351,l), +(589,376,l), +(50,376,l), +(45,351,l) +); +} +); +width = 593; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(307,0,l), +(391,372,l), +(437,575,l), +(454,575,l), +(422,372,l), +(363,0,l), +(612,0,l), +(845,729,l), +(664,729,l), +(572,339,l), +(525,140,l), +(508,140,l), +(538,341,l), +(597,729,l), +(374,729,l), +(273,331,l), +(226,143,l), +(210,143,l), +(239,326,l), +(304,729,l), +(126,729,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(767,293,l), +(792,416,l), +(47,416,l), +(22,293,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(307,0,l), +(391,347,l), +(442,565,l), +(459,565,l), +(420,347,l), +(363,0,l), +(612,0,l), +(845,729,l), +(664,729,l), +(573,343,l), +(525,140,l), +(508,140,l), +(538,341,l), +(597,729,l), +(374,729,l), +(273,331,l), +(226,143,l), +(210,143,l), +(239,326,l), +(304,729,l), +(126,729,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(767,293,l), +(792,416,l), +(47,416,l), +(22,293,l) +); +} +); +width = 779; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(256,0,l), +(464,493,l), +(548,692,l), +(553,692,l), +(554,493,l), +(558,0,l), +(612,0,l), +(943,729,l), +(902,729,l), +(659,187,l), +(594,42,l), +(589,42,l), +(588,194,l), +(585,729,l), +(528,729,l), +(295,177,l), +(239,43,l), +(234,43,l), +(230,172,l), +(212,729,l), +(176,729,l), +(201,0,l) +); +}, +{ +closed = 1; +nodes = ( +(892,350,l), +(900,380,l), +(81,380,l), +(73,350,l) +); +} +); +width = 928; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,0,l), +(512,381,l), +(561,553,l), +(572,553,l), +(550,379,l), +(506,0,l), +(795,0,l), +(1058,729,l), +(844,729,l), +(730,325,l), +(682,157,l), +(669,157,l), +(688,324,l), +(732,729,l), +(474,729,l), +(356,345,l), +(299,159,l), +(284,159,l), +(309,345,l), +(360,729,l), +(145,729,l), +(115,0,l) +); +}, +{ +closed = 1; +nodes = ( +(978,282,l), +(1006,418,l), +(66,418,l), +(38,282,l) +); +} +); +width = 1013; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,0,l), +(507,515,l), +(589,687,l), +(594,687,l), +(603,517,l), +(630,0,l), +(687,0,l), +(1071,729,l), +(1028,729,l), +(782,258,l), +(669,42,l), +(662,42,l), +(651,262,l), +(627,729,l), +(572,729,l), +(344,250,l), +(245,43,l), +(239,43,l), +(218,253,l), +(172,729,l), +(133,729,l), +(209,0,l) +); +}, +{ +closed = 1; +nodes = ( +(970,348,l), +(977,382,l), +(84,382,l), +(77,348,l) +); +} +); +width = 1010; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(416,0,l), +(530,400,l), +(581,586,l), +(595,586,l), +(575,397,l), +(531,0,l), +(819,0,l), +(1136,729,l), +(922,729,l), +(770,321,l), +(714,164,l), +(699,164,l), +(717,321,l), +(763,729,l), +(480,729,l), +(355,314,l), +(310,163,l), +(293,163,l), +(302,315,l), +(321,729,l), +(119,729,l), +(127,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1061,292,l), +(1094,452,l), +(48,452,l), +(15,292,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,0,l), +(542,384,l), +(589,572,l), +(604,572,l), +(580,380,l), +(526,0,l), +(847,0,l), +(1154,729,l), +(916,729,l), +(777,330,l), +(729,181,l), +(713,181,l), +(735,329,l), +(791,729,l), +(476,729,l), +(365,323,l), +(330,180,l), +(312,180,l), +(323,324,l), +(351,729,l), +(126,729,l), +(124,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1077,299,l), +(1108,447,l), +(58,447,l), +(27,299,l) +); +} +); +width = 1092; +} +); +unicode = 8361; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/x.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/x.glyph new file mode 100644 index 00000000..34f72325 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/x.glyph @@ -0,0 +1,1135 @@ +{ +glyphname = x; +kernLeft = KO_x; +kernRight = KO_x; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (238,0); +}, +{ +name = top; +pos = (238,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(192,0,l), +(211,80,l), +(230,176,l), +(238,176,l), +(257,80,l), +(275,0,l), +(468,0,l), +(368,288,l), +(460,541,l), +(281,541,l), +(263,459,l), +(246,366,l), +(238,366,l), +(222,459,l), +(205,541,l), +(14,541,l), +(109,284,l), +(7,0,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,0,l), +(224,145,l), +(230,176,l), +(238,176,l), +(244,145,l), +(275,0,l), +(468,0,l), +(368,288,l), +(460,541,l), +(281,541,l), +(251,393,l), +(246,366,l), +(238,366,l), +(233,393,l), +(205,541,l), +(14,541,l), +(109,284,l), +(7,0,l) +); +} +); +width = 475; +}, +{ +anchors = ( +{ +name = bottom; +pos = (126,0); +}, +{ +name = top; +pos = (126,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(45,0,l), +(79,98,l), +(126,244,l), +(130,244,l), +(175,98,l), +(208,0,l), +(238,0,l), +(146,264,l), +(236,516,l), +(205,516,l), +(170,412,l), +(130,286,l), +(127,286,l), +(87,412,l), +(52,516,l), +(20,516,l), +(110,264,l), +(13,0,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(45,0,l), +(116,214,l), +(126,244,l), +(130,244,l), +(139,214,l), +(208,0,l), +(238,0,l), +(146,264,l), +(236,516,l), +(205,516,l), +(140,316,l), +(130,286,l), +(127,286,l), +(117,316,l), +(52,516,l), +(20,516,l), +(110,264,l), +(13,0,l) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = bottom; +pos = (272,0); +}, +{ +name = top; +pos = (272,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(271,239,l), +(276,239,l), +(485,0,l), +(533,0,l), +(298,266,l), +(520,517,l), +(474,517,l), +(276,290,l), +(271,290,l), +(71,517,l), +(23,517,l), +(249,265,l), +(11,0,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,0,l), +(244,210,l), +(271,241,l), +(276,241,l), +(302,210,l), +(485,0,l), +(533,0,l), +(298,266,l), +(520,517,l), +(474,517,l), +(302,319,l), +(276,288,l), +(271,288,l), +(245,319,l), +(71,517,l), +(23,517,l), +(249,265,l), +(11,0,l) +); +} +); +width = 545; +}, +{ +anchors = ( +{ +name = bottom; +pos = (354,0); +}, +{ +name = top; +pos = (354,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(239,0,l), +(347,151,l), +(353,151,l), +(461,0,l), +(718,0,l), +(503,287,l), +(706,544,l), +(456,544,l), +(359,399,l), +(353,399,l), +(258,544,l), +(1,544,l), +(213,281,l), +(-10,0,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,0,l), +(332,135,l), +(347,158,l), +(353,158,l), +(368,135,l), +(461,0,l), +(718,0,l), +(503,287,l), +(706,544,l), +(456,544,l), +(372,413,l), +(359,392,l), +(353,392,l), +(340,413,l), +(258,544,l), +(1,544,l), +(213,281,l), +(-10,0,l) +); +} +); +width = 709; +}, +{ +anchors = ( +{ +name = bottom; +pos = (120,0); +}, +{ +name = top; +pos = (120,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(49,0,l), +(83,98,l), +(130,244,l), +(134,244,l), +(179,98,l), +(212,0,l), +(242,0,l), +(150,264,l), +(240,516,l), +(209,516,l), +(174,412,l), +(134,286,l), +(131,286,l), +(91,412,l), +(56,516,l), +(24,516,l), +(114,264,l), +(17,0,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(31,0,l), +(96,180,l), +(122,243,l), +(123,243,l), +(146,180,l), +(210,0,l), +(241,0,l), +(141,274,l), +(237,516,l), +(206,516,l), +(144,358,l), +(123,304,l), +(122,304,l), +(100,358,l), +(39,516,l), +(7,516,l), +(103,274,l), +(-1,0,l) +); +} +); +width = 244; +}, +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (218,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(177,0,l), +(196,80,l), +(215,176,l), +(223,176,l), +(242,80,l), +(260,0,l), +(453,0,l), +(353,288,l), +(445,541,l), +(266,541,l), +(248,459,l), +(231,366,l), +(223,366,l), +(207,459,l), +(190,541,l), +(-1,541,l), +(94,284,l), +(-8,0,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,0,l), +(198,100,l), +(214,155,l), +(215,155,l), +(231,100,l), +(257,0,l), +(433,0,l), +(343,288,l), +(424,541,l), +(262,541,l), +(238,431,l), +(225,386,l), +(224,386,l), +(212,431,l), +(187,541,l), +(10,541,l), +(94,284,l), +(3,0,l) +); +} +); +width = 435; +}, +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = top; +pos = (235,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(63,0,l), +(254,244,l), +(258,244,l), +(444,0,l), +(487,0,l), +(280,271,l), +(465,517,l), +(423,517,l), +(259,298,l), +(255,298,l), +(88,517,l), +(45,517,l), +(233,270,l), +(22,0,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(35,0,l), +(186,187,l), +(235,248,l), +(236,248,l), +(286,187,l), +(434,0,l), +(479,0,l), +(263,274,l), +(455,517,l), +(412,517,l), +(280,349,l), +(238,296,l), +(237,296,l), +(193,349,l), +(60,517,l), +(14,517,l), +(210,272,l), +(-8,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 471; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (308,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(209,0,l), +(276,102,l), +(314,170,l), +(320,170,l), +(357,102,l), +(420,0,l), +(645,0,l), +(453,282,l), +(628,544,l), +(411,544,l), +(361,459,l), +(327,395,l), +(321,395,l), +(287,459,l), +(238,544,l), +(11,544,l), +(192,277,l), +(-6,0,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(282,129,l), +(305,164,l), +(306,164,l), +(326,129,l), +(403,0,l), +(629,0,l), +(446,282,l), +(612,544,l), +(406,544,l), +(346,438,l), +(323,400,l), +(322,400,l), +(299,438,l), +(241,544,l), +(14,544,l), +(186,277,l), +(-2,0,l) +); +} +); +width = 627; +}, +{ +anchors = ( +{ +name = bottom; +pos = (274,0); +}, +{ +name = top; +pos = (274,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(63,0,l), +(278,239,l), +(283,239,l), +(492,0,l), +(540,0,l), +(305,266,l), +(527,517,l), +(481,517,l), +(283,290,l), +(278,290,l), +(78,517,l), +(30,517,l), +(256,265,l), +(18,0,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,0,l), +(218,184,l), +(275,245,l), +(276,245,l), +(332,184,l), +(496,0,l), +(547,0,l), +(304,269,l), +(530,517,l), +(481,517,l), +(328,349,l), +(276,293,l), +(275,293,l), +(222,349,l), +(68,517,l), +(18,517,l), +(248,269,l), +(2,0,l) +); +} +); +width = 549; +}, +{ +anchors = ( +{ +name = bottom; +pos = (349,0); +}, +{ +name = top; +pos = (349,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(239,0,l), +(347,151,l), +(353,151,l), +(461,0,l), +(718,0,l), +(503,287,l), +(706,544,l), +(456,544,l), +(359,399,l), +(353,399,l), +(258,544,l), +(1,544,l), +(213,281,l), +(-10,0,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,0,l), +(308,103,l), +(345,158,l), +(346,158,l), +(385,102,l), +(456,0,l), +(713,0,l), +(498,287,l), +(701,544,l), +(451,544,l), +(390,449,l), +(352,392,l), +(351,392,l), +(312,449,l), +(253,544,l), +(-4,544,l), +(208,281,l), +(-15,0,l) +); +} +); +width = 699; +}, +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = top; +pos = (252,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(63,0,l), +(254,244,l), +(258,244,l), +(444,0,l), +(487,0,l), +(280,271,l), +(465,517,l), +(423,517,l), +(259,298,l), +(255,298,l), +(88,517,l), +(45,517,l), +(233,270,l), +(22,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(64,0,l), +(238,228,l), +(251,247,l), +(255,247,l), +(269,228,l), +(438,0,l), +(480,0,l), +(276,271,l), +(458,517,l), +(418,517,l), +(268,311,l), +(256,294,l), +(252,294,l), +(241,311,l), +(88,517,l), +(48,517,l), +(232,271,l), +(25,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 506; +}, +{ +anchors = ( +{ +name = bottom; +pos = (322,0); +}, +{ +name = top; +pos = (322,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,l), +(287,102,l), +(325,170,l), +(331,170,l), +(368,102,l), +(431,0,l), +(656,0,l), +(464,282,l), +(639,544,l), +(422,544,l), +(372,459,l), +(338,395,l), +(332,395,l), +(298,459,l), +(249,544,l), +(22,544,l), +(203,277,l), +(5,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(286,117,l), +(314,170,l), +(324,170,l), +(349,117,l), +(416,0,l), +(639,0,l), +(453,282,l), +(623,544,l), +(407,544,l), +(349,435,l), +(330,395,l), +(321,395,l), +(303,433,l), +(246,544,l), +(20,544,l), +(195,277,l), +(4,0,l) +); +} +); +width = 643; +}, +{ +anchors = ( +{ +name = bottom; +pos = (72,0); +}, +{ +name = top; +pos = (179,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-9,0,l), +(61,129,l), +(121,244,l), +(125,244,l), +(137,129,l), +(153,0,l), +(180,0,l), +(144,261,l), +(287,516,l), +(256,516,l), +(201,414,l), +(133,283,l), +(129,283,l), +(116,414,l), +(104,516,l), +(77,516,l), +(110,266,l), +(-40,0,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-9,0,l), +(109,221,l), +(121,244,l), +(125,244,l), +(127,221,l), +(153,0,l), +(180,0,l), +(144,261,l), +(287,516,l), +(256,516,l), +(143,303,l), +(133,283,l), +(129,283,l), +(127,303,l), +(104,516,l), +(77,516,l), +(110,266,l), +(-40,0,l) +); +} +); +width = 250; +}, +{ +anchors = ( +{ +name = bottom; +pos = (184,0); +}, +{ +name = top; +pos = (296,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(176,96,l), +(208,186,l), +(214,186,l), +(216,96,l), +(220,0,l), +(392,0,l), +(360,274,l), +(506,541,l), +(326,541,l), +(290,456,l), +(254,360,l), +(248,360,l), +(248,456,l), +(248,541,l), +(69,541,l), +(106,284,l), +(-49,0,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(197,156,l), +(208,186,l), +(214,186,l), +(215,156,l), +(220,0,l), +(392,0,l), +(360,274,l), +(506,541,l), +(326,541,l), +(264,388,l), +(254,360,l), +(248,360,l), +(248,389,l), +(248,541,l), +(69,541,l), +(106,284,l), +(-49,0,l) +); +} +); +width = 457; +}, +{ +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = top; +pos = (317,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(12,0,l), +(232,232,l), +(250,251,l), +(253,251,l), +(263,232,l), +(384,0,l), +(426,0,l), +(279,275,l), +(505,517,l), +(461,517,l), +(279,322,l), +(260,302,l), +(256,302,l), +(246,322,l), +(142,517,l), +(102,517,l), +(231,278,l), +(-32,0,l) +); +} +); +width = 503; +}, +{ +anchors = ( +{ +name = bottom; +pos = (292,0); +}, +{ +name = top; +pos = (404,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(289,134,l), +(310,159,l), +(318,159,l), +(330,134,l), +(398,0,l), +(613,0,l), +(463,281,l), +(705,544,l), +(475,544,l), +(387,435,l), +(369,413,l), +(361,413,l), +(351,435,l), +(302,544,l), +(84,544,l), +(217,299,l), +(-52,0,l) +); +} +); +width = 674; +}, +{ +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = top; +pos = (333,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(4,0,l), +(234,210,l), +(265,237,l), +(269,237,l), +(288,210,l), +(427,0,l), +(471,0,l), +(295,263,l), +(567,517,l), +(517,517,l), +(305,316,l), +(276,289,l), +(271,289,l), +(253,316,l), +(120,517,l), +(77,517,l), +(245,268,l), +(-43,0,l) +); +} +); +width = 537; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (417,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,0,l), +(300,128,l), +(320,152,l), +(326,152,l), +(339,129,l), +(410,0,l), +(653,0,l), +(490,274,l), +(754,544,l), +(499,544,l), +(398,428,l), +(374,401,l), +(368,401,l), +(355,428,l), +(298,544,l), +(58,544,l), +(214,285,l), +(-66,0,l) +); +} +); +width = 700; +} +); +unicode = 120; +userData = { +KernOnName = x; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/y.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/y.glyph new file mode 100644 index 00000000..1cc8e4de --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/y.glyph @@ -0,0 +1,1431 @@ +{ +glyphname = y; +kernLeft = KO_y; +kernRight = KO_v; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (44,0); +}, +{ +name = "#exit"; +pos = (439,0); +}, +{ +name = bottom; +pos = (417,0); +}, +{ +name = top; +pos = (220,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(121,-167,ls), +(219,-167,o), +(304,-135,o), +(332,11,cs), +(432,541,l), +(263,541,l), +(241,286,l), +(233,179,l), +(226,179,l), +(215,288,l), +(187,541,l), +(7,541,l), +(149,-38,l), +(155,80,l), +(145,16,ls), +(138,-27,o), +(119,-36,o), +(89,-36,cs), +(55,-36,l), +(55,-167,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-167,ls), +(219,-167,o), +(304,-135,o), +(332,11,cs), +(432,541,l), +(263,541,l), +(242,301,l), +(233,179,l), +(226,179,l), +(214,300,l), +(187,541,l), +(7,541,l), +(149,-38,l), +(155,80,l), +(145,16,ls), +(138,-27,o), +(119,-36,o), +(89,-36,cs), +(55,-36,l), +(55,-167,l) +); +} +); +width = 439; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (20,0); +}, +{ +name = "#exit"; +pos = (254,0); +}, +{ +name = bottom; +pos = (202,0); +}, +{ +name = top; +pos = (127,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(53,-167,ls), +(93,-167,o), +(111,-145,o), +(120,-100,cs), +(240,516,l), +(209,516,l), +(142,154,l), +(128,65,l), +(124,65,l), +(109,152,l), +(45,516,l), +(15,516,l), +(113,-14,l), +(113,10,l), +(98,-77,ls), +(91,-115,o), +(82,-141,o), +(53,-141,cs), +(28,-141,l), +(28,-167,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(53,-167,ls), +(93,-167,o), +(111,-145,o), +(120,-100,cs), +(240,516,l), +(209,516,l), +(146,175,l), +(128,58,l), +(124,58,l), +(106,175,l), +(45,516,l), +(15,516,l), +(113,-14,l), +(113,10,l), +(98,-77,ls), +(91,-115,o), +(82,-141,o), +(53,-141,cs), +(28,-141,l), +(28,-167,l) +); +} +); +width = 254; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (30,0); +}, +{ +name = "#exit"; +pos = (558,0); +}, +{ +name = bottom; +pos = (412,0); +}, +{ +name = top; +pos = (279,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(98,-167,ls), +(177,-167,o), +(228,-130,o), +(263,-59,cs), +(549,517,l), +(508,517,l), +(336,167,l), +(290,74,l), +(284,74,l), +(236,165,l), +(51,517,l), +(9,517,l), +(273,23,l), +(273,38,l), +(231,-45,ls), +(202,-103,o), +(167,-133,o), +(101,-133,cs), +(41,-133,l), +(41,-167,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(98,-167,ls), +(177,-167,o), +(228,-130,o), +(263,-59,cs), +(547,517,l), +(508,517,l), +(379,256,l), +(290,72,l), +(284,72,l), +(188,256,l), +(51,517,l), +(11,517,l), +(272,23,l), +(272,37,l), +(231,-45,ls), +(202,-103,o), +(167,-133,o), +(101,-133,cs), +(41,-133,l), +(41,-167,l) +); +} +); +width = 558; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (70,0); +}, +{ +name = "#exit"; +pos = (673,0); +}, +{ +name = bottom; +pos = (557,0); +}, +{ +name = top; +pos = (337,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,-167,ls), +(291,-167,o), +(370,-131,o), +(423,-17,cs), +(683,544,l), +(454,544,l), +(346,248,l), +(339,248,l), +(227,544,l), +(-10,544,l), +(254,6,l), +(246,77,l), +(236,51,ls), +(224,20,o), +(202,5,o), +(133,5,cs), +(57,5,l), +(57,-167,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(160,-167,ls), +(291,-167,o), +(370,-131,o), +(423,-17,cs), +(683,544,l), +(454,544,l), +(374,324,l), +(347,238,l), +(338,238,l), +(310,324,l), +(227,544,l), +(-10,544,l), +(240,36,l), +(240,59,l), +(233,45,ls), +(220,19,o), +(197,5,o), +(133,5,cs), +(57,5,l), +(57,-167,l) +); +} +); +width = 673; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (10,0); +}, +{ +name = "#exit"; +pos = (245,0); +}, +{ +name = bottom; +pos = (199,0); +}, +{ +name = top; +pos = (124,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,-167,ls), +(100,-167,o), +(118,-145,o), +(127,-100,cs), +(247,516,l), +(216,516,l), +(149,154,l), +(135,65,l), +(131,65,l), +(116,152,l), +(52,516,l), +(22,516,l), +(120,-14,l), +(120,10,l), +(105,-77,ls), +(98,-115,o), +(89,-141,o), +(60,-141,cs), +(35,-141,l), +(35,-167,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(53,-167,ls), +(93,-167,o), +(111,-145,o), +(120,-100,cs), +(239,516,l), +(207,516,l), +(145,173,l), +(126,57,l), +(125,57,l), +(103,173,l), +(37,516,l), +(6,516,l), +(112,-18,l), +(112,6,l), +(98,-77,ls), +(91,-115,o), +(82,-141,o), +(53,-141,cs), +(18,-141,l), +(18,-167,l) +); +} +); +width = 245; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (30,0); +}, +{ +name = "#exit"; +pos = (424,0); +}, +{ +name = bottom; +pos = (409,0); +}, +{ +name = top; +pos = (212,541); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(118,-167,ls), +(216,-167,o), +(301,-135,o), +(329,11,cs), +(429,541,l), +(260,541,l), +(238,286,l), +(230,179,l), +(223,179,l), +(212,288,l), +(184,541,l), +(4,541,l), +(146,-38,l), +(152,80,l), +(142,16,ls), +(135,-27,o), +(116,-36,o), +(86,-36,cs), +(52,-36,l), +(52,-167,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(126,-167,ls), +(244,-167,o), +(298,-115,o), +(320,0,cs), +(423,541,l), +(256,541,l), +(235,323,l), +(222,197,l), +(221,197,l), +(207,322,l), +(182,541,l), +(4,541,l), +(134,-60,l), +(147,90,l), +(134,12,ls), +(128,-21,o), +(118,-26,o), +(88,-26,cs), +(47,-26,l), +(47,-167,l) +); +} +); +width = 424; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (20,0); +}, +{ +name = "#exit"; +pos = (448,0); +}, +{ +name = bottom; +pos = (321,0); +}, +{ +name = top; +pos = (224,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(102,-167,ls), +(172,-167,o), +(204,-138,o), +(228,-77,cs), +(466,517,l), +(429,517,l), +(282,145,l), +(254,73,l), +(250,73,l), +(220,145,l), +(65,517,l), +(25,517,l), +(239,23,l), +(239,40,l), +(197,-65,ls), +(178,-113,o), +(152,-135,o), +(100,-135,cs), +(53,-135,l), +(53,-167,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(80,-167,ls), +(150,-167,o), +(182,-138,o), +(206,-77,cs), +(444,517,l), +(405,517,l), +(288,223,l), +(232,81,l), +(231,81,l), +(168,223,l), +(44,517,l), +(3,517,l), +(216,23,l), +(216,39,l), +(175,-65,ls), +(156,-113,o), +(130,-135,o), +(78,-135,cs), +(24,-135,l), +(24,-167,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +20 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 448; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (57,0); +}, +{ +name = "#exit"; +pos = (577,0); +}, +{ +name = bottom; +pos = (490,0); +}, +{ +name = top; +pos = (288,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,-167,ls), +(270,-167,o), +(350,-137,o), +(397,-4,cs), +(594,544,l), +(389,544,l), +(344,376,ls), +(332,330,o), +(320,285,o), +(309,220,c), +(302,220,l), +(290,285,o), +(277,330,o), +(264,376,cs), +(216,544,l), +(6,544,l), +(219,25,l), +(219,70,l), +(207,38,ls), +(194,4,o), +(172,-11,o), +(131,-11,cs), +(62,-11,l), +(62,-167,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,-167,ls), +(277,-167,o), +(344,-118,o), +(385,-4,cs), +(582,544,l), +(377,544,l), +(314,337,l), +(295,274,l), +(294,274,l), +(272,337,l), +(204,544,l), +(-6,544,l), +(214,8,l), +(214,88,l), +(195,38,ls), +(182,4,o), +(160,-11,o), +(119,-11,cs), +(50,-11,l), +(50,-167,l) +); +} +); +width = 577; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (20,0); +}, +{ +name = "#exit"; +pos = (548,0); +}, +{ +name = bottom; +pos = (407,0); +}, +{ +name = top; +pos = (274,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(98,-167,ls), +(177,-167,o), +(228,-130,o), +(263,-59,cs), +(549,517,l), +(508,517,l), +(336,167,l), +(290,74,l), +(284,74,l), +(236,165,l), +(51,517,l), +(9,517,l), +(273,23,l), +(273,38,l), +(231,-45,ls), +(202,-103,o), +(167,-133,o), +(101,-133,cs), +(41,-133,l), +(41,-167,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-167,ls), +(172,-167,o), +(224,-130,o), +(259,-59,cs), +(544,517,l), +(503,517,l), +(374,256,l), +(283,72,l), +(282,72,l), +(183,256,l), +(47,517,l), +(5,517,l), +(267,23,l), +(267,37,l), +(226,-45,ls), +(197,-103,o), +(162,-133,o), +(96,-133,cs), +(23,-133,l), +(23,-167,l) +); +} +); +width = 548; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (66,0); +}, +{ +name = "#exit"; +pos = (663,0); +}, +{ +name = bottom; +pos = (552,0); +}, +{ +name = top; +pos = (332,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,-167,ls), +(291,-167,o), +(370,-131,o), +(423,-17,cs), +(683,544,l), +(454,544,l), +(346,248,l), +(339,248,l), +(227,544,l), +(-10,544,l), +(254,6,l), +(246,77,l), +(236,51,ls), +(224,20,o), +(202,5,o), +(133,5,cs), +(57,5,l), +(57,-167,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,-167,ls), +(291,-167,o), +(371,-131,o), +(423,-17,cs), +(678,544,l), +(449,544,l), +(369,324,l), +(338,238,l), +(337,238,l), +(305,324,l), +(222,544,l), +(-15,544,l), +(235,36,l), +(235,59,l), +(228,45,ls), +(215,19,o), +(192,5,o), +(128,5,cs), +(52,5,l), +(52,-167,l) +); +} +); +width = 663; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (42,0); +}, +{ +name = "#exit"; +pos = (485,0); +}, +{ +name = bottom; +pos = (340,0); +}, +{ +name = top; +pos = (245,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(102,-167,ls), +(172,-167,o), +(204,-138,o), +(228,-77,cs), +(466,517,l), +(429,517,l), +(282,145,l), +(254,73,l), +(250,73,l), +(220,145,l), +(65,517,l), +(25,517,l), +(239,23,l), +(239,40,l), +(197,-65,ls), +(178,-113,o), +(152,-135,o), +(100,-135,cs), +(53,-135,l), +(53,-167,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(99,-182,ls), +(167,-182,o), +(199,-153,o), +(223,-92,cs), +(459,517,l), +(422,517,l), +(307,223,l), +(251,71,l), +(248,71,l), +(189,223,l), +(67,517,l), +(28,517,l), +(237,23,l), +(237,39,l), +(192,-80,ls), +(174,-128,o), +(149,-150,o), +(97,-150,cs), +(52,-150,l), +(52,-182,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +20 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 487; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (65,0); +}, +{ +name = "#exit"; +pos = (582,0); +}, +{ +name = bottom; +pos = (489,0); +}, +{ +name = top; +pos = (291,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,-167,ls), +(270,-167,o), +(350,-137,o), +(397,-4,cs), +(594,544,l), +(389,544,l), +(344,376,ls), +(332,330,o), +(320,285,o), +(309,220,c), +(302,220,l), +(290,285,o), +(277,330,o), +(264,376,cs), +(216,544,l), +(6,544,l), +(219,25,l), +(219,70,l), +(207,38,ls), +(194,4,o), +(172,-11,o), +(131,-11,cs), +(62,-11,l), +(62,-167,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(161,-182,ls), +(261,-182,o), +(339,-151,o), +(384,-19,cs), +(577,544,l), +(374,544,l), +(315,300,l), +(302,220,l), +(291,220,l), +(277,300,l), +(213,544,l), +(5,544,l), +(218,8,l), +(218,88,l), +(196,23,ls), +(184,-13,o), +(160,-26,o), +(123,-26,cs), +(55,-26,l), +(55,-182,l) +); +} +); +width = 582; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-56,0); +}, +{ +name = "#exit"; +pos = (192,0); +}, +{ +name = bottom; +pos = (157,0); +}, +{ +name = top; +pos = (178,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-37,-168,ls), +(-3,-168,o), +(23,-153,o), +(42,-107,cs), +(291,516,l), +(260,516,l), +(119,153,l), +(86,63,l), +(82,63,l), +(85,151,l), +(95,516,l), +(69,516,l), +(54,-48,l), +(71,39,l), +(21,-93,ls), +(4,-134,o), +(-11,-143,o), +(-43,-143,cs), +(-57,-143,l), +(-62,-168,l) +); +} +); +}; +guides = ( +{ +pos = (139,58); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(-37,-168,ls), +(-3,-168,o), +(24,-153,o), +(42,-107,cs), +(291,516,l), +(260,516,l), +(119,153,l), +(86,58,l), +(82,58,l), +(85,151,l), +(95,516,l), +(69,516,l), +(56,-48,l), +(71,39,l), +(21,-93,ls), +(5,-135,o), +(-11,-143,o), +(-43,-143,cs), +(-57,-143,l), +(-62,-168,l) +); +} +); +width = 252; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-26,0); +}, +{ +name = "#exit"; +pos = (374,0); +}, +{ +name = bottom; +pos = (377,0); +}, +{ +name = top; +pos = (279,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(28,-167,ls), +(154,-167,o), +(223,-118,o), +(264,-15,cs), +(483,541,l), +(316,541,l), +(240,286,l), +(210,177,l), +(203,177,l), +(216,288,l), +(241,541,l), +(63,541,l), +(84,-50,l), +(96,38,l), +(81,-8,ls), +(73,-32,o), +(57,-36,o), +(27,-36,cs), +(-10,-36,l), +(-37,-167,l) +); +} +); +width = 434; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-32,0); +}, +{ +name = "#exit"; +pos = (427,0); +}, +{ +name = bottom; +pos = (297,0); +}, +{ +name = top; +pos = (291,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(-6,-167,ls), +(59,-167,o), +(104,-152,o), +(147,-81,cs), +(507,517,l), +(465,517,l), +(317,267,l), +(206,72,l), +(201,72,l), +(166,267,l), +(117,517,l), +(80,517,l), +(181,16,l), +(183,40,l), +(117,-67,ls), +(80,-127,o), +(48,-134,o), +(-12,-134,cs), +(-35,-134,l), +(-42,-167,l) +); +} +); +width = 479; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-8,0); +}, +{ +name = "#exit"; +pos = (529,0); +}, +{ +name = bottom; +pos = (453,0); +}, +{ +name = top; +pos = (339,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(47,-167,ls), +(219,-167,o), +(284,-109,o), +(344,2,cs), +(634,544,l), +(426,544,l), +(290,218,l), +(283,218,l), +(265,544,l), +(63,544,l), +(148,52,l), +(142,41,ls), +(124,2,o), +(88,-10,o), +(41,-10,cs), +(-7,-10,l), +(-38,-167,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(47,-167,ls), +(219,-167,o), +(284,-109,o), +(344,2,cs), +(634,544,l), +(420,544,l), +(316,296,l), +(286,218,l), +(279,218,l), +(275,296,l), +(257,544,l), +(63,544,l), +(156,9,l), +(160,76,l), +(142,41,ls), +(122,2,o), +(88,-10,o), +(41,-10,cs), +(-7,-10,l), +(-38,-167,l) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (-33,0); +}, +{ +name = "#exit"; +pos = (494,0); +}, +{ +name = bottom; +pos = (334,0); +}, +{ +name = top; +pos = (329,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(2,-167,ls), +(86,-167,o), +(134,-143,o), +(179,-79,cs), +(597,517,l), +(555,517,l), +(314,169,l), +(244,69,l), +(239,69,l), +(210,165,l), +(103,517,l), +(65,517,l), +(226,8,l), +(226,44,l), +(163,-46,ls), +(121,-106,o), +(89,-133,o), +(7,-133,cs), +(-41,-133,l), +(-48,-167,l) +); +} +); +width = 554; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (9,0); +}, +{ +name = "#exit"; +pos = (606,0); +}, +{ +name = bottom; +pos = (525,0); +}, +{ +name = top; +pos = (383,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(74,-167,ls), +(192,-167,o), +(306,-141,o), +(396,4,cs), +(731,544,l), +(496,544,l), +(411,383,l), +(333,228,l), +(322,228,l), +(296,387,l), +(270,544,l), +(46,544,l), +(191,29,l), +(191,65,l), +(178,46,ls), +(159,18,o), +(137,5,o), +(87,5,cs), +(-3,5,l), +(-37,-167,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(74,-167,ls), +(192,-167,o), +(306,-141,o), +(396,4,cs), +(731,544,l), +(496,544,l), +(368,293,l), +(333,220,l), +(324,220,l), +(312,293,l), +(270,544,l), +(46,544,l), +(191,31,l), +(199,77,l), +(178,46,ls), +(159,18,o), +(137,5,o), +(87,5,cs), +(-3,5,l), +(-37,-167,l) +); +} +); +width = 666; +} +); +unicode = 121; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/yacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/yacute.glyph new file mode 100644 index 00000000..53f051e1 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/yacute.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = yacute; +kernLeft = KO_y; +kernRight = KO_v; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = y; +}, +{ +pos = (71,-156); +ref = acutecomb; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = y; +}, +{ +pos = (108,-137); +ref = acutecomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = y; +}, +{ +pos = (221,-155); +ref = acutecomb; +} +); +width = 558; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = y; +}, +{ +pos = (220,-129); +ref = acutecomb; +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (88,-156); +ref = acutecomb; +} +); +width = 245; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = y; +}, +{ +pos = (110,-137); +ref = acutecomb; +} +); +width = 424; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = y; +}, +{ +pos = (189,-155); +ref = acutecomb; +} +); +width = 448; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = y; +}, +{ +alignment = -1; +pos = (197,-134); +ref = acutecomb; +} +); +width = 589; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (226,-155); +ref = acutecomb; +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (225,-129); +ref = acutecomb; +} +); +width = 663; +}, +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (189,-155); +ref = acutecomb; +} +); +width = 487; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (181,-134); +ref = acutecomb; +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = y; +}, +{ +pos = (37,-156); +ref = acutecomb; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (84,-137); +ref = acutecomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = y; +}, +{ +pos = (149,-155); +ref = acutecomb; +} +); +width = 479; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = y; +}, +{ +pos = (144,-134); +ref = acutecomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = y; +}, +{ +pos = (186,-155); +ref = acutecomb; +} +); +width = 554; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = y; +}, +{ +pos = (183,-129); +ref = acutecomb; +} +); +width = 666; +} +); +unicode = 253; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ycircumflex.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ycircumflex.glyph new file mode 100644 index 00000000..94f8920e --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ycircumflex.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = ycircumflex; +kernLeft = KO_y; +kernRight = KO_v; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-2,-156); +ref = circumflexcomb; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = y; +}, +{ +pos = (3,-137); +ref = circumflexcomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = y; +}, +{ +pos = (100,-155); +ref = circumflexcomb; +} +); +width = 558; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = y; +}, +{ +pos = (46,-129); +ref = circumflexcomb; +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (15,-156); +ref = circumflexcomb; +} +); +width = 245; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = y; +}, +{ +pos = (5,-137); +ref = circumflexcomb; +} +); +width = 424; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = y; +}, +{ +pos = (80,-155); +ref = circumflexcomb; +} +); +width = 448; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = y; +}, +{ +alignment = -1; +pos = (62,-134); +ref = circumflexcomb; +} +); +width = 589; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (105,-155); +ref = circumflexcomb; +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (51,-129); +ref = circumflexcomb; +} +); +width = 663; +}, +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (82,-155); +ref = circumflexcomb; +} +); +width = 487; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (52,-134); +ref = circumflexcomb; +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-37,-156); +ref = circumflexcomb; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-23,-137); +ref = circumflexcomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = y; +}, +{ +pos = (39,-155); +ref = circumflexcomb; +} +); +width = 479; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = y; +}, +{ +pos = (10,-134); +ref = circumflexcomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = y; +}, +{ +pos = (63,-155); +ref = circumflexcomb; +} +); +width = 554; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = y; +}, +{ +pos = (7,-129); +ref = circumflexcomb; +} +); +width = 666; +} +); +unicode = 375; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ydieresis.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ydieresis.glyph new file mode 100644 index 00000000..e353af45 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ydieresis.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = ydieresis; +kernLeft = KO_y; +kernRight = KO_v; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = y; +}, +{ +pos = (9,-156); +ref = dieresiscomb; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-5,-137); +ref = dieresiscomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = y; +}, +{ +pos = (102,-155); +ref = dieresiscomb; +} +); +width = 558; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = y; +}, +{ +pos = (54,-134); +ref = dieresiscomb; +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (26,-156); +ref = dieresiscomb; +} +); +width = 245; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-3,-137); +ref = dieresiscomb; +} +); +width = 424; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = y; +}, +{ +pos = (82,-155); +ref = dieresiscomb; +} +); +width = 448; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = y; +}, +{ +alignment = -1; +pos = (66,-134); +ref = dieresiscomb; +} +); +width = 589; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (107,-155); +ref = dieresiscomb; +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (59,-134); +ref = dieresiscomb; +} +); +width = 663; +}, +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (84,-155); +ref = dieresiscomb; +} +); +width = 487; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (56,-134); +ref = dieresiscomb; +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-31,-156); +ref = dieresiscomb; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-38,-137); +ref = dieresiscomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = y; +}, +{ +pos = (44,-155); +ref = dieresiscomb; +} +); +width = 479; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = y; +}, +{ +pos = (10,-134); +ref = dieresiscomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = y; +}, +{ +pos = (67,-155); +ref = dieresiscomb; +} +); +width = 554; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = y; +}, +{ +pos = (14,-134); +ref = dieresiscomb; +} +); +width = 666; +} +); +unicode = 255; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ydieresis.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ydieresis.ss01.glyph new file mode 100644 index 00000000..2d65c3e4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ydieresis.ss01.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = ydieresis.ss01; +kernLeft = KO_y; +kernRight = KO_v; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = y; +}, +{ +pos = (20,-156); +ref = dieresiscomb.ss01; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-4,-137); +ref = dieresiscomb.ss01; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = y; +}, +{ +pos = (135,-155); +ref = dieresiscomb.ss01; +} +); +width = 558; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = y; +}, +{ +pos = (76,-134); +ref = dieresiscomb.ss01; +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (37,-156); +ref = dieresiscomb.ss01; +} +); +width = 245; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-2,-137); +ref = dieresiscomb.ss01; +} +); +width = 424; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = y; +}, +{ +pos = (109,-155); +ref = dieresiscomb.ss01; +} +); +width = 448; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = y; +}, +{ +alignment = -1; +pos = (78,-134); +ref = dieresiscomb.ss01; +} +); +width = 589; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (140,-155); +ref = dieresiscomb.ss01; +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (81,-134); +ref = dieresiscomb.ss01; +} +); +width = 663; +}, +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (109,-155); +ref = dieresiscomb.ss01; +} +); +width = 487; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (68,-134); +ref = dieresiscomb.ss01; +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-18,-156); +ref = dieresiscomb.ss01; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-30,-137); +ref = dieresiscomb.ss01; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = y; +}, +{ +pos = (66,-155); +ref = dieresiscomb.ss01; +} +); +width = 479; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = y; +}, +{ +pos = (26,-134); +ref = dieresiscomb.ss01; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = y; +}, +{ +pos = (104,-155); +ref = dieresiscomb.ss01; +} +); +width = 554; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = y; +}, +{ +pos = (43,-134); +ref = dieresiscomb.ss01; +} +); +width = 666; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ydotbelow.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ydotbelow.glyph new file mode 100644 index 00000000..bf151c95 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ydotbelow.glyph @@ -0,0 +1,244 @@ +{ +color = 6; +glyphname = ydotbelow; +kernLeft = KO_y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = y; +}, +{ +pos = (139,0); +ref = dotbelowcomb; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = y; +}, +{ +pos = (299,0); +ref = dotbelowcomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = y; +}, +{ +pos = (340,0); +ref = dotbelowcomb; +} +); +width = 558; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = y; +}, +{ +pos = (404,0); +ref = dotbelowcomb; +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (156,0); +ref = dotbelowcomb; +} +); +width = 245; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = y; +}, +{ +pos = (301,0); +ref = dotbelowcomb; +} +); +width = 424; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = y; +}, +{ +pos = (269,0); +ref = dotbelowcomb; +} +); +width = 448; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = y; +}, +{ +alignment = -1; +pos = (386,0); +ref = dotbelowcomb; +} +); +width = 589; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (345,0); +ref = dotbelowcomb; +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (409,0); +ref = dotbelowcomb; +} +); +width = 663; +}, +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (267,0); +ref = dotbelowcomb; +} +); +width = 487; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (368,0); +ref = dotbelowcomb; +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = y; +}, +{ +pos = (147,0); +ref = dotbelowcomb; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (312,0); +ref = dotbelowcomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = y; +}, +{ +pos = (279,0); +ref = dotbelowcomb; +} +); +width = 479; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = y; +}, +{ +pos = (382,0); +ref = dotbelowcomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = y; +}, +{ +pos = (317,0); +ref = dotbelowcomb; +} +); +width = 554; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = y; +}, +{ +pos = (428,0); +ref = dotbelowcomb; +} +); +width = 666; +} +); +unicode = 7925; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ydotbelow.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ydotbelow.ss01.glyph new file mode 100644 index 00000000..702c9786 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ydotbelow.ss01.glyph @@ -0,0 +1,243 @@ +{ +color = 6; +glyphname = ydotbelow.ss01; +kernLeft = KO_y; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = y; +}, +{ +pos = (147,0); +ref = dotbelowcomb.ss01; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = y; +}, +{ +pos = (288,0); +ref = dotbelowcomb.ss01; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = y; +}, +{ +pos = (353,0); +ref = dotbelowcomb.ss01; +} +); +width = 558; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = y; +}, +{ +pos = (416,0); +ref = dotbelowcomb.ss01; +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (164,0); +ref = dotbelowcomb.ss01; +} +); +width = 245; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = y; +}, +{ +pos = (290,0); +ref = dotbelowcomb.ss01; +} +); +width = 424; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = y; +}, +{ +pos = (282,0); +ref = dotbelowcomb.ss01; +} +); +width = 448; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = y; +}, +{ +alignment = -1; +pos = (375,0); +ref = dotbelowcomb.ss01; +} +); +width = 589; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (358,0); +ref = dotbelowcomb.ss01; +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (421,0); +ref = dotbelowcomb.ss01; +} +); +width = 663; +}, +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (280,0); +ref = dotbelowcomb.ss01; +} +); +width = 487; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (355,0); +ref = dotbelowcomb.ss01; +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = y; +}, +{ +pos = (155,0); +ref = dotbelowcomb.ss01; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (303,0); +ref = dotbelowcomb.ss01; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = y; +}, +{ +pos = (292,0); +ref = dotbelowcomb.ss01; +} +); +width = 479; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = y; +}, +{ +pos = (373,0); +ref = dotbelowcomb.ss01; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = y; +}, +{ +pos = (328,0); +ref = dotbelowcomb.ss01; +} +); +width = 554; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = y; +}, +{ +pos = (442,0); +ref = dotbelowcomb.ss01; +} +); +width = 666; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/yen.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/yen.glyph new file mode 100644 index 00000000..db638810 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/yen.glyph @@ -0,0 +1,806 @@ +{ +glyphname = yen; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(348,0,l), +(348,103,l), +(435,103,l), +(435,234,l), +(348,234,l), +(348,276,l), +(435,276,l), +(435,408,l), +(391,408,l), +(493,729,l), +(298,729,l), +(255,455,l), +(249,455,l), +(210,729,l), +(14,729,l), +(116,408,l), +(72,408,l), +(72,276,l), +(159,276,l), +(159,234,l), +(72,234,l), +(72,103,l), +(159,103,l), +(159,0,l) +); +} +); +width = 507; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,l), +(215,163,l), +(350,163,l), +(350,190,l), +(215,190,l), +(215,304,l), +(350,304,l), +(350,331,l), +(226,331,l), +(376,729,l), +(343,729,l), +(202,344,l), +(198,344,l), +(57,729,l), +(23,729,l), +(174,331,l), +(51,331,l), +(51,304,l), +(185,304,l), +(185,190,l), +(51,190,l), +(51,163,l), +(185,163,l), +(185,0,l) +); +} +); +width = 400; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,0,l), +(358,159,l), +(564,159,l), +(564,192,l), +(358,192,l), +(358,303,l), +(564,303,l), +(564,336,l), +(382,336,l), +(652,729,l), +(607,729,l), +(341,338,l), +(338,338,l), +(73,729,l), +(27,729,l), +(296,336,l), +(115,336,l), +(115,303,l), +(319,303,l), +(319,192,l), +(115,192,l), +(115,159,l), +(319,159,l), +(319,0,l) +); +} +); +width = 679; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(519,0,l), +(519,83,l), +(697,83,l), +(697,214,l), +(519,214,l), +(519,276,l), +(697,276,l), +(697,408,l), +(609,408,l), +(810,729,l), +(556,729,l), +(408,449,l), +(399,449,l), +(256,729,l), +(0,729,l), +(200,408,l), +(113,408,l), +(113,276,l), +(290,276,l), +(290,214,l), +(113,214,l), +(113,83,l), +(290,83,l), +(290,0,l) +); +} +); +width = 810; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,0,l), +(195,163,l), +(330,163,l), +(330,190,l), +(195,190,l), +(195,304,l), +(330,304,l), +(330,331,l), +(206,331,l), +(356,729,l), +(323,729,l), +(182,344,l), +(178,344,l), +(37,729,l), +(3,729,l), +(154,331,l), +(31,331,l), +(31,304,l), +(165,304,l), +(165,190,l), +(31,190,l), +(31,163,l), +(165,163,l), +(165,0,l) +); +} +); +width = 360; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,0,l), +(339,103,l), +(426,103,l), +(426,234,l), +(339,234,l), +(339,276,l), +(426,276,l), +(426,408,l), +(382,408,l), +(484,729,l), +(289,729,l), +(246,455,l), +(240,455,l), +(201,729,l), +(5,729,l), +(107,408,l), +(63,408,l), +(63,276,l), +(150,276,l), +(150,234,l), +(63,234,l), +(63,103,l), +(150,103,l), +(150,0,l) +); +} +); +width = 489; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,l), +(314,159,l), +(502,159,l), +(502,192,l), +(314,192,l), +(314,311,l), +(502,311,l), +(502,344,l), +(334,344,l), +(564,729,l), +(523,729,l), +(297,346,l), +(294,346,l), +(67,729,l), +(26,729,l), +(258,344,l), +(87,344,l), +(87,311,l), +(278,311,l), +(278,192,l), +(87,192,l), +(87,159,l), +(278,159,l), +(278,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = Y; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = Y; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 590; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,0,l), +(445,83,l), +(618,83,l), +(618,214,l), +(445,214,l), +(445,276,l), +(618,276,l), +(618,408,l), +(526,408,l), +(692,729,l), +(485,729,l), +(350,435,l), +(341,435,l), +(211,729,l), +(2,729,l), +(171,408,l), +(77,408,l), +(77,276,l), +(250,276,l), +(250,214,l), +(77,214,l), +(77,83,l), +(250,83,l), +(250,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = Y; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = Y; +}; +width = 694; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(348,0,l), +(348,159,l), +(554,159,l), +(554,192,l), +(348,192,l), +(348,303,l), +(554,303,l), +(554,336,l), +(372,336,l), +(642,729,l), +(597,729,l), +(331,338,l), +(328,338,l), +(63,729,l), +(17,729,l), +(286,336,l), +(105,336,l), +(105,303,l), +(309,303,l), +(309,192,l), +(105,192,l), +(105,159,l), +(309,159,l), +(309,0,l) +); +} +); +width = 659; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(514,0,l), +(514,83,l), +(692,83,l), +(692,214,l), +(514,214,l), +(514,276,l), +(692,276,l), +(692,408,l), +(604,408,l), +(805,729,l), +(551,729,l), +(403,449,l), +(394,449,l), +(251,729,l), +(-5,729,l), +(195,408,l), +(108,408,l), +(108,276,l), +(285,276,l), +(285,214,l), +(108,214,l), +(108,83,l), +(285,83,l), +(285,0,l) +); +} +); +width = 800; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(331,0,l), +(331,159,l), +(515,159,l), +(515,192,l), +(331,192,l), +(331,311,l), +(515,311,l), +(515,344,l), +(349,344,l), +(575,729,l), +(536,729,l), +(314,346,l), +(311,346,l), +(88,729,l), +(49,729,l), +(275,344,l), +(108,344,l), +(108,311,l), +(295,311,l), +(295,192,l), +(108,192,l), +(108,159,l), +(295,159,l), +(295,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = Y; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = Y; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 623; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(451,0,l), +(451,83,l), +(619,83,l), +(619,214,l), +(451,214,l), +(451,276,l), +(619,276,l), +(619,408,l), +(532,408,l), +(691,729,l), +(486,729,l), +(357,435,l), +(348,435,l), +(225,729,l), +(18,729,l), +(180,408,l), +(91,408,l), +(91,276,l), +(258,276,l), +(258,214,l), +(91,214,l), +(91,83,l), +(258,83,l), +(258,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = Y; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = Y; +}; +width = 708; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,0,l), +(193,163,l), +(327,163,l), +(333,190,l), +(198,190,l), +(222,304,l), +(356,304,l), +(362,331,l), +(241,331,l), +(472,729,l), +(437,729,l), +(217,344,l), +(213,344,l), +(153,729,l), +(122,729,l), +(188,331,l), +(66,331,l), +(60,304,l), +(191,304,l), +(168,190,l), +(37,190,l), +(31,163,l), +(162,163,l), +(129,0,l) +); +} +); +width = 397; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,0,l), +(309,103,l), +(398,103,l), +(425,234,l), +(335,234,l), +(344,276,l), +(434,276,l), +(462,408,l), +(414,408,l), +(583,729,l), +(386,729,l), +(293,472,l), +(286,472,l), +(283,729,l), +(109,729,l), +(143,408,l), +(102,408,l), +(74,276,l), +(159,276,l), +(150,234,l), +(65,234,l), +(37,103,l), +(123,103,l), +(101,0,l) +); +} +); +width = 502; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,0,l), +(306,159,l), +(492,159,l), +(498,192,l), +(313,192,l), +(337,311,l), +(523,311,l), +(529,344,l), +(365,344,l), +(675,729,l), +(631,729,l), +(327,345,l), +(324,345,l), +(180,729,l), +(144,729,l), +(290,344,l), +(120,344,l), +(114,311,l), +(301,311,l), +(277,192,l), +(89,192,l), +(83,159,l), +(270,159,l), +(236,0,l) +); +} +); +width = 623; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(407,0,l), +(424,83,l), +(602,83,l), +(630,214,l), +(452,214,l), +(465,276,l), +(644,276,l), +(670,408,l), +(575,408,l), +(805,729,l), +(585,729,l), +(395,435,l), +(386,435,l), +(326,729,l), +(114,729,l), +(213,408,l), +(115,408,l), +(88,276,l), +(266,276,l), +(253,214,l), +(75,214,l), +(47,83,l), +(225,83,l), +(208,0,l) +); +} +); +width = 729; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,0,l), +(332,159,l), +(550,159,l), +(556,192,l), +(340,192,l), +(363,303,l), +(580,303,l), +(586,336,l), +(394,336,l), +(742,729,l), +(692,729,l), +(350,336,l), +(344,336,l), +(164,729,l), +(124,729,l), +(308,336,l), +(131,336,l), +(125,303,l), +(324,303,l), +(300,192,l), +(101,192,l), +(95,159,l), +(293,159,l), +(261,0,l) +); +} +); +width = 672; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,0,l), +(473,83,l), +(661,83,l), +(689,214,l), +(500,214,l), +(515,276,l), +(702,276,l), +(730,408,l), +(632,408,l), +(899,729,l), +(638,729,l), +(432,449,l), +(423,449,l), +(335,729,l), +(95,729,l), +(231,408,l), +(136,408,l), +(108,276,l), +(287,276,l), +(275,214,l), +(95,214,l), +(67,83,l), +(248,83,l), +(231,0,l) +); +} +); +width = 804; +} +); +unicode = 165; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ygrave.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ygrave.glyph new file mode 100644 index 00000000..5c5abda4 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ygrave.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = ygrave; +kernLeft = KO_y; +kernRight = KO_v; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-7,-156); +ref = gravecomb; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = y; +}, +{ +pos = (11,-137); +ref = gravecomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = y; +}, +{ +pos = (135,-155); +ref = gravecomb; +} +); +width = 558; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = y; +}, +{ +pos = (103,-129); +ref = gravecomb; +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (10,-156); +ref = gravecomb; +} +); +width = 245; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = y; +}, +{ +pos = (13,-137); +ref = gravecomb; +} +); +width = 424; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = y; +}, +{ +pos = (110,-155); +ref = gravecomb; +} +); +width = 448; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = y; +}, +{ +alignment = -1; +pos = (100,-134); +ref = gravecomb; +} +); +width = 589; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (140,-155); +ref = gravecomb; +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (108,-129); +ref = gravecomb; +} +); +width = 663; +}, +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (110,-155); +ref = gravecomb; +} +); +width = 487; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (92,-134); +ref = gravecomb; +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-40,-156); +ref = gravecomb; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-6,-137); +ref = gravecomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = y; +}, +{ +pos = (72,-155); +ref = gravecomb; +} +); +width = 479; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = y; +}, +{ +pos = (43,-134); +ref = gravecomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = y; +}, +{ +pos = (99,-155); +ref = gravecomb; +} +); +width = 554; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = y; +}, +{ +pos = (66,-129); +ref = gravecomb; +} +); +width = 666; +} +); +unicode = 7923; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/yhookabove.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/yhookabove.glyph new file mode 100644 index 00000000..cd8bacba --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/yhookabove.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = yhookabove; +kernLeft = KO_y; +kernRight = KO_v; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = y; +}, +{ +pos = (46,-156); +ref = hookabovecomb; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = y; +}, +{ +pos = (81,-138); +ref = hookabovecomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = y; +}, +{ +pos = (171,-155); +ref = hookabovecomb; +} +); +width = 558; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = y; +}, +{ +pos = (184,-134); +ref = hookabovecomb; +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (63,-156); +ref = hookabovecomb; +} +); +width = 245; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = y; +}, +{ +pos = (83,-138); +ref = hookabovecomb; +} +); +width = 424; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = y; +}, +{ +pos = (136,-155); +ref = hookabovecomb; +} +); +width = 448; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = y; +}, +{ +alignment = -1; +pos = (146,-134); +ref = hookabovecomb; +} +); +width = 589; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (176,-155); +ref = hookabovecomb; +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (189,-134); +ref = hookabovecomb; +} +); +width = 663; +}, +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (136,-155); +ref = hookabovecomb; +} +); +width = 487; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (135,-134); +ref = hookabovecomb; +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-11,-157); +ref = hookabovecomb; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (48,-139); +ref = hookabovecomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = y; +}, +{ +pos = (102,-156); +ref = hookabovecomb; +} +); +width = 479; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = y; +}, +{ +pos = (84,-135); +ref = hookabovecomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = y; +}, +{ +pos = (141,-156); +ref = hookabovecomb; +} +); +width = 554; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = y; +}, +{ +pos = (131,-137); +ref = hookabovecomb; +} +); +width = 666; +} +); +unicode = 7927; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/ytilde.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/ytilde.glyph new file mode 100644 index 00000000..9b97566f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/ytilde.glyph @@ -0,0 +1,245 @@ +{ +color = 6; +glyphname = ytilde; +kernLeft = KO_y; +kernRight = KO_v; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-13,-156); +ref = tildecomb; +} +); +width = 254; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-12,-138); +ref = tildecomb; +} +); +width = 439; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = y; +}, +{ +pos = (72,-155); +ref = tildecomb; +} +); +width = 558; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = y; +}, +{ +pos = (73,-129); +ref = tildecomb; +} +); +width = 673; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (4,-156); +ref = tildecomb; +} +); +width = 245; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-10,-138); +ref = tildecomb; +} +); +width = 424; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = y; +}, +{ +pos = (55,-155); +ref = tildecomb; +} +); +width = 448; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = y; +}, +{ +alignment = -1; +pos = (51,-134); +ref = tildecomb; +} +); +width = 589; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (77,-155); +ref = tildecomb; +} +); +width = 548; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +ref = y; +}, +{ +pos = (78,-129); +ref = tildecomb; +} +); +width = 663; +}, +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (57,-155); +ref = tildecomb; +} +); +width = 487; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (41,-134); +ref = tildecomb; +} +); +width = 582; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-47,-156); +ref = tildecomb; +} +); +width = 252; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-39,-138); +ref = tildecomb; +} +); +width = 434; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = y; +}, +{ +pos = (17,-155); +ref = tildecomb; +} +); +width = 479; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = y; +}, +{ +pos = (-5,-134); +ref = tildecomb; +} +); +width = 586; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = y; +}, +{ +pos = (37,-155); +ref = tildecomb; +} +); +width = 554; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = y; +}, +{ +pos = (39,-134); +ref = tildecomb; +} +); +width = 666; +} +); +unicode = 7929; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/z.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/z.glyph new file mode 100644 index 00000000..5a68f972 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/z.glyph @@ -0,0 +1,705 @@ +{ +glyphname = z; +kernLeft = KO_z; +kernRight = KO_z; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (186,0); +}, +{ +name = center; +pos = (186,271); +}, +{ +name = top; +pos = (186,541); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,0,l), +(355,137,l), +(209,137,l), +(352,419,l), +(352,541,l), +(21,541,l), +(21,405,l), +(158,405,l), +(15,124,l), +(15,0,l) +); +} +); +width = 371; +}, +{ +anchors = ( +{ +name = bottom; +pos = (110,0); +}, +{ +name = center; +pos = (110,258); +}, +{ +name = top; +pos = (110,516); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,0,l), +(205,24,l), +(41,24,l), +(201,495,l), +(201,516,l), +(17,516,l), +(17,492,l), +(172,492,l), +(13,20,l), +(13,0,l) +); +} +); +width = 217; +}, +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = center; +pos = (266,259); +}, +{ +name = top; +pos = (266,517); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,0,l), +(515,32,l), +(67,32,l), +(501,487,l), +(501,517,l), +(29,517,l), +(29,485,l), +(452,485,l), +(16,29,l), +(16,0,l) +); +} +); +width = 532; +}, +{ +anchors = ( +{ +name = bottom; +pos = (300,0); +}, +{ +name = center; +pos = (300,272); +}, +{ +name = top; +pos = (300,544); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(583,0,l), +(583,165,l), +(312,165,l), +(572,404,l), +(572,544,l), +(34,544,l), +(34,379,l), +(274,379,l), +(16,145,l), +(16,0,l) +); +} +); +width = 602; +}, +{ +anchors = ( +{ +name = bottom; +pos = (100,0); +}, +{ +name = center; +pos = (100,258); +}, +{ +name = top; +pos = (100,516); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,0,l), +(195,27,l), +(34,27,l), +(191,492,l), +(191,516,l), +(7,516,l), +(7,489,l), +(159,489,l), +(3,23,l), +(3,0,l) +); +} +); +width = 197; +}, +{ +anchors = ( +{ +name = bottom; +pos = (171,0); +}, +{ +name = center; +pos = (171,271); +}, +{ +name = top; +pos = (171,541); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(335,143,l), +(199,143,l), +(332,413,l), +(332,541,l), +(11,541,l), +(11,399,l), +(141,399,l), +(8,130,l), +(8,0,l) +); +} +); +width = 340; +}, +{ +anchors = ( +{ +name = bottom; +pos = (205,0); +}, +{ +name = center; +pos = (205,259); +}, +{ +name = top; +pos = (205,517); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,0,l), +(405,32,l), +(52,32,l), +(394,487,l), +(394,517,l), +(16,517,l), +(16,485,l), +(349,485,l), +(5,29,l), +(5,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 410; +}, +{ +anchors = ( +{ +name = bottom; +pos = (237,0); +}, +{ +name = center; +pos = (237,272); +}, +{ +name = top; +pos = (237,544); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,0,l), +(469,155,l), +(259,155,l), +(459,409,l), +(459,544,l), +(18,544,l), +(18,389,l), +(209,389,l), +(9,138,l), +(9,0,l) +); +} +); +width = 475; +}, +{ +anchors = ( +{ +name = bottom; +pos = (261,0); +}, +{ +name = center; +pos = (261,259); +}, +{ +name = top; +pos = (261,517); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(510,0,l), +(510,32,l), +(62,32,l), +(496,487,l), +(496,517,l), +(24,517,l), +(24,485,l), +(447,485,l), +(11,29,l), +(11,0,l) +); +} +); +width = 517; +}, +{ +anchors = ( +{ +name = bottom; +pos = (290,0); +}, +{ +name = center; +pos = (290,272); +}, +{ +name = top; +pos = (290,544); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(573,0,l), +(573,165,l), +(306,165,l), +(563,404,l), +(563,544,l), +(21,544,l), +(21,379,l), +(265,379,l), +(10,145,l), +(10,0,l) +); +} +); +width = 582; +}, +{ +anchors = ( +{ +name = bottom; +pos = (240,0); +}, +{ +name = center; +pos = (240,259); +}, +{ +name = top; +pos = (240,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(446,0,l), +(446,32,l), +(76,32,l), +(436,487,l), +(436,517,l), +(44,517,l), +(44,485,l), +(392,485,l), +(33,29,l), +(33,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 477; +}, +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = center; +pos = (264,272); +}, +{ +name = top; +pos = (264,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(503,0,l), +(503,153,l), +(268,153,l), +(492,411,l), +(492,544,l), +(44,544,l), +(44,391,l), +(249,391,l), +(26,136,l), +(26,0,l) +); +} +); +width = 531; +}, +{ +anchors = ( +{ +name = bottom; +pos = (67,0); +}, +{ +name = center; +pos = (120,258); +}, +{ +name = top; +pos = (173,516); +} +); +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(150,0,l), +(155,24,l), +(-3,24,l), +(250,495,l), +(255,516,l), +(72,516,l), +(67,492,l), +(218,492,l), +(-35,20,l), +(-40,0,l) +); +} +); +width = 216; +}, +{ +anchors = ( +{ +name = bottom; +pos = (138,0); +}, +{ +name = center; +pos = (194,271); +}, +{ +name = top; +pos = (250,541); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(296,0,l), +(323,137,l), +(179,137,l), +(381,419,l), +(405,541,l), +(78,541,l), +(49,405,l), +(187,405,l), +(-15,124,l), +(-40,0,l) +); +} +); +width = 368; +}, +{ +anchors = ( +{ +name = bottom; +pos = (191,0); +}, +{ +name = center; +pos = (245,259); +}, +{ +name = top; +pos = (299,517); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,0,l), +(390,32,l), +(32,32,l), +(475,487,l), +(481,517,l), +(95,517,l), +(88,485,l), +(427,485,l), +(-18,29,l), +(-24,0,l) +); +} +); +width = 469; +}, +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = center; +pos = (282,272); +}, +{ +name = top; +pos = (338,544); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(456,0,l), +(488,153,l), +(248,153,l), +(528,411,l), +(556,544,l), +(102,544,l), +(71,391,l), +(280,391,l), +(0,136,l), +(-29,0,l) +); +} +); +width = 542; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = center; +pos = (274,259); +}, +{ +name = top; +pos = (328,517); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(454,0,l), +(460,32,l), +(24,32,l), +(543,487,l), +(550,517,l), +(83,517,l), +(76,485,l), +(488,485,l), +(-32,29,l), +(-38,0,l) +); +} +); +width = 525; +}, +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = center; +pos = (308,272); +}, +{ +name = top; +pos = (364,544); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,0,l), +(554,165,l), +(296,165,l), +(593,404,l), +(622,544,l), +(91,544,l), +(57,379,l), +(284,379,l), +(-10,145,l), +(-40,0,l) +); +} +); +width = 596; +} +); +unicode = 122; +userData = { +KernOnName = z; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zacute.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zacute.glyph new file mode 100644 index 00000000..43c3ba74 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zacute.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = zacute; +kernLeft = KO_z; +kernRight = KO_zcaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = z; +}, +{ +pos = (54,-156); +ref = acutecomb; +} +); +width = 217; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = z; +}, +{ +pos = (74,-137); +ref = acutecomb; +} +); +width = 371; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = z; +}, +{ +pos = (208,-155); +ref = acutecomb; +} +); +width = 532; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = z; +}, +{ +pos = (183,-129); +ref = acutecomb; +} +); +width = 602; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = z; +}, +{ +pos = (64,-156); +ref = acutecomb; +} +); +width = 197; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = z; +}, +{ +pos = (69,-137); +ref = acutecomb; +} +); +width = 340; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = z; +}, +{ +pos = (170,-155); +ref = acutecomb; +} +); +width = 410; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = z; +}, +{ +alignment = -1; +pos = (161,-134); +ref = acutecomb; +} +); +width = 529; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = z; +}, +{ +pos = (213,-155); +ref = acutecomb; +} +); +width = 517; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = z; +}, +{ +alignment = -1; +pos = (183,-129); +ref = acutecomb; +} +); +width = 602; +}, +{ +layerId = m019; +shapes = ( +{ +ref = z; +}, +{ +pos = (184,-155); +ref = acutecomb; +} +); +width = 477; +}, +{ +layerId = m020; +shapes = ( +{ +ref = z; +}, +{ +pos = (154,-134); +ref = acutecomb; +} +); +width = 531; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = z; +}, +{ +pos = (32,-156); +ref = acutecomb; +} +); +width = 216; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = z; +}, +{ +pos = (55,-137); +ref = acutecomb; +} +); +width = 368; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = z; +}, +{ +pos = (157,-155); +ref = acutecomb; +} +); +width = 469; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = z; +}, +{ +pos = (143,-134); +ref = acutecomb; +} +); +width = 542; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = z; +}, +{ +pos = (185,-155); +ref = acutecomb; +} +); +width = 525; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = z; +}, +{ +pos = (164,-129); +ref = acutecomb; +} +); +width = 596; +} +); +unicode = 378; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zcaron.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zcaron.glyph new file mode 100644 index 00000000..600f5eb6 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zcaron.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = zcaron; +kernLeft = KO_z; +kernRight = KO_zcaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-19,-156); +ref = caroncomb; +} +); +width = 217; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-31,-137); +ref = caroncomb; +} +); +width = 371; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = z; +}, +{ +pos = (87,-155); +ref = caroncomb; +} +); +width = 532; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = z; +}, +{ +pos = (9,-129); +ref = caroncomb; +} +); +width = 602; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-9,-156); +ref = caroncomb; +} +); +width = 197; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-36,-137); +ref = caroncomb; +} +); +width = 340; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = z; +}, +{ +pos = (61,-155); +ref = caroncomb; +} +); +width = 410; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = z; +}, +{ +alignment = -1; +pos = (26,-134); +ref = caroncomb; +} +); +width = 529; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = z; +}, +{ +pos = (92,-155); +ref = caroncomb; +} +); +width = 517; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = z; +}, +{ +alignment = -1; +pos = (9,-129); +ref = caroncomb; +} +); +width = 602; +}, +{ +layerId = m019; +shapes = ( +{ +ref = z; +}, +{ +pos = (77,-155); +ref = caroncomb; +} +); +width = 477; +}, +{ +layerId = m020; +shapes = ( +{ +ref = z; +}, +{ +pos = (25,-134); +ref = caroncomb; +} +); +width = 531; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-41,-156); +ref = caroncomb; +} +); +width = 216; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-46,-137); +ref = caroncomb; +} +); +width = 368; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = z; +}, +{ +pos = (48,-155); +ref = caroncomb; +} +); +width = 469; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = z; +}, +{ +pos = (4,-134); +ref = caroncomb; +} +); +width = 542; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = z; +}, +{ +pos = (62,-155); +ref = caroncomb; +} +); +width = 525; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-10,-129); +ref = caroncomb; +} +); +width = 596; +} +); +unicode = 382; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zdotaccent.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zdotaccent.glyph new file mode 100644 index 00000000..7f56ad67 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zdotaccent.glyph @@ -0,0 +1,247 @@ +{ +color = 6; +glyphname = zdotaccent; +kernLeft = KO_z; +kernRight = KO_zcaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = z; +}, +{ +pos = (47,-156); +ref = dotaccentcomb; +} +); +width = 217; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = z; +}, +{ +pos = (52,-137); +ref = dotaccentcomb; +} +); +width = 371; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = z; +}, +{ +pos = (194,-155); +ref = dotaccentcomb; +} +); +width = 532; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = z; +}, +{ +pos = (142,-129); +ref = dotaccentcomb; +} +); +width = 602; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = z; +}, +{ +pos = (57,-151); +ref = dotaccentcomb; +} +); +width = 197; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = z; +}, +{ +pos = (47,-137); +ref = dotaccentcomb; +} +); +width = 340; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = z; +}, +{ +pos = (153,-150); +ref = dotaccentcomb; +} +); +width = 410; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = z; +}, +{ +alignment = -1; +pos = (136,-134); +ref = dotaccentcomb; +} +); +width = 529; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = z; +}, +{ +pos = (199,-155); +ref = dotaccentcomb; +} +); +width = 517; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = z; +}, +{ +alignment = -1; +pos = (142,-129); +ref = dotaccentcomb; +} +); +width = 602; +}, +{ +layerId = m019; +shapes = ( +{ +ref = z; +}, +{ +pos = (167,-133); +ref = dotaccentcomb; +} +); +width = 477; +}, +{ +layerId = m020; +shapes = ( +{ +ref = z; +}, +{ +pos = (131,-120); +ref = dotaccentcomb; +} +); +width = 531; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = z; +}, +{ +pos = (19,-156); +ref = dotaccentcomb; +} +); +width = 216; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = z; +}, +{ +pos = (32,-137); +ref = dotaccentcomb; +} +); +width = 368; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = z; +}, +{ +pos = (142,-155); +ref = dotaccentcomb; +} +); +width = 469; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = z; +}, +{ +pos = (113,-134); +ref = dotaccentcomb; +} +); +width = 542; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = z; +}, +{ +pos = (171,-155); +ref = dotaccentcomb; +} +); +width = 525; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = z; +}, +{ +pos = (120,-129); +ref = dotaccentcomb; +} +); +width = 596; +} +); +unicode = 380; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zdotaccent.ss01.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zdotaccent.ss01.glyph new file mode 100644 index 00000000..77cc537b --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zdotaccent.ss01.glyph @@ -0,0 +1,246 @@ +{ +color = 6; +glyphname = zdotaccent.ss01; +kernLeft = KO_z; +kernRight = KO_zcaron; +layers = ( +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +ref = z; +}, +{ +pos = (55,-156); +ref = dotaccentcomb.ss01; +} +); +width = 217; +}, +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +ref = z; +}, +{ +pos = (57,-137); +ref = dotaccentcomb.ss01; +} +); +width = 371; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +ref = z; +}, +{ +pos = (207,-155); +ref = dotaccentcomb.ss01; +} +); +width = 532; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +ref = z; +}, +{ +pos = (149,-129); +ref = dotaccentcomb.ss01; +} +); +width = 602; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +ref = z; +}, +{ +pos = (65,-156); +ref = dotaccentcomb.ss01; +} +); +width = 197; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +ref = z; +}, +{ +pos = (52,-137); +ref = dotaccentcomb.ss01; +} +); +width = 340; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +ref = z; +}, +{ +pos = (166,-155); +ref = dotaccentcomb.ss01; +} +); +width = 410; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = z; +}, +{ +alignment = -1; +pos = (137,-134); +ref = dotaccentcomb.ss01; +} +); +width = 529; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +ref = z; +}, +{ +pos = (212,-155); +ref = dotaccentcomb.ss01; +} +); +width = 517; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = z; +}, +{ +alignment = -1; +pos = (149,-129); +ref = dotaccentcomb.ss01; +} +); +width = 602; +}, +{ +layerId = m019; +shapes = ( +{ +ref = z; +}, +{ +pos = (180,-155); +ref = dotaccentcomb.ss01; +} +); +width = 477; +}, +{ +layerId = m020; +shapes = ( +{ +ref = z; +}, +{ +pos = (130,-134); +ref = dotaccentcomb.ss01; +} +); +width = 531; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +ref = z; +}, +{ +pos = (33,-156); +ref = dotaccentcomb.ss01; +} +); +width = 216; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +ref = z; +}, +{ +pos = (38,-137); +ref = dotaccentcomb.ss01; +} +); +width = 368; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +ref = z; +}, +{ +pos = (155,-155); +ref = dotaccentcomb.ss01; +} +); +width = 469; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +ref = z; +}, +{ +pos = (118,-134); +ref = dotaccentcomb.ss01; +} +); +width = 542; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +ref = z; +}, +{ +pos = (184,-155); +ref = dotaccentcomb.ss01; +} +); +width = 525; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +ref = z; +}, +{ +pos = (129,-134); +ref = dotaccentcomb.ss01; +} +); +width = 596; +} +); +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zero.blackC_ircled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.blackC_ircled.glyph new file mode 100644 index 00000000..e1ff4ec5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.blackC_ircled.glyph @@ -0,0 +1,2040 @@ +{ +color = 0; +glyphname = zero.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (353,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,414,l), +(244,414,l), +(244,503,l), +(263,503,ls), +(301,503,o), +(331,534,o), +(335,582,c), +(437,582,l), +(437,149,l), +(327,149,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,143,o), +(214,196,o), +(214,365,cs), +(214,533,o), +(270,586,o), +(353,586,cs), +(436,586,o), +(492,534,o), +(492,365,cs), +(492,196,o), +(436,143,o), +(353,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,234,o), +(382,267,o), +(382,365,cs), +(382,463,o), +(377,495,o), +(353,495,cs), +(329,495,o), +(324,462,o), +(324,365,cs), +(324,267,o), +(329,234,o), +(353,234,cs) +); +} +); +width = 706; +}, +{ +anchors = ( +{ +name = center; +pos = (349,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(353,496,l), +(295,496,l), +(295,523,l), +(307,523,ls), +(340,523,o), +(354,546,o), +(355,582,c), +(383,582,l), +(383,149,l), +(353,149,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(275,142,o), +(248,227,o), +(248,364,cs), +(248,501,o), +(275,586,o), +(348,586,cs), +(422,586,o), +(449,501,o), +(449,364,cs), +(449,227,o), +(422,142,o), +(348,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(392,168,o), +(419,209,o), +(419,364,cs), +(419,519,o), +(392,560,o), +(348,560,cs), +(305,560,o), +(278,519,o), +(278,364,cs), +(278,209,o), +(305,168,o), +(348,168,cs) +); +} +); +width = 698; +}, +{ +anchors = ( +{ +name = center; +pos = (442,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,485,l), +(341,485,l), +(341,512,l), +(361,512,ls), +(419,512,o), +(442,540,o), +(445,582,c), +(482,582,l), +(482,149,l), +(446,149,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(323,144,o), +(240,220,o), +(240,366,cs), +(240,511,o), +(321,587,o), +(442,587,cs), +(560,587,o), +(643,511,o), +(643,366,cs), +(643,221,o), +(561,144,o), +(442,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(545,176,o), +(605,245,o), +(605,366,cs), +(605,487,o), +(547,556,o), +(442,556,cs), +(337,556,o), +(277,488,o), +(277,366,cs), +(277,245,o), +(335,176,o), +(442,176,cs) +); +} +); +width = 884; +}, +{ +anchors = ( +{ +name = center; +pos = (430,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,394,l), +(278,394,l), +(278,502,l), +(297,502,ls), +(352,502,o), +(396,534,o), +(401,582,c), +(543,582,l), +(543,149,l), +(393,149,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(287,148,o), +(194,230,o), +(194,370,cs), +(194,510,o), +(289,590,o), +(430,590,cs), +(574,590,o), +(666,508,o), +(666,369,cs), +(666,228,o), +(572,148,o), +(430,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(480,267,o), +(516,290,o), +(516,369,cs), +(516,448,o), +(480,471,o), +(430,471,cs), +(380,471,o), +(344,448,o), +(344,369,cs), +(344,290,o), +(380,267,o), +(430,267,cs) +); +} +); +width = 860; +}, +{ +anchors = ( +{ +name = center; +pos = (329,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(353,496,l), +(295,496,l), +(295,523,l), +(307,523,ls), +(340,523,o), +(354,546,o), +(355,582,c), +(383,582,l), +(383,149,l), +(353,149,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-9,o), +(618,141,o), +(618,365,cs), +(618,589,o), +(523,739,o), +(329,739,cs), +(135,739,o), +(40,588,o), +(40,365,cs), +(40,142,o), +(135,-9,o), +(329,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,142,o), +(228,227,o), +(228,364,cs), +(228,501,o), +(255,586,o), +(328,586,cs), +(402,586,o), +(429,501,o), +(429,364,cs), +(429,227,o), +(402,142,o), +(328,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,168,o), +(399,209,o), +(399,364,cs), +(399,519,o), +(372,560,o), +(328,560,cs), +(285,560,o), +(258,519,o), +(258,364,cs), +(258,209,o), +(285,168,o), +(328,168,cs) +); +} +); +width = 658; +}, +{ +anchors = ( +{ +name = center; +pos = (343,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,414,l), +(244,414,l), +(244,503,l), +(263,503,ls), +(301,503,o), +(331,534,o), +(335,582,c), +(437,582,l), +(437,149,l), +(327,149,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-7,o), +(656,122,o), +(656,366,cs), +(656,610,o), +(523,739,o), +(343,739,cs), +(163,739,o), +(30,610,o), +(30,366,cs), +(30,122,o), +(163,-7,o), +(343,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,143,o), +(204,196,o), +(204,365,cs), +(204,533,o), +(260,586,o), +(343,586,cs), +(426,586,o), +(482,534,o), +(482,365,cs), +(482,196,o), +(426,143,o), +(343,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,234,o), +(372,267,o), +(372,365,cs), +(372,463,o), +(367,495,o), +(343,495,cs), +(319,495,o), +(314,462,o), +(314,365,cs), +(314,267,o), +(319,234,o), +(343,234,cs) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = center; +pos = (416,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,486,l), +(334,486,l), +(334,512,l), +(350,512,ls), +(408,512,o), +(430,540,o), +(434,582,c), +(468,582,l), +(468,149,l), +(434,149,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(640,-10,o), +(791,140,o), +(791,363,cs), +(791,587,o), +(640,736,o), +(415,736,cs), +(191,736,o), +(40,587,o), +(40,363,cs), +(40,140,o), +(191,-10,o), +(415,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(325,144,o), +(267,217,o), +(267,365,cs), +(267,515,o), +(327,586,o), +(416,586,cs), +(507,586,o), +(565,513,o), +(565,365,cs), +(565,214,o), +(505,144,o), +(416,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(496,174,o), +(529,246,o), +(529,365,cs), +(529,484,o), +(496,556,o), +(416,556,cs), +(336,556,o), +(303,484,o), +(303,365,cs), +(303,246,o), +(336,174,o), +(416,174,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +112, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +529, +23 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +520, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +527, +31 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +482, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 831; +}, +{ +anchors = ( +{ +name = center; +pos = (407,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,405,l), +(274,405,l), +(274,502,l), +(294,502,ls), +(349,502,o), +(393,534,o), +(398,582,c), +(517,582,l), +(517,149,l), +(390,149,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,-9,o), +(794,141,o), +(794,365,cs), +(794,589,o), +(630,739,o), +(407,739,cs), +(183,739,o), +(19,589,o), +(19,365,cs), +(19,141,o), +(183,-9,o), +(407,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(289,145,o), +(236,236,o), +(236,366,cs), +(236,517,o), +(304,588,o), +(406,588,cs), +(524,588,o), +(577,497,o), +(577,366,cs), +(577,216,o), +(508,145,o), +(406,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,251,o), +(449,260,o), +(449,366,cs), +(449,474,o), +(425,482,o), +(406,482,cs), +(388,482,o), +(364,474,o), +(364,366,cs), +(364,259,o), +(388,251,o), +(406,251,cs) +); +} +); +width = 813; +}, +{ +anchors = ( +{ +name = center; +pos = (432,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,485,l), +(341,485,l), +(341,512,l), +(361,512,ls), +(419,512,o), +(442,540,o), +(445,582,c), +(482,582,l), +(482,149,l), +(446,149,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-10,o), +(814,139,o), +(814,363,cs), +(814,587,o), +(655,736,o), +(432,736,cs), +(209,736,o), +(50,587,o), +(50,363,cs), +(50,139,o), +(209,-10,o), +(432,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,144,o), +(230,220,o), +(230,366,cs), +(230,511,o), +(311,587,o), +(432,587,cs), +(550,587,o), +(633,511,o), +(633,366,cs), +(633,221,o), +(551,144,o), +(432,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(535,176,o), +(595,245,o), +(595,366,cs), +(595,487,o), +(537,556,o), +(432,556,cs), +(327,556,o), +(267,488,o), +(267,366,cs), +(267,245,o), +(325,176,o), +(432,176,cs) +); +} +); +width = 864; +}, +{ +anchors = ( +{ +name = center; +pos = (420,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,394,l), +(278,394,l), +(278,502,l), +(297,502,ls), +(352,502,o), +(396,534,o), +(401,582,c), +(543,582,l), +(543,149,l), +(393,149,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-11,o), +(810,135,o), +(810,364,cs), +(810,593,o), +(649,739,o), +(420,739,cs), +(192,739,o), +(30,593,o), +(30,364,cs), +(30,135,o), +(192,-11,o), +(420,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,148,o), +(184,230,o), +(184,370,cs), +(184,510,o), +(279,590,o), +(420,590,cs), +(564,590,o), +(656,508,o), +(656,369,cs), +(656,228,o), +(562,148,o), +(420,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,267,o), +(506,290,o), +(506,369,cs), +(506,448,o), +(470,471,o), +(420,471,cs), +(370,471,o), +(334,448,o), +(334,369,cs), +(334,290,o), +(370,267,o), +(420,267,cs) +); +} +); +width = 840; +}, +{ +anchors = ( +{ +name = center; +pos = (431,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,486,l), +(334,486,l), +(334,512,l), +(350,512,ls), +(408,512,o), +(430,540,o), +(434,582,c), +(468,582,l), +(468,149,l), +(434,149,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(649,-10,o), +(798,140,o), +(798,363,cs), +(798,587,o), +(649,736,o), +(430,736,cs), +(210,736,o), +(61,587,o), +(61,363,cs), +(61,140,o), +(210,-10,o), +(430,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,144,o), +(284,217,o), +(284,365,cs), +(284,515,o), +(344,586,o), +(431,586,cs), +(520,586,o), +(576,513,o), +(576,365,cs), +(576,214,o), +(518,144,o), +(431,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(509,174,o), +(542,246,o), +(542,365,cs), +(542,484,o), +(509,556,o), +(431,556,cs), +(351,556,o), +(320,484,o), +(320,365,cs), +(320,246,o), +(351,174,o), +(431,174,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +112, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +529, +23 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +520, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +527, +31 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +482, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 858; +}, +{ +anchors = ( +{ +name = center; +pos = (418,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,405,l), +(274,405,l), +(274,502,l), +(294,502,ls), +(349,502,o), +(393,534,o), +(398,582,c), +(517,582,l), +(517,149,l), +(390,149,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(636,-9,o), +(796,141,o), +(796,365,cs), +(796,589,o), +(636,739,o), +(418,739,cs), +(199,739,o), +(39,589,o), +(39,365,cs), +(39,141,o), +(199,-9,o), +(418,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,145,o), +(250,236,o), +(250,366,cs), +(250,517,o), +(317,588,o), +(417,588,cs), +(533,588,o), +(584,496,o), +(584,366,cs), +(584,216,o), +(517,145,o), +(417,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,251,o), +(457,261,o), +(457,366,cs), +(457,473,o), +(435,482,o), +(417,482,cs), +(400,482,o), +(377,473,o), +(377,366,cs), +(377,260,o), +(400,251,o), +(417,251,cs) +); +} +); +width = 834; +}, +{ +anchors = ( +{ +name = center; +pos = (386,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,496,l), +(332,496,l), +(332,523,l), +(344,523,ls), +(377,523,o), +(391,546,o), +(392,582,c), +(420,582,l), +(420,149,l), +(390,149,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,142,o), +(285,227,o), +(285,364,cs), +(285,501,o), +(312,586,o), +(385,586,cs), +(459,586,o), +(486,501,o), +(486,364,cs), +(486,227,o), +(459,142,o), +(385,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(429,168,o), +(456,209,o), +(456,364,cs), +(456,519,o), +(429,560,o), +(385,560,cs), +(342,560,o), +(315,519,o), +(315,364,cs), +(315,209,o), +(342,168,o), +(385,168,cs) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = center; +pos = (385,366); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,414,l), +(276,414,l), +(276,503,l), +(295,503,ls), +(333,503,o), +(363,534,o), +(367,582,c), +(469,582,l), +(469,149,l), +(359,149,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,143,o), +(246,196,o), +(246,365,cs), +(246,533,o), +(302,586,o), +(385,586,cs), +(468,586,o), +(524,534,o), +(524,365,cs), +(524,196,o), +(468,143,o), +(385,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,234,o), +(414,267,o), +(414,365,cs), +(414,463,o), +(409,495,o), +(385,495,cs), +(361,495,o), +(356,462,o), +(356,365,cs), +(356,267,o), +(361,234,o), +(385,234,cs) +); +} +); +width = 731; +}, +{ +anchors = ( +{ +name = center; +pos = (467.5,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(466,486,l), +(366,486,l), +(366,512,l), +(382,512,ls), +(440,512,o), +(462,540,o), +(466,582,c), +(500,582,l), +(500,149,l), +(466,149,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,144,o), +(319,217,o), +(319,365,cs), +(319,515,o), +(379,586,o), +(468,586,cs), +(559,586,o), +(617,513,o), +(617,365,cs), +(617,214,o), +(557,144,o), +(468,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(548,174,o), +(581,246,o), +(581,365,cs), +(581,484,o), +(548,556,o), +(468,556,cs), +(388,556,o), +(355,484,o), +(355,365,cs), +(355,246,o), +(388,174,o), +(468,174,cs) +); +} +); +width = 891; +}, +{ +anchors = ( +{ +name = center; +pos = (455.5,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(436,405,l), +(320,405,l), +(320,502,l), +(340,502,ls), +(395,502,o), +(439,534,o), +(444,582,c), +(563,582,l), +(563,149,l), +(436,149,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(338,145,o), +(285,236,o), +(285,366,cs), +(285,517,o), +(353,588,o), +(455,588,cs), +(573,588,o), +(626,497,o), +(626,366,cs), +(626,216,o), +(557,145,o), +(455,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(474,251,o), +(498,260,o), +(498,366,cs), +(498,474,o), +(474,482,o), +(455,482,cs), +(437,482,o), +(413,474,o), +(413,366,cs), +(413,259,o), +(437,251,o), +(455,251,cs) +); +} +); +width = 873; +}, +{ +anchors = ( +{ +name = center; +pos = (473,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(477,485,l), +(372,485,l), +(372,512,l), +(392,512,ls), +(450,512,o), +(473,540,o), +(476,582,c), +(513,582,l), +(513,149,l), +(477,149,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(354,144,o), +(271,220,o), +(271,366,cs), +(271,511,o), +(352,587,o), +(473,587,cs), +(591,587,o), +(674,511,o), +(674,366,cs), +(674,221,o), +(592,144,o), +(473,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(576,176,o), +(636,245,o), +(636,366,cs), +(636,487,o), +(578,556,o), +(473,556,cs), +(368,556,o), +(308,488,o), +(308,366,cs), +(308,245,o), +(366,176,o), +(473,176,cs) +); +} +); +width = 903; +}, +{ +anchors = ( +{ +name = center; +pos = (459,364); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(422,394,l), +(307,394,l), +(307,502,l), +(326,502,ls), +(381,502,o), +(425,534,o), +(430,582,c), +(572,582,l), +(572,149,l), +(422,149,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(688,-11,o), +(849,135,o), +(849,364,cs), +(849,593,o), +(688,739,o), +(459,739,cs), +(231,739,o), +(69,593,o), +(69,364,cs), +(69,135,o), +(231,-11,o), +(459,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,148,o), +(223,230,o), +(223,370,cs), +(223,510,o), +(318,590,o), +(459,590,cs), +(603,590,o), +(695,508,o), +(695,369,cs), +(695,228,o), +(601,148,o), +(459,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(509,267,o), +(545,290,o), +(545,369,cs), +(545,448,o), +(509,471,o), +(459,471,cs), +(409,471,o), +(373,448,o), +(373,369,cs), +(373,290,o), +(409,267,o), +(459,267,cs) +); +} +); +width = 880; +} +); +metricLeft = one.circled; +metricRight = one.circled; +unicode = 9471; +userData = { +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zero.circled.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.circled.glyph new file mode 100644 index 00000000..083b7f22 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.circled.glyph @@ -0,0 +1,1285 @@ +{ +color = 0; +glyphname = zero.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,149,l), +(383,582,l), +(355,582,l), +(354,546,o), +(340,523,o), +(307,523,cs), +(295,523,l), +(295,496,l), +(353,496,l), +(353,149,l) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (202,188); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,149,l), +(437,582,l), +(335,582,l), +(331,534,o), +(301,503,o), +(263,503,cs), +(244,503,l), +(244,414,l), +(327,414,l), +(327,149,l) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (199,189); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 706; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,149,l), +(482,582,l), +(445,582,l), +(442,540,o), +(419,512,o), +(361,512,cs), +(341,512,l), +(341,485,l), +(446,485,l), +(446,149,l) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (201,190); +ref = zeroinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,149,l), +(543,582,l), +(401,582,l), +(396,534,o), +(352,502,o), +(297,502,cs), +(278,502,l), +(278,394,l), +(393,394,l), +(393,149,l) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (180,193); +ref = zeroinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(543,-9,o), +(638,141,o), +(638,365,cs), +(638,589,o), +(543,739,o), +(349,739,cs), +(155,739,o), +(60,588,o), +(60,365,cs), +(60,142,o), +(155,-9,o), +(349,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,21,o), +(93,132,o), +(93,365,cs), +(93,598,o), +(196,710,o), +(349,710,cs), +(503,710,o), +(605,599,o), +(605,365,cs), +(605,132,o), +(503,21,o), +(349,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,149,l), +(383,582,l), +(355,582,l), +(354,546,o), +(340,523,o), +(307,523,cs), +(295,523,l), +(295,496,l), +(353,496,l), +(353,149,l) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (202,188); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-7,o), +(666,122,o), +(666,366,cs), +(666,610,o), +(533,739,o), +(353,739,cs), +(173,739,o), +(40,610,o), +(40,366,cs), +(40,122,o), +(173,-7,o), +(353,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,61,o), +(112,192,o), +(112,366,cs), +(112,540,o), +(181,671,o), +(353,671,cs), +(525,671,o), +(594,540,o), +(594,366,cs), +(594,192,o), +(525,61,o), +(353,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,149,l), +(437,582,l), +(335,582,l), +(331,534,o), +(301,503,o), +(263,503,cs), +(244,503,l), +(244,414,l), +(327,414,l), +(327,149,l) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (198,189); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 686; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(468,149,l), +(468,582,l), +(434,582,l), +(430,540,o), +(408,512,o), +(350,512,cs), +(334,512,l), +(334,486,l), +(434,486,l), +(434,149,l) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (223,189); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 871; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(535,149,l), +(535,582,l), +(416,582,l), +(411,534,o), +(367,502,o), +(312,502,cs), +(292,502,l), +(292,405,l), +(408,405,l), +(408,149,l) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (225,191); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 835; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(665,-10,o), +(824,139,o), +(824,363,cs), +(824,587,o), +(665,736,o), +(442,736,cs), +(219,736,o), +(60,587,o), +(60,363,cs), +(60,139,o), +(219,-10,o), +(442,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,24,o), +(97,160,o), +(97,363,cs), +(97,566,o), +(242,702,o), +(442,702,cs), +(642,702,o), +(787,566,o), +(787,363,cs), +(787,160,o), +(642,24,o), +(442,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,149,l), +(482,582,l), +(445,582,l), +(442,540,o), +(419,512,o), +(361,512,cs), +(341,512,l), +(341,485,l), +(446,485,l), +(446,149,l) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (201,190); +ref = zeroinferior; +} +); +width = 884; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(659,-11,o), +(820,135,o), +(820,364,cs), +(820,593,o), +(659,739,o), +(430,739,cs), +(202,739,o), +(40,593,o), +(40,364,cs), +(40,135,o), +(202,-11,o), +(430,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,67,o), +(122,181,o), +(122,364,cs), +(122,547,o), +(250,661,o), +(430,661,cs), +(611,661,o), +(738,547,o), +(738,364,cs), +(738,181,o), +(611,67,o), +(430,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,149,l), +(543,582,l), +(401,582,l), +(396,534,o), +(352,502,o), +(297,502,cs), +(278,502,l), +(278,394,l), +(393,394,l), +(393,149,l) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = whiteCircle; +}, +{ +alignment = -1; +pos = (180,193); +ref = zeroinferior; +} +); +width = 860; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(660,-10,o), +(811,140,o), +(811,363,cs), +(811,587,o), +(660,736,o), +(435,736,cs), +(211,736,o), +(60,587,o), +(60,363,cs), +(60,140,o), +(211,-10,o), +(435,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,21,o), +(94,159,o), +(94,363,cs), +(94,567,o), +(232,706,o), +(435,706,cs), +(639,706,o), +(777,567,o), +(777,363,cs), +(777,159,o), +(639,21,o), +(435,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(468,149,l), +(468,582,l), +(434,582,l), +(430,540,o), +(408,512,o), +(350,512,cs), +(334,512,l), +(334,486,l), +(434,486,l), +(434,149,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (219,189); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 858; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(651,-9,o), +(815,141,o), +(815,365,cs), +(815,589,o), +(651,739,o), +(428,739,cs), +(204,739,o), +(40,589,o), +(40,365,cs), +(40,141,o), +(204,-9,o), +(428,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,68,o), +(124,187,o), +(124,365,cs), +(124,544,o), +(247,663,o), +(428,663,cs), +(608,663,o), +(731,544,o), +(731,365,cs), +(731,187,o), +(609,68,o), +(428,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(535,149,l), +(535,582,l), +(416,582,l), +(411,534,o), +(367,502,o), +(312,502,cs), +(292,502,l), +(292,405,l), +(408,405,l), +(408,149,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (223,191); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 834; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(580,-9,o), +(675,141,o), +(675,365,cs), +(675,589,o), +(580,739,o), +(386,739,cs), +(192,739,o), +(97,588,o), +(97,365,cs), +(97,142,o), +(192,-9,o), +(386,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,21,o), +(130,132,o), +(130,365,cs), +(130,598,o), +(233,710,o), +(386,710,cs), +(540,710,o), +(642,599,o), +(642,365,cs), +(642,132,o), +(540,21,o), +(386,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(420,149,l), +(420,582,l), +(392,582,l), +(391,546,o), +(377,523,o), +(344,523,cs), +(332,523,l), +(332,496,l), +(390,496,l), +(390,149,l) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +pos = (239,188); +ref = zeroinferior; +} +); +width = 727; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(565,-7,o), +(698,122,o), +(698,366,cs), +(698,610,o), +(565,739,o), +(385,739,cs), +(205,739,o), +(72,610,o), +(72,366,cs), +(72,122,o), +(205,-7,o), +(385,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,61,o), +(144,192,o), +(144,366,cs), +(144,540,o), +(213,671,o), +(385,671,cs), +(557,671,o), +(626,540,o), +(626,366,cs), +(626,192,o), +(557,61,o), +(385,61,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,149,l), +(469,582,l), +(367,582,l), +(363,534,o), +(333,503,o), +(295,503,cs), +(276,503,l), +(276,414,l), +(359,414,l), +(359,149,l) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +pos = (231,189); +ref = zeroinferior; +} +); +width = 731; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(692,-10,o), +(843,140,o), +(843,363,cs), +(843,587,o), +(692,736,o), +(467,736,cs), +(243,736,o), +(92,587,o), +(92,363,cs), +(92,140,o), +(243,-10,o), +(467,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,21,o), +(126,159,o), +(126,363,cs), +(126,567,o), +(264,706,o), +(467,706,cs), +(671,706,o), +(809,567,o), +(809,363,cs), +(809,159,o), +(671,21,o), +(467,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(500,149,l), +(500,582,l), +(466,582,l), +(462,540,o), +(440,512,o), +(382,512,cs), +(366,512,l), +(366,486,l), +(466,486,l), +(466,149,l) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = master01; +pos = (276,186); +ref = zeroinferior; +} +); +width = 891; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,-9,o), +(843,141,o), +(843,365,cs), +(843,589,o), +(679,739,o), +(456,739,cs), +(232,739,o), +(68,589,o), +(68,365,cs), +(68,141,o), +(232,-9,o), +(456,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,68,o), +(152,187,o), +(152,365,cs), +(152,544,o), +(275,663,o), +(456,663,cs), +(636,663,o), +(759,544,o), +(759,365,cs), +(759,187,o), +(637,68,o), +(456,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(563,149,l), +(563,582,l), +(444,582,l), +(439,534,o), +(395,502,o), +(340,502,cs), +(320,502,l), +(320,405,l), +(436,405,l), +(436,149,l) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "1EDCBF6C-9964-4A28-BC87-E86B534B8BE7"; +pos = (272,188); +ref = zeroinferior; +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(696,-10,o), +(855,139,o), +(855,363,cs), +(855,587,o), +(696,736,o), +(473,736,cs), +(250,736,o), +(91,587,o), +(91,363,cs), +(91,139,o), +(250,-10,o), +(473,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,24,o), +(128,160,o), +(128,363,cs), +(128,566,o), +(273,702,o), +(473,702,cs), +(673,702,o), +(818,566,o), +(818,363,cs), +(818,160,o), +(673,24,o), +(473,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(513,149,l), +(513,582,l), +(476,582,l), +(473,540,o), +(450,512,o), +(392,512,cs), +(372,512,l), +(372,485,l), +(477,485,l), +(477,149,l) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +pos = (232,190); +ref = zeroinferior; +} +); +width = 903; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(689,-11,o), +(850,135,o), +(850,364,cs), +(850,593,o), +(689,739,o), +(460,739,cs), +(232,739,o), +(70,593,o), +(70,364,cs), +(70,135,o), +(232,-11,o), +(460,-11,cs) +); +}, +{ +closed = 1; +nodes = ( +(280,67,o), +(152,181,o), +(152,364,cs), +(152,547,o), +(280,661,o), +(460,661,cs), +(641,661,o), +(768,547,o), +(768,364,cs), +(768,181,o), +(641,67,o), +(460,67,cs) +); +}, +{ +closed = 1; +nodes = ( +(573,153,l), +(573,586,l), +(431,586,l), +(426,538,o), +(382,506,o), +(327,506,cs), +(308,506,l), +(308,398,l), +(423,398,l), +(423,153,l) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +masterId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +pos = (209,193); +ref = zeroinferior; +} +); +width = 880; +} +); +unicode = 9450; +userData = { +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zero.dnom.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.dnom.glyph new file mode 100644 index 00000000..e653a7ab --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.dnom.glyph @@ -0,0 +1,978 @@ +{ +glyphname = zero.dnom; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-5,o), +(262,38,o), +(262,187,cs), +(262,336,o), +(211,379,o), +(139,379,cs), +(66,379,o), +(16,335,o), +(16,187,cs), +(16,39,o), +(66,-5,o), +(139,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,78,o), +(116,107,o), +(116,187,cs), +(116,267,o), +(119,296,o), +(139,296,cs), +(159,296,o), +(161,265,o), +(161,187,cs), +(161,109,o), +(159,78,o), +(139,78,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 278; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,-6,o), +(231,72,o), +(231,198,cs), +(231,324,o), +(206,401,o), +(139,401,cs), +(72,401,o), +(47,324,o), +(47,198,cs), +(47,72,o), +(72,-6,o), +(139,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(99,18,o), +(74,56,o), +(74,198,cs), +(74,340,o), +(99,378,o), +(139,378,cs), +(179,378,o), +(204,340,o), +(204,198,cs), +(204,56,o), +(179,18,o), +(139,18,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 278; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(336,-5,o), +(411,65,o), +(411,198,cs), +(411,331,o), +(335,401,o), +(226,401,cs), +(115,401,o), +(41,331,o), +(41,198,cs), +(41,65,o), +(117,-5,o), +(227,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,25,o), +(77,88,o), +(77,198,cs), +(77,309,o), +(131,371,o), +(226,371,cs), +(322,371,o), +(375,308,o), +(375,198,cs), +(375,88,o), +(321,25,o), +(226,25,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 452; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,-5,o), +(436,65,o), +(436,187,cs), +(436,308,o), +(354,379,o), +(226,379,cs), +(100,379,o), +(16,309,o), +(16,188,cs), +(16,67,o), +(99,-5,o), +(226,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,97,o), +(143,118,o), +(143,187,cs), +(143,256,o), +(177,278,o), +(226,278,cs), +(275,278,o), +(309,257,o), +(309,187,cs), +(309,118,o), +(275,97,o), +(226,97,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 452; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,-6,o), +(211,72,o), +(211,198,cs), +(211,324,o), +(186,401,o), +(119,401,cs), +(52,401,o), +(27,324,o), +(27,198,cs), +(27,72,o), +(52,-6,o), +(119,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(79,18,o), +(54,56,o), +(54,198,cs), +(54,340,o), +(79,378,o), +(119,378,cs), +(159,378,o), +(184,340,o), +(184,198,cs), +(184,56,o), +(159,18,o), +(119,18,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 238; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-5,o), +(253,38,o), +(253,187,cs), +(253,336,o), +(202,379,o), +(130,379,cs), +(57,379,o), +(7,335,o), +(7,187,cs), +(7,39,o), +(57,-5,o), +(130,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(110,78,o), +(107,107,o), +(107,187,cs), +(107,267,o), +(110,296,o), +(130,296,cs), +(150,296,o), +(152,265,o), +(152,187,cs), +(152,109,o), +(150,78,o), +(130,78,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 260; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,-5,o), +(317,60,o), +(317,198,cs), +(317,334,o), +(264,401,o), +(181,401,cs), +(99,401,o), +(44,336,o), +(44,198,cs), +(44,63,o), +(97,-5,o), +(181,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(107,23,o), +(77,89,o), +(77,198,cs), +(77,307,o), +(107,373,o), +(181,373,cs), +(254,373,o), +(285,307,o), +(285,198,cs), +(285,89,o), +(254,23,o), +(181,23,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 361; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(256,-5,o), +(318,56,o), +(318,187,cs), +(318,299,o), +(270,379,o), +(165,379,cs), +(74,379,o), +(12,318,o), +(12,187,cs), +(12,74,o), +(60,-5,o), +(165,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,88,o), +(125,94,o), +(125,187,cs), +(125,280,o), +(147,285,o), +(165,285,cs), +(183,285,o), +(204,279,o), +(204,187,cs), +(204,94,o), +(183,88,o), +(165,88,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 330; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,-5,o), +(401,65,o), +(401,198,cs), +(401,331,o), +(325,401,o), +(216,401,cs), +(105,401,o), +(31,331,o), +(31,198,cs), +(31,65,o), +(107,-5,o), +(217,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,25,o), +(67,88,o), +(67,198,cs), +(67,309,o), +(121,371,o), +(216,371,cs), +(312,371,o), +(365,308,o), +(365,198,cs), +(365,88,o), +(311,25,o), +(216,25,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 432; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-5,o), +(426,65,o), +(426,187,cs), +(426,308,o), +(344,379,o), +(216,379,cs), +(90,379,o), +(6,309,o), +(6,188,cs), +(6,67,o), +(89,-5,o), +(216,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(167,97,o), +(133,118,o), +(133,187,cs), +(133,256,o), +(167,278,o), +(216,278,cs), +(265,278,o), +(299,257,o), +(299,187,cs), +(299,118,o), +(265,97,o), +(216,97,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 432; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(279,-5,o), +(334,60,o), +(334,198,cs), +(334,334,o), +(281,401,o), +(200,401,cs), +(120,401,o), +(65,336,o), +(65,198,cs), +(65,63,o), +(118,-5,o), +(200,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(128,23,o), +(98,89,o), +(98,198,cs), +(98,307,o), +(128,373,o), +(200,373,cs), +(271,373,o), +(302,307,o), +(302,198,cs), +(302,89,o), +(271,23,o), +(200,23,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 398; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(265,-5,o), +(325,56,o), +(325,187,cs), +(325,299,o), +(279,379,o), +(178,379,cs), +(91,379,o), +(32,318,o), +(32,187,cs), +(32,74,o), +(77,-5,o), +(178,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,88,o), +(144,93,o), +(144,187,cs), +(144,281,o), +(164,285,o), +(178,285,cs), +(192,285,o), +(212,280,o), +(212,187,cs), +(212,93,o), +(192,88,o), +(178,88,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 355; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,-5,o), +(190,71,o), +(215,189,cs), +(238,298,o), +(242,401,o), +(161,401,cs), +(101,401,o), +(62,331,o), +(36,207,cs), +(13,96,o), +(9,-5,o), +(90,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(31,23,o), +(45,122,o), +(62,203,cs), +(91,342,o), +(121,377,o), +(158,377,cs), +(220,377,o), +(209,287,o), +(189,193,cs), +(158,45,o), +(127,16,o), +(85,19,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 276; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,-5,o), +(212,38,o), +(241,178,cs), +(265,294,o), +(251,379,o), +(147,379,cs), +(77,379,o), +(28,328,o), +(1,198,cs), +(-23,82,o), +(-12,-5,o), +(95,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(77,78,o), +(83,117,o), +(99,189,cs), +(115,268,o), +(125,296,o), +(142,296,cs), +(163,296,o), +(158,260,o), +(143,187,cs), +(127,108,o), +(118,78,o), +(101,78,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 276; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,-6,o), +(291,51,o), +(316,189,cs), +(337,306,o), +(313,401,o), +(214,401,cs), +(141,401,o), +(78,342,o), +(54,207,cs), +(32,82,o), +(61,-6,o), +(156,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(82,22,o), +(69,97,o), +(84,192,cs), +(103,311,o), +(147,373,o), +(213,373,cs), +(288,373,o), +(301,298,o), +(285,199,cs), +(267,85,o), +(222,22,o), +(157,22,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 395; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,-5,o), +(294,48,o), +(318,158,cs), +(347,292,o), +(303,379,o), +(195,379,cs), +(111,379,o), +(44,326,o), +(20,216,cs), +(-9,81,o), +(39,-5,o), +(143,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(117,89,o), +(116,130,o), +(129,195,cs), +(144,271,o), +(162,285,o), +(186,285,cs), +(217,285,o), +(224,251,o), +(209,178,cs), +(195,111,o), +(181,89,o), +(152,89,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 374; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,-5,o), +(403,89,o), +(403,229,cs), +(403,332,o), +(343,401,o), +(236,401,cs), +(110,401,o), +(27,306,o), +(27,167,cs), +(27,63,o), +(88,-5,o), +(194,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(117,25,o), +(63,74,o), +(63,169,cs), +(63,289,o), +(132,371,o), +(233,371,cs), +(313,371,o), +(367,322,o), +(367,227,cs), +(367,107,o), +(298,25,o), +(198,25,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 455; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-3,o), +(417,71,o), +(421,204,cs), +(424,308,o), +(352,378,o), +(226,378,cs), +(92,378,o), +(2,301,o), +(-2,172,cs), +(-5,67,o), +(65,-3,o), +(192,-3,cs) +); +}, +{ +closed = 1; +nodes = ( +(153,99,o), +(123,126,o), +(124,175,cs), +(126,235,o), +(156,276,o), +(219,276,cs), +(266,276,o), +(296,247,o), +(295,201,cs), +(293,137,o), +(259,99,o), +(200,99,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 454; +} +); +metricRight = "=|"; +userData = { +KernOnName = zero.dnom; +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = zero; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zero.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.glyph new file mode 100644 index 00000000..5a5bef08 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.glyph @@ -0,0 +1,1042 @@ +{ +glyphname = zero; +kernLeft = KO_six; +kernRight = KO_zero; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,-10,o), +(482,80,o), +(482,365,cs), +(482,648,o), +(389,738,o), +(249,738,cs), +(109,738,o), +(16,648,o), +(16,365,cs), +(16,80,o), +(109,-10,o), +(249,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,141,o), +(198,196,o), +(198,365,cs), +(198,532,o), +(208,587,o), +(249,587,cs), +(291,587,o), +(300,532,o), +(300,365,cs), +(300,196,o), +(291,141,o), +(249,141,cs) +); +} +); +width = 498; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +closed = 1; +nodes = ( +(327,-10,o), +(367,139,o), +(367,365,cs), +(367,590,o), +(327,739,o), +(206,739,cs), +(84,739,o), +(45,590,o), +(45,365,cs), +(45,139,o), +(84,-10,o), +(206,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,19,o), +(77,88,o), +(77,365,cs), +(77,641,o), +(129,710,o), +(206,710,cs), +(284,710,o), +(334,639,o), +(334,365,cs), +(334,90,o), +(284,19,o), +(206,19,cs) +); +} +); +width = 411; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +closed = 1; +nodes = ( +(569,-10,o), +(704,118,o), +(704,365,cs), +(704,612,o), +(566,738,o), +(373,738,cs), +(172,738,o), +(39,611,o), +(39,365,cs), +(39,116,o), +(177,-10,o), +(374,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,24,o), +(78,151,o), +(78,365,cs), +(78,579,o), +(183,704,o), +(373,704,cs), +(562,704,o), +(665,578,o), +(665,365,cs), +(665,151,o), +(559,24,o), +(373,24,cs) +); +} +); +width = 743; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +closed = 1; +nodes = ( +(637,-9,o), +(793,126,o), +(793,365,cs), +(793,601,o), +(639,738,o), +(403,738,cs), +(168,738,o), +(12,603,o), +(12,366,cs), +(12,129,o), +(166,-9,o), +(402,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,171,o), +(239,221,o), +(239,365,cs), +(239,508,o), +(305,558,o), +(402,558,cs), +(500,558,o), +(566,508,o), +(566,365,cs), +(566,221,o), +(500,171,o), +(402,171,cs) +); +} +); +width = 805; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,-10,o), +(342,137,o), +(342,360,cs), +(342,583,o), +(303,730,o), +(183,730,cs), +(63,730,o), +(24,583,o), +(24,360,cs), +(24,137,o), +(63,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(107,19,o), +(56,87,o), +(56,360,cs), +(56,633,o), +(107,701,o), +(183,701,cs), +(260,701,o), +(310,631,o), +(310,360,cs), +(310,89,o), +(260,19,o), +(183,19,cs) +); +} +); +width = 366; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,-10,o), +(475,79,o), +(475,360,cs), +(475,640,o), +(381,729,o), +(241,729,cs), +(101,729,o), +(7,640,o), +(7,360,cs), +(7,79,o), +(101,-10,o), +(241,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,146,o), +(196,199,o), +(196,360,cs), +(196,519,o), +(204,572,o), +(241,572,cs), +(279,572,o), +(287,519,o), +(287,360,cs), +(287,199,o), +(279,146,o), +(241,146,cs) +); +} +); +width = 482; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,-9,o), +(530,109,o), +(530,360,cs), +(530,611,o), +(432,729,o), +(286,729,cs), +(140,729,o), +(42,611,o), +(42,360,cs), +(42,109,o), +(140,-9,o), +(286,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(139,25,o), +(82,159,o), +(82,360,cs), +(82,561,o), +(139,695,o), +(286,695,cs), +(433,695,o), +(490,561,o), +(490,360,cs), +(490,159,o), +(433,25,o), +(286,25,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 572; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(488,-6,o), +(603,126,o), +(603,362,cs), +(603,583,o), +(501,730,o), +(320,730,cs), +(147,730,o), +(31,598,o), +(31,364,cs), +(31,142,o), +(134,-6,o), +(316,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,154,o), +(221,181,o), +(221,363,cs), +(221,544,o), +(265,571,o), +(317,571,cs), +(369,571,o), +(413,544,o), +(413,363,cs), +(413,181,o), +(369,154,o), +(317,154,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-10,o), +(578,108,o), +(578,359,cs), +(578,581,o), +(487,729,o), +(293,729,cs), +(123,729,o), +(8,611,o), +(8,359,cs), +(8,138,o), +(99,-10,o), +(293,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,159,o), +(210,213,o), +(210,359,cs), +(210,507,o), +(237,560,o), +(293,560,cs), +(349,560,o), +(376,507,o), +(376,359,cs), +(376,213,o), +(349,159,o), +(293,159,cs) +); +} +); +width = 586; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,-10,o), +(705,117,o), +(705,364,cs), +(705,612,o), +(569,737,o), +(368,737,cs), +(160,737,o), +(29,611,o), +(29,364,cs), +(29,115,o), +(165,-10,o), +(369,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,24,o), +(67,149,o), +(67,364,cs), +(67,580,o), +(171,703,o), +(368,703,cs), +(565,703,o), +(667,579,o), +(667,364,cs), +(667,149,o), +(562,24,o), +(368,24,cs) +); +} +); +width = 734; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(623,-9,o), +(778,124,o), +(778,360,cs), +(778,594,o), +(625,729,o), +(391,729,cs), +(158,729,o), +(3,596,o), +(3,361,cs), +(3,127,o), +(156,-9,o), +(390,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,169,o), +(233,218,o), +(233,360,cs), +(233,502,o), +(296,551,o), +(390,551,cs), +(485,551,o), +(548,502,o), +(548,360,cs), +(548,218,o), +(485,169,o), +(390,169,cs) +); +} +); +width = 781; +}, +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(440,-9,o), +(519,124,o), +(519,365,cs), +(519,606,o), +(440,738,o), +(295,738,cs), +(150,738,o), +(70,606,o), +(70,365,cs), +(70,124,o), +(150,-9,o), +(295,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,27,o), +(109,147,o), +(109,365,cs), +(109,583,o), +(174,702,o), +(295,702,cs), +(415,702,o), +(481,583,o), +(481,365,cs), +(481,147,o), +(415,27,o), +(295,27,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 589; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-6,o), +(614,126,o), +(614,362,cs), +(614,583,o), +(512,730,o), +(331,730,cs), +(158,730,o), +(42,598,o), +(42,364,cs), +(42,142,o), +(145,-6,o), +(327,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,154,o), +(232,181,o), +(232,363,cs), +(232,544,o), +(276,571,o), +(328,571,cs), +(380,571,o), +(424,544,o), +(424,363,cs), +(424,181,o), +(380,154,o), +(328,154,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(493,-10,o), +(595,130,o), +(595,363,cs), +(595,598,o), +(493,738,o), +(320,738,cs), +(147,738,o), +(45,598,o), +(45,363,cs), +(45,130,o), +(147,-10,o), +(320,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,161,o), +(248,230,o), +(248,363,cs), +(248,497,o), +(271,567,o), +(320,567,cs), +(368,567,o), +(392,497,o), +(392,363,cs), +(392,230,o), +(368,161,o), +(320,161,cs) +); +} +); +width = 640; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-9,o), +(336,135,o), +(383,351,cs), +(423,546,o), +(435,738,o), +(292,738,cs), +(180,738,o), +(114,596,o), +(69,380,cs), +(26,179,o), +(17,-9,o), +(159,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(41,29,o), +(66,211,o), +(99,374,cs), +(155,643,o), +(217,709,o), +(288,709,cs), +(409,709,o), +(389,534,o), +(351,355,cs), +(294,77,o), +(229,14,o), +(153,20,cs) +); +} +); +width = 409; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(190,729,o), +(92,641,o), +(37,377,cs), +(-9,156,o), +(14,-10,o), +(210,-10,cs), +(341,-10,o), +(435,91,o), +(486,338,cs), +(532,560,o), +(512,729,o), +(313,729,cs) +); +}, +{ +closed = 1; +nodes = ( +(355,579,o), +(340,495,o), +(310,354,cs), +(277,194,o), +(257,140,o), +(220,140,cs), +(165,140,o), +(189,247,o), +(213,362,cs), +(246,522,o), +(266,579,o), +(303,579,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-10,o), +(437,79,o), +(493,346,cs), +(539,567,o), +(518,738,o), +(318,738,cs), +(185,738,o), +(90,636,o), +(38,386,cs), +(-8,161,o), +(12,-10,o), +(214,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,142,o), +(186,227,o), +(217,370,cs), +(249,529,o), +(269,586,o), +(307,586,cs), +(359,586,o), +(344,501,o), +(314,358,cs), +(281,199,o), +(261,142,o), +(224,142,cs) +); +} +); +width = 493; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(406,-10,o), +(516,103,o), +(560,352,cs), +(598,574,o), +(552,738,o), +(378,738,cs), +(243,738,o), +(132,626,o), +(88,376,cs), +(50,151,o), +(98,-10,o), +(270,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,24,o), +(96,170,o), +(125,355,cs), +(159,578,o), +(248,704,o), +(378,704,cs), +(527,704,o), +(552,558,o), +(523,373,cs), +(492,165,o), +(407,24,o), +(270,24,cs) +); +} +); +width = 605; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(468,-6,o), +(605,176,o), +(615,450,cs), +(621,619,o), +(539,730,o), +(386,730,cs), +(187,730,o), +(50,549,o), +(40,276,cs), +(34,106,o), +(118,-6,o), +(271,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(249,161,o), +(222,194,o), +(225,276,cs), +(230,441,o), +(290,565,o), +(366,565,cs), +(408,565,o), +(434,532,o), +(432,453,cs), +(426,288,o), +(366,161,o), +(293,161,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-10,o), +(562,94,o), +(609,315,cs), +(662,569,o), +(585,738,o), +(385,738,cs), +(230,738,o), +(105,634,o), +(59,413,cs), +(5,159,o), +(87,-10,o), +(282,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,152,o), +(219,241,o), +(246,379,cs), +(276,535,o), +(316,576,o), +(371,576,cs), +(443,576,o), +(449,487,o), +(421,349,cs), +(391,193,o), +(351,152,o), +(297,152,cs) +); +} +); +width = 631; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(579,-10,o), +(728,161,o), +(728,417,cs), +(728,604,o), +(621,729,o), +(432,729,cs), +(208,729,o), +(59,558,o), +(59,302,cs), +(59,114,o), +(166,-10,o), +(355,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(203,24,o), +(99,118,o), +(99,304,cs), +(99,536,o), +(233,695,o), +(427,695,cs), +(584,695,o), +(688,601,o), +(688,415,cs), +(688,183,o), +(554,24,o), +(360,24,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(589,-9,o), +(736,160,o), +(736,417,cs), +(736,609,o), +(626,738,o), +(430,738,cs), +(208,738,o), +(61,569,o), +(61,312,cs), +(61,119,o), +(171,-9,o), +(367,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(209,25,o), +(100,123,o), +(100,313,cs), +(100,546,o), +(233,704,o), +(426,704,cs), +(588,704,o), +(697,606,o), +(697,416,cs), +(697,183,o), +(564,25,o), +(371,25,cs) +); +} +); +width = 754; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(634,-7,o), +(809,141,o), +(818,399,cs), +(825,601,o), +(694,736,o), +(460,736,cs), +(214,736,o), +(41,588,o), +(31,331,cs), +(24,129,o), +(155,-7,o), +(390,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,175,o), +(252,232,o), +(256,337,cs), +(261,467,o), +(324,555,o), +(447,555,cs), +(538,555,o), +(596,498,o), +(593,393,cs), +(588,264,o), +(525,175,o), +(404,175,cs) +); +} +); +width = 813; +} +); +metricRight = "=|"; +unicode = 48; +userData = { +KernOnName = zero; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zero.numr.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.numr.glyph new file mode 100644 index 00000000..9048c439 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.numr.glyph @@ -0,0 +1,450 @@ +{ +color = 6; +glyphname = zero.numr; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 278; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,333); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 278; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,333); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 452; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 452; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 278; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 260; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,332); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zero.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zero.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 401; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zero.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zero.dnom; +}; +width = 352; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,333); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 452; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 452; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zero.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zero.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 398; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zero.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zero.dnom; +}; +width = 355; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (69,333); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -45; +width = 55; +}; +}; +width = 276; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (73,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -400; +width = 52; +}; +}; +width = 276; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (69,332); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +}; +width = 395; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (73,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 374; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (69,333); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -35; +width = 55; +}; +}; +width = 455; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (73,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -390; +width = 54; +}; +}; +width = 454; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = zero; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zero.tf.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.tf.glyph new file mode 100644 index 00000000..69651f32 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.tf.glyph @@ -0,0 +1,1356 @@ +{ +color = 6; +glyphname = zero.tf; +layers = ( +{ +background = { +anchors = ( +{ +name = center; +pos = (240,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(358,382,l), +(358,501,l), +(123,337,l), +(123,219,l) +); +}, +{ +closed = 1; +nodes = ( +(378,-10,o), +(470,79,o), +(470,360,cs), +(470,640,o), +(378,729,o), +(240,729,cs), +(102,729,o), +(10,640,o), +(10,360,cs), +(10,79,o), +(102,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,139,o), +(190,194,o), +(190,360,cs), +(190,525,o), +(199,580,o), +(240,580,cs), +(281,580,o), +(290,525,o), +(290,360,cs), +(290,194,o), +(281,139,o), +(240,139,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +metricWidth = "=480"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (83,0); +ref = _zero.tf.slash; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (240,370); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(377,439,l), +(377,472,l), +(104,280,l), +(104,248,l) +); +}, +{ +closed = 1; +nodes = ( +(359,-10,o), +(398,137,o), +(398,360,cs), +(398,583,o), +(359,730,o), +(240,730,cs), +(121,730,o), +(82,583,o), +(82,360,cs), +(82,137,o), +(121,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,19,o), +(114,86,o), +(114,360,cs), +(114,634,o), +(165,701,o), +(240,701,cs), +(316,701,o), +(366,631,o), +(366,360,cs), +(366,89,o), +(316,19,o), +(240,19,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +metricWidth = "=480"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (64,0); +ref = _zero.tf.slash; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (360.5,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(602,520,l), +(602,557,l), +(121,199,l), +(121,163,l) +); +}, +{ +closed = 1; +nodes = ( +(531,-10,o), +(647,117,o), +(647,360,cs), +(647,604,o), +(529,729,o), +(362,729,cs), +(189,729,o), +(74,603,o), +(74,360,cs), +(74,115,o), +(194,-10,o), +(364,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,24,o), +(114,149,o), +(114,360,cs), +(114,572,o), +(203,695,o), +(362,695,cs), +(522,695,o), +(609,570,o), +(609,360,cs), +(609,149,o), +(519,24,o), +(363,24,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +metricWidth = "=720"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (81,0); +ref = _zero.tf.slash; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (360,369); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(496,386,l), +(496,526,l), +(226,334,l), +(226,194,l) +); +}, +{ +closed = 1; +nodes = ( +(562,-9,o), +(697,112,o), +(697,360,cs), +(697,581,o), +(588,729,o), +(361,729,cs), +(158,729,o), +(23,609,o), +(23,361,cs), +(23,139,o), +(133,-9,o), +(360,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,169,o), +(247,218,o), +(247,360,cs), +(247,484,o), +(281,551,o), +(360,551,cs), +(427,551,o), +(473,502,o), +(473,360,cs), +(473,237,o), +(439,169,o), +(360,169,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +metricWidth = "=720"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (186,0); +ref = _zero.tf.slash; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (240,370); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(377,439,l), +(377,472,l), +(104,280,l), +(104,248,l) +); +}, +{ +closed = 1; +nodes = ( +(359,-10,o), +(398,137,o), +(398,360,cs), +(398,583,o), +(359,730,o), +(240,730,cs), +(121,730,o), +(82,583,o), +(82,360,cs), +(82,137,o), +(121,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,19,o), +(114,86,o), +(114,360,cs), +(114,634,o), +(165,701,o), +(240,701,cs), +(316,701,o), +(366,631,o), +(366,360,cs), +(366,89,o), +(316,19,o), +(240,19,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +metricWidth = "=480"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (64,0); +ref = _zero.tf.slash; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (240,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(358,382,l), +(358,501,l), +(123,337,l), +(123,219,l) +); +}, +{ +closed = 1; +nodes = ( +(378,-10,o), +(470,79,o), +(470,360,cs), +(470,640,o), +(378,729,o), +(240,729,cs), +(102,729,o), +(10,640,o), +(10,360,cs), +(10,79,o), +(102,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,139,o), +(190,194,o), +(190,360,cs), +(190,525,o), +(199,580,o), +(240,580,cs), +(281,580,o), +(290,525,o), +(290,360,cs), +(290,194,o), +(281,139,o), +(240,139,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +metricWidth = "=480"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (86,0); +ref = _zero.tf.slash; +} +); +width = 466; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (300,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(520,494,l), +(520,531,l), +(81,224,l), +(81,188,l) +); +}, +{ +closed = 1; +nodes = ( +(445,-10,o), +(543,117,o), +(543,360,cs), +(543,604,o), +(444,729,o), +(301,729,cs), +(154,729,o), +(57,603,o), +(57,360,cs), +(57,115,o), +(157,-10,o), +(302,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,24,o), +(96,149,o), +(96,360,cs), +(96,572,o), +(168,695,o), +(301,695,cs), +(432,695,o), +(505,571,o), +(505,360,cs), +(505,149,o), +(432,24,o), +(301,24,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (41,0); +ref = _zero.tf.slash; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 600; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (300,368); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(430,386,l), +(430,517,l), +(171,337,l), +(171,207,l) +); +}, +{ +closed = 1; +nodes = ( +(471,-6,o), +(586,126,o), +(586,362,cs), +(586,583,o), +(484,730,o), +(303,730,cs), +(130,730,o), +(14,598,o), +(14,364,cs), +(14,142,o), +(117,-6,o), +(299,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,154,o), +(204,181,o), +(204,363,cs), +(204,544,o), +(248,571,o), +(300,571,cs), +(352,571,o), +(396,544,o), +(396,363,cs), +(396,181,o), +(352,154,o), +(300,154,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (135,0); +ref = _zero.tf.slash; +} +); +width = 578; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (360.5,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(602,520,l), +(602,557,l), +(121,199,l), +(121,163,l) +); +}, +{ +closed = 1; +nodes = ( +(531,-10,o), +(647,117,o), +(647,360,cs), +(647,604,o), +(529,729,o), +(362,729,cs), +(189,729,o), +(74,603,o), +(74,360,cs), +(74,115,o), +(194,-10,o), +(364,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,24,o), +(114,149,o), +(114,360,cs), +(114,572,o), +(203,695,o), +(362,695,cs), +(522,695,o), +(609,570,o), +(609,360,cs), +(609,149,o), +(519,24,o), +(363,24,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +metricWidth = "=720"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (81,0); +ref = _zero.tf.slash; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (360,369); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(496,386,l), +(496,526,l), +(226,334,l), +(226,194,l) +); +}, +{ +closed = 1; +nodes = ( +(562,-9,o), +(697,112,o), +(697,360,cs), +(697,581,o), +(588,729,o), +(361,729,cs), +(158,729,o), +(23,609,o), +(23,361,cs), +(23,139,o), +(133,-9,o), +(360,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,169,o), +(247,218,o), +(247,360,cs), +(247,484,o), +(281,551,o), +(360,551,cs), +(427,551,o), +(473,502,o), +(473,360,cs), +(473,237,o), +(439,169,o), +(360,169,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +metricWidth = "=720"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (186,0); +ref = _zero.tf.slash; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (300,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(520,494,l), +(520,531,l), +(81,224,l), +(81,188,l) +); +}, +{ +closed = 1; +nodes = ( +(445,-10,o), +(543,117,o), +(543,360,cs), +(543,604,o), +(444,729,o), +(301,729,cs), +(154,729,o), +(57,603,o), +(57,360,cs), +(57,115,o), +(157,-10,o), +(302,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,24,o), +(96,149,o), +(96,360,cs), +(96,572,o), +(168,695,o), +(301,695,cs), +(432,695,o), +(505,571,o), +(505,360,cs), +(505,149,o), +(432,24,o), +(301,24,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (41,0); +ref = _zero.tf.slash; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 582; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (300,368); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(430,386,l), +(430,517,l), +(171,337,l), +(171,207,l) +); +}, +{ +closed = 1; +nodes = ( +(471,-6,o), +(586,126,o), +(586,362,cs), +(586,583,o), +(484,730,o), +(303,730,cs), +(130,730,o), +(14,598,o), +(14,364,cs), +(14,142,o), +(117,-6,o), +(299,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,154,o), +(204,181,o), +(204,363,cs), +(204,544,o), +(248,571,o), +(300,571,cs), +(352,571,o), +(396,544,o), +(396,363,cs), +(396,181,o), +(352,154,o), +(300,154,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (131,0); +ref = _zero.tf.slash; +} +); +width = 574; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (260.67,369); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(403,410,l), +(409,442,l), +(119,308,l), +(113,278,l) +); +}, +{ +closed = 1; +nodes = ( +(305,-9,o), +(370,133,o), +(416,347,cs), +(456,539,o), +(468,729,o), +(326,729,cs), +(216,729,o), +(151,589,o), +(106,375,cs), +(64,177,o), +(55,-9,o), +(195,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(78,29,o), +(103,208,o), +(136,369,cs), +(191,635,o), +(252,700,o), +(322,700,cs), +(442,700,o), +(422,527,o), +(385,351,cs), +(328,76,o), +(264,14,o), +(189,20,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +metricWidth = "=480"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (69,0); +ref = _zero.tf.slash; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (257.812,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(317,333,l), +(340,449,l), +(202,386,l), +(178,270,l) +); +}, +{ +closed = 1; +nodes = ( +(330,-10,o), +(428,78,o), +(483,342,cs), +(529,563,o), +(506,729,o), +(310,729,cs), +(179,729,o), +(85,628,o), +(34,381,cs), +(-14,159,o), +(8,-10,o), +(207,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,140,o), +(181,228,o), +(210,365,cs), +(243,525,o), +(263,579,o), +(300,579,cs), +(352,579,o), +(335,492,o), +(307,357,cs), +(274,197,o), +(254,140,o), +(217,140,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +metricWidth = "=480"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (138,0); +ref = _zero.tf.slash; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (321.502,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(537,443,l), +(539,477,l), +(107,276,l), +(104,243,l) +); +}, +{ +closed = 1; +nodes = ( +(439,-10,o), +(559,178,o), +(569,477,cs), +(575,639,o), +(500,729,o), +(383,729,cs), +(204,729,o), +(85,540,o), +(74,242,cs), +(68,80,o), +(144,-10,o), +(260,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,24,o), +(107,111,o), +(112,243,cs), +(121,517,o), +(226,695,o), +(377,695,cs), +(487,695,o), +(536,607,o), +(532,475,cs), +(522,202,o), +(418,24,o), +(265,24,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (63,0); +ref = _zero.tf.slash; +} +); +width = 600; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (318.503,368); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(425,352,l), +(437,475,l), +(211,371,l), +(200,250,l) +); +}, +{ +closed = 1; +nodes = ( +(459,-6,o), +(596,176,o), +(606,450,cs), +(612,619,o), +(530,730,o), +(377,730,cs), +(178,730,o), +(41,549,o), +(31,276,cs), +(25,106,o), +(109,-6,o), +(262,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,160,o), +(212,193,o), +(215,275,cs), +(220,440,o), +(280,564,o), +(356,564,cs), +(398,564,o), +(424,531,o), +(422,452,cs), +(416,287,o), +(356,160,o), +(283,160,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (150,0); +ref = _zero.tf.slash; +} +); +width = 600; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (381,369); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(652,472,l), +(649,500,l), +(111,252,l), +(114,221,l) +); +}, +{ +closed = 1; +nodes = ( +(531,-9,o), +(673,153,o), +(682,428,cs), +(688,608,o), +(600,729,o), +(435,729,cs), +(230,729,o), +(90,567,o), +(80,292,cs), +(74,112,o), +(162,-9,o), +(327,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,25,o), +(119,121,o), +(117,269,cs), +(117,497,o), +(220,695,o), +(431,695,cs), +(577,695,o), +(646,591,o), +(646,427,cs), +(637,187,o), +(521,25,o), +(332,25,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +metricWidth = "=720"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (72,0); +ref = _zero.tf.slash; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (378.657,365.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(520,386,l), +(549,526,l), +(232,334,l), +(203,194,l) +); +}, +{ +closed = 1; +nodes = ( +(560,-5,o), +(708,156,o), +(717,402,cs), +(724,596,o), +(614,726,o), +(413,726,cs), +(192,726,o), +(40,557,o), +(40,302,cs), +(40,117,o), +(148,-5,o), +(344,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(295,176,o), +(256,213,o), +(256,313,cs), +(256,467,o), +(321,550,o), +(405,547,cs), +(463,545,o), +(502,508,o), +(502,408,cs), +(502,254,o), +(437,171,o), +(353,174,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +metricWidth = "=720"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (179,0); +ref = _zero.tf.slash; +} +); +width = 720; +} +); +metricWidth = "=600"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zero.tf.ss08.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.tf.ss08.glyph new file mode 100644 index 00000000..f158599f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zero.tf.ss08.glyph @@ -0,0 +1,1400 @@ +{ +color = 6; +glyphname = zero.tf.ss08; +layers = ( +{ +background = { +anchors = ( +{ +name = center; +pos = (240,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(368,302,l), +(368,418,l), +(113,418,l), +(113,302,l) +); +}, +{ +closed = 1; +nodes = ( +(378,-10,o), +(470,79,o), +(470,360,cs), +(470,640,o), +(378,729,o), +(240,729,cs), +(102,729,o), +(10,640,o), +(10,360,cs), +(10,79,o), +(102,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,139,o), +(190,194,o), +(190,360,cs), +(190,525,o), +(199,580,o), +(240,580,cs), +(281,580,o), +(290,525,o), +(290,360,cs), +(290,194,o), +(281,139,o), +(240,139,cs) +); +} +); +}; +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (73,0); +ref = _zero.tf.slash.ss08; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (240,370); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(376,346,l), +(376,375,l), +(104,375,l), +(104,346,l) +); +}, +{ +closed = 1; +nodes = ( +(359,-10,o), +(398,137,o), +(398,360,cs), +(398,583,o), +(359,730,o), +(240,730,cs), +(121,730,o), +(82,583,o), +(82,360,cs), +(82,137,o), +(121,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,19,o), +(114,86,o), +(114,360,cs), +(114,634,o), +(165,701,o), +(240,701,cs), +(316,701,o), +(366,631,o), +(366,360,cs), +(366,89,o), +(316,19,o), +(240,19,cs) +); +} +); +}; +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (64,0); +ref = _zero.tf.slash.ss08; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (360.5,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(621,343,l), +(621,376,l), +(102,376,l), +(102,343,l) +); +}, +{ +closed = 1; +nodes = ( +(531,-10,o), +(647,117,o), +(647,360,cs), +(647,604,o), +(529,729,o), +(362,729,cs), +(189,729,o), +(74,603,o), +(74,360,cs), +(74,115,o), +(194,-10,o), +(364,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,24,o), +(114,149,o), +(114,360,cs), +(114,572,o), +(203,695,o), +(362,695,cs), +(522,695,o), +(609,570,o), +(609,360,cs), +(609,149,o), +(519,24,o), +(363,24,cs) +); +} +); +}; +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (62,0); +ref = _zero.tf.slash.ss08; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (360,369); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(527,302,l), +(527,418,l), +(194,418,l), +(194,302,l) +); +}, +{ +closed = 1; +nodes = ( +(562,-9,o), +(697,112,o), +(697,360,cs), +(697,581,o), +(588,729,o), +(361,729,cs), +(158,729,o), +(23,609,o), +(23,361,cs), +(23,139,o), +(133,-9,o), +(360,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,169,o), +(247,218,o), +(247,360,cs), +(247,484,o), +(281,551,o), +(360,551,cs), +(427,551,o), +(473,502,o), +(473,360,cs), +(473,237,o), +(439,169,o), +(360,169,cs) +); +} +); +}; +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (154,0); +ref = _zero.tf.slash.ss08; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (240,370); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(376,346,l), +(376,375,l), +(104,375,l), +(104,346,l) +); +}, +{ +closed = 1; +nodes = ( +(359,-10,o), +(398,137,o), +(398,360,cs), +(398,583,o), +(359,730,o), +(240,730,cs), +(121,730,o), +(82,583,o), +(82,360,cs), +(82,137,o), +(121,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,19,o), +(114,86,o), +(114,360,cs), +(114,634,o), +(165,701,o), +(240,701,cs), +(316,701,o), +(366,631,o), +(366,360,cs), +(366,89,o), +(316,19,o), +(240,19,cs) +); +} +); +}; +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (64,0); +ref = _zero.tf.slash.ss08; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (240,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(368,302,l), +(368,418,l), +(113,418,l), +(113,302,l) +); +}, +{ +closed = 1; +nodes = ( +(378,-10,o), +(470,79,o), +(470,360,cs), +(470,640,o), +(378,729,o), +(240,729,cs), +(102,729,o), +(10,640,o), +(10,360,cs), +(10,79,o), +(102,-10,o), +(240,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,139,o), +(190,194,o), +(190,360,cs), +(190,525,o), +(199,580,o), +(240,580,cs), +(281,580,o), +(290,525,o), +(290,360,cs), +(290,194,o), +(281,139,o), +(240,139,cs) +); +} +); +}; +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (76,0); +ref = _zero.tf.slash.ss08; +} +); +width = 466; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (300,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(526,343,l), +(526,376,l), +(75,376,l), +(75,343,l) +); +}, +{ +closed = 1; +nodes = ( +(445,-10,o), +(543,117,o), +(543,360,cs), +(543,604,o), +(444,729,o), +(301,729,cs), +(154,729,o), +(57,603,o), +(57,360,cs), +(57,115,o), +(157,-10,o), +(302,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,24,o), +(96,149,o), +(96,360,cs), +(96,572,o), +(168,695,o), +(301,695,cs), +(432,695,o), +(505,571,o), +(505,360,cs), +(505,149,o), +(432,24,o), +(301,24,cs) +); +} +); +}; +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (35,0); +ref = _zero.tf.slash.ss08; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +} +); +}; +width = 600; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (300,368); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(472,304,l), +(472,420,l), +(129,420,l), +(129,304,l) +); +}, +{ +closed = 1; +nodes = ( +(471,-6,o), +(586,126,o), +(586,362,cs), +(586,583,o), +(484,730,o), +(303,730,cs), +(130,730,o), +(14,598,o), +(14,364,cs), +(14,142,o), +(117,-6,o), +(299,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,154,o), +(204,181,o), +(204,363,cs), +(204,544,o), +(248,571,o), +(300,571,cs), +(352,571,o), +(396,544,o), +(396,363,cs), +(396,181,o), +(352,154,o), +(300,154,cs) +); +} +); +}; +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (93,0); +ref = _zero.tf.slash.ss08; +} +); +width = 578; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (360.5,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(621,343,l), +(621,376,l), +(102,376,l), +(102,343,l) +); +}, +{ +closed = 1; +nodes = ( +(531,-10,o), +(647,117,o), +(647,360,cs), +(647,604,o), +(529,729,o), +(362,729,cs), +(189,729,o), +(74,603,o), +(74,360,cs), +(74,115,o), +(194,-10,o), +(364,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,24,o), +(114,149,o), +(114,360,cs), +(114,572,o), +(203,695,o), +(362,695,cs), +(522,695,o), +(609,570,o), +(609,360,cs), +(609,149,o), +(519,24,o), +(363,24,cs) +); +} +); +}; +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (62,0); +ref = _zero.tf.slash.ss08; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (360,369); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(527,302,l), +(527,418,l), +(194,418,l), +(194,302,l) +); +}, +{ +closed = 1; +nodes = ( +(562,-9,o), +(697,112,o), +(697,360,cs), +(697,581,o), +(588,729,o), +(361,729,cs), +(158,729,o), +(23,609,o), +(23,361,cs), +(23,139,o), +(133,-9,o), +(360,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,169,o), +(247,218,o), +(247,360,cs), +(247,484,o), +(281,551,o), +(360,551,cs), +(427,551,o), +(473,502,o), +(473,360,cs), +(473,237,o), +(439,169,o), +(360,169,cs) +); +} +); +}; +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +ref = _zero.tf.base; +}, +{ +alignment = -1; +pos = (154,0); +ref = _zero.tf.slash.ss08; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (300,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(526,343,l), +(526,376,l), +(75,376,l), +(75,343,l) +); +}, +{ +closed = 1; +nodes = ( +(445,-10,o), +(543,117,o), +(543,360,cs), +(543,604,o), +(444,729,o), +(301,729,cs), +(154,729,o), +(57,603,o), +(57,360,cs), +(57,115,o), +(157,-10,o), +(302,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,24,o), +(96,149,o), +(96,360,cs), +(96,572,o), +(168,695,o), +(301,695,cs), +(432,695,o), +(505,571,o), +(505,360,cs), +(505,149,o), +(432,24,o), +(301,24,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (35,0); +ref = _zero.tf.slash.ss08; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +} +); +}; +width = 582; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (300,368); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(472,304,l), +(472,420,l), +(129,420,l), +(129,304,l) +); +}, +{ +closed = 1; +nodes = ( +(471,-6,o), +(586,126,o), +(586,362,cs), +(586,583,o), +(484,730,o), +(303,730,cs), +(130,730,o), +(14,598,o), +(14,364,cs), +(14,142,o), +(117,-6,o), +(299,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,154,o), +(204,181,o), +(204,363,cs), +(204,544,o), +(248,571,o), +(300,571,cs), +(352,571,o), +(396,544,o), +(396,363,cs), +(396,181,o), +(352,154,o), +(300,154,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (88,0); +ref = _zero.tf.slash.ss08; +} +); +width = 574; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (260.67,369); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(391,346,l), +(397,375,l), +(131,375,l), +(125,346,l) +); +}, +{ +closed = 1; +nodes = ( +(305,-9,o), +(370,133,o), +(416,347,cs), +(456,539,o), +(468,729,o), +(326,729,cs), +(216,729,o), +(151,589,o), +(106,375,cs), +(64,177,o), +(55,-9,o), +(195,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(78,29,o), +(103,208,o), +(136,369,cs), +(191,635,o), +(252,700,o), +(322,700,cs), +(442,700,o), +(422,527,o), +(385,351,cs), +(328,76,o), +(264,14,o), +(189,20,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (67,0); +ref = _zero.tf.slash.ss08; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (257.812,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(316,302,l), +(339,418,l), +(209,418,l), +(185,302,l) +); +}, +{ +closed = 1; +nodes = ( +(330,-10,o), +(428,78,o), +(483,342,cs), +(529,563,o), +(506,729,o), +(310,729,cs), +(179,729,o), +(85,628,o), +(34,381,cs), +(-14,159,o), +(8,-10,o), +(207,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,140,o), +(181,228,o), +(210,365,cs), +(243,525,o), +(263,579,o), +(300,579,cs), +(352,579,o), +(335,492,o), +(307,357,cs), +(274,197,o), +(254,140,o), +(217,140,cs) +); +} +); +}; +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (138,0); +ref = _zero.tf.slash.ss08; +} +); +width = 480; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (321.502,369.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(526,343,l), +(531,376,l), +(117,376,l), +(112,343,l) +); +}, +{ +closed = 1; +nodes = ( +(439,-10,o), +(559,178,o), +(569,477,cs), +(575,639,o), +(500,729,o), +(383,729,cs), +(204,729,o), +(85,540,o), +(74,242,cs), +(68,80,o), +(144,-10,o), +(260,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,24,o), +(107,111,o), +(112,243,cs), +(121,517,o), +(226,695,o), +(377,695,cs), +(487,695,o), +(536,607,o), +(532,475,cs), +(522,202,o), +(418,24,o), +(265,24,cs) +); +} +); +}; +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (53,0); +ref = _zero.tf.slash.ss08; +} +); +width = 600; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (318.503,368); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(412,304,l), +(432,420,l), +(216,420,l), +(197,304,l) +); +}, +{ +closed = 1; +nodes = ( +(459,-6,o), +(596,176,o), +(606,450,cs), +(612,619,o), +(530,730,o), +(377,730,cs), +(178,730,o), +(41,549,o), +(31,276,cs), +(25,106,o), +(109,-6,o), +(262,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,160,o), +(212,193,o), +(215,275,cs), +(220,440,o), +(280,564,o), +(356,564,cs), +(398,564,o), +(424,531,o), +(422,452,cs), +(416,287,o), +(356,160,o), +(283,160,cs) +); +} +); +}; +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (145,0); +ref = _zero.tf.slash.ss08; +} +); +width = 600; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (381,369); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(646,344,l), +(650,377,l), +(117,377,l), +(113,344,l) +); +}, +{ +closed = 1; +nodes = ( +(531,-9,o), +(673,153,o), +(682,428,cs), +(688,608,o), +(600,729,o), +(435,729,cs), +(230,729,o), +(90,567,o), +(80,292,cs), +(74,112,o), +(162,-9,o), +(327,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,25,o), +(119,121,o), +(117,269,cs), +(117,497,o), +(220,695,o), +(431,695,cs), +(577,695,o), +(646,591,o), +(646,427,cs), +(637,187,o), +(521,25,o), +(332,25,cs) +); +} +); +}; +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (52,0); +ref = _zero.tf.slash.ss08; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (378.657,365.5); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(506,302,l), +(522,418,l), +(251,418,l), +(235,302,l) +); +}, +{ +closed = 1; +nodes = ( +(560,-5,o), +(708,156,o), +(717,402,cs), +(724,596,o), +(614,726,o), +(413,726,cs), +(192,726,o), +(40,557,o), +(40,302,cs), +(40,117,o), +(148,-5,o), +(344,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(295,176,o), +(256,213,o), +(256,313,cs), +(256,467,o), +(321,550,o), +(405,547,cs), +(463,545,o), +(502,508,o), +(502,408,cs), +(502,254,o), +(437,171,o), +(353,174,cs) +); +} +); +}; +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +pos = (181,0); +ref = _zero.tf.slash.ss08; +} +); +width = 720; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zeroinferior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zeroinferior.glyph new file mode 100644 index 00000000..738c98d5 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zeroinferior.glyph @@ -0,0 +1,1133 @@ +{ +glyphname = zeroinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (154,177); +} +); +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(237,-46,o), +(293,7,o), +(293,176,cs), +(293,345,o), +(237,397,o), +(154,397,cs), +(71,397,o), +(15,344,o), +(15,176,cs), +(15,7,o), +(71,-46,o), +(154,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,45,o), +(125,78,o), +(125,176,cs), +(125,273,o), +(130,306,o), +(154,306,cs), +(178,306,o), +(183,274,o), +(183,176,cs), +(183,78,o), +(178,45,o), +(154,45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 308; +}, +{ +anchors = ( +{ +name = _center; +pos = (147,177); +} +); +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(220,-46,o), +(247,39,o), +(247,176,cs), +(247,313,o), +(220,398,o), +(146,398,cs), +(73,398,o), +(46,313,o), +(46,176,cs), +(46,39,o), +(73,-46,o), +(146,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(103,-20,o), +(76,21,o), +(76,176,cs), +(76,331,o), +(103,372,o), +(146,372,cs), +(190,372,o), +(217,331,o), +(217,176,cs), +(217,21,o), +(190,-20,o), +(146,-20,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 293; +}, +{ +anchors = ( +{ +name = _center; +pos = (241,173); +} +); +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(360,-46,o), +(442,31,o), +(442,176,cs), +(442,321,o), +(359,397,o), +(241,397,cs), +(120,397,o), +(39,321,o), +(39,176,cs), +(39,30,o), +(122,-46,o), +(241,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(134,-14,o), +(76,55,o), +(76,176,cs), +(76,298,o), +(136,366,o), +(241,366,cs), +(346,366,o), +(404,297,o), +(404,176,cs), +(404,55,o), +(344,-14,o), +(241,-14,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 481; +}, +{ +anchors = ( +{ +name = _center; +pos = (250,171); +} +); +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +partSelection = { +}; +shapes = ( +{ +closed = 1; +nodes = ( +(392,-45,o), +(486,35,o), +(486,176,cs), +(486,315,o), +(394,397,o), +(250,397,cs), +(109,397,o), +(14,317,o), +(14,177,cs), +(14,37,o), +(107,-45,o), +(250,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,74,o), +(164,97,o), +(164,176,cs), +(164,255,o), +(200,278,o), +(250,278,cs), +(300,278,o), +(336,255,o), +(336,176,cs), +(336,97,o), +(300,74,o), +(250,74,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 500; +}, +{ +anchors = ( +{ +name = _center; +pos = (127,177); +} +); +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,-46,o), +(227,39,o), +(227,176,cs), +(227,313,o), +(200,398,o), +(126,398,cs), +(53,398,o), +(26,313,o), +(26,176,cs), +(26,39,o), +(53,-46,o), +(126,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(83,-20,o), +(56,21,o), +(56,176,cs), +(56,331,o), +(83,372,o), +(126,372,cs), +(170,372,o), +(197,331,o), +(197,176,cs), +(197,21,o), +(170,-20,o), +(126,-20,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 253; +}, +{ +anchors = ( +{ +name = _center; +pos = (145,177); +} +); +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,-46,o), +(284,7,o), +(284,176,cs), +(284,345,o), +(228,397,o), +(145,397,cs), +(62,397,o), +(6,344,o), +(6,176,cs), +(6,7,o), +(62,-46,o), +(145,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,45,o), +(116,78,o), +(116,176,cs), +(116,273,o), +(121,306,o), +(145,306,cs), +(169,306,o), +(174,274,o), +(174,176,cs), +(174,78,o), +(169,45,o), +(145,45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 290; +}, +{ +anchors = ( +{ +name = _center; +pos = (192,174); +} +); +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,-45,o), +(341,25,o), +(341,176,cs), +(341,324,o), +(283,397,o), +(192,397,cs), +(103,397,o), +(43,326,o), +(43,176,cs), +(43,28,o), +(101,-45,o), +(192,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,-15,o), +(79,57,o), +(79,176,cs), +(79,295,o), +(112,367,o), +(192,367,cs), +(272,367,o), +(305,295,o), +(305,176,cs), +(305,57,o), +(272,-15,o), +(192,-15,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 384; +}, +{ +anchors = ( +{ +name = _center; +pos = (182,174); +} +); +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,-46,o), +(352,25,o), +(352,175,cs), +(352,306,o), +(299,397,o), +(181,397,cs), +(79,397,o), +(11,326,o), +(11,175,cs), +(11,45,o), +(64,-46,o), +(181,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(163,60,o), +(139,68,o), +(139,175,cs), +(139,283,o), +(163,291,o), +(181,291,cs), +(200,291,o), +(224,283,o), +(224,175,cs), +(224,69,o), +(200,60,o), +(181,60,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 363; +}, +{ +anchors = ( +{ +name = _center; +pos = (231,173); +} +); +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,-46,o), +(432,31,o), +(432,176,cs), +(432,321,o), +(349,397,o), +(231,397,cs), +(110,397,o), +(29,321,o), +(29,176,cs), +(29,30,o), +(112,-46,o), +(231,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,-14,o), +(66,55,o), +(66,176,cs), +(66,298,o), +(126,366,o), +(231,366,cs), +(336,366,o), +(394,297,o), +(394,176,cs), +(394,55,o), +(334,-14,o), +(231,-14,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 461; +}, +{ +anchors = ( +{ +name = _center; +pos = (240,171); +} +); +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +closed = 1; +nodes = ( +(382,-45,o), +(476,35,o), +(476,176,cs), +(476,315,o), +(384,397,o), +(240,397,cs), +(99,397,o), +(4,317,o), +(4,177,cs), +(4,37,o), +(97,-45,o), +(240,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,74,o), +(154,97,o), +(154,176,cs), +(154,255,o), +(190,278,o), +(240,278,cs), +(290,278,o), +(326,255,o), +(326,176,cs), +(326,97,o), +(290,74,o), +(240,74,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 480; +}, +{ +anchors = ( +{ +name = _center; +pos = (211,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(298,-45,o), +(356,25,o), +(356,176,cs), +(356,324,o), +(300,397,o), +(211,397,cs), +(124,397,o), +(64,326,o), +(64,176,cs), +(64,28,o), +(122,-45,o), +(211,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,-15,o), +(100,57,o), +(100,176,cs), +(100,295,o), +(133,367,o), +(211,367,cs), +(289,367,o), +(322,295,o), +(322,176,cs), +(322,57,o), +(289,-15,o), +(211,-15,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 421; +}, +{ +anchors = ( +{ +name = _center; +pos = (195,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-46,o), +(358,25,o), +(358,175,cs), +(358,306,o), +(308,397,o), +(194,397,cs), +(96,397,o), +(31,326,o), +(31,175,cs), +(31,45,o), +(81,-46,o), +(194,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,60,o), +(157,67,o), +(157,175,cs), +(157,284,o), +(180,291,o), +(194,291,cs), +(209,291,o), +(232,284,o), +(232,175,cs), +(232,68,o), +(209,60,o), +(194,60,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 388; +}, +{ +anchors = ( +{ +name = _center; +pos = (129,177); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(99,397,o), +(58,316,o), +(30,183,cs), +(6,67,o), +(0,-45,o), +(90,-45,cs), +(153,-45,o), +(196,24,o), +(226,167,cs), +(259,322,o), +(240,397,o), +(167,397,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,367,o), +(214,253,o), +(198,173,cs), +(166,19,o), +(133,-19,o), +(93,-19,cs), +(25,-19,o), +(38,79,o), +(59,181,cs), +(93,344,o), +(127,374,o), +(173,371,cs) +); +} +); +}; +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-45,o), +(196,24,o), +(227,169,cs), +(251,285,o), +(257,397,o), +(167,397,cs), +(104,397,o), +(61,328,o), +(31,185,cs), +(6,67,o), +(0,-45,o), +(90,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(25,-19,o), +(38,79,o), +(59,181,cs), +(91,333,o), +(124,371,o), +(164,371,cs), +(232,371,o), +(219,273,o), +(198,173,cs), +(166,19,o), +(133,-19,o), +(93,-19,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 291; +}, +{ +anchors = ( +{ +name = _center; +pos = (133,177); +} +); +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,-46,o), +(236,6,o), +(269,163,cs), +(297,298,o), +(283,397,o), +(164,397,cs), +(87,397,o), +(29,339,o), +(-2,189,cs), +(-30,55,o), +(-17,-46,o), +(103,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(80,46,o), +(88,91,o), +(106,180,cs), +(126,277,o), +(137,306,o), +(158,306,cs), +(187,306,o), +(179,258,o), +(162,175,cs), +(142,80,o), +(131,46,o), +(109,46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 306; +}, +{ +anchors = ( +{ +name = _center; +pos = (191,177); +} +); +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,-46,o), +(308,22,o), +(334,167,cs), +(358,300,o), +(326,397,o), +(222,397,cs), +(141,397,o), +(74,331,o), +(48,186,cs), +(24,50,o), +(55,-46,o), +(159,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(80,-16,o), +(64,64,o), +(81,171,cs), +(102,304,o), +(153,367,o), +(221,367,cs), +(304,367,o), +(317,285,o), +(300,177,cs), +(282,60,o), +(234,-16,o), +(160,-16,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 416; +}, +{ +anchors = ( +{ +name = _center; +pos = (184,177); +} +); +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,-46,o), +(324,21,o), +(350,142,cs), +(384,300,o), +(334,397,o), +(214,397,cs), +(120,397,o), +(46,336,o), +(18,208,cs), +(-15,55,o), +(36,-46,o), +(154,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(127,61,o), +(126,107,o), +(142,187,cs), +(160,275,o), +(179,291,o), +(205,291,cs), +(241,291,o), +(243,243,o), +(227,167,cs), +(209,77,o), +(189,61,o), +(164,61,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 408; +}, +{ +anchors = ( +{ +name = _center; +pos = (226,177); +} +); +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,-46,o), +(401,27,o), +(424,140,cs), +(441,218,o), +(437,397,o), +(249,397,cs), +(134,397,o), +(51,325,o), +(28,212,cs), +(14,136,o), +(9,-46,o), +(203,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(48,-14,o), +(52,143,o), +(65,207,cs), +(85,303,o), +(153,365,o), +(245,365,cs), +(404,365,o), +(400,211,o), +(387,145,cs), +(367,48,o), +(299,-14,o), +(207,-14,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 487; +}, +{ +anchors = ( +{ +name = _center; +pos = (232,177); +} +); +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-44,o), +(439,24,o), +(464,144,cs), +(482,243,o), +(458,396,o), +(252,396,cs), +(122,396,o), +(25,330,o), +(0,211,cs), +(-20,115,o), +(1,-44,o), +(211,-44,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,77,o), +(140,160,o), +(146,195,cs), +(156,243,o), +(188,276,o), +(244,276,cs), +(329,276,o), +(325,189,o), +(317,159,cs), +(307,110,o), +(275,77,o), +(221,77,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 504; +} +); +metricRight = "=|"; +unicode = 8320; +userData = { +KernOnName = zeroinferior; +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = zero; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/glyphs/zerosuperior.glyph b/sources/MonaSansDisplay.glyphspackage/glyphs/zerosuperior.glyph new file mode 100644 index 00000000..49643e6f --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/glyphs/zerosuperior.glyph @@ -0,0 +1,451 @@ +{ +color = 6; +glyphname = zerosuperior; +layers = ( +{ +layerId = "E787E54A-EE3E-475A-BF02-8501A6DA5144"; +shapes = ( +{ +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 308; +}, +{ +layerId = "5713303B-ED49-44A7-8230-B5CAE56DEB7E"; +shapes = ( +{ +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 293; +}, +{ +layerId = "28A8A76A-23B4-40F5-83B9-DC51E48BF161"; +shapes = ( +{ +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 481; +}, +{ +layerId = "D2144554-01B8-4B9B-B16A-E0E5B5794DFC"; +shapes = ( +{ +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 500; +}, +{ +layerId = "71D8B5AD-B400-4239-9672-E7BA455EF2D0"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 293; +}, +{ +layerId = "FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1"; +shapes = ( +{ +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 290; +}, +{ +layerId = "5A048DDA-4734-4F8A-A53C-0BED34B57D1C"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zeroinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zeroinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 424; +}, +{ +layerId = "DED42A87-C949-4722-A202-2B551272A3FB"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zeroinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zeroinferior; +}; +width = 385; +}, +{ +layerId = "106FCE83-F343-403B-A314-646E4D059B3F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 481; +}, +{ +layerId = "2D1A1AFE-39FB-4EBD-856C-88C6B057247F"; +shapes = ( +{ +alignment = -1; +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 500; +}, +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zeroinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zeroinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 421; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zeroinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zeroinferior; +}; +width = 388; +}, +{ +layerId = "23BA42C1-D468-4A44-9BE5-E18AE60B7926"; +shapes = ( +{ +pos = (78,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -30; +width = 60; +}; +}; +width = 291; +}, +{ +layerId = "2D4E69BA-A319-45D0-84B7-5297BCF4B7A0"; +shapes = ( +{ +pos = (78,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -350; +width = 60; +}; +}; +width = 306; +}, +{ +layerId = "095FE76F-1953-440B-9108-AA0678D151F9"; +shapes = ( +{ +pos = (78,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 416; +}, +{ +layerId = "63AAE8D6-1DFF-4DD4-BD9A-49272FE52904"; +shapes = ( +{ +pos = (78,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 408; +}, +{ +layerId = "C17B1F32-8075-45B4-AA59-7DAFF0D7E404"; +shapes = ( +{ +pos = (78,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +}; +width = 487; +}, +{ +layerId = "377EF8AC-8B0D-46C2-96BB-3B5B69A8F571"; +shapes = ( +{ +pos = (78,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 504; +} +); +unicode = 8304; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = zero; +}; +}; +} diff --git a/sources/MonaSansDisplay.glyphspackage/order.plist b/sources/MonaSansDisplay.glyphspackage/order.plist new file mode 100644 index 00000000..74ccad98 --- /dev/null +++ b/sources/MonaSansDisplay.glyphspackage/order.plist @@ -0,0 +1,781 @@ +( +A, +Aacute, +Abreve, +Abreveacute, +Abrevedotbelow, +Abrevegrave, +Abrevehookabove, +Abrevetilde, +Acircumflex, +Acircumflexacute, +Acircumflexdotbelow, +Acircumflexgrave, +Acircumflexhookabove, +Acircumflextilde, +Adieresis, +Adotbelow, +Agrave, +Ahookabove, +Amacron, +Aogonek, +Aring, +Atilde, +AE, +B, +C, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent, +D, +Dcaron, +Dcroat, +Eth, +E, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Ecircumflexacute, +Ecircumflexdotbelow, +Ecircumflexgrave, +Ecircumflexhookabove, +Ecircumflextilde, +Edieresis, +Edotaccent, +Edotbelow, +Egrave, +Ehookabove, +Emacron, +Eogonek, +Etilde, +F, +G, +Gbreve, +Gcaron, +Gcircumflex, +Gcommaaccent, +Gdotaccent, +H, +Hbar, +Hcircumflex, +I, +IJ, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Idotbelow, +Igrave, +Ihookabove, +Imacron, +Iogonek, +Itilde, +J, +Jacute, +Jcircumflex, +K, +Kcommaaccent, +L, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash, +M, +N, +Nacute, +Ncaron, +Ncommaaccent, +Ntilde, +Eng, +O, +Oacute, +Ocircumflex, +Ocircumflexacute, +Ocircumflexdotbelow, +Ocircumflexgrave, +Ocircumflexhookabove, +Ocircumflextilde, +Odieresis, +Odotbelow, +Ograve, +Ohookabove, +Ohorn, +Ohornacute, +Ohorndotbelow, +Ohorngrave, +Ohornhookabove, +Ohorntilde, +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, +Udotbelow, +Ugrave, +Uhookabove, +Uhorn, +Uhornacute, +Uhorndotbelow, +Uhorngrave, +Uhornhookabove, +Uhorntilde, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde, +V, +W, +Wacute, +Wcircumflex, +Wdieresis, +Wgrave, +X, +Y, +Yacute, +Ycircumflex, +Ydieresis, +Ydotbelow, +Ygrave, +Yhookabove, +Ytilde, +Z, +Zacute, +Zcaron, +Zdotaccent, +Abrevedotbelow.ss01, +Acircumflexdotbelow.ss01, +Adieresis.ss01, +Adotbelow.ss01, +Cdotaccent.ss01, +Ecircumflexdotbelow.ss01, +Edieresis.ss01, +Edotaccent.ss01, +Edotbelow.ss01, +Gdotaccent.ss01, +Idieresis.ss01, +Idotaccent.ss01, +Idotbelow.ss01, +Ldot.ss01, +Ocircumflexdotbelow.ss01, +Odieresis.ss01, +Odotbelow.ss01, +Ohorndotbelow.ss01, +Udieresis.ss01, +Udotbelow.ss01, +Uhorndotbelow.ss01, +Wdieresis.ss01, +Ydieresis.ss01, +Ydotbelow.ss01, +Zdotaccent.ss01, +I.ss02, +IJ.ss02, +Iacute.ss02, +Ibreve.ss02, +Icircumflex.ss02, +Idieresis.ss02, +Idotaccent.ss02, +Idotbelow.ss02, +Igrave.ss02, +Ihookabove.ss02, +Imacron.ss02, +Iogonek.ss02, +Itilde.ss02, +G.ss07, +Gbreve.ss07, +Gcaron.ss07, +Gcircumflex.ss07, +Gcommaaccent.ss07, +Gdotaccent.ss07, +Q.ss09, +J.ss10, +Gdotaccent.ss01.ss07, +a, +aacute, +abreve, +abreveacute, +abrevedotbelow, +abrevegrave, +abrevehookabove, +abrevetilde, +acircumflex, +acircumflexacute, +acircumflexdotbelow, +acircumflexgrave, +acircumflexhookabove, +acircumflextilde, +adieresis, +adotbelow, +agrave, +ahookabove, +amacron, +aogonek, +aring, +atilde, +ae, +b, +c, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent, +d, +dcaron, +dcroat, +eth, +e, +eacute, +ebreve, +ecaron, +ecircumflex, +ecircumflexacute, +ecircumflexdotbelow, +ecircumflexgrave, +ecircumflexhookabove, +ecircumflextilde, +edieresis, +edotaccent, +edotbelow, +egrave, +ehookabove, +emacron, +eogonek, +etilde, +f, +g, +gbreve, +gcaron, +gcircumflex, +gcommaaccent, +gdotaccent, +h, +hbar, +hcircumflex, +i, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +idotaccent, +idotbelow, +igrave, +ihookabove, +imacron, +iogonek, +itilde, +ij, +j, +jdotless, +jacute, +jcircumflex, +k, +kcommaaccent, +l, +lacute, +lcaron, +lcommaaccent, +ldot, +lslash, +m, +n, +nacute, +ncaron, +ncommaaccent, +ntilde, +eng, +o, +oacute, +ocircumflex, +ocircumflexacute, +ocircumflexdotbelow, +ocircumflexgrave, +ocircumflexhookabove, +ocircumflextilde, +odieresis, +odotbelow, +ograve, +ohookabove, +ohorn, +ohornacute, +ohorndotbelow, +ohorngrave, +ohornhookabove, +ohorntilde, +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, +udotbelow, +ugrave, +uhookabove, +uhorn, +uhornacute, +uhorndotbelow, +uhorngrave, +uhornhookabove, +uhorntilde, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde, +v, +w, +wacute, +wcircumflex, +wdieresis, +wgrave, +x, +y, +yacute, +ycircumflex, +ydieresis, +ydotbelow, +ygrave, +yhookabove, +ytilde, +z, +zacute, +zcaron, +zdotaccent, +idotbelow.dotless, +iogonek.dotless, +f.longarm, +abrevedotbelow.ss01, +acircumflexdotbelow.ss01, +adotbelow.ss01, +cdotaccent.ss01, +ecircumflexdotbelow.ss01, +edieresis.ss01, +edotaccent.ss01, +edotbelow.ss01, +gdotaccent.ss01, +i.ss01, +idieresis.ss01, +idotaccent.ss01, +idotbelow.ss01, +j.ss01, +ldot.ss01, +ocircumflexdotbelow.ss01, +odieresis.ss01, +odotbelow.ss01, +ohorndotbelow.ss01, +udieresis.ss01, +udotbelow.ss01, +uhorndotbelow.ss01, +wdieresis.ss01, +ydieresis.ss01, +ydotbelow.ss01, +zdotaccent.ss01, +l.ss03, +lacute.ss03, +lcaron.ss03, +lcommaaccent.ss03, +ldot.ss03, +lslash.ss03, +l.ss04, +lacute.ss04, +lcaron.ss04, +lcommaaccent.ss04, +ldot.ss04, +lslash.ss04, +a.ss05, +aacute.ss05, +abreve.ss05, +abreveacute.ss05, +abrevedotbelow.ss05, +abrevegrave.ss05, +abrevehookabove.ss05, +abrevetilde.ss05, +acircumflex.ss05, +acircumflexacute.ss05, +acircumflexdotbelow.ss05, +acircumflexgrave.ss05, +acircumflexhookabove.ss05, +acircumflextilde.ss05, +adieresis.ss05, +adotbelow.ss05, +agrave.ss05, +ahookabove.ss05, +amacron.ss05, +aogonek.ss05, +aring.ss05, +atilde.ss05, +g.ss06, +gbreve.ss06, +gcaron.ss06, +gcircumflex.ss06, +gcommaaccent.ss06, +gdotaccent.ss06, +idotbelow.dotless.ss01, +adieresis.ss05.ss01, +adotbelow.ss05.ss01, +ldot.ss01.ss03, +ldot.ss01.ss04, +gdotaccent.ss01.ss06, +f_f.liga, +f_f_i.liga, +f_y.liga, +fi, +fl, +t_i.liga, +t_t.liga, +fi.ss01, +f_f_i.liga.ss01, +t_i.liga.ss01, +ordfeminine, +ordmasculine, +mu, +pi, +zero, +one, +two, +three, +four, +five, +six, +seven, +eight, +nine, +zero.blackCircled, +one.blackCircled, +two.blackCircled, +three.blackCircled, +four.blackCircled, +five.blackCircled, +six.blackCircled, +seven.blackCircled, +eight.blackCircled, +nine.blackCircled, +zero.circled, +one.circled, +two.circled, +three.circled, +four.circled, +five.circled, +six.circled, +seven.circled, +eight.circled, +nine.circled, +zero.tf, +one.tf, +two.tf, +three.tf, +four.tf, +five.tf, +six.tf, +seven.tf, +eight.tf, +nine.tf, +zero.tf.ss08, +_zero.tf.base, +zero.dnom, +one.dnom, +two.dnom, +three.dnom, +four.dnom, +five.dnom, +six.dnom, +seven.dnom, +eight.dnom, +nine.dnom, +zero.numr, +one.numr, +two.numr, +three.numr, +four.numr, +five.numr, +six.numr, +seven.numr, +eight.numr, +nine.numr, +fraction, +onehalf, +onequarter, +threequarters, +oneeighth, +threeeighths, +fiveeighths, +seveneighths, +zeroinferior, +oneinferior, +twoinferior, +threeinferior, +fourinferior, +fiveinferior, +sixinferior, +seveninferior, +eightinferior, +nineinferior, +zerosuperior, +onesuperior, +twosuperior, +threesuperior, +foursuperior, +fivesuperior, +sixsuperior, +sevensuperior, +eightsuperior, +ninesuperior, +space, +nbspace, +.notdef, +period, +comma, +colon, +semicolon, +ellipsis, +exclam, +exclamdown, +question, +questiondown, +periodcentered, +bullet, +asterisk, +numbersign, +slash, +backslash, +exclamdown.case, +questiondown.case, +periodcentered.loclCAT, +period.ss01, +comma.ss01, +colon.ss01, +semicolon.ss01, +ellipsis.ss01, +exclam.ss01, +exclamdown.ss01, +question.ss01, +questiondown.ss01, +periodcentered.ss01, +bullet.ss01, +periodcentered.loclCAT.case, +exclamdown.ss01.case, +questiondown.ss01.case, +periodcentered.loclCAT.ss01, +periodcentered.loclCAT.case.ss01, +hyphen, +endash, +emdash, +underscore, +hyphen.case, +endash.case, +emdash.case, +parenleft, +parenright, +braceleft, +braceright, +bracketleft, +bracketright, +parenleft.case, +parenright.case, +braceleft.case, +braceright.case, +bracketleft.case, +bracketright.case, +quotesinglbase, +quotedblbase, +quotedblleft, +quotedblright, +quoteleft, +quoteright, +guillemetleft, +guillemetright, +guilsinglleft, +guilsinglright, +quotedbl, +quotesingle, +quotesinglbase.ss01, +quotedblbase.ss01, +quotedblleft.ss01, +quotedblright.ss01, +quoteleft.ss01, +quoteright.ss01, +florin, +baht, +whiteFrowningFace, +whiteSmilingFace, +checkmark, +apple, +at, +ampersand, +paragraph, +section, +copyright, +registered, +published, +trademark, +degree, +bar, +brokenbar, +literSign, +estimated, +numero, +bitcoin, +cent, +currency, +dollar, +euro, +liraTurkish, +rupeeIndian, +sheqel, +sterling, +tenge, +won, +yen, +peseta, +plus, +minus, +multiply, +divide, +equal, +notequal, +greater, +less, +greaterequal, +lessequal, +plusminus, +approxequal, +logicalnot, +asciitilde, +asciicircum, +infinity, +emptyset, +integral, +product, +summation, +radical, +percent, +perthousand, +upArrow, +rightArrow, +downArrow, +leftArrow, +leftRightArrow, +blackCircle, +whiteCircle, +dottedCircle, +dieresiscomb, +dotaccentcomb, +gravecomb, +acutecomb, +hungarumlautcomb, +circumflexcomb, +caroncomb, +brevecomb, +ringcomb, +tildecomb, +macroncomb, +hookabovecomb, +commaturnedabovecomb, +horncomb, +dotbelowcomb, +commaaccentcomb, +cedillacomb, +ogonekcomb, +strokeshortcomb, +strokelongcomb, +slashshortcomb, +slashlongcomb, +brevecomb_acutecomb, +brevecomb_gravecomb, +brevecomb_hookabovecomb, +brevecomb_tildecomb, +circumflexcomb_acutecomb, +circumflexcomb_gravecomb, +circumflexcomb_hookabovecomb, +circumflexcomb_tildecomb, +strokeshortcomb.case, +slashshortcomb.case, +slashlongcomb.case, +dieresiscomb.ss01, +dotaccentcomb.ss01, +dotbelowcomb.ss01, +caroncomb.alt, +cedillacomb.T, +ogonekcomb.e, +strokeshortcomb.t, +strokeshortcomb.case.T, +dieresis, +dotaccent, +grave, +acute, +hungarumlaut, +circumflex, +caron, +breve, +ring, +tilde, +macron, +cedilla, +ogonek, +"_tail-diagonal.Q", +_B.currency, +_circle, +_Thorn.bowl, +_baht.bar, +_bitcoin.bars, +_copyright.C, +_f.longarm, +_published.P, +_slash.equal, +_tail.Q, +_zero.tf.slash, +_zero.tf.slash.ss08 +) \ No newline at end of file diff --git a/sources/MonaSansMono.glyphspackage/fontinfo.plist b/sources/MonaSansMono.glyphspackage/fontinfo.plist new file mode 100644 index 00000000..0a36173d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/fontinfo.plist @@ -0,0 +1,1809 @@ +{ +.appVersion = "3343"; +.formatVersion = 3; +axes = ( +{ +name = Weight; +tag = wght; +} +); +classes = ( +{ +automatic = 1; +code = "A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat Eth E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Etilde F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Itilde J Jacute Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Ntilde Eng O Oacute Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde 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 Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ytilde Z Zacute Zcaron Zdotaccent Abrevedotbelow.ss01 Acircumflexdotbelow.ss01 Adieresis.ss01 Adotbelow.ss01 Cdotaccent.ss01 Ecircumflexdotbelow.ss01 Edieresis.ss01 Edotaccent.ss01 Edotbelow.ss01 Gdotaccent.ss01 Idieresis.ss01 Idotaccent.ss01 Idotbelow.ss01 Ldot.ss01 Ocircumflexdotbelow.ss01 Odieresis.ss01 Odotbelow.ss01 Ohorndotbelow.ss01 Udieresis.ss01 Udotbelow.ss01 Uhorndotbelow.ss01 Wdieresis.ss01 Ydieresis.ss01 Ydotbelow.ss01 Zdotaccent.ss01 I.ss02 IJ.ss02 Iacute.ss02 Ibreve.ss02 Icircumflex.ss02 Idieresis.ss02 Idotaccent.ss02 Idotbelow.ss02 Igrave.ss02 Ihookabove.ss02 Imacron.ss02 Iogonek.ss02 Itilde.ss02 G.ss07 Gbreve.ss07 Gcaron.ss07 Gcircumflex.ss07 Gcommaaccent.ss07 Gdotaccent.ss07 Gdotaccent.ss01.ss07"; +name = Uppercase; +} +); +customParameters = ( +{ +name = "Use Typo Metrics"; +value = 1; +}, +{ +name = fsType; +value = ( +); +}, +{ +name = "Use Line Breaks"; +value = 1; +}, +{ +name = "Use Extension Kerning"; +value = 1; +}, +{ +name = "Write DisplayStrings"; +value = 0; +}, +{ +name = "Variable Font Origin"; +value = master01; +}, +{ +disabled = 1; +name = unicodeRanges; +value = ( +0 +); +} +); +date = "2025-07-16 23:40:59 +0000"; +familyName = "Mona Sans Mono"; +featurePrefixes = ( +{ +automatic = 1; +code = "languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn AZE; +languagesystem latn CRT; +languagesystem latn KAZ; +languagesystem latn TAT; +languagesystem latn TRK; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem latn NLD; +"; +name = Languagesystems; +} +); +features = ( +{ +automatic = 1; +code = "feature locl; +feature subs; +feature sinf; +feature sups; +feature numr; +feature dnom; +feature frac; +feature ordn; +feature pnum; +feature tnum; +feature case; +feature ss01; +feature ss02; +feature ss03; +feature ss04; +feature ss05; +feature ss06; +feature ss07; +feature ss08; +"; +tag = aalt; +}, +{ +automatic = 1; +code = "lookup ccmp_DFLT_1 { + @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb]; + lookupflag UseMarkFilteringSet @CombiningTopAccents; + sub i' @CombiningTopAccents by idotless; + sub iogonek' @CombiningTopAccents by iogonek.dotless; + sub idotbelow' @CombiningTopAccents by idotbelow.dotless; + sub j' @CombiningTopAccents by jdotless; +} ccmp_DFLT_1; + +lookup ccmp_DFLT_2 { + lookupflag 0; + sub brevecomb acutecomb by brevecomb_acutecomb; + sub brevecomb gravecomb by brevecomb_gravecomb; + sub brevecomb hookabovecomb by brevecomb_hookabovecomb; + sub brevecomb tildecomb by brevecomb_tildecomb; + sub circumflexcomb acutecomb by circumflexcomb_acutecomb; + sub circumflexcomb gravecomb by circumflexcomb_gravecomb; + sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb; + sub circumflexcomb tildecomb by circumflexcomb_tildecomb; +} ccmp_DFLT_2; + +lookup ccmp_Other_1 { + lookupflag 0; + @Markscomb = [strokeshortcomb slashshortcomb slashlongcomb]; + @MarkscombCase = [strokeshortcomb.case slashshortcomb.case slashlongcomb.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @Uppercase @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + lookupflag 0; + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; + +lookup ccmp_latn_1 { + lookupflag 0; + sub Ldot by L periodcentered.loclCAT.case; + sub ldot by l periodcentered.loclCAT; +} ccmp_latn_1; + +script latn; +lookup ccmp_latn_1; +"; +tag = ccmp; +}, +{ +automatic = 1; +code = "script latn; +language AZE; +lookup locl_latn_0 { + sub i by idotaccent; +} locl_latn_0; +language CRT; +lookup locl_latn_0; +language KAZ; +lookup locl_latn_0; +language TAT; +lookup locl_latn_0; +language TRK; +lookup locl_latn_0; + +script latn; +language ROM; +lookup locl_latn_1 { + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; +} locl_latn_1; +language MOL; +lookup locl_latn_1; + +script latn; +language CAT; +lookup locl_latn_2 { + sub l periodcentered' l by periodcentered.loclCAT; + sub L periodcentered' L by periodcentered.loclCAT.case; +} locl_latn_2; + +script latn; +language NLD; +lookup locl_latn_3 { + sub iacute j' by jacute; + sub Iacute J' by Jacute; +} locl_latn_3; +"; +tag = locl; +}, +{ +automatic = 1; +code = "sub zero by zeroinferior; +sub one by oneinferior; +sub two by twoinferior; +sub three by threeinferior; +sub four by fourinferior; +sub five by fiveinferior; +sub six by sixinferior; +sub seven by seveninferior; +sub eight by eightinferior; +sub nine by nineinferior; +"; +tag = subs; +}, +{ +automatic = 1; +code = "sub zero by zeroinferior; +sub one by oneinferior; +sub two by twoinferior; +sub three by threeinferior; +sub four by fourinferior; +sub five by fiveinferior; +sub six by sixinferior; +sub seven by seveninferior; +sub eight by eightinferior; +sub nine by nineinferior; +"; +tag = sinf; +}, +{ +automatic = 1; +code = "sub zero by zerosuperior; +sub one by onesuperior; +sub two by twosuperior; +sub three by threesuperior; +sub four by foursuperior; +sub five by fivesuperior; +sub six by sixsuperior; +sub seven by sevensuperior; +sub eight by eightsuperior; +sub nine by ninesuperior; +"; +tag = sups; +}, +{ +automatic = 1; +code = "sub zero by zero.numr; +sub one by one.numr; +sub two by two.numr; +sub three by three.numr; +sub four by four.numr; +sub five by five.numr; +sub six by six.numr; +sub seven by seven.numr; +sub eight by eight.numr; +sub nine by nine.numr; +"; +tag = numr; +}, +{ +automatic = 1; +code = "sub zero by zero.dnom; +sub one by one.dnom; +sub two by two.dnom; +sub three by three.dnom; +sub four by four.dnom; +sub five by five.dnom; +sub six by six.dnom; +sub seven by seven.dnom; +sub eight by eight.dnom; +sub nine by nine.dnom; +"; +tag = dnom; +}, +{ +automatic = 1; +code = "lookup FRAC { + sub slash by fraction; +} FRAC; +lookup UP { + sub [zero one two three four five six seven eight nine] by [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]; +} UP; +lookup DOWN { + sub fraction [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; + sub [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom] [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; +} DOWN; +"; +tag = frac; +}, +{ +automatic = 1; +code = "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; +"; +tag = ordn; +}, +{ +automatic = 1; +code = "sub zero.tf by zero; +sub one.tf by one; +sub two.tf by two; +sub three.tf by three; +sub four.tf by four; +sub five.tf by five; +sub six.tf by six; +sub seven.tf by seven; +sub eight.tf by eight; +sub nine.tf by nine; +"; +tag = pnum; +}, +{ +automatic = 1; +code = "sub zero by zero.tf; +sub one by one.tf; +sub two by two.tf; +sub three by three.tf; +sub four by four.tf; +sub five by five.tf; +sub six by six.tf; +sub seven by seven.tf; +sub eight by eight.tf; +sub nine by nine.tf; +"; +tag = tnum; +}, +{ +automatic = 1; +code = "sub exclamdown by exclamdown.case; +sub questiondown by questiondown.case; +sub periodcentered.loclCAT by periodcentered.loclCAT.case; +sub exclamdown.ss01 by exclamdown.ss01.case; +sub questiondown.ss01 by questiondown.ss01.case; +sub hyphen by hyphen.case; +sub endash by endash.case; +sub emdash by emdash.case; +sub parenleft by parenleft.case; +sub parenright by parenright.case; +sub braceleft by braceleft.case; +sub braceright by braceright.case; +sub bracketleft by bracketleft.case; +sub bracketright by bracketright.case; +sub strokeshortcomb by strokeshortcomb.case; +sub slashshortcomb by slashshortcomb.case; +sub slashlongcomb by slashlongcomb.case; +"; +tag = case; +}, +{ +automatic = 1; +code = ""; +tag = liga; +}, +{ +automatic = 1; +code = "sub Abrevedotbelow by Abrevedotbelow.ss01; +sub Acircumflexdotbelow by Acircumflexdotbelow.ss01; +sub Adieresis by Adieresis.ss01; +sub Adotbelow by Adotbelow.ss01; +sub Cdotaccent by Cdotaccent.ss01; +sub Ecircumflexdotbelow by Ecircumflexdotbelow.ss01; +sub Edieresis by Edieresis.ss01; +sub Edotaccent by Edotaccent.ss01; +sub Edotbelow by Edotbelow.ss01; +sub Gdotaccent by Gdotaccent.ss01; +sub Idieresis by Idieresis.ss01; +sub Idotaccent by Idotaccent.ss01; +sub Idotbelow by Idotbelow.ss01; +sub Ldot by Ldot.ss01; +sub Ocircumflexdotbelow by Ocircumflexdotbelow.ss01; +sub Odieresis by Odieresis.ss01; +sub Odotbelow by Odotbelow.ss01; +sub Ohorndotbelow by Ohorndotbelow.ss01; +sub Udieresis by Udieresis.ss01; +sub Udotbelow by Udotbelow.ss01; +sub Uhorndotbelow by Uhorndotbelow.ss01; +sub Wdieresis by Wdieresis.ss01; +sub Ydieresis by Ydieresis.ss01; +sub Ydotbelow by Ydotbelow.ss01; +sub Zdotaccent by Zdotaccent.ss01; +sub abrevedotbelow by abrevedotbelow.ss01; +sub acircumflexdotbelow by acircumflexdotbelow.ss01; +sub adotbelow by adotbelow.ss01; +sub cdotaccent by cdotaccent.ss01; +sub ecircumflexdotbelow by ecircumflexdotbelow.ss01; +sub edieresis by edieresis.ss01; +sub edotaccent by edotaccent.ss01; +sub edotbelow by edotbelow.ss01; +sub gdotaccent by gdotaccent.ss01; +sub i by i.ss01; +sub idieresis by idieresis.ss01; +sub idotaccent by idotaccent.ss01; +sub idotbelow by idotbelow.ss01; +sub j by j.ss01; +sub ldot by ldot.ss01; +sub ocircumflexdotbelow by ocircumflexdotbelow.ss01; +sub odieresis by odieresis.ss01; +sub odotbelow by odotbelow.ss01; +sub ohorndotbelow by ohorndotbelow.ss01; +sub udieresis by udieresis.ss01; +sub udotbelow by udotbelow.ss01; +sub uhorndotbelow by uhorndotbelow.ss01; +sub wdieresis by wdieresis.ss01; +sub ydieresis by ydieresis.ss01; +sub ydotbelow by ydotbelow.ss01; +sub zdotaccent by zdotaccent.ss01; +sub idotbelow.dotless by idotbelow.dotless.ss01; +sub adieresis.ss05 by adieresis.ss05.ss01; +sub adotbelow.ss05 by adotbelow.ss05.ss01; +sub period by period.ss01; +sub comma by comma.ss01; +sub colon by colon.ss01; +sub semicolon by semicolon.ss01; +sub ellipsis by ellipsis.ss01; +sub exclam by exclam.ss01; +sub exclamdown by exclamdown.ss01; +sub question by question.ss01; +sub questiondown by questiondown.ss01; +sub periodcentered by periodcentered.ss01; +sub bullet by bullet.ss01; +sub periodcentered.loclCAT by periodcentered.loclCAT.ss01; +sub periodcentered.loclCAT.case by periodcentered.loclCAT.case.ss01; +sub quotesinglbase by quotesinglbase.ss01; +sub quotedblbase by quotedblbase.ss01; +sub quotedblleft by quotedblleft.ss01; +sub quotedblright by quotedblright.ss01; +sub quoteleft by quoteleft.ss01; +sub quoteright by quoteright.ss01; +sub dieresiscomb by dieresiscomb.ss01; +sub dotaccentcomb by dotaccentcomb.ss01; +sub dotbelowcomb by dotbelowcomb.ss01; +"; +labels = ( +{ +language = dflt; +value = "Square dots"; +} +); +tag = ss01; +}, +{ +automatic = 1; +code = "sub I by I.ss02; +sub IJ by IJ.ss02; +sub Iacute by Iacute.ss02; +sub Ibreve by Ibreve.ss02; +sub Icircumflex by Icircumflex.ss02; +sub Idieresis by Idieresis.ss02; +sub Idotaccent by Idotaccent.ss02; +sub Idotbelow by Idotbelow.ss02; +sub Igrave by Igrave.ss02; +sub Ihookabove by Ihookabove.ss02; +sub Imacron by Imacron.ss02; +sub Iogonek by Iogonek.ss02; +sub Itilde by Itilde.ss02; +"; +labels = ( +{ +language = dflt; +value = "Wider uppercase I"; +} +); +tag = ss02; +}, +{ +automatic = 1; +code = "sub l by l.ss03; +sub lacute by lacute.ss03; +sub lcaron by lcaron.ss03; +sub lcommaaccent by lcommaaccent.ss03; +sub ldot by ldot.ss03; +sub lslash by lslash.ss03; +sub ldot.ss01 by ldot.ss01.ss03; +"; +labels = ( +{ +language = dflt; +value = "Lowercase l with tail"; +} +); +tag = ss03; +}, +{ +automatic = 1; +code = "sub l by l.ss04; +sub lacute by lacute.ss04; +sub lcaron by lcaron.ss04; +sub lcommaaccent by lcommaaccent.ss04; +sub ldot by ldot.ss04; +sub lslash by lslash.ss04; +sub ldot.ss01 by ldot.ss01.ss04; +"; +labels = ( +{ +language = dflt; +value = "Lowercase l with top serif"; +} +); +tag = ss04; +}, +{ +automatic = 1; +code = "sub a by a.ss05; +sub aacute by aacute.ss05; +sub abreve by abreve.ss05; +sub abreveacute by abreveacute.ss05; +sub abrevedotbelow by abrevedotbelow.ss05; +sub abrevegrave by abrevegrave.ss05; +sub abrevehookabove by abrevehookabove.ss05; +sub abrevetilde by abrevetilde.ss05; +sub acircumflex by acircumflex.ss05; +sub acircumflexacute by acircumflexacute.ss05; +sub acircumflexdotbelow by acircumflexdotbelow.ss05; +sub acircumflexgrave by acircumflexgrave.ss05; +sub acircumflexhookabove by acircumflexhookabove.ss05; +sub acircumflextilde by acircumflextilde.ss05; +sub adieresis by adieresis.ss05; +sub adotbelow by adotbelow.ss05; +sub agrave by agrave.ss05; +sub ahookabove by ahookabove.ss05; +sub amacron by amacron.ss05; +sub aogonek by aogonek.ss05; +sub aring by aring.ss05; +sub atilde by atilde.ss05; +"; +labels = ( +{ +language = dflt; +value = "Double-storey a"; +} +); +tag = ss05; +}, +{ +automatic = 1; +code = "sub g by g.ss06; +sub gbreve by gbreve.ss06; +sub gcaron by gcaron.ss06; +sub gcircumflex by gcircumflex.ss06; +sub gcommaaccent by gcommaaccent.ss06; +sub gdotaccent by gdotaccent.ss06; +sub gdotaccent.ss01 by gdotaccent.ss01.ss06; +"; +labels = ( +{ +language = dflt; +value = "Double-storey g"; +} +); +tag = ss06; +}, +{ +automatic = 1; +code = "sub G by G.ss07; +sub Gbreve by Gbreve.ss07; +sub Gcaron by Gcaron.ss07; +sub Gcircumflex by Gcircumflex.ss07; +sub Gcommaaccent by Gcommaaccent.ss07; +sub Gdotaccent by Gdotaccent.ss07; +sub Gdotaccent.ss01 by Gdotaccent.ss01.ss07; +"; +labels = ( +{ +language = dflt; +value = "Round G"; +} +); +tag = ss07; +}, +{ +automatic = 1; +code = "sub zero.tf by zero.tf.ss08; +"; +labels = ( +{ +language = dflt; +value = "Tabular zero with straight bar"; +} +); +tag = ss08; +} +); +fontMaster = ( +{ +axesValues = ( +200 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "200"; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlineThickness; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = m; +}, +{ +name = paramArea; +value = 438; +}, +{ +name = paramDepth; +value = 14; +} +); +guides = ( +{ +pos = (293,976); +}, +{ +pos = (301,836); +} +); +iconName = Light; +id = m019; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 517; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Mono ExtraLight"; +stemValues = ( +36, +35, +36, +38 +); +userData = { +GSOffsetAutoStroke = 1; +GSOffsetHorizontal = 16; +GSOffsetKeepCompatible = 1; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 17; +KernOnModels = ( +"T o", +"L Y", +"A V", +"T u", +"seven four", +"parenleft n", +"fraction zero.dnom", +"T i", +"F i", +"f o", +"o v", +"P T", +"s hyphen", +"hyphen s", +"l periodcentered.loclCAT", +"l l", +"l n", +"s l", +"g j", +"f l", +"f n", +"f f", +"r n", +"v n", +"n n", +"o n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"H s", +"H x", +"H n", +"H o", +"one zero", +"one two", +"one seven", +"one three", +"one four", +"one one", +"L H", +"H T", +"E H", +"H Z", +"H V", +"H H", +"H O", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen S", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t t", +"z v", +"t v", +"z z", +"T V", +"E T", +"v v", +"lcaron l", +"A Z" +); +}; +}, +{ +axesValues = ( +900 +); +customParameters = ( +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "900"; +}, +{ +Axis = Italic; +Location = 0; +} +); +}, +{ +name = hheaAscender; +value = 1090; +}, +{ +name = hheaDescender; +value = -320; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 1090; +}, +{ +name = typoDescender; +value = -320; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1090; +}, +{ +name = winDescent; +value = 320; +}, +{ +name = underlineThickness; +value = 320; +}, +{ +name = underlinePosition; +value = -140; +}, +{ +name = strikeoutPosition; +value = 280; +}, +{ +name = strikeoutSize; +value = 70; +}, +{ +name = "Master Icon Glyph Name"; +value = m; +}, +{ +name = paramArea; +value = 290; +}, +{ +name = paramDepth; +value = 10; +} +); +iconName = Bold; +id = m020; +metricValues = ( +{ +pos = 729; +}, +{ +over = 10; +pos = 729; +}, +{ +over = 10; +pos = 544; +}, +{ +over = -10; +}, +{ +pos = -167; +}, +{ +} +); +name = "Mono Black"; +stemValues = ( +172, +153, +191, +193 +); +userData = { +HTLSManagerMasterRules = { +}; +KernOnModels = ( +"L Y", +"A V", +"T o", +"seven four", +"parenleft n", +"T u", +"fraction zero.dnom", +"o v", +"T i", +"l periodcentered.loclCAT", +"l l", +"l n", +"s l", +"f l", +"f n", +"f o", +"r n", +"z z", +"o n", +"v n", +"n n", +"l period", +"l colon", +"l exclam", +"l question", +"l quoteright", +"l slash", +"l hyphen", +"l endash", +"l underscore", +"l at", +"H l", +"F i", +"H s", +"H o", +"H n", +"H x", +"one zero", +"one seven", +"one two", +"one three", +"one four", +"one one", +"L H", +"H Z", +"E H", +"H T", +"P T", +"H V", +"H O", +"H H", +"H period", +"H comma", +"H colon", +"H exclam", +"one percent", +"H question", +"H slash", +"H hyphen", +"H endash", +"H ampersand", +"one equal", +"oneinferior zeroinferior", +"oneinferior twoinferior", +"oneinferior oneinferior", +"one.dnom zero.dnom", +"one.dnom two.dnom", +"one.dnom one.dnom", +"one.numr fraction", +"period period", +"slash l", +"hyphen s", +"endash endash", +"parenleft l", +"bracketleft l", +"parenleft H", +"parenleft T", +"equal equal", +"t v", +"z v", +"t t", +"s hyphen", +"A Z", +"E T", +"g j", +"hyphen S", +"f f", +"T V", +"v v", +"lcaron l" +); +}; +} +); +instances = ( +{ +customParameters = ( +{ +name = fileName; +value = "MonaSansMonoVF[wght]"; +}, +{ +name = "Variable Font Origin"; +value = m019; +} +); +name = Regular; +properties = ( +{ +key = familyNames; +values = ( +{ +language = dflt; +value = "Mona Sans Mono VF"; +} +); +} +); +type = variable; +}, +{ +axesValues = ( +200 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "200"; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +m019 = 1; +}; +name = ExtraLight; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = ExtraLight; +} +); +} +); +weightClass = 200; +}, +{ +axesValues = ( +329 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "300"; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +m019 = 0.81571; +m020 = 0.18429; +}; +name = Light; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Light; +} +); +} +); +weightClass = 300; +}, +{ +axesValues = ( +438 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "400"; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +m019 = 0.66; +m020 = 0.34; +}; +name = Regular; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Regular; +} +); +} +); +}, +{ +axesValues = ( +534 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "500"; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +m019 = 0.52286; +m020 = 0.47714; +}; +name = Medium; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Medium; +} +); +} +); +weightClass = 500; +}, +{ +axesValues = ( +600 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "600"; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +m019 = 0.42857; +m020 = 0.57143; +}; +name = SemiBold; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = SemiBold; +} +); +} +); +weightClass = 600; +}, +{ +axesValues = ( +665 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "700"; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +m019 = 0.33571; +m020 = 0.66429; +}; +isBold = 1; +name = Bold; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Bold; +} +); +} +); +weightClass = 700; +}, +{ +axesValues = ( +780 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "800"; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +m019 = 0.17143; +m020 = 0.82857; +}; +name = ExtraBold; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = ExtraBold; +} +); +} +); +weightClass = 800; +}, +{ +axesValues = ( +900 +); +customParameters = ( +{ +name = "Instance Preview"; +value = ( +M, +o, +n, +a, +space, +S, +a, +n, +s +); +}, +{ +name = "Axis Location"; +value = ( +{ +Axis = Width; +Location = 100; +}, +{ +Axis = Weight; +Location = "900"; +}, +{ +Axis = Italic; +Location = 0; +} +); +} +); +instanceInterpolations = { +m020 = 1; +}; +name = Black; +properties = ( +{ +key = variableStyleNames; +values = ( +{ +language = dflt; +value = Black; +} +); +} +); +weightClass = 900; +} +); +metrics = ( +{ +type = ascender; +}, +{ +type = "cap height"; +}, +{ +type = "x-height"; +}, +{ +type = baseline; +}, +{ +type = descender; +}, +{ +type = "italic angle"; +} +); +properties = ( +{ +key = copyrights; +values = ( +{ +language = dflt; +value = "Copyright 2022 The Mona Sans Project Authors (https://github.com/github/mona-sans), with Reserved Font Name \"Mona\""; +} +); +}, +{ +key = designers; +values = ( +{ +language = dflt; +value = "Kyle Wayne Benson"; +} +); +}, +{ +key = designerURL; +value = www.verycoolstudio.com; +}, +{ +key = licenses; +values = ( +{ +language = dflt; +value = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL"; +} +); +}, +{ +key = licenseURL; +value = "https://openfontlicense.org"; +}, +{ +key = manufacturers; +values = ( +{ +language = dflt; +value = GitHub; +} +); +}, +{ +key = manufacturerURL; +value = www.github.com; +}, +{ +key = vendorID; +value = GTHB; +} +); +stems = ( +{ +horizontal = 1; +name = H; +}, +{ +horizontal = 1; +name = o; +}, +{ +name = n; +}, +{ +name = o; +} +); +unitsPerEm = 1000; +userData = { +GSDimensionPlugin.Dimensions = { +"106FCE83-F343-403B-A314-646E4D059B3F" = { +HV = "38"; +nV = "37"; +}; +"1EDCBF6C-9964-4A28-BC87-E86B534B8BE7" = { +HH = "172"; +HV = "203"; +OH = "172"; +OV = "208"; +nV = "191"; +oH = "153"; +oV = "193"; +}; +"28A8A76A-23B4-40F5-83B9-DC51E48BF161" = { +HH = "36"; +HV = "38"; +OH = "36"; +OV = "40"; +nV = "37"; +oH = "35"; +oV = "38"; +}; +"2D1A1AFE-39FB-4EBD-856C-88C6B057247F" = { +HH = "178"; +HV = "229"; +OV = "235"; +nV = "221"; +}; +"5713303B-ED49-44A7-8230-B5CAE56DEB7E" = { +HH = "30"; +HV = "31"; +OH = "29"; +OV = "33"; +nV = "29"; +oH = "27"; +oV = "29"; +}; +"5A048DDA-4734-4F8A-A53C-0BED34B57D1C" = { +HV = "38"; +nV = "36"; +oV = "38"; +}; +"71D8B5AD-B400-4239-9672-E7BA455EF2D0" = { +HV = "31"; +OH = "29"; +OV = "33"; +nV = "30"; +oH = "27"; +oV = "31"; +tH = "27"; +}; +"D2144554-01B8-4B9B-B16A-E0E5B5794DFC" = { +HH = "178"; +HV = "229"; +OH = "179"; +OV = "230"; +nV = "221"; +oH = "166"; +oV = "220"; +}; +"DED42A87-C949-4722-A202-2B551272A3FB" = { +HV = "203"; +OV = "210"; +nV = "191"; +oV = "193"; +}; +"E787E54A-EE3E-475A-BF02-8501A6DA5144" = { +HH = "156"; +HV = "184"; +OH = "156"; +OV = "180"; +nV = "177"; +oH = "137"; +oV = "177"; +}; +"FFCA1F59-E305-4E0F-BBF9-E0C4511C19C1" = { +HV = "186"; +OH = "156"; +OV = "188"; +nV = "177"; +tH = "143"; +}; +m020 = { +HV = "203"; +}; +master01 = { +HH = "36"; +HV = "38"; +OH = "36"; +OV = "40"; +nV = "36"; +oH = "35"; +oV = "38"; +}; +}; +KernOnKerningWeightLimit = 36000; +KernOnRegenerateGroups = 1; +KernOnVersion = "1.29"; +com.eweracs.HTLSManager.fontRules = { +Letter = { +312438f7decf4fc68bcbaca450e03a99 = { +case = 2; +filter = ""; +referenceGlyph = x; +subcategory = Any; +value = 1; +}; +6a2d898c1367438986d3a6a56dff674b = { +case = 1; +filter = ""; +referenceGlyph = H; +subcategory = Any; +value = 1.1; +}; +}; +Mark = { +}; +Number = { +2bd1e700934d48afa4ccdec6e58ec3e7 = { +case = 4; +filter = inferior; +referenceGlyph = oneinferior; +subcategory = Small; +value = "1.0"; +}; +55f63e4331df4db2af4078f7d25e7c81 = { +case = 0; +filter = fraction; +referenceGlyph = one.numr; +subcategory = Fraction; +value = "1.0"; +}; +83f21c7fa30c4bda82d83ce68797bf1e = { +case = 4; +filter = .dnom; +referenceGlyph = one.dnom; +subcategory = Fraction; +value = "1.0"; +}; +ed5cb22a9b09400187c0feacae1f0f8f = { +case = 0; +filter = ""; +referenceGlyph = H; +subcategory = "Decimal DigitalicItalic"; +value = 1.1; +}; +}; +Punctuation = { +167668d12cdd4c8893e2ea25c8b50ee7 = { +case = 0; +filter = ""; +referenceGlyph = ""; +subcategory = Quote; +value = 0.8; +}; +473a79e894d44c599a51e7e1ece63290 = { +case = 0; +filter = guil; +referenceGlyph = ""; +subcategory = Quote; +value = 1.2; +}; +4ec998b892f749cda9789e6906484c17 = { +case = 0; +filter = comma; +referenceGlyph = period; +subcategory = Any; +value = "0.7"; +}; +9184a8a098a84478838c6fc128ee0a80 = { +case = 0; +filter = ""; +referenceGlyph = bracketleft; +subcategory = Parenthesis; +value = 1.2; +}; +9d511a8382cb45d792fdbfdfc50ffffd = { +case = 1; +filter = ""; +referenceGlyph = H; +subcategory = Any; +value = 1.2; +}; +9ec58eaef538412db8c6e39bfab814c4 = { +case = 0; +filter = colon; +referenceGlyph = idotless; +subcategory = Any; +value = 1.2; +}; +9f4aa33eabc048148a0062f6007b15aa = { +case = 1; +filter = ""; +referenceGlyph = ""; +subcategory = Parenthesis; +value = 1.2; +}; +c63f0f2ed1a04e758a366249316b4adc = { +case = 0; +filter = ""; +referenceGlyph = ""; +subcategory = Any; +value = 0.7; +}; +d38ed0f19582418b87419664ccbaea66 = { +case = 0; +filter = numbersign; +referenceGlyph = ""; +subcategory = Any; +value = "1"; +}; +}; +Symbol = { +0fc37ed242184cf0bb4187ff151ca40f = { +case = 0; +filter = florin; +referenceGlyph = idotless; +subcategory = Currency; +value = 1; +}; +29efbbb3c5a14419ae21c4df65fbd7be = { +case = 0; +filter = ""; +referenceGlyph = ""; +subcategory = Math; +value = 1; +}; +42048483ab514efc835267f63d632f9d = { +case = 0; +filter = ""; +referenceGlyph = ""; +subcategory = Any; +value = 1.3; +}; +d186e1aee4d04436b206cbedd9f1894d = { +case = 0; +filter = ""; +referenceGlyph = H; +subcategory = Currency; +value = 1.3; +}; +}; +}; +}; +versionMajor = 0; +versionMinor = 5; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_.glyph new file mode 100644 index 00000000..067d6894 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_.glyph @@ -0,0 +1,201 @@ +{ +glyphname = A; +kernLeft = A; +kernRight = A; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = ogonek; +pos = (569,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(42,0,l), +(118,200,l), +(500,200,l), +(577,0,l), +(617,0,l), +(334,729,l), +(284,729,l), +(1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(241,516,l), +(308,690,l), +(312,690,l), +(378,516,l), +(487,233,l), +(131,233,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(279,605,l), +(305,699,l), +(315,699,l), +(340,605,l), +(527,0,l), +(569,0,l), +(338,729,l), +(281,729,l), +(49,0,l) +); +}, +{ +closed = 1; +nodes = ( +(472,199,l), +(470,235,l), +(148,235,l), +(146,199,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = ogonek; +pos = (614,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,0,l), +(274,431,l), +(305,547,l), +(312,547,l), +(343,431,l), +(469,0,l), +(680,0,l), +(453,729,l), +(164,729,l), +(-63,0,l) +); +}, +{ +closed = 1; +nodes = ( +(447,130,l), +(402,284,l), +(215,284,l), +(170,130,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(214,0,l), +(288,472,l), +(302,577,l), +(315,577,l), +(328,472,l), +(403,0,l), +(611,0,l), +(452,729,l), +(164,729,l), +(7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(419,130,l), +(391,284,l), +(216,284,l), +(198,130,l) +); +} +); +width = 618; +} +); +unicode = 65; +userData = { +KernOnName = A; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_E_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_E_.glyph new file mode 100644 index 00000000..4257b8ab --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_E_.glyph @@ -0,0 +1,106 @@ +{ +glyphname = AE; +kernLeft = A; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(43,0,l), +(94,199,l), +(358,199,l), +(410,0,l), +(613,0,l), +(613,37,l), +(439,37,l), +(357,358,l), +(578,358,l), +(578,392,l), +(345,392,l), +(269,693,l), +(613,693,l), +(613,729,l), +(198,729,l), +(0,0,l) +); +}, +{ +closed = 1; +nodes = ( +(201,605,l), +(224,696,l), +(229,696,l), +(253,605,l), +(347,235,l), +(107,235,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(183,130,l), +(310,130,l), +(328,0,l), +(607,0,l), +(607,172,l), +(485,172,l), +(472,288,l), +(572,288,l), +(572,449,l), +(435,449,l), +(424,557,l), +(604,557,l), +(604,729,l), +(130,729,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(239,482,l), +(254,577,l), +(259,577,l), +(274,482,l), +(299,284,l), +(214,284,l) +); +} +); +width = 618; +} +); +metricLeft = A; +metricRight = E; +unicode = 198; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_acute.glyph new file mode 100644 index 00000000..ae5d4b5e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Aacute; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (39,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (48,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 193; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_breve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_breve.glyph new file mode 100644 index 00000000..98854707 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_breve.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Abreve; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 258; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_breveacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_breveacute.glyph new file mode 100644 index 00000000..790e215d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_breveacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Abreveacute; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = brevecomb_acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = brevecomb_acutecomb; +} +); +width = 618; +} +); +unicode = 7854; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_brevedotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_brevedotbelow.glyph new file mode 100644 index 00000000..c637dde0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_brevedotbelow.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = Abrevedotbelow; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +ref = dotbelowcomb; +}, +{ +pos = (0,51); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +ref = dotbelowcomb; +}, +{ +pos = (0,51); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 7862; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_brevedotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_brevedotbelow.ss01.glyph new file mode 100644 index 00000000..f288bcad --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_brevedotbelow.ss01.glyph @@ -0,0 +1,42 @@ +{ +color = 6; +glyphname = Abrevedotbelow.ss01; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (0,51); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (0,51); +ref = brevecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_brevegrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_brevegrave.glyph new file mode 100644 index 00000000..c4b8ecb9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_brevegrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Abrevegrave; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = brevecomb_gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = brevecomb_gravecomb; +} +); +width = 618; +} +); +unicode = 7856; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_brevehookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_brevehookabove.glyph new file mode 100644 index 00000000..082dc4b2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_brevehookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Abrevehookabove; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = brevecomb_hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (3,51); +ref = brevecomb_hookabovecomb; +} +); +width = 618; +} +); +unicode = 7858; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_brevetilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_brevetilde.glyph new file mode 100644 index 00000000..d65bec53 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_brevetilde.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Abrevetilde; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,57); +ref = brevecomb_tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = brevecomb_tildecomb; +} +); +width = 618; +} +); +unicode = 7860; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflex.glyph new file mode 100644 index 00000000..07f26f8f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Acircumflex; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 194; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexacute.glyph new file mode 100644 index 00000000..fdd36227 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Acircumflexacute; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (50,57); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (75,51); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +} +); +unicode = 7844; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexdotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexdotbelow.glyph new file mode 100644 index 00000000..a649f793 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexdotbelow.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = Acircumflexdotbelow; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +ref = dotbelowcomb; +}, +{ +pos = (0,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +ref = dotbelowcomb; +}, +{ +pos = (0,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 7852; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexdotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..6bf44882 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexdotbelow.ss01.glyph @@ -0,0 +1,42 @@ +{ +color = 6; +glyphname = Acircumflexdotbelow.ss01; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (0,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (0,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexgrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexgrave.glyph new file mode 100644 index 00000000..ba334537 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexgrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Acircumflexgrave; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (28,57); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (35,51); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +} +); +unicode = 7846; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexhookabove.glyph new file mode 100644 index 00000000..404ee1a2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflexhookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Acircumflexhookabove; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (44,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (46,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +} +); +unicode = 7848; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_circumflextilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflextilde.glyph new file mode 100644 index 00000000..d707900f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_circumflextilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Acircumflextilde; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (8,57); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +} +); +unicode = 7850; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_dieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_dieresis.glyph new file mode 100644 index 00000000..fa9df04e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_dieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Adieresis; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,57); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 196; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_dieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_dieresis.ss01.glyph new file mode 100644 index 00000000..239af314 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_dieresis.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Adieresis.ss01; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,57); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_dotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_dotbelow.glyph new file mode 100644 index 00000000..283852fa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_dotbelow.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Adotbelow; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +ref = dotbelowcomb; +} +); +width = 618; +} +); +unicode = 7840; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_dotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_dotbelow.ss01.glyph new file mode 100644 index 00000000..08871250 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_dotbelow.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Adotbelow.ss01; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_grave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_grave.glyph new file mode 100644 index 00000000..84891288 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_grave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Agrave; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (-40,57); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (-49,51); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 192; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_hookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_hookabove.glyph new file mode 100644 index 00000000..224cec61 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_hookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ahookabove; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,57); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (7,51); +ref = hookabovecomb; +} +); +width = 618; +} +); +unicode = 7842; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_macron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_macron.glyph new file mode 100644 index 00000000..50cd0ff4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_macron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Amacron; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,57); +ref = macroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,51); +ref = macroncomb; +} +); +width = 618; +} +); +unicode = 256; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_ogonek.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_ogonek.glyph new file mode 100644 index 00000000..a772a057 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_ogonek.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Aogonek; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (207,0); +ref = ogonekcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (189,0); +ref = ogonekcomb; +} +); +width = 618; +} +); +unicode = 260; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_ring.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_ring.glyph new file mode 100644 index 00000000..84d19d16 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_ring.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Aring; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,57); +ref = ringcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (0,51); +ref = ringcomb; +} +); +width = 618; +} +); +unicode = 197; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/A_tilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/A_tilde.glyph new file mode 100644 index 00000000..be4c4a14 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/A_tilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Atilde; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = A; +}, +{ +pos = (2,57); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = A; +}, +{ +pos = (-1,51); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 195; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/B_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/B_.glyph new file mode 100644 index 00000000..0271e25e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/B_.glyph @@ -0,0 +1,274 @@ +{ +glyphname = B; +kernLeft = H; +kernRight = B; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = top; +pos = (304,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(351,0,ls), +(463,0,o), +(533,78,o), +(533,200,cs), +(533,284,o), +(496,356,o), +(421,374,c), +(421,377,l), +(488,397,o), +(518,465,o), +(518,543,cs), +(518,654,o), +(458,729,o), +(353,729,cs), +(115,729,l), +(115,0,l) +); +}, +{ +closed = 1; +nodes = ( +(153,694,l), +(349,694,ls), +(428,694,o), +(480,635,o), +(480,538,cs), +(480,450,o), +(438,391,o), +(360,391,cs), +(145,391,l), +(145,356,l), +(362,356,ls), +(445,356,o), +(493,298,o), +(493,202,cs), +(493,104,o), +(444,36,o), +(349,36,cs), +(153,36,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +2, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +4 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (308,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(366,0,ls), +(541,0,o), +(639,68,o), +(639,212,cs), +(639,293,o), +(595,359,o), +(516,376,c), +(516,385,l), +(580,405,o), +(619,468,o), +(619,541,cs), +(619,654,o), +(546,729,o), +(393,729,cs), +(13,729,l), +(13,0,l) +); +}, +{ +closed = 1; +nodes = ( +(210,299,l), +(344,299,ls), +(397,299,o), +(433,278,o), +(433,224,cs), +(433,181,o), +(408,153,o), +(342,153,cs), +(210,153,l) +); +}, +{ +closed = 1; +nodes = ( +(210,576,l), +(334,576,ls), +(383,576,o), +(415,558,o), +(415,513,cs), +(415,473,o), +(393,446,o), +(335,446,cs), +(210,446,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(356,0,ls), +(505,0,o), +(585,68,o), +(585,212,cs), +(585,294,o), +(550,360,o), +(468,376,c), +(469,384,l), +(526,402,o), +(569,459,o), +(569,541,cs), +(569,654,o), +(512,729,o), +(384,729,cs), +(60,729,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(258,576,l), +(322,576,ls), +(347,576,o), +(363,558,o), +(363,513,cs), +(363,473,o), +(354,446,o), +(319,446,cs), +(244,446,l), +(244,299,l), +(328,299,ls), +(356,299,o), +(378,278,o), +(378,224,cs), +(378,181,o), +(368,153,o), +(331,153,cs), +(258,153,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 619; +} +); +metricLeft = H; +unicode = 66; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/C_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/C_.glyph new file mode 100644 index 00000000..16efcc75 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/C_.glyph @@ -0,0 +1,228 @@ +{ +glyphname = C; +kernLeft = O; +kernRight = C; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (329,0); +}, +{ +name = top; +pos = (329,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(502,-8,o), +(627,87,o), +(648,237,c), +(608,238,l), +(588,111,o), +(483,28,o), +(329,28,cs), +(140,28,o), +(25,162,o), +(25,364,cs), +(25,566,o), +(140,700,o), +(329,700,cs), +(482,700,o), +(586,615,o), +(608,494,c), +(648,494,l), +(622,643,o), +(498,736,o), +(329,736,cs), +(122,736,o), +(-16,586,o), +(-16,364,cs), +(-16,143,o), +(121,-8,o), +(329,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(453,-8,o), +(549,85,o), +(565,238,c), +(524,238,l), +(509,108,o), +(433,28,o), +(325,28,cs), +(188,28,o), +(103,163,o), +(103,364,cs), +(103,565,o), +(187,700,o), +(325,700,cs), +(433,700,o), +(508,616,o), +(524,494,c), +(565,494,l), +(545,646,o), +(451,736,o), +(325,736,cs), +(166,736,o), +(61,588,o), +(61,364,cs), +(61,143,o), +(165,-8,o), +(325,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = top; +pos = (324,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(513,-10,o), +(655,98,o), +(672,258,c), +(467,258,l), +(453,200,o), +(393,162,o), +(324,162,c), +(324,-10,l) +); +}, +{ +closed = 1; +nodes = ( +(100,739,o), +(-50,607,o), +(-50,365,cs), +(-50,122,o), +(100,-10,o), +(324,-10,c), +(324,162,l), +(224,162,o), +(158,220,o), +(158,365,cs), +(158,509,o), +(224,567,o), +(324,567,c), +(324,739,l) +); +}, +{ +closed = 1; +nodes = ( +(397,567,o), +(451,528,o), +(467,472,c), +(672,472,l), +(655,631,o), +(518,739,o), +(324,739,c), +(324,567,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(473,-10,o), +(590,98,o), +(602,258,c), +(395,258,l), +(386,201,o), +(351,162,o), +(320,162,cs), +(267,162,o), +(229,221,o), +(229,365,cs), +(229,508,o), +(267,567,o), +(320,567,cs), +(355,567,o), +(384,528,o), +(395,472,c), +(602,472,l), +(591,631,o), +(479,739,o), +(320,739,cs), +(140,739,o), +(20,606,o), +(20,365,cs), +(20,122,o), +(141,-10,o), +(320,-10,cs) +); +} +); +width = 618; +} +); +unicode = 67; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/C_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/C_acute.glyph new file mode 100644 index 00000000..3c5d0af5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/C_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Cacute; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (59,57); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (63,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 262; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/C_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/C_caron.glyph new file mode 100644 index 00000000..24f26057 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/C_caron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ccaron; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (20,57); +ref = caroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (15,51); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 268; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/C_cedilla.glyph b/sources/MonaSansMono.glyphspackage/glyphs/C_cedilla.glyph new file mode 100644 index 00000000..5935a9c3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/C_cedilla.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ccedilla; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (15,0); +ref = cedillacomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (-28,0); +ref = cedillacomb; +} +); +width = 618; +} +); +unicode = 199; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/C_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/C_circumflex.glyph new file mode 100644 index 00000000..a42335ee --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/C_circumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ccircumflex; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (20,57); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (15,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 264; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/C_dotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/C_dotaccent.glyph new file mode 100644 index 00000000..ad630b96 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/C_dotaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Cdotaccent; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (19,57); +ref = dotaccentcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (8,51); +ref = dotaccentcomb; +} +); +width = 618; +} +); +unicode = 266; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/C_dotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/C_dotaccent.ss01.glyph new file mode 100644 index 00000000..7b374ba3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/C_dotaccent.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Cdotaccent.ss01; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = C; +}, +{ +pos = (19,57); +ref = dotaccentcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = C; +}, +{ +pos = (14,51); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/D_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/D_.glyph new file mode 100644 index 00000000..e099bf65 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/D_.glyph @@ -0,0 +1,201 @@ +{ +glyphname = D; +kernLeft = H; +kernRight = D; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = center; +pos = (127,365); +}, +{ +name = top; +pos = (304,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(307,0,ls), +(463,0,o), +(558,144,o), +(558,364,cs), +(558,585,o), +(463,729,o), +(307,729,cs), +(92,729,l), +(92,0,l) +); +}, +{ +closed = 1; +nodes = ( +(130,693,l), +(303,693,ls), +(435,693,o), +(520,570,o), +(520,365,cs), +(520,167,o), +(439,37,o), +(303,37,cs), +(130,37,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (178,365); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,0,ls), +(543,0,o), +(661,147,o), +(661,364,cs), +(661,581,o), +(544,729,o), +(319,729,cs), +(-10,729,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(193,557,l), +(283,557,ls), +(378,557,o), +(449,527,o), +(449,368,cs), +(449,198,o), +(374,172,o), +(283,172,cs), +(193,172,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(319,0,ls), +(499,0,o), +(590,147,o), +(590,364,cs), +(590,581,o), +(500,729,o), +(319,729,cs), +(50,729,l), +(50,0,l) +); +}, +{ +closed = 1; +nodes = ( +(255,558,l), +(282,558,ls), +(336,558,o), +(381,526,o), +(381,368,cs), +(381,200,o), +(330,171,o), +(282,171,cs), +(255,171,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 618; +} +); +metricLeft = H; +unicode = 68; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/D_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/D_caron.glyph new file mode 100644 index 00000000..1468d48d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/D_caron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Dcaron; +kernLeft = H; +kernRight = D; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = D; +}, +{ +pos = (-5,57); +ref = caroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = D; +}, +{ +pos = (0,51); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 270; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/D_croat.glyph b/sources/MonaSansMono.glyphspackage/glyphs/D_croat.glyph new file mode 100644 index 00000000..12a15126 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/D_croat.glyph @@ -0,0 +1,26 @@ +{ +color = 6; +glyphname = Dcroat; +kernRight = D; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Eth; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Eth; +} +); +width = 618; +} +); +unicode = 272; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_.glyph new file mode 100644 index 00000000..eb9d4d94 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_.glyph @@ -0,0 +1,172 @@ +{ +glyphname = E; +kernLeft = H; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = ogonek; +pos = (543,0); +}, +{ +name = top; +pos = (312,729); +}, +{ +name = topleft; +pos = (51,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(543,0,l), +(543,37,l), +(149,37,l), +(160,26,l), +(160,704,l), +(149,693,l), +(543,693,l), +(543,729,l), +(122,729,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(501,358,l), +(501,392,l), +(149,392,l), +(149,358,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = ogonek; +pos = (561,0); +}, +{ +name = top; +pos = (309,729); +}, +{ +name = topleft; +pos = (37,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(561,0,l), +(561,172,l), +(236,172,l), +(277,130,l), +(277,599,l), +(236,557,l), +(558,557,l), +(558,729,l), +(73,729,l), +(73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(515,288,l), +(515,449,l), +(236,449,l), +(236,288,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 618; +} +); +metricLeft = H; +unicode = 69; +userData = { +KernOnName = E; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_acute.glyph new file mode 100644 index 00000000..8327aea2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Eacute; +kernLeft = H; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (42,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (48,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 201; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_breve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_breve.glyph new file mode 100644 index 00000000..608980f9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_breve.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ebreve; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (3,51); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (0,51); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 276; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_caron.glyph new file mode 100644 index 00000000..b98ac8aa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_caron.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ecaron; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (3,57); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (0,51); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 282; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflex.glyph new file mode 100644 index 00000000..7317eab8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ecircumflex; +kernLeft = H; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (3,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (0,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 202; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexacute.glyph new file mode 100644 index 00000000..e5e59f0a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexacute.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ecircumflexacute; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (53,57); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,51); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +} +); +unicode = 7870; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexdotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexdotbelow.glyph new file mode 100644 index 00000000..9209ec5f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexdotbelow.glyph @@ -0,0 +1,40 @@ +{ +color = 6; +glyphname = Ecircumflexdotbelow; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (3,0); +ref = dotbelowcomb; +}, +{ +pos = (3,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +ref = dotbelowcomb; +}, +{ +pos = (0,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 7878; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexdotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..92296d31 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexdotbelow.ss01.glyph @@ -0,0 +1,40 @@ +{ +color = 6; +glyphname = Ecircumflexdotbelow.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (2,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (3,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (0,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexgrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexgrave.glyph new file mode 100644 index 00000000..e8c06175 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexgrave.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Ecircumflexgrave; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (31,57); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (35,51); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +} +); +unicode = 7872; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexhookabove.glyph new file mode 100644 index 00000000..4b1ce71c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflexhookabove.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Ecircumflexhookabove; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (47,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (46,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +} +); +unicode = 7874; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_circumflextilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflextilde.glyph new file mode 100644 index 00000000..d2d7a526 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_circumflextilde.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Ecircumflextilde; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (11,57); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (0,51); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +} +); +unicode = 7876; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_dieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_dieresis.glyph new file mode 100644 index 00000000..5a1eaef1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_dieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Edieresis; +kernLeft = H; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (3,57); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (0,51); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 203; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_dieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_dieresis.ss01.glyph new file mode 100644 index 00000000..4231b8b5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_dieresis.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Edieresis.ss01; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (2,57); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (0,51); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_dotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_dotaccent.glyph new file mode 100644 index 00000000..97f949c1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_dotaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Edotaccent; +kernLeft = H; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (2,57); +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (-7,51); +ref = dotaccentcomb; +} +); +width = 618; +} +); +unicode = 278; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_dotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_dotaccent.ss01.glyph new file mode 100644 index 00000000..5834abdf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_dotaccent.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Edotaccent.ss01; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (2,57); +ref = dotaccentcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (-1,51); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_dotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_dotbelow.glyph new file mode 100644 index 00000000..41fae6e3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_dotbelow.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Edotbelow; +kernLeft = H; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (3,0); +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +ref = dotbelowcomb; +} +); +width = 618; +} +); +unicode = 7864; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_dotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_dotbelow.ss01.glyph new file mode 100644 index 00000000..0729791e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_dotbelow.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Edotbelow.ss01; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (2,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_grave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_grave.glyph new file mode 100644 index 00000000..d2dfb179 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_grave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Egrave; +kernLeft = H; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (-37,57); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (-49,51); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 200; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_hookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_hookabove.glyph new file mode 100644 index 00000000..be6621e2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_hookabove.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ehookabove; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (3,57); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (7,51); +ref = hookabovecomb; +} +); +width = 618; +} +); +unicode = 7866; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_macron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_macron.glyph new file mode 100644 index 00000000..3788fd6f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_macron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Emacron; +kernLeft = H; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (2,57); +ref = macroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (-1,51); +ref = macroncomb; +} +); +width = 618; +} +); +unicode = 274; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_ng.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_ng.glyph new file mode 100644 index 00000000..969f67d0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_ng.glyph @@ -0,0 +1,68 @@ +{ +glyphname = Eng; +layers = ( +{ +background = { +shapes = ( +{ +pos = (-73,0); +ref = N; +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(414,-167,ls), +(474,-167,o), +(503,-128,o), +(503,-70,cs), +(503,0,l), +(466,0,l), +(466,-60,ls), +(466,-113,o), +(448,-133,o), +(403,-133,cs), +(358,-133,l), +(358,-167,l) +); +}, +{ +ref = N; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-167,ls), +(508,-167,o), +(558,-107,o), +(558,-4,cs), +(558,49,l), +(377,49,l), +(377,-7,ls), +(377,-41,o), +(362,-54,o), +(326,-54,cs), +(277,-54,l), +(277,-167,l) +); +}, +{ +ref = N; +} +); +width = 618; +} +); +metricLeft = H; +metricRight = H; +unicode = 330; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_ogonek.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_ogonek.glyph new file mode 100644 index 00000000..31c48762 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_ogonek.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Eogonek; +kernLeft = H; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (181,0); +ref = ogonek; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (136,0); +ref = ogonek; +} +); +width = 618; +} +); +unicode = 280; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_th.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_th.glyph new file mode 100644 index 00000000..3510f0a7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_th.glyph @@ -0,0 +1,37 @@ +{ +color = 7; +glyphname = Eth; +kernRight = D; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = D; +}, +{ +pos = (-95,-23); +ref = strokeshortcomb.case; +scale = (0.8,1); +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = D; +}, +{ +pos = (-87,-13); +ref = strokeshortcomb.case; +scale = (0.84,1); +} +); +width = 618; +} +); +metricRight = D; +unicode = 208; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/E_tilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/E_tilde.glyph new file mode 100644 index 00000000..0863c80d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/E_tilde.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Etilde; +kernRight = E; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = E; +}, +{ +pos = (5,57); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = E; +}, +{ +pos = (-1,51); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 7868; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/F_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/F_.glyph new file mode 100644 index 00000000..4d569b5f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/F_.glyph @@ -0,0 +1,146 @@ +{ +glyphname = F; +kernLeft = H; +kernRight = F; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (306,0); +}, +{ +name = top; +pos = (306,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(158,0,l), +(158,704,l), +(147,693,l), +(554,693,l), +(554,729,l), +(119,729,l), +(119,0,l) +); +}, +{ +closed = 1; +nodes = ( +(518,349,l), +(518,384,l), +(139,384,l), +(139,349,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (305,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(269,0,l), +(269,589,l), +(238,557,l), +(585,557,l), +(585,729,l), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,261,l), +(548,424,l), +(222,424,l), +(222,261,l) +); +} +); +width = 619; +} +); +metricLeft = H; +unicode = 70; +userData = { +KernOnName = F; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_.glyph new file mode 100644 index 00000000..f3750764 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_.glyph @@ -0,0 +1,284 @@ +{ +glyphname = G; +kernLeft = O; +kernRight = G; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (311,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(446,-8,o), +(562,64,o), +(597,174,c), +(603,174,l), +(608,0,l), +(640,0,l), +(640,376,l), +(279,376,l), +(279,340,l), +(616,340,l), +(599,357,l), +(599,298,ls), +(599,132,o), +(479,28,o), +(304,28,cs), +(121,28,o), +(7,161,o), +(7,364,cs), +(7,566,o), +(123,700,o), +(317,700,cs), +(465,700,o), +(563,629,o), +(591,515,c), +(631,515,l), +(602,658,o), +(478,736,o), +(317,736,cs), +(106,736,o), +(-33,587,o), +(-33,364,cs), +(-33,141,o), +(102,-8,o), +(304,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(407,-8,o), +(492,65,o), +(518,174,c), +(523,174,l), +(527,0,l), +(560,0,l), +(560,376,l), +(287,376,l), +(287,340,l), +(533,340,l), +(517,359,l), +(517,298,ls), +(517,132,o), +(431,28,o), +(310,28,cs), +(173,28,o), +(88,164,o), +(88,364,cs), +(88,563,o), +(171,700,o), +(311,700,cs), +(419,700,o), +(490,631,o), +(511,515,c), +(553,515,l), +(532,658,o), +(438,736,o), +(311,736,cs), +(151,736,o), +(46,586,o), +(46,364,cs), +(46,143,o), +(149,-8,o), +(308,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +33 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +20 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (311,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(487,-10,o), +(629,98,o), +(646,258,c), +(441,258,l), +(427,200,o), +(367,162,o), +(298,162,cs), +(200,162,o), +(134,220,o), +(134,365,cs), +(134,509,o), +(200,567,o), +(298,567,cs), +(371,567,o), +(425,528,o), +(441,472,c), +(646,472,l), +(629,631,o), +(492,739,o), +(298,739,cs), +(75,739,o), +(-74,607,o), +(-74,365,cs), +(-74,122,o), +(75,-10,o), +(298,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(329,-10,o), +(390,31,o), +(412,92,c), +(418,92,l), +(425,0,l), +(587,0,l), +(587,408,l), +(308,408,l), +(308,264,l), +(403,264,l), +(370,297,l), +(370,279,ls), +(370,206,o), +(345,156,o), +(303,156,cs), +(261,156,o), +(230,222,o), +(230,358,cs), +(230,484,o), +(249,567,o), +(309,567,cs), +(333,567,o), +(364,532,o), +(374,477,c), +(582,477,l), +(572,636,o), +(466,739,o), +(311,739,cs), +(137,739,o), +(20,600,o), +(20,352,cs), +(20,126,o), +(118,-10,o), +(263,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +}; +width = 618; +} +); +unicode = 71; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_.ss07.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_.ss07.glyph new file mode 100644 index 00000000..fd441c35 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_.ss07.glyph @@ -0,0 +1,231 @@ +{ +glyphname = G.ss07; +kernLeft = O; +kernRight = G.ss06; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = top; +pos = (315,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(496,-8,o), +(627,124,o), +(627,340,cs), +(627,366,l), +(348,366,l), +(348,330,l), +(609,330,l), +(586,355,l), +(586,335,ls), +(586,140,o), +(469,28,o), +(300,28,cs), +(120,28,o), +(4,162,o), +(4,365,cs), +(4,567,o), +(121,699,o), +(301,699,cs), +(440,699,o), +(547,621,o), +(569,493,c), +(609,493,l), +(587,640,o), +(464,736,o), +(301,736,cs), +(100,736,o), +(-35,587,o), +(-35,364,cs), +(-35,141,o), +(97,-8,o), +(300,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(464,-8,o), +(566,124,o), +(566,340,cs), +(566,366,l), +(326,366,l), +(326,330,l), +(543,330,l), +(524,355,l), +(524,335,ls), +(524,140,o), +(438,28,o), +(314,28,cs), +(181,28,o), +(96,162,o), +(96,365,cs), +(96,567,o), +(182,699,o), +(315,699,cs), +(413,699,o), +(493,627,o), +(511,493,c), +(552,493,l), +(535,641,o), +(441,736,o), +(315,736,cs), +(160,736,o), +(55,587,o), +(55,364,cs), +(55,142,o), +(156,-8,o), +(313,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +28 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (307,0); +}, +{ +name = top; +pos = (316,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-10,o), +(595,115,o), +(595,310,cs), +(595,401,l), +(292,401,l), +(292,254,l), +(437,254,l), +(390,318,l), +(390,283,ls), +(390,208,o), +(365,158,o), +(314,158,cs), +(259,158,o), +(230,221,o), +(230,365,cs), +(230,508,o), +(264,567,o), +(316,567,cs), +(355,567,o), +(374,533,o), +(378,480,c), +(589,480,l), +(578,633,o), +(484,739,o), +(316,739,cs), +(137,739,o), +(20,607,o), +(20,365,cs), +(20,141,o), +(121,-10,o), +(308,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +}; +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_breve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_breve.glyph new file mode 100644 index 00000000..51360e2c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_breve.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Gbreve; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (2,51); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (2,51); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 286; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_breve.ss07.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_breve.ss07.glyph new file mode 100644 index 00000000..75115096 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_breve.ss07.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Gbreve.ss07; +kernLeft = O; +kernRight = G.ss06; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (6,51); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (7,51); +ref = brevecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_caron.glyph new file mode 100644 index 00000000..47f953b2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_caron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Gcaron; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (2,57); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (2,51); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 486; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_caron.ss07.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_caron.ss07.glyph new file mode 100644 index 00000000..8a7be3b3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_caron.ss07.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Gcaron.ss07; +kernLeft = O; +kernRight = G.ss06; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (6,57); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (7,51); +ref = caroncomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_circumflex.glyph new file mode 100644 index 00000000..610b230c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_circumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Gcircumflex; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (2,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (2,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 284; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_circumflex.ss07.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_circumflex.ss07.glyph new file mode 100644 index 00000000..4e7210a8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_circumflex.ss07.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Gcircumflex.ss07; +kernLeft = O; +kernRight = G.ss06; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (6,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (7,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_commaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_commaaccent.glyph new file mode 100644 index 00000000..7a972c64 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_commaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Gcommaaccent; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (-20,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 290; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_commaaccent.ss07.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_commaaccent.ss07.glyph new file mode 100644 index 00000000..832ad342 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_commaaccent.ss07.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Gcommaaccent.ss07; +kernLeft = O; +kernRight = G.ss06; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (-23,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (-21,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.glyph new file mode 100644 index 00000000..b08f2a44 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Gdotaccent; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (1,57); +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (-5,51); +ref = dotaccentcomb; +} +); +width = 618; +} +); +unicode = 288; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.ss01.glyph new file mode 100644 index 00000000..bb4baecd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Gdotaccent.ss01; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G; +}, +{ +pos = (1,57); +ref = dotaccentcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G; +}, +{ +pos = (1,51); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.ss01.ss07.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.ss01.ss07.glyph new file mode 100644 index 00000000..92ef6bbe --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.ss01.ss07.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Gdotaccent.ss01.ss07; +kernLeft = O; +kernRight = G.ss06; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (5,57); +ref = dotaccentcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (6,51); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.ss07.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.ss07.glyph new file mode 100644 index 00000000..5c5c17d7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_dotaccent.ss07.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Gdotaccent.ss07; +kernLeft = O; +kernRight = G.ss06; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (5,57); +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = G.ss07; +}, +{ +pos = (0,51); +ref = dotaccentcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/G_ermandbls.glyph b/sources/MonaSansMono.glyphspackage/glyphs/G_ermandbls.glyph new file mode 100644 index 00000000..43a3ddb7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/G_ermandbls.glyph @@ -0,0 +1,84 @@ +{ +glyphname = Germandbls; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(140,0,l), +(140,693,l), +(486,693,l), +(279,417,l), +(279,387,l), +(334,387,ls), +(470,387,o), +(525,319,o), +(525,211,cs), +(525,110,o), +(468,34,o), +(342,34,cs), +(207,34,l), +(207,0,l), +(342,0,ls), +(485,0,o), +(566,81,o), +(566,211,cs), +(566,339,o), +(494,420,o), +(340,420,cs), +(316,420,l), +(330,403,l), +(330,427,l), +(519,678,l), +(519,729,l), +(101,729,l), +(101,0,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,l), +(243,561,l), +(379,561,l), +(307,411,l), +(307,321,l), +(328,321,ls), +(359,321,o), +(388,299,o), +(388,242,cs), +(388,195,o), +(372,163,o), +(326,163,cs), +(286,163,l), +(286,0,l), +(366,0,ls), +(505,0,o), +(599,78,o), +(599,217,cs), +(599,325,o), +(539,404,o), +(462,404,cs), +(449,404,l), +(497,353,l), +(497,410,l), +(569,546,l), +(569,729,l), +(39,729,l), +(39,0,l) +); +} +); +width = 618; +} +); +unicode = 7838; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/H_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/H_.glyph new file mode 100644 index 00000000..e0afd1f9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/H_.glyph @@ -0,0 +1,190 @@ +{ +glyphname = H; +kernLeft = H; +kernRight = H; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,592); +}, +{ +name = top; +pos = (309,729); +}, +{ +name = topleft; +pos = (48,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(139,0,l), +(139,729,l), +(102,729,l), +(102,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(516,729,l), +(479,729,l), +(479,0,l) +); +}, +{ +closed = 1; +nodes = ( +(493,362,l), +(493,398,l), +(125,398,l), +(125,362,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,591); +}, +{ +name = top; +pos = (309,729); +}, +{ +name = topleft; +pos = (35,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(259,729,l), +(55,729,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,0,l), +(563,729,l), +(359,729,l), +(359,0,l) +); +}, +{ +closed = 1; +nodes = ( +(393,283,l), +(393,455,l), +(225,455,l), +(225,283,l) +); +} +); +width = 618; +} +); +metricRight = "=|"; +unicode = 72; +userData = { +KernOnName = H; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/H_bar.glyph b/sources/MonaSansMono.glyphspackage/glyphs/H_bar.glyph new file mode 100644 index 00000000..febaf0b2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/H_bar.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Hbar; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = H; +}, +{ +pos = (31,223); +ref = strokelongcomb; +scale = (0.9,1); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = H; +}, +{ +pos = (0,226); +ref = strokelongcomb; +} +); +width = 618; +} +); +unicode = 294; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/H_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/H_circumflex.glyph new file mode 100644 index 00000000..15813541 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/H_circumflex.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Hcircumflex; +kernLeft = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = H; +}, +{ +pos = (0,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = H; +}, +{ +pos = (0,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 292; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_.glyph new file mode 100644 index 00000000..0d2d741c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_.glyph @@ -0,0 +1,160 @@ +{ +glyphname = I; +kernLeft = H; +kernRight = H; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = ogonek; +pos = (327,0); +}, +{ +name = top; +pos = (308,729); +}, +{ +name = topleft; +pos = (208,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,0,l), +(328,729,l), +(290,729,l), +(290,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,693,l), +(507,729,l), +(111,729,l), +(111,693,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,36,l), +(111,36,l), +(111,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = ogonek; +pos = (411,0); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topleft; +pos = (159,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(411,0,l), +(411,729,l), +(208,729,l), +(208,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,555,l), +(565,729,l), +(54,729,l), +(54,555,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,174,l), +(54,174,l), +(54,0,l) +); +} +); +width = 619; +} +); +metricLeft = H; +metricRight = H; +unicode = 73; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_.ss02.glyph new file mode 100644 index 00000000..71222dc5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_.ss02.glyph @@ -0,0 +1,157 @@ +{ +glyphname = I.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = ogonek; +pos = (506,0); +}, +{ +name = top; +pos = (309,729); +}, +{ +name = topleft; +pos = (130,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,27,l), +(328,703,l), +(290,703,l), +(290,27,l) +); +}, +{ +closed = 1; +nodes = ( +(506,693,l), +(506,729,l), +(112,729,l), +(112,693,l) +); +}, +{ +closed = 1; +nodes = ( +(506,0,l), +(506,36,l), +(112,36,l), +(112,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = ogonek; +pos = (567,0); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topleft; +pos = (64,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(408,158,l), +(408,571,l), +(205,571,l), +(205,158,l) +); +}, +{ +closed = 1; +nodes = ( +(567,555,l), +(567,729,l), +(52,729,l), +(52,555,l) +); +}, +{ +closed = 1; +nodes = ( +(567,0,l), +(567,174,l), +(52,174,l), +(52,0,l) +); +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_J_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_J_.glyph new file mode 100644 index 00000000..80a614ff --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_J_.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = IJ; +kernLeft = H; +kernRight = J; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (618,0); +ref = J; +} +); +width = 1236; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (619,0); +ref = J; +} +); +width = 1238; +} +); +unicode = 306; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_J_.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_J_.ss02.glyph new file mode 100644 index 00000000..46b6ab87 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_J_.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = IJ.ss02; +kernLeft = I.ss02; +kernRight = J; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (618,0); +ref = J; +} +); +width = 1236; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (619,0); +ref = J; +} +); +width = 1238; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_acute.glyph new file mode 100644 index 00000000..de09b80b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_acute.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Iacute; +kernLeft = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (38,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (49,51); +ref = acutecomb; +} +); +width = 619; +} +); +unicode = 205; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_acute.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_acute.ss02.glyph new file mode 100644 index 00000000..cda411b9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_acute.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Iacute.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (39,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (49,51); +ref = acutecomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_breve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_breve.glyph new file mode 100644 index 00000000..3a09f138 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_breve.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Ibreve; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-1,51); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (1,51); +ref = brevecomb; +} +); +width = 619; +} +); +unicode = 300; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_breve.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_breve.ss02.glyph new file mode 100644 index 00000000..dc4b91e7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_breve.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ibreve.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (0,51); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (1,51); +ref = brevecomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_circumflex.glyph new file mode 100644 index 00000000..676acab4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_circumflex.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Icircumflex; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-1,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (1,51); +ref = circumflexcomb; +} +); +width = 619; +} +); +unicode = 206; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_circumflex.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_circumflex.ss02.glyph new file mode 100644 index 00000000..559c2025 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_circumflex.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Icircumflex.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (0,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (1,51); +ref = circumflexcomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_dieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_dieresis.glyph new file mode 100644 index 00000000..c5c09f0f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_dieresis.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Idieresis; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-1,57); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (1,51); +ref = dieresiscomb; +} +); +width = 619; +} +); +unicode = 207; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_dieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_dieresis.ss01.glyph new file mode 100644 index 00000000..2d633741 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_dieresis.ss01.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = Idieresis.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-2,57); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (1,51); +ref = dieresiscomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_dieresis.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_dieresis.ss02.glyph new file mode 100644 index 00000000..86e4e601 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_dieresis.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Idieresis.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (0,57); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (1,51); +ref = dieresiscomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_dotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_dotaccent.glyph new file mode 100644 index 00000000..9c514336 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_dotaccent.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Idotaccent; +kernLeft = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-2,57); +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-6,51); +ref = dotaccentcomb; +} +); +width = 619; +} +); +unicode = 304; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_dotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_dotaccent.ss01.glyph new file mode 100644 index 00000000..a742f19f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_dotaccent.ss01.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = Idotaccent.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-2,57); +ref = dotaccentcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (0,51); +ref = dotaccentcomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_dotaccent.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_dotaccent.ss02.glyph new file mode 100644 index 00000000..14016303 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_dotaccent.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Idotaccent.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-1,57); +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-6,51); +ref = dotaccentcomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_dotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_dotbelow.glyph new file mode 100644 index 00000000..f4d4e125 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_dotbelow.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Idotbelow; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-1,0); +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +} +); +unicode = 7882; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_dotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_dotbelow.ss01.glyph new file mode 100644 index 00000000..b02c7a29 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_dotbelow.ss01.glyph @@ -0,0 +1,31 @@ +{ +color = 6; +glyphname = Idotbelow.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-2,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_dotbelow.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_dotbelow.ss02.glyph new file mode 100644 index 00000000..84ec16c9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_dotbelow.ss02.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Idotbelow.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_grave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_grave.glyph new file mode 100644 index 00000000..791098d9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_grave.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Igrave; +kernRight = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-41,57); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-48,51); +ref = gravecomb; +} +); +width = 619; +} +); +unicode = 204; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_grave.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_grave.ss02.glyph new file mode 100644 index 00000000..c3468c45 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_grave.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Igrave.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-40,57); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-48,51); +ref = gravecomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_hookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_hookabove.glyph new file mode 100644 index 00000000..329a5894 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_hookabove.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Ihookabove; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-1,57); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (8,51); +ref = hookabovecomb; +} +); +width = 619; +} +); +unicode = 7880; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_hookabove.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_hookabove.ss02.glyph new file mode 100644 index 00000000..1c66be3f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_hookabove.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ihookabove.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (0,57); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (8,51); +ref = hookabovecomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_macron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_macron.glyph new file mode 100644 index 00000000..a766cc54 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_macron.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Imacron; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-2,57); +ref = macroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (0,51); +ref = macroncomb; +} +); +width = 619; +} +); +unicode = 298; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_macron.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_macron.ss02.glyph new file mode 100644 index 00000000..2502eb6b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_macron.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Imacron.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (-1,57); +ref = macroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (0,51); +ref = macroncomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_ogonek.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_ogonek.glyph new file mode 100644 index 00000000..3389f5f9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_ogonek.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Iogonek; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (-35,0); +ref = ogonekcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (-14,0); +ref = ogonekcomb; +} +); +width = 619; +} +); +unicode = 302; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_ogonek.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_ogonek.ss02.glyph new file mode 100644 index 00000000..2f09d9b7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_ogonek.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Iogonek.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (144,0); +ref = ogonekcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (142,0); +ref = ogonekcomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_tilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_tilde.glyph new file mode 100644 index 00000000..db48a14f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_tilde.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Itilde; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I; +}, +{ +pos = (1,57); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I; +}, +{ +pos = (0,51); +ref = tildecomb; +} +); +width = 619; +} +); +unicode = 296; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/I_tilde.ss02.glyph b/sources/MonaSansMono.glyphspackage/glyphs/I_tilde.ss02.glyph new file mode 100644 index 00000000..25aa2e22 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/I_tilde.ss02.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Itilde.ss02; +kernLeft = I.ss02; +kernRight = I.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (2,57); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = I.ss02; +}, +{ +pos = (0,51); +ref = tildecomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/J_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/J_.glyph new file mode 100644 index 00000000..faa16366 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/J_.glyph @@ -0,0 +1,206 @@ +{ +glyphname = J; +kernLeft = J; +kernRight = J; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (391,0); +}, +{ +name = top; +pos = (457,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(345,-8,o), +(410,44,o), +(410,162,cs), +(410,729,l), +(372,729,l), +(372,167,ls), +(372,66,o), +(320,27,o), +(235,27,cs), +(198,27,o), +(168,36,o), +(148,50,c), +(148,13,l), +(168,1,o), +(199,-8,o), +(237,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(319,0,ls), +(429,0,o), +(476,57,o), +(476,170,cs), +(476,729,l), +(438,729,l), +(438,175,ls), +(438,81,o), +(410,35,o), +(318,35,cs), +(84,35,l), +(84,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,693,l), +(474,729,l), +(84,729,l), +(84,693,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (377,0); +}, +{ +name = top; +pos = (429,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(371,-7,o), +(470,59,o), +(470,227,cs), +(470,729,l), +(268,729,l), +(268,241,ls), +(268,187,o), +(243,158,o), +(178,158,cs), +(150,158,o), +(128,164,o), +(110,172,c), +(110,12,l), +(135,1,o), +(180,-7,o), +(223,-7,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(309,0,ls), +(456,0,o), +(530,74,o), +(530,221,cs), +(530,729,l), +(328,729,l), +(328,252,ls), +(328,196,o), +(304,174,o), +(248,174,cs), +(90,174,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(529,555,l), +(529,729,l), +(90,729,l), +(90,555,l) +); +} +); +width = 619; +} +); +unicode = 74; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/J_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/J_acute.glyph new file mode 100644 index 00000000..872b010f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/J_acute.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Jacute; +kernLeft = J; +kernRight = J; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = J; +}, +{ +pos = (187,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = J; +}, +{ +pos = (168,51); +ref = acutecomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/J_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/J_circumflex.glyph new file mode 100644 index 00000000..806df9a0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/J_circumflex.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Jcircumflex; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = J; +}, +{ +pos = (148,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = J; +}, +{ +pos = (120,51); +ref = circumflexcomb; +} +); +width = 619; +} +); +unicode = 308; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/K_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/K_.glyph new file mode 100644 index 00000000..a98bd717 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/K_.glyph @@ -0,0 +1,158 @@ +{ +glyphname = K; +kernLeft = H; +kernRight = K; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (306,0); +}, +{ +name = top; +pos = (306,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(591,0,l), +(304,425,l), +(564,729,l), +(517,729,l), +(135,282,l), +(135,231,l), +(277,398,l), +(547,0,l) +); +}, +{ +closed = 1; +nodes = ( +(143,0,l), +(143,729,l), +(104,729,l), +(104,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = top; +pos = (304,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(195,0,l), +(195,163,l), +(282,273,l), +(439,0,l), +(679,0,l), +(421,420,l), +(668,729,l), +(429,729,l), +(195,417,l), +(195,729,l), +(-8,729,l), +(-8,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(618,0,l), +(440,417,l), +(612,729,l), +(385,729,l), +(236,428,l), +(236,164,l), +(285,270,l), +(391,0,l) +); +}, +{ +closed = 1; +nodes = ( +(244,0,l), +(244,729,l), +(39,729,l), +(39,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 618; +} +); +metricLeft = H; +unicode = 75; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/K_commaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/K_commaaccent.glyph new file mode 100644 index 00000000..070652aa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/K_commaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Kcommaaccent; +kernLeft = H; +kernRight = K; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = K; +}, +{ +pos = (-28,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = K; +}, +{ +pos = (-24,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 310; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/L_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/L_.glyph new file mode 100644 index 00000000..125cc7f7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/L_.glyph @@ -0,0 +1,136 @@ +{ +glyphname = L; +kernLeft = H; +kernRight = L; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = center; +pos = (355,365); +}, +{ +name = top; +pos = (132,729); +}, +{ +name = topright; +pos = (244,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(577,0,l), +(577,37,l), +(132,37,l), +(151,15,l), +(151,729,l), +(114,729,l), +(114,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = center; +pos = (400,365); +}, +{ +name = top; +pos = (162,729); +}, +{ +name = topright; +pos = (321,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(603,0,l), +(603,179,l), +(236,179,l), +(262,151,l), +(262,729,l), +(60,729,l), +(60,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 618; +} +); +metricLeft = H; +unicode = 76; +userData = { +KernOnName = L; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/L_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/L_acute.glyph new file mode 100644 index 00000000..faed2956 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/L_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Lacute; +kernLeft = H; +kernRight = L; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +pos = (-138,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +pos = (-99,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 313; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/L_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/L_caron.glyph new file mode 100644 index 00000000..f51b208c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/L_caron.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Lcaron; +kernLeft = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +pos = (45,0); +ref = caroncomb.alt; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +pos = (132,0); +ref = caroncomb.alt; +} +); +width = 618; +} +); +unicode = 317; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/L_commaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/L_commaaccent.glyph new file mode 100644 index 00000000..8cd01853 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/L_commaaccent.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Lcommaaccent; +kernRight = L; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +pos = (-40,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +pos = (-32,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 315; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/L_dot.glyph b/sources/MonaSansMono.glyphspackage/glyphs/L_dot.glyph new file mode 100644 index 00000000..acb560e1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/L_dot.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = Ldot; +kernLeft = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (245,-14); +ref = periodcentered.loclCAT.case; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (318,-30); +ref = periodcentered.loclCAT.case; +} +); +width = 618; +} +); +unicode = 319; +userData = { +KernOnSpecialSpacing = { +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/L_dot.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/L_dot.ss01.glyph new file mode 100644 index 00000000..337973f5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/L_dot.ss01.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ldot.ss01; +kernLeft = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (243,-18); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (318,-32); +ref = periodcentered.loclCAT.case.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/L_slash.glyph b/sources/MonaSansMono.glyphspackage/glyphs/L_slash.glyph new file mode 100644 index 00000000..b7e8e620 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/L_slash.glyph @@ -0,0 +1,39 @@ +{ +color = 7; +glyphname = Lslash; +kernRight = Lslash; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (54,0); +ref = L; +}, +{ +pos = (-58,25); +ref = slashshortcomb.case; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (31,0); +ref = L; +}, +{ +pos = (-72,60); +ref = slashshortcomb.case; +} +); +width = 618; +} +); +metricRight = L; +unicode = 321; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/M_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/M_.glyph new file mode 100644 index 00000000..057837d3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/M_.glyph @@ -0,0 +1,216 @@ +{ +glyphname = M; +kernLeft = H; +kernRight = H; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(2,0,l), +(2,420,l), +(0,686,l), +(6,686,l), +(292,0,l), +(328,0,l), +(613,686,l), +(620,686,l), +(617,420,l), +(617,0,l), +(656,0,l), +(656,729,l), +(594,729,l), +(310,50,l), +(308,50,l), +(26,729,l), +(-36,729,l), +(-36,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(131,411,l), +(127,699,l), +(137,699,l), +(188,506,l), +(291,180,l), +(326,180,l), +(427,506,l), +(480,699,l), +(490,699,l), +(486,411,l), +(486,0,l), +(521,0,l), +(521,729,l), +(463,729,l), +(365,420,l), +(314,233,l), +(304,233,l), +(252,420,l), +(155,729,l), +(96,729,l), +(96,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(102,0,l), +(102,233,l), +(99,518,l), +(108,518,l), +(228,0,l), +(394,0,l), +(514,518,l), +(521,518,l), +(519,235,l), +(519,0,l), +(715,0,l), +(715,729,l), +(409,729,l), +(315,333,l), +(307,333,l), +(210,729,l), +(-96,729,l), +(-96,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(216,0,l), +(216,301,l), +(199,510,l), +(212,510,l), +(232,350,l), +(272,115,l), +(347,115,l), +(376,346,l), +(407,510,l), +(420,510,l), +(402,301,l), +(402,0,l), +(569,0,l), +(569,729,l), +(365,729,l), +(336,541,l), +(317,409,l), +(304,409,l), +(285,541,l), +(252,729,l), +(49,729,l), +(49,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +}; +width = 618; +} +); +metricLeft = H; +metricRight = H; +unicode = 77; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/N_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/N_.glyph new file mode 100644 index 00000000..cdd67d2c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/N_.glyph @@ -0,0 +1,192 @@ +{ +glyphname = N; +kernLeft = H; +kernRight = H; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(59,0,l), +(59,436,l), +(56,686,l), +(61,686,l), +(542,0,l), +(597,0,l), +(597,729,l), +(559,729,l), +(559,303,l), +(563,43,l), +(558,43,l), +(76,729,l), +(21,729,l), +(21,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(153,0,l), +(153,432,l), +(151,672,l), +(154,672,l), +(452,0,l), +(503,0,l), +(503,729,l), +(465,729,l), +(465,308,l), +(468,58,l), +(464,58,l), +(167,729,l), +(115,729,l), +(115,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,236,l), +(175,431,l), +(183,431,l), +(420,0,l), +(645,0,l), +(645,729,l), +(450,729,l), +(450,504,l), +(457,282,l), +(449,282,l), +(212,729,l), +(-27,729,l), +(-27,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,l), +(250,176,l), +(247,371,l), +(263,371,l), +(378,0,l), +(558,0,l), +(558,729,l), +(381,729,l), +(381,564,l), +(383,349,l), +(367,349,l), +(255,729,l), +(60,729,l), +(60,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = H; +}; +width = 618; +} +); +metricLeft = H; +metricRight = H; +unicode = 78; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/N_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/N_acute.glyph new file mode 100644 index 00000000..1b32118a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/N_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Nacute; +kernLeft = H; +kernRight = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = N; +}, +{ +pos = (39,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = N; +}, +{ +pos = (48,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 323; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/N_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/N_caron.glyph new file mode 100644 index 00000000..85b679c5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/N_caron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ncaron; +kernLeft = H; +kernRight = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = N; +}, +{ +pos = (0,57); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = N; +}, +{ +pos = (0,51); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 327; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/N_commaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/N_commaaccent.glyph new file mode 100644 index 00000000..1e9ad614 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/N_commaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ncommaaccent; +kernLeft = H; +kernRight = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = N; +}, +{ +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = N; +}, +{ +pos = (-19,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 325; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/N_tilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/N_tilde.glyph new file mode 100644 index 00000000..a7afe9c1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/N_tilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ntilde; +kernLeft = H; +kernRight = H; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = N; +}, +{ +pos = (2,57); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = N; +}, +{ +pos = (-1,51); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 209; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_.glyph new file mode 100644 index 00000000..2f2f99ef --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_.glyph @@ -0,0 +1,234 @@ +{ +glyphname = O; +kernLeft = O; +kernRight = O; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,365); +}, +{ +name = ogonek; +pos = (542,10); +}, +{ +name = top; +pos = (309,729); +}, +{ +name = topleft; +pos = (31,729); +}, +{ +name = topright; +pos = (432,699); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(464,-8,o), +(568,140,o), +(568,364,cs), +(568,587,o), +(466,736,o), +(309,736,cs), +(153,736,o), +(50,588,o), +(50,364,cs), +(50,142,o), +(152,-8,o), +(309,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,28,o), +(92,164,o), +(92,364,cs), +(92,564,o), +(174,700,o), +(309,700,cs), +(443,700,o), +(526,565,o), +(526,364,cs), +(526,164,o), +(443,28,o), +(309,28,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (310,365); +}, +{ +name = ogonek; +pos = (556,10); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topleft; +pos = (16,729); +}, +{ +name = topright; +pos = (427,709); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(534,-10,o), +(683,121,o), +(683,365,cs), +(683,608,o), +(534,739,o), +(310,739,cs), +(86,739,o), +(-63,608,o), +(-63,365,cs), +(-63,121,o), +(86,-10,o), +(310,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(214,166,o), +(150,222,o), +(150,365,cs), +(150,507,o), +(214,563,o), +(310,563,cs), +(406,563,o), +(470,507,o), +(470,365,cs), +(470,222,o), +(406,166,o), +(310,166,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(483,-10,o), +(599,122,o), +(599,365,cs), +(599,607,o), +(482,739,o), +(309,739,cs), +(136,739,o), +(20,607,o), +(20,365,cs), +(20,122,o), +(137,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,162,o), +(230,220,o), +(230,365,cs), +(230,509,o), +(264,567,o), +(309,567,cs), +(355,567,o), +(389,509,o), +(389,365,cs), +(389,221,o), +(355,162,o), +(309,162,cs) +); +} +); +width = 619; +} +); +metricRight = "=|"; +unicode = 79; +userData = { +KernOnName = O; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_E_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_E_.glyph new file mode 100644 index 00000000..598b8b88 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_E_.glyph @@ -0,0 +1,133 @@ +{ +glyphname = OE; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(278,-5,o), +(305,-3,o), +(331,0,c), +(601,0,l), +(601,37,l), +(373,37,l), +(373,358,l), +(589,358,l), +(589,392,l), +(373,392,l), +(373,693,l), +(601,693,l), +(601,729,l), +(331,729,l), +(305,732,o), +(278,734,o), +(257,734,cs), +(89,734,o), +(11,584,o), +(11,365,cs), +(11,145,o), +(89,-5,o), +(257,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(117,31,o), +(52,166,o), +(52,365,cs), +(52,563,o), +(117,698,o), +(257,698,cs), +(284,698,o), +(314,695,o), +(335,691,c), +(335,38,l), +(314,34,o), +(284,31,o), +(257,31,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(273,-4,o), +(295,-2,o), +(313,0,c), +(616,0,l), +(616,172,l), +(482,172,l), +(482,288,l), +(605,288,l), +(605,449,l), +(482,449,l), +(482,557,l), +(616,557,l), +(616,729,l), +(313,729,l), +(295,733,o), +(273,735,o), +(251,735,cs), +(98,735,o), +(6,593,o), +(6,365,cs), +(6,133,o), +(93,-4,o), +(251,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,168,o), +(195,238,o), +(195,365,cs), +(195,492,o), +(218,563,o), +(262,563,cs), +(276,563,o), +(287,560,o), +(297,554,c), +(297,175,l), +(287,170,o), +(276,168,o), +(262,168,cs) +); +} +); +width = 618; +} +); +metricLeft = O; +metricRight = E; +unicode = 338; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_acute.glyph new file mode 100644 index 00000000..ff3a202d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Oacute; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (39,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (49,51); +ref = acutecomb; +} +); +width = 619; +} +); +unicode = 211; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflex.glyph new file mode 100644 index 00000000..b60cf7e7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ocircumflex; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (0,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (1,51); +ref = circumflexcomb; +} +); +width = 619; +} +); +unicode = 212; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexacute.glyph new file mode 100644 index 00000000..cdf924db --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ocircumflexacute; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (50,57); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (76,51); +ref = circumflexcomb_acutecomb; +} +); +width = 619; +} +); +unicode = 7888; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexdotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexdotbelow.glyph new file mode 100644 index 00000000..6eae2657 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexdotbelow.glyph @@ -0,0 +1,42 @@ +{ +color = 6; +glyphname = Ocircumflexdotbelow; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +ref = dotbelowcomb; +}, +{ +pos = (0,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +}, +{ +pos = (1,51); +ref = circumflexcomb; +} +); +width = 619; +} +); +unicode = 7896; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexdotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..86031edc --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexdotbelow.ss01.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = Ocircumflexdotbelow.ss01; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (0,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +ref = dotbelowcomb.ss01; +}, +{ +pos = (1,51); +ref = circumflexcomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexgrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexgrave.glyph new file mode 100644 index 00000000..5f583e31 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexgrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ocircumflexgrave; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (28,57); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (36,51); +ref = circumflexcomb_gravecomb; +} +); +width = 619; +} +); +unicode = 7890; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexhookabove.glyph new file mode 100644 index 00000000..ae3a969a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflexhookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ocircumflexhookabove; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (44,57); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (47,51); +ref = circumflexcomb_hookabovecomb; +} +); +width = 619; +} +); +unicode = 7892; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_circumflextilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflextilde.glyph new file mode 100644 index 00000000..0c65f016 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_circumflextilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ocircumflextilde; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (8,57); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (1,51); +ref = circumflexcomb_tildecomb; +} +); +width = 619; +} +); +unicode = 7894; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_dieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_dieresis.glyph new file mode 100644 index 00000000..6859fc8b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_dieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Odieresis; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (0,57); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (1,51); +ref = dieresiscomb; +} +); +width = 619; +} +); +unicode = 214; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_dieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_dieresis.ss01.glyph new file mode 100644 index 00000000..fd94dc5c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_dieresis.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Odieresis.ss01; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (-1,57); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (1,51); +ref = dieresiscomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_dotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_dotbelow.glyph new file mode 100644 index 00000000..84b047fe --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_dotbelow.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Odotbelow; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +} +); +unicode = 7884; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_dotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_dotbelow.ss01.glyph new file mode 100644 index 00000000..60e652e8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_dotbelow.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Odotbelow.ss01; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_grave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_grave.glyph new file mode 100644 index 00000000..18151b99 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_grave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ograve; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (-40,57); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (-48,51); +ref = gravecomb; +} +); +width = 619; +} +); +unicode = 210; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_hookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_hookabove.glyph new file mode 100644 index 00000000..420aa986 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_hookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ohookabove; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (0,57); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (8,51); +ref = hookabovecomb; +} +); +width = 619; +} +); +unicode = 7886; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_horn.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_horn.glyph new file mode 100644 index 00000000..1c7e3660 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_horn.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ohorn; +kernLeft = O; +kernRight = Ohorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (188,190); +ref = horncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (242,119); +ref = horncomb; +} +); +width = 619; +} +); +unicode = 416; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_hornacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_hornacute.glyph new file mode 100644 index 00000000..0f02f876 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_hornacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ohornacute; +kernLeft = O; +kernRight = Ohorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (39,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (49,51); +ref = acutecomb; +} +); +width = 619; +} +); +unicode = 7898; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_horndotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_horndotbelow.glyph new file mode 100644 index 00000000..6502b5a8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_horndotbelow.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ohorndotbelow; +kernLeft = O; +kernRight = Ohorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +} +); +unicode = 7906; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_horndotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_horndotbelow.ss01.glyph new file mode 100644 index 00000000..4a3b8dcb --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_horndotbelow.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Ohorndotbelow.ss01; +kernLeft = O; +kernRight = Ohorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_horngrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_horngrave.glyph new file mode 100644 index 00000000..66fb2097 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_horngrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ohorngrave; +kernLeft = O; +kernRight = Ohorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (-40,57); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (-48,51); +ref = gravecomb; +} +); +width = 619; +} +); +unicode = 7900; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_hornhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_hornhookabove.glyph new file mode 100644 index 00000000..444186e3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_hornhookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ohornhookabove; +kernLeft = O; +kernRight = Ohorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (0,57); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (8,51); +ref = hookabovecomb; +} +); +width = 619; +} +); +unicode = 7902; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_horntilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_horntilde.glyph new file mode 100644 index 00000000..fa425219 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_horntilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ohorntilde; +kernLeft = O; +kernRight = Ohorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (2,57); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Ohorn; +}, +{ +pos = (0,51); +ref = tildecomb; +} +); +width = 619; +} +); +unicode = 7904; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_hungarumlaut.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_hungarumlaut.glyph new file mode 100644 index 00000000..72c08f44 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_hungarumlaut.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ohungarumlaut; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (40,57); +ref = hungarumlautcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (74,51); +ref = hungarumlautcomb; +} +); +width = 619; +} +); +unicode = 336; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_macron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_macron.glyph new file mode 100644 index 00000000..4fd54743 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_macron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Omacron; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (-1,57); +ref = macroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (0,51); +ref = macroncomb; +} +); +width = 619; +} +); +unicode = 332; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_slash.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_slash.glyph new file mode 100644 index 00000000..f9801159 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_slash.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Oslash; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (0,41); +ref = slashlongcomb.case; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (0,41); +ref = slashlongcomb.case; +} +); +width = 619; +} +); +unicode = 216; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/O_tilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/O_tilde.glyph new file mode 100644 index 00000000..b00eec1e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/O_tilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Otilde; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = O; +}, +{ +pos = (2,57); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = O; +}, +{ +pos = (0,51); +ref = tildecomb; +} +); +width = 619; +} +); +unicode = 213; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/P_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/P_.glyph new file mode 100644 index 00000000..d0165563 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/P_.glyph @@ -0,0 +1,196 @@ +{ +glyphname = P; +kernLeft = H; +kernRight = P; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (299,0); +}, +{ +name = top; +pos = (299,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(139,0,l), +(139,704,l), +(126,692,l), +(338,692,ls), +(455,692,o), +(521,623,o), +(521,509,cs), +(521,398,o), +(457,325,o), +(338,325,cs), +(130,325,l), +(130,289,l), +(340,289,ls), +(475,289,o), +(562,375,o), +(562,509,cs), +(562,649,o), +(477,729,o), +(341,729,cs), +(100,729,l), +(100,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (305,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,l), +(232,583,l), +(210,559,l), +(324,559,ls), +(367,559,o), +(421,549,o), +(421,474,cs), +(421,396,o), +(367,387,o), +(324,387,cs), +(216,387,l), +(216,232,l), +(360,232,ls), +(531,232,o), +(627,334,o), +(627,482,cs), +(627,639,o), +(521,729,o), +(360,729,cs), +(29,729,l), +(29,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(254,0,l), +(254,581,l), +(233,559,l), +(319,559,ls), +(360,559,o), +(393,538,o), +(393,475,cs), +(393,425,o), +(374,387,o), +(319,387,cs), +(239,387,l), +(239,222,l), +(336,222,ls), +(494,222,o), +(600,316,o), +(600,477,cs), +(600,630,o), +(517,729,o), +(336,729,cs), +(50,729,l), +(50,0,l) +); +} +); +width = 619; +} +); +metricLeft = H; +unicode = 80; +userData = { +KernOnName = P; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Q_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Q_.glyph new file mode 100644 index 00000000..03d1e264 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Q_.glyph @@ -0,0 +1,246 @@ +{ +color = 7; +glyphname = Q; +kernLeft = O; +kernRight = Q; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,365); +}, +{ +name = ogonek; +pos = (542,10); +}, +{ +name = top; +pos = (309,729); +}, +{ +name = topleft; +pos = (31,729); +}, +{ +name = topright; +pos = (432,699); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(414,14,l), +(414,30,l), +(482,51,o), +(568,189,o), +(568,364,cs), +(568,587,o), +(466,736,o), +(309,736,cs), +(153,736,o), +(50,588,o), +(50,364,cs), +(50,142,o), +(152,-8,o), +(309,-8,c) +); +}, +{ +closed = 1; +nodes = ( +(570,-2,l), +(570,32,l), +(478,30,l), +(308,10,l), +(308,-8,l) +); +}, +{ +closed = 1; +nodes = ( +(175,28,o), +(92,164,o), +(92,364,cs), +(92,564,o), +(174,700,o), +(309,700,cs), +(443,700,o), +(526,565,o), +(526,364,cs), +(526,164,o), +(443,28,o), +(309,28,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (310,365); +}, +{ +name = ogonek; +pos = (556,10); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topleft; +pos = (16,729); +}, +{ +name = topright; +pos = (427,709); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(465,-3,l), +(459,133,l), +(543,184,o), +(599,264,o), +(599,385,cs), +(599,604,o), +(491,739,o), +(309,739,cs), +(127,739,o), +(20,600,o), +(20,365,cs), +(20,122,o), +(137,-10,o), +(309,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(587,0,l), +(587,155,l), +(561,155,l), +(308,68,l), +(309,-10,l) +); +}, +{ +closed = 1; +nodes = ( +(264,162,o), +(230,220,o), +(230,365,cs), +(230,509,o), +(264,567,o), +(309,567,cs), +(355,567,o), +(389,509,o), +(389,365,cs), +(389,221,o), +(355,162,o), +(309,162,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = O; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = O; +}; +width = 619; +} +); +metricLeft = O; +unicode = 81; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/R_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/R_.glyph new file mode 100644 index 00000000..7543a3c9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/R_.glyph @@ -0,0 +1,315 @@ +{ +glyphname = R; +kernLeft = H; +kernRight = R; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (297,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(95,0,l), +(95,336,l), +(377,336,ls), +(503,336,o), +(534,291,o), +(534,200,cs), +(534,77,ls), +(534,45,o), +(535,22,o), +(545,0,c), +(584,0,l), +(573,26,o), +(573,50,o), +(573,73,cs), +(573,207,ls), +(573,291,o), +(543,341,o), +(457,354,c), +(457,361,l), +(545,386,o), +(588,450,o), +(588,540,cs), +(588,660,o), +(509,729,o), +(367,729,cs), +(57,729,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(95,693,l), +(363,693,ls), +(475,693,o), +(549,645,o), +(549,536,cs), +(549,439,o), +(496,371,o), +(363,371,cs), +(95,371,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(141,0,l), +(141,693,l), +(352,693,ls), +(440,693,o), +(498,645,o), +(498,536,cs), +(498,439,o), +(456,371,o), +(352,371,cs), +(133,371,l), +(133,336,l), +(363,336,ls), +(461,336,o), +(485,291,o), +(485,200,cs), +(485,77,ls), +(485,44,o), +(486,22,o), +(494,0,c), +(535,0,l), +(525,26,o), +(525,50,o), +(525,73,cs), +(525,207,ls), +(525,291,o), +(501,341,o), +(432,355,c), +(432,360,l), +(503,385,o), +(538,449,o), +(538,540,cs), +(538,660,o), +(472,729,o), +(357,729,cs), +(102,729,l), +(102,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (292,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(202,246,l), +(332,246,ls), +(405,246,o), +(425,215,o), +(425,166,cs), +(425,86,ls), +(425,48,o), +(429,16,o), +(437,0,c), +(641,0,l), +(628,29,o), +(628,59,o), +(628,87,cs), +(628,201,ls), +(628,281,o), +(591,323,o), +(522,338,c), +(522,345,l), +(597,362,o), +(647,430,o), +(647,514,cs), +(647,653,o), +(561,729,o), +(379,729,cs), +(-1,729,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,563,l), +(349,563,ls), +(401,563,o), +(439,544,o), +(439,486,cs), +(439,440,o), +(414,405,o), +(349,405,cs), +(202,405,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(260,0,l), +(260,563,l), +(330,563,ls), +(350,563,o), +(369,544,o), +(369,486,cs), +(369,440,o), +(358,405,o), +(330,405,cs), +(246,405,l), +(246,246,l), +(312,246,ls), +(351,246,o), +(362,215,o), +(362,166,cs), +(362,86,ls), +(362,48,o), +(366,17,o), +(372,0,c), +(578,0,l), +(568,29,o), +(568,59,o), +(568,87,cs), +(568,201,ls), +(568,282,o), +(537,326,o), +(475,341,c), +(475,348,l), +(535,369,o), +(579,435,o), +(579,524,cs), +(579,663,o), +(498,729,o), +(383,729,cs), +(55,729,l), +(55,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +}; +width = 618; +} +); +metricLeft = H; +unicode = 82; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/R_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/R_acute.glyph new file mode 100644 index 00000000..7311509b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/R_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Racute; +kernLeft = H; +kernRight = R; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = R; +}, +{ +pos = (27,57); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = R; +}, +{ +pos = (31,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 340; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/R_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/R_caron.glyph new file mode 100644 index 00000000..972a7e5c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/R_caron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Rcaron; +kernLeft = H; +kernRight = R; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = R; +}, +{ +pos = (-12,57); +ref = caroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = R; +}, +{ +pos = (-17,51); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 344; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/R_commaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/R_commaaccent.glyph new file mode 100644 index 00000000..48a818b2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/R_commaaccent.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Rcommaaccent; +kernRight = R; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = R; +}, +{ +pos = (-29,0); +ref = commaaccentcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = R; +}, +{ +pos = (-23,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 342; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/S_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/S_.glyph new file mode 100644 index 00000000..d41e0328 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/S_.glyph @@ -0,0 +1,285 @@ +{ +glyphname = S; +kernLeft = S; +kernRight = S; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = top; +pos = (301,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(470,-8,o), +(576,69,o), +(576,195,cs), +(576,340,o), +(450,372,o), +(388,385,cs), +(272,408,ls), +(210,420,o), +(100,448,o), +(100,555,cs), +(100,646,o), +(179,703,o), +(300,703,cs), +(431,703,o), +(507,641,o), +(511,529,c), +(551,529,l), +(548,654,o), +(465,737,o), +(304,737,cs), +(157,737,o), +(60,664,o), +(60,550,cs), +(60,419,o), +(186,387,o), +(266,370,cs), +(384,345,ls), +(433,335,o), +(536,313,o), +(536,193,cs), +(536,93,o), +(448,26,o), +(311,26,cs), +(157,26,o), +(87,102,o), +(83,225,c), +(42,225,l), +(45,90,o), +(126,-8,o), +(313,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-8,o), +(541,69,o), +(541,185,cs), +(541,340,o), +(442,372,o), +(326,397,cs), +(186,427,o), +(133,453,o), +(133,555,cs), +(133,644,o), +(195,703,o), +(301,703,cs), +(412,703,o), +(475,641,o), +(479,529,c), +(519,529,l), +(516,654,o), +(444,737,o), +(305,737,cs), +(170,737,o), +(91,662,o), +(91,550,cs), +(91,427,o), +(165,391,o), +(309,360,cs), +(444,331,o), +(500,294,o), +(500,183,cs), +(500,76,o), +(424,26,o), +(310,26,cs), +(180,26,o), +(122,101,o), +(118,225,c), +(76,225,l), +(79,90,o), +(149,-8,o), +(312,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +32 +); +stem = -2; +target = ( +0, +39 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = top; +pos = (312,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,-10,o), +(626,87,o), +(626,224,cs), +(626,410,o), +(493,441,o), +(375,458,cs), +(264,475,o), +(224,478,o), +(224,528,cs), +(224,563,o), +(257,584,o), +(307,584,cs), +(349,584,o), +(393,570,o), +(396,518,c), +(605,518,l), +(605,650,o), +(487,738,o), +(312,738,cs), +(125,738,o), +(9,650,o), +(9,501,cs), +(9,358,o), +(115,301,o), +(264,279,cs), +(376,262,o), +(410,257,o), +(410,203,cs), +(410,166,o), +(374,147,o), +(319,147,cs), +(237,147,o), +(205,181,o), +(205,231,c), +(-6,231,l), +(-6,86,o), +(106,-10,o), +(309,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(598,86,o), +(598,223,cs), +(598,357,o), +(529,431,o), +(375,456,cs), +(261,475,o), +(237,492,o), +(237,529,cs), +(237,567,o), +(264,587,o), +(302,587,cs), +(346,587,o), +(375,560,o), +(377,518,c), +(580,518,l), +(578,649,o), +(470,738,o), +(311,738,cs), +(139,738,o), +(32,650,o), +(32,502,cs), +(32,378,o), +(105,308,o), +(261,281,cs), +(366,263,o), +(389,251,o), +(389,205,cs), +(389,167,o), +(363,144,o), +(318,144,cs), +(260,144,o), +(225,176,o), +(224,231,c), +(21,231,l), +(21,86,o), +(124,-10,o), +(307,-10,cs) +); +} +); +width = 618; +} +); +unicode = 83; +userData = { +KernOnName = S; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/S_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/S_acute.glyph new file mode 100644 index 00000000..e3583e97 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/S_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Sacute; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (31,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (51,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 346; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/S_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/S_caron.glyph new file mode 100644 index 00000000..34b4823b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/S_caron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Scaron; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (-8,57); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (3,51); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 352; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/S_cedilla.glyph b/sources/MonaSansMono.glyphspackage/glyphs/S_cedilla.glyph new file mode 100644 index 00000000..daff8afd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/S_cedilla.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Scedilla; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (-2,0); +ref = cedillacomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (-21,0); +ref = cedillacomb; +} +); +width = 618; +} +); +unicode = 350; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/S_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/S_circumflex.glyph new file mode 100644 index 00000000..02d9da23 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/S_circumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Scircumflex; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (-8,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (3,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 348; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/S_commaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/S_commaaccent.glyph new file mode 100644 index 00000000..6d2a993b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/S_commaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Scommaaccent; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = S; +}, +{ +pos = (-22,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = S; +}, +{ +pos = (-17,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 536; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/T_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/T_.glyph new file mode 100644 index 00000000..dc3fafa4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/T_.glyph @@ -0,0 +1,133 @@ +{ +glyphname = T; +kernLeft = T; +kernRight = T; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,365); +}, +{ +name = top; +pos = (309,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,0,l), +(328,703,l), +(290,703,l), +(290,0,l) +); +}, +{ +closed = 1; +nodes = ( +(573,693,l), +(573,729,l), +(45,729,l), +(45,693,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (307,324); +}, +{ +name = top; +pos = (310,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(408,0,l), +(408,571,l), +(205,571,l), +(205,0,l) +); +}, +{ +closed = 1; +nodes = ( +(599,555,l), +(599,729,l), +(20,729,l), +(20,555,l) +); +} +); +width = 619; +} +); +unicode = 84; +userData = { +KernOnName = T; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/T_bar.glyph b/sources/MonaSansMono.glyphspackage/glyphs/T_bar.glyph new file mode 100644 index 00000000..dd7b0ecc --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/T_bar.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Tbar; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = T; +}, +{ +pos = (0,11); +ref = strokeshortcomb.case.T; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = T; +}, +{ +pos = (-3,-23); +ref = strokeshortcomb.case.T; +} +); +width = 619; +} +); +unicode = 358; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/T_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/T_caron.glyph new file mode 100644 index 00000000..d1b74caf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/T_caron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Tcaron; +kernLeft = T; +kernRight = T; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = T; +}, +{ +pos = (0,57); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = T; +}, +{ +pos = (1,51); +ref = caroncomb; +} +); +width = 619; +} +); +unicode = 356; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/T_cedilla.glyph b/sources/MonaSansMono.glyphspackage/glyphs/T_cedilla.glyph new file mode 100644 index 00000000..7c056741 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/T_cedilla.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Tcedilla; +kernRight = T; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = T; +}, +{ +pos = (-5,0); +ref = cedillacomb.T; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = T; +}, +{ +pos = (-22,0); +ref = cedillacomb.T; +} +); +width = 619; +} +); +unicode = 354; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/T_commaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/T_commaaccent.glyph new file mode 100644 index 00000000..f7088d40 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/T_commaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Tcommaaccent; +kernLeft = T; +kernRight = T; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = T; +}, +{ +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = T; +}, +{ +pos = (-18,0); +ref = commaaccentcomb; +} +); +width = 619; +} +); +unicode = 538; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/T_horn.glyph b/sources/MonaSansMono.glyphspackage/glyphs/T_horn.glyph new file mode 100644 index 00000000..dc588635 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/T_horn.glyph @@ -0,0 +1,193 @@ +{ +color = 7; +glyphname = Thorn; +kernLeft = H; +kernRight = Thorn; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (118,0); +}, +{ +name = ogonek; +pos = (137,0); +}, +{ +name = top; +pos = (118,729); +}, +{ +name = topleft; +pos = (18,729); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (102,0); +}, +{ +name = ogonek; +pos = (121,0); +}, +{ +name = top; +pos = (102,729); +}, +{ +name = topleft; +pos = (0,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(327,145,ls), +(477,144,o), +(573,231,o), +(573,365,cs), +(573,505,o), +(478,585,o), +(328,585,cs), +(103,585,l), +(103,548,l), +(325,548,ls), +(458,548,o), +(533,479,o), +(533,365,cs), +(533,254,o), +(459,180,o), +(325,181,cs), +(103,182,l), +(103,146,l) +); +}, +{ +closed = 1; +nodes = ( +(121,0,l), +(121,729,l), +(83,729,l), +(83,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(138,0,l), +(138,729,l), +(100,729,l), +(100,0,l) +); +}, +{ +pos = (35,0); +ref = _Thorn.bowl; +} +); +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (152,0); +}, +{ +name = ogonek; +pos = (253,0); +}, +{ +name = top; +pos = (152,729); +}, +{ +name = topleft; +pos = (1,729); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (13,0); +}, +{ +name = ogonek; +pos = (114,0); +}, +{ +name = top; +pos = (13,729); +}, +{ +name = topleft; +pos = (-138,729); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(223,111,ls), +(394,111,o), +(500,201,o), +(500,362,cs), +(500,523,o), +(394,613,o), +(223,613,cs), +(68,613,l), +(68,443,l), +(197,443,ls), +(255,443,o), +(294,420,o), +(294,362,cs), +(294,304,o), +(255,281,o), +(197,281,cs), +(68,281,l), +(68,111,l) +); +}, +{ +closed = 1; +nodes = ( +(114,0,l), +(114,729,l), +(-89,729,l), +(-89,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(253,729,l), +(50,729,l), +(50,0,l) +); +}, +{ +pos = (74,0); +ref = _Thorn.bowl; +} +); +width = 619; +} +); +metricLeft = P; +metricWidth = P; +unicode = 222; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_.glyph new file mode 100644 index 00000000..6ec42ce8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_.glyph @@ -0,0 +1,164 @@ +{ +glyphname = U; +kernLeft = U; +kernRight = U; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = ogonek; +pos = (386,0); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topright; +pos = (477,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-8,o), +(514,79,o), +(514,210,cs), +(514,729,l), +(476,729,l), +(476,214,ls), +(476,102,o), +(422,29,o), +(310,29,cs), +(208,29,o), +(143,89,o), +(143,214,cs), +(143,729,l), +(105,729,l), +(105,210,ls), +(105,72,o), +(183,-8,o), +(310,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = ogonek; +pos = (432,0); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topright; +pos = (403,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-10,o), +(569,78,o), +(569,234,cs), +(569,729,l), +(366,729,l), +(366,240,ls), +(366,198,o), +(345,176,o), +(310,176,cs), +(273,176,o), +(253,199,o), +(253,240,cs), +(253,729,l), +(50,729,l), +(50,234,ls), +(50,88,o), +(143,-10,o), +(308,-10,cs) +); +} +); +width = 619; +} +); +unicode = 85; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_acute.glyph new file mode 100644 index 00000000..e8dfab4c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uacute; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (40,57); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (49,51); +ref = acutecomb; +} +); +width = 619; +} +); +unicode = 218; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_breve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_breve.glyph new file mode 100644 index 00000000..a815c9ed --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_breve.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ubreve; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,51); +ref = brevecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,51); +ref = brevecomb; +} +); +width = 619; +} +); +unicode = 364; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_circumflex.glyph new file mode 100644 index 00000000..8def0185 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_circumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ucircumflex; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,57); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,51); +ref = circumflexcomb; +} +); +width = 619; +} +); +unicode = 219; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_dieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_dieresis.glyph new file mode 100644 index 00000000..84ee3238 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_dieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Udieresis; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,57); +ref = dieresiscomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,51); +ref = dieresiscomb; +} +); +width = 619; +} +); +unicode = 220; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_dieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_dieresis.ss01.glyph new file mode 100644 index 00000000..44ea8153 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_dieresis.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Udieresis.ss01; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (0,57); +ref = dieresiscomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,51); +ref = dieresiscomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_dotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_dotbelow.glyph new file mode 100644 index 00000000..637e3826 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_dotbelow.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Udotbelow; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +} +); +unicode = 7908; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_dotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_dotbelow.ss01.glyph new file mode 100644 index 00000000..a79112eb --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_dotbelow.ss01.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = Udotbelow.ss01; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_grave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_grave.glyph new file mode 100644 index 00000000..7537a1b4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_grave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ugrave; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (-39,57); +ref = gravecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (-48,51); +ref = gravecomb; +} +); +width = 619; +} +); +unicode = 217; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_hookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_hookabove.glyph new file mode 100644 index 00000000..eac4b7c2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_hookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uhookabove; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,57); +ref = hookabovecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (8,51); +ref = hookabovecomb; +} +); +width = 619; +} +); +unicode = 7910; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_horn.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_horn.glyph new file mode 100644 index 00000000..8a52e813 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_horn.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uhorn; +kernLeft = U; +kernRight = Uhorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (233,220); +ref = horncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (218,139); +ref = horncomb; +} +); +width = 619; +} +); +unicode = 431; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_hornacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_hornacute.glyph new file mode 100644 index 00000000..6be1ac66 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_hornacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uhornacute; +kernLeft = U; +kernRight = Uhorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (40,57); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (49,51); +ref = acutecomb; +} +); +width = 619; +} +); +unicode = 7912; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_horndotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_horndotbelow.glyph new file mode 100644 index 00000000..cd159d67 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_horndotbelow.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uhorndotbelow; +kernLeft = U; +kernRight = Uhorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +} +); +unicode = 7920; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_horndotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_horndotbelow.ss01.glyph new file mode 100644 index 00000000..ed968752 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_horndotbelow.ss01.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = Uhorndotbelow.ss01; +kernLeft = U; +kernRight = Uhorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_horngrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_horngrave.glyph new file mode 100644 index 00000000..3a1e2837 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_horngrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uhorngrave; +kernLeft = U; +kernRight = Uhorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (-39,57); +ref = gravecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (-48,51); +ref = gravecomb; +} +); +width = 619; +} +); +unicode = 7914; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_hornhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_hornhookabove.glyph new file mode 100644 index 00000000..3cca043d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_hornhookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uhornhookabove; +kernLeft = U; +kernRight = Uhorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (1,57); +ref = hookabovecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (8,51); +ref = hookabovecomb; +} +); +width = 619; +} +); +unicode = 7916; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_horntilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_horntilde.glyph new file mode 100644 index 00000000..e0d96c43 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_horntilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uhorntilde; +kernLeft = U; +kernRight = Uhorn; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (3,57); +ref = tildecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Uhorn; +}, +{ +pos = (0,51); +ref = tildecomb; +} +); +width = 619; +} +); +unicode = 7918; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_hungarumlaut.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_hungarumlaut.glyph new file mode 100644 index 00000000..9e160f8f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_hungarumlaut.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uhungarumlaut; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (41,57); +ref = hungarumlautcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (74,51); +ref = hungarumlautcomb; +} +); +width = 619; +} +); +unicode = 368; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_macron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_macron.glyph new file mode 100644 index 00000000..0daf89d8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_macron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Umacron; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (0,57); +ref = macroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (0,51); +ref = macroncomb; +} +); +width = 619; +} +); +unicode = 362; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_ogonek.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_ogonek.glyph new file mode 100644 index 00000000..a0f4efa5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_ogonek.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uogonek; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (60,2); +ref = ogonekcomb.e; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (39,0); +ref = ogonekcomb.e; +} +); +width = 619; +} +); +unicode = 370; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_ring.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_ring.glyph new file mode 100644 index 00000000..5abe9b6d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_ring.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Uring; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,57); +ref = ringcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (1,51); +ref = ringcomb; +} +); +width = 619; +} +); +unicode = 366; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/U_tilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/U_tilde.glyph new file mode 100644 index 00000000..ca5f3882 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/U_tilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Utilde; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = U; +}, +{ +pos = (3,57); +ref = tildecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = U; +}, +{ +pos = (0,51); +ref = tildecomb; +} +); +width = 619; +} +); +unicode = 360; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/V_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/V_.glyph new file mode 100644 index 00000000..bdc69e1e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/V_.glyph @@ -0,0 +1,145 @@ +{ +glyphname = V; +kernLeft = V; +kernRight = V; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(336,0,l), +(619,729,l), +(579,729,l), +(350,135,l), +(312,35,l), +(306,35,l), +(268,135,l), +(41,729,l), +(-1,729,l), +(282,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(334,0,l), +(570,729,l), +(531,729,l), +(365,213,l), +(314,36,l), +(304,36,l), +(255,210,l), +(88,729,l), +(50,729,l), +(285,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(446,0,l), +(688,729,l), +(461,729,l), +(352,336,l), +(313,193,l), +(305,193,l), +(265,337,l), +(157,729,l), +(-70,729,l), +(173,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(437,0,l), +(613,729,l), +(406,729,l), +(329,344,l), +(316,251,l), +(303,251,l), +(289,344,l), +(211,729,l), +(4,729,l), +(182,0,l) +); +} +); +width = 618; +} +); +unicode = 86; +userData = { +KernOnName = V; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/W_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/W_.glyph new file mode 100644 index 00000000..4389eb4b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/W_.glyph @@ -0,0 +1,180 @@ +{ +glyphname = W; +kernLeft = W; +kernRight = W; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(95,0,l), +(306,692,l), +(311,692,l), +(522,0,l), +(579,0,l), +(751,729,l), +(710,729,l), +(603,271,l), +(552,42,l), +(546,42,l), +(337,729,l), +(281,729,l), +(72,43,l), +(67,43,l), +(15,270,l), +(-92,729,l), +(-133,729,l), +(39,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(187,0,l), +(266,403,l), +(307,608,l), +(311,608,l), +(352,403,l), +(431,0,l), +(486,0,l), +(604,729,l), +(565,729,l), +(488,218,l), +(457,29,l), +(453,29,l), +(424,218,l), +(340,640,l), +(278,640,l), +(194,218,l), +(165,29,l), +(161,29,l), +(130,218,l), +(53,729,l), +(14,729,l), +(132,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(226,0,l), +(306,450,l), +(314,450,l), +(391,0,l), +(667,0,l), +(815,729,l), +(591,729,l), +(543,397,l), +(522,219,l), +(514,219,l), +(433,729,l), +(187,729,l), +(110,221,l), +(101,221,l), +(77,400,l), +(26,729,l), +(-198,729,l), +(-50,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,l), +(290,228,l), +(302,400,l), +(317,400,l), +(328,228,l), +(353,0,l), +(531,0,l), +(618,729,l), +(441,729,l), +(433,404,l), +(429,189,l), +(414,189,l), +(396,355,l), +(364,610,l), +(254,610,l), +(223,338,l), +(207,191,l), +(192,191,l), +(187,385,l), +(176,729,l), +(0,729,l), +(86,0,l) +); +} +); +width = 618; +} +); +unicode = 87; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/W_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/W_acute.glyph new file mode 100644 index 00000000..f08f3100 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/W_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Wacute; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (39,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (48,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 7810; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/W_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/W_circumflex.glyph new file mode 100644 index 00000000..5e4c47c7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/W_circumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Wcircumflex; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (0,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (0,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 372; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/W_dieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/W_dieresis.glyph new file mode 100644 index 00000000..40893898 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/W_dieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Wdieresis; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (0,57); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (0,51); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 7812; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/W_dieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/W_dieresis.ss01.glyph new file mode 100644 index 00000000..0987c944 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/W_dieresis.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Wdieresis.ss01; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (-1,57); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (0,51); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/W_grave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/W_grave.glyph new file mode 100644 index 00000000..e28acbb3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/W_grave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Wgrave; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = W; +}, +{ +pos = (-40,57); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = W; +}, +{ +pos = (-49,51); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 7808; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/X_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/X_.glyph new file mode 100644 index 00000000..065c0b39 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/X_.glyph @@ -0,0 +1,166 @@ +{ +glyphname = X; +kernLeft = X; +kernRight = X; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (308,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(49,0,l), +(307,368,l), +(309,368,l), +(567,0,l), +(613,0,l), +(335,397,l), +(568,729,l), +(525,729,l), +(310,422,l), +(307,422,l), +(92,729,l), +(49,729,l), +(282,396,l), +(4,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,l), +(222,236,l), +(303,368,l), +(313,368,l), +(393,236,l), +(549,0,l), +(594,0,l), +(334,397,l), +(555,729,l), +(514,729,l), +(380,531,l), +(313,422,l), +(303,422,l), +(238,531,l), +(105,729,l), +(62,729,l), +(283,396,l), +(24,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = top; +pos = (310,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(150,0,l), +(304,243,l), +(309,243,l), +(463,0,l), +(703,0,l), +(442,389,l), +(676,729,l), +(437,729,l), +(309,518,l), +(304,518,l), +(176,729,l), +(-63,729,l), +(176,388,l), +(-85,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(208,0,l), +(273,134,l), +(301,223,l), +(314,223,l), +(343,134,l), +(405,0,l), +(619,0,l), +(417,398,l), +(598,729,l), +(387,729,l), +(336,618,l), +(314,537,l), +(301,537,l), +(279,618,l), +(227,729,l), +(16,729,l), +(201,397,l), +(-1,0,l) +); +} +); +width = 618; +} +); +unicode = 88; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_.glyph new file mode 100644 index 00000000..8d10e62a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_.glyph @@ -0,0 +1,171 @@ +{ +glyphname = Y; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topleft; +pos = (46,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(327,0,l), +(327,300,l), +(599,729,l), +(556,729,l), +(311,337,l), +(307,337,l), +(63,729,l), +(19,729,l), +(289,300,l), +(289,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(327,0,l), +(327,300,l), +(587,729,l), +(542,729,l), +(412,513,l), +(313,337,l), +(304,337,l), +(206,513,l), +(77,729,l), +(32,729,l), +(290,300,l), +(290,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topleft; +pos = (-43,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(410,0,l), +(410,269,l), +(681,729,l), +(451,729,l), +(312,467,l), +(304,467,l), +(168,729,l), +(-63,729,l), +(207,269,l), +(207,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(411,0,l), +(412,305,l), +(618,729,l), +(408,729,l), +(346,579,l), +(314,470,l), +(302,470,l), +(271,579,l), +(210,729,l), +(0,729,l), +(206,300,l), +(206,0,l) +); +} +); +width = 618; +} +); +unicode = 89; +userData = { +KernOnName = Y; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_acute.glyph new file mode 100644 index 00000000..904c993c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Yacute; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (40,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (49,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 221; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_circumflex.glyph new file mode 100644 index 00000000..a891fe65 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_circumflex.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ycircumflex; +kernRight = Y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (1,57); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (1,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 374; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_dieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_dieresis.glyph new file mode 100644 index 00000000..06c7a374 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_dieresis.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ydieresis; +kernRight = Y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (1,57); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (1,51); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 376; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_dieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_dieresis.ss01.glyph new file mode 100644 index 00000000..7b5bce0e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_dieresis.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = Ydieresis.ss01; +kernRight = Y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (0,57); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (1,51); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_dotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_dotbelow.glyph new file mode 100644 index 00000000..78a189b4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_dotbelow.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ydotbelow; +kernRight = Y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 618; +} +); +unicode = 7924; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_dotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_dotbelow.ss01.glyph new file mode 100644 index 00000000..eab097a1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_dotbelow.ss01.glyph @@ -0,0 +1,31 @@ +{ +color = 6; +glyphname = Ydotbelow.ss01; +kernRight = Y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_grave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_grave.glyph new file mode 100644 index 00000000..e1cb1698 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_grave.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Ygrave; +kernRight = Y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (-39,57); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (-48,51); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 7922; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_hookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_hookabove.glyph new file mode 100644 index 00000000..d7b40465 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_hookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Yhookabove; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (1,57); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (8,51); +ref = hookabovecomb; +} +); +width = 618; +} +); +unicode = 7926; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Y_tilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Y_tilde.glyph new file mode 100644 index 00000000..9fe52d56 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Y_tilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Ytilde; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Y; +}, +{ +pos = (3,57); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Y; +}, +{ +pos = (0,51); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 7928; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Z_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Z_.glyph new file mode 100644 index 00000000..14c6120f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Z_.glyph @@ -0,0 +1,113 @@ +{ +glyphname = Z; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = center; +pos = (308,365); +}, +{ +name = top; +pos = (308,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(579,0,l), +(579,37,l), +(91,37,l), +(567,701,l), +(567,729,l), +(54,729,l), +(54,693,l), +(515,693,l), +(39,29,l), +(39,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,365); +}, +{ +name = top; +pos = (309,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(598,0,l), +(598,172,l), +(264,172,l), +(589,554,l), +(589,729,l), +(36,729,l), +(36,556,l), +(340,556,l), +(18,173,l), +(18,0,l) +); +} +); +width = 618; +} +); +unicode = 90; +userData = { +KernOnName = Z; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Z_acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Z_acute.glyph new file mode 100644 index 00000000..8009095b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Z_acute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Zacute; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Z; +}, +{ +pos = (38,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Z; +}, +{ +pos = (48,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 377; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Z_caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Z_caron.glyph new file mode 100644 index 00000000..6da19ccd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Z_caron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Zcaron; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Z; +}, +{ +pos = (-1,57); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Z; +}, +{ +pos = (0,51); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 381; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Z_dotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Z_dotaccent.glyph new file mode 100644 index 00000000..d71fc761 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Z_dotaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = Zdotaccent; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Z; +}, +{ +pos = (-2,57); +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Z; +}, +{ +pos = (-7,51); +ref = dotaccentcomb; +} +); +width = 618; +} +); +unicode = 379; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/Z_dotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/Z_dotaccent.ss01.glyph new file mode 100644 index 00000000..def75ea1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/Z_dotaccent.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = Zdotaccent.ss01; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = Z; +}, +{ +pos = (-2,57); +ref = dotaccentcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = Z; +}, +{ +pos = (-1,51); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_B_.currency.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_B_.currency.glyph new file mode 100644 index 00000000..985daafa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_B_.currency.glyph @@ -0,0 +1,130 @@ +{ +category = ""; +export = 0; +glyphname = _B.currency; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (328,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(353,0,ls), +(496,0,o), +(587,78,o), +(587,200,cs), +(587,285,o), +(538,356,o), +(441,374,c), +(441,377,l), +(529,397,o), +(568,464,o), +(568,543,cs), +(568,654,o), +(489,729,o), +(354,729,cs), +(69,729,l), +(69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,356,l), +(371,356,ls), +(483,356,o), +(547,298,o), +(547,202,cs), +(547,104,o), +(481,36,o), +(353,36,cs), +(107,36,l) +); +}, +{ +closed = 1; +nodes = ( +(107,694,l), +(353,694,ls), +(460,694,o), +(530,635,o), +(530,538,cs), +(530,450,o), +(474,391,o), +(369,391,cs), +(107,391,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (326,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(355,0,ls), +(543,0,o), +(632,85,o), +(632,212,cs), +(632,293,o), +(588,359,o), +(509,376,c), +(509,385,l), +(571,405,o), +(612,467,o), +(612,541,cs), +(612,654,o), +(539,729,o), +(384,729,cs), +(20,729,l), +(20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(217,299,l), +(331,299,ls), +(390,299,o), +(416,273,o), +(416,226,cs), +(416,179,o), +(390,153,o), +(331,153,cs), +(217,153,l) +); +}, +{ +closed = 1; +nodes = ( +(217,576,l), +(322,576,ls), +(368,576,o), +(398,555,o), +(398,511,cs), +(398,472,o), +(374,446,o), +(322,446,cs), +(217,446,l) +); +} +); +width = 619; +} +); +subCategory = ""; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_T_horn.bowl.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_T_horn.bowl.glyph new file mode 100644 index 00000000..453d8f2a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_T_horn.bowl.glyph @@ -0,0 +1,80 @@ +{ +category = ""; +export = 0; +glyphname = _Thorn.bowl; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (73,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(298,145,ls), +(448,145,o), +(544,231,o), +(544,365,cs), +(544,505,o), +(449,585,o), +(299,585,cs), +(74,585,l), +(74,548,l), +(296,548,ls), +(429,548,o), +(504,479,o), +(504,365,cs), +(504,254,o), +(430,181,o), +(296,181,cs), +(74,181,l), +(74,145,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (38,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(248,111,ls), +(419,111,o), +(525,201,o), +(525,362,cs), +(525,523,o), +(419,613,o), +(248,613,cs), +(93,613,l), +(93,443,l), +(222,443,ls), +(280,443,o), +(319,420,o), +(319,362,cs), +(319,304,o), +(280,281,o), +(222,281,cs), +(93,281,l), +(93,111,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +script = ""; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_baht.bar.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_baht.bar.glyph new file mode 100644 index 00000000..e29f11ce --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_baht.bar.glyph @@ -0,0 +1,218 @@ +{ +category = ""; +export = 0; +glyphname = _baht.bar; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (353,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(378,0,ls), +(521,0,o), +(612,78,o), +(612,200,cs), +(612,285,o), +(563,356,o), +(466,374,c), +(466,377,l), +(554,397,o), +(593,464,o), +(593,543,cs), +(593,654,o), +(514,729,o), +(379,729,cs), +(94,729,l), +(94,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,-85,l), +(325,22,l), +(293,22,l), +(293,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(132,356,l), +(396,356,ls), +(508,356,o), +(572,298,o), +(572,202,cs), +(572,104,o), +(506,36,o), +(378,36,cs), +(132,36,l) +); +}, +{ +closed = 1; +nodes = ( +(132,694,l), +(378,694,ls), +(485,694,o), +(555,635,o), +(555,538,cs), +(555,450,o), +(499,391,o), +(394,391,cs), +(132,391,l) +); +}, +{ +closed = 1; +nodes = ( +(325,714,l), +(325,814,l), +(293,814,l), +(293,714,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(325,-85,l), +(325,22,l), +(293,22,l), +(293,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(325,714,l), +(325,814,l), +(293,814,l), +(293,714,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (341,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(370,0,ls), +(558,0,o), +(647,85,o), +(647,212,cs), +(647,293,o), +(603,359,o), +(524,376,c), +(524,385,l), +(586,405,o), +(627,467,o), +(627,541,cs), +(627,654,o), +(554,729,o), +(399,729,cs), +(35,729,l), +(35,0,l) +); +}, +{ +closed = 1; +nodes = ( +(364,-85,l), +(364,90,l), +(254,90,l), +(254,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(232,299,l), +(346,299,ls), +(405,299,o), +(431,273,o), +(431,226,cs), +(431,179,o), +(405,153,o), +(346,153,cs), +(232,153,l) +); +}, +{ +closed = 1; +nodes = ( +(232,576,l), +(337,576,ls), +(383,576,o), +(413,555,o), +(413,511,cs), +(413,472,o), +(389,446,o), +(337,446,cs), +(232,446,l) +); +}, +{ +closed = 1; +nodes = ( +(364,689,l), +(364,815,l), +(255,815,l), +(255,689,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-85,l), +(364,90,l), +(254,90,l), +(254,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(364,689,l), +(364,815,l), +(255,815,l), +(255,689,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +script = ""; +userData = { +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_bitcoin.bars.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_bitcoin.bars.glyph new file mode 100644 index 00000000..047aeb76 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_bitcoin.bars.glyph @@ -0,0 +1,372 @@ +{ +export = 0; +glyphname = _bitcoin.bars; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (352,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,ls), +(520,0,o), +(611,78,o), +(611,200,cs), +(611,285,o), +(562,356,o), +(465,374,c), +(465,377,l), +(553,397,o), +(592,464,o), +(592,543,cs), +(592,654,o), +(513,729,o), +(378,729,cs), +(93,729,l), +(93,0,l) +); +}, +{ +closed = 1; +nodes = ( +(250,-85,l), +(250,22,l), +(218,22,l), +(218,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(400,-85,l), +(400,22,l), +(368,22,l), +(368,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(131,356,l), +(395,356,ls), +(507,356,o), +(571,298,o), +(571,202,cs), +(571,104,o), +(505,36,o), +(377,36,cs), +(131,36,l) +); +}, +{ +closed = 1; +nodes = ( +(131,694,l), +(377,694,ls), +(484,694,o), +(554,635,o), +(554,538,cs), +(554,450,o), +(498,391,o), +(393,391,cs), +(131,391,l) +); +}, +{ +closed = 1; +nodes = ( +(250,714,l), +(250,814,l), +(218,814,l), +(218,714,l) +); +}, +{ +closed = 1; +nodes = ( +(400,714,l), +(400,814,l), +(368,814,l), +(368,714,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(250,-85,l), +(250,22,l), +(218,22,l), +(218,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(400,-85,l), +(400,22,l), +(368,22,l), +(368,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(250,714,l), +(250,814,l), +(218,814,l), +(218,714,l) +); +}, +{ +closed = 1; +nodes = ( +(400,714,l), +(400,814,l), +(368,814,l), +(368,714,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (352,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,ls), +(569,0,o), +(658,85,o), +(658,212,cs), +(658,293,o), +(614,359,o), +(535,376,c), +(535,385,l), +(597,405,o), +(638,467,o), +(638,541,cs), +(638,654,o), +(565,729,o), +(410,729,cs), +(46,729,l), +(46,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,-85,l), +(275,90,l), +(165,90,l), +(165,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(454,-85,l), +(454,90,l), +(344,90,l), +(344,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(243,299,l), +(357,299,ls), +(416,299,o), +(442,273,o), +(442,226,cs), +(442,179,o), +(416,153,o), +(357,153,cs), +(243,153,l) +); +}, +{ +closed = 1; +nodes = ( +(243,576,l), +(348,576,ls), +(394,576,o), +(424,555,o), +(424,511,cs), +(424,472,o), +(400,446,o), +(348,446,cs), +(243,446,l) +); +}, +{ +closed = 1; +nodes = ( +(275,689,l), +(275,815,l), +(166,815,l), +(166,689,l) +); +}, +{ +closed = 1; +nodes = ( +(454,689,l), +(454,815,l), +(345,815,l), +(345,689,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(275,-85,l), +(275,90,l), +(165,90,l), +(165,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(454,-85,l), +(454,90,l), +(344,90,l), +(344,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(275,689,l), +(275,815,l), +(166,815,l), +(166,689,l) +); +}, +{ +closed = 1; +nodes = ( +(454,689,l), +(454,815,l), +(345,815,l), +(345,689,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +}; +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_circle.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_circle.glyph new file mode 100644 index 00000000..b064f4b9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_circle.glyph @@ -0,0 +1,124 @@ +{ +export = 0; +glyphname = _circle; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(534,-10,o), +(685,140,o), +(685,363,cs), +(685,587,o), +(534,736,o), +(309,736,cs), +(85,736,o), +(-66,587,o), +(-66,363,cs), +(-66,140,o), +(85,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(106,21,o), +(-32,159,o), +(-32,363,cs), +(-32,567,o), +(106,706,o), +(309,706,cs), +(513,706,o), +(651,567,o), +(651,363,cs), +(651,159,o), +(513,21,o), +(309,21,cs) +); +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(532,-9,o), +(694,141,o), +(694,365,cs), +(694,589,o), +(532,739,o), +(308,739,cs), +(84,739,o), +(-78,589,o), +(-78,365,cs), +(-78,141,o), +(84,-9,o), +(308,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,62,o), +(0,183,o), +(0,365,cs), +(0,547,o), +(124,668,o), +(308,668,cs), +(492,668,o), +(616,547,o), +(616,365,cs), +(616,183,o), +(492,62,o), +(308,62,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-9,o), +(697,141,o), +(697,365,cs), +(697,589,o), +(533,739,o), +(310,739,cs), +(86,739,o), +(-78,589,o), +(-78,365,cs), +(-78,141,o), +(86,-9,o), +(310,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(128,68,o), +(6,187,o), +(6,365,cs), +(6,544,o), +(129,663,o), +(310,663,cs), +(490,663,o), +(613,544,o), +(613,365,cs), +(613,187,o), +(491,68,o), +(310,68,cs) +); +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_copyright.C_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_copyright.C_.glyph new file mode 100644 index 00000000..05592fec --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_copyright.C_.glyph @@ -0,0 +1,323 @@ +{ +export = 0; +glyphname = _copyright.C; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (309,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(534,-10,o), +(685,140,o), +(685,363,cs), +(685,587,o), +(534,736,o), +(309,736,cs), +(85,736,o), +(-66,587,o), +(-66,363,cs), +(-66,140,o), +(85,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(106,21,o), +(-32,159,o), +(-32,363,cs), +(-32,567,o), +(106,706,o), +(309,706,cs), +(513,706,o), +(651,567,o), +(651,363,cs), +(651,159,o), +(513,21,o), +(309,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(414,160,o), +(480,217,o), +(488,300,c), +(453,300,l), +(445,231,o), +(389,192,o), +(318,192,cs), +(227,192,o), +(166,257,o), +(166,362,cs), +(166,464,o), +(224,535,o), +(319,535,cs), +(381,535,o), +(439,503,o), +(452,435,c), +(486,435,l), +(477,513,o), +(410,567,o), +(321,567,cs), +(206,567,o), +(131,484,o), +(131,362,cs), +(131,241,o), +(206,160,o), +(318,160,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(414,160,o), +(480,217,o), +(488,300,c), +(453,300,l), +(445,231,o), +(389,192,o), +(318,192,cs), +(227,192,o), +(166,257,o), +(166,362,cs), +(166,464,o), +(224,535,o), +(319,535,cs), +(381,535,o), +(439,503,o), +(452,435,c), +(486,435,l), +(477,513,o), +(410,567,o), +(321,567,cs), +(206,567,o), +(131,484,o), +(131,362,cs), +(131,241,o), +(206,160,o), +(318,160,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (310,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,-9,o), +(697,141,o), +(697,365,cs), +(697,589,o), +(533,739,o), +(310,739,cs), +(86,739,o), +(-78,589,o), +(-78,365,cs), +(-78,141,o), +(86,-9,o), +(310,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(128,68,o), +(6,187,o), +(6,365,cs), +(6,544,o), +(129,663,o), +(310,663,cs), +(490,663,o), +(613,544,o), +(613,365,cs), +(613,187,o), +(491,68,o), +(310,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(428,163,o), +(508,225,o), +(511,319,c), +(378,319,l), +(374,293,o), +(353,274,o), +(316,274,cs), +(275,274,o), +(248,301,o), +(248,365,cs), +(248,420,o), +(269,455,o), +(317,455,cs), +(347,455,o), +(371,441,o), +(377,410,c), +(511,410,l), +(509,499,o), +(434,567,o), +(320,567,cs), +(191,567,o), +(108,488,o), +(108,365,cs), +(108,243,o), +(190,163,o), +(316,163,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(428,163,o), +(508,225,o), +(511,319,c), +(378,319,l), +(374,293,o), +(353,274,o), +(316,274,cs), +(275,274,o), +(248,301,o), +(248,365,cs), +(248,420,o), +(269,455,o), +(317,455,cs), +(347,455,o), +(371,441,o), +(377,410,c), +(511,410,l), +(509,499,o), +(434,567,o), +(320,567,cs), +(191,567,o), +(108,488,o), +(108,365,cs), +(108,243,o), +(190,163,o), +(316,163,cs) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +userData = { +KernOnSpecialSpacing = { +R = dashes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_notdef.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_notdef.glyph new file mode 100644 index 00000000..4a8df4d1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_notdef.glyph @@ -0,0 +1,265 @@ +{ +glyphname = .notdef; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(199,-12,o), +(213,-6,o), +(213,10,cs), +(213,80,l), +(198,77,o), +(186,76,o), +(174,76,cs), +(102,76,o), +(92,122,o), +(70,156,cs), +(55,180,o), +(29,186,o), +(29,199,cs), +(29,205,o), +(34,209,o), +(43,209,cs), +(102,209,o), +(106,124,o), +(170,124,cs), +(186,124,o), +(203,128,o), +(214,134,c), +(218,159,o), +(229,177,o), +(249,186,c), +(134,198,o), +(64,264,o), +(64,366,cs), +(64,416,o), +(79,451,o), +(104,477,c), +(94,509,o), +(95,550,o), +(108,579,c), +(146,581,o), +(188,565,o), +(212,539,c), +(244,549,o), +(276,553,o), +(309,553,cs), +(342,553,o), +(374,549,o), +(406,539,c), +(430,565,o), +(472,581,o), +(510,579,c), +(523,550,o), +(524,509,o), +(514,477,c), +(539,451,o), +(554,416,o), +(554,366,cs), +(554,264,o), +(484,198,o), +(369,186,c), +(392,175,o), +(405,150,o), +(405,115,cs), +(405,10,ls), +(405,-6,o), +(419,-12,o), +(432,-8,cs), +(588,42,o), +(692,177,o), +(692,356,cs), +(692,585,o), +(539,738,o), +(309,738,cs), +(79,738,o), +(-74,585,o), +(-74,356,cs), +(-74,177,o), +(30,42,o), +(186,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(199,-12,o), +(213,-6,o), +(213,10,cs), +(213,80,l), +(198,77,o), +(186,76,o), +(174,76,cs), +(102,76,o), +(92,122,o), +(70,156,cs), +(55,180,o), +(29,186,o), +(29,199,cs), +(29,205,o), +(34,209,o), +(43,209,cs), +(102,209,o), +(106,124,o), +(170,124,cs), +(186,124,o), +(203,128,o), +(214,134,c), +(218,159,o), +(229,177,o), +(249,186,c), +(134,198,o), +(64,264,o), +(64,366,cs), +(64,416,o), +(79,451,o), +(104,477,c), +(94,509,o), +(95,550,o), +(108,579,c), +(146,581,o), +(188,565,o), +(212,539,c), +(244,549,o), +(276,553,o), +(309,553,cs), +(342,553,o), +(374,549,o), +(406,539,c), +(430,565,o), +(472,581,o), +(510,579,c), +(523,550,o), +(524,509,o), +(514,477,c), +(539,451,o), +(554,416,o), +(554,366,cs), +(554,264,o), +(484,198,o), +(369,186,c), +(392,175,o), +(405,150,o), +(405,115,cs), +(405,10,ls), +(405,-6,o), +(419,-12,o), +(432,-8,cs), +(588,42,o), +(692,177,o), +(692,356,cs), +(692,585,o), +(539,738,o), +(309,738,cs), +(79,738,o), +(-74,585,o), +(-74,356,cs), +(-74,177,o), +(30,42,o), +(186,-8,cs) +); +} +); +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_published.P_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_published.P_.glyph new file mode 100644 index 00000000..32276c78 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_published.P_.glyph @@ -0,0 +1,188 @@ +{ +export = 0; +glyphname = _published.P; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (269,363); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(199,165,l), +(199,532,l), +(313,532,ls), +(378,532,o), +(418,499,o), +(418,440,cs), +(418,382,o), +(379,347,o), +(313,347,cs), +(192,347,l), +(192,319,l), +(317,319,ls), +(400,319,o), +(452,367,o), +(452,441,cs), +(452,517,o), +(400,562,o), +(318,562,cs), +(167,562,l), +(167,165,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (288,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(263,167,l), +(263,471,l), +(293,471,ls), +(326,471,o), +(355,466,o), +(355,426,cs), +(355,382,o), +(326,378,o), +(293,378,cs), +(247,378,l), +(247,293,l), +(328,293,ls), +(445,293,o), +(494,349,o), +(494,429,cs), +(494,515,o), +(439,564,o), +(328,564,cs), +(124,564,l), +(124,167,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_slash.equal.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_slash.equal.glyph new file mode 100644 index 00000000..760f4008 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_slash.equal.glyph @@ -0,0 +1,50 @@ +{ +export = 0; +glyphname = _slash.equal; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (310,365); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(495,729,l), +(460,729,l), +(123,0,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (310,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(203,0,l), +(538,729,l), +(418,729,l), +(81,0,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_tail.Q_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_tail.Q_.glyph new file mode 100644 index 00000000..8f0130a6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_tail.Q_.glyph @@ -0,0 +1,90 @@ +{ +export = 0; +glyphname = _tail.Q; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (170,2); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (178,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(441,-167,l), +(441,-127,l), +(240,2,l), +(178,2,l), +(434,-167,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-6,l), +(471,0,l), +(471,34,l), +(369,28,l), +(170,17,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (131,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (218,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(514,-177,l), +(514,-4,l), +(330,28,l), +(105,28,l), +(482,-177,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(130,-10,l), +(438,0,l), +(438,155,l), +(412,155,l), +(129,68,l) +); +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_zero.tf.base.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_zero.tf.base.glyph new file mode 100644 index 00000000..a2428b83 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_zero.tf.base.glyph @@ -0,0 +1,101 @@ +{ +category = Number; +export = 0; +glyphname = _zero.tf.base; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (309,370); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(454,-10,o), +(552,117,o), +(552,360,cs), +(552,604,o), +(453,729,o), +(310,729,cs), +(163,729,o), +(66,603,o), +(66,360,cs), +(66,115,o), +(166,-10,o), +(311,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,24,o), +(105,149,o), +(105,360,cs), +(105,572,o), +(177,695,o), +(310,695,cs), +(441,695,o), +(514,571,o), +(514,360,cs), +(514,149,o), +(441,24,o), +(310,24,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (309,368); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,-6,o), +(598,127,o), +(598,366,cs), +(598,589,o), +(495,738,o), +(312,738,cs), +(137,738,o), +(20,605,o), +(20,368,cs), +(20,144,o), +(124,-6,o), +(308,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,156,o), +(212,183,o), +(212,367,cs), +(212,550,o), +(256,577,o), +(309,577,cs), +(362,577,o), +(406,550,o), +(406,367,cs), +(406,183,o), +(362,156,o), +(309,156,cs) +); +} +); +width = 618; +} +); +metricWidth = "=600"; +subCategory = "Decimal Digit"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_zero.tf.slash.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_zero.tf.slash.glyph new file mode 100644 index 00000000..f3cffb64 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_zero.tf.slash.glyph @@ -0,0 +1,163 @@ +{ +export = 0; +glyphname = _zero.tf.slash; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (309,370); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(529,494,l), +(529,531,l), +(90,224,l), +(90,188,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (309,368); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(233,220,l), +(567,405,l), +(515,505,l), +(181,320,l) +); +}, +{ +closed = 1; +nodes = ( +(545,-6,o), +(660,126,o), +(660,362,cs), +(660,583,o), +(558,730,o), +(377,730,cs), +(204,730,o), +(88,598,o), +(88,364,cs), +(88,142,o), +(191,-6,o), +(373,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,160,o), +(287,191,o), +(287,371,cs), +(287,480,o), +(297,566,o), +(376,566,cs), +(421,566,o), +(461,539,o), +(461,355,cs), +(461,244,o), +(451,160,o), +(373,160,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(439,386,l), +(439,517,l), +(180,337,l), +(180,207,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/_zero.tf.slash.ss08.glyph b/sources/MonaSansMono.glyphspackage/glyphs/_zero.tf.slash.ss08.glyph new file mode 100644 index 00000000..ed6dd11a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/_zero.tf.slash.ss08.glyph @@ -0,0 +1,138 @@ +{ +export = 0; +glyphname = _zero.tf.slash.ss08; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (309,370); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(535,343,l), +(535,376,l), +(84,376,l), +(84,343,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (309,368); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(481,304,l), +(481,420,l), +(138,420,l), +(138,304,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/a.glyph b/sources/MonaSansMono.glyphspackage/glyphs/a.glyph new file mode 100644 index 00000000..d89b1c31 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/a.glyph @@ -0,0 +1,318 @@ +{ +glyphname = a; +kernLeft = a; +kernRight = a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = ogonek; +pos = (515,0); +}, +{ +name = top; +pos = (313,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(383,-8,o), +(454,44,o), +(481,121,c), +(484,121,l), +(484,0,l), +(521,0,l), +(521,517,l), +(486,517,l), +(484,398,l), +(481,398,l), +(454,475,o), +(383,526,o), +(285,526,cs), +(156,526,o), +(68,425,o), +(68,259,cs), +(68,94,o), +(156,-8,o), +(285,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,26,o), +(106,112,o), +(106,259,cs), +(106,408,o), +(181,493,o), +(293,493,cs), +(413,493,o), +(483,397,o), +(483,295,cs), +(483,224,ls), +(483,122,o), +(413,26,o), +(293,26,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-8,o), +(444,45,o), +(469,121,c), +(479,121,l), +(481,0,l), +(515,0,l), +(515,517,l), +(481,517,l), +(479,398,l), +(469,398,l), +(444,474,o), +(378,526,o), +(285,526,cs), +(159,526,o), +(73,425,o), +(73,259,cs), +(73,94,o), +(159,-8,o), +(285,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,26,o), +(111,112,o), +(111,259,cs), +(111,408,o), +(184,493,o), +(293,493,cs), +(410,493,o), +(478,397,o), +(478,295,cs), +(478,224,ls), +(478,122,o), +(410,26,o), +(293,26,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = a; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +1, +10 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +463, +37 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = ogonek; +pos = (564,0); +}, +{ +name = top; +pos = (310,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(297,-10,o), +(356,27,o), +(380,83,c), +(390,83,l), +(390,0,l), +(581,0,l), +(581,544,l), +(397,544,l), +(390,461,l), +(380,461,l), +(356,517,o), +(297,554,o), +(220,554,cs), +(92,554,o), +(7,464,o), +(7,272,cs), +(7,80,o), +(92,-10,o), +(220,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,143,o), +(202,179,o), +(202,272,cs), +(202,365,o), +(239,401,o), +(295,401,cs), +(362,401,o), +(388,349,o), +(388,294,cs), +(388,250,ls), +(388,195,o), +(362,143,o), +(295,143,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(294,-10,o), +(342,27,o), +(359,79,c), +(374,79,l), +(381,0,l), +(564,0,l), +(564,544,l), +(381,544,l), +(374,465,l), +(359,465,l), +(342,517,o), +(294,554,o), +(229,554,cs), +(109,554,o), +(30,451,o), +(30,272,cs), +(30,93,o), +(109,-10,o), +(229,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,143,o), +(226,195,o), +(226,272,cs), +(226,349,o), +(246,401,o), +(306,401,cs), +(345,401,o), +(372,363,o), +(372,295,cs), +(372,249,ls), +(372,186,o), +(352,143,o), +(301,143,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = a; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +}; +width = 618; +} +); +metricLeft = "=|b"; +metricRight = l; +unicode = 97; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/a.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/a.ss05.glyph new file mode 100644 index 00000000..130ec469 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/a.ss05.glyph @@ -0,0 +1,339 @@ +{ +glyphname = a.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (300,0); +}, +{ +name = ogonek; +pos = (571,0); +}, +{ +name = top; +pos = (300,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-9,o), +(411,27,o), +(442,87,c), +(444,87,l), +(447,23,o), +(468,-9,o), +(524,-9,cs), +(534,-9,o), +(547,-7,o), +(556,-3,c), +(556,32,l), +(547,27,o), +(538,26,o), +(526,26,cs), +(492,26,o), +(477,46,o), +(477,94,cs), +(477,360,ls), +(477,468,o), +(413,527,o), +(298,527,cs), +(188,527,o), +(110,469,o), +(106,383,c), +(144,383,l), +(147,449,o), +(208,493,o), +(298,493,cs), +(393,493,o), +(440,449,o), +(440,360,cs), +(440,129,l), +(411,62,o), +(345,23,o), +(261,23,cs), +(179,23,o), +(127,68,o), +(127,138,cs), +(127,219,o), +(188,264,o), +(300,264,cs), +(448,264,l), +(448,296,l), +(300,296,ls), +(168,296,o), +(89,237,o), +(89,138,cs), +(89,50,o), +(159,-9,o), +(261,-9,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(343,-9,o), +(412,27,o), +(440,95,c), +(445,95,l), +(451,29,o), +(474,0,o), +(533,0,cs), +(575,0,l), +(575,35,l), +(536,35,ls), +(496,35,o), +(478,55,o), +(478,103,cs), +(478,360,ls), +(478,468,o), +(414,527,o), +(299,527,cs), +(189,527,o), +(111,469,o), +(107,383,c), +(145,383,l), +(148,449,o), +(209,493,o), +(299,493,cs), +(394,493,o), +(441,449,o), +(441,360,cs), +(441,189,ls), +(441,76,o), +(346,23,o), +(263,23,cs), +(181,23,o), +(128,66,o), +(128,133,cs), +(128,207,o), +(185,241,o), +(270,250,cs), +(449,274,l), +(449,306,l), +(269,282,ls), +(164,271,o), +(90,225,o), +(90,133,cs), +(90,48,o), +(161,-9,o), +(262,-9,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (299,0); +}, +{ +name = ogonek; +pos = (601,0); +}, +{ +name = top; +pos = (314,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(274,-10,o), +(336,20,o), +(360,63,c), +(366,63,l), +(380,19,o), +(424,-10,o), +(497,-10,cs), +(528,-10,o), +(568,-4,o), +(589,8,c), +(589,128,l), +(580,124,o), +(574,123,o), +(568,123,cs), +(555,123,o), +(547,130,o), +(547,149,cs), +(547,347,ls), +(547,477,o), +(468,554,o), +(307,554,cs), +(147,554,o), +(46,475,o), +(46,357,c), +(232,357,l), +(232,388,o), +(255,408,o), +(295,408,cs), +(327,408,o), +(356,398,o), +(356,356,cs), +(356,178,ls), +(356,136,o), +(325,114,o), +(282,114,cs), +(248,114,o), +(226,130,o), +(226,159,cs), +(226,191,o), +(251,211,o), +(303,211,cs), +(370,211,l), +(370,321,l), +(262,321,ls), +(123,321,o), +(32,258,o), +(32,142,cs), +(32,51,o), +(100,-10,o), +(208,-10,cs) +); +} +); +}; +guides = ( +{ +pos = (372,211); +}, +{ +pos = (234,120); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-7,o), +(329,24,o), +(352,78,c), +(362,78,l), +(379,25,o), +(421,0,o), +(489,0,cs), +(601,0,l), +(601,143,l), +(560,143,ls), +(547,143,o), +(539,150,o), +(539,169,cs), +(539,347,ls), +(539,477,o), +(460,554,o), +(299,554,cs), +(139,554,o), +(38,475,o), +(38,357,c), +(224,357,l), +(224,388,o), +(247,408,o), +(287,408,cs), +(319,408,o), +(348,398,o), +(348,356,cs), +(348,203,ls), +(348,151,o), +(317,120,o), +(274,120,cs), +(240,120,o), +(218,135,o), +(218,162,cs), +(218,188,o), +(241,198,o), +(270,202,cs), +(364,221,l), +(364,331,l), +(229,313,ls), +(113,303,o), +(24,254,o), +(24,144,cs), +(24,53,o), +(91,-7,o), +(196,-7,cs) +); +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/aacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/aacute.glyph new file mode 100644 index 00000000..3d7dfe58 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/aacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = aacute; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (43,-155); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (49,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 225; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/aacute.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/aacute.ss05.glyph new file mode 100644 index 00000000..fe3c0efa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/aacute.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = aacute.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (30,-155); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (53,-134); +ref = acutecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abreve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abreve.glyph new file mode 100644 index 00000000..134797b3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abreve.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = abreve; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-161); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-134); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 259; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abreve.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abreve.ss05.glyph new file mode 100644 index 00000000..eff1e2b8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abreve.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = abreve.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-9,-161); +ref = brevecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (5,-134); +ref = brevecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abreveacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abreveacute.glyph new file mode 100644 index 00000000..c3ec45cc --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abreveacute.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = abreveacute; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-161); +ref = brevecomb_acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-134); +ref = brevecomb_acutecomb; +} +); +width = 618; +} +); +unicode = 7855; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abreveacute.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abreveacute.ss05.glyph new file mode 100644 index 00000000..614103b5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abreveacute.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = abreveacute.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-9,-161); +ref = brevecomb_acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (5,-134); +ref = brevecomb_acutecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abrevedotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abrevedotbelow.glyph new file mode 100644 index 00000000..236e26cb --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abrevedotbelow.glyph @@ -0,0 +1,42 @@ +{ +color = 6; +glyphname = abrevedotbelow; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,0); +ref = dotbelowcomb; +}, +{ +pos = (4,-161); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +}, +{ +pos = (1,-134); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 7863; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abrevedotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abrevedotbelow.ss01.glyph new file mode 100644 index 00000000..bd6470f6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abrevedotbelow.ss01.glyph @@ -0,0 +1,40 @@ +{ +color = 6; +glyphname = abrevedotbelow.ss01; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (3,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (4,-161); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +ref = dotbelowcomb.ss01; +}, +{ +pos = (1,-134); +ref = brevecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abrevedotbelow.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abrevedotbelow.ss05.glyph new file mode 100644 index 00000000..79aa267b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abrevedotbelow.ss05.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = abrevedotbelow.ss05; +kernLeft = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-10,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-9,-161); +ref = brevecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-11,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (5,-134); +ref = brevecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abrevegrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abrevegrave.glyph new file mode 100644 index 00000000..89a4457f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abrevegrave.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = abrevegrave; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-161); +ref = brevecomb_gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-134); +ref = brevecomb_gravecomb; +} +); +width = 618; +} +); +unicode = 7857; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abrevegrave.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abrevegrave.ss05.glyph new file mode 100644 index 00000000..8144bbcd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abrevegrave.ss05.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = abrevegrave.ss05; +kernLeft = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-9,-161); +ref = brevecomb_gravecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (5,-134); +ref = brevecomb_gravecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abrevehookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abrevehookabove.glyph new file mode 100644 index 00000000..7d4a9f8d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abrevehookabove.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = abrevehookabove; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-161); +ref = brevecomb_hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-134); +ref = brevecomb_hookabovecomb; +} +); +width = 618; +} +); +unicode = 7859; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abrevehookabove.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abrevehookabove.ss05.glyph new file mode 100644 index 00000000..06237274 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abrevehookabove.ss05.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = abrevehookabove.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-9,-161); +ref = brevecomb_hookabovecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (8,-134); +ref = brevecomb_hookabovecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abrevetilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abrevetilde.glyph new file mode 100644 index 00000000..5ff2dbfc --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abrevetilde.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = abrevetilde; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (3,-155); +ref = brevecomb_tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-134); +ref = brevecomb_tildecomb; +} +); +width = 618; +} +); +unicode = 7861; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/abrevetilde.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/abrevetilde.ss05.glyph new file mode 100644 index 00000000..8f9d0f39 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/abrevetilde.ss05.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = abrevetilde.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-10,-155); +ref = brevecomb_tildecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (5,-134); +ref = brevecomb_tildecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflex.glyph new file mode 100644 index 00000000..3b828762 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = acircumflex; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 226; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflex.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflex.ss05.glyph new file mode 100644 index 00000000..594fb935 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflex.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = acircumflex.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-9,-155); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (5,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflexacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexacute.glyph new file mode 100644 index 00000000..eb5c3196 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexacute.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = acircumflexacute; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (54,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (76,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +} +); +unicode = 7845; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflexacute.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexacute.ss05.glyph new file mode 100644 index 00000000..96cfe736 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexacute.ss05.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = acircumflexacute.ss05; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (41,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (80,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflexdotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexdotbelow.glyph new file mode 100644 index 00000000..ba215baa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexdotbelow.glyph @@ -0,0 +1,42 @@ +{ +color = 6; +glyphname = acircumflexdotbelow; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,0); +ref = dotbelowcomb; +}, +{ +pos = (4,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 7853; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflexdotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..d9da8c51 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexdotbelow.ss01.glyph @@ -0,0 +1,40 @@ +{ +color = 6; +glyphname = acircumflexdotbelow.ss01; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (3,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (4,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +ref = dotbelowcomb.ss01; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflexdotbelow.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexdotbelow.ss05.glyph new file mode 100644 index 00000000..c5c7a5d8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexdotbelow.ss05.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = acircumflexdotbelow.ss05; +kernLeft = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-10,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (-9,-155); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-11,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (5,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflexgrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexgrave.glyph new file mode 100644 index 00000000..bfeefd7b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexgrave.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = acircumflexgrave; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (32,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (36,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +} +); +unicode = 7847; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflexgrave.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexgrave.ss05.glyph new file mode 100644 index 00000000..45a2bc60 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexgrave.ss05.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = acircumflexgrave.ss05; +kernLeft = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (19,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (40,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflexhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexhookabove.glyph new file mode 100644 index 00000000..c394785c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexhookabove.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = acircumflexhookabove; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (48,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (47,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +} +); +unicode = 7849; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflexhookabove.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexhookabove.ss05.glyph new file mode 100644 index 00000000..85a210e9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflexhookabove.ss05.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = acircumflexhookabove.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (35,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (51,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflextilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflextilde.glyph new file mode 100644 index 00000000..21fa8346 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflextilde.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = acircumflextilde; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (12,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +} +); +unicode = 7851; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acircumflextilde.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acircumflextilde.ss05.glyph new file mode 100644 index 00000000..3f6280a6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acircumflextilde.ss05.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = acircumflextilde.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-1,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (5,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acute.glyph new file mode 100644 index 00000000..05a05b60 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acute.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = acute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = acutecomb; +} +); +width = 619; +} +); +unicode = 180; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/acutecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/acutecomb.glyph new file mode 100644 index 00000000..b0e40d26 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/acutecomb.glyph @@ -0,0 +1,56 @@ +{ +glyphname = acutecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (270,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(286,746,l), +(364,882,l), +(323,882,l), +(255,746,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (261,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(333,735,l), +(430,884,l), +(242,884,l), +(189,735,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 769; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/adieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/adieresis.glyph new file mode 100644 index 00000000..10ee8506 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/adieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = adieresis; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-155); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-134); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 228; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/adieresis.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/adieresis.ss05.glyph new file mode 100644 index 00000000..085c909a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/adieresis.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = adieresis.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-9,-155); +ref = dieresiscomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (5,-134); +ref = dieresiscomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/adieresis.ss05.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/adieresis.ss05.ss01.glyph new file mode 100644 index 00000000..41baeec7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/adieresis.ss05.ss01.glyph @@ -0,0 +1,31 @@ +{ +glyphname = adieresis.ss05.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-10,-155); +ref = dieresiscomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (5,-134); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.glyph new file mode 100644 index 00000000..46de60d6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = adotbelow; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,0); +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 618; +} +); +unicode = 7841; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.ss01.glyph new file mode 100644 index 00000000..0532cb91 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = adotbelow.ss01; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (3,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.ss05.glyph new file mode 100644 index 00000000..ea457634 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = adotbelow.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-9,0); +ref = dotbelowcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-10,0); +ref = dotbelowcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.ss05.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.ss05.ss01.glyph new file mode 100644 index 00000000..e4cb8e3e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/adotbelow.ss05.ss01.glyph @@ -0,0 +1,31 @@ +{ +glyphname = adotbelow.ss05.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-10,0); +ref = dotbelowcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-11,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ae.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ae.glyph new file mode 100644 index 00000000..760a720b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ae.glyph @@ -0,0 +1,328 @@ +{ +glyphname = ae; +kernLeft = a.ss04; +kernRight = e; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-98,94,o), +(-10,-8,o), +(119,-8,cs), +(217,-8,o), +(288,44,o), +(315,121,c), +(318,121,l), +(318,0,l), +(355,0,l), +(355,121,l), +(358,121,l), +(392,35,o), +(467,-8,o), +(555,-8,cs), +(667,-8,o), +(756,55,o), +(773,152,c), +(735,152,l), +(718,76,o), +(650,28,o), +(555,28,cs), +(436,28,o), +(359,111,o), +(355,256,c), +(774,256,l), +(788,407,o), +(711,525,o), +(553,525,cs), +(464,525,o), +(390,478,o), +(358,398,c), +(355,398,l), +(355,517,l), +(320,517,l), +(318,398,l), +(315,398,l), +(288,475,o), +(217,526,o), +(119,526,cs), +(-10,526,o), +(-98,425,o), +(-98,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(-60,408,o), +(15,493,o), +(127,493,cs), +(247,493,o), +(317,397,o), +(317,295,cs), +(317,224,ls), +(317,122,o), +(247,26,o), +(127,26,cs), +(15,26,o), +(-60,112,o), +(-60,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,414,o), +(439,489,o), +(552,489,cs), +(656,489,o), +(739,433,o), +(739,289,c), +(356,289,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-9,o), +(274,47,o), +(293,139,c), +(303,139,l), +(331,41,o), +(381,-8,o), +(454,-8,cs), +(536,-8,o), +(597,52,o), +(611,147,c), +(575,147,l), +(561,71,o), +(516,26,o), +(454,26,cs), +(369,26,o), +(313,114,o), +(313,267,cs), +(313,280,ls), +(313,411,o), +(371,491,o), +(452,491,cs), +(530,491,o), +(574,421,o), +(577,293,c), +(306,293,l), +(306,260,l), +(615,260,l), +(621,431,o), +(564,525,o), +(454,525,cs), +(386,525,o), +(336,482,o), +(308,405,c), +(299,405,l), +(280,489,o), +(237,527,o), +(166,527,cs), +(84,527,o), +(24,469,o), +(19,383,c), +(56,383,l), +(60,449,o), +(104,493,o), +(165,493,cs), +(238,493,o), +(276,439,o), +(276,340,cs), +(276,194,ls), +(276,68,o), +(202,23,o), +(140,23,cs), +(79,23,o), +(44,69,o), +(44,138,cs), +(44,229,o), +(99,261,o), +(178,261,cs), +(291,261,l), +(291,294,l), +(178,294,ls), +(85,294,o), +(6,254,o), +(6,137,cs), +(6,50,o), +(54,-9,o), +(134,-9,cs) +); +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(120,-10,o), +(200,10,o), +(250,67,c), +(297,18,o), +(367,-10,o), +(456,-10,cs), +(598,-10,o), +(702,64,o), +(715,175,c), +(535,175,l), +(526,149,o), +(495,132,o), +(456,132,cs), +(400,132,o), +(362,166,o), +(364,227,c), +(719,227,l), +(739,415,o), +(646,554,o), +(449,554,cs), +(392,554,o), +(341,541,o), +(300,516,c), +(261,541,o), +(208,554,o), +(141,554,cs), +(-19,554,o), +(-120,475,o), +(-120,357,c), +(66,357,l), +(66,388,o), +(89,408,o), +(129,408,cs), +(161,408,o), +(190,398,o), +(190,356,cs), +(190,324,l), +(116,324,ls), +(-43,324,o), +(-134,260,o), +(-134,142,cs), +(-134,51,o), +(-62,-10,o), +(49,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(80,114,o), +(59,130,o), +(60,159,cs), +(61,193,o), +(85,214,o), +(147,214,cs), +(185,214,l), +(187,191,o), +(192,169,o), +(199,149,c), +(183,127,o), +(151,114,o), +(114,114,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,383,o), +(400,413,o), +(449,413,cs), +(496,413,o), +(529,386,o), +(531,338,c), +(365,338,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(210,-10,o), +(268,39,o), +(281,96,c), +(291,96,l), +(311,35,o), +(356,-10,o), +(435,-10,cs), +(533,-10,o), +(604,64,o), +(612,172,c), +(462,172,l), +(457,147,o), +(444,132,o), +(422,132,cs), +(394,132,o), +(372,165,o), +(372,222,cs), +(372,332,l), +(376,381,o), +(394,410,o), +(420,410,cs), +(447,410,o), +(462,383,o), +(464,331,c), +(359,331,l), +(359,221,l), +(615,221,l), +(636,425,o), +(567,554,o), +(439,554,cs), +(381,554,o), +(329,524,o), +(309,485,c), +(299,485,l), +(282,526,o), +(239,554,o), +(186,554,cs), +(81,554,o), +(13,477,o), +(10,357,c), +(162,357,l), +(165,388,o), +(174,408,o), +(195,408,cs), +(213,408,o), +(222,388,o), +(222,346,cs), +(222,183,ls), +(222,146,o), +(208,120,o), +(184,120,cs), +(171,120,o), +(161,136,o), +(161,165,cs), +(161,199,o), +(173,221,o), +(210,221,cs), +(301,221,l), +(301,331,l), +(166,331,ls), +(59,331,o), +(0,267,o), +(0,150,cs), +(0,54,o), +(55,-10,o), +(136,-10,cs) +); +} +); +width = 618; +} +); +metricLeft = a.ss04; +metricRight = e; +unicode = 230; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/agrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/agrave.glyph new file mode 100644 index 00000000..33b0a6ac --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/agrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = agrave; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (-36,-155); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (-48,-134); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 224; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/agrave.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/agrave.ss05.glyph new file mode 100644 index 00000000..dd5a1f61 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/agrave.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = agrave.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-49,-155); +ref = gravecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-44,-134); +ref = gravecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ahookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ahookabove.glyph new file mode 100644 index 00000000..58761e73 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ahookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ahookabove; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-155); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (8,-134); +ref = hookabovecomb; +} +); +width = 618; +} +); +unicode = 7843; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ahookabove.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ahookabove.ss05.glyph new file mode 100644 index 00000000..965bc987 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ahookabove.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ahookabove.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-9,-155); +ref = hookabovecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (12,-134); +ref = hookabovecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/amacron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/amacron.glyph new file mode 100644 index 00000000..cda3dde0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/amacron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = amacron; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (3,-155); +ref = macroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (0,-134); +ref = macroncomb; +} +); +width = 618; +} +); +unicode = 257; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/amacron.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/amacron.ss05.glyph new file mode 100644 index 00000000..30c22441 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/amacron.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = amacron.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-10,-155); +ref = macroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (4,-134); +ref = macroncomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ampersand.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ampersand.glyph new file mode 100644 index 00000000..f1d2077b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ampersand.glyph @@ -0,0 +1,566 @@ +{ +glyphname = ampersand; +kernRight = ampersand; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(638,-5,o), +(654,-1,o), +(664,3,c), +(664,44,l), +(654,39,o), +(640,35,o), +(623,35,cs), +(575,35,o), +(542,41,o), +(457,134,cs), +(229,382,ls), +(149,470,o), +(122,521,o), +(122,586,cs), +(122,656,o), +(173,705,o), +(250,705,cs), +(319,705,o), +(365,663,o), +(365,590,cs), +(365,517,o), +(316,463,o), +(193,405,c), +(216,383,l), +(340,442,o), +(402,507,o), +(402,592,cs), +(402,680,o), +(342,739,o), +(251,739,cs), +(155,739,o), +(84,677,o), +(84,582,cs), +(84,528,o), +(99,469,o), +(195,364,cs), +(427,110,ls), +(501,28,o), +(547,-5,o), +(618,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,-10,o), +(365,38,o), +(424,139,c), +(394,157,l), +(347,73,o), +(272,23,o), +(164,23,cs), +(75,23,o), +(12,82,o), +(12,173,cs), +(12,261,o), +(72,323,o), +(198,376,c), +(177,402,l), +(50,347,o), +(-26,274,o), +(-26,172,cs), +(-26,65,o), +(51,-10,o), +(162,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(456,201,o), +(476,259,o), +(483,319,c), +(596,318,l), +(591,355,l), +(444,355,l), +(444,326,l), +(437,270,o), +(423,218,o), +(402,175,c), +(433,155,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(577,-5,o), +(585,-4,o), +(593,-3,c), +(593,36,l), +(586,34,o), +(581,33,o), +(571,33,cs), +(521,33,o), +(486,61,o), +(413,154,cs), +(256,354,ls), +(172,461,o), +(145,519,o), +(145,586,cs), +(145,654,o), +(190,703,o), +(257,703,cs), +(317,703,o), +(358,662,o), +(358,590,cs), +(358,518,o), +(316,464,o), +(207,405,c), +(230,383,l), +(340,442,o), +(395,507,o), +(395,592,cs), +(395,679,o), +(339,737,o), +(258,737,cs), +(172,737,o), +(107,676,o), +(107,582,cs), +(107,528,o), +(122,463,o), +(218,342,cs), +(381,136,ls), +(438,64,o), +(491,-5,o), +(566,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,-10,o), +(369,31,o), +(419,125,c), +(390,143,l), +(352,66,o), +(296,23,o), +(216,23,cs), +(128,23,o), +(67,82,o), +(67,173,cs), +(67,261,o), +(114,323,o), +(210,376,c), +(189,402,l), +(88,347,o), +(29,273,o), +(29,172,cs), +(29,65,o), +(103,-10,o), +(212,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(451,181,o), +(473,255,o), +(480,329,c), +(566,328,l), +(566,365,l), +(451,365,l), +(447,336,l), +(438,254,o), +(422,196,o), +(395,154,c), +(426,133,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-553,-10,o), +(-471,9,o), +(-412,64,c), +(-403,64,l), +(-343,10,o), +(-286,-8,o), +(-220,-8,cs), +(-198,-8,o), +(-175,-6,o), +(-151,-1,c), +(-145,147,l), +(-157,143,o), +(-169,141,o), +(-183,141,cs), +(-217,141,o), +(-252,157,o), +(-293,192,c), +(-275,216,o), +(-262,236,o), +(-250,256,c), +(-171,253,l), +(-152,396,l), +(-353,396,l), +(-356,365,l), +(-362,344,o), +(-376,318,o), +(-394,291,c), +(-464,368,l), +(-374,410,o), +(-324,478,o), +(-324,557,cs), +(-324,667,o), +(-410,739,o), +(-531,739,cs), +(-667,739,o), +(-765,659,o), +(-765,542,cs), +(-765,486,o), +(-745,431,o), +(-701,384,c), +(-783,351,o), +(-843,275,o), +(-843,187,cs), +(-843,65,o), +(-753,-10,o), +(-632,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-624,147,o), +(-652,173,o), +(-652,211,cs), +(-652,244,o), +(-636,267,o), +(-613,280,c), +(-511,170,l), +(-528,154,o), +(-554,147,o), +(-585,147,cs) +); +}, +{ +closed = 1; +nodes = ( +(-568,480,o), +(-585,511,o), +(-585,537,cs), +(-585,568,o), +(-563,587,o), +(-535,587,cs), +(-506,587,o), +(-488,567,o), +(-488,538,cs), +(-488,506,o), +(-508,476,o), +(-540,454,c) +); +}, +{ +closed = 1; +nodes = ( +(255,-10,o), +(343,19,o), +(388,63,c), +(397,63,l), +(457,10,o), +(514,-8,o), +(580,-8,cs), +(602,-8,o), +(625,-6,o), +(649,-1,c), +(656,148,l), +(642,143,o), +(629,141,o), +(616,141,cs), +(586,141,o), +(552,155,o), +(509,190,c), +(525,213,o), +(541,236,o), +(553,256,c), +(629,253,l), +(648,397,l), +(440,398,l), +(438,366,l), +(433,350,o), +(424,327,o), +(403,294,c), +(336,368,l), +(421,407,o), +(477,475,o), +(477,558,cs), +(477,667,o), +(389,739,o), +(269,739,cs), +(133,739,o), +(34,659,o), +(34,541,cs), +(34,482,o), +(57,429,o), +(98,385,c), +(18,351,o), +(-43,276,o), +(-43,187,cs), +(-43,65,o), +(48,-10,o), +(167,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,145,o), +(148,171,o), +(148,211,cs), +(148,239,o), +(164,266,o), +(187,280,c), +(289,170,l), +(273,155,o), +(243,145,o), +(213,145,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,479,o), +(215,510,o), +(215,536,cs), +(215,566,o), +(238,587,o), +(265,587,cs), +(294,587,o), +(312,565,o), +(312,538,cs), +(312,507,o), +(292,476,o), +(261,455,c) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(571,-8,o), +(585,-6,o), +(599,-2,c), +(599,151,l), +(593,150,o), +(589,150,o), +(584,150,cs), +(558,150,o), +(530,161,o), +(499,198,cs), +(319,413,ls), +(247,499,o), +(241,512,o), +(241,546,cs), +(241,576,o), +(263,593,o), +(287,593,cs), +(314,593,o), +(330,575,o), +(330,546,cs), +(330,512,o), +(301,476,o), +(269,458,c), +(349,357,l), +(431,394,o), +(488,469,o), +(488,560,cs), +(488,663,o), +(405,739,o), +(284,739,cs), +(159,739,o), +(68,654,o), +(68,538,cs), +(68,482,o), +(86,426,o), +(163,337,cs), +(397,65,ls), +(446,8,o), +(501,-8,o), +(558,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,-10,o), +(389,32,o), +(428,97,c), +(329,194,l), +(314,165,o), +(287,144,o), +(255,144,cs), +(219,144,o), +(196,169,o), +(196,212,cs), +(196,244,o), +(211,276,o), +(228,288,c), +(143,391,l), +(72,362,o), +(13,282,o), +(13,188,cs), +(13,65,o), +(98,-10,o), +(213,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(537,196,o), +(556,230,o), +(568,255,c), +(599,255,l), +(599,409,l), +(463,409,l), +(460,394,ls), +(456,374,o), +(436,320,o), +(397,266,c), +(512,167,l) +); +} +); +width = 618; +} +); +unicode = 38; +userData = { +KernOnName = ampersand; +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/aogonek.glyph b/sources/MonaSansMono.glyphspackage/glyphs/aogonek.glyph new file mode 100644 index 00000000..9d7734d8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/aogonek.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = aogonek; +kernLeft = a; +kernRight = g; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (153,0); +ref = ogonekcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (139,0); +ref = ogonekcomb; +} +); +width = 618; +} +); +unicode = 261; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/aogonek.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/aogonek.ss05.glyph new file mode 100644 index 00000000..0dcf2282 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/aogonek.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = aogonek.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (209,0); +ref = ogonekcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (176,0); +ref = ogonekcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/apple.glyph b/sources/MonaSansMono.glyphspackage/glyphs/apple.glyph new file mode 100644 index 00000000..86e05930 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/apple.glyph @@ -0,0 +1,117 @@ +{ +color = 6; +glyphname = apple; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = .notdef; +} +); +width = 618; +} +); +unicode = 63743; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/approxequal.glyph b/sources/MonaSansMono.glyphspackage/glyphs/approxequal.glyph new file mode 100644 index 00000000..1d19269d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/approxequal.glyph @@ -0,0 +1,205 @@ +{ +glyphname = approxequal; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(435,215,o), +(475,243,o), +(470,321,c), +(440,321,l), +(441,278,o), +(422,257,o), +(387,257,cs), +(335,257,o), +(277,305,o), +(224,305,cs), +(191,305,o), +(144,289,o), +(150,201,c), +(180,201,l), +(176,240,o), +(195,263,o), +(223,263,cs), +(265,263,o), +(329,215,o), +(386,215,cs) +); +}, +{ +closed = 1; +nodes = ( +(445,418,o), +(474,452,o), +(470,520,c), +(440,520,l), +(441,478,o), +(422,456,o), +(387,456,cs), +(335,456,o), +(277,504,o), +(223,504,cs), +(181,504,o), +(145,477,o), +(150,402,c), +(180,402,l), +(176,441,o), +(193,462,o), +(223,462,cs), +(265,462,o), +(328,418,o), +(386,418,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +76, +76 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +76, +76 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(488,143,o), +(555,205,o), +(546,346,c), +(456,346,l), +(455,314,o), +(436,286,o), +(395,286,cs), +(329,286,o), +(292,350,o), +(207,350,cs), +(138,350,o), +(64,299,o), +(74,151,c), +(164,151,l), +(162,173,o), +(174,210,o), +(213,210,cs), +(268,210,o), +(309,143,o), +(408,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(488,381,o), +(555,443,o), +(546,584,c), +(456,584,l), +(455,552,o), +(436,524,o), +(395,524,cs), +(329,524,o), +(292,588,o), +(207,588,cs), +(137,588,o), +(64,536,o), +(74,389,c), +(164,389,l), +(162,410,o), +(173,448,o), +(213,448,cs), +(268,448,o), +(309,381,o), +(408,381,cs) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 8776; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/aring.glyph b/sources/MonaSansMono.glyphspackage/glyphs/aring.glyph new file mode 100644 index 00000000..d4597f26 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/aring.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = aring; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (4,-155); +ref = ringcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (1,-134); +ref = ringcomb; +} +); +width = 618; +} +); +unicode = 229; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/aring.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/aring.ss05.glyph new file mode 100644 index 00000000..4cef9354 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/aring.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = aring.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-9,-155); +ref = ringcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (5,-134); +ref = ringcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/asciicircum.glyph b/sources/MonaSansMono.glyphspackage/glyphs/asciicircum.glyph new file mode 100644 index 00000000..0be725d5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/asciicircum.glyph @@ -0,0 +1,85 @@ +{ +glyphname = asciicircum; +kernLeft = asciicircum; +kernRight = asciicircum; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(198,475,l), +(309,691,l), +(419,475,l), +(460,475,l), +(328,729,l), +(290,729,l), +(159,475,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(238,468,l), +(311,586,l), +(382,468,l), +(556,468,l), +(410,729,l), +(211,729,l), +(64,468,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 94; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/asciitilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/asciitilde.glyph new file mode 100644 index 00000000..7854c1d9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/asciitilde.glyph @@ -0,0 +1,136 @@ +{ +glyphname = asciitilde; +kernRight = asciitilde; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(136,301,l), +(132,340,o), +(151,363,o), +(179,363,cs), +(221,363,o), +(285,315,o), +(342,315,cs), +(391,315,o), +(431,343,o), +(426,421,c), +(396,421,l), +(397,378,o), +(378,357,o), +(343,357,cs), +(291,357,o), +(233,405,o), +(180,405,cs), +(147,405,o), +(100,389,o), +(106,301,c) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(195,269,l), +(192,292,o), +(206,328,o), +(244,328,cs), +(299,328,o), +(340,261,o), +(439,261,cs), +(505,261,o), +(588,307,o), +(578,465,c), +(487,465,l), +(486,433,o), +(467,406,o), +(427,406,cs), +(360,406,o), +(323,469,o), +(238,469,cs), +(159,469,o), +(94,407,o), +(104,269,c) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 126; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/asterisk.glyph b/sources/MonaSansMono.glyphspackage/glyphs/asterisk.glyph new file mode 100644 index 00000000..3cfb401d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/asterisk.glyph @@ -0,0 +1,96 @@ +{ +glyphname = asterisk; +kernLeft = asterisk; +kernRight = asterisk; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(326,-5,l), +(325,139,l), +(316,293,l), +(450,211,l), +(574,136,l), +(590,165,l), +(464,239,l), +(324,309,l), +(464,378,l), +(589,449,l), +(574,478,l), +(449,405,l), +(316,326,l), +(325,479,l), +(326,628,l), +(292,628,l), +(294,479,l), +(302,326,l), +(170,405,l), +(45,480,l), +(29,450,l), +(155,379,l), +(295,309,l), +(155,238,l), +(29,164,l), +(45,134,l), +(170,211,l), +(302,293,l), +(294,139,l), +(292,-5,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(383,0,l), +(383,86,l), +(355,201,l), +(445,120,l), +(521,78,l), +(593,204,l), +(519,246,l), +(404,285,l), +(519,322,l), +(593,364,l), +(521,490,l), +(445,448,l), +(355,369,l), +(383,484,l), +(383,570,l), +(235,570,l), +(235,484,l), +(263,369,l), +(173,448,l), +(97,490,l), +(25,364,l), +(99,322,l), +(214,285,l), +(99,246,l), +(25,204,l), +(97,78,l), +(173,120,l), +(263,201,l), +(235,86,l), +(235,0,l) +); +} +); +width = 618; +} +); +unicode = 42; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/at.glyph b/sources/MonaSansMono.glyphspackage/glyphs/at.glyph new file mode 100644 index 00000000..aa423170 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/at.glyph @@ -0,0 +1,317 @@ +{ +glyphname = at; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-101,o), +(450,-81,o), +(492,-41,c), +(477,-9,l), +(440,-44,o), +(384,-65,o), +(319,-65,cs), +(161,-65,o), +(70,68,o), +(70,322,cs), +(70,570,o), +(166,704,o), +(320,704,cs), +(458,704,o), +(554,593,o), +(554,361,cs), +(554,196,o), +(521,120,o), +(465,120,cs), +(430,120,o), +(412,150,o), +(414,216,cs), +(426,533,l), +(396,533,l), +(389,461,l), +(386,461,l), +(374,515,o), +(341,544,o), +(303,544,cs), +(234,544,o), +(187,468,o), +(187,312,cs), +(187,140,o), +(234,89,o), +(291,89,cs), +(330,89,o), +(368,117,o), +(384,180,c), +(387,180,l), +(390,122,o), +(418,85,o), +(465,85,cs), +(545,85,o), +(594,179,o), +(594,363,cs), +(594,615,o), +(480,739,o), +(321,739,cs), +(147,739,o), +(29,592,o), +(29,321,cs), +(29,38,o), +(144,-101,o), +(319,-101,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,124,o), +(226,165,o), +(226,314,cs), +(226,446,o), +(255,510,o), +(308,510,cs), +(353,510,o), +(381,464,o), +(383,334,c), +(379,183,o), +(348,124,o), +(297,124,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +44 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +50 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +26 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +37 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +53 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +47 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(403,-104,o), +(476,-71,o), +(510,-31,c), +(463,53,l), +(430,22,o), +(387,1,o), +(329,1,cs), +(211,1,o), +(136,88,o), +(136,325,cs), +(136,518,o), +(190,635,o), +(320,635,cs), +(413,635,o), +(487,563,o), +(487,357,cs), +(487,226,o), +(480,181,o), +(457,181,cs), +(438,181,o), +(423,202,o), +(428,323,cs), +(437,542,l), +(376,542,l), +(368,479,l), +(354,479,l), +(343,527,o), +(319,549,o), +(280,549,cs), +(225,549,o), +(182,484,o), +(182,305,cs), +(182,149,o), +(220,79,o), +(278,79,cs), +(316,79,o), +(339,103,o), +(353,148,c), +(369,148,l), +(385,103,o), +(416,79,o), +(458,79,cs), +(547,79,o), +(592,176,o), +(592,365,cs), +(592,608,o), +(478,740,o), +(317,740,cs), +(146,740,o), +(31,588,o), +(31,319,cs), +(31,45,o), +(130,-104,o), +(320,-104,cs) +); +}, +{ +closed = 1; +nodes = ( +(290,181,o), +(284,208,o), +(284,311,cs), +(284,416,o), +(288,449,o), +(308,449,cs), +(331,449,o), +(338,418,o), +(338,318,cs), +(338,214,o), +(330,181,o), +(305,181,cs) +); +} +); +width = 619; +} +); +unicode = 64; +userData = { +KernOnName = at; +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/atilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/atilde.glyph new file mode 100644 index 00000000..7df9a197 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/atilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = atilde; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a; +}, +{ +pos = (6,-155); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a; +}, +{ +pos = (0,-134); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 227; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/atilde.ss05.glyph b/sources/MonaSansMono.glyphspackage/glyphs/atilde.ss05.glyph new file mode 100644 index 00000000..f4a329f0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/atilde.ss05.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = atilde.ss05; +kernLeft = a.ss04; +kernRight = a.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (-7,-155); +ref = tildecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = a.ss05; +}, +{ +pos = (4,-134); +ref = tildecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/b.glyph b/sources/MonaSansMono.glyphspackage/glyphs/b.glyph new file mode 100644 index 00000000..eec20afd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/b.glyph @@ -0,0 +1,298 @@ +{ +glyphname = b; +kernLeft = l; +kernRight = p; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (305,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(462,-9,o), +(550,93,o), +(550,258,cs), +(550,424,o), +(462,526,o), +(332,526,cs), +(235,526,o), +(164,474,o), +(137,398,c), +(134,398,l), +(134,729,l), +(97,729,l), +(97,0,l), +(132,0,l), +(134,119,l), +(137,119,l), +(164,43,o), +(235,-9,o), +(332,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,25,o), +(134,121,o), +(134,223,cs), +(134,294,ls), +(134,396,o), +(204,492,o), +(325,492,cs), +(437,492,o), +(512,407,o), +(512,258,cs), +(512,110,o), +(437,25,o), +(325,25,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-9,o), +(545,92,o), +(545,258,cs), +(545,423,o), +(459,525,o), +(333,525,cs), +(241,525,o), +(174,472,o), +(149,396,c), +(140,396,l), +(140,729,l), +(103,729,l), +(103,0,l), +(137,0,l), +(139,119,l), +(149,119,l), +(174,43,o), +(240,-9,o), +(333,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,24,o), +(140,120,o), +(140,222,cs), +(140,293,ls), +(140,395,o), +(208,491,o), +(325,491,cs), +(434,491,o), +(507,405,o), +(507,258,cs), +(507,109,o), +(434,24,o), +(325,24,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +9 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (308,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(521,-10,o), +(608,93,o), +(608,272,cs), +(608,452,o), +(523,554,o), +(394,554,cs), +(320,554,o), +(256,519,o), +(235,466,c), +(209,466,l), +(227,296,l), +(227,366,o), +(263,401,o), +(317,401,cs), +(372,401,o), +(413,364,o), +(413,272,cs), +(413,181,o), +(372,143,o), +(317,143,cs), +(263,143,o), +(227,179,o), +(227,249,c), +(209,79,l), +(235,79,l), +(255,26,o), +(316,-10,o), +(389,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(588,94,o), +(588,272,cs), +(588,450,o), +(509,554,o), +(388,554,cs), +(326,554,o), +(275,519,o), +(257,465,c), +(244,465,l), +(244,729,l), +(53,729,l), +(53,0,l), +(235,0,l), +(242,79,l), +(257,79,l), +(275,25,o), +(326,-10,o), +(388,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,143,o), +(244,182,o), +(244,249,cs), +(244,295,ls), +(244,359,o), +(265,401,o), +(316,401,cs), +(376,401,o), +(393,348,o), +(393,272,cs), +(393,196,o), +(373,143,o), +(311,143,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +}; +width = 618; +} +); +metricLeft = l; +unicode = 98; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/backslash.glyph b/sources/MonaSansMono.glyphspackage/glyphs/backslash.glyph new file mode 100644 index 00000000..3d48192d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/backslash.glyph @@ -0,0 +1,76 @@ +{ +glyphname = backslash; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(491,-81,l), +(164,729,l), +(128,729,l), +(452,-81,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(544,-82,l), +(257,729,l), +(74,729,l), +(363,-82,l) +); +} +); +width = 618; +} +); +unicode = 92; +userData = { +KernOnSpecialSpacing = { +L = slash; +R = slash; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/baht.glyph b/sources/MonaSansMono.glyphspackage/glyphs/baht.glyph new file mode 100644 index 00000000..152b0e6d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/baht.glyph @@ -0,0 +1,199 @@ +{ +color = 6; +glyphname = baht; +layers = ( +{ +background = { +anchors = ( +{ +name = bottom; +pos = (74,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(46,-85,l), +(46,22,l), +(14,22,l), +(14,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(46,714,l), +(46,814,l), +(14,814,l), +(14,714,l) +); +}, +{ +closed = 1; +nodes = ( +(99,0,ls), +(242,0,o), +(333,78,o), +(333,200,cs), +(333,285,o), +(284,356,o), +(187,374,c), +(187,377,l), +(275,397,o), +(314,464,o), +(314,543,cs), +(314,654,o), +(235,729,o), +(100,729,cs), +(-185,729,l), +(-185,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-147,356,l), +(117,356,ls), +(229,356,o), +(293,298,o), +(293,202,cs), +(293,104,o), +(227,36,o), +(99,36,cs), +(-147,36,l) +); +}, +{ +closed = 1; +nodes = ( +(-147,694,l), +(99,694,ls), +(206,694,o), +(276,635,o), +(276,538,cs), +(276,450,o), +(220,391,o), +(115,391,cs), +(-147,391,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (-25,0); +ref = _baht.bar; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (143,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(166,-85,l), +(166,90,l), +(56,90,l), +(56,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(166,689,l), +(166,815,l), +(57,815,l), +(57,689,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,ls), +(360,0,o), +(449,85,o), +(449,212,cs), +(449,293,o), +(405,359,o), +(326,376,c), +(326,385,l), +(388,405,o), +(429,467,o), +(429,541,cs), +(429,654,o), +(356,729,o), +(201,729,cs), +(-163,729,l), +(-163,0,l) +); +}, +{ +closed = 1; +nodes = ( +(34,299,l), +(148,299,ls), +(207,299,o), +(233,273,o), +(233,226,cs), +(233,179,o), +(207,153,o), +(148,153,cs), +(34,153,l) +); +}, +{ +closed = 1; +nodes = ( +(34,576,l), +(139,576,ls), +(185,576,o), +(215,555,o), +(215,511,cs), +(215,472,o), +(191,446,o), +(139,446,cs), +(34,446,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +alignment = 1; +pos = (-15,0); +ref = _baht.bar; +} +); +width = 619; +} +); +metricLeft = B; +metricRight = B; +unicode = 3647; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/bar.glyph b/sources/MonaSansMono.glyphspackage/glyphs/bar.glyph new file mode 100644 index 00000000..6fdb9cc9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/bar.glyph @@ -0,0 +1,76 @@ +{ +glyphname = bar; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(327,-67,l), +(327,729,l), +(291,729,l), +(291,-67,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(395,-67,l), +(395,729,l), +(224,729,l), +(224,-67,l) +); +} +); +width = 619; +} +); +unicode = 124; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/bitcoin.glyph b/sources/MonaSansMono.glyphspackage/glyphs/bitcoin.glyph new file mode 100644 index 00000000..2bb0586e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/bitcoin.glyph @@ -0,0 +1,329 @@ +{ +color = 6; +glyphname = bitcoin; +layers = ( +{ +background = { +anchors = ( +{ +name = bottom; +pos = (278,0); +}, +{ +name = center; +pos = (278,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(176,-85,l), +(176,22,l), +(144,22,l), +(144,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(326,-85,l), +(326,22,l), +(294,22,l), +(294,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(176,714,l), +(176,814,l), +(144,814,l), +(144,714,l) +); +}, +{ +closed = 1; +nodes = ( +(326,714,l), +(326,814,l), +(294,814,l), +(294,714,l) +); +}, +{ +closed = 1; +nodes = ( +(303,0,ls), +(446,0,o), +(537,78,o), +(537,200,cs), +(537,285,o), +(488,356,o), +(391,374,c), +(391,377,l), +(479,397,o), +(518,464,o), +(518,543,cs), +(518,654,o), +(439,729,o), +(304,729,cs), +(19,729,l), +(19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(57,356,l), +(321,356,ls), +(433,356,o), +(497,298,o), +(497,202,cs), +(497,104,o), +(431,36,o), +(303,36,cs), +(57,36,l) +); +}, +{ +closed = 1; +nodes = ( +(57,694,l), +(303,694,ls), +(410,694,o), +(480,635,o), +(480,538,cs), +(480,450,o), +(424,391,o), +(319,391,cs), +(57,391,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (-24,0); +ref = _bitcoin.bars; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = center; +pos = (275,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(198,-85,l), +(198,90,l), +(88,90,l), +(88,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(377,-85,l), +(377,90,l), +(267,90,l), +(267,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(198,689,l), +(198,815,l), +(89,815,l), +(89,689,l) +); +}, +{ +closed = 1; +nodes = ( +(377,689,l), +(377,815,l), +(268,815,l), +(268,689,l) +); +}, +{ +closed = 1; +nodes = ( +(304,0,ls), +(492,0,o), +(581,85,o), +(581,212,cs), +(581,293,o), +(537,359,o), +(458,376,c), +(458,385,l), +(520,405,o), +(561,467,o), +(561,541,cs), +(561,654,o), +(488,729,o), +(333,729,cs), +(-31,729,l), +(-31,0,l) +); +}, +{ +closed = 1; +nodes = ( +(166,299,l), +(280,299,ls), +(339,299,o), +(365,273,o), +(365,226,cs), +(365,179,o), +(339,153,o), +(280,153,cs), +(166,153,l) +); +}, +{ +closed = 1; +nodes = ( +(166,576,l), +(271,576,ls), +(317,576,o), +(347,555,o), +(347,511,cs), +(347,472,o), +(323,446,o), +(271,446,cs), +(166,446,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = _B.currency; +}, +{ +pos = (-26,0); +ref = _bitcoin.bars; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = B; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = B; +}; +width = 619; +} +); +unicode = 8383; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/blackC_ircle.glyph b/sources/MonaSansMono.glyphspackage/glyphs/blackC_ircle.glyph new file mode 100644 index 00000000..d5a15f6f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/blackC_ircle.glyph @@ -0,0 +1,64 @@ +{ +glyphname = blackCircle; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (309,363); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(534,-10,o), +(685,140,o), +(685,363,cs), +(685,587,o), +(534,736,o), +(309,736,cs), +(85,736,o), +(-66,587,o), +(-66,363,cs), +(-66,140,o), +(85,-10,o), +(309,-10,cs) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = center; +pos = (309,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-9,o), +(697,141,o), +(697,365,cs), +(697,589,o), +(533,739,o), +(310,739,cs), +(86,739,o), +(-78,589,o), +(-78,365,cs), +(-78,141,o), +(86,-9,o), +(310,-9,cs) +); +} +); +width = 619; +} +); +unicode = 9679; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/braceleft.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/braceleft.case.glyph new file mode 100644 index 00000000..49e39d69 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/braceleft.case.glyph @@ -0,0 +1,190 @@ +{ +glyphname = braceleft.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-63,l), +(457,-31,l), +(290,-31,l), +(290,262,ls), +(290,320,o), +(257,362,o), +(220,364,c), +(220,368,l), +(255,369,o), +(290,409,o), +(290,470,cs), +(290,761,l), +(457,761,l), +(457,793,l), +(295,793,ls), +(267,793,o), +(254,775,o), +(254,750,cs), +(254,470,ls), +(254,414,o), +(222,384,o), +(191,384,cs), +(160,384,l), +(160,347,l), +(191,347,ls), +(222,347,o), +(254,317,o), +(254,262,cs), +(254,-20,ls), +(254,-45,o), +(267,-63,o), +(295,-63,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +22 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(497,-63,l), +(497,70,l), +(377,70,l), +(377,231,ls), +(377,294,o), +(356,344,o), +(288,369,c), +(288,372,l), +(341,384,o), +(377,419,o), +(377,505,cs), +(377,659,l), +(497,659,l), +(497,793,l), +(327,793,ls), +(240,793,o), +(199,738,o), +(199,667,cs), +(199,512,ls), +(199,465,o), +(176,434,o), +(136,434,cs), +(113,434,l), +(113,295,l), +(136,295,ls), +(174,295,o), +(199,267,o), +(199,219,cs), +(199,63,ls), +(199,-8,o), +(240,-63,o), +(327,-63,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/braceleft.glyph b/sources/MonaSansMono.glyphspackage/glyphs/braceleft.glyph new file mode 100644 index 00000000..4c6a7f4d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/braceleft.glyph @@ -0,0 +1,171 @@ +{ +glyphname = braceleft; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(507,-167,l), +(507,-135,l), +(290,-135,l), +(290,208,ls), +(290,267,o), +(257,309,o), +(220,311,c), +(220,315,l), +(255,316,o), +(290,356,o), +(290,417,cs), +(290,761,l), +(507,761,l), +(507,793,l), +(295,793,ls), +(267,793,o), +(254,775,o), +(254,750,cs), +(254,417,ls), +(254,361,o), +(222,331,o), +(191,331,cs), +(90,331,l), +(90,294,l), +(191,294,ls), +(222,294,o), +(254,264,o), +(254,209,cs), +(254,-124,ls), +(254,-149,o), +(267,-167,o), +(295,-167,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(527,-167,l), +(527,-24,l), +(377,-24,l), +(377,171,ls), +(377,234,o), +(356,284,o), +(288,309,c), +(288,312,l), +(341,324,o), +(377,359,o), +(377,445,cs), +(377,649,l), +(527,649,l), +(527,793,l), +(327,793,ls), +(240,793,o), +(199,738,o), +(199,667,cs), +(199,452,ls), +(199,405,o), +(176,374,o), +(136,374,cs), +(73,374,l), +(73,235,l), +(136,235,ls), +(174,235,o), +(199,207,o), +(199,159,cs), +(199,-41,ls), +(199,-112,o), +(240,-167,o), +(327,-167,cs) +); +} +); +width = 618; +} +); +unicode = 123; +userData = { +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/braceright.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/braceright.case.glyph new file mode 100644 index 00000000..ef2f000f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/braceright.case.glyph @@ -0,0 +1,129 @@ +{ +color = 6; +glyphname = braceright.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +angle = 180; +pos = (619,729); +ref = braceleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +30 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +angle = 180; +pos = (618,729); +ref = braceleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceright; +}; +width = 618; +} +); +metricLeft = braceright; +metricRight = braceright; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/braceright.glyph b/sources/MonaSansMono.glyphspackage/glyphs/braceright.glyph new file mode 100644 index 00000000..04512e35 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/braceright.glyph @@ -0,0 +1,93 @@ +{ +color = 6; +glyphname = braceright; +kernLeft = braceright; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (619,626); +ref = braceleft; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (618,626); +ref = braceleft; +} +); +width = 618; +} +); +metricLeft = "=|braceleft"; +metricRight = "=|braceleft"; +unicode = 125; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/bracketleft.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/bracketleft.case.glyph new file mode 100644 index 00000000..de564cdd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/bracketleft.case.glyph @@ -0,0 +1,100 @@ +{ +glyphname = bracketleft.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-63,l), +(441,-31,l), +(274,-31,l), +(274,761,l), +(441,761,l), +(441,793,l), +(238,793,l), +(238,-63,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = bracketleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft.case; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(475,-63,l), +(475,70,l), +(355,70,l), +(355,659,l), +(475,659,l), +(475,793,l), +(177,793,l), +(177,-63,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = bracketleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = braceleft.case; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/bracketleft.glyph b/sources/MonaSansMono.glyphspackage/glyphs/bracketleft.glyph new file mode 100644 index 00000000..ae74d291 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/bracketleft.glyph @@ -0,0 +1,98 @@ +{ +glyphname = bracketleft; +kernRight = bracketleft; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(472,-167,l), +(472,-135,l), +(205,-135,l), +(205,761,l), +(472,761,l), +(472,793,l), +(169,793,l), +(169,-167,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(516,-167,l), +(516,-24,l), +(326,-24,l), +(326,649,l), +(516,649,l), +(516,793,l), +(148,793,l), +(148,-167,l) +); +} +); +width = 619; +} +); +unicode = 91; +userData = { +KernOnName = bracketleft; +KernOnSpecialSpacing = { +L = NoKerning; +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/bracketright.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/bracketright.case.glyph new file mode 100644 index 00000000..60c123b4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/bracketright.case.glyph @@ -0,0 +1,76 @@ +{ +color = 6; +glyphname = bracketright.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +angle = 180; +pos = (618,729); +ref = bracketleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright.case; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = bracketright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +angle = 180; +pos = (618,729); +ref = bracketleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = braceright.case; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = bracketright; +}; +width = 618; +} +); +metricLeft = braceright.case; +metricRight = bracketright; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/bracketright.glyph b/sources/MonaSansMono.glyphspackage/glyphs/bracketright.glyph new file mode 100644 index 00000000..f3583a21 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/bracketright.glyph @@ -0,0 +1,86 @@ +{ +color = 6; +glyphname = bracketright; +kernLeft = bracketright; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (619,626); +ref = bracketleft; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (619,626); +ref = bracketleft; +} +); +width = 619; +} +); +metricLeft = "=|bracketleft"; +metricRight = "=|bracketleft"; +unicode = 93; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/breve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/breve.glyph new file mode 100644 index 00000000..e0d8b369 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/breve.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = breve; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 728; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/brevecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb.glyph new file mode 100644 index 00000000..c0425e3e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb.glyph @@ -0,0 +1,76 @@ +{ +glyphname = brevecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(391,742,o), +(436,790,o), +(437,882,c), +(401,882,l), +(401,810,o), +(369,773,o), +(309,773,cs), +(249,773,o), +(217,810,o), +(217,882,c), +(181,882,l), +(182,790,o), +(227,742,o), +(309,742,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(416,729,o), +(488,791,o), +(488,884,c), +(368,884,l), +(368,846,o), +(343,828,o), +(309,828,cs), +(275,828,o), +(250,846,o), +(250,884,c), +(130,884,l), +(130,791,o), +(202,729,o), +(309,729,cs) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 774; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_acutecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_acutecomb.glyph new file mode 100644 index 00000000..03a9d544 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_acutecomb.glyph @@ -0,0 +1,87 @@ +{ +glyphname = brevecomb_acutecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(385,741,o), +(436,791,o), +(437,867,c), +(401,867,l), +(401,806,o), +(364,772,o), +(309,772,cs), +(250,772,o), +(217,810,o), +(217,867,c), +(181,867,l), +(182,791,o), +(233,741,o), +(309,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,867,l), +(388,982,l), +(347,982,l), +(289,867,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(416,709,o), +(488,764,o), +(488,845,c), +(358,845,l), +(358,819,o), +(340,802,o), +(309,802,cs), +(278,802,o), +(260,819,o), +(260,845,c), +(130,845,l), +(130,764,o), +(202,709,o), +(309,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,875,l), +(466,984,l), +(309,984,l), +(252,875,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_gravecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_gravecomb.glyph new file mode 100644 index 00000000..e89cdbab --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_gravecomb.glyph @@ -0,0 +1,87 @@ +{ +glyphname = brevecomb_gravecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(385,741,o), +(436,791,o), +(437,867,c), +(401,867,l), +(401,810,o), +(368,772,o), +(309,772,cs), +(254,772,o), +(217,806,o), +(217,867,c), +(181,867,l), +(182,791,o), +(233,741,o), +(309,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,867,l), +(271,982,l), +(230,982,l), +(298,867,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(416,709,o), +(488,764,o), +(488,845,c), +(358,845,l), +(358,819,o), +(340,802,o), +(309,802,cs), +(278,802,o), +(260,819,o), +(260,845,c), +(130,845,l), +(130,764,o), +(202,709,o), +(309,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(366,875,l), +(309,984,l), +(152,984,l), +(248,875,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_hookabovecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_hookabovecomb.glyph new file mode 100644 index 00000000..e547ea4a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_hookabovecomb.glyph @@ -0,0 +1,167 @@ +{ +glyphname = brevecomb_hookabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(385,741,o), +(436,791,o), +(437,867,c), +(401,867,l), +(401,810,o), +(368,772,o), +(309,772,cs), +(254,772,o), +(217,806,o), +(217,867,c), +(181,867,l), +(182,791,o), +(233,741,o), +(309,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,868,o), +(365,895,o), +(365,927,cs), +(365,963,o), +(338,986,o), +(298,986,cs), +(284,986,o), +(265,984,o), +(250,977,c), +(251,949,l), +(263,955,o), +(278,957,o), +(291,957,cs), +(314,957,o), +(329,945,o), +(329,924,cs), +(329,900,o), +(315,886,o), +(288,868,c), +(305,845,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (306,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(416,709,o), +(488,764,o), +(488,845,c), +(358,845,l), +(358,819,o), +(340,802,o), +(309,802,cs), +(278,802,o), +(260,819,o), +(260,845,c), +(130,845,l), +(130,764,o), +(202,709,o), +(309,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,865,o), +(404,892,o), +(404,932,cs), +(404,973,o), +(368,996,o), +(305,996,cs), +(285,996,o), +(260,994,o), +(238,988,c), +(238,928,l), +(249,930,o), +(258,931,o), +(266,931,cs), +(284,931,o), +(295,926,o), +(295,913,cs), +(295,903,o), +(288,896,o), +(262,888,c), +(292,843,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(416,709,o), +(488,764,o), +(488,845,c), +(358,845,l), +(358,819,o), +(340,802,o), +(309,802,cs), +(278,802,o), +(260,819,o), +(260,845,c), +(130,845,l), +(130,764,o), +(202,709,o), +(309,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(388,869,o), +(427,900,o), +(427,947,cs), +(427,994,o), +(384,1021,o), +(311,1021,cs), +(288,1021,o), +(259,1019,o), +(233,1012,c), +(233,942,l), +(246,944,o), +(257,945,o), +(266,945,cs), +(287,945,o), +(300,940,o), +(300,924,cs), +(300,913,o), +(292,905,o), +(261,895,c), +(296,843,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_tildecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_tildecomb.glyph new file mode 100644 index 00000000..6790f9c7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/brevecomb_tildecomb.glyph @@ -0,0 +1,196 @@ +{ +glyphname = brevecomb_tildecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (310,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(392,726,o), +(437,774,o), +(438,867,c), +(402,867,l), +(402,794,o), +(370,757,o), +(310,757,cs), +(250,757,o), +(218,794,o), +(218,867,c), +(182,867,l), +(183,774,o), +(228,726,o), +(310,726,cs) +); +}, +{ +closed = 1; +nodes = ( +(398,913,o), +(421,927,o), +(442,962,c), +(424,975,l), +(410,954,o), +(391,945,o), +(371,945,cs), +(331,944,o), +(288,973,o), +(252,973,cs), +(218,973,o), +(199,959,o), +(177,923,c), +(195,911,l), +(210,933,o), +(224,940,o), +(246,940,cs), +(284,940,o), +(312,913,o), +(364,913,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(386,741,o), +(437,791,o), +(438,867,c), +(402,867,l), +(402,810,o), +(369,772,o), +(310,772,cs), +(255,772,o), +(218,806,o), +(218,867,c), +(182,867,l), +(183,791,o), +(234,741,o), +(310,741,cs) +); +}, +{ +closed = 1; +nodes = ( +(398,913,o), +(421,927,o), +(442,962,c), +(424,975,l), +(410,953,o), +(390,945,o), +(369,945,cs), +(330,945,o), +(287,973,o), +(252,973,cs), +(218,973,o), +(199,959,o), +(177,923,c), +(195,911,l), +(210,933,o), +(224,940,o), +(246,940,cs), +(284,940,o), +(312,913,o), +(364,913,cs) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(202,997,o), +(149,972,o), +(121,908,c), +(192,874,l), +(207,892,o), +(223,903,o), +(250,903,cs), +(298,903,o), +(313,876,o), +(370,876,cs), +(412,876,o), +(465,895,o), +(497,960,c), +(428,996,l), +(412,982,o), +(395,968,o), +(366,968,cs), +(322,969,o), +(301,996,o), +(251,997,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(416,709,o), +(488,764,o), +(488,845,c), +(358,845,l), +(358,819,o), +(340,802,o), +(309,802,cs), +(278,802,o), +(260,819,o), +(260,845,c), +(130,845,l), +(130,764,o), +(202,709,o), +(309,709,cs) +); +}, +{ +closed = 1; +nodes = ( +(416,875,o), +(469,900,o), +(497,964,c), +(426,998,l), +(411,980,o), +(395,969,o), +(368,969,cs), +(320,969,o), +(305,996,o), +(248,996,cs), +(206,996,o), +(153,977,o), +(121,912,c), +(190,876,l), +(206,890,o), +(223,904,o), +(252,904,cs), +(296,904,o), +(317,875,o), +(367,875,cs) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/brokenbar.glyph b/sources/MonaSansMono.glyphspackage/glyphs/brokenbar.glyph new file mode 100644 index 00000000..3f7e1f09 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/brokenbar.glyph @@ -0,0 +1,90 @@ +{ +glyphname = brokenbar; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(327,417,l), +(327,729,l), +(291,729,l), +(291,417,l) +); +}, +{ +closed = 1; +nodes = ( +(327,-67,l), +(327,245,l), +(291,245,l), +(291,-67,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(395,380,l), +(395,729,l), +(224,729,l), +(224,380,l) +); +}, +{ +closed = 1; +nodes = ( +(395,-67,l), +(395,282,l), +(224,282,l), +(224,-67,l) +); +} +); +width = 619; +} +); +metricLeft = bar; +metricRight = bar; +unicode = 166; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/bullet.glyph b/sources/MonaSansMono.glyphspackage/glyphs/bullet.glyph new file mode 100644 index 00000000..28463cf5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/bullet.glyph @@ -0,0 +1,58 @@ +{ +glyphname = bullet; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(374,171,o), +(417,216,o), +(417,277,cs), +(417,339,o), +(374,384,o), +(309,384,cs), +(246,384,o), +(200,339,o), +(200,277,cs), +(200,216,o), +(246,171,o), +(309,171,cs) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(391,142,o), +(445,200,o), +(445,277,cs), +(445,354,o), +(391,412,o), +(309,412,cs), +(231,412,o), +(173,354,o), +(173,277,cs), +(173,200,o), +(231,142,o), +(309,142,cs) +); +} +); +width = 619; +} +); +unicode = 8226; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/bullet.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/bullet.ss01.glyph new file mode 100644 index 00000000..5bb2a329 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/bullet.ss01.glyph @@ -0,0 +1,83 @@ +{ +glyphname = bullet.ss01; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(374,171,o), +(417,216,o), +(417,277,cs), +(417,339,o), +(374,384,o), +(309,384,cs), +(246,384,o), +(200,339,o), +(200,277,cs), +(200,216,o), +(246,171,o), +(309,171,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(407,177,l), +(407,382,l), +(211,382,l), +(211,177,l) +); +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(390,142,o), +(444,200,o), +(444,277,cs), +(444,354,o), +(390,412,o), +(308,412,cs), +(230,412,o), +(172,354,o), +(172,277,cs), +(172,200,o), +(230,142,o), +(308,142,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(435,153,l), +(435,405,l), +(184,405,l), +(184,153,l) +); +} +); +width = 619; +} +); +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/c.glyph b/sources/MonaSansMono.glyphspackage/glyphs/c.glyph new file mode 100644 index 00000000..e46b7427 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/c.glyph @@ -0,0 +1,221 @@ +{ +glyphname = c; +kernLeft = e; +kernRight = c; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (327,0); +}, +{ +name = top; +pos = (328,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(445,-8,o), +(532,63,o), +(544,174,c), +(507,174,l), +(497,85,o), +(425,27,o), +(326,27,cs), +(203,27,o), +(122,115,o), +(122,257,cs), +(122,395,o), +(200,490,o), +(327,490,cs), +(417,490,o), +(489,441,o), +(505,354,c), +(541,354,l), +(528,456,o), +(443,525,o), +(329,525,cs), +(181,525,o), +(85,416,o), +(85,257,cs), +(85,98,o), +(181,-8,o), +(326,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-8,o), +(529,58,o), +(547,169,c), +(510,169,l), +(493,78,o), +(422,27,o), +(327,27,cs), +(202,27,o), +(120,115,o), +(120,257,cs), +(120,395,o), +(199,490,o), +(328,490,cs), +(420,490,o), +(487,437,o), +(507,359,c), +(544,359,l), +(526,460,o), +(442,525,o), +(330,525,cs), +(180,525,o), +(83,416,o), +(83,257,cs), +(83,98,o), +(180,-8,o), +(327,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (318,0); +}, +{ +name = top; +pos = (319,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(43,92,o), +(155,-10,o), +(322,-10,cs), +(501,-10,o), +(601,103,o), +(601,272,cs), +(601,452,o), +(489,554,o), +(322,554,cs), +(143,554,o), +(43,441,o), +(43,272,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,364,o), +(271,400,o), +(322,400,cs), +(373,400,o), +(407,364,o), +(407,272,cs), +(407,180,o), +(373,144,o), +(322,144,cs), +(271,144,o), +(237,180,o), +(237,272,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(469,-10,o), +(579,76,o), +(583,208,c), +(398,208,l), +(393,171,o), +(367,144,o), +(318,144,cs), +(266,144,o), +(231,182,o), +(231,272,cs), +(231,351,o), +(258,400,o), +(319,400,cs), +(359,400,o), +(389,380,o), +(396,336,c), +(582,336,l), +(580,465,o), +(473,554,o), +(323,554,cs), +(149,554,o), +(37,444,o), +(37,273,cs), +(37,102,o), +(148,-10,o), +(318,-10,cs) +); +} +); +width = 618; +} +); +unicode = 99; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/cacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/cacute.glyph new file mode 100644 index 00000000..02964284 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/cacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = cacute; +kernLeft = e; +kernRight = c; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (58,-155); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (58,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 263; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/caron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/caron.glyph new file mode 100644 index 00000000..a3a3716f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/caron.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = caron; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 711; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/caroncomb.alt.glyph b/sources/MonaSansMono.glyphspackage/glyphs/caroncomb.alt.glyph new file mode 100644 index 00000000..e9d7cc8e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/caroncomb.alt.glyph @@ -0,0 +1,56 @@ +{ +export = 0; +glyphname = caroncomb.alt; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (199,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(291,536,l), +(361,729,l), +(325,729,l), +(257,536,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _topright; +pos = (189,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(332,569,l), +(410,729,l), +(246,729,l), +(208,569,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/caroncomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/caroncomb.glyph new file mode 100644 index 00000000..ecc34105 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/caroncomb.glyph @@ -0,0 +1,62 @@ +{ +glyphname = caroncomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (309,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(330,746,l), +(434,882,l), +(394,882,l), +(309,770,l), +(224,882,l), +(185,882,l), +(288,746,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(401,735,l), +(516,884,l), +(358,884,l), +(309,818,l), +(260,884,l), +(102,884,l), +(217,735,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 780; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ccaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ccaron.glyph new file mode 100644 index 00000000..5d6cb0c1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ccaron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ccaron; +kernLeft = egrave; +kernRight = c; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (19,-155); +ref = caroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (10,-134); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 269; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ccedilla.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ccedilla.glyph new file mode 100644 index 00000000..c974100f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ccedilla.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ccedilla; +kernLeft = e; +kernRight = c; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (13,0); +ref = cedillacomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (-14,0); +ref = cedillacomb; +} +); +width = 618; +} +); +unicode = 231; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ccircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ccircumflex.glyph new file mode 100644 index 00000000..6eff9cbd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ccircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ccircumflex; +kernLeft = egrave; +kernRight = c; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (19,-155); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (10,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 265; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/cdotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/cdotaccent.glyph new file mode 100644 index 00000000..1944527b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/cdotaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = cdotaccent; +kernLeft = e; +kernRight = c; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (18,-155); +ref = dotaccentcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (3,-134); +ref = dotaccentcomb; +} +); +width = 618; +} +); +unicode = 267; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/cdotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/cdotaccent.ss01.glyph new file mode 100644 index 00000000..22e959bf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/cdotaccent.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = cdotaccent.ss01; +kernLeft = e; +kernRight = c; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = c; +}, +{ +pos = (18,-155); +ref = dotaccentcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = c; +}, +{ +pos = (9,-134); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/cedilla.glyph b/sources/MonaSansMono.glyphspackage/glyphs/cedilla.glyph new file mode 100644 index 00000000..bbdfebf8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/cedilla.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = cedilla; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = cedillacomb; +} +); +width = 618; +} +); +unicode = 184; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/cedillacomb.T_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/cedillacomb.T_.glyph new file mode 100644 index 00000000..4403a6ec --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/cedillacomb.T_.glyph @@ -0,0 +1,88 @@ +{ +export = 0; +glyphname = cedillacomb.T; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (314,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(370,-233,o), +(409,-198,o), +(409,-149,cs), +(409,-101,o), +(372,-66,o), +(303,-51,c), +(333,0,l), +(303,13,l), +(264,-51,l), +(277,-76,l), +(348,-90,o), +(374,-110,o), +(374,-147,cs), +(374,-180,o), +(352,-204,o), +(312,-204,cs), +(276,-204,o), +(253,-188,o), +(243,-159,c), +(210,-169,l), +(223,-210,o), +(261,-233,o), +(311,-233,cs) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (332,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-261,o), +(464,-221,o), +(464,-149,cs), +(464,-86,o), +(424,-53,o), +(365,-34,c), +(383,23,l), +(305,23,l), +(250,-61,l), +(264,-88,l), +(312,-95,o), +(340,-100,o), +(340,-127,cs), +(340,-146,o), +(326,-158,o), +(305,-158,cs), +(283,-158,o), +(267,-144,o), +(266,-124,c), +(154,-153,l), +(168,-229,o), +(239,-261,o), +(317,-261,cs) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/cedillacomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/cedillacomb.glyph new file mode 100644 index 00000000..44cf5f33 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/cedillacomb.glyph @@ -0,0 +1,219 @@ +{ +glyphname = cedillacomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (314,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(391,-218,o), +(432,-185,o), +(432,-137,cs), +(432,-81,o), +(378,-52,o), +(310,-61,c), +(332,-65,l), +(359,6,l), +(329,6,l), +(294,-71,l), +(304,-84,l), +(318,-84,ls), +(362,-84,o), +(395,-98,o), +(395,-135,cs), +(395,-166,o), +(372,-187,o), +(331,-187,cs), +(298,-187,o), +(272,-176,o), +(263,-149,c), +(227,-155,l), +(238,-195,o), +(279,-218,o), +(332,-218,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,-229,o), +(147,-192,o), +(147,-138,cs), +(147,-79,o), +(97,-46,o), +(25,-49,c), +(34,-59,l), +(53,4,l), +(22,6,l), +(0,-54,l), +(15,-75,l), +(75,-74,o), +(112,-91,o), +(112,-136,cs), +(112,-175,o), +(82,-201,o), +(33,-201,cs), +(-12,-201,o), +(-43,-182,o), +(-52,-150,c), +(-84,-158,l), +(-73,-201,o), +(-27,-229,o), +(33,-229,cs) +); +}, +{ +closed = 1; +nodes = ( +(668,-233,o), +(707,-199,o), +(707,-149,cs), +(707,-101,o), +(671,-67,o), +(605,-52,c), +(635,16,l), +(607,20,l), +(569,-55,l), +(578,-76,l), +(647,-90,o), +(674,-110,o), +(674,-147,cs), +(674,-181,o), +(651,-205,o), +(608,-204,cs), +(574,-204,o), +(552,-188,o), +(542,-160,c), +(510,-169,l), +(523,-208,o), +(560,-232,o), +(608,-233,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(369,-234,o), +(409,-199,o), +(409,-149,cs), +(409,-101,o), +(373,-67,o), +(306,-52,c), +(334,10,l), +(302,10,l), +(269,-55,l), +(279,-76,l), +(348,-90,o), +(374,-110,o), +(374,-147,cs), +(374,-181,o), +(351,-204,o), +(309,-204,cs), +(275,-203,o), +(253,-187,o), +(243,-159,c), +(210,-169,l), +(223,-209,o), +(260,-233,o), +(309,-233,cs) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (332,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(409,-225,o), +(464,-181,o), +(463,-115,cs), +(462,-57,o), +(413,-19,o), +(342,-29,c), +(360,-40,l), +(387,25,l), +(288,25,l), +(248,-47,l), +(260,-70,l), +(297,-70,ls), +(321,-70,o), +(339,-77,o), +(339,-102,cs), +(339,-120,o), +(326,-132,o), +(308,-132,cs), +(291,-132,o), +(278,-121,o), +(276,-105,c), +(154,-128,l), +(167,-186,o), +(224,-225,o), +(310,-225,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-261,o), +(464,-221,o), +(464,-149,cs), +(464,-86,o), +(424,-53,o), +(365,-34,c), +(383,23,l), +(305,23,l), +(250,-61,l), +(264,-88,l), +(312,-95,o), +(340,-100,o), +(340,-127,cs), +(340,-146,o), +(326,-158,o), +(305,-158,cs), +(283,-158,o), +(267,-144,o), +(266,-124,c), +(154,-153,l), +(168,-229,o), +(239,-261,o), +(317,-261,cs) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 807; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/cent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/cent.glyph new file mode 100644 index 00000000..d10ad34b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/cent.glyph @@ -0,0 +1,146 @@ +{ +glyphname = cent; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(442,98,o), +(529,169,o), +(541,280,c), +(504,280,l), +(494,191,o), +(422,133,o), +(323,133,cs), +(200,133,o), +(119,221,o), +(119,363,cs), +(119,501,o), +(197,596,o), +(324,596,cs), +(414,596,o), +(486,547,o), +(502,460,c), +(538,460,l), +(525,562,o), +(440,631,o), +(326,631,cs), +(178,631,o), +(82,522,o), +(82,363,cs), +(82,204,o), +(178,98,o), +(323,98,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,0,l), +(330,113,l), +(297,113,l), +(297,0,l) +); +}, +{ +closed = 1; +nodes = ( +(330,617,l), +(330,729,l), +(297,729,l), +(297,617,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = C; +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +0 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(467,83,o), +(575,169,o), +(579,301,c), +(394,301,l), +(389,264,o), +(365,237,o), +(318,237,cs), +(268,237,o), +(235,275,o), +(235,365,cs), +(235,444,o), +(260,493,o), +(319,493,cs), +(357,493,o), +(385,473,o), +(392,429,c), +(578,429,l), +(576,558,o), +(471,647,o), +(323,647,cs), +(151,647,o), +(41,537,o), +(41,366,cs), +(41,195,o), +(150,83,o), +(318,83,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,0,l), +(372,167,l), +(249,167,l), +(249,0,l) +); +}, +{ +closed = 1; +nodes = ( +(372,554,l), +(372,729,l), +(249,729,l), +(249,554,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = C; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = C; +}; +width = 619; +} +); +unicode = 162; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/checkmark.glyph b/sources/MonaSansMono.glyphspackage/glyphs/checkmark.glyph new file mode 100644 index 00000000..89ce4b99 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/checkmark.glyph @@ -0,0 +1,47 @@ +{ +glyphname = checkmark; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(655,560,l), +(632,587,l), +(153,187,l), +(-11,412,l), +(-37,389,l), +(149,137,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(680,533,l), +(574,658,l), +(197,299,l), +(56,463,l), +(-61,356,l), +(184,67,l) +); +} +); +width = 619; +} +); +unicode = 10003; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +com.schriftgestaltung.Glyphs.lastChange = "2017-05-03 17:15:08 +0000"; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/circumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/circumflex.glyph new file mode 100644 index 00000000..c206fe09 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/circumflex.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = circumflex; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 710; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb.glyph new file mode 100644 index 00000000..5f66b23a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb.glyph @@ -0,0 +1,62 @@ +{ +glyphname = circumflexcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (309,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(224,746,l), +(309,858,l), +(395,746,l), +(434,746,l), +(330,882,l), +(288,882,l), +(185,746,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(260,735,l), +(309,801,l), +(358,735,l), +(516,735,l), +(401,884,l), +(217,884,l), +(102,735,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 770; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_acutecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_acutecomb.glyph new file mode 100644 index 00000000..e8259cd6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_acutecomb.glyph @@ -0,0 +1,73 @@ +{ +glyphname = circumflexcomb_acutecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (259,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(174,746,l), +(259,858,l), +(345,746,l), +(384,746,l), +(280,882,l), +(238,882,l), +(135,746,l) +); +}, +{ +closed = 1; +nodes = ( +(386,836,l), +(483,972,l), +(442,972,l), +(350,836,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (234,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(185,735,l), +(234,801,l), +(283,735,l), +(441,735,l), +(326,884,l), +(142,884,l), +(27,735,l) +); +}, +{ +closed = 1; +nodes = ( +(494,833,l), +(591,972,l), +(443,972,l), +(390,833,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_gravecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_gravecomb.glyph new file mode 100644 index 00000000..8f0b042b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_gravecomb.glyph @@ -0,0 +1,73 @@ +{ +glyphname = circumflexcomb_gravecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (281,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(196,746,l), +(281,858,l), +(367,746,l), +(406,746,l), +(302,882,l), +(260,882,l), +(157,746,l) +); +}, +{ +closed = 1; +nodes = ( +(462,836,l), +(367,972,l), +(326,972,l), +(424,836,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (274,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(225,735,l), +(274,801,l), +(323,735,l), +(481,735,l), +(366,884,l), +(182,884,l), +(67,735,l) +); +}, +{ +closed = 1; +nodes = ( +(551,833,l), +(508,972,l), +(360,972,l), +(447,833,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_hookabovecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_hookabovecomb.glyph new file mode 100644 index 00000000..77a24594 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_hookabovecomb.glyph @@ -0,0 +1,187 @@ +{ +glyphname = circumflexcomb_hookabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (265,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(181,726,l), +(265,828,l), +(350,726,l), +(390,726,l), +(287,852,l), +(243,852,l), +(141,726,l) +); +}, +{ +closed = 1; +nodes = ( +(442,827,o), +(466,864,o), +(466,904,cs), +(466,947,o), +(434,976,o), +(386,976,cs), +(370,976,o), +(354,974,o), +(338,968,c), +(339,939,l), +(352,945,o), +(365,947,o), +(381,947,cs), +(414,947,o), +(433,928,o), +(433,901,cs), +(433,868,o), +(409,844,o), +(362,817,c), +(380,793,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(180,746,l), +(265,858,l), +(351,746,l), +(390,746,l), +(286,882,l), +(244,882,l), +(141,746,l) +); +}, +{ +closed = 1; +nodes = ( +(454,826,o), +(477,864,o), +(477,903,cs), +(477,947,o), +(444,976,o), +(394,976,cs), +(380,976,o), +(363,974,o), +(348,968,c), +(349,939,l), +(361,945,o), +(375,947,o), +(389,947,cs), +(426,947,o), +(443,928,o), +(443,900,cs), +(443,868,o), +(421,843,o), +(382,817,c), +(400,793,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (263,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(204,719,l), +(253,791,l), +(302,719,l), +(460,719,l), +(345,873,l), +(161,873,l), +(56,719,l) +); +}, +{ +closed = 1; +nodes = ( +(535,827,o), +(572,865,o), +(572,914,cs), +(572,968,o), +(528,998,o), +(448,998,cs), +(422,998,o), +(392,995,o), +(364,988,c), +(364,916,l), +(376,919,o), +(390,920,o), +(403,920,cs), +(425,920,o), +(440,913,o), +(440,896,cs), +(440,881,o), +(428,870,o), +(396,859,c), +(443,794,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(214,735,l), +(263,801,l), +(312,735,l), +(470,735,l), +(355,884,l), +(171,884,l), +(56,735,l) +); +}, +{ +closed = 1; +nodes = ( +(537,815,o), +(563,855,o), +(563,902,cs), +(563,953,o), +(526,988,o), +(458,988,cs), +(437,988,o), +(408,985,o), +(385,978,c), +(384,906,l), +(390,909,o), +(400,910,o), +(407,910,cs), +(427,910,o), +(436,899,o), +(436,883,cs), +(436,869,o), +(428,855,o), +(419,847,c), +(469,784,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_tildecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_tildecomb.glyph new file mode 100644 index 00000000..4ed69b7a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/circumflexcomb_tildecomb.glyph @@ -0,0 +1,146 @@ +{ +glyphname = circumflexcomb_tildecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (301,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(216,746,l), +(301,858,l), +(387,746,l), +(426,746,l), +(322,882,l), +(280,882,l), +(177,746,l) +); +}, +{ +closed = 1; +nodes = ( +(210,936,o), +(224,943,o), +(246,943,cs), +(284,943,o), +(312,916,o), +(364,916,cs), +(398,916,o), +(421,930,o), +(442,965,c), +(424,978,l), +(410,956,o), +(390,948,o), +(369,948,cs), +(330,948,o), +(287,976,o), +(252,976,cs), +(218,976,o), +(199,962,o), +(177,926,c), +(195,914,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(260,735,l), +(309,796,l), +(358,735,l), +(516,735,l), +(407,856,l), +(212,856,l), +(102,735,l) +); +}, +{ +closed = 1; +nodes = ( +(411,875,o), +(464,900,o), +(492,964,c), +(421,998,l), +(406,980,o), +(390,969,o), +(363,969,cs), +(315,969,o), +(300,996,o), +(243,996,cs), +(201,996,o), +(148,977,o), +(116,912,c), +(185,876,l), +(201,890,o), +(218,904,o), +(247,904,cs), +(291,904,o), +(312,875,o), +(362,875,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(260,735,l), +(309,795,l), +(358,735,l), +(516,735,l), +(407,855,l), +(212,855,l), +(102,735,l) +); +}, +{ +closed = 1; +nodes = ( +(192,899,o), +(209,906,o), +(230,906,cs), +(276,906,o), +(322,878,o), +(382,878,cs), +(438,878,o), +(473,907,o), +(499,962,c), +(440,998,l), +(426,977,o), +(409,970,o), +(388,970,cs), +(342,970,o), +(296,998,o), +(236,998,cs), +(180,998,o), +(145,969,o), +(119,914,c), +(178,878,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/colon.glyph b/sources/MonaSansMono.glyphspackage/glyphs/colon.glyph new file mode 100644 index 00000000..68da11cd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/colon.glyph @@ -0,0 +1,128 @@ +{ +color = 6; +glyphname = colon; +kernLeft = colon; +kernRight = colon; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(558,465,o), +(571,477,o), +(571,494,cs), +(571,511,o), +(558,523,o), +(541,523,cs), +(524,523,o), +(511,511,o), +(511,494,cs), +(511,477,o), +(524,465,o), +(541,465,cs) +); +}, +{ +closed = 1; +nodes = ( +(558,-7,o), +(571,5,o), +(571,22,cs), +(571,39,o), +(558,51,o), +(541,51,cs), +(524,51,o), +(511,39,o), +(511,22,cs), +(511,5,o), +(524,-7,o), +(541,-7,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (0,441); +ref = period; +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(581,378,o), +(619,413,o), +(619,466,cs), +(619,519,o), +(581,554,o), +(525,554,cs), +(469,554,o), +(431,519,o), +(431,466,cs), +(431,413,o), +(469,378,o), +(525,378,cs) +); +}, +{ +closed = 1; +nodes = ( +(581,-8,o), +(619,27,o), +(619,80,cs), +(619,133,o), +(581,168,o), +(525,168,cs), +(469,168,o), +(431,133,o), +(431,80,cs), +(431,27,o), +(469,-8,o), +(525,-8,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = period; +}, +{ +alignment = 1; +anchor = top; +pos = (0,309); +ref = period; +} +); +width = 618; +} +); +metricLeft = period; +metricRight = period; +unicode = 58; +userData = { +KernOnName = colon; +KernOnSpecialSpacing = { +L = "spaced-off"; +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/colon.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/colon.ss01.glyph new file mode 100644 index 00000000..46b89ed9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/colon.ss01.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = colon.ss01; +kernLeft = colon.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,456); +ref = period.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (0,380); +ref = period.ss01; +} +); +width = 619; +} +); +metricLeft = period; +metricRight = period; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/comma.glyph b/sources/MonaSansMono.glyphspackage/glyphs/comma.glyph new file mode 100644 index 00000000..f2970a6f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/comma.glyph @@ -0,0 +1,161 @@ +{ +glyphname = comma; +kernLeft = comma; +kernRight = comma; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (221,0); +}, +{ +name = "#exit"; +pos = (410,0); +}, +{ +name = top; +pos = (311,524); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(328,-7,o), +(341,5,o), +(341,22,cs), +(341,39,o), +(328,51,o), +(311,51,cs), +(294,51,o), +(281,39,o), +(281,22,cs), +(281,5,o), +(294,-7,o), +(311,-7,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(298,-167,l), +(327,-123,o), +(366,-34,o), +(366,21,cs), +(366,68,o), +(344,88,o), +(316,88,cs), +(287,88,o), +(268,70,o), +(268,41,cs), +(268,15,o), +(284,-4,o), +(312,-4,cs), +(329,-4,o), +(343,6,o), +(346,15,c), +(334,17,l), +(332,-31,o), +(297,-113,o), +(260,-167,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 619; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (145,0); +}, +{ +name = "#exit"; +pos = (469,3); +}, +{ +name = top; +pos = (305,552); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(304,-167,l), +(363,-112,o), +(409,-20,o), +(409,50,cs), +(409,122,o), +(367,162,o), +(308,162,cs), +(252,162,o), +(210,127,o), +(210,73,cs), +(210,24,o), +(242,-10,o), +(301,-10,cs), +(322,-10,o), +(345,-4,o), +(359,8,c), +(311,8,l), +(301,-39,o), +(254,-108,o), +(197,-167,c) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-167,l), +(385,-99,o), +(443,13,o), +(443,88,cs), +(443,183,o), +(384,239,o), +(306,239,cs), +(227,239,o), +(175,187,o), +(175,111,cs), +(175,44,o), +(219,-4,o), +(293,-4,cs), +(306,-4,o), +(317,-3,o), +(328,-2,c), +(300,16,l), +(288,-32,o), +(227,-111,o), +(173,-167,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 618; +} +); +unicode = 44; +userData = { +KernOnName = comma; +KernOnSpecialSpacing = { +L = period; +R = period; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/comma.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/comma.ss01.glyph new file mode 100644 index 00000000..0fa056e9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/comma.ss01.glyph @@ -0,0 +1,114 @@ +{ +glyphname = comma.ss01; +kernLeft = comma.ss01; +kernRight = quotedblbase.ss01; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (230,0); +}, +{ +name = "#exit"; +pos = (370,0); +}, +{ +name = top; +pos = (309,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(275,-145,ls), +(312,-139,o), +(330,-115,o), +(330,-68,cs), +(330,62,l), +(285,57,l), +(285,0,l), +(306,0,l), +(306,-63,ls), +(306,-96,o), +(298,-113,o), +(274,-118,cs), +(269,-119,l), +(269,-146,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(280,-143,ls), +(314,-135,o), +(330,-117,o), +(330,-71,cs), +(330,61,l), +(288,57,l), +(288,0,l), +(306,0,l), +(306,-60,ls), +(306,-90,o), +(305,-110,o), +(280,-116,cs), +(276,-117,l), +(276,-144,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 618; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (188,0); +}, +{ +name = "#exit"; +pos = (448,0); +}, +{ +name = top; +pos = (309,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(253,-177,ls), +(340,-177,o), +(398,-142,o), +(398,-31,cs), +(398,174,l), +(219,162,l), +(219,0,l), +(300,0,l), +(300,-24,ls), +(300,-63,o), +(280,-85,o), +(229,-85,cs), +(204,-85,l), +(204,-177,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/commaaccentcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/commaaccentcomb.glyph new file mode 100644 index 00000000..09064684 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/commaaccentcomb.glyph @@ -0,0 +1,56 @@ +{ +glyphname = commaaccentcomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (334,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(297,-193,l), +(351,-57,l), +(316,-57,l), +(268,-193,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (328,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-217,l), +(420,-57,l), +(236,-57,l), +(198,-217,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 806; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/commaturnedabovecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/commaturnedabovecomb.glyph new file mode 100644 index 00000000..7848e870 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/commaturnedabovecomb.glyph @@ -0,0 +1,68 @@ +{ +glyphname = commaturnedabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (281,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(296,746,l), +(296,777,ls), +(296,823,o), +(320,857,o), +(354,882,c), +(338,901,l), +(300,875,o), +(265,835,o), +(265,777,cs), +(265,746,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(362,735,l), +(362,760,ls), +(362,823,o), +(371,854,o), +(405,895,c), +(333,973,l), +(249,919,o), +(214,865,o), +(214,778,cs), +(214,735,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 786; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/copyright.glyph b/sources/MonaSansMono.glyphspackage/glyphs/copyright.glyph new file mode 100644 index 00000000..c9af2521 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/copyright.glyph @@ -0,0 +1,280 @@ +{ +color = 6; +glyphname = copyright; +layers = ( +{ +background = { +anchors = ( +{ +name = center; +pos = (183,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(288,160,o), +(354,217,o), +(362,300,c), +(327,300,l), +(319,231,o), +(263,192,o), +(192,192,cs), +(101,192,o), +(40,257,o), +(40,362,cs), +(40,464,o), +(98,535,o), +(193,535,cs), +(255,535,o), +(313,503,o), +(326,435,c), +(360,435,l), +(351,513,o), +(284,567,o), +(195,567,cs), +(80,567,o), +(5,484,o), +(5,362,cs), +(5,241,o), +(80,160,o), +(192,160,cs) +); +}, +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (-1,0); +ref = _copyright.C; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (192,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(310,163,o), +(390,225,o), +(393,319,c), +(260,319,l), +(256,293,o), +(235,274,o), +(198,274,cs), +(157,274,o), +(130,301,o), +(130,365,cs), +(130,420,o), +(151,455,o), +(199,455,cs), +(229,455,o), +(253,441,o), +(259,410,c), +(393,410,l), +(391,499,o), +(316,567,o), +(202,567,cs), +(73,567,o), +(-10,488,o), +(-10,365,cs), +(-10,243,o), +(72,163,o), +(198,163,cs) +); +}, +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (-1,0); +ref = _copyright.C; +} +); +width = 618; +} +); +metricLeft = whiteCircle; +metricRight = whiteCircle; +unicode = 169; +userData = { +KernOnSpecialSpacing = { +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/currency.glyph b/sources/MonaSansMono.glyphspackage/glyphs/currency.glyph new file mode 100644 index 00000000..ff12909e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/currency.glyph @@ -0,0 +1,194 @@ +{ +glyphname = currency; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(192,207,l), +(224,182,o), +(266,167,o), +(310,167,cs), +(354,167,o), +(396,182,o), +(427,208,c), +(536,97,l), +(561,120,l), +(451,231,l), +(479,261,o), +(494,305,o), +(494,348,cs), +(494,395,o), +(478,437,o), +(452,468,c), +(561,577,l), +(536,602,l), +(427,491,l), +(396,516,o), +(354,529,o), +(310,529,cs), +(262,529,o), +(222,514,o), +(193,491,c), +(84,602,l), +(59,577,l), +(167,468,l), +(141,437,o), +(124,395,o), +(124,348,cs), +(124,302,o), +(141,260,o), +(166,231,c), +(59,120,l), +(84,97,l) +); +}, +{ +closed = 1; +nodes = ( +(223,203,o), +(161,265,o), +(161,349,cs), +(161,435,o), +(224,496,o), +(310,496,cs), +(395,496,o), +(458,435,o), +(458,349,cs), +(458,265,o), +(396,203,o), +(310,203,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +30 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(221,158,l), +(247,151,o), +(273,146,o), +(309,146,cs), +(337,146,o), +(370,150,o), +(397,158,c), +(496,60,l), +(601,166,l), +(509,257,l), +(523,286,o), +(529,318,o), +(529,348,cs), +(529,382,o), +(523,412,o), +(508,442,c), +(600,532,l), +(495,639,l), +(395,538,l), +(365,548,o), +(333,552,o), +(309,552,cs), +(283,552,o), +(249,547,o), +(223,538,c), +(123,639,l), +(18,532,l), +(110,442,l), +(97,416,o), +(90,384,o), +(90,348,cs), +(90,321,o), +(94,288,o), +(109,257,c), +(17,166,l), +(122,60,l) +); +}, +{ +closed = 1; +nodes = ( +(275,290,o), +(247,312,o), +(247,348,cs), +(247,383,o), +(275,408,o), +(309,408,cs), +(344,408,o), +(372,383,o), +(372,348,cs), +(372,313,o), +(343,290,o), +(309,290,cs) +); +} +); +width = 618; +} +); +unicode = 164; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/d.glyph b/sources/MonaSansMono.glyphspackage/glyphs/d.glyph new file mode 100644 index 00000000..d1a649ac --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/d.glyph @@ -0,0 +1,284 @@ +{ +glyphname = d; +kernLeft = a; +kernRight = l; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = center; +pos = (458,631); +}, +{ +name = top; +pos = (313,729); +}, +{ +name = topright; +pos = (515,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-8,o), +(444,45,o), +(469,121,c), +(479,121,l), +(481,0,l), +(515,0,l), +(515,729,l), +(478,729,l), +(478,398,l), +(468,398,l), +(443,474,o), +(378,526,o), +(285,526,cs), +(159,526,o), +(73,425,o), +(73,259,cs), +(73,94,o), +(159,-8,o), +(285,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,26,o), +(111,112,o), +(111,259,cs), +(111,408,o), +(184,493,o), +(293,493,cs), +(410,493,o), +(478,397,o), +(478,295,cs), +(478,224,ls), +(478,122,o), +(410,26,o), +(293,26,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = c; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +1, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (443,631); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topright; +pos = (564,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(300,-10,o), +(359,27,o), +(383,83,c), +(393,83,l), +(400,0,l), +(584,0,l), +(584,729,l), +(393,729,l), +(393,461,l), +(383,461,l), +(359,517,o), +(300,554,o), +(223,554,cs), +(95,554,o), +(10,464,o), +(10,272,cs), +(10,80,o), +(95,-10,o), +(223,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,143,o), +(205,179,o), +(205,272,cs), +(205,365,o), +(242,401,o), +(298,401,cs), +(365,401,o), +(391,349,o), +(391,294,cs), +(391,250,ls), +(391,195,o), +(365,143,o), +(298,143,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(294,-10,o), +(342,27,o), +(359,79,c), +(374,79,l), +(381,0,l), +(564,0,l), +(564,729,l), +(372,729,l), +(372,465,l), +(359,465,l), +(342,517,o), +(294,554,o), +(229,554,cs), +(109,554,o), +(30,451,o), +(30,272,cs), +(30,93,o), +(109,-10,o), +(229,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,143,o), +(226,195,o), +(226,272,cs), +(226,349,o), +(246,401,o), +(306,401,cs), +(345,401,o), +(372,363,o), +(372,295,cs), +(372,249,ls), +(372,186,o), +(352,143,o), +(301,143,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = c; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 618; +} +); +metricLeft = "=|b"; +metricRight = l; +unicode = 100; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dcaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dcaron.glyph new file mode 100644 index 00000000..1c59266d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dcaron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = dcaron; +kernLeft = a; +kernRight = dcaron; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = d; +}, +{ +pos = (316,0); +ref = caroncomb.alt; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = d; +}, +{ +pos = (375,0); +ref = caroncomb.alt; +} +); +width = 618; +} +); +unicode = 271; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dcroat.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dcroat.glyph new file mode 100644 index 00000000..4013ccb0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dcroat.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = dcroat; +kernLeft = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = d; +}, +{ +pos = (149,324); +ref = strokeshortcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = d; +}, +{ +pos = (133,325); +ref = strokeshortcomb; +} +); +width = 618; +} +); +unicode = 273; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/degree.glyph b/sources/MonaSansMono.glyphspackage/glyphs/degree.glyph new file mode 100644 index 00000000..e12b6759 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/degree.glyph @@ -0,0 +1,146 @@ +{ +glyphname = degree; +kernLeft = degree; +kernRight = degree; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(395,443,o), +(462,503,o), +(462,590,cs), +(462,678,o), +(395,737,o), +(309,737,cs), +(224,737,o), +(157,678,o), +(157,590,cs), +(157,503,o), +(224,443,o), +(309,443,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,478,o), +(194,524,o), +(194,590,cs), +(194,656,o), +(244,702,o), +(309,702,cs), +(375,702,o), +(425,656,o), +(425,590,cs), +(425,524,o), +(375,478,o), +(309,478,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(420,386,o), +(501,457,o), +(501,563,cs), +(501,669,o), +(420,739,o), +(309,739,cs), +(198,739,o), +(117,669,o), +(117,563,cs), +(117,457,o), +(198,386,o), +(309,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,506,o), +(251,527,o), +(251,563,cs), +(251,599,o), +(277,619,o), +(309,619,cs), +(341,619,o), +(367,599,o), +(367,563,cs), +(367,527,o), +(341,506,o), +(309,506,cs) +); +} +); +width = 618; +} +); +unicode = 176; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dieresis.glyph new file mode 100644 index 00000000..9f3a6a1c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dieresis.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = dieresis; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 168; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dieresiscomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dieresiscomb.glyph new file mode 100644 index 00000000..4167bf45 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dieresiscomb.glyph @@ -0,0 +1,106 @@ +{ +glyphname = dieresiscomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (309,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(418,780,o), +(431,793,o), +(431,811,cs), +(431,829,o), +(418,842,o), +(399,842,cs), +(380,842,o), +(367,829,o), +(367,811,cs), +(367,793,o), +(380,780,o), +(399,780,cs) +); +}, +{ +closed = 1; +nodes = ( +(238,780,o), +(251,793,o), +(251,811,cs), +(251,829,o), +(238,842,o), +(219,842,cs), +(200,842,o), +(187,829,o), +(187,811,cs), +(187,793,o), +(200,780,o), +(219,780,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(475,731,o), +(512,758,o), +(512,806,cs), +(512,854,o), +(475,881,o), +(424,881,cs), +(373,881,o), +(336,854,o), +(336,806,cs), +(336,758,o), +(373,731,o), +(424,731,cs) +); +}, +{ +closed = 1; +nodes = ( +(245,731,o), +(282,758,o), +(282,806,cs), +(282,854,o), +(245,881,o), +(194,881,cs), +(143,881,o), +(106,854,o), +(106,806,cs), +(106,758,o), +(143,731,o), +(194,731,cs) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 776; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dieresiscomb.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dieresiscomb.ss01.glyph new file mode 100644 index 00000000..d517f171 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dieresiscomb.ss01.glyph @@ -0,0 +1,67 @@ +{ +glyphname = dieresiscomb.ss01; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (310,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(404,770,l), +(404,882,l), +(367,882,l), +(367,770,l) +); +}, +{ +closed = 1; +nodes = ( +(252,770,l), +(252,882,l), +(215,882,l), +(215,770,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(500,735,l), +(500,863,l), +(339,863,l), +(339,735,l) +); +}, +{ +closed = 1; +nodes = ( +(279,735,l), +(279,863,l), +(118,863,l), +(118,735,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/divide.glyph b/sources/MonaSansMono.glyphspackage/glyphs/divide.glyph new file mode 100644 index 00000000..c5d65ae3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/divide.glyph @@ -0,0 +1,139 @@ +{ +glyphname = divide; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(548,345,l), +(548,377,l), +(70,377,l), +(70,345,l) +); +}, +{ +closed = 1; +nodes = ( +(332,184,l), +(332,245,l), +(287,245,l), +(287,184,l) +); +}, +{ +closed = 1; +nodes = ( +(332,477,l), +(332,538,l), +(287,538,l), +(287,477,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +2 +); +stem = -2; +target = ( +2, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(566,286,l), +(566,435,l), +(53,435,l), +(53,286,l) +); +}, +{ +closed = 1; +nodes = ( +(392,99,l), +(392,231,l), +(227,231,l), +(227,99,l) +); +}, +{ +closed = 1; +nodes = ( +(392,490,l), +(392,623,l), +(227,623,l), +(227,490,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 247; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dollar.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dollar.glyph new file mode 100644 index 00000000..920c5ca0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dollar.glyph @@ -0,0 +1,216 @@ +{ +glyphname = dollar; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(474,10,o), +(566,84,o), +(566,194,cs), +(566,339,o), +(463,372,o), +(328,396,cs), +(171,425,o), +(110,447,o), +(110,545,cs), +(110,629,o), +(179,685,o), +(300,685,cs), +(427,685,o), +(498,625,o), +(502,521,c), +(542,521,l), +(539,640,o), +(458,719,o), +(304,719,cs), +(156,719,o), +(69,647,o), +(69,540,cs), +(69,421,o), +(155,388,o), +(313,359,cs), +(468,331,o), +(526,293,o), +(526,192,cs), +(526,92,o), +(439,44,o), +(311,44,cs), +(164,44,o), +(97,116,o), +(93,232,c), +(52,232,l), +(55,100,o), +(137,10,o), +(313,10,cs) +); +}, +{ +closed = 1; +nodes = ( +(326,-85,l), +(326,23,l), +(293,23,l), +(293,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(326,699,l), +(326,814,l), +(293,814,l), +(293,699,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +246, +48 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(513,8,o), +(613,101,o), +(613,232,cs), +(613,409,o), +(485,440,o), +(373,456,cs), +(247,475,o), +(228,481,o), +(228,521,cs), +(228,553,o), +(259,573,o), +(307,573,cs), +(345,573,o), +(388,561,o), +(391,511,c), +(593,511,l), +(593,638,o), +(479,722,o), +(311,722,cs), +(132,722,o), +(20,637,o), +(20,495,cs), +(20,362,o), +(118,304,o), +(267,282,cs), +(396,264,o), +(404,253,o), +(404,212,cs), +(404,177,o), +(369,160,o), +(318,160,cs), +(240,160,o), +(210,192,o), +(210,239,c), +(6,239,l), +(6,100,o), +(114,8,o), +(308,8,cs) +); +}, +{ +closed = 1; +nodes = ( +(376,-85,l), +(376,82,l), +(244,82,l), +(244,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(376,632,l), +(376,814,l), +(244,814,l), +(244,632,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 619; +} +); +unicode = 36; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dotaccent.glyph new file mode 100644 index 00000000..54245ba9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dotaccent.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = dotaccent; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = dotaccentcomb; +} +); +width = 618; +} +); +unicode = 729; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dotaccentcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dotaccentcomb.glyph new file mode 100644 index 00000000..152a799e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dotaccentcomb.glyph @@ -0,0 +1,71 @@ +{ +glyphname = dotaccentcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (310,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(336,780,o), +(355,799,o), +(355,826,cs), +(355,853,o), +(336,872,o), +(309,872,cs), +(282,872,o), +(263,853,o), +(263,826,cs), +(263,799,o), +(282,780,o), +(309,780,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (316,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(378,723,o), +(424,766,o), +(424,830,cs), +(424,894,o), +(378,937,o), +(309,937,cs), +(240,937,o), +(194,894,o), +(194,830,cs), +(194,766,o), +(240,723,o), +(309,723,cs) +); +} +); +width = 618; +} +); +metricRight = "=|"; +unicode = 775; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dotaccentcomb.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dotaccentcomb.ss01.glyph new file mode 100644 index 00000000..9eced9b4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dotaccentcomb.ss01.glyph @@ -0,0 +1,49 @@ +{ +glyphname = dotaccentcomb.ss01; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (310,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,768,l), +(328,884,l), +(291,884,l), +(291,768,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (310,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(405,735,l), +(405,863,l), +(214,863,l), +(214,735,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dotbelowcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dotbelowcomb.glyph new file mode 100644 index 00000000..7f4a91f1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dotbelowcomb.glyph @@ -0,0 +1,66 @@ +{ +glyphname = dotbelowcomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (309,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,-141,o), +(341,-128,o), +(341,-110,cs), +(341,-92,o), +(328,-79,o), +(309,-79,cs), +(290,-79,o), +(277,-92,o), +(277,-110,cs), +(277,-128,o), +(290,-141,o), +(309,-141,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (309,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(355,-196,o), +(394,-168,o), +(394,-118,cs), +(394,-68,o), +(355,-40,o), +(309,-40,cs), +(263,-40,o), +(224,-68,o), +(224,-118,cs), +(224,-168,o), +(263,-196,o), +(309,-196,cs) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 803; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dotbelowcomb.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dotbelowcomb.ss01.glyph new file mode 100644 index 00000000..669b6ab3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dotbelowcomb.ss01.glyph @@ -0,0 +1,49 @@ +{ +glyphname = dotbelowcomb.ss01; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (310,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,-140,l), +(328,-84,l), +(291,-84,l), +(291,-140,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (310,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-178,l), +(405,-50,l), +(214,-50,l), +(214,-178,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/dottedC_ircle.glyph b/sources/MonaSansMono.glyphspackage/glyphs/dottedC_ircle.glyph new file mode 100644 index 00000000..8163e72a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/dottedC_ircle.glyph @@ -0,0 +1,472 @@ +{ +glyphname = dottedCircle; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,365); +}, +{ +name = ogonek; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +}, +{ +name = topright; +pos = (309,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(335,589,o), +(354,608,o), +(354,634,cs), +(354,660,o), +(335,679,o), +(309,679,cs), +(283,679,o), +(264,660,o), +(264,634,cs), +(264,608,o), +(283,589,o), +(309,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,553,o), +(489,572,o), +(489,598,cs), +(489,624,o), +(470,643,o), +(444,643,cs), +(418,643,o), +(399,624,o), +(399,598,cs), +(399,572,o), +(418,553,o), +(444,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(569,454,o), +(588,473,o), +(588,499,cs), +(588,525,o), +(569,544,o), +(543,544,cs), +(517,544,o), +(498,525,o), +(498,499,cs), +(498,473,o), +(517,454,o), +(543,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(605,320,o), +(624,338,o), +(624,365,cs), +(624,391,o), +(605,409,o), +(579,409,cs), +(553,409,o), +(534,391,o), +(534,365,cs), +(534,338,o), +(553,320,o), +(579,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(569,185,o), +(588,204,o), +(588,230,cs), +(588,256,o), +(569,275,o), +(543,275,cs), +(517,275,o), +(498,256,o), +(498,230,cs), +(498,204,o), +(517,185,o), +(543,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,86,o), +(489,105,o), +(489,131,cs), +(489,157,o), +(470,176,o), +(444,176,cs), +(418,176,o), +(399,157,o), +(399,131,cs), +(399,105,o), +(418,86,o), +(444,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(335,50,o), +(354,69,o), +(354,95,cs), +(354,121,o), +(335,140,o), +(309,140,cs), +(283,140,o), +(264,121,o), +(264,95,cs), +(264,69,o), +(283,50,o), +(309,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,86,o), +(219,105,o), +(219,131,cs), +(219,157,o), +(200,176,o), +(174,176,cs), +(148,176,o), +(129,157,o), +(129,131,cs), +(129,105,o), +(148,86,o), +(174,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,185,o), +(120,204,o), +(120,230,cs), +(120,256,o), +(101,275,o), +(75,275,cs), +(49,275,o), +(30,256,o), +(30,230,cs), +(30,204,o), +(49,185,o), +(75,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(65,320,o), +(84,338,o), +(84,365,cs), +(84,391,o), +(65,409,o), +(39,409,cs), +(13,409,o), +(-6,391,o), +(-6,365,cs), +(-6,338,o), +(13,320,o), +(39,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,454,o), +(120,473,o), +(120,499,cs), +(120,525,o), +(101,544,o), +(75,544,cs), +(49,544,o), +(30,525,o), +(30,499,cs), +(30,473,o), +(49,454,o), +(75,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,553,o), +(219,572,o), +(219,598,cs), +(219,624,o), +(200,643,o), +(174,643,cs), +(148,643,o), +(129,624,o), +(129,598,cs), +(129,572,o), +(148,553,o), +(174,553,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,365); +}, +{ +name = ogonek; +pos = (309,0); +}, +{ +name = top; +pos = (309,729); +}, +{ +name = topright; +pos = (309,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(335,589,o), +(354,608,o), +(354,634,cs), +(354,660,o), +(335,679,o), +(309,679,cs), +(283,679,o), +(264,660,o), +(264,634,cs), +(264,608,o), +(283,589,o), +(309,589,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,553,o), +(489,572,o), +(489,598,cs), +(489,624,o), +(470,643,o), +(444,643,cs), +(418,643,o), +(399,624,o), +(399,598,cs), +(399,572,o), +(418,553,o), +(444,553,cs) +); +}, +{ +closed = 1; +nodes = ( +(569,454,o), +(588,473,o), +(588,499,cs), +(588,525,o), +(569,544,o), +(543,544,cs), +(517,544,o), +(498,525,o), +(498,499,cs), +(498,473,o), +(517,454,o), +(543,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(605,320,o), +(624,338,o), +(624,365,cs), +(624,391,o), +(605,409,o), +(579,409,cs), +(553,409,o), +(534,391,o), +(534,365,cs), +(534,338,o), +(553,320,o), +(579,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(569,185,o), +(588,204,o), +(588,230,cs), +(588,256,o), +(569,275,o), +(543,275,cs), +(517,275,o), +(498,256,o), +(498,230,cs), +(498,204,o), +(517,185,o), +(543,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,86,o), +(489,105,o), +(489,131,cs), +(489,157,o), +(470,176,o), +(444,176,cs), +(418,176,o), +(399,157,o), +(399,131,cs), +(399,105,o), +(418,86,o), +(444,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(335,50,o), +(354,69,o), +(354,95,cs), +(354,121,o), +(335,140,o), +(309,140,cs), +(283,140,o), +(264,121,o), +(264,95,cs), +(264,69,o), +(283,50,o), +(309,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,86,o), +(219,105,o), +(219,131,cs), +(219,157,o), +(200,176,o), +(174,176,cs), +(148,176,o), +(129,157,o), +(129,131,cs), +(129,105,o), +(148,86,o), +(174,86,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,185,o), +(120,204,o), +(120,230,cs), +(120,256,o), +(101,275,o), +(75,275,cs), +(49,275,o), +(30,256,o), +(30,230,cs), +(30,204,o), +(49,185,o), +(75,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(65,320,o), +(84,338,o), +(84,365,cs), +(84,391,o), +(65,409,o), +(39,409,cs), +(13,409,o), +(-6,391,o), +(-6,365,cs), +(-6,338,o), +(13,320,o), +(39,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,454,o), +(120,473,o), +(120,499,cs), +(120,525,o), +(101,544,o), +(75,544,cs), +(49,544,o), +(30,525,o), +(30,499,cs), +(30,473,o), +(49,454,o), +(75,454,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,553,o), +(219,572,o), +(219,598,cs), +(219,624,o), +(200,643,o), +(174,643,cs), +(148,643,o), +(129,624,o), +(129,598,cs), +(129,572,o), +(148,553,o), +(174,553,cs) +); +} +); +width = 618; +} +); +metricLeft = "=50"; +metricRight = "=|"; +unicode = 9676; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/downA_rrow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/downA_rrow.glyph new file mode 100644 index 00000000..dc4995d3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/downA_rrow.glyph @@ -0,0 +1,76 @@ +{ +glyphname = downArrow; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(302,151,l), +(137,273,l), +(137,231,l), +(320,95,l), +(503,231,l), +(503,273,l), +(338,151,l), +(338,634,l), +(302,634,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(226,293,l), +(78,389,l), +(78,223,l), +(308,74,l), +(538,223,l), +(538,389,l), +(390,293,l), +(390,655,l), +(226,655,l) +); +} +); +width = 619; +} +); +unicode = 8595; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/e.glyph b/sources/MonaSansMono.glyphspackage/glyphs/e.glyph new file mode 100644 index 00000000..775951aa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/e.glyph @@ -0,0 +1,479 @@ +{ +glyphname = e; +kernLeft = e; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = ogonek; +pos = (399,0); +}, +{ +name = top; +pos = (314,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(429,-8,o), +(518,55,o), +(535,152,c), +(497,152,l), +(480,76,o), +(414,26,o), +(317,26,cs), +(198,26,o), +(121,110,o), +(117,256,c), +(536,256,l), +(550,410,o), +(473,525,o), +(315,525,cs), +(168,525,o), +(80,417,o), +(80,258,cs), +(80,97,o), +(173,-8,o), +(317,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(125,413,o), +(200,491,o), +(314,491,cs), +(427,491,o), +(503,423,o), +(501,281,c), +(506,290,l), +(113,290,l), +(118,284,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(426,-8,o), +(516,51,o), +(536,147,c), +(498,147,l), +(478,72,o), +(410,26,o), +(317,26,cs), +(196,26,o), +(118,110,o), +(114,256,c), +(540,256,l), +(549,411,o), +(471,525,o), +(315,525,cs), +(166,525,o), +(77,417,o), +(77,258,cs), +(77,97,o), +(172,-8,o), +(317,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,412,o), +(198,491,o), +(314,491,cs), +(427,491,o), +(503,423,o), +(505,281,c), +(510,290,l), +(110,290,l), +(115,284,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = o; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = ogonek; +pos = (383,0); +}, +{ +name = top; +pos = (315,521); +} +); +associatedMasterId = m019; +attr = { +coordinates = ( +300 +); +}; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(427,-9,o), +(514,50,o), +(529,155,c), +(472,155,l), +(457,85,o), +(402,39,o), +(317,39,cs), +(214,39,o), +(148,109,o), +(145,253,c), +(531,253,l), +(541,416,o), +(467,529,o), +(315,529,cs), +(169,529,o), +(88,422,o), +(88,259,cs), +(88,96,o), +(172,-9,o), +(317,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,416,o), +(216,481,o), +(315,481,cs), +(410,481,o), +(475,424,o), +(474,287,c), +(481,300,l), +(139,300,l), +(146,289,l) +); +} +); +}; +layerId = "1E8FA4C2-C6E9-40FE-8B95-41DDFFFCC016"; +name = "{100, 300, 0}"; +shapes = ( +{ +closed = 1; +nodes = ( +(424,-9,o), +(509,46,o), +(527,145,c), +(470,145,l), +(452,81,o), +(398,39,o), +(317,39,cs), +(214,39,o), +(148,109,o), +(145,253,c), +(531,253,l), +(541,416,o), +(467,529,o), +(315,529,cs), +(169,529,o), +(88,422,o), +(88,259,cs), +(88,96,o), +(172,-9,o), +(317,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,416,o), +(216,481,o), +(315,481,cs), +(410,481,o), +(475,424,o), +(474,287,c), +(481,300,l), +(139,300,l), +(146,289,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = o; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = ogonek; +pos = (448,0); +}, +{ +name = top; +pos = (310,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(459,-10,o), +(563,65,o), +(575,177,c), +(396,177,l), +(388,150,o), +(356,132,o), +(316,132,cs), +(260,132,o), +(222,166,o), +(224,227,c), +(579,227,l), +(599,415,o), +(506,554,o), +(309,554,cs), +(145,554,o), +(36,445,o), +(36,267,cs), +(36,101,o), +(138,-10,o), +(316,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,377,o), +(255,413,o), +(309,413,cs), +(360,413,o), +(395,381,o), +(391,326,c), +(408,341,l), +(208,341,l), +(224,325,l) +); +} +); +}; +guides = ( +{ +pos = (309,413); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-10,o), +(564,63,o), +(578,172,c), +(398,172,l), +(388,149,o), +(364,132,o), +(317,132,cs), +(259,132,o), +(219,166,o), +(221,227,c), +(583,227,l), +(603,415,o), +(509,554,o), +(310,554,cs), +(143,554,o), +(33,445,o), +(33,267,cs), +(33,101,o), +(137,-10,o), +(317,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(219,377,o), +(254,413,o), +(310,413,cs), +(363,413,o), +(399,381,o), +(395,326,c), +(412,341,l), +(205,341,l), +(221,325,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = o; +}; +width = 618; +} +); +unicode = 101; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eacute.glyph new file mode 100644 index 00000000..d4fa73d8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = eacute; +kernLeft = e; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (44,-155); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (49,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 233; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ebreve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ebreve.glyph new file mode 100644 index 00000000..09645667 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ebreve.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ebreve; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (5,-161); +ref = brevecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-134); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 277; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ecaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ecaron.glyph new file mode 100644 index 00000000..a7cc6f5b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ecaron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ecaron; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (5,-155); +ref = caroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-134); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 283; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ecircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflex.glyph new file mode 100644 index 00000000..de45ed37 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ecircumflex; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (5,-155); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 234; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexacute.glyph new file mode 100644 index 00000000..ac81ba46 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ecircumflexacute; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (55,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (76,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +} +); +unicode = 7871; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexdotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexdotbelow.glyph new file mode 100644 index 00000000..ab8824e9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexdotbelow.glyph @@ -0,0 +1,43 @@ +{ +color = 6; +glyphname = ecircumflexdotbelow; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (7,0); +ref = dotbelowcomb; +}, +{ +pos = (5,-155); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (7,0); +ref = dotbelowcomb; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 7879; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexdotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..b865d1f9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexdotbelow.ss01.glyph @@ -0,0 +1,42 @@ +{ +color = 6; +glyphname = ecircumflexdotbelow.ss01; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (6,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (5,-155); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (6,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexgrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexgrave.glyph new file mode 100644 index 00000000..a3c5cdd0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexgrave.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ecircumflexgrave; +kernLeft = egrave; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (36,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +} +); +unicode = 7873; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexhookabove.glyph new file mode 100644 index 00000000..c200c22e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflexhookabove.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ecircumflexhookabove; +kernLeft = egrave; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (49,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (47,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +} +); +unicode = 7875; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ecircumflextilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflextilde.glyph new file mode 100644 index 00000000..aff99c98 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ecircumflextilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ecircumflextilde; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (13,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +} +); +unicode = 7877; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/edieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/edieresis.glyph new file mode 100644 index 00000000..f06cd8b5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/edieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = edieresis; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (5,-155); +ref = dieresiscomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-134); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 235; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/edieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/edieresis.ss01.glyph new file mode 100644 index 00000000..f38f0f33 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/edieresis.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = edieresis.ss01; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (4,-155); +ref = dieresiscomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (1,-134); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/edotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/edotaccent.glyph new file mode 100644 index 00000000..2f4fbef3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/edotaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = edotaccent; +kernLeft = e; +kernRight = e; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (4,-155); +ref = dotaccentcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (-6,-134); +ref = dotaccentcomb; +} +); +width = 618; +} +); +unicode = 279; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/edotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/edotaccent.ss01.glyph new file mode 100644 index 00000000..a4c65991 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/edotaccent.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = edotaccent.ss01; +kernLeft = e; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (4,-155); +ref = dotaccentcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (0,-134); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/edotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/edotbelow.glyph new file mode 100644 index 00000000..1170ecb4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/edotbelow.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = edotbelow; +kernLeft = e; +kernRight = e; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (7,0); +ref = dotbelowcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (7,0); +ref = dotbelowcomb; +} +); +width = 618; +} +); +unicode = 7865; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/edotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/edotbelow.ss01.glyph new file mode 100644 index 00000000..732f4e04 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/edotbelow.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = edotbelow.ss01; +kernLeft = e; +kernRight = e; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (6,0); +ref = dotbelowcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (6,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/egrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/egrave.glyph new file mode 100644 index 00000000..a6e5b028 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/egrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = egrave; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (-35,-155); +ref = gravecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (-48,-134); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 232; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ehookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ehookabove.glyph new file mode 100644 index 00000000..0897fd73 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ehookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ehookabove; +kernLeft = e; +kernRight = e; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (5,-155); +ref = hookabovecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (8,-134); +ref = hookabovecomb; +} +); +width = 618; +} +); +unicode = 7867; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eight.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eight.blackC_ircled.glyph new file mode 100644 index 00000000..6a8ad9d6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eight.blackC_ircled.glyph @@ -0,0 +1,566 @@ +{ +color = 0; +glyphname = eight.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs), +(-3,140,o), +(148,-10,o), +(372,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(439,172,o), +(484,209,o), +(484,264,cs), +(484,313,o), +(454,356,o), +(373,356,cs), +(292,356,o), +(262,314,o), +(262,264,cs), +(262,209,o), +(307,172,o), +(373,172,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,142,o), +(226,190,o), +(226,261,cs), +(226,314,o), +(259,358,o), +(320,370,c), +(320,372,l), +(274,384,o), +(241,424,o), +(241,472,cs), +(241,541,o), +(293,585,o), +(373,585,cs), +(454,585,o), +(505,540,o), +(505,472,cs), +(505,424,o), +(472,384,o), +(425,372,c), +(425,370,l), +(487,358,o), +(520,314,o), +(520,261,cs), +(520,190,o), +(460,142,o), +(373,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,385,o), +(471,428,o), +(471,471,cs), +(471,512,o), +(447,556,o), +(373,556,cs), +(299,556,o), +(275,513,o), +(275,471,cs), +(275,428,o), +(300,385,o), +(373,385,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,188,o), +(192,227,o), +(192,283,cs), +(192,325,o), +(219,360,o), +(268,370,c), +(268,371,l), +(231,381,o), +(204,413,o), +(204,451,cs), +(204,506,o), +(246,541,o), +(309,541,cs), +(374,541,o), +(415,505,o), +(415,451,cs), +(415,413,o), +(388,381,o), +(351,371,c), +(351,370,l), +(400,360,o), +(427,325,o), +(427,283,cs), +(427,227,o), +(379,188,o), +(309,188,cs) +); +}, +{ +closed = 1; +nodes = ( +(362,212,o), +(398,242,o), +(398,285,cs), +(398,324,o), +(374,359,o), +(309,359,cs), +(245,359,o), +(221,325,o), +(221,285,cs), +(221,242,o), +(257,212,o), +(309,212,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,382,o), +(387,416,o), +(387,451,cs), +(387,482,o), +(368,518,o), +(309,518,cs), +(251,518,o), +(232,483,o), +(232,451,cs), +(232,416,o), +(252,382,o), +(309,382,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs), +(-9,141,o), +(155,-9,o), +(379,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(405,252,o), +(421,265,o), +(421,289,cs), +(421,313,o), +(403,326,o), +(378,326,cs), +(351,326,o), +(334,312,o), +(334,289,cs), +(334,265,o), +(350,252,o), +(378,252,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,144,o), +(204,194,o), +(204,270,cs), +(204,323,o), +(243,361,o), +(285,372,c), +(285,377,l), +(246,390,o), +(220,426,o), +(220,469,cs), +(220,545,o), +(283,587,o), +(378,587,cs), +(479,587,o), +(535,540,o), +(535,469,cs), +(535,426,o), +(509,390,o), +(470,377,c), +(470,372,l), +(515,360,o), +(551,320,o), +(551,270,cs), +(551,189,o), +(482,144,o), +(378,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(397,419,o), +(415,429,o), +(415,452,cs), +(415,473,o), +(399,484,o), +(378,484,cs), +(356,484,o), +(340,473,o), +(340,452,cs), +(340,429,o), +(358,419,o), +(378,419,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,194,o), +(174,233,o), +(174,292,cs), +(174,333,o), +(205,363,o), +(237,371,c), +(237,375,l), +(207,385,o), +(187,413,o), +(187,446,cs), +(187,505,o), +(236,538,o), +(309,538,cs), +(388,538,o), +(431,501,o), +(431,446,cs), +(431,413,o), +(411,385,o), +(381,375,c), +(381,371,l), +(415,362,o), +(443,331,o), +(443,292,cs), +(443,229,o), +(390,194,o), +(309,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,278,o), +(343,288,o), +(343,307,cs), +(343,325,o), +(329,335,o), +(309,335,cs), +(288,335,o), +(275,325,o), +(275,307,cs), +(275,288,o), +(288,278,o), +(309,278,cs) +); +}, +{ +closed = 1; +nodes = ( +(324,408,o), +(338,415,o), +(338,433,cs), +(338,449,o), +(326,458,o), +(309,458,cs), +(292,458,o), +(280,449,o), +(280,433,cs), +(280,415,o), +(294,408,o), +(309,408,cs) +); +} +); +width = 618; +} +); +unicode = 10109; +userData = { +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eight.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eight.circled.glyph new file mode 100644 index 00000000..6744e065 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eight.circled.glyph @@ -0,0 +1,262 @@ +{ +color = 0; +glyphname = eight.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,142,o), +(331,190,o), +(331,261,cs), +(331,314,o), +(298,358,o), +(236,370,c), +(236,372,l), +(283,384,o), +(316,424,o), +(316,472,cs), +(316,540,o), +(265,585,o), +(184,585,cs), +(104,585,o), +(52,541,o), +(52,472,cs), +(52,424,o), +(85,384,o), +(131,372,c), +(131,370,l), +(70,358,o), +(37,314,o), +(37,261,cs), +(37,190,o), +(96,142,o), +(184,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(118,172,o), +(73,209,o), +(73,264,cs), +(73,314,o), +(103,356,o), +(184,356,cs), +(265,356,o), +(295,313,o), +(295,264,cs), +(295,209,o), +(250,172,o), +(184,172,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,385,o), +(86,428,o), +(86,471,cs), +(86,513,o), +(110,556,o), +(184,556,cs), +(258,556,o), +(282,512,o), +(282,471,cs), +(282,428,o), +(257,385,o), +(184,385,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (89,189); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(295,144,o), +(364,189,o), +(364,270,cs), +(364,320,o), +(328,360,o), +(283,372,c), +(283,377,l), +(322,390,o), +(348,426,o), +(348,469,cs), +(348,540,o), +(292,587,o), +(191,587,cs), +(96,587,o), +(33,545,o), +(33,469,cs), +(33,426,o), +(59,390,o), +(98,377,c), +(98,372,l), +(56,361,o), +(17,323,o), +(17,270,cs), +(17,194,o), +(79,144,o), +(191,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(163,252,o), +(147,265,o), +(147,289,cs), +(147,312,o), +(164,326,o), +(191,326,cs), +(216,326,o), +(234,313,o), +(234,289,cs), +(234,265,o), +(218,252,o), +(191,252,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,419,o), +(153,429,o), +(153,452,cs), +(153,473,o), +(169,484,o), +(191,484,cs), +(212,484,o), +(228,473,o), +(228,452,cs), +(228,429,o), +(210,419,o), +(191,419,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (89,191); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9319; +userData = { +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eight.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eight.dnom.glyph new file mode 100644 index 00000000..5a34bb1f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eight.dnom.glyph @@ -0,0 +1,223 @@ +{ +glyphname = eight.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-6,o), +(354,38,o), +(354,104,cs), +(354,153,o), +(323,193,o), +(268,204,c), +(268,206,l), +(311,217,o), +(341,253,o), +(341,297,cs), +(341,360,o), +(294,401,o), +(220,401,cs), +(146,401,o), +(98,360,o), +(98,297,cs), +(98,253,o), +(128,217,o), +(171,206,c), +(171,204,l), +(117,193,o), +(85,154,o), +(85,104,cs), +(85,39,o), +(139,-6,o), +(220,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,22,o), +(118,56,o), +(118,107,cs), +(118,152,o), +(146,191,o), +(220,191,cs), +(294,191,o), +(321,152,o), +(321,107,cs), +(321,56,o), +(280,22,o), +(220,22,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,218,o), +(130,257,o), +(130,296,cs), +(130,335,o), +(152,374,o), +(220,374,cs), +(287,374,o), +(309,335,o), +(309,296,cs), +(309,257,o), +(287,218,o), +(220,218,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(312,-5,o), +(375,33,o), +(375,104,cs), +(375,149,o), +(342,182,o), +(302,192,c), +(302,197,l), +(335,207,o), +(361,238,o), +(361,276,cs), +(361,338,o), +(310,379,o), +(220,379,cs), +(135,379,o), +(78,342,o), +(78,276,cs), +(78,240,o), +(102,208,o), +(137,197,c), +(137,192,l), +(97,182,o), +(64,149,o), +(64,104,cs), +(64,38,o), +(120,-5,o), +(220,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,90,o), +(179,101,o), +(179,121,cs), +(179,141,o), +(195,152,o), +(220,152,cs), +(244,152,o), +(260,141,o), +(260,121,cs), +(260,101,o), +(245,90,o), +(220,90,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,234,o), +(184,242,o), +(184,261,cs), +(184,279,o), +(199,288,o), +(220,288,cs), +(240,288,o), +(255,279,o), +(255,261,cs), +(255,242,o), +(239,234,o), +(220,234,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +metricWidth = H; +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eight.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eight.glyph new file mode 100644 index 00000000..e9721968 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eight.glyph @@ -0,0 +1,342 @@ +{ +glyphname = eight; +kernLeft = eight; +kernRight = eight; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(454,-8,o), +(552,70,o), +(552,187,cs), +(552,277,o), +(498,353,o), +(386,361,c), +(386,363,l), +(495,375,o), +(543,455,o), +(543,539,cs), +(543,654,o), +(449,729,o), +(309,729,cs), +(169,729,o), +(77,656,o), +(77,541,cs), +(77,456,o), +(125,377,o), +(233,363,c), +(233,361,l), +(121,349,o), +(65,269,o), +(65,185,cs), +(65,69,o), +(163,-8,o), +(309,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(189,26,o), +(108,88,o), +(108,191,cs), +(108,271,o), +(167,343,o), +(309,343,cs), +(449,343,o), +(511,278,o), +(511,191,cs), +(511,92,o), +(433,26,o), +(309,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,380,o), +(117,449,o), +(117,537,cs), +(117,634,o), +(190,696,o), +(309,696,cs), +(424,696,o), +(503,636,o), +(503,537,cs), +(503,453,o), +(450,380,o), +(309,380,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-10,o), +(546,71,o), +(546,189,cs), +(546,279,o), +(492,354,o), +(388,374,c), +(388,377,l), +(466,397,o), +(522,464,o), +(522,548,cs), +(522,662,o), +(438,737,o), +(309,737,cs), +(180,737,o), +(96,662,o), +(96,548,cs), +(96,464,o), +(152,397,o), +(230,377,c), +(230,374,l), +(126,354,o), +(72,279,o), +(72,189,cs), +(72,71,o), +(168,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,24,o), +(113,91,o), +(113,191,cs), +(113,280,o), +(164,358,o), +(309,358,cs), +(454,358,o), +(505,280,o), +(505,191,cs), +(505,91,o), +(426,24,o), +(309,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(178,393,o), +(136,472,o), +(136,549,cs), +(136,625,o), +(178,704,o), +(309,704,cs), +(440,704,o), +(482,625,o), +(482,549,cs), +(482,472,o), +(440,393,o), +(309,393,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(489,-10,o), +(592,74,o), +(592,198,cs), +(592,281,o), +(542,349,o), +(461,370,c), +(461,378,l), +(529,401,o), +(566,463,o), +(566,534,cs), +(566,652,o), +(472,729,o), +(309,729,cs), +(146,729,o), +(52,652,o), +(52,534,cs), +(52,463,o), +(89,401,o), +(157,378,c), +(157,370,l), +(76,349,o), +(26,281,o), +(26,198,cs), +(26,74,o), +(129,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,152,o), +(221,179,o), +(221,227,cs), +(221,272,o), +(252,301,o), +(309,301,cs), +(366,301,o), +(397,272,o), +(397,227,cs), +(397,179,o), +(364,152,o), +(309,152,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,441,o), +(232,465,o), +(232,508,cs), +(232,548,o), +(258,574,o), +(309,574,cs), +(360,574,o), +(386,548,o), +(386,508,cs), +(386,465,o), +(358,441,o), +(309,441,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(481,-10,o), +(595,66,o), +(595,200,cs), +(595,287,o), +(534,354,o), +(456,374,c), +(456,382,l), +(523,403,o), +(569,466,o), +(569,539,cs), +(569,658,o), +(475,737,o), +(309,737,cs), +(153,737,o), +(49,665,o), +(49,539,cs), +(49,466,o), +(95,403,o), +(162,382,c), +(162,374,l), +(84,354,o), +(23,287,o), +(23,200,cs), +(23,74,o), +(126,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(253,154,o), +(220,181,o), +(220,230,cs), +(220,275,o), +(251,304,o), +(309,304,cs), +(367,304,o), +(398,275,o), +(398,230,cs), +(398,181,o), +(365,154,o), +(309,154,cs) +); +}, +{ +closed = 1; +nodes = ( +(263,446,o), +(231,470,o), +(231,514,cs), +(231,554,o), +(259,580,o), +(309,580,cs), +(359,580,o), +(387,554,o), +(387,514,cs), +(387,470,o), +(355,446,o), +(309,446,cs) +); +} +); +width = 618; +} +); +unicode = 56; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eight.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eight.numr.glyph new file mode 100644 index 00000000..ceaba782 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eight.numr.glyph @@ -0,0 +1,105 @@ +{ +color = 6; +glyphname = eight.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eight.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eight.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = eight.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eight.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eight.dnom; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eight.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eight.tf.glyph new file mode 100644 index 00000000..31dae2a3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eight.tf.glyph @@ -0,0 +1,222 @@ +{ +glyphname = eight.tf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(454,-10,o), +(553,71,o), +(553,189,cs), +(553,278,o), +(498,354,o), +(390,374,c), +(390,377,l), +(471,397,o), +(528,465,o), +(528,548,cs), +(528,662,o), +(442,737,o), +(310,737,cs), +(178,737,o), +(92,662,o), +(92,548,cs), +(92,465,o), +(149,397,o), +(230,377,c), +(230,374,l), +(122,354,o), +(67,279,o), +(67,189,cs), +(67,71,o), +(166,-10,o), +(310,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,24,o), +(108,91,o), +(108,191,cs), +(108,280,o), +(161,358,o), +(310,358,cs), +(459,358,o), +(512,280,o), +(512,191,cs), +(512,91,o), +(430,24,o), +(310,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,393,o), +(131,472,o), +(131,549,cs), +(131,625,o), +(175,704,o), +(310,704,cs), +(445,704,o), +(489,625,o), +(489,549,cs), +(489,472,o), +(445,393,o), +(310,393,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +13, +13 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(474,-10,o), +(585,65,o), +(585,198,cs), +(585,286,o), +(524,351,o), +(451,370,c), +(451,378,l), +(516,399,o), +(560,461,o), +(560,533,cs), +(560,651,o), +(469,729,o), +(309,729,cs), +(159,729,o), +(58,658,o), +(58,533,cs), +(58,461,o), +(102,399,o), +(167,378,c), +(167,370,l), +(94,351,o), +(33,286,o), +(33,198,cs), +(33,73,o), +(133,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,152,o), +(225,179,o), +(225,227,cs), +(225,272,o), +(255,301,o), +(309,301,cs), +(363,301,o), +(393,272,o), +(393,227,cs), +(393,179,o), +(361,152,o), +(309,152,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,441,o), +(235,465,o), +(235,508,cs), +(235,548,o), +(263,574,o), +(309,574,cs), +(355,574,o), +(383,548,o), +(383,508,cs), +(383,465,o), +(352,441,o), +(309,441,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 618; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eightinferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eightinferior.glyph new file mode 100644 index 00000000..d8158986 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eightinferior.glyph @@ -0,0 +1,235 @@ +{ +glyphname = eightinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (219,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(306,-46,o), +(366,2,o), +(366,73,cs), +(366,126,o), +(333,170,o), +(271,182,c), +(271,184,l), +(318,196,o), +(351,236,o), +(351,284,cs), +(351,352,o), +(300,397,o), +(219,397,cs), +(139,397,o), +(87,353,o), +(87,284,cs), +(87,236,o), +(120,196,o), +(166,184,c), +(166,182,l), +(105,170,o), +(72,126,o), +(72,73,cs), +(72,2,o), +(131,-46,o), +(219,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(153,-16,o), +(108,21,o), +(108,76,cs), +(108,126,o), +(138,168,o), +(219,168,cs), +(300,168,o), +(330,125,o), +(330,76,cs), +(330,21,o), +(285,-16,o), +(219,-16,cs) +); +}, +{ +closed = 1; +nodes = ( +(146,197,o), +(121,240,o), +(121,283,cs), +(121,325,o), +(145,368,o), +(219,368,cs), +(293,368,o), +(317,324,o), +(317,283,cs), +(317,240,o), +(292,197,o), +(219,197,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (220,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(324,-46,o), +(393,-1,o), +(393,80,cs), +(393,130,o), +(357,170,o), +(312,182,c), +(312,187,l), +(351,200,o), +(377,236,o), +(377,279,cs), +(377,350,o), +(321,397,o), +(220,397,cs), +(125,397,o), +(62,355,o), +(62,279,cs), +(62,236,o), +(88,200,o), +(127,187,c), +(127,182,l), +(85,171,o), +(46,133,o), +(46,80,cs), +(46,4,o), +(108,-46,o), +(220,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,62,o), +(176,75,o), +(176,99,cs), +(176,122,o), +(193,136,o), +(220,136,cs), +(245,136,o), +(263,123,o), +(263,99,cs), +(263,75,o), +(247,62,o), +(220,62,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,229,o), +(182,239,o), +(182,262,cs), +(182,283,o), +(198,294,o), +(220,294,cs), +(241,294,o), +(257,283,o), +(257,262,cs), +(257,239,o), +(239,229,o), +(220,229,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 619; +} +); +unicode = 8328; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eightsuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eightsuperior.glyph new file mode 100644 index 00000000..b5d14e77 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eightsuperior.glyph @@ -0,0 +1,107 @@ +{ +color = 6; +glyphname = eightsuperior; +kernLeft = eightsuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eightinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eightinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = eightinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = eightinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = eightinferior; +}; +width = 619; +} +); +unicode = 8312; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = eight; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ellipsis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ellipsis.glyph new file mode 100644 index 00000000..01c3e719 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ellipsis.glyph @@ -0,0 +1,179 @@ +{ +color = 6; +glyphname = ellipsis; +kernLeft = ellipsis; +kernRight = ellipsis; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(186,-7,o), +(199,5,o), +(199,22,cs), +(199,39,o), +(186,51,o), +(169,51,cs), +(152,51,o), +(139,39,o), +(139,22,cs), +(139,5,o), +(152,-7,o), +(169,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,-7,o), +(385,5,o), +(385,22,cs), +(385,39,o), +(372,51,o), +(355,51,cs), +(338,51,o), +(325,39,o), +(325,22,cs), +(325,5,o), +(338,-7,o), +(355,-7,cs) +); +}, +{ +closed = 1; +nodes = ( +(558,-7,o), +(571,5,o), +(571,22,cs), +(571,39,o), +(558,51,o), +(541,51,cs), +(524,51,o), +(511,39,o), +(511,22,cs), +(511,5,o), +(524,-7,o), +(541,-7,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = -1; +anchor = "#exit"; +pos = (-186,0); +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +ref = period; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (186,0); +ref = period; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = period; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(25,-8,o), +(63,27,o), +(63,80,cs), +(63,133,o), +(25,168,o), +(-31,168,cs), +(-87,168,o), +(-125,133,o), +(-125,80,cs), +(-125,27,o), +(-87,-8,o), +(-31,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(303,-8,o), +(341,27,o), +(341,80,cs), +(341,133,o), +(303,168,o), +(247,168,cs), +(191,168,o), +(153,133,o), +(153,80,cs), +(153,27,o), +(191,-8,o), +(247,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(581,-8,o), +(619,27,o), +(619,80,cs), +(619,133,o), +(581,168,o), +(525,168,cs), +(469,168,o), +(431,133,o), +(431,80,cs), +(431,27,o), +(469,-8,o), +(525,-8,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = -1; +anchor = "#exit"; +pos = (-68,0); +ref = period; +scale = (0.62,1); +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (117,0); +ref = period; +scale = (0.62,1); +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (302,0); +ref = period; +scale = (0.62,1); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = period; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = period; +}; +width = 618; +} +); +metricLeft = period; +metricRight = period; +unicode = 8230; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ellipsis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ellipsis.ss01.glyph new file mode 100644 index 00000000..32698b2c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ellipsis.ss01.glyph @@ -0,0 +1,68 @@ +{ +color = 6; +glyphname = ellipsis.ss01; +kernLeft = period.ss01; +kernRight = period.ss01; +layers = ( +{ +background = { +shapes = ( +{ +pos = (82,0); +ref = ellipsis; +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (186,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (372,0); +ref = period.ss01; +} +); +width = 991; +}, +{ +background = { +shapes = ( +{ +pos = (-192,0); +ref = ellipsis; +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (278,0); +ref = period.ss01; +}, +{ +alignment = 1; +anchor = "#exit"; +pos = (556,0); +ref = period.ss01; +} +); +width = 1175; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/emacron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/emacron.glyph new file mode 100644 index 00000000..f876302c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/emacron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = emacron; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (4,-155); +ref = macroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (0,-134); +ref = macroncomb; +} +); +width = 618; +} +); +unicode = 275; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/emdash.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/emdash.case.glyph new file mode 100644 index 00000000..a02bf453 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/emdash.case.glyph @@ -0,0 +1,36 @@ +{ +color = 6; +glyphname = emdash.case; +kernLeft = hyphen.case; +kernRight = hyphen.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,106); +ref = emdash; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,93); +ref = emdash; +} +); +width = 618; +} +); +metricLeft = emdash; +metricRight = emdash; +userData = { +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/emdash.glyph b/sources/MonaSansMono.glyphspackage/glyphs/emdash.glyph new file mode 100644 index 00000000..59e5f355 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/emdash.glyph @@ -0,0 +1,68 @@ +{ +glyphname = emdash; +kernLeft = hyphen; +kernRight = hyphen; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(618,242,l), +(618,275,l), +(0,275,l), +(0,242,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(616,192,l), +(616,352,l), +(0,352,l), +(0,192,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +}; +width = 618; +} +); +unicode = 8212; +userData = { +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/emptyset.glyph b/sources/MonaSansMono.glyphspackage/glyphs/emptyset.glyph new file mode 100644 index 00000000..30a0891f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/emptyset.glyph @@ -0,0 +1,120 @@ +{ +glyphname = emptyset; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(511,-10,o), +(678,145,o), +(678,366,cs), +(678,584,o), +(511,739,o), +(310,739,cs), +(107,739,o), +(-59,584,o), +(-59,366,cs), +(-59,145,o), +(107,-10,o), +(310,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(193,19,o), +(88,80,o), +(27,176,c), +(607,529,l), +(631,481,o), +(645,426,o), +(645,366,cs), +(645,166,o), +(491,19,o), +(310,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(-12,250,o), +(-26,306,o), +(-26,366,cs), +(-26,565,o), +(128,710,o), +(310,710,cs), +(426,710,o), +(531,651,o), +(591,556,c), +(12,202,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(513,0,o), +(667,149,o), +(667,366,cs), +(667,579,o), +(513,729,o), +(309,729,cs), +(105,729,o), +(-49,580,o), +(-49,366,cs), +(-49,149,o), +(105,0,o), +(309,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(214,71,o), +(130,116,o), +(79,189,c), +(569,488,l), +(584,451,o), +(592,410,o), +(592,366,cs), +(592,193,o), +(469,71,o), +(309,71,cs) +); +}, +{ +closed = 1; +nodes = ( +(34,284,o), +(26,324,o), +(26,366,cs), +(26,538,o), +(151,658,o), +(309,658,cs), +(403,658,o), +(483,617,o), +(535,548,c), +(47,249,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 618; +} +); +unicode = 8709; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/endash.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/endash.case.glyph new file mode 100644 index 00000000..86ad9507 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/endash.case.glyph @@ -0,0 +1,36 @@ +{ +color = 6; +glyphname = endash.case; +kernLeft = hyphen.case; +kernRight = hyphen.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,106); +ref = endash; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,93); +ref = endash; +} +); +width = 618; +} +); +metricLeft = endash; +metricRight = endash; +userData = { +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/endash.glyph b/sources/MonaSansMono.glyphspackage/glyphs/endash.glyph new file mode 100644 index 00000000..819ae958 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/endash.glyph @@ -0,0 +1,69 @@ +{ +glyphname = endash; +kernLeft = hyphen; +kernRight = hyphen; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(618,242,l), +(618,275,l), +(0,275,l), +(0,242,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(618,192,l), +(618,352,l), +(0,352,l), +(0,192,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = hyphen; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = hyphen; +}; +width = 618; +} +); +unicode = 8211; +userData = { +KernOnName = endash; +KernOnSpecialSpacing = { +L = dashes; +R = dashes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eng.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eng.glyph new file mode 100644 index 00000000..53827305 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eng.glyph @@ -0,0 +1,90 @@ +{ +glyphname = eng; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(432,-167,ls), +(492,-167,o), +(520,-128,o), +(520,-70,cs), +(520,300,ls), +(520,462,o), +(443,525,o), +(337,525,cs), +(256,525,o), +(183,482,o), +(149,400,c), +(145,400,l), +(143,517,l), +(109,517,l), +(109,0,l), +(145,0,l), +(145,274,ls), +(145,401,o), +(220,491,o), +(331,491,cs), +(433,491,o), +(483,430,o), +(483,294,cs), +(483,-60,ls), +(483,-113,o), +(465,-133,o), +(421,-133,cs), +(376,-133,l), +(376,-167,l) +); +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(404,-167,ls), +(539,-167,o), +(589,-97,o), +(589,25,cs), +(589,333,ls), +(589,494,o), +(506,554,o), +(399,554,cs), +(327,554,o), +(264,521,o), +(238,455,c), +(230,455,l), +(223,544,l), +(39,544,l), +(39,0,l), +(230,0,l), +(230,308,ls), +(230,352,o), +(259,400,o), +(319,400,cs), +(376,400,o), +(398,363,o), +(398,291,cs), +(398,21,ls), +(398,-19,o), +(383,-34,o), +(347,-34,cs), +(308,-34,l), +(308,-167,l) +); +} +); +width = 619; +} +); +metricLeft = l; +metricRight = n; +unicode = 331; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eogonek.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eogonek.glyph new file mode 100644 index 00000000..6931705e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eogonek.glyph @@ -0,0 +1,167 @@ +{ +color = 0; +glyphname = eogonek; +kernLeft = e; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = ogonek; +pos = (396,0); +}, +{ +name = top; +pos = (314,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-196,o), +(431,-193,o), +(444,-188,c), +(444,-161,l), +(427,-167,o), +(408,-168,o), +(398,-168,cs), +(355,-168,o), +(334,-148,o), +(334,-113,cs), +(334,-61,o), +(384,-22,o), +(444,26,c), +(488,53,o), +(519,95,o), +(529,147,c), +(491,147,l), +(472,72,o), +(407,26,o), +(317,26,cs), +(201,26,o), +(126,110,o), +(122,256,c), +(531,256,l), +(545,410,o), +(469,525,o), +(315,525,cs), +(171,525,o), +(85,417,o), +(85,258,cs), +(85,97,o), +(176,-8,o), +(317,-8,cs), +(335,-8,o), +(353,-6,o), +(371,-2,c), +(332,-36,o), +(303,-73,o), +(303,-119,cs), +(303,-167,o), +(336,-196,o), +(392,-196,cs) +); +}, +{ +closed = 1; +nodes = ( +(132,416,o), +(205,491,o), +(314,491,cs), +(422,491,o), +(495,426,o), +(496,290,c), +(123,290,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = ogonek; +pos = (447,0); +}, +{ +name = top; +pos = (309,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(406,-208,o), +(449,-200,o), +(467,-192,c), +(467,-113,l), +(456,-118,o), +(442,-121,o), +(425,-121,cs), +(396,-121,o), +(379,-106,o), +(379,-82,cs), +(379,-43,o), +(418,-17,o), +(483,34,c), +(534,66,o), +(567,114,o), +(574,172,c), +(394,172,l), +(384,148,o), +(360,132,o), +(316,132,cs), +(260,132,o), +(222,166,o), +(224,227,c), +(579,227,l), +(599,415,o), +(506,554,o), +(309,554,cs), +(145,554,o), +(36,445,o), +(36,267,cs), +(36,114,o), +(122,8,o), +(275,-8,cs), +(285,-9,o), +(295,-10,o), +(306,-10,c), +(266,-37,o), +(241,-71,o), +(241,-112,cs), +(241,-173,o), +(289,-208,o), +(368,-208,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,384,o), +(261,413,o), +(309,413,cs), +(355,413,o), +(388,387,o), +(391,341,c), +(225,341,l) +); +} +); +width = 619; +} +); +unicode = 281; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/equal.glyph b/sources/MonaSansMono.glyphspackage/glyphs/equal.glyph new file mode 100644 index 00000000..3a828a92 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/equal.glyph @@ -0,0 +1,106 @@ +{ +glyphname = equal; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (309,366); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(548,455,l), +(548,487,l), +(70,487,l), +(70,455,l) +); +}, +{ +closed = 1; +nodes = ( +(548,235,l), +(548,267,l), +(70,267,l), +(70,235,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (310,366); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(546,406,l), +(546,555,l), +(73,555,l), +(73,406,l) +); +}, +{ +closed = 1; +nodes = ( +(546,166,l), +(546,315,l), +(73,315,l), +(73,166,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 61; +userData = { +KernOnName = equal; +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/estimated.glyph b/sources/MonaSansMono.glyphspackage/glyphs/estimated.glyph new file mode 100644 index 00000000..ca1cff49 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/estimated.glyph @@ -0,0 +1,100 @@ +{ +glyphname = estimated; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-9,o), +(550,27,o), +(617,90,c), +(599,120,l), +(538,64,o), +(440,26,o), +(340,26,cs), +(244,26,o), +(172,53,o), +(115,107,c), +(115,362,l), +(646,362,l), +(646,416,ls), +(646,609,o), +(515,737,o), +(319,737,cs), +(111,737,o), +(-27,588,o), +(-27,364,cs), +(-27,140,o), +(120,-9,o), +(340,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(115,620,l), +(165,679,o), +(248,704,o), +(319,704,cs), +(394,704,o), +(477,681,o), +(521,626,c), +(521,395,l), +(115,395,l) +); +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-9,o), +(550,28,o), +(623,91,c), +(593,134,l), +(532,82,o), +(437,46,o), +(340,46,cs), +(244,46,o), +(172,73,o), +(115,127,c), +(115,352,l), +(646,352,l), +(646,416,ls), +(646,609,o), +(515,737,o), +(319,737,cs), +(111,737,o), +(-27,588,o), +(-27,364,cs), +(-27,140,o), +(120,-9,o), +(340,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(115,600,l), +(165,659,o), +(248,684,o), +(319,684,cs), +(394,684,o), +(476,661,o), +(521,606,c), +(521,405,l), +(115,405,l) +); +} +); +width = 619; +} +); +unicode = 8494; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/eth.glyph b/sources/MonaSansMono.glyphspackage/glyphs/eth.glyph new file mode 100644 index 00000000..33fb9b2a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/eth.glyph @@ -0,0 +1,234 @@ +{ +glyphname = eth; +kernLeft = o; +kernRight = o; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,-8,o), +(532,82,o), +(532,223,cs), +(532,389,o), +(413,582,o), +(291,729,c), +(245,729,l), +(338,619,o), +(430,482,o), +(476,359,c), +(473,359,l), +(438,421,o), +(378,451,o), +(302,451,cs), +(176,451,o), +(87,360,o), +(87,224,cs), +(87,81,o), +(179,-8,o), +(307,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,26,o), +(125,105,o), +(125,224,cs), +(125,343,o), +(199,417,o), +(306,417,cs), +(424,417,o), +(494,328,o), +(494,217,cs), +(494,98,o), +(419,26,o), +(308,26,cs) +); +}, +{ +closed = 1; +nodes = ( +(477,626,l), +(477,654,l), +(186,589,l), +(186,561,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-9,o), +(527,88,o), +(527,243,cs), +(527,423,o), +(417,596,o), +(312,729,c), +(268,729,l), +(343,640,o), +(424,521,o), +(470,402,c), +(468,402,l), +(434,472,o), +(376,506,o), +(302,506,cs), +(173,506,o), +(92,408,o), +(92,251,cs), +(92,91,o), +(175,-9,o), +(307,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,25,o), +(130,109,o), +(130,251,cs), +(130,391,o), +(195,473,o), +(306,473,cs), +(421,473,o), +(489,388,o), +(489,243,cs), +(489,106,o), +(422,25,o), +(308,25,cs) +); +}, +{ +closed = 1; +nodes = ( +(493,635,l), +(493,663,l), +(208,591,l), +(208,563,l) +); +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,-9,o), +(572,85,o), +(572,282,cs), +(572,418,o), +(519,587,o), +(392,729,c), +(170,729,l), +(270,631,o), +(354,517,o), +(394,407,c), +(389,407,l), +(369,447,o), +(321,470,o), +(259,470,cs), +(132,470,o), +(47,377,o), +(47,238,cs), +(47,88,o), +(150,-9,o), +(296,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,148,o), +(236,178,o), +(236,242,cs), +(236,299,o), +(260,337,o), +(310,337,cs), +(355,337,o), +(385,307,o), +(385,243,cs), +(385,186,o), +(361,148,o), +(310,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(566,587,l), +(566,707,l), +(161,616,l), +(161,496,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(472,-9,o), +(572,101,o), +(572,282,cs), +(572,433,o), +(503,605,o), +(392,729,c), +(170,729,l), +(262,639,o), +(341,534,o), +(382,432,c), +(372,429,l), +(351,454,o), +(308,470,o), +(264,470,cs), +(132,470,o), +(47,375,o), +(47,233,cs), +(47,82,o), +(145,-9,o), +(296,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,148,o), +(236,178,o), +(236,242,cs), +(236,299,o), +(260,337,o), +(310,337,cs), +(355,337,o), +(385,307,o), +(385,243,cs), +(385,186,o), +(361,148,o), +(310,148,cs) +); +}, +{ +closed = 1; +nodes = ( +(556,587,l), +(556,707,l), +(151,616,l), +(151,496,l) +); +} +); +width = 619; +} +); +metricLeft = o; +metricRight = o; +unicode = 240; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/etilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/etilde.glyph new file mode 100644 index 00000000..23939924 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/etilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = etilde; +kernLeft = egrave; +kernRight = eacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = e; +}, +{ +pos = (7,-155); +ref = tildecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = e; +}, +{ +pos = (0,-134); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 7869; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/euro.glyph b/sources/MonaSansMono.glyphspackage/glyphs/euro.glyph new file mode 100644 index 00000000..df1f4ac6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/euro.glyph @@ -0,0 +1,212 @@ +{ +glyphname = euro; +layers = ( +{ +background = { +shapes = ( +{ +pos = (-44,0); +ref = C; +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(529,-8,o), +(654,88,o), +(675,238,c), +(635,238,l), +(615,111,o), +(510,28,o), +(356,28,cs), +(167,28,o), +(52,162,o), +(52,364,cs), +(52,566,o), +(167,700,o), +(356,700,cs), +(509,700,o), +(613,615,o), +(635,494,c), +(675,494,l), +(649,643,o), +(525,736,o), +(356,736,cs), +(149,736,o), +(11,586,o), +(11,364,cs), +(11,143,o), +(148,-8,o), +(356,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(386,260,l), +(391,294,l), +(-61,294,l), +(-61,260,l) +); +}, +{ +closed = 1; +nodes = ( +(415,435,l), +(420,469,l), +(-61,469,l), +(-61,435,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +49 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +44 +); +stem = -2; +target = ( +0, +45 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +35 +); +stem = -2; +target = ( +0, +36 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +24 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +40 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +pos = (-45,0); +ref = C; +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(541,-10,o), +(685,98,o), +(702,259,c), +(492,259,l), +(478,203,o), +(420,166,o), +(353,166,cs), +(255,166,o), +(191,222,o), +(191,365,cs), +(191,507,o), +(255,563,o), +(353,563,cs), +(425,563,o), +(476,525,o), +(492,471,c), +(702,471,l), +(685,631,o), +(547,739,o), +(353,739,cs), +(128,739,o), +(-22,608,o), +(-22,365,cs), +(-22,121,o), +(128,-10,o), +(353,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,245,l), +(391,341,l), +(-80,341,l), +(-80,245,l) +); +}, +{ +closed = 1; +nodes = ( +(398,388,l), +(412,482,l), +(-80,482,l), +(-80,388,l) +); +} +); +width = 619; +} +); +unicode = 8364; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/exclam.glyph b/sources/MonaSansMono.glyphspackage/glyphs/exclam.glyph new file mode 100644 index 00000000..62a2d73c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/exclam.glyph @@ -0,0 +1,81 @@ +{ +glyphname = exclam; +kernLeft = exclam; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(319,186,l), +(329,493,l), +(329,729,l), +(290,729,l), +(290,493,l), +(299,186,l) +); +}, +{ +closed = 1; +nodes = ( +(335,-7,o), +(354,12,o), +(354,38,cs), +(354,64,o), +(335,83,o), +(309,83,cs), +(284,83,o), +(264,64,o), +(264,38,cs), +(264,12,o), +(284,-7,o), +(309,-7,cs) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(359,275,l), +(406,487,l), +(406,729,l), +(212,729,l), +(212,487,l), +(260,275,l) +); +}, +{ +closed = 1; +nodes = ( +(378,-8,o), +(424,38,o), +(424,107,cs), +(424,176,o), +(378,222,o), +(309,222,cs), +(240,222,o), +(194,176,o), +(194,107,cs), +(194,38,o), +(240,-8,o), +(309,-8,cs) +); +} +); +width = 618; +} +); +unicode = 33; +userData = { +KernOnName = exclam; +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/exclam.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/exclam.ss01.glyph new file mode 100644 index 00000000..780c1ac7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/exclam.ss01.glyph @@ -0,0 +1,62 @@ +{ +glyphname = exclam.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(319,186,l), +(329,493,l), +(329,729,l), +(290,729,l), +(290,493,l), +(299,186,l) +); +}, +{ +closed = 1; +nodes = ( +(351,0,l), +(351,80,l), +(272,80,l), +(272,0,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(360,261,l), +(410,487,l), +(410,729,l), +(210,729,l), +(210,487,l), +(261,261,l) +); +}, +{ +closed = 1; +nodes = ( +(404,0,l), +(404,187,l), +(215,187,l), +(215,0,l) +); +} +); +width = 619; +} +); +userData = { +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.case.glyph new file mode 100644 index 00000000..15cc7969 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.case.glyph @@ -0,0 +1,28 @@ +{ +color = 6; +glyphname = exclamdown.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,213); +ref = exclamdown; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,184); +ref = exclamdown; +} +); +width = 618; +} +); +metricLeft = exclamdown; +metricRight = exclamdown; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.glyph b/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.glyph new file mode 100644 index 00000000..ac89480f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.glyph @@ -0,0 +1,46 @@ +{ +color = 6; +glyphname = exclamdown; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (618,517); +ref = exclam; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (618,544); +ref = exclam; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 618; +} +); +metricLeft = exclam; +metricRight = exclam; +unicode = 161; +userData = { +KernOnSpecialSpacing = { +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.ss01.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.ss01.case.glyph new file mode 100644 index 00000000..e6e2ec39 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.ss01.case.glyph @@ -0,0 +1,28 @@ +{ +color = 6; +glyphname = exclamdown.ss01.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,213); +ref = exclamdown.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,184); +ref = exclamdown.ss01; +} +); +width = 619; +} +); +metricLeft = exclamdown.ss01; +metricRight = exclamdown.ss01; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.ss01.glyph new file mode 100644 index 00000000..519eccf2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/exclamdown.ss01.glyph @@ -0,0 +1,45 @@ +{ +color = 6; +glyphname = exclamdown.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (618,517); +ref = exclam.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (619,544); +ref = exclam.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = exclam; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = exclam; +}; +width = 619; +} +); +metricLeft = "=|exclam.ss01"; +metricRight = "=|exclam.ss01"; +userData = { +KernOnSpecialSpacing = { +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/f.glyph b/sources/MonaSansMono.glyphspackage/glyphs/f.glyph new file mode 100644 index 00000000..a88e0817 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/f.glyph @@ -0,0 +1,200 @@ +{ +glyphname = f; +kernLeft = f; +kernRight = f; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (307,0); +}, +{ +name = top; +pos = (307,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(318,0,l), +(318,485,l), +(445,485,l), +(445,517,l), +(318,517,l), +(318,620,ls), +(318,665,o), +(332,695,o), +(388,695,cs), +(458,695,l), +(458,729,l), +(385,729,ls), +(323,729,o), +(281,696,o), +(281,627,cs), +(281,517,l), +(173,517,l), +(173,485,l), +(281,485,l), +(281,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(312,0,l), +(312,485,l), +(541,485,l), +(541,517,l), +(312,517,l), +(312,606,ls), +(312,669,o), +(338,695,o), +(403,695,cs), +(555,695,l), +(555,729,l), +(395,729,ls), +(322,729,o), +(276,691,o), +(276,612,cs), +(276,517,l), +(83,517,l), +(83,485,l), +(276,485,l), +(276,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = top; +pos = (311,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(394,0,l), +(394,391,l), +(496,391,l), +(496,544,l), +(394,544,l), +(394,572,ls), +(394,592,o), +(405,606,o), +(440,606,cs), +(504,606,l), +(504,729,l), +(381,729,ls), +(267,729,o), +(203,675,o), +(203,580,cs), +(203,544,l), +(123,544,l), +(123,391,l), +(203,391,l), +(203,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(394,0,l), +(394,401,l), +(557,401,l), +(557,544,l), +(394,544,l), +(394,571,ls), +(394,599,o), +(410,606,o), +(433,606,cs), +(565,606,l), +(565,729,l), +(381,729,ls), +(267,729,o), +(203,675,o), +(203,580,cs), +(203,544,l), +(53,544,l), +(53,401,l), +(203,401,l), +(203,0,l) +); +} +); +width = 618; +} +); +metricRight = t; +unicode = 102; +userData = { +KernOnName = f; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/f_f.liga.glyph b/sources/MonaSansMono.glyphspackage/glyphs/f_f.liga.glyph new file mode 100644 index 00000000..9c422f47 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/f_f.liga.glyph @@ -0,0 +1,116 @@ +{ +export = 0; +glyphname = f_f.liga; +kernLeft = f; +kernRight = f; +layers = ( +{ +background = { +shapes = ( +{ +pos = (8,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = f; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 1236; +}, +{ +background = { +shapes = ( +{ +pos = (-54,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = f; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +}; +width = 1236; +} +); +metricLeft = f; +metricRight = f; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/f_f_i.liga.glyph b/sources/MonaSansMono.glyphspackage/glyphs/f_f_i.liga.glyph new file mode 100644 index 00000000..b1837d30 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/f_f_i.liga.glyph @@ -0,0 +1,65 @@ +{ +export = 0; +glyphname = f_f_i.liga; +kernLeft = f; +kernRight = i; +layers = ( +{ +background = { +shapes = ( +{ +pos = (-90,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = f; +}, +{ +pos = (1236,0); +ref = i; +} +); +width = 1855; +}, +{ +background = { +shapes = ( +{ +pos = (-195,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (1,0); +ref = f; +scale = (0.8,1); +}, +{ +alignment = -1; +pos = (369,0); +ref = f; +scale = (0.8,1); +}, +{ +alignment = -1; +pos = (747,0); +ref = i; +scale = (0.8,1); +} +); +width = 1236; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/f_f_i.liga.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/f_f_i.liga.ss01.glyph new file mode 100644 index 00000000..ed3b9b25 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/f_f_i.liga.ss01.glyph @@ -0,0 +1,60 @@ +{ +export = 0; +glyphname = f_f_i.liga.ss01; +kernLeft = f; +kernRight = i; +layers = ( +{ +background = { +shapes = ( +{ +pos = (-97,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = f; +}, +{ +pos = (1236,0); +ref = i.ss01; +} +); +width = 1855; +}, +{ +background = { +shapes = ( +{ +pos = (-200,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = f; +}, +{ +pos = (1236,0); +ref = i.ss01; +} +); +width = 1854; +} +); +metricLeft = f; +metricRight = i.ss01; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/f_y.liga.glyph b/sources/MonaSansMono.glyphspackage/glyphs/f_y.liga.glyph new file mode 100644 index 00000000..0e43d812 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/f_y.liga.glyph @@ -0,0 +1,52 @@ +{ +export = 0; +glyphname = f_y.liga; +kernLeft = f; +kernRight = y; +layers = ( +{ +background = { +shapes = ( +{ +pos = (-74,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = y; +} +); +width = 1236; +}, +{ +background = { +shapes = ( +{ +pos = (-134,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = y; +} +); +width = 1236; +} +); +metricLeft = f; +metricRight = y; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/fi.glyph b/sources/MonaSansMono.glyphspackage/glyphs/fi.glyph new file mode 100644 index 00000000..4129e0aa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/fi.glyph @@ -0,0 +1,53 @@ +{ +export = 0; +glyphname = fi; +kernLeft = f; +kernRight = i; +layers = ( +{ +background = { +shapes = ( +{ +pos = (48,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = i; +} +); +width = 1237; +}, +{ +background = { +shapes = ( +{ +pos = (-25,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = i; +} +); +width = 1236; +} +); +metricLeft = f; +metricRight = i; +unicode = 64257; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/fi.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/fi.ss01.glyph new file mode 100644 index 00000000..b9587f24 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/fi.ss01.glyph @@ -0,0 +1,64 @@ +{ +export = 0; +glyphname = fi.ss01; +kernLeft = f; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (555,0); +} +); +background = { +shapes = ( +{ +pos = (41,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = i.ss01; +} +); +width = 1237; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (553,0); +} +); +background = { +shapes = ( +{ +pos = (-30,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = i.ss01; +} +); +width = 1236; +} +); +metricLeft = f; +metricRight = i.ss01; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/five.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/five.blackC_ircled.glyph new file mode 100644 index 00000000..51de6ae4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/five.blackC_ircled.glyph @@ -0,0 +1,464 @@ +{ +color = 0; +glyphname = five.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs), +(-3,140,o), +(148,-10,o), +(372,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,134,o), +(234,186,o), +(231,253,c), +(266,253,l), +(270,200,o), +(309,165,o), +(368,165,cs), +(438,165,o), +(479,210,o), +(479,276,cs), +(479,346,o), +(435,387,o), +(370,387,cs), +(324,387,o), +(287,364,o), +(273,331,c), +(236,331,l), +(254,572,l), +(504,572,l), +(504,541,l), +(284,541,l), +(270,366,l), +(272,365,l), +(293,398,o), +(334,416,o), +(377,416,cs), +(460,416,o), +(514,360,o), +(514,278,cs), +(514,192,o), +(456,134,o), +(367,134,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,189,o), +(199,231,o), +(196,283,c), +(224,283,l), +(228,242,o), +(259,214,o), +(305,214,cs), +(361,214,o), +(394,250,o), +(394,302,cs), +(394,358,o), +(359,391,o), +(307,391,cs), +(271,391,o), +(241,372,o), +(230,346,c), +(200,346,l), +(215,538,l), +(414,538,l), +(414,513,l), +(239,513,l), +(228,374,l), +(229,373,l), +(246,399,o), +(279,414,o), +(312,414,cs), +(379,414,o), +(422,369,o), +(422,303,cs), +(422,236,o), +(375,189,o), +(304,189,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +142, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +445, +30 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +621, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +630, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +354, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +138, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +440, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +613, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +582, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +297, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs), +(-9,141,o), +(155,-9,o), +(379,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,133,o), +(212,186,o), +(204,265,c), +(332,265,l), +(337,250,o), +(353,241,o), +(374,241,cs), +(400,241,o), +(417,261,o), +(417,282,cs), +(417,306,o), +(399,323,o), +(375,323,cs), +(355,323,o), +(339,312,o), +(335,297,c), +(214,297,l), +(233,572,l), +(534,572,l), +(534,461,l), +(346,461,l), +(337,406,l), +(343,404,l), +(352,414,o), +(383,423,o), +(410,423,cs), +(492,423,o), +(545,369,o), +(545,287,cs), +(545,195,o), +(476,133,o), +(371,133,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,194,o), +(183,235,o), +(177,297,c), +(276,297,l), +(280,285,o), +(292,278,o), +(308,278,cs), +(329,278,o), +(342,294,o), +(342,310,cs), +(342,328,o), +(328,342,o), +(309,342,cs), +(294,342,o), +(281,333,o), +(278,321,c), +(184,321,l), +(199,535,l), +(432,535,l), +(432,449,l), +(287,449,l), +(280,406,l), +(284,404,l), +(291,412,o), +(315,419,o), +(336,419,cs), +(400,419,o), +(441,377,o), +(441,314,cs), +(441,242,o), +(388,194,o), +(306,194,cs) +); +} +); +width = 618; +} +); +unicode = 10106; +userData = { +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/five.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/five.circled.glyph new file mode 100644 index 00000000..4badc212 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/five.circled.glyph @@ -0,0 +1,206 @@ +{ +color = 0; +glyphname = five.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,134,o), +(325,192,o), +(325,278,cs), +(325,360,o), +(271,416,o), +(188,416,cs), +(145,416,o), +(104,398,o), +(83,365,c), +(81,366,l), +(95,541,l), +(315,541,l), +(315,572,l), +(65,572,l), +(47,331,l), +(84,331,l), +(98,364,o), +(135,387,o), +(181,387,cs), +(246,387,o), +(290,346,o), +(290,276,cs), +(290,210,o), +(249,165,o), +(179,165,cs), +(120,165,o), +(81,200,o), +(77,253,c), +(42,253,l), +(45,186,o), +(96,134,o), +(178,134,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (81,189); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(289,133,o), +(358,195,o), +(358,287,cs), +(358,369,o), +(305,423,o), +(223,423,cs), +(196,423,o), +(165,414,o), +(156,404,c), +(150,406,l), +(159,461,l), +(347,461,l), +(347,572,l), +(46,572,l), +(27,297,l), +(148,297,l), +(152,312,o), +(168,323,o), +(188,323,cs), +(212,323,o), +(230,306,o), +(230,282,cs), +(230,261,o), +(213,241,o), +(187,241,cs), +(166,241,o), +(150,250,o), +(145,265,c), +(17,265,l), +(25,186,o), +(84,133,o), +(184,133,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (89,191); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9316; +userData = { +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/five.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/five.dnom.glyph new file mode 100644 index 00000000..a42362a8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/five.dnom.glyph @@ -0,0 +1,197 @@ +{ +glyphname = five.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(301,-5,o), +(356,48,o), +(356,127,cs), +(356,203,o), +(305,254,o), +(230,254,cs), +(187,254,o), +(151,235,o), +(134,208,c), +(132,208,l), +(144,368,l), +(346,368,l), +(346,397,l), +(117,397,l), +(101,176,l), +(134,176,l), +(147,205,o), +(179,227,o), +(223,227,cs), +(283,227,o), +(323,190,o), +(323,126,cs), +(323,66,o), +(286,23,o), +(221,23,cs), +(168,23,o), +(131,56,o), +(128,104,c), +(96,104,l), +(99,39,o), +(150,-5,o), +(221,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(309,-5,o), +(372,48,o), +(372,128,cs), +(372,200,o), +(323,246,o), +(250,246,cs), +(223,246,o), +(196,238,o), +(188,231,c), +(184,233,l), +(191,277,l), +(361,277,l), +(361,375,l), +(92,375,l), +(75,136,l), +(182,136,l), +(186,150,o), +(202,158,o), +(219,158,cs), +(242,158,o), +(258,144,o), +(258,124,cs), +(258,108,o), +(243,90,o), +(218,90,cs), +(198,90,o), +(183,98,o), +(179,109,c), +(66,109,l), +(73,41,o), +(126,-5,o), +(216,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +metricWidth = H; +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/five.glyph b/sources/MonaSansMono.glyphspackage/glyphs/five.glyph new file mode 100644 index 00000000..29bd1024 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/five.glyph @@ -0,0 +1,260 @@ +{ +glyphname = five; +kernLeft = five; +kernRight = five; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(449,-8,o), +(545,89,o), +(545,235,cs), +(545,378,o), +(454,474,o), +(317,474,cs), +(235,474,o), +(168,436,o), +(134,379,c), +(131,380,l), +(145,687,l), +(514,687,l), +(514,721,l), +(112,721,l), +(98,338,l), +(132,338,l), +(161,399,o), +(226,441,o), +(311,441,cs), +(427,441,o), +(504,366,o), +(504,233,cs), +(504,109,o), +(433,26,o), +(307,26,cs), +(189,26,o), +(113,104,o), +(117,220,c), +(82,220,l), +(80,83,o), +(170,-8,o), +(306,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-8,o), +(544,88,o), +(544,232,cs), +(544,371,o), +(454,466,o), +(317,466,cs), +(237,466,o), +(170,429,o), +(137,373,c), +(134,374,l), +(157,695,l), +(525,695,l), +(525,729,l), +(125,729,l), +(97,332,l), +(139,332,l), +(165,390,o), +(229,432,o), +(311,432,cs), +(426,432,o), +(503,358,o), +(503,230,cs), +(503,109,o), +(432,26,o), +(307,26,cs), +(203,26,o), +(133,92,o), +(127,189,c), +(88,189,l), +(94,72,o), +(182,-8,o), +(306,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(478,-10,o), +(592,93,o), +(592,248,cs), +(592,388,o), +(496,482,o), +(360,482,cs), +(308,482,o), +(258,468,o), +(235,448,c), +(227,451,l), +(235,555,l), +(565,555,l), +(565,721,l), +(67,721,l), +(46,277,l), +(228,277,l), +(238,310,o), +(272,332,o), +(311,332,cs), +(369,332,o), +(400,296,o), +(400,241,cs), +(400,193,o), +(366,152,o), +(311,152,cs), +(257,152,o), +(221,178,o), +(220,225,c), +(30,225,l), +(36,84,o), +(136,-10,o), +(305,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(475,-10,o), +(589,93,o), +(589,247,cs), +(589,386,o), +(499,477,o), +(361,477,cs), +(310,477,o), +(256,459,o), +(238,438,c), +(230,441,l), +(245,561,l), +(570,561,l), +(570,729,l), +(75,729,l), +(43,274,l), +(227,274,l), +(237,305,o), +(270,326,o), +(308,326,cs), +(360,326,o), +(395,291,o), +(395,240,cs), +(395,194,o), +(362,154,o), +(306,154,cs), +(261,154,o), +(229,176,o), +(221,209,c), +(28,209,l), +(40,78,o), +(139,-10,o), +(302,-10,cs) +); +} +); +width = 618; +} +); +unicode = 53; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/five.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/five.numr.glyph new file mode 100644 index 00000000..baca2247 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/five.numr.glyph @@ -0,0 +1,135 @@ +{ +color = 6; +glyphname = five.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = five.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.dnom; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/five.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/five.tf.glyph new file mode 100644 index 00000000..44cd1cbf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/five.tf.glyph @@ -0,0 +1,196 @@ +{ +glyphname = five.tf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(451,-8,o), +(550,88,o), +(550,232,cs), +(550,371,o), +(457,466,o), +(317,466,cs), +(234,466,o), +(165,429,o), +(131,373,c), +(128,374,l), +(152,695,l), +(531,695,l), +(531,729,l), +(120,729,l), +(91,332,l), +(133,332,l), +(160,390,o), +(226,432,o), +(311,432,cs), +(429,432,o), +(509,358,o), +(509,230,cs), +(509,109,o), +(435,26,o), +(307,26,cs), +(199,26,o), +(127,92,o), +(121,189,c), +(82,189,l), +(88,72,o), +(179,-8,o), +(306,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +29, +29 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(469,-10,o), +(580,92,o), +(580,244,cs), +(580,382,o), +(493,472,o), +(359,472,cs), +(310,472,o), +(259,454,o), +(241,433,c), +(233,436,l), +(248,555,l), +(561,555,l), +(561,721,l), +(82,721,l), +(51,271,l), +(230,271,l), +(240,302,o), +(271,322,o), +(308,322,cs), +(356,322,o), +(390,288,o), +(390,237,cs), +(390,192,o), +(358,152,o), +(306,152,cs), +(264,152,o), +(232,174,o), +(225,207,c), +(36,207,l), +(48,77,o), +(144,-10,o), +(302,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 618; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/fiveeighths.glyph b/sources/MonaSansMono.glyphspackage/glyphs/fiveeighths.glyph new file mode 100644 index 00000000..49b4ac61 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/fiveeighths.glyph @@ -0,0 +1,66 @@ +{ +color = 6; +glyphname = fiveeighths; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (-81,0); +ref = five.numr; +}, +{ +alignment = -1; +pos = (3,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (264,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.numr; +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-61,72); +ref = five.numr; +scale = (0.9,0.9); +}, +{ +alignment = -1; +pos = (5,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (280,0); +ref = eight.dnom; +scale = (0.9,0.9); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = five.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = five.numr; +}; +width = 618; +} +); +metricWidth = H; +unicode = 8541; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/fiveinferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/fiveinferior.glyph new file mode 100644 index 00000000..45476f22 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/fiveinferior.glyph @@ -0,0 +1,209 @@ +{ +glyphname = fiveinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (227,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(310,-45,o), +(368,13,o), +(368,99,cs), +(368,181,o), +(314,237,o), +(231,237,cs), +(188,237,o), +(147,219,o), +(126,186,c), +(124,187,l), +(138,362,l), +(358,362,l), +(358,393,l), +(108,393,l), +(90,152,l), +(127,152,l), +(141,185,o), +(178,208,o), +(224,208,cs), +(289,208,o), +(333,167,o), +(333,97,cs), +(333,31,o), +(292,-14,o), +(222,-14,cs), +(163,-14,o), +(124,21,o), +(120,74,c), +(85,74,l), +(88,7,o), +(139,-45,o), +(221,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (220,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(321,-46,o), +(390,16,o), +(390,108,cs), +(390,190,o), +(337,244,o), +(255,244,cs), +(228,244,o), +(197,235,o), +(188,225,c), +(182,227,l), +(191,282,l), +(379,282,l), +(379,393,l), +(78,393,l), +(59,118,l), +(180,118,l), +(184,133,o), +(200,144,o), +(220,144,cs), +(244,144,o), +(262,127,o), +(262,103,cs), +(262,82,o), +(245,62,o), +(219,62,cs), +(198,62,o), +(182,71,o), +(177,86,c), +(49,86,l), +(57,7,o), +(116,-46,o), +(216,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 618; +} +); +unicode = 8325; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/fivesuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/fivesuperior.glyph new file mode 100644 index 00000000..699bcb46 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/fivesuperior.glyph @@ -0,0 +1,137 @@ +{ +color = 6; +glyphname = fivesuperior; +kernLeft = fivesuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fiveinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fiveinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +28 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = fiveinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fiveinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fiveinferior; +}; +width = 618; +} +); +unicode = 8309; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = five; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/fl.glyph b/sources/MonaSansMono.glyphspackage/glyphs/fl.glyph new file mode 100644 index 00000000..a1b9181c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/fl.glyph @@ -0,0 +1,165 @@ +{ +export = 0; +glyphname = fl; +kernLeft = f; +kernRight = l; +layers = ( +{ +background = { +shapes = ( +{ +pos = (32,0); +ref = f; +} +); +}; +layerId = m019; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = l; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 1236; +}, +{ +background = { +shapes = ( +{ +pos = (-28,0); +ref = f; +} +); +}; +layerId = m020; +shapes = ( +{ +ref = f; +}, +{ +pos = (618,0); +ref = l; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = f; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 1236; +} +); +metricLeft = f; +metricRight = l; +unicode = 64258; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/florin.glyph b/sources/MonaSansMono.glyphspackage/glyphs/florin.glyph new file mode 100644 index 00000000..6a9259b0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/florin.glyph @@ -0,0 +1,92 @@ +{ +glyphname = florin; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(188,-167,ls), +(274,-167,o), +(328,-120,o), +(328,-23,cs), +(328,581,ls), +(328,662,o), +(359,695,o), +(439,695,cs), +(468,695,l), +(468,729,l), +(431,729,ls), +(345,729,o), +(291,682,o), +(291,585,cs), +(291,-19,ls), +(291,-100,o), +(260,-133,o), +(180,-133,cs), +(151,-133,l), +(151,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(429,384,l), +(429,418,l), +(191,418,l), +(191,384,l) +); +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(190,-167,ls), +(328,-167,o), +(405,-102,o), +(405,33,cs), +(405,529,ls), +(405,575,o), +(431,586,o), +(469,586,cs), +(515,586,l), +(515,729,l), +(429,729,ls), +(291,729,o), +(214,664,o), +(214,529,cs), +(214,33,ls), +(214,-13,o), +(188,-24,o), +(150,-24,cs), +(104,-24,l), +(104,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(500,320,l), +(500,460,l), +(130,460,l), +(130,320,l) +); +} +); +width = 619; +} +); +unicode = 402; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/four.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/four.blackC_ircled.glyph new file mode 100644 index 00000000..cd89ce20 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/four.blackC_ircled.glyph @@ -0,0 +1,296 @@ +{ +color = 0; +glyphname = four.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-3,140,o), +(148,-10,o), +(372,-10,cs), +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,290,l), +(395,580,l), +(435,580,l), +(435,291,l), +(518,291,l), +(518,261,l), +(435,261,l), +(435,147,l), +(401,147,l), +(401,261,l), +(188,261,l) +); +}, +{ +closed = 1; +nodes = ( +(401,291,l), +(401,537,l), +(225,291,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(347,283,l), +(178,283,l), +(178,307,l), +(343,538,l), +(375,538,l), +(375,307,l), +(441,307,l), +(441,283,l), +(375,283,l), +(375,193,l), +(347,193,l) +); +}, +{ +closed = 1; +nodes = ( +(347,307,l), +(347,503,l), +(208,307,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +272, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +515, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-20, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-20, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-9,141,o), +(155,-9,o), +(379,-9,cs), +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,330,l), +(344,582,l), +(498,582,l), +(498,340,l), +(560,340,l), +(560,236,l), +(498,236,l), +(498,149,l), +(371,149,l), +(370,236,l), +(180,236,l) +); +}, +{ +closed = 1; +nodes = ( +(371,340,l), +(371,443,l), +(305,340,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,266,l), +(162,266,l), +(162,339,l), +(289,535,l), +(408,535,l), +(408,347,l), +(457,347,l), +(457,266,l), +(408,266,l), +(408,199,l), +(310,199,l) +); +}, +{ +closed = 1; +nodes = ( +(310,347,l), +(310,427,l), +(259,347,l) +); +} +); +width = 618; +} +); +unicode = 10105; +userData = { +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/four.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/four.circled.glyph new file mode 100644 index 00000000..3daa90cb --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/four.circled.glyph @@ -0,0 +1,180 @@ +{ +color = 0; +glyphname = four.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,147,l), +(246,261,l), +(329,261,l), +(329,291,l), +(246,291,l), +(246,580,l), +(206,580,l), +(-1,290,l), +(-1,261,l), +(212,261,l), +(212,147,l) +); +}, +{ +closed = 1; +nodes = ( +(212,537,l), +(212,291,l), +(36,291,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (88,189); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(311,149,l), +(311,236,l), +(373,236,l), +(373,340,l), +(311,340,l), +(311,582,l), +(157,582,l), +(-7,330,l), +(-7,236,l), +(184,236,l), +(184,149,l) +); +}, +{ +closed = 1; +nodes = ( +(184,443,l), +(184,340,l), +(118,340,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (89,191); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9315; +userData = { +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/four.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/four.dnom.glyph new file mode 100644 index 00000000..09e08d91 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/four.dnom.glyph @@ -0,0 +1,128 @@ +{ +glyphname = four.dnom; +kernLeft = four.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(296,0,l), +(296,397,l), +(259,397,l), +(69,131,l), +(69,105,l), +(371,105,l), +(371,132,l), +(103,132,l), +(273,371,l), +(264,374,l), +(264,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(334,0,l), +(334,375,l), +(197,375,l), +(49,158,l), +(49,75,l), +(390,75,l), +(390,167,l), +(159,167,l), +(272,321,l), +(221,338,l), +(221,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +metricWidth = H; +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/four.glyph b/sources/MonaSansMono.glyphspackage/glyphs/four.glyph new file mode 100644 index 00000000..deb06772 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/four.glyph @@ -0,0 +1,111 @@ +{ +glyphname = four; +kernLeft = four; +kernRight = four; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(437,0,l), +(437,729,l), +(395,729,l), +(43,233,l), +(43,198,l), +(578,198,l), +(578,232,l), +(86,232,l), +(410,693,l), +(400,693,l), +(400,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(506,0,l), +(506,729,l), +(272,729,l), +(15,296,l), +(15,154,l), +(603,154,l), +(603,310,l), +(204,310,l), +(364,596,l), +(312,596,l), +(312,0,l) +); +} +); +width = 618; +} +); +unicode = 52; +userData = { +KernOnName = four; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/four.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/four.numr.glyph new file mode 100644 index 00000000..8e657e78 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/four.numr.glyph @@ -0,0 +1,107 @@ +{ +color = 6; +glyphname = four.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = four.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = four.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = four.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = four.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = four.dnom; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/four.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/four.tf.glyph new file mode 100644 index 00000000..db06712c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/four.tf.glyph @@ -0,0 +1,126 @@ +{ +glyphname = four.tf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(439,0,l), +(439,729,l), +(397,729,l), +(38,233,l), +(38,198,l), +(583,198,l), +(583,232,l), +(81,232,l), +(412,693,l), +(402,696,l), +(402,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +19, +19 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(504,0,l), +(504,721,l), +(277,721,l), +(18,293,l), +(18,152,l), +(602,152,l), +(602,307,l), +(201,307,l), +(362,592,l), +(317,604,l), +(317,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 618; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/fourinferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/fourinferior.glyph new file mode 100644 index 00000000..4003ffce --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/fourinferior.glyph @@ -0,0 +1,139 @@ +{ +glyphname = fourinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (220,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-40,l), +(302,393,l), +(262,393,l), +(55,103,l), +(55,74,l), +(385,74,l), +(385,104,l), +(92,104,l), +(278,364,l), +(268,367,l), +(268,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (220,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(348,-40,l), +(348,393,l), +(194,393,l), +(30,141,l), +(30,47,l), +(410,47,l), +(410,151,l), +(155,151,l), +(271,332,l), +(221,346,l), +(221,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 619; +} +); +unicode = 8324; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/foursuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/foursuperior.glyph new file mode 100644 index 00000000..e72b1412 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/foursuperior.glyph @@ -0,0 +1,109 @@ +{ +color = 6; +glyphname = foursuperior; +kernLeft = foursuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fourinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fourinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = fourinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = fourinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = fourinferior; +}; +width = 619; +} +); +unicode = 8308; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = four; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/fraction.glyph b/sources/MonaSansMono.glyphspackage/glyphs/fraction.glyph new file mode 100644 index 00000000..c3bf3277 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/fraction.glyph @@ -0,0 +1,45 @@ +{ +glyphname = fraction; +kernLeft = fraction; +kernRight = fraction; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(81,0,l), +(582,729,l), +(542,729,l), +(42,0,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(128,0,l), +(618,729,l), +(490,729,l), +(0,0,l) +); +} +); +width = 618; +} +); +unicode = 8260; +userData = { +KernOnName = fraction; +KernOnSpecialSpacing = { +L = fraction; +R = fraction; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/g.glyph b/sources/MonaSansMono.glyphspackage/glyphs/g.glyph new file mode 100644 index 00000000..30b6cc51 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/g.glyph @@ -0,0 +1,482 @@ +{ +glyphname = g; +kernLeft = g; +kernRight = g; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (311,-167); +}, +{ +name = top; +pos = (311,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(421,-177,o), +(512,-120,o), +(512,25,cs), +(512,517,l), +(478,517,l), +(475,339,l), +(475,31,ls), +(475,-103,o), +(400,-144,o), +(292,-144,cs), +(206,-144,o), +(147,-106,o), +(135,-43,c), +(99,-43,l), +(113,-128,o), +(187,-177,o), +(292,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(378,13,o), +(447,63,o), +(473,137,c), +(491,137,l), +(491,237,l), +(475,237,l), +(475,139,o), +(407,47,o), +(293,47,cs), +(185,47,o), +(113,130,o), +(113,270,cs), +(113,412,o), +(185,494,o), +(293,494,cs), +(408,494,o), +(475,402,o), +(475,305,c), +(491,305,l), +(491,404,l), +(473,404,l), +(447,478,o), +(378,527,o), +(284,527,cs), +(160,527,o), +(75,430,o), +(75,270,cs), +(75,112,o), +(160,13,o), +(284,13,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(454,-177,o), +(507,-123,o), +(507,15,cs), +(507,517,l), +(473,517,l), +(471,404,l), +(461,404,l), +(437,477,o), +(373,527,o), +(284,527,cs), +(163,527,o), +(80,430,o), +(80,270,cs), +(80,112,o), +(163,13,o), +(284,13,cs), +(373,13,o), +(437,64,o), +(461,137,c), +(470,137,l), +(470,15,ls), +(470,-104,o), +(431,-144,o), +(311,-144,cs), +(208,-144,o), +(152,-107,o), +(139,-43,c), +(102,-43,l), +(117,-130,o), +(190,-177,o), +(311,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,47,o), +(118,130,o), +(118,270,cs), +(118,412,o), +(188,494,o), +(293,494,cs), +(405,494,o), +(470,402,o), +(470,305,cs), +(470,237,ls), +(470,139,o), +(404,47,o), +(293,47,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +12 +); +stem = -2; +target = ( +0, +51 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +25 +); +stem = -2; +target = ( +0, +24 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +44 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +48 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +9 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +41 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,-154); +}, +{ +name = top; +pos = (311,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-332,-177,o), +(-217,-113,o), +(-217,80,cs), +(-217,544,l), +(-402,544,l), +(-408,469,l), +(-418,469,l), +(-440,520,o), +(-497,554,o), +(-568,554,cs), +(-694,554,o), +(-778,471,o), +(-778,294,cs), +(-778,117,o), +(-694,34,o), +(-568,34,cs), +(-497,34,o), +(-440,68,o), +(-418,119,c), +(-408,119,l), +(-408,40,ls), +(-408,-10,o), +(-427,-44,o), +(-503,-44,cs), +(-545,-44,o), +(-572,-27,o), +(-576,-2,c), +(-760,-2,l), +(-754,-107,o), +(-664,-177,o), +(-508,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(-548,178,o), +(-583,211,o), +(-583,294,cs), +(-583,377,o), +(-548,410,o), +(-495,410,cs), +(-438,410,o), +(-413,371,o), +(-409,327,c), +(-408,263,l), +(-412,218,o), +(-437,178,o), +(-495,178,cs) +); +}, +{ +closed = 1; +nodes = ( +(466,-177,o), +(582,-111,o), +(582,58,cs), +(582,544,l), +(398,544,l), +(394,478,l), +(383,478,l), +(363,523,o), +(304,554,o), +(233,554,cs), +(103,554,o), +(18,459,o), +(18,297,cs), +(18,133,o), +(103,38,o), +(233,38,cs), +(307,38,o), +(365,72,o), +(383,114,c), +(391,114,l), +(391,30,ls), +(391,-25,o), +(352,-44,o), +(297,-44,cs), +(255,-44,o), +(228,-27,o), +(224,-2,c), +(40,-2,l), +(49,-107,o), +(150,-177,o), +(297,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,178,o), +(213,229,o), +(213,297,cs), +(213,363,o), +(239,414,o), +(309,414,cs), +(358,414,o), +(391,382,o), +(391,317,cs), +(391,275,ls), +(391,214,o), +(364,178,o), +(304,178,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(496,-177,o), +(564,-119,o), +(564,71,cs), +(564,544,l), +(379,544,l), +(374,475,l), +(359,475,l), +(339,526,o), +(288,554,o), +(228,554,cs), +(109,554,o), +(30,457,o), +(30,291,cs), +(30,124,o), +(109,29,o), +(228,29,cs), +(293,29,o), +(341,61,o), +(359,108,c), +(373,108,l), +(373,31,ls), +(373,-17,o), +(357,-44,o), +(296,-44,cs), +(252,-44,o), +(226,-28,o), +(223,-2,c), +(39,-2,l), +(44,-107,o), +(131,-177,o), +(295,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,182,o), +(225,227,o), +(225,291,cs), +(225,355,o), +(245,401,o), +(307,401,cs), +(344,401,o), +(372,371,o), +(372,311,cs), +(372,271,ls), +(372,218,o), +(352,182,o), +(302,182,cs) +); +} +); +width = 618; +} +); +unicode = 103; +userData = { +KernOnName = g; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/g.ss06.glyph b/sources/MonaSansMono.glyphspackage/glyphs/g.ss06.glyph new file mode 100644 index 00000000..b8997876 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/g.ss06.glyph @@ -0,0 +1,443 @@ +{ +glyphname = g.ss06; +kernLeft = g.ss05; +kernRight = g.ss05; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (315,-167); +}, +{ +name = top; +pos = (307,516); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(389,-167,ls), +(485,-167,o), +(547,-115,o), +(547,-35,cs), +(547,43,o), +(497,92,o), +(389,92,cs), +(227,92,ls), +(184,92,o), +(155,112,o), +(155,148,cs), +(155,176,o), +(174,204,o), +(210,223,c), +(189,241,l), +(151,217,o), +(120,183,o), +(120,144,cs), +(120,115,o), +(135,89,o), +(165,76,c), +(165,75,l), +(112,52,o), +(76,4,o), +(76,-45,cs), +(76,-118,o), +(125,-167,o), +(228,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,-132,o), +(112,-101,o), +(112,-45,cs), +(112,-5,o), +(130,31,o), +(175,57,c), +(395,57,ls), +(465,57,o), +(509,32,o), +(509,-38,cs), +(509,-94,o), +(469,-132,o), +(388,-132,cs), +(230,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(418,189,o), +(495,260,o), +(495,358,cs), +(495,456,o), +(418,527,o), +(307,527,cs), +(196,527,o), +(119,456,o), +(119,358,cs), +(119,260,o), +(196,189,o), +(307,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,221,o), +(155,280,o), +(155,358,cs), +(155,436,o), +(210,495,o), +(307,495,cs), +(404,495,o), +(459,436,o), +(459,358,cs), +(459,280,o), +(404,221,o), +(307,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(456,540,o), +(515,570,o), +(585,564,c), +(585,598,l), +(501,605,o), +(436,566,o), +(402,486,c), +(424,472,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(391,-167,ls), +(491,-167,o), +(554,-115,o), +(554,-35,cs), +(554,43,o), +(503,92,o), +(391,92,cs), +(224,92,ls), +(179,92,o), +(150,112,o), +(150,148,cs), +(150,176,o), +(169,203,o), +(207,223,c), +(186,241,l), +(149,218,o), +(115,184,o), +(115,144,cs), +(115,116,o), +(128,94,o), +(157,78,c), +(157,75,l), +(102,40,o), +(69,-8,o), +(69,-57,cs), +(69,-123,o), +(124,-167,o), +(221,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,-132,o), +(106,-103,o), +(106,-52,cs), +(106,-13,o), +(130,29,o), +(171,57,c), +(398,57,ls), +(471,57,o), +(517,32,o), +(517,-38,cs), +(517,-94,o), +(475,-132,o), +(391,-132,cs), +(217,-132,ls) +); +}, +{ +closed = 1; +nodes = ( +(421,189,o), +(500,260,o), +(500,358,cs), +(500,456,o), +(421,527,o), +(307,527,cs), +(193,527,o), +(113,456,o), +(113,358,cs), +(113,260,o), +(193,189,o), +(307,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(207,221,o), +(149,280,o), +(149,358,cs), +(149,436,o), +(207,495,o), +(307,495,cs), +(407,495,o), +(465,436,o), +(465,358,cs), +(465,280,o), +(407,221,o), +(307,221,cs) +); +}, +{ +closed = 1; +nodes = ( +(452,548,o), +(501,581,o), +(563,574,c), +(563,608,l), +(489,616,o), +(432,576,o), +(397,491,c), +(421,477,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (299,-167); +}, +{ +name = top; +pos = (298,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(378,-167,ls), +(505,-167,o), +(589,-104,o), +(589,9,cs), +(589,109,o), +(513,176,o), +(378,176,cs), +(236,176,ls), +(217,176,o), +(204,180,o), +(204,196,cs), +(204,215,o), +(224,223,o), +(251,238,c), +(171,277,l), +(85,232,o), +(42,190,o), +(42,132,cs), +(42,94,o), +(66,61,o), +(103,47,c), +(103,41,l), +(51,19,o), +(17,-14,o), +(17,-64,cs), +(17,-126,o), +(67,-167,o), +(159,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,-34,o), +(173,-26,o), +(173,-5,cs), +(173,4,o), +(178,14,o), +(188,24,c), +(357,24,ls), +(380,24,o), +(396,15,o), +(396,-5,cs), +(396,-22,o), +(383,-34,o), +(357,-34,cs), +(222,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(445,216,o), +(537,281,o), +(537,385,cs), +(537,489,o), +(445,554,o), +(299,554,cs), +(153,554,o), +(61,489,o), +(61,385,cs), +(61,281,o), +(153,216,o), +(299,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,320,o), +(246,343,o), +(246,385,cs), +(246,424,o), +(263,450,o), +(299,450,cs), +(331,450,o), +(352,429,o), +(352,385,cs), +(352,346,o), +(335,320,o), +(299,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(471,525,o), +(506,532,o), +(552,533,c), +(552,669,l), +(448,665,o), +(388,608,o), +(362,519,c), +(438,501,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(381,-167,ls), +(511,-167,o), +(597,-104,o), +(597,9,cs), +(597,109,o), +(520,176,o), +(381,176,cs), +(233,176,ls), +(213,176,o), +(199,180,o), +(199,196,cs), +(199,215,o), +(220,225,o), +(248,238,c), +(167,277,l), +(81,232,o), +(37,190,o), +(37,132,cs), +(37,94,o), +(61,61,o), +(99,47,c), +(99,41,l), +(45,19,o), +(10,-14,o), +(10,-64,cs), +(10,-126,o), +(62,-167,o), +(157,-167,cs) +); +}, +{ +closed = 1; +nodes = ( +(185,-34,o), +(166,-26,o), +(166,-5,cs), +(166,4,o), +(172,14,o), +(184,24,c), +(361,24,ls), +(386,24,o), +(404,15,o), +(404,-5,cs), +(404,-22,o), +(390,-34,o), +(360,-34,cs), +(219,-34,ls) +); +}, +{ +closed = 1; +nodes = ( +(448,216,o), +(543,281,o), +(543,385,cs), +(543,489,o), +(448,554,o), +(299,554,cs), +(150,554,o), +(55,489,o), +(55,385,cs), +(55,281,o), +(150,216,o), +(299,216,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,320,o), +(240,343,o), +(240,385,cs), +(240,423,o), +(259,450,o), +(299,450,cs), +(335,450,o), +(358,429,o), +(358,385,cs), +(358,346,o), +(339,320,o), +(299,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(501,513,o), +(536,522,o), +(586,523,c), +(586,659,l), +(487,655,o), +(429,598,o), +(406,509,c), +(453,481,l) +); +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gbreve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gbreve.glyph new file mode 100644 index 00000000..9050b4b0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gbreve.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = gbreve; +kernLeft = g; +kernRight = g; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (2,-161); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (2,-134); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 287; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gbreve.ss06.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gbreve.ss06.glyph new file mode 100644 index 00000000..75832c82 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gbreve.ss06.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = gbreve.ss06; +kernRight = g.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-2,-162); +ref = brevecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-11,-134); +ref = brevecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gcaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gcaron.glyph new file mode 100644 index 00000000..ac968746 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gcaron.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = gcaron; +kernLeft = g; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (2,-155); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (2,-134); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 487; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gcaron.ss06.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gcaron.ss06.glyph new file mode 100644 index 00000000..c4346efd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gcaron.ss06.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = gcaron.ss06; +kernRight = g.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-2,-156); +ref = caroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-11,-134); +ref = caroncomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gcircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gcircumflex.glyph new file mode 100644 index 00000000..67a96dce --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gcircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = gcircumflex; +kernLeft = g; +kernRight = g; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (2,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (2,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 285; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gcircumflex.ss06.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gcircumflex.ss06.glyph new file mode 100644 index 00000000..c935f2bf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gcircumflex.ss06.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = gcircumflex.ss06; +kernRight = g.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-2,-156); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-11,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gcommaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gcommaaccent.glyph new file mode 100644 index 00000000..d118dc22 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gcommaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = gcommaaccent; +kernLeft = g; +kernRight = g; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,-155); +ref = commaturnedabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (23,-134); +ref = commaturnedabovecomb; +} +); +width = 618; +} +); +unicode = 291; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gcommaaccent.ss06.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gcommaaccent.ss06.glyph new file mode 100644 index 00000000..ed3dada8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gcommaaccent.ss06.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = gcommaaccent.ss06; +kernRight = g.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (26,-156); +ref = commaturnedabovecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (10,-134); +ref = commaturnedabovecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.glyph new file mode 100644 index 00000000..18321b39 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = gdotaccent; +kernLeft = g; +kernRight = g; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (1,-155); +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (-5,-134); +ref = dotaccentcomb; +} +); +width = 618; +} +); +unicode = 289; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.ss01.glyph new file mode 100644 index 00000000..d0271d56 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = gdotaccent.ss01; +kernLeft = g; +kernRight = g; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g; +}, +{ +pos = (1,-155); +ref = dotaccentcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g; +}, +{ +pos = (1,-134); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.ss01.ss06.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.ss01.ss06.glyph new file mode 100644 index 00000000..3fb6acf5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.ss01.ss06.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = gdotaccent.ss01.ss06; +kernRight = g.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-3,-156); +ref = dotaccentcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-12,-134); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.ss06.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.ss06.glyph new file mode 100644 index 00000000..05791104 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gdotaccent.ss06.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = gdotaccent.ss06; +kernRight = g.ss05; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-3,-156); +ref = dotaccentcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = g.ss06; +}, +{ +pos = (-18,-134); +ref = dotaccentcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/germandbls.glyph b/sources/MonaSansMono.glyphspackage/glyphs/germandbls.glyph new file mode 100644 index 00000000..28913438 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/germandbls.glyph @@ -0,0 +1,126 @@ +{ +glyphname = germandbls; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(162,516,ls), +(162,634,o), +(222,704,o), +(330,704,cs), +(431,704,o), +(493,648,o), +(493,555,cs), +(493,467,o), +(438,411,o), +(338,411,cs), +(293,411,l), +(293,378,l), +(369,378,ls), +(477,378,o), +(539,312,o), +(539,214,cs), +(539,94,o), +(467,34,o), +(340,34,cs), +(252,34,l), +(252,0,l), +(343,0,ls), +(494,0,o), +(576,83,o), +(576,213,cs), +(576,314,o), +(510,388,o), +(422,399,c), +(422,404,l), +(495,429,o), +(528,491,o), +(528,560,cs), +(528,667,o), +(454,739,o), +(330,739,cs), +(214,739,o), +(125,666,o), +(125,521,cs), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(138,483,l), +(138,517,l), +(19,517,l), +(19,483,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(265,0,l), +(265,492,ls), +(265,545,o), +(296,572,o), +(344,572,cs), +(391,572,o), +(415,542,o), +(415,505,cs), +(415,465,o), +(384,435,o), +(334,435,cs), +(318,435,l), +(318,316,l), +(356,316,ls), +(413,316,o), +(444,294,o), +(444,238,cs), +(444,180,o), +(412,152,o), +(354,152,cs), +(318,152,l), +(318,0,l), +(375,0,ls), +(554,0,o), +(639,89,o), +(639,216,cs), +(639,315,o), +(578,380,o), +(501,391,c), +(501,399,l), +(555,416,o), +(590,473,o), +(590,541,cs), +(590,659,o), +(496,739,o), +(346,739,cs), +(196,739,o), +(74,666,o), +(74,467,cs), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(198,394,l), +(198,544,l), +(-23,544,l), +(-23,394,l) +); +} +); +width = 619; +} +); +unicode = 223; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/grave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/grave.glyph new file mode 100644 index 00000000..6245d8df --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/grave.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = grave; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = gravecomb; +} +); +width = 619; +} +); +unicode = 96; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/gravecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/gravecomb.glyph new file mode 100644 index 00000000..f6825a98 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/gravecomb.glyph @@ -0,0 +1,56 @@ +{ +glyphname = gravecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (349,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(364,746,l), +(296,882,l), +(255,882,l), +(333,746,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (358,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(430,735,l), +(377,884,l), +(189,884,l), +(286,735,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 768; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/greater.glyph b/sources/MonaSansMono.glyphspackage/glyphs/greater.glyph new file mode 100644 index 00000000..e8b24590 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/greater.glyph @@ -0,0 +1,81 @@ +{ +glyphname = greater; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(552,339,l), +(552,383,l), +(71,589,l), +(71,553,l), +(519,363,l), +(519,359,l), +(71,169,l), +(71,133,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-30, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +-30, +-30 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(570,252,l), +(570,466,l), +(64,644,l), +(64,453,l), +(378,366,l), +(378,352,l), +(64,268,l), +(64,77,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 62; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/greaterequal.glyph b/sources/MonaSansMono.glyphspackage/glyphs/greaterequal.glyph new file mode 100644 index 00000000..b48c864b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/greaterequal.glyph @@ -0,0 +1,98 @@ +{ +glyphname = greaterequal; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(553,339,l), +(553,383,l), +(72,589,l), +(72,553,l), +(520,363,l), +(520,359,l), +(72,169,l), +(72,133,l) +); +}, +{ +closed = 1; +nodes = ( +(553,0,l), +(553,32,l), +(72,32,l), +(72,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(568,307,l), +(568,516,l), +(60,659,l), +(60,489,l), +(377,416,l), +(377,407,l), +(60,328,l), +(60,158,l) +); +}, +{ +closed = 1; +nodes = ( +(568,0,l), +(568,132,l), +(60,132,l), +(60,0,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 8805; +userData = { +com.schriftgestaltung.Glyphs.lastChange = "2017-05-03 17:00:02 +0000"; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/guillemetleft.glyph b/sources/MonaSansMono.glyphspackage/glyphs/guillemetleft.glyph new file mode 100644 index 00000000..57ba6557 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/guillemetleft.glyph @@ -0,0 +1,70 @@ +{ +glyphname = guillemetleft; +kernLeft = guillemetleft; +kernRight = guillemetleft; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(313,80,l), +(200,299,l), +(313,517,l), +(280,517,l), +(160,299,l), +(280,80,l) +); +}, +{ +closed = 1; +nodes = ( +(458,80,l), +(345,299,l), +(458,517,l), +(425,517,l), +(305,299,l), +(425,80,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(326,64,l), +(219,305,l), +(326,544,l), +(162,544,l), +(33,305,l), +(162,64,l) +); +}, +{ +closed = 1; +nodes = ( +(585,64,l), +(478,305,l), +(585,544,l), +(421,544,l), +(292,305,l), +(421,64,l) +); +} +); +width = 619; +} +); +unicode = 171; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/guillemetright.glyph b/sources/MonaSansMono.glyphspackage/glyphs/guillemetright.glyph new file mode 100644 index 00000000..8432e7d8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/guillemetright.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = guillemetright; +kernLeft = guillemetright; +kernRight = guillemetright; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (618,597); +ref = guillemetleft; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (619,608); +ref = guillemetleft; +} +); +width = 619; +} +); +metricLeft = "=|guillemetleft"; +metricRight = "=|guillemetleft"; +unicode = 187; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/guilsinglleft.glyph b/sources/MonaSansMono.glyphspackage/glyphs/guilsinglleft.glyph new file mode 100644 index 00000000..be3c8c9e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/guilsinglleft.glyph @@ -0,0 +1,49 @@ +{ +glyphname = guilsinglleft; +kernLeft = guillemetleft; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(386,80,l), +(273,299,l), +(386,517,l), +(353,517,l), +(233,299,l), +(353,80,l) +); +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(455,64,l), +(348,305,l), +(455,544,l), +(291,544,l), +(162,305,l), +(291,64,l) +); +} +); +width = 618; +} +); +metricLeft = guillemetleft; +metricRight = guillemetleft; +unicode = 8249; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/guilsinglright.glyph b/sources/MonaSansMono.glyphspackage/glyphs/guilsinglright.glyph new file mode 100644 index 00000000..78e23085 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/guilsinglright.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = guilsinglright; +kernLeft = guillemetright; +kernRight = guillemetright; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (619,597); +ref = guilsinglleft; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (618,608); +ref = guilsinglleft; +} +); +width = 618; +} +); +metricLeft = guillemetright; +metricRight = guillemetright; +unicode = 8250; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/h.glyph b/sources/MonaSansMono.glyphspackage/glyphs/h.glyph new file mode 100644 index 00000000..31737e93 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/h.glyph @@ -0,0 +1,202 @@ +{ +glyphname = h; +kernLeft = l; +kernRight = n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = center; +pos = (169,631); +}, +{ +name = top; +pos = (131,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(149,274,ls), +(149,401,o), +(222,491,o), +(331,491,cs), +(430,491,o), +(479,430,o), +(479,294,cs), +(479,0,l), +(516,0,l), +(516,300,ls), +(516,462,o), +(440,525,o), +(337,525,cs), +(261,525,o), +(191,482,o), +(159,400,c), +(149,400,l), +(149,729,l), +(113,729,l), +(113,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = center; +pos = (174,631); +}, +{ +name = top; +pos = (146,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(230,291,ls), +(230,355,o), +(262,400,o), +(326,400,cs), +(380,400,o), +(410,369,o), +(410,302,cs), +(410,0,l), +(602,0,l), +(602,322,ls), +(602,458,o), +(550,554,o), +(416,554,cs), +(336,554,o), +(273,519,o), +(240,447,c), +(230,447,l), +(230,750,l), +(39,750,l), +(39,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(242,0,l), +(242,308,ls), +(242,351,o), +(265,400,o), +(317,400,cs), +(367,400,o), +(385,362,o), +(385,291,cs), +(385,0,l), +(576,0,l), +(576,333,ls), +(576,494,o), +(498,554,o), +(398,554,cs), +(332,554,o), +(277,522,o), +(253,455,c), +(238,455,l), +(242,729,l), +(50,729,l), +(50,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +}; +width = 618; +} +); +metricLeft = l; +metricRight = n; +unicode = 104; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/hbar.glyph b/sources/MonaSansMono.glyphspackage/glyphs/hbar.glyph new file mode 100644 index 00000000..62f7e9ef --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/hbar.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = hbar; +kernRight = n; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = h; +}, +{ +pos = (-140,324); +ref = strokeshortcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = h; +}, +{ +pos = (-136,325); +ref = strokeshortcomb; +} +); +width = 618; +} +); +unicode = 295; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/hcircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/hcircumflex.glyph new file mode 100644 index 00000000..7fc23a7c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/hcircumflex.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = hcircumflex; +kernRight = n; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = h; +}, +{ +pos = (-178,57); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = h; +}, +{ +pos = (-163,51); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 293; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/hookabovecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/hookabovecomb.glyph new file mode 100644 index 00000000..09eb888d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/hookabovecomb.glyph @@ -0,0 +1,140 @@ +{ +glyphname = hookabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (309,672); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(343,763,o), +(368,800,o), +(368,840,cs), +(368,883,o), +(336,912,o), +(289,912,cs), +(273,912,o), +(257,910,o), +(241,904,c), +(242,875,l), +(255,881,o), +(268,883,o), +(283,883,cs), +(316,883,o), +(334,864,o), +(334,837,cs), +(334,804,o), +(311,780,o), +(264,753,c), +(282,729,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(352,763,o), +(378,800,o), +(378,840,cs), +(378,883,o), +(343,912,o), +(292,912,cs), +(275,912,o), +(258,910,o), +(241,904,c), +(242,875,l), +(256,881,o), +(270,883,o), +(287,883,cs), +(324,883,o), +(344,864,o), +(344,837,cs), +(344,804,o), +(318,780,o), +(266,753,c), +(285,729,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (302,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(377,753,o), +(441,798,o), +(441,877,cs), +(441,942,o), +(390,985,o), +(280,985,cs), +(245,985,o), +(209,981,o), +(179,973,c), +(179,881,l), +(195,885,o), +(215,888,o), +(230,888,cs), +(250,888,o), +(270,882,o), +(270,861,cs), +(270,842,o), +(258,828,o), +(204,811,c), +(246,721,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(375,754,o), +(439,798,o), +(439,877,cs), +(439,941,o), +(387,984,o), +(279,984,cs), +(244,984,o), +(209,979,o), +(179,972,c), +(179,881,l), +(195,885,o), +(214,888,o), +(230,888,cs), +(251,888,o), +(271,882,o), +(271,861,cs), +(271,842,o), +(258,827,o), +(204,810,c), +(245,721,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 777; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/horncomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/horncomb.glyph new file mode 100644 index 00000000..05a62258 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/horncomb.glyph @@ -0,0 +1,109 @@ +{ +glyphname = horncomb; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (244,509); +} +); +background = { +anchors = ( +{ +name = _topright; +pos = (214,522); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(322,489,o), +(369,551,o), +(347,632,c), +(311,632,l), +(327,561,o), +(306,522,o), +(214,522,c), +(214,492,l) +); +} +); +}; +guides = ( +{ +pos = (288,602); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(339,480,o), +(384,533,o), +(374,637,c), +(341,637,l), +(350,549,o), +(320,509,o), +(244,509,c), +(244,480,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _topright; +pos = (185,590); +} +); +background = { +anchors = ( +{ +name = _topright; +pos = (185,541); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(358,427,o), +(420,481,o), +(420,607,c), +(272,607,l), +(272,559,o), +(261,543,o), +(185,541,c), +(185,427,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(364,472,o), +(451,540,o), +(430,676,c), +(282,676,l), +(292,609,o), +(263,583,o), +(185,590,c), +(185,486,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 795; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/hungarumlaut.glyph b/sources/MonaSansMono.glyphspackage/glyphs/hungarumlaut.glyph new file mode 100644 index 00000000..03231e2e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/hungarumlaut.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = hungarumlaut; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = hungarumlautcomb; +} +); +width = 619; +} +); +unicode = 733; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/hungarumlautcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/hungarumlautcomb.glyph new file mode 100644 index 00000000..b9ee087f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/hungarumlautcomb.glyph @@ -0,0 +1,74 @@ +{ +glyphname = hungarumlautcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (269,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(217,746,l), +(295,882,l), +(254,882,l), +(188,746,l) +); +}, +{ +closed = 1; +nodes = ( +(352,746,l), +(430,882,l), +(389,882,l), +(321,746,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (236,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(200,735,l), +(296,884,l), +(118,884,l), +(63,735,l) +); +}, +{ +closed = 1; +nodes = ( +(424,735,l), +(556,884,l), +(366,884,l), +(272,735,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 779; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/hyphen.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/hyphen.case.glyph new file mode 100644 index 00000000..d9237415 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/hyphen.case.glyph @@ -0,0 +1,36 @@ +{ +color = 6; +glyphname = hyphen.case; +kernLeft = hyphen.case; +kernRight = hyphen.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,106); +ref = hyphen; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,93); +ref = hyphen; +} +); +width = 618; +} +); +metricLeft = hyphen; +metricRight = hyphen; +userData = { +KernOnSpecialSpacing = { +L = hyphen; +R = hyphen; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/hyphen.glyph b/sources/MonaSansMono.glyphspackage/glyphs/hyphen.glyph new file mode 100644 index 00000000..668415c1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/hyphen.glyph @@ -0,0 +1,63 @@ +{ +glyphname = hyphen; +kernLeft = hyphen; +kernRight = hyphen; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(533,242,l), +(533,275,l), +(85,275,l), +(85,242,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(546,192,l), +(546,352,l), +(72,352,l), +(72,192,l) +); +} +); +width = 618; +} +); +unicode = 45; +userData = { +KernOnName = hyphen; +KernOnSpecialSpacing = { +L = hyphen; +R = hyphen; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/i.glyph b/sources/MonaSansMono.glyphspackage/glyphs/i.glyph new file mode 100644 index 00000000..964ad120 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/i.glyph @@ -0,0 +1,106 @@ +{ +color = 6; +glyphname = i; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-2,-155); +ref = dotaccent; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-6,-134); +ref = dotaccent; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 618; +} +); +unicode = 105; +userData = { +KernOnName = i; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/i.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/i.ss01.glyph new file mode 100644 index 00000000..35c87323 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/i.ss01.glyph @@ -0,0 +1,104 @@ +{ +color = 6; +glyphname = i.ss01; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-2,-155); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (0,-134); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = l; +}; +width = 618; +} +); +metricLeft = l; +metricRight = l; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/iacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/iacute.glyph new file mode 100644 index 00000000..ca11c27c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/iacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = iacute; +kernLeft = i; +kernRight = jacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (38,-155); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (49,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 237; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ibreve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ibreve.glyph new file mode 100644 index 00000000..2eb3eaaf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ibreve.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = ibreve; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-1,-161); +ref = brevecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (1,-134); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 301; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/icircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/icircumflex.glyph new file mode 100644 index 00000000..1f67ddd6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/icircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = icircumflex; +kernLeft = icircumflex; +kernRight = icircumflex; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-1,-155); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 238; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/idieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/idieresis.glyph new file mode 100644 index 00000000..35e8a4e5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/idieresis.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = idieresis; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-1,-155); +ref = dieresiscomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (1,-134); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 239; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/idieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/idieresis.ss01.glyph new file mode 100644 index 00000000..02c47597 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/idieresis.ss01.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = idieresis.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-2,-155); +ref = dieresiscomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (1,-134); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/idotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/idotaccent.glyph new file mode 100644 index 00000000..dcff1fbf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/idotaccent.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = idotaccent; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-2,-155); +ref = dotaccentcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-6,-134); +ref = dotaccentcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/idotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/idotaccent.ss01.glyph new file mode 100644 index 00000000..6074cbd3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/idotaccent.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = idotaccent.ss01; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-2,-155); +ref = dotaccentcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (0,-134); +ref = dotaccentcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.dotless.glyph b/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.dotless.glyph new file mode 100644 index 00000000..3a7ea6b9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.dotless.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = idotbelow.dotless; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.dotless.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.dotless.ss01.glyph new file mode 100644 index 00000000..a324a9a8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.dotless.ss01.glyph @@ -0,0 +1,30 @@ +{ +color = 6; +glyphname = idotbelow.dotless.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.glyph new file mode 100644 index 00000000..c4238528 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = idotbelow; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = i; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = i; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 618; +} +); +unicode = 7883; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.ss01.glyph new file mode 100644 index 00000000..cb1d8496 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/idotbelow.ss01.glyph @@ -0,0 +1,30 @@ +{ +color = 6; +glyphname = idotbelow.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = i.ss01; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = i.ss01; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/idotless.glyph b/sources/MonaSansMono.glyphspackage/glyphs/idotless.glyph new file mode 100644 index 00000000..313cbe9c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/idotless.glyph @@ -0,0 +1,104 @@ +{ +glyphname = idotless; +kernLeft = n; +kernRight = a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = ogonek; +pos = (328,0); +}, +{ +name = top; +pos = (308,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,0,l), +(328,517,l), +(291,517,l), +(291,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,0,l), +(527,32,l), +(91,32,l), +(91,0,l) +); +}, +{ +closed = 1; +nodes = ( +(294,485,l), +(294,517,l), +(91,517,l), +(91,485,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = ogonek; +pos = (405,0); +}, +{ +name = top; +pos = (310,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(405,0,l), +(405,544,l), +(214,544,l), +(214,0,l) +); +}, +{ +closed = 1; +nodes = ( +(551,0,l), +(551,143,l), +(65,143,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(221,401,l), +(221,544,l), +(65,544,l), +(65,401,l) +); +} +); +width = 618; +} +); +metricLeft = l; +metricRight = l; +unicode = 305; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/igrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/igrave.glyph new file mode 100644 index 00000000..1392435b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/igrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = igrave; +kernLeft = igrave; +kernRight = i; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-41,-155); +ref = gravecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-48,-134); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 236; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ihookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ihookabove.glyph new file mode 100644 index 00000000..3170a809 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ihookabove.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = ihookabove; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-1,-155); +ref = hookabovecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (8,-134); +ref = hookabovecomb; +} +); +width = 618; +} +); +unicode = 7881; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ij.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ij.glyph new file mode 100644 index 00000000..57217aa5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ij.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ij; +kernRight = i; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = i; +}, +{ +pos = (619,0); +ref = j; +} +); +width = 1238; +}, +{ +layerId = m020; +shapes = ( +{ +ref = i; +}, +{ +pos = (618,0); +ref = j; +} +); +width = 1237; +} +); +unicode = 307; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/imacron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/imacron.glyph new file mode 100644 index 00000000..fbc718a4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/imacron.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = imacron; +kernLeft = imacron; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-2,-155); +ref = macroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (0,-134); +ref = macroncomb; +} +); +width = 618; +} +); +unicode = 299; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/infinity.glyph b/sources/MonaSansMono.glyphspackage/glyphs/infinity.glyph new file mode 100644 index 00000000..8aae62ea --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/infinity.glyph @@ -0,0 +1,204 @@ +{ +glyphname = infinity; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(198,167,o), +(258,248,o), +(310,337,c), +(365,242,o), +(423,167,o), +(526,167,cs), +(638,167,o), +(702,262,o), +(702,364,cs), +(702,469,o), +(638,563,o), +(526,563,cs), +(420,563,o), +(362,481,o), +(310,394,c), +(258,481,o), +(200,563,o), +(95,563,cs), +(-17,563,o), +(-84,471,o), +(-84,364,cs), +(-84,253,o), +(-17,167,o), +(96,167,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,202,o), +(-48,266,o), +(-48,364,cs), +(-48,458,o), +(9,527,o), +(94,527,cs), +(172,527,o), +(220,473,o), +(288,365,c), +(220,253,o), +(168,202,o), +(95,202,cs) +); +}, +{ +closed = 1; +nodes = ( +(446,202,o), +(400,256,o), +(331,365,c), +(399,472,o), +(446,527,o), +(525,527,cs), +(610,527,o), +(668,457,o), +(668,364,cs), +(668,273,o), +(610,202,o), +(525,202,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(196,121,o), +(267,166,o), +(308,234,c), +(351,166,o), +(419,121,o), +(508,121,cs), +(637,121,o), +(742,216,o), +(742,362,cs), +(742,504,o), +(639,608,o), +(507,608,cs), +(418,608,o), +(349,555,o), +(308,490,c), +(268,555,o), +(198,608,o), +(110,608,cs), +(-22,608,o), +(-124,504,o), +(-124,362,cs), +(-124,216,o), +(-20,121,o), +(109,121,cs) +); +}, +{ +closed = 1; +nodes = ( +(79,297,o), +(55,329,o), +(55,366,cs), +(55,402,o), +(80,433,o), +(122,433,cs), +(167,433,o), +(203,397,o), +(223,366,c), +(202,334,o), +(167,297,o), +(122,297,cs) +); +}, +{ +closed = 1; +nodes = ( +(451,297,o), +(416,332,o), +(395,366,c), +(414,397,o), +(450,433,o), +(494,433,cs), +(536,433,o), +(561,402,o), +(561,366,cs), +(561,329,o), +(536,297,o), +(494,297,cs) +); +} +); +width = 618; +} +); +unicode = 8734; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/integral.glyph b/sources/MonaSansMono.glyphspackage/glyphs/integral.glyph new file mode 100644 index 00000000..60647183 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/integral.glyph @@ -0,0 +1,105 @@ +{ +glyphname = integral; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(280,-151,ls), +(320,-151,o), +(328,-126,o), +(328,-99,cs), +(328,693,l), +(477,693,l), +(477,729,l), +(338,729,ls), +(307,729,o), +(290,707,o), +(290,674,cs), +(290,-116,l), +(142,-116,l), +(142,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(246,-151,ls), +(341,-151,o), +(405,-94,o), +(405,7,cs), +(405,577,l), +(539,577,l), +(539,729,l), +(372,729,ls), +(277,729,o), +(214,672,o), +(214,570,cs), +(214,0,l), +(80,0,l), +(80,-151,l) +); +} +); +width = 619; +} +); +unicode = 8747; +userData = { +com.schriftgestaltung.Glyphs.lastChange = "2017-05-02 09:06:55 +0000"; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/iogonek.dotless.glyph b/sources/MonaSansMono.glyphspackage/glyphs/iogonek.dotless.glyph new file mode 100644 index 00000000..57572899 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/iogonek.dotless.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = iogonek.dotless; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-34,0); +ref = ogonekcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-20,0); +ref = ogonekcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/iogonek.glyph b/sources/MonaSansMono.glyphspackage/glyphs/iogonek.glyph new file mode 100644 index 00000000..182af48f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/iogonek.glyph @@ -0,0 +1,42 @@ +{ +color = 6; +glyphname = iogonek; +kernRight = i; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-2,-155); +ref = dotaccentcomb; +}, +{ +pos = (-34,0); +ref = ogonekcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-6,-134); +ref = dotaccentcomb; +}, +{ +pos = (-20,0); +ref = ogonekcomb; +} +); +width = 618; +} +); +unicode = 303; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/itilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/itilde.glyph new file mode 100644 index 00000000..e0aa1caa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/itilde.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = itilde; +kernLeft = itilde; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (1,-155); +ref = tildecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (0,-134); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 297; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/j.glyph b/sources/MonaSansMono.glyphspackage/glyphs/j.glyph new file mode 100644 index 00000000..b10c2869 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/j.glyph @@ -0,0 +1,173 @@ +{ +color = 6; +glyphname = j; +kernLeft = j; +kernRight = i; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(899,-177,o), +(940,-135,o), +(940,-60,cs), +(940,517,l), +(903,517,l), +(903,-51,ls), +(903,-116,o), +(876,-143,o), +(819,-143,cs), +(803,-143,o), +(784,-140,o), +(773,-135,c), +(773,-169,l), +(784,-174,o), +(802,-177,o), +(820,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(940,616,l), +(940,729,l), +(903,729,l), +(903,616,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (72,-155); +ref = dotaccent; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-177,o), +(542,-123,o), +(542,7,cs), +(542,544,l), +(350,544,l), +(350,17,ls), +(350,-24,o), +(339,-46,o), +(301,-46,cs), +(280,-46,o), +(269,-43,o), +(261,-39,c), +(261,-163,l), +(287,-173,o), +(321,-177,o), +(357,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(542,601,l), +(542,729,l), +(350,729,l), +(350,601,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (43,-134); +ref = dotaccent; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +}; +width = 619; +} +); +metricRight = i; +unicode = 106; +userData = { +KernOnName = j; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/j.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/j.ss01.glyph new file mode 100644 index 00000000..4006d63c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/j.ss01.glyph @@ -0,0 +1,169 @@ +{ +color = 6; +glyphname = j.ss01; +kernLeft = j; +kernRight = i; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(403,-177,o), +(444,-135,o), +(444,-60,cs), +(444,517,l), +(407,517,l), +(407,-51,ls), +(407,-116,o), +(380,-143,o), +(323,-143,cs), +(307,-143,o), +(288,-140,o), +(277,-135,c), +(277,-169,l), +(288,-174,o), +(306,-177,o), +(324,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(444,616,l), +(444,729,l), +(407,729,l), +(407,616,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (72,-155); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(460,-177,o), +(536,-123,o), +(536,7,cs), +(536,544,l), +(344,544,l), +(344,17,ls), +(344,-24,o), +(333,-46,o), +(295,-46,cs), +(274,-46,o), +(263,-43,o), +(255,-39,c), +(255,-163,l), +(281,-173,o), +(315,-177,o), +(351,-177,cs) +); +}, +{ +closed = 1; +nodes = ( +(536,601,l), +(536,729,l), +(344,729,l), +(344,601,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (49,-134); +ref = dotaccentcomb.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = i; +}; +width = 619; +} +); +metricRight = i; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/jacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/jacute.glyph new file mode 100644 index 00000000..a50d1670 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/jacute.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = jacute; +kernRight = jacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (112,-155); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (98,-134); +ref = acutecomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/jcircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/jcircumflex.glyph new file mode 100644 index 00000000..50850fc5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/jcircumflex.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = jcircumflex; +kernRight = icircumflex; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (73,-155); +ref = circumflexcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (50,-134); +ref = circumflexcomb; +} +); +width = 619; +} +); +unicode = 309; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/jdotless.glyph b/sources/MonaSansMono.glyphspackage/glyphs/jdotless.glyph new file mode 100644 index 00000000..86bed299 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/jdotless.glyph @@ -0,0 +1,162 @@ +{ +glyphname = jdotless; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (426,-250); +}, +{ +name = top; +pos = (382,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-167,ls), +(372,-167,o), +(400,-128,o), +(400,-70,cs), +(400,517,l), +(363,517,l), +(363,-60,ls), +(363,-113,o), +(345,-133,o), +(301,-133,cs), +(132,-133,l), +(132,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(366,485,l), +(366,517,l), +(137,517,l), +(137,485,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = j; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = j; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (359,-250); +}, +{ +name = top; +pos = (359,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(280,-167,ls), +(415,-167,o), +(465,-97,o), +(465,25,cs), +(465,544,l), +(274,544,l), +(274,21,ls), +(274,-19,o), +(259,-34,o), +(223,-34,cs), +(74,-34,l), +(74,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(291,401,l), +(291,544,l), +(75,544,l), +(75,401,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = j; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = j; +}; +width = 619; +} +); +metricLeft = "=l@100"; +metricRight = l; +unicode = 567; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/k.glyph b/sources/MonaSansMono.glyphspackage/glyphs/k.glyph new file mode 100644 index 00000000..da5993ab --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/k.glyph @@ -0,0 +1,147 @@ +{ +glyphname = k; +kernLeft = l; +kernRight = k; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (317,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(147,0,l), +(147,177,l), +(297,296,l), +(385,187,l), +(537,0,l), +(584,0,l), +(325,320,l), +(572,517,l), +(515,517,l), +(243,295,l), +(147,218,l), +(147,729,l), +(112,729,l), +(112,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = top; +pos = (316,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(231,0,l), +(231,144,l), +(286,199,l), +(318,141,l), +(404,0,l), +(629,0,l), +(420,326,l), +(628,544,l), +(394,544,l), +(273,403,l), +(231,351,l), +(231,729,l), +(37,729,l), +(37,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = l; +}; +width = 619; +} +); +metricLeft = l; +unicode = 107; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/kcommaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/kcommaaccent.glyph new file mode 100644 index 00000000..adad6c4a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/kcommaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = kcommaaccent; +kernLeft = l; +kernRight = k; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = k; +}, +{ +pos = (-17,0); +ref = commaaccentcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = k; +}, +{ +pos = (-12,0); +ref = commaaccentcomb; +} +); +width = 619; +} +); +unicode = 311; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/l.glyph b/sources/MonaSansMono.glyphspackage/glyphs/l.glyph new file mode 100644 index 00000000..4dd7a727 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/l.glyph @@ -0,0 +1,162 @@ +{ +glyphname = l; +kernLeft = l; +kernRight = l; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (310,365); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topright; +pos = (328,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,0,l), +(328,729,l), +(291,729,l), +(291,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,0,l), +(527,32,l), +(101,32,l), +(101,0,l) +); +}, +{ +closed = 1; +nodes = ( +(294,697,l), +(294,729,l), +(101,729,l), +(101,697,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (310,365); +}, +{ +name = top; +pos = (310,729); +}, +{ +name = topright; +pos = (405,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(405,0,l), +(405,729,l), +(214,729,l), +(214,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(556,143,l), +(60,143,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(231,586,l), +(231,729,l), +(60,729,l), +(60,586,l) +); +} +); +width = 618; +} +); +metricRight = "=|"; +unicode = 108; +userData = { +KernOnName = l; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/l.ss03.glyph b/sources/MonaSansMono.glyphspackage/glyphs/l.ss03.glyph new file mode 100644 index 00000000..b97cfedf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/l.ss03.glyph @@ -0,0 +1,179 @@ +{ +glyphname = l.ss03; +kernLeft = l.ss02; +kernRight = l.ss02; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = center; +pos = (296,365); +}, +{ +name = top; +pos = (296,729); +}, +{ +name = topright; +pos = (314,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(414,0,l), +(414,36,l), +(376,36,ls), +(342,36,o), +(325,48,o), +(325,89,cs), +(325,729,l), +(288,729,l), +(288,80,ls), +(288,24,o), +(319,0,o), +(368,0,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(401,0,l), +(401,36,l), +(359,36,ls), +(330,36,o), +(314,47,o), +(314,85,cs), +(314,729,l), +(277,729,l), +(277,76,ls), +(277,22,o), +(304,0,o), +(352,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = center; +pos = (294,365); +}, +{ +name = top; +pos = (294,729); +}, +{ +name = topright; +pos = (389,729); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(459,0,l), +(459,153,l), +(429,153,ls), +(408,153,o), +(394,160,o), +(394,188,cs), +(394,729,l), +(203,729,l), +(203,152,ls), +(203,61,o), +(233,0,o), +(360,0,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(452,0,l), +(452,148,l), +(422,148,ls), +(403,148,o), +(389,154,o), +(389,181,cs), +(389,729,l), +(198,729,l), +(198,143,ls), +(198,51,o), +(239,0,o), +(345,0,cs) +); +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/l.ss04.glyph b/sources/MonaSansMono.glyphspackage/glyphs/l.ss04.glyph new file mode 100644 index 00000000..238695d6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/l.ss04.glyph @@ -0,0 +1,126 @@ +{ +glyphname = l.ss04; +kernLeft = l.ss03; +kernRight = l; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (420,0); +}, +{ +name = center; +pos = (420,365); +}, +{ +name = top; +pos = (420,729); +}, +{ +name = topright; +pos = (439,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(439,0,l), +(439,729,l), +(158,729,l), +(158,697,l), +(401,697,l), +(401,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (390,0); +}, +{ +name = center; +pos = (390,365); +}, +{ +name = top; +pos = (390,729); +}, +{ +name = topright; +pos = (485,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(485,0,l), +(485,729,l), +(127,729,l), +(127,576,l), +(294,576,l), +(294,0,l) +); +} +); +width = 619; +} +); +metricRight = l; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lacute.glyph new file mode 100644 index 00000000..623e0658 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lacute.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = lacute; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +pos = (40,57); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +pos = (49,51); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 314; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lacute.ss03.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lacute.ss03.glyph new file mode 100644 index 00000000..73de391e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lacute.ss03.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = lacute.ss03; +kernRight = l.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (26,57); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (33,51); +ref = acutecomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lacute.ss04.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lacute.ss04.glyph new file mode 100644 index 00000000..2d3a782a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lacute.ss04.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = lacute.ss04; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (150,57); +ref = acutecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (129,51); +ref = acutecomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lcaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lcaron.glyph new file mode 100644 index 00000000..38fc25aa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lcaron.glyph @@ -0,0 +1,38 @@ +{ +color = 6; +glyphname = lcaron; +kernLeft = l; +kernRight = lcaron; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +pos = (129,0); +ref = caroncomb.alt; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +pos = (216,0); +ref = caroncomb.alt; +} +); +width = 618; +} +); +unicode = 318; +userData = { +KernOnName = lcaron; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lcaron.ss03.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lcaron.ss03.glyph new file mode 100644 index 00000000..343f018e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lcaron.ss03.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = lcaron.ss03; +kernLeft = l.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (115,0); +ref = caroncomb.alt; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (200,0); +ref = caroncomb.alt; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lcaron.ss04.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lcaron.ss04.glyph new file mode 100644 index 00000000..94028818 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lcaron.ss04.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = lcaron.ss04; +kernLeft = l.ss03; +kernRight = lcaron; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (240,0); +ref = caroncomb.alt; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (296,0); +ref = caroncomb.alt; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lcommaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lcommaaccent.glyph new file mode 100644 index 00000000..d1b6801b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lcommaaccent.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = lcommaaccent; +kernRight = l; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +pos = (-24,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +pos = (-18,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 316; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lcommaaccent.ss03.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lcommaaccent.ss03.glyph new file mode 100644 index 00000000..16f7bb2f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lcommaaccent.ss03.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = lcommaaccent.ss03; +kernRight = l.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-38,0); +ref = commaaccentcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-34,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lcommaaccent.ss04.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lcommaaccent.ss04.glyph new file mode 100644 index 00000000..eb976211 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lcommaaccent.ss04.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = lcommaaccent.ss04; +kernRight = l; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (86,0); +ref = commaaccentcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +pos = (62,0); +ref = commaaccentcomb; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ldot.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ldot.glyph new file mode 100644 index 00000000..b9ed7ba6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ldot.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = ldot; +kernLeft = l; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (214,27); +ref = periodcentered.loclCAT; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (234,27); +ref = periodcentered.loclCAT; +} +); +width = 618; +} +); +unicode = 320; +userData = { +KernOnSpecialSpacing = { +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss01.glyph new file mode 100644 index 00000000..f5fe4be1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss01.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ldot.ss01; +kernLeft = l; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (207,18); +ref = periodcentered.loclCAT.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (207,20); +ref = periodcentered.loclCAT.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss01.ss03.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss01.ss03.glyph new file mode 100644 index 00000000..bc0b8cfd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss01.ss03.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ldot.ss01.ss03; +kernLeft = l.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (193,18); +ref = periodcentered.loclCAT.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (191,20); +ref = periodcentered.loclCAT.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss01.ss04.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss01.ss04.glyph new file mode 100644 index 00000000..aa789aaa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss01.ss04.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ldot.ss01.ss04; +kernLeft = l.ss03; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (317,18); +ref = periodcentered.loclCAT.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (287,20); +ref = periodcentered.loclCAT.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss03.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss03.glyph new file mode 100644 index 00000000..2a71f325 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss03.glyph @@ -0,0 +1,39 @@ +{ +glyphname = ldot.ss03; +kernLeft = l.ss02; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (200,27); +ref = periodcentered.loclCAT; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +alignment = 1; +pos = (218,27); +ref = periodcentered.loclCAT; +} +); +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss04.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss04.glyph new file mode 100644 index 00000000..cf182d14 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ldot.ss04.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ldot.ss04; +kernLeft = l.ss03; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (324,27); +ref = periodcentered.loclCAT; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss04; +}, +{ +alignment = 1; +pos = (314,27); +ref = periodcentered.loclCAT; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/leftA_rrow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/leftA_rrow.glyph new file mode 100644 index 00000000..3ea78b1e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/leftA_rrow.glyph @@ -0,0 +1,52 @@ +{ +glyphname = leftArrow; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(93,383,l), +(215,548,l), +(173,548,l), +(37,365,l), +(173,182,l), +(215,182,l), +(93,347,l), +(576,347,l), +(576,383,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(234,447,l), +(330,595,l), +(164,595,l), +(15,365,l), +(164,135,l), +(330,135,l), +(234,283,l), +(596,283,l), +(596,447,l) +); +} +); +width = 618; +} +); +unicode = 8592; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/leftR_ightA_rrow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/leftR_ightA_rrow.glyph new file mode 100644 index 00000000..a02dd4e0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/leftR_ightA_rrow.glyph @@ -0,0 +1,70 @@ +{ +glyphname = leftRightArrow; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(153,182,l), +(31,347,l), +(588,347,l), +(466,182,l), +(508,182,l), +(644,365,l), +(508,548,l), +(466,548,l), +(588,383,l), +(31,383,l), +(153,548,l), +(111,548,l), +(-25,365,l), +(111,182,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(229,135,l), +(133,283,l), +(486,283,l), +(390,135,l), +(556,135,l), +(705,365,l), +(556,595,l), +(390,595,l), +(486,447,l), +(133,447,l), +(229,595,l), +(63,595,l), +(-86,365,l), +(63,135,l) +); +} +); +width = 619; +} +); +unicode = 8596; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/less.glyph b/sources/MonaSansMono.glyphspackage/glyphs/less.glyph new file mode 100644 index 00000000..ac6d19e6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/less.glyph @@ -0,0 +1,69 @@ +{ +color = 6; +glyphname = less; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (618,722); +ref = greater; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-1, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +-1, +-1 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (618,721); +ref = greater; +} +); +width = 618; +} +); +metricLeft = "=|greater"; +metricRight = "=|greater"; +unicode = 60; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lessequal.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lessequal.glyph new file mode 100644 index 00000000..73aa589a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lessequal.glyph @@ -0,0 +1,87 @@ +{ +glyphname = lessequal; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(546,169,l), +(98,359,l), +(98,363,l), +(546,553,l), +(546,589,l), +(65,383,l), +(65,339,l), +(546,133,l) +); +}, +{ +closed = 1; +nodes = ( +(546,0,l), +(546,32,l), +(65,32,l), +(65,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-13, +-13 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-13, +-13 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(558,328,l), +(241,407,l), +(241,416,l), +(558,489,l), +(558,659,l), +(50,516,l), +(50,307,l), +(558,158,l) +); +}, +{ +closed = 1; +nodes = ( +(558,0,l), +(558,132,l), +(50,132,l), +(50,0,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 8804; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/liraT_urkish.glyph b/sources/MonaSansMono.glyphspackage/glyphs/liraT_urkish.glyph new file mode 100644 index 00000000..f374b1b2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/liraT_urkish.glyph @@ -0,0 +1,156 @@ +{ +glyphname = liraTurkish; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(193,0,ls), +(406,0,o), +(542,105,o), +(571,317,c), +(534,317,l), +(509,146,o), +(403,36,o), +(192,36,c), +(192,729,l), +(154,729,l), +(154,0,l) +); +}, +{ +closed = 1; +nodes = ( +(426,436,l), +(426,471,l), +(52,321,l), +(52,286,l) +); +}, +{ +closed = 1; +nodes = ( +(426,595,l), +(426,630,l), +(52,480,l), +(52,445,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +22 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,ls), +(465,0,o), +(633,128,o), +(643,356,c), +(445,356,l), +(436,254,o), +(397,185,o), +(256,184,c), +(256,729,l), +(66,729,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,367,l), +(395,509,l), +(-8,347,l), +(-8,205,l) +); +}, +{ +closed = 1; +nodes = ( +(395,566,l), +(395,708,l), +(-8,546,l), +(-8,404,l) +); +} +); +width = 619; +} +); +unicode = 8378; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/literS_ign.glyph b/sources/MonaSansMono.glyphspackage/glyphs/literS_ign.glyph new file mode 100644 index 00000000..6d5db1e9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/literS_ign.glyph @@ -0,0 +1,92 @@ +{ +glyphname = literSign; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(399,-8,o), +(453,23,o), +(483,102,c), +(453,114,l), +(433,61,o), +(399,26,o), +(343,26,cs), +(266,26,o), +(214,113,o), +(214,389,cs), +(214,585,o), +(264,705,o), +(347,705,cs), +(398,705,o), +(427,658,o), +(427,558,cs), +(427,363,o), +(305,196,o), +(123,141,c), +(123,110,l), +(325,167,o), +(460,351,o), +(460,562,cs), +(460,668,o), +(424,739,o), +(348,739,cs), +(241,739,o), +(182,604,o), +(182,389,cs), +(182,151,o), +(221,-8,o), +(341,-8,cs) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(432,-8,o), +(517,49,o), +(547,135,c), +(415,192,l), +(399,147,o), +(376,137,o), +(355,137,cs), +(310,137,o), +(288,182,o), +(288,372,cs), +(288,534,o), +(311,571,o), +(345,571,cs), +(361,571,o), +(372,556,o), +(372,530,cs), +(372,463,o), +(313,292,o), +(71,247,c), +(71,122,l), +(384,171,o), +(533,377,o), +(533,549,cs), +(533,663,o), +(469,739,o), +(367,739,cs), +(195,739,o), +(114,591,o), +(114,384,cs), +(114,149,o), +(167,-8,o), +(335,-8,cs) +); +} +); +width = 619; +} +); +unicode = 8467; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/logicalnot.glyph b/sources/MonaSansMono.glyphspackage/glyphs/logicalnot.glyph new file mode 100644 index 00000000..c7a4e48d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/logicalnot.glyph @@ -0,0 +1,74 @@ +{ +glyphname = logicalnot; +kernRight = logicalnot; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(521,153,l), +(521,397,l), +(46,397,l), +(46,365,l), +(489,365,l), +(489,153,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(536,139,l), +(536,428,l), +(61,428,l), +(61,281,l), +(392,281,l), +(392,139,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 172; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lslash.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lslash.glyph new file mode 100644 index 00000000..42ad094f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lslash.glyph @@ -0,0 +1,36 @@ +{ +color = 7; +glyphname = lslash; +kernLeft = lslash; +kernRight = lslash; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +pos = (1,23); +ref = slashshortcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +pos = (0,63); +ref = slashshortcomb; +} +); +width = 618; +} +); +metricRight = "=|"; +unicode = 322; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lslash.ss03.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lslash.ss03.glyph new file mode 100644 index 00000000..abf24c01 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lslash.ss03.glyph @@ -0,0 +1,33 @@ +{ +color = 7; +glyphname = lslash.ss03; +kernLeft = lslash; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-13,23); +ref = slashshortcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l.ss03; +}, +{ +pos = (-16,63); +ref = slashshortcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/lslash.ss04.glyph b/sources/MonaSansMono.glyphspackage/glyphs/lslash.ss04.glyph new file mode 100644 index 00000000..2f163431 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/lslash.ss04.glyph @@ -0,0 +1,34 @@ +{ +color = 7; +glyphname = lslash.ss04; +kernLeft = lslash; +kernRight = lslash; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = l; +}, +{ +pos = (1,23); +ref = slashshortcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = l; +}, +{ +pos = (0,63); +ref = slashshortcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/m.glyph b/sources/MonaSansMono.glyphspackage/glyphs/m.glyph new file mode 100644 index 00000000..b0a4cabd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/m.glyph @@ -0,0 +1,206 @@ +{ +glyphname = m; +kernLeft = n; +kernRight = n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = top; +pos = (312,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(117,0,l), +(117,338,ls), +(117,427,o), +(157,491,o), +(213,491,cs), +(270,491,o), +(296,446,o), +(296,355,cs), +(296,0,l), +(331,0,l), +(331,338,ls), +(331,427,o), +(372,491,o), +(430,491,cs), +(486,491,o), +(510,446,o), +(510,355,cs), +(510,0,l), +(546,0,l), +(546,360,ls), +(546,478,o), +(501,525,o), +(436,525,cs), +(392,525,o), +(348,495,o), +(328,430,c), +(318,430,l), +(303,497,o), +(269,525,o), +(219,525,cs), +(177,525,o), +(139,493,o), +(121,435,c), +(111,435,l), +(109,517,l), +(81,517,l), +(81,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(182,0,l), +(182,352,ls), +(182,373,o), +(191,395,o), +(210,395,cs), +(229,395,o), +(234,376,o), +(234,342,cs), +(235,0,l), +(386,0,l), +(387,356,ls), +(387,376,o), +(395,399,o), +(414,399,cs), +(433,399,o), +(440,379,o), +(440,345,cs), +(439,0,l), +(585,0,l), +(585,397,ls), +(585,510,o), +(539,552,o), +(477,552,cs), +(431,552,o), +(388,523,o), +(377,464,c), +(367,464,l), +(352,524,o), +(321,552,o), +(274,552,cs), +(238,552,o), +(196,529,o), +(183,469,c), +(173,469,l), +(168,544,l), +(37,544,l), +(37,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = n; +}; +width = 618; +} +); +metricLeft = l; +metricRight = n; +unicode = 109; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/macron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/macron.glyph new file mode 100644 index 00000000..839aaf15 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/macron.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = macron; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = macroncomb; +} +); +width = 619; +} +); +unicode = 175; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/macroncomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/macroncomb.glyph new file mode 100644 index 00000000..3d4f0d97 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/macroncomb.glyph @@ -0,0 +1,56 @@ +{ +glyphname = macroncomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (310,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(469,780,l), +(469,813,l), +(150,813,l), +(150,780,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (310,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(511,735,l), +(511,874,l), +(108,874,l), +(108,735,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 772; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/minus.glyph b/sources/MonaSansMono.glyphspackage/glyphs/minus.glyph new file mode 100644 index 00000000..d28f5ac5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/minus.glyph @@ -0,0 +1,57 @@ +{ +glyphname = minus; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(548,345,l), +(548,377,l), +(70,377,l), +(70,345,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +12, +12 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(546,286,l), +(546,435,l), +(73,435,l), +(73,286,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 8722; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/mu.glyph b/sources/MonaSansMono.glyphspackage/glyphs/mu.glyph new file mode 100644 index 00000000..89a8954d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/mu.glyph @@ -0,0 +1,162 @@ +{ +glyphname = mu; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(141,-132,l), +(141,111,l), +(136,83,l), +(155,26,o), +(214,-8,o), +(290,-8,cs), +(375,-8,o), +(443,33,o), +(473,121,c), +(477,121,l), +(480,0,l), +(514,0,l), +(514,517,l), +(477,517,l), +(477,249,ls), +(477,115,o), +(424,26,o), +(301,26,cs), +(200,26,o), +(141,83,o), +(141,183,cs), +(141,517,l), +(104,517,l), +(104,-132,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = u; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = u; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(225,-132,l), +(225,48,l), +(133,17,l), +(152,1,o), +(189,-10,o), +(226,-10,cs), +(298,-10,o), +(360,23,o), +(385,89,c), +(393,89,l), +(400,0,l), +(584,0,l), +(584,544,l), +(393,544,l), +(393,236,ls), +(393,181,o), +(365,144,o), +(304,144,cs), +(253,144,o), +(225,173,o), +(225,228,cs), +(225,544,l), +(34,544,l), +(34,-132,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = u; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = u; +}; +width = 618; +} +); +metricLeft = l; +metricRight = l; +unicode = 956; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/multiply.glyph b/sources/MonaSansMono.glyphspackage/glyphs/multiply.glyph new file mode 100644 index 00000000..eeb0190f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/multiply.glyph @@ -0,0 +1,59 @@ +{ +glyphname = multiply; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(309,337,l), +(480,166,l), +(504,190,l), +(333,361,l), +(504,532,l), +(480,556,l), +(309,385,l), +(138,556,l), +(114,532,l), +(285,361,l), +(114,190,l), +(138,166,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(311,260,l), +(441,129,l), +(542,230,l), +(412,361,l), +(542,491,l), +(441,592,l), +(311,462,l), +(180,592,l), +(79,491,l), +(210,361,l), +(79,230,l), +(180,129,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 215; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/n.glyph b/sources/MonaSansMono.glyphspackage/glyphs/n.glyph new file mode 100644 index 00000000..87893304 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/n.glyph @@ -0,0 +1,202 @@ +{ +glyphname = n; +kernLeft = n; +kernRight = n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = top; +pos = (312,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(150,0,l), +(150,274,ls), +(150,401,o), +(223,491,o), +(330,491,cs), +(429,491,o), +(478,430,o), +(478,294,cs), +(478,0,l), +(515,0,l), +(515,300,ls), +(515,462,o), +(440,525,o), +(337,525,cs), +(261,525,o), +(192,482,o), +(160,400,c), +(150,400,l), +(148,517,l), +(114,517,l), +(114,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = top; +pos = (312,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(230,288,ls), +(230,353,o), +(262,400,o), +(326,400,cs), +(386,400,o), +(410,364,o), +(410,291,cs), +(410,0,l), +(601,0,l), +(601,321,ls), +(601,469,o), +(534,554,o), +(411,554,cs), +(331,554,o), +(267,518,o), +(238,455,c), +(230,455,l), +(207,544,l), +(39,544,l), +(39,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,l), +(243,308,ls), +(243,351,o), +(266,400,o), +(318,400,cs), +(367,400,o), +(385,363,o), +(385,291,cs), +(385,0,l), +(576,0,l), +(576,333,ls), +(576,494,o), +(498,554,o), +(399,554,cs), +(331,554,o), +(280,520,o), +(257,455,c), +(243,455,l), +(236,544,l), +(52,544,l), +(52,0,l) +); +} +); +width = 618; +} +); +metricLeft = l; +unicode = 110; +userData = { +KernOnName = n; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/nacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/nacute.glyph new file mode 100644 index 00000000..4053b9d4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/nacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = nacute; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = n; +}, +{ +pos = (42,-155); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = n; +}, +{ +pos = (51,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 324; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/nbspace.glyph b/sources/MonaSansMono.glyphspackage/glyphs/nbspace.glyph new file mode 100644 index 00000000..76ff5fe1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/nbspace.glyph @@ -0,0 +1,27 @@ +{ +glyphname = nbspace; +layers = ( +{ +layerId = m019; +userData = { +com.schriftgestaltung.Glyphs.glyph.widthMetricsKey = space; +}; +width = 619; +}, +{ +layerId = m020; +userData = { +com.schriftgestaltung.Glyphs.glyph.widthMetricsKey = space; +}; +width = 619; +} +); +metricWidth = space; +unicode = 160; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ncaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ncaron.glyph new file mode 100644 index 00000000..10b44cc4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ncaron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ncaron; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = n; +}, +{ +pos = (3,-155); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = n; +}, +{ +pos = (3,-134); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 328; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ncommaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ncommaaccent.glyph new file mode 100644 index 00000000..779702aa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ncommaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ncommaaccent; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = n; +}, +{ +pos = (-22,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = n; +}, +{ +pos = (-16,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 326; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/nine.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/nine.blackC_ircled.glyph new file mode 100644 index 00000000..5b54a994 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/nine.blackC_ircled.glyph @@ -0,0 +1,408 @@ +{ +color = 0; +glyphname = nine.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (310,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs), +(-3,140,o), +(148,-10,o), +(372,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(288,142,o), +(236,185,o), +(230,249,c), +(264,249,l), +(272,198,o), +(310,173,o), +(360,173,cs), +(456,173,o), +(485,249,o), +(487,390,c), +(484,390,l), +(471,341,o), +(425,308,o), +(362,308,cs), +(281,308,o), +(226,363,o), +(226,444,cs), +(226,530,o), +(286,585,o), +(370,585,cs), +(472,585,o), +(520,514,o), +(520,392,cs), +(520,204,o), +(456,142,o), +(360,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,337,o), +(478,387,o), +(478,448,cs), +(478,514,o), +(434,554,o), +(369,554,cs), +(305,554,o), +(262,510,o), +(262,444,cs), +(262,378,o), +(306,337,o), +(368,337,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,185,o), +(200,220,o), +(196,270,c), +(223,270,l), +(230,227,o), +(264,209,o), +(302,209,cs), +(383,209,o), +(399,279,o), +(400,383,c), +(399,383,l), +(387,343,o), +(351,317,o), +(301,317,cs), +(236,317,o), +(192,361,o), +(192,426,cs), +(192,494,o), +(240,538,o), +(307,538,cs), +(389,538,o), +(427,480,o), +(427,384,cs), +(427,244,o), +(386,185,o), +(301,185,cs) +); +}, +{ +closed = 1; +nodes = ( +(360,340,o), +(394,379,o), +(394,429,cs), +(394,481,o), +(358,513,o), +(306,513,cs), +(256,513,o), +(221,478,o), +(221,426,cs), +(221,373,o), +(256,340,o), +(305,340,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +296, +66 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +135, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +320, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +616, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +294, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +585, +42 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-10, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs), +(-9,141,o), +(155,-9,o), +(379,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,143,o), +(208,194,o), +(197,272,c), +(326,272,l), +(331,257,o), +(353,251,o), +(370,251,cs), +(406,251,o), +(432,277,o), +(432,328,c), +(427,328,l), +(411,311,o), +(380,298,o), +(338,298,cs), +(256,298,o), +(202,352,o), +(202,432,cs), +(202,524,o), +(272,587,o), +(372,587,cs), +(480,587,o), +(557,523,o), +(557,363,cs), +(557,229,o), +(489,143,o), +(366,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(400,391,o), +(419,407,o), +(419,433,cs), +(419,458,o), +(401,476,o), +(374,476,cs), +(347,476,o), +(329,459,o), +(329,434,cs), +(329,408,o), +(348,391,o), +(374,391,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,191,o), +(178,230,o), +(170,291,c), +(269,291,l), +(273,280,o), +(289,274,o), +(304,274,cs), +(330,274,o), +(352,294,o), +(352,335,c), +(348,335,l), +(336,321,o), +(312,311,o), +(279,311,cs), +(215,311,o), +(174,353,o), +(174,415,cs), +(174,487,o), +(227,535,o), +(310,535,cs), +(392,535,o), +(449,487,o), +(449,365,cs), +(449,253,o), +(395,191,o), +(302,191,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,383,o), +(341,396,o), +(341,416,cs), +(341,435,o), +(328,449,o), +(307,449,cs), +(286,449,o), +(272,436,o), +(272,417,cs), +(272,397,o), +(286,383,o), +(307,383,cs) +); +} +); +width = 618; +} +); +unicode = 10110; +userData = { +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/nine.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/nine.circled.glyph new file mode 100644 index 00000000..514ae443 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/nine.circled.glyph @@ -0,0 +1,230 @@ +{ +color = 0; +glyphname = nine.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,142,o), +(331,204,o), +(331,392,cs), +(331,514,o), +(283,585,o), +(181,585,cs), +(97,585,o), +(37,530,o), +(37,444,cs), +(37,363,o), +(92,308,o), +(173,308,cs), +(236,308,o), +(282,341,o), +(295,390,c), +(298,390,l), +(296,249,o), +(267,173,o), +(171,173,cs), +(121,173,o), +(83,198,o), +(75,249,c), +(41,249,l), +(47,185,o), +(99,142,o), +(171,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(117,337,o), +(73,378,o), +(73,444,cs), +(73,510,o), +(116,554,o), +(180,554,cs), +(245,554,o), +(289,514,o), +(289,448,cs), +(289,387,o), +(248,337,o), +(179,337,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +pos = (530,537); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,143,o), +(370,229,o), +(370,363,cs), +(370,523,o), +(293,587,o), +(185,587,cs), +(85,587,o), +(15,524,o), +(15,432,cs), +(15,352,o), +(69,298,o), +(151,298,cs), +(193,298,o), +(224,311,o), +(240,328,c), +(245,328,l), +(245,277,o), +(219,251,o), +(183,251,cs), +(166,251,o), +(144,257,o), +(139,272,c), +(10,272,l), +(21,194,o), +(83,143,o), +(179,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,391,o), +(142,408,o), +(142,434,cs), +(142,459,o), +(160,476,o), +(187,476,cs), +(214,476,o), +(232,458,o), +(232,433,cs), +(232,407,o), +(213,391,o), +(187,391,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +angle = 180; +pos = (529,539); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9320; +userData = { +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/nine.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/nine.dnom.glyph new file mode 100644 index 00000000..69c639bb --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/nine.dnom.glyph @@ -0,0 +1,125 @@ +{ +color = 6; +glyphname = nine.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (442,398); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (439,375); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/nine.glyph b/sources/MonaSansMono.glyphspackage/glyphs/nine.glyph new file mode 100644 index 00000000..3bf9484d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/nine.glyph @@ -0,0 +1,157 @@ +{ +color = 6; +glyphname = nine; +kernLeft = nine; +kernRight = nine; +layers = ( +{ +layerId = m019; +shapes = ( +{ +angle = 180; +pos = (618,722); +ref = six; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,-9,o), +(593,118,o), +(593,365,cs), +(593,621,o), +(477,730,o), +(302,730,cs), +(136,730,o), +(24,639,o), +(24,477,cs), +(24,334,o), +(114,238,o), +(250,238,cs), +(314,238,o), +(365,260,o), +(390,294,c), +(398,294,l), +(401,199,o), +(360,155,o), +(296,155,cs), +(257,155,o), +(225,171,o), +(216,195,c), +(29,195,l), +(43,73,o), +(140,-9,o), +(295,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,379,o), +(213,415,o), +(213,472,cs), +(213,529,o), +(246,565,o), +(299,565,cs), +(352,565,o), +(385,529,o), +(385,472,cs), +(385,415,o), +(352,379,o), +(299,379,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +angle = 180; +pos = (618,722); +ref = six; +} +); +width = 618; +} +); +unicode = 57; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/nine.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/nine.numr.glyph new file mode 100644 index 00000000..1ce22f0e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/nine.numr.glyph @@ -0,0 +1,125 @@ +{ +color = 6; +glyphname = nine.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nine.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nine.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = nine.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nine.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nine.dnom; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/nine.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/nine.tf.glyph new file mode 100644 index 00000000..4f5e4d8c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/nine.tf.glyph @@ -0,0 +1,124 @@ +{ +color = 6; +glyphname = nine.tf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (618,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (618,729); +ref = six.tf; +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/nineinferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/nineinferior.glyph new file mode 100644 index 00000000..ae279a72 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/nineinferior.glyph @@ -0,0 +1,151 @@ +{ +color = 6; +glyphname = nineinferior; +layers = ( +{ +layerId = m019; +partSelection = { +Weight = 1; +Slant = 2; +}; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (444,353); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +partSelection = { +Weight = 2; +Slant = 2; +}; +shapes = ( +{ +alignment = -1; +angle = 180; +pos = (460,354); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 618; +} +); +partsSettings = ( +{ +bottomValue = 75; +name = Width; +topValue = 125; +}, +{ +bottomValue = 200; +name = Weight; +topValue = 900; +}, +{ +bottomValue = -12; +name = Slant; +topValue = 0; +} +); +unicode = 8329; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ninesuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ninesuperior.glyph new file mode 100644 index 00000000..31770310 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ninesuperior.glyph @@ -0,0 +1,129 @@ +{ +color = 6; +glyphname = ninesuperior; +kernLeft = ninesuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (-175,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nineinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nineinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-178,376); +ref = nineinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = nineinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = nineinferior; +}; +width = 618; +} +); +unicode = 8313; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = nine; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/notequal.glyph b/sources/MonaSansMono.glyphspackage/glyphs/notequal.glyph new file mode 100644 index 00000000..68facdb0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/notequal.glyph @@ -0,0 +1,99 @@ +{ +color = 0; +glyphname = notequal; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(206,101,l), +(449,630,l), +(414,630,l), +(169,101,l) +); +}, +{ +closed = 1; +nodes = ( +(548,235,l), +(548,267,l), +(70,267,l), +(70,235,l) +); +}, +{ +closed = 1; +nodes = ( +(548,455,l), +(548,487,l), +(70,487,l), +(70,455,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-2, +-2 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +-2, +-2 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(248,101,l), +(491,630,l), +(372,630,l), +(127,101,l) +); +}, +{ +closed = 1; +nodes = ( +(546,166,l), +(546,315,l), +(73,315,l), +(73,166,l) +); +}, +{ +closed = 1; +nodes = ( +(546,406,l), +(546,555,l), +(73,555,l), +(73,406,l) +); +} +); +width = 618; +} +); +metricLeft = equal; +metricRight = equal; +unicode = 8800; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ntilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ntilde.glyph new file mode 100644 index 00000000..76c4a710 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ntilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ntilde; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = n; +}, +{ +pos = (5,-155); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = n; +}, +{ +pos = (2,-134); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 241; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/numbersign.glyph b/sources/MonaSansMono.glyphspackage/glyphs/numbersign.glyph new file mode 100644 index 00000000..12df61b7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/numbersign.glyph @@ -0,0 +1,192 @@ +{ +glyphname = numbersign; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,l), +(220,245,l), +(405,245,l), +(405,0,l), +(437,0,l), +(437,245,l), +(594,245,l), +(594,273,l), +(437,273,l), +(437,480,l), +(594,480,l), +(594,507,l), +(437,507,l), +(437,729,l), +(405,729,l), +(405,507,l), +(220,507,l), +(220,729,l), +(188,729,l), +(188,507,l), +(25,507,l), +(25,480,l), +(188,480,l), +(188,273,l), +(25,273,l), +(25,245,l), +(188,245,l), +(188,0,l) +); +}, +{ +closed = 1; +nodes = ( +(220,480,l), +(405,480,l), +(405,273,l), +(220,273,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,182,l), +(359,182,l), +(359,0,l), +(499,0,l), +(499,182,l), +(609,182,l), +(609,309,l), +(499,309,l), +(499,423,l), +(609,423,l), +(609,551,l), +(499,551,l), +(499,729,l), +(359,729,l), +(359,551,l), +(261,551,l), +(261,729,l), +(119,729,l), +(119,551,l), +(9,551,l), +(9,423,l), +(119,423,l), +(119,309,l), +(9,309,l), +(9,182,l), +(119,182,l), +(119,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,423,l), +(359,423,l), +(359,309,l), +(261,309,l) +); +} +); +width = 619; +} +); +unicode = 35; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/numero.glyph b/sources/MonaSansMono.glyphspackage/glyphs/numero.glyph new file mode 100644 index 00000000..431ebe78 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/numero.glyph @@ -0,0 +1,147 @@ +{ +glyphname = numero; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(-103,0,l), +(-103,436,l), +(-106,686,l), +(-101,686,l), +(380,0,l), +(435,0,l), +(435,729,l), +(397,729,l), +(397,303,l), +(401,43,l), +(396,43,l), +(-86,729,l), +(-141,729,l), +(-141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(765,231,l), +(765,263,l), +(563,263,l), +(563,231,l) +); +}, +{ +closed = 1; +nodes = ( +(746,334,o), +(802,405,o), +(802,537,cs), +(802,668,o), +(747,739,o), +(665,739,cs), +(582,739,o), +(526,669,o), +(526,537,cs), +(526,406,o), +(581,334,o), +(665,334,cs) +); +}, +{ +closed = 1; +nodes = ( +(600,366,o), +(563,425,o), +(563,537,cs), +(563,648,o), +(600,707,o), +(665,707,cs), +(728,707,o), +(765,649,o), +(765,537,cs), +(765,425,o), +(728,366,o), +(665,366,cs) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(-25,0,l), +(-25,236,l), +(-32,431,l), +(-26,431,l), +(209,0,l), +(440,0,l), +(440,729,l), +(245,729,l), +(245,504,l), +(252,289,l), +(246,289,l), +(13,729,l), +(-232,729,l), +(-232,0,l) +); +}, +{ +closed = 1; +nodes = ( +(853,139,l), +(853,255,l), +(524,255,l), +(524,139,l) +); +}, +{ +closed = 1; +nodes = ( +(803,292,o), +(882,363,o), +(882,516,cs), +(882,668,o), +(803,739,o), +(688,739,cs), +(574,739,o), +(495,668,o), +(495,516,cs), +(495,363,o), +(574,292,o), +(688,292,cs) +); +}, +{ +closed = 1; +nodes = ( +(652,411,o), +(641,451,o), +(641,516,cs), +(641,580,o), +(652,620,o), +(688,620,cs), +(725,620,o), +(736,580,o), +(736,516,cs), +(736,451,o), +(725,411,o), +(688,411,cs) +); +} +); +width = 618; +} +); +unicode = 8470; +userData = { +KernOnSpecialSpacing = { +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/o.glyph b/sources/MonaSansMono.glyphspackage/glyphs/o.glyph new file mode 100644 index 00000000..5aab0483 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/o.glyph @@ -0,0 +1,216 @@ +{ +glyphname = o; +kernLeft = e; +kernRight = o; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = center; +pos = (310,259); +}, +{ +name = ogonek; +pos = (540,10); +}, +{ +name = top; +pos = (310,517); +}, +{ +name = topright; +pos = (396,507); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-8,o), +(552,101,o), +(552,258,cs), +(552,417,o), +(455,525,o), +(311,525,cs), +(165,525,o), +(67,415,o), +(67,257,cs), +(67,100,o), +(165,-8,o), +(311,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,28,o), +(105,120,o), +(105,257,cs), +(105,400,o), +(188,490,o), +(311,490,cs), +(437,490,o), +(514,397,o), +(514,258,cs), +(514,117,o), +(432,28,o), +(310,28,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,272); +}, +{ +name = ogonek; +pos = (552,10); +}, +{ +name = top; +pos = (309,544); +}, +{ +name = topright; +pos = (385,524); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(224,364,o), +(258,400,o), +(309,400,cs), +(360,400,o), +(394,364,o), +(394,272,cs), +(394,180,o), +(360,144,o), +(309,144,cs), +(258,144,o), +(224,180,o), +(224,272,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(488,-10,o), +(588,103,o), +(588,272,cs), +(588,452,o), +(476,554,o), +(309,554,cs), +(130,554,o), +(30,441,o), +(30,272,cs), +(30,92,o), +(142,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,143,o), +(223,179,o), +(223,272,cs), +(223,365,o), +(257,401,o), +(309,401,cs), +(361,401,o), +(395,365,o), +(395,272,cs), +(395,179,o), +(361,143,o), +(309,143,cs) +); +} +); +width = 618; +} +); +unicode = 111; +userData = { +KernOnName = o; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/oacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/oacute.glyph new file mode 100644 index 00000000..610eb136 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/oacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = oacute; +kernLeft = e; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (40,-155); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (48,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 243; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ocircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflex.glyph new file mode 100644 index 00000000..0b9fe1cd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ocircumflex; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (1,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (0,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 244; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexacute.glyph new file mode 100644 index 00000000..d788329a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ocircumflexacute; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (51,-155); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (75,-134); +ref = circumflexcomb_acutecomb; +} +); +width = 618; +} +); +unicode = 7889; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexdotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexdotbelow.glyph new file mode 100644 index 00000000..5d493f65 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexdotbelow.glyph @@ -0,0 +1,42 @@ +{ +color = 6; +glyphname = ocircumflexdotbelow; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +}, +{ +pos = (1,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +ref = dotbelowcomb; +}, +{ +pos = (0,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 7897; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexdotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexdotbelow.ss01.glyph new file mode 100644 index 00000000..97e3647f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexdotbelow.ss01.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = ocircumflexdotbelow.ss01; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +ref = dotbelowcomb.ss01; +}, +{ +pos = (1,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +}, +{ +pos = (0,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexgrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexgrave.glyph new file mode 100644 index 00000000..a160fa76 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexgrave.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ocircumflexgrave; +kernLeft = egrave; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (29,-155); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (35,-134); +ref = circumflexcomb_gravecomb; +} +); +width = 618; +} +); +unicode = 7891; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexhookabove.glyph new file mode 100644 index 00000000..fe723c59 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflexhookabove.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ocircumflexhookabove; +kernLeft = egrave; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (45,-155); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (46,-134); +ref = circumflexcomb_hookabovecomb; +} +); +width = 618; +} +); +unicode = 7893; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ocircumflextilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflextilde.glyph new file mode 100644 index 00000000..d942fa31 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ocircumflextilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ocircumflextilde; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (9,-155); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (0,-134); +ref = circumflexcomb_tildecomb; +} +); +width = 618; +} +); +unicode = 7895; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/odieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/odieresis.glyph new file mode 100644 index 00000000..aa8e2b01 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/odieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = odieresis; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (1,-155); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (0,-134); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 246; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/odieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/odieresis.ss01.glyph new file mode 100644 index 00000000..dce22aa8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/odieresis.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = odieresis.ss01; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (0,-155); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (0,-134); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/odotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/odotbelow.glyph new file mode 100644 index 00000000..d8f74b09 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/odotbelow.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = odotbelow; +kernLeft = e; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +ref = dotbelowcomb; +} +); +width = 618; +} +); +unicode = 7885; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/odotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/odotbelow.ss01.glyph new file mode 100644 index 00000000..28cae72e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/odotbelow.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = odotbelow.ss01; +kernLeft = e; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (-1,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/oe.glyph b/sources/MonaSansMono.glyphspackage/glyphs/oe.glyph new file mode 100644 index 00000000..a1993c73 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/oe.glyph @@ -0,0 +1,174 @@ +{ +glyphname = oe; +kernLeft = e; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (308,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(245,-8,o), +(302,58,o), +(324,165,c), +(312,166,l), +(332,58,o), +(387,-8,o), +(463,-8,cs), +(539,-8,o), +(600,55,o), +(611,152,c), +(578,152,l), +(567,75,o), +(524,26,o), +(463,26,cs), +(385,26,o), +(335,114,o), +(335,267,cs), +(335,270,ls), +(335,411,o), +(386,491,o), +(461,491,cs), +(536,491,o), +(586,417,o), +(580,261,c), +(602,289,l), +(330,289,l), +(329,256,l), +(612,256,l), +(622,411,o), +(569,525,o), +(462,525,cs), +(385,525,o), +(331,457,o), +(312,351,c), +(324,352,l), +(302,459,o), +(245,525,o), +(170,525,cs), +(70,525,o), +(4,415,o), +(4,257,cs), +(4,101,o), +(70,-8,o), +(170,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(88,28,o), +(37,120,o), +(37,257,cs), +(37,400,o), +(91,490,o), +(170,490,cs), +(251,490,o), +(301,396,o), +(301,258,cs), +(301,118,o), +(248,28,o), +(169,28,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(266,-10,o), +(314,27,o), +(346,87,c), +(282,87,l), +(316,24,o), +(366,-10,o), +(431,-10,cs), +(528,-10,o), +(600,63,o), +(608,177,c), +(467,177,l), +(463,150,o), +(449,132,o), +(431,132,cs), +(404,132,o), +(385,164,o), +(385,222,cs), +(385,332,ls), +(385,380,o), +(399,413,o), +(424,413,cs), +(446,413,o), +(463,383,o), +(464,334,c), +(482,341,l), +(371,341,l), +(371,227,l), +(612,227,l), +(627,415,o), +(564,554,o), +(426,554,cs), +(366,554,o), +(315,517,o), +(281,453,c), +(349,453,l), +(315,519,o), +(263,554,o), +(200,554,cs), +(75,554,o), +(7,441,o), +(7,272,cs), +(7,92,o), +(84,-10,o), +(200,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,143,o), +(159,179,o), +(159,272,cs), +(159,364,o), +(175,401,o), +(200,401,cs), +(224,401,o), +(240,364,o), +(240,272,cs), +(240,180,o), +(225,143,o), +(200,143,cs) +); +} +); +width = 619; +} +); +metricLeft = o; +metricRight = e; +unicode = 339; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ogonek.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ogonek.glyph new file mode 100644 index 00000000..059bd9c3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ogonek.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = ogonek; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = ogonekcomb; +} +); +width = 618; +} +); +unicode = 731; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ogonekcomb.e.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ogonekcomb.e.glyph new file mode 100644 index 00000000..6eaa33cc --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ogonekcomb.e.glyph @@ -0,0 +1,146 @@ +{ +export = 0; +glyphname = ogonekcomb.e; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (326,-2); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (326,-2); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(343,-198,o), +(362,-195,o), +(375,-190,c), +(375,-163,l), +(358,-169,o), +(338,-170,o), +(328,-170,cs), +(285,-170,o), +(262,-149,o), +(262,-113,cs), +(262,-57,o), +(317,-19,o), +(388,34,c), +(376,51,l), +(299,-2,o), +(229,-48,o), +(229,-115,cs), +(229,-165,o), +(264,-198,o), +(324,-198,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(343,-198,o), +(362,-195,o), +(375,-190,c), +(375,-163,l), +(358,-169,o), +(338,-170,o), +(328,-170,cs), +(283,-170,o), +(262,-150,o), +(262,-115,cs), +(262,-58,o), +(324,-16,o), +(388,34,c), +(376,51,l), +(305,1,o), +(231,-48,o), +(231,-121,cs), +(231,-169,o), +(265,-198,o), +(322,-198,cs) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (393,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-208,o), +(395,-200,o), +(413,-192,c), +(413,-99,l), +(399,-104,o), +(382,-107,o), +(368,-107,cs), +(339,-107,o), +(325,-95,o), +(325,-75,cs), +(325,-42,o), +(365,-16,o), +(432,36,c), +(395,52,l), +(283,20,o), +(187,-31,o), +(187,-112,cs), +(187,-173,o), +(235,-208,o), +(314,-208,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(352,-208,o), +(395,-200,o), +(413,-192,c), +(413,-113,l), +(402,-118,o), +(388,-121,o), +(371,-121,cs), +(342,-121,o), +(325,-106,o), +(325,-82,cs), +(325,-42,o), +(365,-16,o), +(432,36,c), +(395,52,l), +(283,20,o), +(187,-31,o), +(187,-112,cs), +(187,-173,o), +(235,-208,o), +(314,-208,cs) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ogonekcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ogonekcomb.glyph new file mode 100644 index 00000000..8a1a3bd4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ogonekcomb.glyph @@ -0,0 +1,243 @@ +{ +glyphname = ogonekcomb; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (362,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (353,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(357,-218,o), +(375,-217,o), +(389,-212,c), +(389,-182,l), +(379,-186,o), +(365,-188,o), +(350,-188,cs), +(315,-188,o), +(291,-168,o), +(291,-127,cs), +(291,-95,o), +(312,-57,o), +(375,0,c), +(371,14,l), +(357,21,l), +(275,-53,o), +(258,-97,o), +(258,-133,cs), +(258,-183,o), +(292,-218,o), +(342,-218,cs) +); +}, +{ +closed = 1; +nodes = ( +(61,-198,o), +(82,-197,o), +(97,-191,c), +(97,-163,l), +(78,-169,o), +(63,-169,o), +(53,-169,cs), +(6,-169,o), +(-26,-151,o), +(-26,-113,cs), +(-26,-85,o), +(-8,-58,o), +(34,-29,cs), +(76,0,l), +(61,26,l), +(32,6,ls), +(-16,-28,o), +(-59,-59,o), +(-59,-115,cs), +(-59,-164,o), +(-22,-198,o), +(48,-198,cs) +); +}, +{ +closed = 1; +nodes = ( +(353,-198,o), +(373,-197,o), +(387,-191,c), +(387,-163,l), +(370,-169,o), +(356,-169,o), +(346,-169,cs), +(303,-169,o), +(274,-149,o), +(274,-113,cs), +(274,-83,o), +(290,-57,o), +(329,-29,cs), +(368,-2,l), +(353,24,l), +(314,-4,ls), +(269,-36,o), +(241,-69,o), +(241,-115,cs), +(241,-165,o), +(281,-198,o), +(341,-198,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(344,-209,o), +(367,-204,o), +(378,-198,c), +(378,-170,l), +(366,-176,o), +(349,-180,o), +(333,-180,cs), +(295,-180,o), +(275,-161,o), +(275,-126,cs), +(275,-79,o), +(310,-40,o), +(362,0,c), +(352,19,l), +(344,19,l), +(279,-24,o), +(241,-79,o), +(241,-129,cs), +(241,-179,o), +(273,-209,o), +(324,-209,cs) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (425,0); +} +); +background = { +anchors = ( +{ +name = _ogonek; +pos = (442,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(389,-215,o), +(425,-205,o), +(439,-196,c), +(439,-132,l), +(428,-136,o), +(415,-137,o), +(408,-137,cs), +(378,-137,o), +(365,-120,o), +(365,-94,cs), +(365,-59,o), +(399,-25,o), +(442,0,c), +(424,57,l), +(417,56,l), +(285,6,o), +(228,-52,o), +(228,-118,cs), +(228,-175,o), +(272,-215,o), +(351,-215,cs) +); +}, +{ +closed = 1; +nodes = ( +(379,-207,o), +(420,-204,o), +(444,-195,c), +(444,-89,l), +(430,-94,o), +(409,-95,o), +(398,-95,cs), +(366,-96,o), +(346,-88,o), +(345,-68,cs), +(344,-49,o), +(360,-32,o), +(404,-13,cs), +(433,0,l), +(386,98,l), +(351,83,ls), +(248,38,o), +(184,-12,o), +(184,-91,cs), +(184,-170,o), +(249,-207,o), +(347,-207,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(362,-221,o), +(405,-214,o), +(434,-201,c), +(434,-123,l), +(421,-129,o), +(408,-132,o), +(394,-132,cs), +(366,-132,o), +(349,-117,o), +(349,-92,cs), +(349,-58,o), +(380,-28,o), +(425,0,c), +(417,11,l), +(309,11,l), +(229,-25,o), +(184,-71,o), +(184,-125,cs), +(184,-185,o), +(236,-221,o), +(323,-221,cs) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 808; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ograve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ograve.glyph new file mode 100644 index 00000000..85d019e1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ograve.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ograve; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (-39,-155); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (-49,-134); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 242; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ohookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ohookabove.glyph new file mode 100644 index 00000000..21c2e687 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ohookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ohookabove; +kernLeft = e; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (1,-155); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (7,-134); +ref = hookabovecomb; +} +); +width = 618; +} +); +unicode = 7887; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ohorn.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ohorn.glyph new file mode 100644 index 00000000..2923d71e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ohorn.glyph @@ -0,0 +1,38 @@ +{ +color = 7; +glyphname = ohorn; +kernLeft = e; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +ref = o; +}, +{ +pos = (152,-2); +ref = horncomb; +} +); +width = 604; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-2,0); +ref = o; +}, +{ +pos = (198,-66); +ref = horncomb; +} +); +width = 613; +} +); +metricLeft = o; +unicode = 417; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ohornacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ohornacute.glyph new file mode 100644 index 00000000..9fd53e05 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ohornacute.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ohornacute; +kernLeft = e; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (40,-155); +ref = acutecomb; +} +); +width = 604; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (46,-134); +ref = acutecomb; +} +); +width = 613; +} +); +unicode = 7899; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ohorndotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ohorndotbelow.glyph new file mode 100644 index 00000000..ef53237f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ohorndotbelow.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ohorndotbelow; +kernLeft = e; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (1,0); +ref = dotbelowcomb; +} +); +width = 604; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-2,0); +ref = dotbelowcomb; +} +); +width = 613; +} +); +unicode = 7907; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ohorndotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ohorndotbelow.ss01.glyph new file mode 100644 index 00000000..a6390d3a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ohorndotbelow.ss01.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = ohorndotbelow.ss01; +kernLeft = e; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +ref = dotbelowcomb.ss01; +} +); +width = 604; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-3,0); +ref = dotbelowcomb.ss01; +} +); +width = 613; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ohorngrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ohorngrave.glyph new file mode 100644 index 00000000..981af409 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ohorngrave.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ohorngrave; +kernLeft = egrave; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-39,-155); +ref = gravecomb; +} +); +width = 604; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-51,-134); +ref = gravecomb; +} +); +width = 613; +} +); +unicode = 7901; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ohornhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ohornhookabove.glyph new file mode 100644 index 00000000..7d790944 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ohornhookabove.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ohornhookabove; +kernLeft = e; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (1,-155); +ref = hookabovecomb; +} +); +width = 604; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (5,-134); +ref = hookabovecomb; +} +); +width = 613; +} +); +unicode = 7903; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ohorntilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ohorntilde.glyph new file mode 100644 index 00000000..3cbde7a4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ohorntilde.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ohorntilde; +kernLeft = egrave; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (3,-155); +ref = tildecomb; +} +); +width = 604; +}, +{ +layerId = m020; +shapes = ( +{ +ref = ohorn; +}, +{ +pos = (-3,-134); +ref = tildecomb; +} +); +width = 613; +} +); +unicode = 7905; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ohungarumlaut.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ohungarumlaut.glyph new file mode 100644 index 00000000..872619ae --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ohungarumlaut.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ohungarumlaut; +kernLeft = e; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (41,-155); +ref = hungarumlautcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (73,-134); +ref = hungarumlautcomb; +} +); +width = 618; +} +); +unicode = 337; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/omacron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/omacron.glyph new file mode 100644 index 00000000..28185a9d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/omacron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = omacron; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (0,-155); +ref = macroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (-1,-134); +ref = macroncomb; +} +); +width = 618; +} +); +unicode = 333; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/one.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/one.blackC_ircled.glyph new file mode 100644 index 00000000..640f3210 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/one.blackC_ircled.glyph @@ -0,0 +1,294 @@ +{ +color = 0; +glyphname = one.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs), +(-3,140,o), +(148,-10,o), +(372,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,486,l), +(271,486,l), +(271,512,l), +(287,512,ls), +(345,512,o), +(367,540,o), +(371,582,c), +(405,582,l), +(405,149,l), +(371,149,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,462,l), +(229,462,l), +(229,482,l), +(242,482,ls), +(288,482,o), +(305,504,o), +(308,538,c), +(335,538,l), +(335,193,l), +(308,193,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +112, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +529, +23 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +520, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +527, +31 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +482, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs), +(-9,141,o), +(155,-9,o), +(379,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,405,l), +(225,405,l), +(225,502,l), +(245,502,ls), +(300,502,o), +(344,534,o), +(349,582,c), +(468,582,l), +(468,149,l), +(341,149,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,397,l), +(204,397,l), +(204,473,l), +(219,473,ls), +(262,473,o), +(296,497,o), +(300,535,c), +(392,535,l), +(392,199,l), +(294,199,l) +); +} +); +width = 618; +} +); +unicode = 10102; +userData = { +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/one.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/one.circled.glyph new file mode 100644 index 00000000..ef5cd3a6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/one.circled.glyph @@ -0,0 +1,160 @@ +{ +color = 0; +glyphname = one.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,149,l), +(216,582,l), +(182,582,l), +(178,540,o), +(156,512,o), +(98,512,cs), +(82,512,l), +(82,486,l), +(182,486,l), +(182,149,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (83,189); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(299,149,l), +(299,582,l), +(180,582,l), +(175,534,o), +(131,502,o), +(76,502,cs), +(56,502,l), +(56,405,l), +(172,405,l), +(172,149,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (93,191); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +unicode = 9312; +userData = { +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/one.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/one.dnom.glyph new file mode 100644 index 00000000..44138c1c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/one.dnom.glyph @@ -0,0 +1,116 @@ +{ +glyphname = one.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(253,397,l), +(221,397,l), +(218,360,o), +(200,333,o), +(144,333,cs), +(130,333,l), +(130,309,l), +(222,309,l), +(222,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(311,0,l), +(311,375,l), +(205,375,l), +(200,331,o), +(159,306,o), +(112,306,cs), +(94,306,l), +(94,220,l), +(198,220,l), +(198,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +metricWidth = H; +userData = { +KernOnName = one.dnom; +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/one.glyph b/sources/MonaSansMono.glyphspackage/glyphs/one.glyph new file mode 100644 index 00000000..a462a867 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/one.glyph @@ -0,0 +1,99 @@ +{ +glyphname = one; +kernLeft = one; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(349,0,l), +(349,729,l), +(310,729,l), +(304,659,o), +(282,619,o), +(185,617,cs), +(91,615,l), +(91,585,l), +(312,585,l), +(312,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,l), +(443,729,l), +(262,729,l), +(251,651,o), +(194,602,o), +(91,595,cs), +(29,591,l), +(29,446,l), +(250,451,l), +(250,0,l) +); +} +); +width = 618; +} +); +metricRight = H; +unicode = 49; +userData = { +KernOnName = one; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/one.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/one.numr.glyph new file mode 100644 index 00000000..ca6d87b4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/one.numr.glyph @@ -0,0 +1,94 @@ +{ +color = 6; +glyphname = one.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = one.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +userData = { +KernOnName = one.numr; +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/one.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/one.tf.glyph new file mode 100644 index 00000000..39c05620 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/one.tf.glyph @@ -0,0 +1,141 @@ +{ +glyphname = one.tf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(340,25,l), +(340,729,l), +(301,729,l), +(295,660,o), +(263,584,o), +(153,584,cs), +(118,584,l), +(118,555,l), +(303,555,l), +(303,25,l) +); +}, +{ +closed = 1; +nodes = ( +(550,0,l), +(550,34,l), +(69,34,l), +(69,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(812,0,l), +(812,166,l), +(639,166,l), +(639,721,l), +(456,721,l), +(448,643,o), +(393,591,o), +(287,591,cs), +(255,591,l), +(255,443,l), +(444,443,l), +(444,166,l), +(248,166,l), +(248,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(426,151,l), +(426,721,l), +(247,721,l), +(239,643,o), +(171,591,o), +(78,591,cs), +(46,591,l), +(46,446,l), +(235,446,l), +(235,151,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(598,167,l), +(31,167,l), +(31,0,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/oneeighth.glyph b/sources/MonaSansMono.glyphspackage/glyphs/oneeighth.glyph new file mode 100644 index 00000000..0cbb9e35 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/oneeighth.glyph @@ -0,0 +1,66 @@ +{ +color = 6; +glyphname = oneeighth; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (-126,0); +ref = one.numr; +}, +{ +alignment = -1; +pos = (-24,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (247,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-85,72); +ref = one.numr; +scale = (0.9,0.9); +}, +{ +alignment = -1; +pos = (-5,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (281,0); +ref = eight.dnom; +scale = (0.9,0.9); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 618; +} +); +metricWidth = H; +unicode = 8539; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/onehalf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/onehalf.glyph new file mode 100644 index 00000000..6a9adbf8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/onehalf.glyph @@ -0,0 +1,66 @@ +{ +color = 6; +glyphname = onehalf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (-126,0); +ref = one.numr; +}, +{ +alignment = -1; +pos = (-24,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (270,0); +ref = two.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-85,72); +ref = one.numr; +scale = (0.9,0.9); +}, +{ +alignment = -1; +pos = (1,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (293,0); +ref = two.dnom; +scale = (0.9,0.9); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 618; +} +); +metricWidth = H; +unicode = 189; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/oneinferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/oneinferior.glyph new file mode 100644 index 00000000..a3073256 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/oneinferior.glyph @@ -0,0 +1,128 @@ +{ +glyphname = oneinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (225,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(258,-40,l), +(258,393,l), +(224,393,l), +(220,351,o), +(198,323,o), +(140,323,cs), +(124,323,l), +(124,297,l), +(224,297,l), +(224,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (216,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-40,l), +(323,393,l), +(204,393,l), +(199,345,o), +(155,313,o), +(100,313,cs), +(80,313,l), +(80,216,l), +(196,216,l), +(196,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 619; +} +); +unicode = 8321; +userData = { +KernOnName = oneinferior; +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/onequarter.glyph b/sources/MonaSansMono.glyphspackage/glyphs/onequarter.glyph new file mode 100644 index 00000000..3ac99a4b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/onequarter.glyph @@ -0,0 +1,66 @@ +{ +color = 6; +glyphname = onequarter; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (-126,0); +ref = one.numr; +}, +{ +alignment = -1; +pos = (-24,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (247,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-85,72); +ref = one.numr; +scale = (0.9,0.9); +}, +{ +alignment = -1; +pos = (1,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (293,0); +ref = four.dnom; +scale = (0.9,0.9); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = one.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = one.numr; +}; +width = 618; +} +); +metricWidth = H; +unicode = 188; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/onesuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/onesuperior.glyph new file mode 100644 index 00000000..a504353a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/onesuperior.glyph @@ -0,0 +1,99 @@ +{ +color = 6; +glyphname = onesuperior; +kernLeft = onesuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = oneinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = oneinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = oneinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = oneinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = oneinferior; +}; +width = 619; +} +); +unicode = 185; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ordfeminine.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ordfeminine.glyph new file mode 100644 index 00000000..fca0b37e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ordfeminine.glyph @@ -0,0 +1,108 @@ +{ +glyphname = ordfeminine; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(342,386,o), +(389,415,o), +(407,467,c), +(409,467,l), +(409,391,l), +(444,391,l), +(444,729,l), +(411,729,l), +(409,654,l), +(407,654,l), +(390,702,o), +(348,735,o), +(287,735,cs), +(206,735,o), +(151,670,o), +(151,560,cs), +(151,451,o), +(206,386,o), +(287,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,416,o), +(187,469,o), +(187,560,cs), +(187,653,o), +(231,705,o), +(297,705,cs), +(368,705,o), +(408,645,o), +(408,583,cs), +(408,538,ls), +(408,476,o), +(368,416,o), +(297,416,cs) +); +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(301,370,o), +(338,396,o), +(353,430,c), +(359,430,l), +(359,377,l), +(487,377,l), +(487,731,l), +(364,731,l), +(359,678,l), +(353,678,l), +(337,714,o), +(299,738,o), +(249,738,cs), +(166,738,o), +(111,679,o), +(111,554,cs), +(111,429,o), +(166,370,o), +(249,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,472,o), +(241,496,o), +(241,554,cs), +(241,613,o), +(264,636,o), +(300,636,cs), +(342,636,o), +(358,602,o), +(358,568,cs), +(358,540,ls), +(358,506,o), +(342,472,o), +(300,472,cs) +); +} +); +width = 619; +} +); +unicode = 170; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ordmasculine.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ordmasculine.glyph new file mode 100644 index 00000000..80b9af83 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ordmasculine.glyph @@ -0,0 +1,136 @@ +{ +glyphname = ordmasculine; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,392); +}, +{ +name = center; +pos = (309,561); +}, +{ +name = ogonek; +pos = (460,399); +}, +{ +name = top; +pos = (309,730); +}, +{ +name = topright; +pos = (485,730); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(403,386,o), +(464,457,o), +(464,560,cs), +(464,665,o), +(402,734,o), +(310,734,cs), +(216,734,o), +(154,662,o), +(154,559,cs), +(154,455,o), +(217,386,o), +(310,386,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,417,o), +(190,473,o), +(190,559,cs), +(190,648,o), +(238,703,o), +(310,703,cs), +(383,703,o), +(429,647,o), +(429,560,cs), +(429,472,o), +(381,417,o), +(310,417,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,377); +}, +{ +name = center; +pos = (309,554); +}, +{ +name = ogonek; +pos = (467,384); +}, +{ +name = top; +pos = (309,731); +}, +{ +name = topright; +pos = (494,731); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(426,370,o), +(491,444,o), +(491,554,cs), +(491,671,o), +(418,738,o), +(309,738,cs), +(192,738,o), +(127,664,o), +(127,554,cs), +(127,437,o), +(200,370,o), +(309,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,472,o), +(256,495,o), +(256,554,cs), +(256,613,o), +(277,636,o), +(309,636,cs), +(341,636,o), +(362,614,o), +(362,554,cs), +(362,494,o), +(341,472,o), +(309,472,cs) +); +} +); +width = 618; +} +); +unicode = 186; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/oslash.glyph b/sources/MonaSansMono.glyphspackage/glyphs/oslash.glyph new file mode 100644 index 00000000..334c1e02 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/oslash.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = oslash; +kernLeft = oslash; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +ref = slashlongcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +ref = slashlongcomb; +} +); +width = 618; +} +); +unicode = 248; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/otilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/otilde.glyph new file mode 100644 index 00000000..53f4d0b4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/otilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = otilde; +kernLeft = egrave; +kernRight = o; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = o; +}, +{ +pos = (3,-155); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = o; +}, +{ +pos = (-1,-134); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 245; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/p.glyph b/sources/MonaSansMono.glyphspackage/glyphs/p.glyph new file mode 100644 index 00000000..359fae7c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/p.glyph @@ -0,0 +1,268 @@ +{ +glyphname = p; +kernLeft = n; +kernRight = p; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (305,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(140,-167,l), +(140,119,l), +(149,119,l), +(174,43,o), +(240,-9,o), +(333,-9,cs), +(459,-9,o), +(545,92,o), +(545,258,cs), +(545,423,o), +(459,525,o), +(333,525,cs), +(240,525,o), +(174,472,o), +(149,396,c), +(139,396,l), +(137,517,l), +(103,517,l), +(103,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(208,24,o), +(140,120,o), +(140,222,cs), +(140,293,ls), +(140,395,o), +(208,491,o), +(325,491,cs), +(434,491,o), +(507,405,o), +(507,258,cs), +(507,109,o), +(434,24,o), +(325,24,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(246,-167,l), +(246,79,l), +(259,79,l), +(276,27,o), +(324,-10,o), +(389,-10,cs), +(509,-10,o), +(588,93,o), +(588,272,cs), +(588,451,o), +(509,554,o), +(389,554,cs), +(324,554,o), +(276,517,o), +(259,465,c), +(244,465,l), +(237,544,l), +(54,544,l), +(54,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(273,143,o), +(246,181,o), +(246,249,cs), +(246,295,ls), +(246,358,o), +(266,401,o), +(317,401,cs), +(375,401,o), +(392,349,o), +(392,272,cs), +(392,195,o), +(372,143,o), +(312,143,cs) +); +} +); +width = 618; +} +); +metricLeft = l; +metricRight = b; +unicode = 112; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/paragraph.glyph b/sources/MonaSansMono.glyphspackage/glyphs/paragraph.glyph new file mode 100644 index 00000000..db96914b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/paragraph.glyph @@ -0,0 +1,127 @@ +{ +color = 0; +glyphname = paragraph; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(289,0,l), +(289,693,l), +(414,693,l), +(414,0,l), +(452,0,l), +(452,693,l), +(562,693,l), +(562,729,l), +(251,729,ls), +(140,729,o), +(70,672,o), +(70,571,cs), +(70,471,o), +(135,405,o), +(251,406,c), +(251,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +7 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +1, +6 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +3 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(318,0,l), +(318,569,l), +(401,569,l), +(401,0,l), +(580,0,l), +(580,569,l), +(653,569,l), +(653,729,l), +(190,729,ls), +(48,729,o), +(-34,657,o), +(-34,528,cs), +(-34,409,o), +(49,332,o), +(190,337,c), +(190,0,l) +); +} +); +width = 618; +} +); +unicode = 182; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/parenleft.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/parenleft.case.glyph new file mode 100644 index 00000000..d1b1de84 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/parenleft.case.glyph @@ -0,0 +1,85 @@ +{ +glyphname = parenleft.case; +kernRight = parenleft.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(425,-63,l), +(327,26,o), +(260,188,o), +(260,365,cs), +(260,531,o), +(320,698,o), +(425,793,c), +(388,793,l), +(283,697,o), +(223,532,o), +(223,365,cs), +(223,198,o), +(283,33,o), +(388,-63,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenleft; +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,-63,l), +(395,47,o), +(340,212,o), +(340,365,cs), +(340,518,o), +(395,683,o), +(482,793,c), +(320,793,l), +(226,702,o), +(155,531,o), +(155,365,cs), +(155,199,o), +(226,28,o), +(320,-63,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenleft; +}; +width = 619; +} +); +userData = { +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/parenleft.glyph b/sources/MonaSansMono.glyphspackage/glyphs/parenleft.glyph new file mode 100644 index 00000000..ab2ba860 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/parenleft.glyph @@ -0,0 +1,78 @@ +{ +glyphname = parenleft; +kernLeft = parenleft; +kernRight = parenleft; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-167,l), +(324,-68,o), +(232,115,o), +(232,313,cs), +(232,499,o), +(313,686,o), +(457,793,c), +(420,793,l), +(276,684,o), +(196,500,o), +(196,313,cs), +(196,126,o), +(276,-58,o), +(420,-167,c) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(487,-167,l), +(396,-48,o), +(335,144,o), +(335,313,cs), +(335,482,o), +(396,674,o), +(487,793,c), +(325,793,l), +(220,681,o), +(150,489,o), +(150,313,cs), +(150,137,o), +(220,-55,o), +(325,-167,c) +); +} +); +width = 619; +} +); +unicode = 40; +userData = { +KernOnName = parenleft; +KernOnSpecialSpacing = { +R = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/parenright.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/parenright.case.glyph new file mode 100644 index 00000000..dcd465ab --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/parenright.case.glyph @@ -0,0 +1,60 @@ +{ +color = 6; +glyphname = parenright.case; +kernLeft = parenright.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +angle = 180; +pos = (619,729); +ref = parenleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenright; +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +angle = 180; +pos = (619,729); +ref = parenleft.case; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = parenright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = parenright; +}; +width = 619; +} +); +metricLeft = parenright; +metricRight = parenright; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/parenright.glyph b/sources/MonaSansMono.glyphspackage/glyphs/parenright.glyph new file mode 100644 index 00000000..303a5c9d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/parenright.glyph @@ -0,0 +1,58 @@ +{ +color = 6; +glyphname = parenright; +kernLeft = parenright; +kernRight = parenright; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (619,626); +ref = parenleft; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +13 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (619,626); +ref = parenleft; +} +); +width = 619; +} +); +metricLeft = "=|parenleft"; +metricRight = "=|parenleft"; +unicode = 41; +userData = { +KernOnSpecialSpacing = { +L = parenthesis; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/percent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/percent.glyph new file mode 100644 index 00000000..f7ca5521 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/percent.glyph @@ -0,0 +1,489 @@ +{ +glyphname = percent; +kernLeft = percent; +kernRight = percent; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(99,0,l), +(561,729,l), +(519,729,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(156,320,o), +(212,391,o), +(212,523,cs), +(212,654,o), +(157,725,o), +(75,725,cs), +(-8,725,o), +(-64,655,o), +(-64,523,cs), +(-64,392,o), +(-9,320,o), +(75,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,352,o), +(-27,411,o), +(-27,523,cs), +(-27,634,o), +(10,693,o), +(75,693,cs), +(138,693,o), +(175,635,o), +(175,523,cs), +(175,411,o), +(138,352,o), +(75,352,cs) +); +}, +{ +closed = 1; +nodes = ( +(627,-5,o), +(683,66,o), +(683,197,cs), +(683,329,o), +(628,400,o), +(546,400,cs), +(462,400,o), +(407,329,o), +(407,198,cs), +(407,66,o), +(462,-5,o), +(546,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(481,27,o), +(444,85,o), +(444,197,cs), +(444,310,o), +(481,368,o), +(546,368,cs), +(608,368,o), +(645,310,o), +(645,197,cs), +(645,84,o), +(608,27,o), +(546,27,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(99,0,l), +(561,729,l), +(519,729,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(226,414,o), +(282,471,o), +(282,577,cs), +(282,682,o), +(227,739,o), +(145,739,cs), +(62,739,o), +(6,682,o), +(6,577,cs), +(6,471,o), +(61,414,o), +(145,414,cs) +); +}, +{ +closed = 1; +nodes = ( +(80,446,o), +(43,492,o), +(43,577,cs), +(43,662,o), +(80,707,o), +(145,707,cs), +(208,707,o), +(245,662,o), +(245,577,cs), +(245,492,o), +(208,446,o), +(145,446,cs) +); +}, +{ +closed = 1; +nodes = ( +(557,-5,o), +(613,52,o), +(613,157,cs), +(613,263,o), +(558,320,o), +(476,320,cs), +(392,320,o), +(337,263,o), +(337,158,cs), +(337,52,o), +(392,-5,o), +(476,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(411,27,o), +(374,72,o), +(374,157,cs), +(374,243,o), +(411,288,o), +(476,288,cs), +(538,288,o), +(575,243,o), +(575,157,cs), +(575,71,o), +(538,27,o), +(476,27,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +4, +11 +); +stem = -2; +target = ( +3, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +5 +); +stem = -2; +target = ( +4, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(139,0,l), +(604,729,l), +(480,729,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(163,348,o), +(228,416,o), +(228,536,cs), +(228,646,o), +(172,726,o), +(71,726,cs), +(-27,726,o), +(-91,655,o), +(-91,539,cs), +(-91,427,o), +(-35,348,o), +(67,348,cs) +); +}, +{ +closed = 1; +nodes = ( +(51,450,o), +(31,449,o), +(31,537,cs), +(31,626,o), +(52,623,o), +(68,623,cs), +(86,623,o), +(106,625,o), +(106,537,cs), +(106,448,o), +(86,450,o), +(68,450,cs) +); +}, +{ +closed = 1; +nodes = ( +(646,-3,o), +(710,66,o), +(710,186,cs), +(710,296,o), +(654,376,o), +(553,376,cs), +(456,376,o), +(391,306,o), +(391,188,cs), +(391,78,o), +(447,-3,o), +(549,-3,cs) +); +}, +{ +closed = 1; +nodes = ( +(534,100,o), +(513,98,o), +(513,187,cs), +(513,276,o), +(534,273,o), +(551,273,cs), +(568,273,o), +(588,275,o), +(588,187,cs), +(588,98,o), +(568,100,o), +(551,100,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(142,0,l), +(607,729,l), +(483,729,l), +(18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(240,429,o), +(294,485,o), +(294,579,cs), +(294,673,o), +(240,729,o), +(148,729,cs), +(56,729,o), +(2,673,o), +(2,579,cs), +(2,485,o), +(56,429,o), +(148,429,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,529,o), +(113,549,o), +(113,579,cs), +(113,609,o), +(121,629,o), +(148,629,cs), +(175,629,o), +(183,609,o), +(183,579,cs), +(183,549,o), +(175,529,o), +(148,529,cs) +); +}, +{ +closed = 1; +nodes = ( +(563,-10,o), +(617,46,o), +(617,140,cs), +(617,234,o), +(563,290,o), +(471,290,cs), +(379,290,o), +(325,234,o), +(325,140,cs), +(325,46,o), +(379,-10,o), +(471,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(444,90,o), +(436,110,o), +(436,140,cs), +(436,170,o), +(444,190,o), +(471,190,cs), +(498,190,o), +(506,170,o), +(506,140,cs), +(506,110,o), +(498,90,o), +(471,90,cs) +); +} +); +width = 619; +} +); +metricRight = "=|"; +unicode = 37; +userData = { +KernOnName = percent; +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/period.glyph b/sources/MonaSansMono.glyphspackage/glyphs/period.glyph new file mode 100644 index 00000000..18f6de2b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/period.glyph @@ -0,0 +1,97 @@ +{ +glyphname = period; +kernLeft = period; +kernRight = period; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (216,0); +}, +{ +name = "#exit"; +pos = (402,0); +}, +{ +name = _top; +pos = (309,83); +}, +{ +name = top; +pos = (309,524); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(336,-7,o), +(356,12,o), +(356,38,cs), +(356,64,o), +(336,83,o), +(309,83,cs), +(282,83,o), +(262,64,o), +(262,38,cs), +(262,12,o), +(282,-7,o), +(309,-7,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (160,0); +}, +{ +name = "#exit"; +pos = (458,0); +}, +{ +name = _top; +pos = (309,243); +}, +{ +name = top; +pos = (309,552); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(384,-8,o), +(435,42,o), +(435,118,cs), +(435,193,o), +(384,243,o), +(309,243,cs), +(234,243,o), +(183,193,o), +(183,118,cs), +(183,42,o), +(234,-8,o), +(309,-8,cs) +); +} +); +width = 618; +} +); +unicode = 46; +userData = { +KernOnName = period; +KernOnSpecialSpacing = { +L = period; +R = period; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/period.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/period.ss01.glyph new file mode 100644 index 00000000..0dc5840d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/period.ss01.glyph @@ -0,0 +1,73 @@ +{ +glyphname = period.ss01; +kernLeft = period.ss01; +kernRight = period.ss01; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (224,0); +}, +{ +name = "#exit"; +pos = (410,0); +}, +{ +name = _top; +pos = (310,61); +}, +{ +name = top; +pos = (310,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(332,0,l), +(332,61,l), +(287,61,l), +(287,0,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (175,0); +}, +{ +name = "#exit"; +pos = (453,0); +}, +{ +name = _top; +pos = (310,164); +}, +{ +name = top; +pos = (310,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(399,0,l), +(399,164,l), +(220,164,l), +(220,0,l) +); +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.glyph b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.glyph new file mode 100644 index 00000000..06adb6d3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.glyph @@ -0,0 +1,100 @@ +{ +glyphname = periodcentered; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(355,206,o), +(382,236,o), +(382,277,cs), +(382,318,o), +(355,348,o), +(310,348,cs), +(267,348,o), +(237,318,o), +(237,277,cs), +(237,236,o), +(267,206,o), +(310,206,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(338,232,o), +(355,251,o), +(355,277,cs), +(355,303,o), +(338,322,o), +(310,322,cs), +(283,322,o), +(264,303,o), +(264,277,cs), +(264,251,o), +(283,232,o), +(310,232,cs) +); +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(367,181,o), +(406,222,o), +(406,277,cs), +(406,332,o), +(367,373,o), +(309,373,cs), +(253,373,o), +(212,332,o), +(212,277,cs), +(212,222,o), +(253,181,o), +(309,181,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(367,181,o), +(406,222,o), +(406,277,cs), +(406,332,o), +(367,373,o), +(309,373,cs), +(253,373,o), +(212,332,o), +(212,277,cs), +(212,222,o), +(253,181,o), +(309,181,cs) +); +} +); +width = 618; +} +); +unicode = 183; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.glyph new file mode 100644 index 00000000..8cc61d39 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.glyph @@ -0,0 +1,63 @@ +{ +glyphname = periodcentered.loclCAT.case; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (110,379); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(182,336,o), +(197,353,o), +(197,377,cs), +(197,401,o), +(182,418,o), +(156,418,cs), +(131,418,o), +(114,401,o), +(114,377,cs), +(114,353,o), +(131,336,o), +(156,336,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (82,395); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(246,292,o), +(285,333,o), +(285,388,cs), +(285,443,o), +(246,484,o), +(188,484,cs), +(132,484,o), +(91,443,o), +(91,388,cs), +(91,333,o), +(132,292,o), +(188,292,cs) +); +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.ss01.glyph new file mode 100644 index 00000000..442c09b5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.case.ss01.glyph @@ -0,0 +1,89 @@ +{ +glyphname = periodcentered.loclCAT.case.ss01; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (112,383); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(182,336,o), +(197,353,o), +(197,377,cs), +(197,401,o), +(182,418,o), +(156,418,cs), +(131,418,o), +(114,401,o), +(114,377,cs), +(114,353,o), +(131,336,o), +(156,336,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(195,338,l), +(195,415,l), +(117,415,l), +(117,338,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (82,397); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(246,292,o), +(285,333,o), +(285,388,cs), +(285,443,o), +(246,484,o), +(188,484,cs), +(132,484,o), +(91,443,o), +(91,388,cs), +(91,333,o), +(132,292,o), +(188,292,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(260,302,l), +(260,475,l), +(84,475,l), +(84,302,l) +); +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.glyph new file mode 100644 index 00000000..48b8f285 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.glyph @@ -0,0 +1,67 @@ +{ +glyphname = periodcentered.loclCAT; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (96,338); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(336,306,o), +(351,323,o), +(351,347,cs), +(351,371,o), +(336,388,o), +(310,388,cs), +(285,388,o), +(268,371,o), +(268,347,cs), +(268,323,o), +(285,306,o), +(310,306,cs) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (76,338); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(367,252,o), +(406,293,o), +(406,348,cs), +(406,403,o), +(367,444,o), +(309,444,cs), +(253,444,o), +(212,403,o), +(212,348,cs), +(212,293,o), +(253,252,o), +(309,252,cs) +); +} +); +width = 618; +} +); +metricRight = "=|"; +userData = { +KernOnName = periodcentered.loclCAT; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.ss01.glyph new file mode 100644 index 00000000..e7676d81 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.loclC_A_T_.ss01.glyph @@ -0,0 +1,48 @@ +{ +glyphname = periodcentered.loclCAT.ss01; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (103,347); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(348,309,l), +(348,386,l), +(270,386,l), +(270,309,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (103,345); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(397,262,l), +(397,435,l), +(221,435,l), +(221,262,l) +); +} +); +width = 618; +} +); +metricRight = "=|"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.ss01.glyph new file mode 100644 index 00000000..06579610 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/periodcentered.ss01.glyph @@ -0,0 +1,84 @@ +{ +glyphname = periodcentered.ss01; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(392,206,o), +(419,236,o), +(419,277,cs), +(419,318,o), +(392,348,o), +(347,348,cs), +(304,348,o), +(274,318,o), +(274,277,cs), +(274,236,o), +(304,206,o), +(347,206,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(341,238,l), +(341,323,l), +(278,323,l), +(278,238,l) +); +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(357,181,o), +(396,222,o), +(396,277,cs), +(396,332,o), +(357,373,o), +(299,373,cs), +(243,373,o), +(202,332,o), +(202,277,cs), +(202,222,o), +(243,181,o), +(299,181,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(399,200,l), +(399,364,l), +(220,364,l), +(220,200,l) +); +} +); +width = 619; +} +); +metricRight = "=|"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/perthousand.glyph b/sources/MonaSansMono.glyphspackage/glyphs/perthousand.glyph new file mode 100644 index 00000000..192cc610 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/perthousand.glyph @@ -0,0 +1,428 @@ +{ +glyphname = perthousand; +kernLeft = percent; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(-66,0,l), +(396,729,l), +(354,729,l), +(-107,0,l) +); +}, +{ +closed = 1; +nodes = ( +(11,324,o), +(67,395,o), +(67,527,cs), +(67,658,o), +(12,729,o), +(-70,729,cs), +(-153,729,o), +(-209,659,o), +(-209,527,cs), +(-209,396,o), +(-154,324,o), +(-70,324,cs) +); +}, +{ +closed = 1; +nodes = ( +(-135,356,o), +(-172,415,o), +(-172,527,cs), +(-172,638,o), +(-135,697,o), +(-70,697,cs), +(-7,697,o), +(30,639,o), +(30,527,cs), +(30,415,o), +(-7,356,o), +(-70,356,cs) +); +}, +{ +closed = 1; +nodes = ( +(442,-5,o), +(498,66,o), +(498,197,cs), +(498,329,o), +(443,400,o), +(361,400,cs), +(277,400,o), +(222,329,o), +(222,198,cs), +(222,66,o), +(277,-5,o), +(361,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,27,o), +(259,85,o), +(259,197,cs), +(259,310,o), +(296,368,o), +(361,368,cs), +(423,368,o), +(460,310,o), +(460,197,cs), +(460,84,o), +(423,27,o), +(361,27,cs) +); +}, +{ +closed = 1; +nodes = ( +(772,-5,o), +(828,66,o), +(828,197,cs), +(828,329,o), +(773,400,o), +(691,400,cs), +(607,400,o), +(552,329,o), +(552,198,cs), +(552,66,o), +(607,-5,o), +(691,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(626,27,o), +(589,85,o), +(589,197,cs), +(589,310,o), +(626,368,o), +(691,368,cs), +(753,368,o), +(790,310,o), +(790,197,cs), +(790,84,o), +(753,27,o), +(691,27,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = percent; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = percent; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +4, +11 +); +stem = -2; +target = ( +3, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +5 +); +stem = -2; +target = ( +4, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +5, +8 +); +stem = -2; +target = ( +6, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +6, +8 +); +stem = -2; +target = ( +5, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(-36,0,l), +(429,729,l), +(305,729,l), +(-160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(0,336,o), +(65,398,o), +(65,533,cs), +(65,667,o), +(0,729,o), +(-95,729,cs), +(-190,729,o), +(-255,667,o), +(-255,533,cs), +(-255,398,o), +(-190,336,o), +(-95,336,cs) +); +}, +{ +closed = 1; +nodes = ( +(-125,440,o), +(-134,476,o), +(-134,533,cs), +(-134,589,o), +(-125,625,o), +(-95,625,cs), +(-65,625,o), +(-56,589,o), +(-56,533,cs), +(-56,476,o), +(-65,440,o), +(-95,440,cs) +); +}, +{ +closed = 1; +nodes = ( +(459,-10,o), +(524,52,o), +(524,187,cs), +(524,321,o), +(459,383,o), +(364,383,cs), +(269,383,o), +(204,321,o), +(204,187,cs), +(204,52,o), +(269,-10,o), +(364,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,94,o), +(325,130,o), +(325,187,cs), +(325,243,o), +(334,279,o), +(364,279,cs), +(394,279,o), +(403,243,o), +(403,187,cs), +(403,130,o), +(394,94,o), +(364,94,cs) +); +}, +{ +closed = 1; +nodes = ( +(809,-10,o), +(874,52,o), +(874,187,cs), +(874,321,o), +(809,383,o), +(714,383,cs), +(619,383,o), +(554,321,o), +(554,187,cs), +(554,52,o), +(619,-10,o), +(714,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(684,94,o), +(675,130,o), +(675,187,cs), +(675,243,o), +(684,279,o), +(714,279,cs), +(744,279,o), +(753,243,o), +(753,187,cs), +(753,130,o), +(744,94,o), +(714,94,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = percent; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = percent; +}; +width = 619; +} +); +metricLeft = percent; +metricRight = percent; +unicode = 8240; +userData = { +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/peseta.glyph b/sources/MonaSansMono.glyphspackage/glyphs/peseta.glyph new file mode 100644 index 00000000..61639e7d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/peseta.glyph @@ -0,0 +1,208 @@ +{ +color = 0; +export = 0; +glyphname = peseta; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(-272,0,l), +(-272,704,l), +(-286,692,l), +(-66,692,ls), +(54,692,o), +(122,623,o), +(122,509,cs), +(122,398,o), +(55,325,o), +(-66,325,cs), +(-281,325,l), +(-281,289,l), +(-64,289,ls), +(74,289,o), +(162,375,o), +(162,509,cs), +(162,649,o), +(75,729,o), +(-63,729,cs), +(-310,729,l), +(-310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(503,0,l), +(503,34,l), +(423,34,ls), +(382,34,o), +(372,44,o), +(372,85,cs), +(372,485,l), +(503,485,l), +(503,517,l), +(372,517,l), +(372,690,l), +(336,681,l), +(336,517,l), +(229,517,l), +(229,485,l), +(336,485,l), +(336,79,ls), +(336,23,o), +(359,0,o), +(415,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(896,-10,o), +(973,42,o), +(973,135,cs), +(973,239,o), +(896,265,o), +(788,281,cs), +(681,296,o), +(631,320,o), +(631,389,cs), +(631,452,o), +(684,494,o), +(778,494,cs), +(864,494,o), +(922,460,o), +(927,373,c), +(963,373,l), +(960,469,o), +(893,527,o), +(777,527,cs), +(667,527,o), +(594,470,o), +(594,385,cs), +(594,293,o), +(659,264,o), +(782,246,cs), +(890,230,o), +(935,207,o), +(935,132,cs), +(935,62,o), +(880,23,o), +(781,23,cs), +(686,23,o), +(622,63,o), +(616,149,c), +(579,149,l), +(584,53,o), +(656,-10,o), +(780,-10,cs) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(-247,0,l), +(-247,583,l), +(-269,559,l), +(-175,559,ls), +(-123,559,o), +(-88,532,o), +(-88,474,cs), +(-88,422,o), +(-116,387,o), +(-175,387,cs), +(-263,387,l), +(-263,232,l), +(-139,232,ls), +(26,232,o), +(118,334,o), +(118,482,cs), +(118,639,o), +(16,729,o), +(-139,729,cs), +(-450,729,l), +(-450,0,l) +); +}, +{ +closed = 1; +nodes = ( +(551,0,l), +(551,153,l), +(491,153,ls), +(468,153,o), +(452,160,o), +(452,188,cs), +(452,391,l), +(551,391,l), +(551,544,l), +(452,544,l), +(452,699,l), +(261,683,l), +(261,544,l), +(170,544,l), +(170,391,l), +(261,391,l), +(261,152,ls), +(261,61,o), +(292,0,o), +(422,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1003,-10,o), +(1104,56,o), +(1104,174,cs), +(1104,279,o), +(1049,326,o), +(907,344,cs), +(832,354,o), +(806,360,o), +(806,388,cs), +(806,411,o), +(825,422,o), +(853,422,cs), +(885,422,o), +(904,409,o), +(905,383,c), +(1093,383,l), +(1087,485,o), +(994,554,o), +(859,554,cs), +(713,554,o), +(615,481,o), +(615,371,cs), +(615,262,o), +(681,220,o), +(827,199,cs), +(889,190,o), +(910,186,o), +(910,157,cs), +(910,136,o), +(893,122,o), +(856,122,cs), +(819,122,o), +(793,136,o), +(790,171,c), +(602,171,l), +(603,63,o), +(700,-10,o), +(851,-10,cs) +); +} +); +width = 618; +} +); +unicode = 8359; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/pi.glyph b/sources/MonaSansMono.glyphspackage/glyphs/pi.glyph new file mode 100644 index 00000000..1ba1f1db --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/pi.glyph @@ -0,0 +1,151 @@ +{ +glyphname = pi; +kernLeft = pi; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(535,-7,o), +(550,-4,o), +(556,1,c), +(556,38,l), +(548,33,o), +(538,29,o), +(521,29,cs), +(477,29,o), +(469,63,o), +(469,118,cs), +(469,485,l), +(557,485,l), +(557,517,l), +(51,517,l), +(51,485,l), +(141,485,l), +(141,0,l), +(178,0,l), +(178,485,l), +(432,485,l), +(432,98,ls), +(432,34,o), +(456,-7,o), +(516,-7,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(542,-6,o), +(582,1,o), +(609,8,c), +(609,132,l), +(600,129,o), +(586,129,o), +(581,129,cs), +(554,129,o), +(534,141,o), +(534,175,cs), +(534,389,l), +(610,389,l), +(610,544,l), +(-7,544,l), +(-7,389,l), +(70,389,l), +(70,0,l), +(256,0,l), +(256,389,l), +(348,389,l), +(348,163,ls), +(348,74,o), +(375,-6,o), +(518,-6,cs) +); +} +); +width = 618; +} +); +unicode = 960; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/plus.glyph b/sources/MonaSansMono.glyphspackage/glyphs/plus.glyph new file mode 100644 index 00000000..c201f36a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/plus.glyph @@ -0,0 +1,85 @@ +{ +glyphname = plus; +kernLeft = plus; +kernRight = plus; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(326,122,l), +(326,345,l), +(548,345,l), +(548,377,l), +(326,377,l), +(326,600,l), +(292,600,l), +(292,377,l), +(70,377,l), +(70,345,l), +(292,345,l), +(292,122,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +3, +3 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +3, +3 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(386,124,l), +(386,286,l), +(546,286,l), +(546,435,l), +(386,435,l), +(386,597,l), +(233,597,l), +(233,435,l), +(73,435,l), +(73,286,l), +(233,286,l), +(233,124,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 43; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/plusminus.glyph b/sources/MonaSansMono.glyphspackage/glyphs/plusminus.glyph new file mode 100644 index 00000000..46439f10 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/plusminus.glyph @@ -0,0 +1,123 @@ +{ +glyphname = plusminus; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(326,162,l), +(326,365,l), +(548,365,l), +(548,397,l), +(326,397,l), +(326,600,l), +(292,600,l), +(292,397,l), +(70,397,l), +(70,365,l), +(292,365,l), +(292,162,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(548,32,l), +(70,32,l), +(70,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(385,194,l), +(385,326,l), +(565,326,l), +(565,475,l), +(385,475,l), +(385,607,l), +(232,607,l), +(232,475,l), +(52,475,l), +(52,326,l), +(232,326,l), +(232,194,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,132,l), +(52,132,l), +(52,0,l) +); +} +); +width = 618; +} +); +metricWidth = zero.tf; +unicode = 177; +userData = { +KernOnSpecialSpacing = { +L = math; +R = math; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/product.glyph b/sources/MonaSansMono.glyphspackage/glyphs/product.glyph new file mode 100644 index 00000000..f17d61fa --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/product.glyph @@ -0,0 +1,104 @@ +{ +glyphname = product; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(66,-151,l), +(66,693,l), +(552,693,l), +(552,-151,l), +(590,-151,l), +(590,729,l), +(28,729,l), +(28,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-151,l), +(180,547,l), +(438,547,l), +(438,-151,l), +(641,-151,l), +(641,729,l), +(-23,729,l), +(-23,-151,l) +); +} +); +width = 618; +} +); +unicode = 8719; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/published.glyph b/sources/MonaSansMono.glyphspackage/glyphs/published.glyph new file mode 100644 index 00000000..6343290d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/published.glyph @@ -0,0 +1,288 @@ +{ +color = 6; +glyphname = published; +layers = ( +{ +background = { +anchors = ( +{ +name = center; +pos = (183,363); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(113,165,l), +(113,532,l), +(227,532,ls), +(292,532,o), +(332,499,o), +(332,440,cs), +(332,382,o), +(293,347,o), +(227,347,cs), +(106,347,l), +(106,319,l), +(231,319,ls), +(314,319,o), +(366,367,o), +(366,441,cs), +(366,517,o), +(314,562,o), +(232,562,cs), +(81,562,l), +(81,165,l) +); +}, +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (39,0); +ref = _published.P; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +9 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +1, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +4 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (192,365); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(166,167,l), +(167,471,l), +(197,471,ls), +(230,471,o), +(259,466,o), +(259,426,cs), +(259,382,o), +(230,378,o), +(197,378,cs), +(151,378,l), +(150,293,l), +(232,293,ls), +(349,293,o), +(398,349,o), +(398,429,cs), +(398,515,o), +(343,564,o), +(232,564,cs), +(28,564,l), +(28,167,l) +); +}, +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +alignment = 1; +pos = (21,0); +ref = _published.P; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 618; +} +); +metricLeft = copyright; +metricRight = copyright; +unicode = 8471; +userData = { +KernOnSpecialSpacing = { +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/q.glyph b/sources/MonaSansMono.glyphspackage/glyphs/q.glyph new file mode 100644 index 00000000..a71a0fdb --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/q.glyph @@ -0,0 +1,326 @@ +{ +glyphname = q; +kernLeft = a; +kernRight = a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = top; +pos = (313,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(521,-167,l), +(521,517,l), +(486,517,l), +(484,398,l), +(481,398,l), +(454,475,o), +(383,526,o), +(285,526,cs), +(156,526,o), +(68,425,o), +(68,259,cs), +(68,94,o), +(156,-8,o), +(285,-8,cs), +(383,-8,o), +(454,44,o), +(481,121,c), +(484,121,l), +(484,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(181,26,o), +(106,112,o), +(106,259,cs), +(106,408,o), +(181,493,o), +(293,493,cs), +(413,493,o), +(483,397,o), +(483,295,cs), +(483,224,ls), +(483,122,o), +(413,26,o), +(293,26,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(515,-167,l), +(515,517,l), +(481,517,l), +(479,398,l), +(469,398,l), +(444,474,o), +(378,526,o), +(285,526,cs), +(159,526,o), +(73,425,o), +(73,259,cs), +(73,94,o), +(159,-8,o), +(285,-8,cs), +(378,-8,o), +(444,45,o), +(469,121,c), +(478,121,l), +(478,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(184,26,o), +(111,112,o), +(111,259,cs), +(111,408,o), +(184,493,o), +(293,493,cs), +(410,493,o), +(478,397,o), +(478,295,cs), +(478,224,ls), +(478,122,o), +(410,26,o), +(293,26,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +1, +12 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +0 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +1 +); +stem = -2; +target = ( +1, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +0, +10 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = top; +pos = (310,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(564,-167,l), +(564,544,l), +(379,544,l), +(373,465,l), +(359,465,l), +(342,517,o), +(294,554,o), +(229,554,cs), +(109,554,o), +(30,451,o), +(30,272,cs), +(30,93,o), +(109,-10,o), +(229,-10,cs), +(294,-10,o), +(342,27,o), +(359,79,c), +(372,79,l), +(372,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(243,143,o), +(226,195,o), +(226,272,cs), +(226,349,o), +(246,401,o), +(306,401,cs), +(345,401,o), +(372,363,o), +(372,295,cs), +(372,249,ls), +(372,186,o), +(352,143,o), +(301,143,cs) +); +} +); +width = 618; +} +); +metricLeft = "=|b"; +metricRight = l; +unicode = 113; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/question.glyph b/sources/MonaSansMono.glyphspackage/glyphs/question.glyph new file mode 100644 index 00000000..60a98635 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/question.glyph @@ -0,0 +1,312 @@ +{ +glyphname = question; +kernLeft = question; +kernRight = question; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(317,179,l), +(317,200,ls), +(317,289,o), +(367,316,o), +(430,375,cs), +(492,433,o), +(527,480,o), +(527,553,cs), +(527,665,o), +(446,738,o), +(322,738,cs), +(190,738,o), +(104,655,o), +(105,529,c), +(146,529,l), +(145,628,o), +(208,700,o), +(320,700,cs), +(418,700,o), +(484,644,o), +(484,553,cs), +(484,494,o), +(454,448,o), +(400,398,cs), +(344,347,o), +(275,304,o), +(275,200,cs), +(275,179,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(324,101,l), +(270,101,l), +(270,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(335,184,l), +(335,205,ls), +(335,258,o), +(355,300,o), +(419,367,cs), +(484,436,o), +(512,493,o), +(512,552,cs), +(512,663,o), +(439,738,o), +(312,738,cs), +(184,738,o), +(99,654,o), +(100,529,c), +(137,529,l), +(136,631,o), +(199,705,o), +(310,705,cs), +(408,705,o), +(473,655,o), +(473,552,cs), +(473,500,o), +(448,452,o), +(391,390,cs), +(320,313,o), +(298,261,o), +(298,201,cs), +(298,184,l) +); +}, +{ +closed = 1; +nodes = ( +(341,-7,o), +(360,11,o), +(360,37,cs), +(360,62,o), +(341,80,o), +(315,80,cs), +(290,80,o), +(270,62,o), +(270,37,cs), +(270,11,o), +(290,-7,o), +(315,-7,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(397,226,l), +(397,233,ls), +(397,259,o), +(408,282,o), +(452,326,cs), +(517,392,o), +(570,442,o), +(570,534,cs), +(570,656,o), +(476,738,o), +(313,738,cs), +(147,738,o), +(39,659,o), +(40,509,c), +(222,509,l), +(222,551,o), +(252,578,o), +(304,578,cs), +(348,578,o), +(378,555,o), +(378,514,cs), +(378,475,o), +(359,451,o), +(313,404,cs), +(253,343,o), +(230,299,o), +(230,245,cs), +(230,226,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(398,152,l), +(228,152,l), +(228,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(400,253,l), +(400,259,ls), +(400,286,o), +(429,319,o), +(476,358,cs), +(543,414,o), +(573,466,o), +(573,533,cs), +(573,658,o), +(473,738,o), +(315,738,cs), +(146,738,o), +(39,643,o), +(40,493,c), +(226,493,l), +(226,544,o), +(258,578,o), +(306,578,cs), +(349,578,o), +(377,554,o), +(377,521,cs), +(377,494,o), +(357,475,o), +(315,438,cs), +(251,382,o), +(230,332,o), +(230,272,cs), +(230,253,l) +); +}, +{ +closed = 1; +nodes = ( +(379,-8,o), +(426,36,o), +(426,102,cs), +(426,168,o), +(379,212,o), +(311,212,cs), +(243,212,o), +(196,168,o), +(196,102,cs), +(196,36,o), +(243,-8,o), +(311,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 618; +} +); +unicode = 63; +userData = { +KernOnName = question; +KernOnSpecialSpacing = { +L = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/question.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/question.ss01.glyph new file mode 100644 index 00000000..740d925f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/question.ss01.glyph @@ -0,0 +1,289 @@ +{ +glyphname = question.ss01; +kernLeft = question.ss01; +kernRight = question; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(317,179,l), +(317,200,ls), +(317,289,o), +(367,316,o), +(430,375,cs), +(492,433,o), +(527,480,o), +(527,553,cs), +(527,665,o), +(446,738,o), +(322,738,cs), +(190,738,o), +(104,655,o), +(105,529,c), +(146,529,l), +(145,628,o), +(208,700,o), +(320,700,cs), +(418,700,o), +(484,644,o), +(484,553,cs), +(484,494,o), +(454,448,o), +(400,398,cs), +(344,347,o), +(275,304,o), +(275,200,cs), +(275,179,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(324,101,l), +(270,101,l), +(270,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(335,184,l), +(335,205,ls), +(335,258,o), +(355,300,o), +(419,367,cs), +(484,436,o), +(512,493,o), +(512,552,cs), +(512,663,o), +(439,738,o), +(312,738,cs), +(184,738,o), +(99,654,o), +(100,529,c), +(137,529,l), +(136,631,o), +(199,705,o), +(310,705,cs), +(408,705,o), +(473,655,o), +(473,552,cs), +(473,500,o), +(448,452,o), +(391,390,cs), +(320,313,o), +(298,261,o), +(298,201,cs), +(298,184,l) +); +}, +{ +closed = 1; +nodes = ( +(356,0,l), +(356,80,l), +(277,80,l), +(277,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +10 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(397,226,l), +(397,233,ls), +(397,259,o), +(408,282,o), +(452,326,cs), +(517,392,o), +(570,442,o), +(570,534,cs), +(570,656,o), +(476,738,o), +(313,738,cs), +(147,738,o), +(39,659,o), +(40,509,c), +(222,509,l), +(222,551,o), +(252,578,o), +(304,578,cs), +(348,578,o), +(378,555,o), +(378,514,cs), +(378,475,o), +(359,451,o), +(313,404,cs), +(253,343,o), +(230,299,o), +(230,245,cs), +(230,226,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(398,152,l), +(228,152,l), +(228,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(400,253,l), +(400,259,ls), +(400,286,o), +(429,319,o), +(476,358,cs), +(543,414,o), +(573,466,o), +(573,533,cs), +(573,658,o), +(473,738,o), +(315,738,cs), +(146,738,o), +(39,643,o), +(40,493,c), +(226,493,l), +(226,544,o), +(258,578,o), +(306,578,cs), +(349,578,o), +(377,554,o), +(377,521,cs), +(377,494,o), +(357,475,o), +(315,438,cs), +(251,382,o), +(230,332,o), +(230,272,cs), +(230,253,l) +); +}, +{ +closed = 1; +nodes = ( +(407,0,l), +(407,187,l), +(218,187,l), +(218,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/questiondown.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/questiondown.case.glyph new file mode 100644 index 00000000..8ee6b0d5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/questiondown.case.glyph @@ -0,0 +1,28 @@ +{ +color = 6; +glyphname = questiondown.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,213); +ref = questiondown; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,184); +ref = questiondown; +} +); +width = 618; +} +); +metricLeft = questiondown; +metricRight = questiondown; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/questiondown.glyph b/sources/MonaSansMono.glyphspackage/glyphs/questiondown.glyph new file mode 100644 index 00000000..4f4cae6c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/questiondown.glyph @@ -0,0 +1,133 @@ +{ +color = 6; +glyphname = questiondown; +kernRight = questiondown; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (619,517); +ref = question; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (618,544); +ref = question; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 618; +} +); +metricLeft = S; +metricRight = S; +unicode = 191; +userData = { +KernOnSpecialSpacing = { +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/questiondown.ss01.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/questiondown.ss01.case.glyph new file mode 100644 index 00000000..8823f457 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/questiondown.ss01.case.glyph @@ -0,0 +1,28 @@ +{ +color = 6; +glyphname = questiondown.ss01.case; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,213); +ref = questiondown.ss01; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,184); +ref = questiondown.ss01; +} +); +width = 618; +} +); +metricLeft = questiondown.ss01; +metricRight = questiondown.ss01; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/questiondown.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/questiondown.ss01.glyph new file mode 100644 index 00000000..f2e2b24f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/questiondown.ss01.glyph @@ -0,0 +1,126 @@ +{ +color = 6; +glyphname = questiondown.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (619,517); +ref = question.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +2 +); +stem = -2; +target = ( +1, +3 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +24 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +3 +); +stem = -2; +target = ( +1, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +angle = 180; +pos = (618,544); +ref = question.ss01; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = S; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = S; +}; +width = 618; +} +); +metricLeft = "=|question"; +metricRight = "=|question"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotedbl.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotedbl.glyph new file mode 100644 index 00000000..5de44b7b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotedbl.glyph @@ -0,0 +1,69 @@ +{ +color = 6; +glyphname = quotedbl; +kernLeft = quotedbl; +kernRight = quotedbl; +layers = ( +{ +background = { +shapes = ( +{ +pos = (292,0); +ref = quotesingle; +}, +{ +pos = (453,0); +ref = quotesingle; +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (161,0); +ref = quotesingle; +} +); +width = 779; +}, +{ +background = { +shapes = ( +{ +pos = (142,0); +ref = quotesingle; +}, +{ +pos = (389,0); +ref = quotesingle; +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = quotesingle; +}, +{ +alignment = 1; +pos = (247,0); +ref = quotesingle; +} +); +width = 865; +} +); +unicode = 34; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotedblbase.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotedblbase.glyph new file mode 100644 index 00000000..fac60070 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotedblbase.glyph @@ -0,0 +1,78 @@ +{ +color = 6; +glyphname = quotedblbase; +kernRight = quotedblbase; +layers = ( +{ +background = { +shapes = ( +{ +pos = (310,0); +ref = comma; +}, +{ +pos = (439,0); +ref = comma; +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (189,0); +ref = comma; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = comma; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = comma; +}; +width = 808; +}, +{ +background = { +shapes = ( +{ +pos = (124,0); +ref = comma; +}, +{ +pos = (378,0); +ref = comma; +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma; +}, +{ +alignment = 1; +pos = (324,3); +ref = comma; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = comma; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = comma; +}; +width = 942; +} +); +metricLeft = comma; +metricRight = comma; +unicode = 8222; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotedblbase.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotedblbase.ss01.glyph new file mode 100644 index 00000000..2aac4ab1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotedblbase.ss01.glyph @@ -0,0 +1,63 @@ +{ +color = 6; +glyphname = quotedblbase.ss01; +kernRight = quotedblbase.ss01; +layers = ( +{ +background = { +shapes = ( +{ +pos = (456,0); +ref = comma.ss01; +}, +{ +pos = (316,0); +ref = comma.ss01; +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (140,0); +ref = comma.ss01; +} +); +width = 758; +}, +{ +background = { +shapes = ( +{ +pos = (364,0); +ref = comma.ss01; +}, +{ +pos = (104,0); +ref = comma.ss01; +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +pos = (260,0); +ref = comma.ss01; +} +); +width = 878; +} +); +metricLeft = comma.ss01; +metricRight = comma.ss01; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotedblleft.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotedblleft.glyph new file mode 100644 index 00000000..72db3748 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotedblleft.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = quotedblleft; +kernLeft = quotedblleft; +kernRight = quotedblleft; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (808,583); +ref = quotedblbase; +} +); +width = 808; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (942,562); +ref = quotedblbase; +} +); +width = 942; +} +); +metricLeft = "=|comma"; +metricRight = "=|comma"; +unicode = 8220; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotedblleft.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotedblleft.ss01.glyph new file mode 100644 index 00000000..cf843c76 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotedblleft.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = quotedblleft.ss01; +kernLeft = quotedblleft.ss01; +kernRight = quotedblleft.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (758,588); +ref = quotedblbase.ss01; +} +); +width = 758; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (878,552); +ref = quotedblbase.ss01; +} +); +width = 878; +} +); +metricLeft = "=|comma.ss01"; +metricRight = "=|comma.ss01"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotedblright.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotedblright.glyph new file mode 100644 index 00000000..7679f0f9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotedblright.glyph @@ -0,0 +1,39 @@ +{ +color = 6; +glyphname = quotedblright; +kernLeft = quotedblright; +kernRight = quoteright; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +pos = (0,668); +ref = quotedblbase; +} +); +width = 808; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +pos = (0,571); +ref = quotedblbase; +} +); +width = 942; +} +); +metricLeft = comma; +metricRight = comma; +unicode = 8221; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotedblright.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotedblright.ss01.glyph new file mode 100644 index 00000000..8aa9fc63 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotedblright.ss01.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = quotedblright.ss01; +kernLeft = quoteright.ss01; +kernRight = quoteright.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +pos = (0,672); +ref = quotedblbase.ss01; +} +); +width = 758; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +pos = (0,567); +ref = quotedblbase.ss01; +} +); +width = 878; +} +); +metricLeft = comma.ss01; +metricRight = comma.ss01; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quoteleft.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quoteleft.glyph new file mode 100644 index 00000000..4b1d5659 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quoteleft.glyph @@ -0,0 +1,49 @@ +{ +color = 6; +glyphname = quoteleft; +kernLeft = quotedblleft; +kernRight = quoteleft; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (619,605); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblleft; +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (618,562); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblleft; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblleft; +}; +width = 618; +} +); +metricLeft = quotedblleft; +metricRight = quotedblleft; +unicode = 8216; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quoteleft.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quoteleft.ss01.glyph new file mode 100644 index 00000000..84c90db2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quoteleft.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = quoteleft.ss01; +kernLeft = quotedblleft.ss01; +kernRight = quotedblleft.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (618,588); +ref = comma.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +angle = 180; +pos = (618,552); +ref = comma.ss01; +} +); +width = 618; +} +); +metricLeft = "=|comma.ss01"; +metricRight = "=|comma.ss01"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quoteright.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quoteright.glyph new file mode 100644 index 00000000..8d23e165 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quoteright.glyph @@ -0,0 +1,48 @@ +{ +color = 6; +glyphname = quoteright; +kernLeft = quoteright; +kernRight = quoteright; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +pos = (0,685); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblright; +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +pos = (0,571); +ref = quotesinglbase; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedblright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedblright; +}; +width = 618; +} +); +metricLeft = quotedblright; +metricRight = quotedblright; +unicode = 8217; +userData = { +KernOnName = quoteright; +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quoteright.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quoteright.ss01.glyph new file mode 100644 index 00000000..faceae52 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quoteright.ss01.glyph @@ -0,0 +1,32 @@ +{ +color = 6; +glyphname = quoteright.ss01; +kernLeft = quoteright.ss01; +kernRight = quoteright.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 3; +pos = (0,672); +ref = comma.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 3; +pos = (0,567); +ref = comma.ss01; +} +); +width = 618; +} +); +metricLeft = comma.ss01; +metricRight = comma.ss01; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotesinglbase.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotesinglbase.glyph new file mode 100644 index 00000000..f6f88156 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotesinglbase.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = quotesinglbase; +kernRight = quotedblbase; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma; +} +); +width = 618; +} +); +unicode = 8218; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotesinglbase.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotesinglbase.ss01.glyph new file mode 100644 index 00000000..b19744b3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotesinglbase.ss01.glyph @@ -0,0 +1,28 @@ +{ +color = 6; +glyphname = quotesinglbase.ss01; +kernLeft = comma.ss01; +kernRight = quotedblbase.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/quotesingle.glyph b/sources/MonaSansMono.glyphspackage/glyphs/quotesingle.glyph new file mode 100644 index 00000000..9b765b00 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/quotesingle.glyph @@ -0,0 +1,76 @@ +{ +glyphname = quotesingle; +kernLeft = quotedbl; +kernRight = quotedbl; +layers = ( +{ +anchors = ( +{ +name = "#entry"; +pos = (227,0); +}, +{ +name = "#exit"; +pos = (388,0); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(319,492,l), +(325,623,l), +(325,729,l), +(292,729,l), +(292,623,l), +(299,492,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedbl; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedbl; +}; +width = 618; +}, +{ +anchors = ( +{ +name = "#entry"; +pos = (159,0); +}, +{ +name = "#exit"; +pos = (406,0); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(350,410,l), +(394,608,l), +(394,729,l), +(224,729,l), +(224,608,l), +(267,410,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = quotedbl; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = quotedbl; +}; +width = 618; +} +); +unicode = 39; +userData = { +KernOnSpecialSpacing = { +L = quotes; +R = quotes; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/r.glyph b/sources/MonaSansMono.glyphspackage/glyphs/r.glyph new file mode 100644 index 00000000..15512ec6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/r.glyph @@ -0,0 +1,276 @@ +{ +glyphname = r; +kernLeft = n; +kernRight = r; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = top; +pos = (310,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(260,0,l), +(260,336,l), +(269,432,o), +(339,488,o), +(426,488,cs), +(446,488,o), +(465,486,o), +(477,481,c), +(477,517,l), +(467,521,o), +(448,524,o), +(425,524,cs), +(348,524,o), +(284,482,o), +(262,413,c), +(260,413,l), +(256,517,l), +(224,517,l), +(224,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(254,0,l), +(254,336,l), +(265,432,o), +(343,488,o), +(443,488,cs), +(473,488,o), +(501,485,o), +(522,481,c), +(522,517,l), +(502,521,o), +(474,524,o), +(442,524,cs), +(355,524,o), +(285,479,o), +(263,411,c), +(253,411,l), +(250,517,l), +(217,517,l), +(217,0,l) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(439,32,l), +(71,32,l), +(71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(235,485,l), +(235,517,l), +(71,517,l), +(71,485,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +18 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (305,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(339,0,l), +(339,218,l), +(339,339,o), +(397,375,o), +(474,375,cs), +(492,375,o), +(506,373,o), +(519,368,c), +(519,548,l), +(506,551,o), +(494,553,o), +(476,553,cs), +(407,553,o), +(359,526,o), +(335,455,c), +(328,455,l), +(321,544,l), +(148,544,l), +(148,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(339,0,l), +(339,257,ls), +(339,331,o), +(368,372,o), +(492,372,cs), +(514,372,o), +(535,372,o), +(546,372,c), +(546,551,l), +(531,551,o), +(516,551,o), +(496,551,cs), +(421,551,o), +(367,502,o), +(349,425,c), +(328,425,l), +(321,544,l), +(148,544,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(441,0,l), +(441,143,l), +(45,143,l), +(45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(201,401,l), +(201,544,l), +(45,544,l), +(45,401,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = n; +}; +width = 618; +} +); +metricLeft = l; +unicode = 114; +userData = { +KernOnName = r; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/racute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/racute.glyph new file mode 100644 index 00000000..81da9e17 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/racute.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = racute; +kernRight = r; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = r; +}, +{ +pos = (40,-155); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = r; +}, +{ +pos = (44,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 341; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/radical.glyph b/sources/MonaSansMono.glyphspackage/glyphs/radical.glyph new file mode 100644 index 00000000..99ffe54e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/radical.glyph @@ -0,0 +1,96 @@ +{ +glyphname = radical; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(301,-151,l), +(588,729,l), +(546,729,l), +(283,-90,l), +(280,-90,l), +(134,369,l), +(29,369,l), +(29,335,l), +(104,335,l), +(262,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(431,-151,l), +(705,729,l), +(490,729,l), +(299,47,l), +(291,47,l), +(177,493,l), +(-78,493,l), +(-78,312,l), +(19,312,l), +(158,-151,l) +); +} +); +width = 618; +} +); +unicode = 8730; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/rcaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/rcaron.glyph new file mode 100644 index 00000000..47f984f9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/rcaron.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = rcaron; +kernRight = r; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = r; +}, +{ +pos = (1,-155); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = r; +}, +{ +pos = (-4,-134); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 345; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/rcommaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/rcommaaccent.glyph new file mode 100644 index 00000000..8e33426a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/rcommaaccent.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = rcommaaccent; +kernRight = r; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = r; +}, +{ +pos = (-98,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = r; +}, +{ +pos = (-23,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 343; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/registered.glyph b/sources/MonaSansMono.glyphspackage/glyphs/registered.glyph new file mode 100644 index 00000000..43bbd129 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/registered.glyph @@ -0,0 +1,303 @@ +{ +glyphname = registered; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(454,231,o), +(565,337,o), +(565,485,cs), +(565,633,o), +(454,738,o), +(308,738,cs), +(165,738,o), +(55,633,o), +(55,485,cs), +(55,336,o), +(164,231,o), +(308,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,259,o), +(86,353,o), +(86,484,cs), +(86,615,o), +(183,711,o), +(310,711,cs), +(436,711,o), +(535,616,o), +(535,484,cs), +(535,353,o), +(437,259,o), +(310,259,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,349,l), +(242,594,l), +(330,594,ls), +(367,594,o), +(392,579,o), +(392,546,cs), +(392,514,o), +(370,493,o), +(330,493,cs), +(235,493,l), +(235,467,l), +(345,467,ls), +(379,467,o), +(387,451,o), +(387,429,cs), +(387,379,ls), +(387,358,o), +(387,355,o), +(392,349,c), +(417,349,l), +(414,358,o), +(414,371,o), +(414,375,cs), +(414,426,ls), +(414,456,o), +(401,475,o), +(372,482,c), +(372,483,l), +(400,491,o), +(420,514,o), +(420,548,cs), +(420,593,o), +(389,621,o), +(331,621,cs), +(215,621,l), +(215,349,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +2, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +25 +); +stem = -2; +target = ( +3, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +26 +); +stem = -2; +target = ( +2, +0 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +6 +); +stem = -2; +target = ( +2, +13 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +9 +); +stem = -2; +target = ( +2, +21 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(459,207,o), +(578,315,o), +(578,473,cs), +(578,632,o), +(459,738,o), +(309,738,cs), +(159,738,o), +(41,632,o), +(41,473,cs), +(41,315,o), +(159,207,o), +(309,207,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,258,o), +(95,343,o), +(95,471,cs), +(95,600,o), +(192,687,o), +(310,687,cs), +(429,687,o), +(525,600,o), +(525,472,cs), +(525,344,o), +(429,258,o), +(309,258,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,343,l), +(282,541,l), +(321,541,ls), +(340,541,o), +(352,534,o), +(352,516,cs), +(352,502,o), +(343,492,o), +(321,492,cs), +(268,492,l), +(268,436,l), +(320,436,ls), +(343,436,o), +(350,425,o), +(350,407,cs), +(350,373,ls), +(350,358,o), +(351,349,o), +(354,343,c), +(443,343,l), +(439,352,o), +(439,363,o), +(439,374,cs), +(439,417,ls), +(439,446,o), +(430,461,o), +(400,468,c), +(400,469,l), +(426,478,o), +(444,502,o), +(444,533,cs), +(444,576,o), +(412,607,o), +(343,607,cs), +(194,607,l), +(194,343,l) +); +} +); +width = 619; +} +); +unicode = 174; +userData = { +KernOnSpecialSpacing = { +L = superiors; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/rightA_rrow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/rightA_rrow.glyph new file mode 100644 index 00000000..1a180d32 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/rightA_rrow.glyph @@ -0,0 +1,96 @@ +{ +glyphname = rightArrow; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(42,347,l), +(525,347,l), +(403,182,l), +(445,182,l), +(581,365,l), +(445,548,l), +(403,548,l), +(525,383,l), +(42,383,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(22,283,l), +(384,283,l), +(288,135,l), +(454,135,l), +(603,365,l), +(454,595,l), +(288,595,l), +(384,447,l), +(22,447,l) +); +} +); +width = 618; +} +); +unicode = 8594; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ring.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ring.glyph new file mode 100644 index 00000000..0ccc7716 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ring.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = ring; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = ringcomb; +} +); +width = 618; +} +); +unicode = 730; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ringcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ringcomb.glyph new file mode 100644 index 00000000..9a455a9f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ringcomb.glyph @@ -0,0 +1,106 @@ +{ +glyphname = ringcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (309,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(364,721,o), +(402,756,o), +(402,810,cs), +(402,864,o), +(364,899,o), +(309,899,cs), +(254,899,o), +(216,864,o), +(216,810,cs), +(216,756,o), +(254,721,o), +(309,721,cs) +); +}, +{ +closed = 1; +nodes = ( +(272,749,o), +(248,774,o), +(248,810,cs), +(248,846,o), +(272,870,o), +(309,870,cs), +(346,870,o), +(370,846,o), +(370,810,cs), +(370,774,o), +(346,749,o), +(309,749,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _top; +pos = (309,678); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(387,723,o), +(438,771,o), +(438,841,cs), +(438,911,o), +(387,959,o), +(309,959,cs), +(231,959,o), +(180,911,o), +(180,841,cs), +(180,771,o), +(231,723,o), +(309,723,cs) +); +}, +{ +closed = 1; +nodes = ( +(287,804,o), +(272,818,o), +(272,841,cs), +(272,864,o), +(287,878,o), +(309,878,cs), +(331,878,o), +(346,864,o), +(346,841,cs), +(346,818,o), +(331,804,o), +(309,804,cs) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 778; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/rupeeI_ndian.glyph b/sources/MonaSansMono.glyphspackage/glyphs/rupeeI_ndian.glyph new file mode 100644 index 00000000..4c4c9505 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/rupeeI_ndian.glyph @@ -0,0 +1,184 @@ +{ +glyphname = rupeeIndian; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(497,0,l), +(468,206,ls), +(458,276,o), +(423,322,o), +(363,334,c), +(363,340,l), +(451,358,o), +(510,420,o), +(516,507,c), +(588,507,l), +(588,541,l), +(515,541,l), +(512,610,o), +(469,671,o), +(415,691,c), +(415,694,l), +(588,694,l), +(588,729,l), +(42,729,l), +(42,694,l), +(290,694,ls), +(393,694,o), +(462,647,o), +(475,542,c), +(42,542,l), +(42,507,l), +(475,507,l), +(468,414,o), +(407,359,o), +(282,359,cs), +(42,359,l), +(42,323,l), +(280,323,ls), +(351,323,o), +(416,303,o), +(431,197,cs), +(459,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +30 +); +stem = -2; +type = Anchor; +}, +{ +horizontal = 1; +options = 0; +place = ( +280.732, +59.071 +); +stem = -2; +type = TTStem; +}, +{ +horizontal = 1; +options = 0; +place = ( +687.643, +1066.179 +); +stem = -2; +type = TTStem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(526,0,l), +(470,175,ls), +(444,255,o), +(414,291,o), +(356,305,c), +(356,312,l), +(428,325,o), +(482,362,o), +(502,423,c), +(589,423,l), +(589,539,l), +(504,539,l), +(498,565,o), +(479,592,o), +(456,606,c), +(456,613,l), +(589,613,l), +(589,729,l), +(43,729,l), +(43,587,l), +(176,587,ls), +(253,587,o), +(283,568,o), +(294,533,c), +(43,533,l), +(43,438,l), +(295,438,l), +(286,404,o), +(258,384,o), +(183,384,cs), +(43,384,l), +(43,244,l), +(120,244,ls), +(209,244,o), +(229,230,o), +(254,156,cs), +(306,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = H; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = f; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +33 +); +stem = -2; +type = Anchor; +}, +{ +horizontal = 1; +options = 0; +place = ( +211, +173 +); +stem = -2; +type = TTStem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +27 +); +type = TTStem; +} +); +}; +width = 619; +} +); +unicode = 8377; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/s.glyph b/sources/MonaSansMono.glyphspackage/glyphs/s.glyph new file mode 100644 index 00000000..7ffe48d8 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/s.glyph @@ -0,0 +1,297 @@ +{ +glyphname = s; +kernLeft = s; +kernRight = s; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (308,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(427,-10,o), +(504,42,o), +(504,135,cs), +(504,239,o), +(427,265,o), +(319,281,cs), +(212,296,o), +(162,320,o), +(162,389,cs), +(162,452,o), +(215,494,o), +(309,494,cs), +(397,494,o), +(456,458,o), +(458,367,c), +(494,367,l), +(494,466,o), +(427,527,o), +(308,527,cs), +(198,527,o), +(125,470,o), +(125,385,cs), +(125,293,o), +(190,264,o), +(313,246,cs), +(421,230,o), +(466,207,o), +(466,132,cs), +(466,62,o), +(411,23,o), +(312,23,cs), +(213,23,o), +(147,67,o), +(147,160,c), +(110,160,l), +(110,58,o), +(182,-10,o), +(311,-10,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(443,-10,o), +(519,44,o), +(519,135,cs), +(519,241,o), +(438,269,o), +(321,285,cs), +(211,300,o), +(158,322,o), +(158,389,cs), +(158,452,o), +(212,494,o), +(309,494,cs), +(397,494,o), +(457,461,o), +(465,373,c), +(502,373,l), +(497,469,o), +(427,527,o), +(308,527,cs), +(196,527,o), +(120,470,o), +(120,385,cs), +(120,294,o), +(187,267,o), +(317,249,cs), +(433,233,o), +(481,208,o), +(481,132,cs), +(481,63,o), +(421,23,o), +(320,23,cs), +(216,23,o), +(147,63,o), +(139,153,c), +(102,153,l), +(108,53,o), +(188,-10,o), +(319,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +32 +); +stem = -2; +target = ( +0, +39 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +36 +); +stem = -2; +target = ( +0, +35 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(458,-10,o), +(559,56,o), +(559,174,cs), +(559,279,o), +(504,326,o), +(362,344,cs), +(287,354,o), +(261,360,o), +(261,388,cs), +(261,411,o), +(280,422,o), +(308,422,cs), +(341,422,o), +(360,408,o), +(360,380,c), +(548,380,l), +(544,484,o), +(450,554,o), +(314,554,cs), +(168,554,o), +(70,481,o), +(70,371,cs), +(70,262,o), +(136,220,o), +(282,199,cs), +(344,190,o), +(365,186,o), +(365,157,cs), +(365,136,o), +(348,122,o), +(311,122,cs), +(273,122,o), +(246,137,o), +(245,174,c), +(57,174,l), +(56,64,o), +(154,-10,o), +(306,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(468,-10,o), +(574,56,o), +(574,174,cs), +(574,279,o), +(512,326,o), +(362,344,cs), +(278,354,o), +(247,360,o), +(247,388,cs), +(247,411,o), +(271,422,o), +(308,422,cs), +(348,422,o), +(372,409,o), +(374,383,c), +(562,383,l), +(556,485,o), +(457,554,o), +(314,554,cs), +(160,554,o), +(57,481,o), +(57,371,cs), +(57,262,o), +(127,220,o), +(285,199,cs), +(354,190,o), +(381,186,o), +(381,157,cs), +(381,136,o), +(358,122,o), +(312,122,cs), +(265,122,o), +(234,136,o), +(230,171,c), +(42,171,l), +(44,63,o), +(146,-10,o), +(307,-10,cs) +); +} +); +width = 618; +} +); +unicode = 115; +userData = { +KernOnName = s; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/sacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/sacute.glyph new file mode 100644 index 00000000..6695f088 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/sacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = sacute; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (38,-155); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (48,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 347; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/scaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/scaron.glyph new file mode 100644 index 00000000..0f86d7cd --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/scaron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = scaron; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (-1,-155); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (0,-134); +ref = caroncomb; +} +); +width = 618; +} +); +unicode = 353; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/scedilla.glyph b/sources/MonaSansMono.glyphspackage/glyphs/scedilla.glyph new file mode 100644 index 00000000..307e3f18 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/scedilla.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = scedilla; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (-6,0); +ref = cedillacomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (-23,0); +ref = cedillacomb; +} +); +width = 618; +} +); +unicode = 351; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/scircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/scircumflex.glyph new file mode 100644 index 00000000..d671a1b7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/scircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = scircumflex; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (-1,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (0,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 349; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/scommaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/scommaaccent.glyph new file mode 100644 index 00000000..834c44d6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/scommaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = scommaaccent; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = s; +}, +{ +pos = (-26,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = s; +}, +{ +pos = (-19,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 537; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/section.glyph b/sources/MonaSansMono.glyphspackage/glyphs/section.glyph new file mode 100644 index 00000000..eb8e4d01 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/section.glyph @@ -0,0 +1,257 @@ +{ +glyphname = section; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(417,-10,o), +(494,42,o), +(494,135,cs), +(494,184,o), +(477,216,o), +(448,237,c), +(483,262,o), +(504,299,o), +(504,347,cs), +(504,451,o), +(431,478,o), +(329,493,cs), +(222,508,o), +(172,532,o), +(172,601,cs), +(172,664,o), +(225,706,o), +(319,706,cs), +(405,706,o), +(463,672,o), +(468,585,c), +(504,585,l), +(501,681,o), +(434,739,o), +(318,739,cs), +(208,739,o), +(135,682,o), +(135,597,cs), +(135,549,o), +(153,518,o), +(188,496,c), +(150,471,o), +(125,429,o), +(125,385,cs), +(125,293,o), +(186,263,o), +(303,246,cs), +(411,230,o), +(456,207,o), +(456,132,cs), +(456,62,o), +(401,23,o), +(302,23,cs), +(207,23,o), +(143,63,o), +(137,149,c), +(100,149,l), +(105,53,o), +(177,-10,o), +(301,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,267,o), +(352,275,o), +(309,281,cs), +(209,295,o), +(162,320,o), +(162,389,cs), +(162,426,o), +(184,458,o), +(220,482,c), +(247,471,o), +(282,464,o), +(323,458,cs), +(424,443,o), +(466,419,o), +(466,344,cs), +(466,306,o), +(450,278,o), +(420,253,c) +); +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(468,-10,o), +(569,56,o), +(569,174,cs), +(569,279,o), +(514,326,o), +(372,344,cs), +(297,354,o), +(271,360,o), +(271,388,cs), +(271,403,o), +(279,413,o), +(292,418,c), +(180,524,l), +(117,493,o), +(80,439,o), +(80,371,cs), +(80,262,o), +(146,220,o), +(292,199,cs), +(354,190,o), +(375,186,o), +(375,157,cs), +(375,136,o), +(358,122,o), +(321,122,cs), +(284,122,o), +(258,136,o), +(255,171,c), +(67,171,l), +(68,63,o), +(165,-10,o), +(316,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(527,228,o), +(569,283,o), +(569,359,cs), +(569,464,o), +(514,511,o), +(372,529,cs), +(297,539,o), +(271,545,o), +(271,573,cs), +(271,596,o), +(290,607,o), +(318,607,cs), +(350,607,o), +(369,594,o), +(370,568,c), +(558,568,l), +(552,670,o), +(459,739,o), +(324,739,cs), +(178,739,o), +(80,666,o), +(80,556,cs), +(80,447,o), +(146,405,o), +(292,384,cs), +(354,375,o), +(375,371,o), +(375,342,cs), +(375,329,o), +(369,319,o), +(356,313,c), +(456,199,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(449,-10,o), +(550,56,o), +(550,165,cs), +(550,207,o), +(534,244,o), +(502,276,c), +(536,297,o), +(559,333,o), +(559,373,cs), +(559,465,o), +(503,503,o), +(372,529,cs), +(305,542,o), +(271,550,o), +(271,576,cs), +(271,599,o), +(290,607,o), +(318,607,cs), +(350,607,o), +(369,594,o), +(370,568,c), +(558,568,l), +(548,670,o), +(459,739,o), +(324,739,cs), +(178,739,o), +(80,670,o), +(80,565,cs), +(80,521,o), +(94,485,o), +(132,457,c), +(92,429,o), +(71,392,o), +(71,348,cs), +(71,254,o), +(147,225,o), +(252,202,cs), +(337,184,o), +(356,177,o), +(356,152,cs), +(356,131,o), +(339,122,o), +(302,122,cs), +(265,122,o), +(239,136,o), +(236,171,c), +(48,171,l), +(50,63,o), +(146,-10,o), +(297,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,337,o), +(318,343,o), +(296,348,cs), +(261,357,o), +(249,367,o), +(249,385,cs), +(249,391,o), +(251,399,o), +(255,407,c), +(274,401,o), +(292,396,o), +(311,391,cs), +(348,382,o), +(367,373,o), +(367,350,cs), +(367,342,o), +(366,336,o), +(362,330,c) +); +} +); +width = 618; +} +); +unicode = 167; +userData = { +KernOnSpecialSpacing = { +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/semicolon.glyph b/sources/MonaSansMono.glyphspackage/glyphs/semicolon.glyph new file mode 100644 index 00000000..82b7b98e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/semicolon.glyph @@ -0,0 +1,142 @@ +{ +color = 6; +glyphname = semicolon; +kernLeft = semicolon; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(503,-124,l), +(527,-99,o), +(561,-36,o), +(561,11,cs), +(561,39,o), +(547,51,o), +(529,51,cs), +(511,51,o), +(499,40,o), +(499,23,cs), +(499,8,o), +(509,-4,o), +(527,-4,cs), +(538,-4,o), +(546,2,o), +(548,8,c), +(543,9,l), +(541,-27,o), +(520,-77,o), +(480,-124,c) +); +}, +{ +closed = 1; +nodes = ( +(546,465,o), +(559,477,o), +(559,494,cs), +(559,511,o), +(546,523,o), +(529,523,cs), +(512,523,o), +(499,511,o), +(499,494,cs), +(499,477,o), +(512,465,o), +(529,465,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (2,441); +ref = period; +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(473,-167,l), +(526,-119,o), +(583,-18,o), +(583,62,cs), +(583,128,o), +(541,168,o), +(485,168,cs), +(428,168,o), +(390,132,o), +(390,79,cs), +(390,31,o), +(422,-3,o), +(476,-3,cs), +(501,-3,o), +(522,4,o), +(535,15,c), +(488,15,l), +(478,-34,o), +(428,-107,o), +(370,-167,c) +); +}, +{ +closed = 1; +nodes = ( +(540,378,o), +(578,413,o), +(578,466,cs), +(578,519,o), +(540,554,o), +(484,554,cs), +(428,554,o), +(390,519,o), +(390,466,cs), +(390,413,o), +(428,378,o), +(484,378,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +anchor = top; +ref = comma; +}, +{ +alignment = 1; +anchor = top; +pos = (-4,309); +ref = period; +} +); +width = 618; +} +); +metricLeft = comma; +metricRight = period; +unicode = 59; +userData = { +KernOnSpecialSpacing = { +L = "spaced-off"; +R = "spaced-off"; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/semicolon.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/semicolon.ss01.glyph new file mode 100644 index 00000000..6ebe51f4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/semicolon.ss01.glyph @@ -0,0 +1,41 @@ +{ +color = 6; +glyphname = semicolon.ss01; +kernLeft = colon.ss01; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (-1,456); +ref = period.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = comma.ss01; +}, +{ +alignment = 1; +anchor = top; +pos = (-1,380); +ref = period.ss01; +} +); +width = 618; +} +); +metricLeft = comma; +metricRight = period; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/seven.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/seven.blackC_ircled.glyph new file mode 100644 index 00000000..3be96288 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/seven.blackC_ircled.glyph @@ -0,0 +1,340 @@ +{ +color = 0; +glyphname = seven.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs), +(-3,140,o), +(148,-10,o), +(372,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,315,o), +(398,429,o), +(473,539,c), +(260,539,l), +(260,445,l), +(231,445,l), +(231,570,l), +(514,570,l), +(514,546,l), +(436,431,o), +(366,322,o), +(366,137,c), +(329,137,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(275,335,o), +(329,426,o), +(389,513,c), +(220,513,l), +(220,439,l), +(196,439,l), +(196,538,l), +(422,538,l), +(422,518,l), +(359,427,o), +(303,340,o), +(303,193,c), +(275,193,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +112, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +617, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +354, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +459, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +610, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +298, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +409, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-19, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-19, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs), +(-9,141,o), +(155,-9,o), +(379,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,293,o), +(351,395,o), +(397,459,c), +(308,459,l), +(308,397,l), +(207,397,l), +(207,570,l), +(548,570,l), +(548,476,l), +(482,384,o), +(437,306,o), +(437,137,c), +(300,137,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(249,320,o), +(288,399,o), +(324,449,c), +(255,449,l), +(255,401,l), +(177,401,l), +(177,535,l), +(441,535,l), +(441,462,l), +(390,390,o), +(355,330,o), +(355,199,c), +(249,199,l) +); +} +); +width = 618; +} +); +unicode = 10108; +userData = { +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/seven.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/seven.circled.glyph new file mode 100644 index 00000000..6d5d29f4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/seven.circled.glyph @@ -0,0 +1,168 @@ +{ +color = 0; +glyphname = seven.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,137,l), +(177,322,o), +(247,431,o), +(325,546,c), +(325,570,l), +(42,570,l), +(42,445,l), +(71,445,l), +(71,539,l), +(284,539,l), +(209,429,o), +(140,315,o), +(140,137,c) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (81,189); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,137,l), +(250,306,o), +(295,384,o), +(361,476,c), +(361,570,l), +(20,570,l), +(20,397,l), +(121,397,l), +(121,459,l), +(210,459,l), +(164,395,o), +(113,293,o), +(113,137,c) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (85,191); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9318; +userData = { +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/seven.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/seven.dnom.glyph new file mode 100644 index 00000000..2e0056f6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/seven.dnom.glyph @@ -0,0 +1,135 @@ +{ +glyphname = seven.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,l), +(220,169,o), +(284,270,o), +(356,375,c), +(356,397,l), +(96,397,l), +(96,283,l), +(123,283,l), +(123,369,l), +(318,369,l), +(245,262,o), +(186,159,o), +(186,0,c) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(275,0,l), +(275,145,o), +(315,212,o), +(376,293,c), +(376,375,l), +(70,375,l), +(70,224,l), +(159,224,l), +(159,277,l), +(242,277,l), +(200,223,o), +(154,134,o), +(154,0,c) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +metricWidth = H; +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/seven.glyph b/sources/MonaSansMono.glyphspackage/glyphs/seven.glyph new file mode 100644 index 00000000..2cd21b83 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/seven.glyph @@ -0,0 +1,163 @@ +{ +glyphname = seven; +kernLeft = seven; +kernRight = seven; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,0,l), +(316,237,o), +(391,468,o), +(547,696,c), +(547,721,l), +(87,721,l), +(87,524,l), +(120,524,l), +(120,687,l), +(502,687,l), +(376,501,o), +(282,284,o), +(248,0,c) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(332,0,l), +(332,237,o), +(409,474,o), +(559,704,c), +(559,729,l), +(73,729,l), +(73,530,l), +(107,530,l), +(107,696,l), +(513,696,l), +(367,467,o), +(291,232,o), +(291,0,c) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(379,0,l), +(407,265,o), +(499,432,o), +(591,582,c), +(591,721,l), +(36,721,l), +(36,445,l), +(187,445,l), +(187,555,l), +(386,555,l), +(300,438,o), +(211,265,o), +(179,0,c) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(412,0,l), +(412,287,o), +(490,427,o), +(588,588,c), +(588,729,l), +(34,729,l), +(34,450,l), +(187,450,l), +(187,561,l), +(360,561,l), +(292,443,o), +(205,268,o), +(205,0,c) +); +} +); +width = 618; +} +); +unicode = 55; +userData = { +KernOnName = seven; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/seven.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/seven.numr.glyph new file mode 100644 index 00000000..55609de2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/seven.numr.glyph @@ -0,0 +1,112 @@ +{ +color = 6; +glyphname = seven.numr; +kernRight = seven.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = seven.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.dnom; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/seven.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/seven.tf.glyph new file mode 100644 index 00000000..63fc8b6e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/seven.tf.glyph @@ -0,0 +1,134 @@ +{ +glyphname = seven.tf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(291,0,l), +(291,315,o), +(416,507,o), +(552,704,c), +(552,729,l), +(82,729,l), +(82,530,l), +(116,530,l), +(116,696,l), +(506,696,l), +(373,499,o), +(251,307,o), +(251,0,c) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(396,0,l), +(396,284,o), +(473,422,o), +(583,582,c), +(583,721,l), +(44,721,l), +(44,445,l), +(192,445,l), +(192,555,l), +(361,555,l), +(281,438,o), +(195,266,o), +(195,0,c) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 618; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/seveneighths.glyph b/sources/MonaSansMono.glyphspackage/glyphs/seveneighths.glyph new file mode 100644 index 00000000..b9a0e396 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/seveneighths.glyph @@ -0,0 +1,65 @@ +{ +color = 6; +glyphname = seveneighths; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (-81,0); +ref = seven.numr; +}, +{ +alignment = -1; +pos = (-23,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (264,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.numr; +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-61,72); +ref = seven.numr; +scale = (0.9,0.9); +}, +{ +alignment = -1; +ref = fraction; +}, +{ +alignment = -1; +pos = (280,0); +ref = eight.dnom; +scale = (0.9,0.9); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seven.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seven.numr; +}; +width = 618; +} +); +metricWidth = H; +unicode = 8542; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/seveninferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/seveninferior.glyph new file mode 100644 index 00000000..d7a7c56e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/seveninferior.glyph @@ -0,0 +1,147 @@ +{ +glyphname = seveninferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (227,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(220,-40,l), +(220,145,o), +(290,254,o), +(368,369,c), +(368,393,l), +(85,393,l), +(85,268,l), +(114,268,l), +(114,362,l), +(327,362,l), +(252,252,o), +(183,138,o), +(183,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (224,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(283,-40,l), +(283,129,o), +(328,207,o), +(394,299,c), +(394,393,l), +(53,393,l), +(53,220,l), +(154,220,l), +(154,282,l), +(243,282,l), +(197,218,o), +(146,116,o), +(146,-40,c) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 618; +} +); +unicode = 8327; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/sevensuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/sevensuperior.glyph new file mode 100644 index 00000000..91a3c2f5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/sevensuperior.glyph @@ -0,0 +1,113 @@ +{ +color = 6; +glyphname = sevensuperior; +kernLeft = sevensuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seveninferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seveninferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = seveninferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = seveninferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = seveninferior; +}; +width = 618; +} +); +unicode = 8311; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = seven; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/sheqel.glyph b/sources/MonaSansMono.glyphspackage/glyphs/sheqel.glyph new file mode 100644 index 00000000..c7ede5a5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/sheqel.glyph @@ -0,0 +1,88 @@ +{ +glyphname = sheqel; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(531,0,ls), +(575,0,o), +(598,18,o), +(598,67,cs), +(598,729,l), +(557,729,l), +(557,37,l), +(238,37,l), +(238,571,l), +(199,571,l), +(199,0,l) +); +}, +{ +closed = 1; +nodes = ( +(61,0,l), +(61,692,l), +(380,692,l), +(380,159,l), +(421,159,l), +(421,663,ls), +(421,712,o), +(399,729,o), +(355,729,cs), +(22,729,l), +(22,0,l) +); +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(513,0,ls), +(602,0,o), +(662,55,o), +(662,153,cs), +(662,729,l), +(501,729,l), +(501,151,l), +(292,151,l), +(292,540,l), +(163,540,l), +(163,0,l) +); +}, +{ +closed = 1; +nodes = ( +(123,0,l), +(123,579,l), +(332,579,l), +(332,190,l), +(461,190,l), +(461,576,ls), +(461,668,o), +(419,729,o), +(312,729,cs), +(-38,729,l), +(-38,0,l) +); +} +); +width = 619; +} +); +unicode = 8362; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/six.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/six.blackC_ircled.glyph new file mode 100644 index 00000000..af3336c5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/six.blackC_ircled.glyph @@ -0,0 +1,508 @@ +{ +color = 0; +glyphname = six.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs), +(-3,140,o), +(148,-10,o), +(372,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(441,173,o), +(484,217,o), +(484,283,cs), +(484,349,o), +(440,390,o), +(378,390,cs), +(309,390,o), +(267,341,o), +(267,279,cs), +(267,213,o), +(312,173,o), +(377,173,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,142,o), +(226,214,o), +(226,335,cs), +(226,511,o), +(277,585,o), +(383,585,cs), +(457,585,o), +(510,542,o), +(516,478,c), +(482,478,l), +(473,533,o), +(431,555,o), +(382,555,cs), +(280,555,o), +(261,467,o), +(259,337,c), +(261,337,l), +(275,386,o), +(320,419,o), +(384,419,cs), +(465,419,o), +(520,364,o), +(520,283,cs), +(520,197,o), +(460,142,o), +(375,142,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(230,189,o), +(192,247,o), +(192,343,cs), +(192,482,o), +(233,542,o), +(317,542,cs), +(376,542,o), +(419,507,o), +(423,457,c), +(396,457,l), +(389,500,o), +(355,518,o), +(316,518,cs), +(236,518,o), +(220,448,o), +(219,344,c), +(220,344,l), +(232,383,o), +(268,410,o), +(318,410,cs), +(383,410,o), +(427,366,o), +(427,301,cs), +(427,233,o), +(379,189,o), +(311,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,214,o), +(398,249,o), +(398,301,cs), +(398,354,o), +(363,387,o), +(313,387,cs), +(259,387,o), +(225,347,o), +(225,298,cs), +(225,246,o), +(261,214,o), +(312,214,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +139, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +435, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +624, +31 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +351, +39 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +632, +39 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +135, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +430, +34 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +616, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +294, +41 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +583, +44 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-7, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-7, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs), +(-9,141,o), +(155,-9,o), +(379,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(407,253,o), +(425,270,o), +(425,295,cs), +(425,320,o), +(407,338,o), +(380,338,cs), +(354,338,o), +(336,322,o), +(336,296,cs), +(336,271,o), +(353,253,o), +(380,253,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,143,o), +(197,205,o), +(197,362,cs), +(197,506,o), +(266,587,o), +(386,587,cs), +(484,587,o), +(546,536,o), +(557,457,c), +(429,457,l), +(424,471,o), +(403,479,o), +(384,479,cs), +(350,479,o), +(322,454,o), +(322,401,c), +(327,401,l), +(343,418,o), +(374,432,o), +(416,432,cs), +(498,432,o), +(552,377,o), +(552,297,cs), +(552,205,o), +(483,143,o), +(376,143,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,195,o), +(170,243,o), +(170,365,cs), +(170,476,o), +(223,539,o), +(316,539,cs), +(392,539,o), +(440,500,o), +(449,439,c), +(350,439,l), +(346,449,o), +(329,456,o), +(315,456,cs), +(288,456,o), +(267,436,o), +(267,395,c), +(271,395,l), +(283,408,o), +(307,419,o), +(339,419,cs), +(403,419,o), +(445,377,o), +(445,315,cs), +(445,243,o), +(391,195,o), +(308,195,cs) +); +}, +{ +closed = 1; +nodes = ( +(333,280,o), +(346,294,o), +(346,313,cs), +(346,332,o), +(333,346,o), +(312,346,cs), +(291,346,o), +(277,334,o), +(277,314,cs), +(277,294,o), +(291,280,o), +(312,280,cs) +); +} +); +width = 618; +} +); +unicode = 10107; +userData = { +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/six.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/six.circled.glyph new file mode 100644 index 00000000..02267d33 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/six.circled.glyph @@ -0,0 +1,228 @@ +{ +color = 0; +glyphname = six.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,142,o), +(331,197,o), +(331,283,cs), +(331,364,o), +(276,419,o), +(195,419,cs), +(131,419,o), +(86,386,o), +(72,337,c), +(70,337,l), +(72,467,o), +(91,555,o), +(193,555,cs), +(242,555,o), +(284,533,o), +(293,478,c), +(327,478,l), +(321,542,o), +(268,585,o), +(194,585,cs), +(88,585,o), +(37,511,o), +(37,335,cs), +(37,214,o), +(84,142,o), +(186,142,cs) +); +}, +{ +closed = 1; +nodes = ( +(123,173,o), +(78,213,o), +(78,279,cs), +(78,341,o), +(120,390,o), +(189,390,cs), +(251,390,o), +(295,349,o), +(295,283,cs), +(295,217,o), +(252,173,o), +(188,173,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (86,189); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,143,o), +(365,205,o), +(365,297,cs), +(365,377,o), +(311,432,o), +(229,432,cs), +(187,432,o), +(156,418,o), +(140,401,c), +(135,401,l), +(135,454,o), +(163,479,o), +(197,479,cs), +(216,479,o), +(237,471,o), +(242,457,c), +(370,457,l), +(359,536,o), +(297,587,o), +(199,587,cs), +(79,587,o), +(10,506,o), +(10,362,cs), +(10,205,o), +(83,143,o), +(189,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,253,o), +(149,271,o), +(149,296,cs), +(149,322,o), +(167,338,o), +(193,338,cs), +(220,338,o), +(238,320,o), +(238,295,cs), +(238,270,o), +(220,253,o), +(193,253,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (89,191); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9317; +userData = { +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/six.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/six.dnom.glyph new file mode 100644 index 00000000..4adcae3a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/six.dnom.glyph @@ -0,0 +1,209 @@ +{ +glyphname = six.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(300,-4,o), +(356,45,o), +(356,125,cs), +(356,199,o), +(305,249,o), +(231,249,cs), +(171,249,o), +(130,218,o), +(118,174,c), +(116,174,l), +(118,294,o), +(136,374,o), +(229,374,cs), +(280,374,o), +(314,348,o), +(321,304,c), +(352,304,l), +(346,363,o), +(297,402,o), +(229,402,cs), +(133,402,o), +(86,334,o), +(86,172,cs), +(86,61,o), +(129,-4,o), +(223,-4,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,24,o), +(124,61,o), +(124,121,cs), +(124,178,o), +(162,223,o), +(225,223,cs), +(283,223,o), +(323,185,o), +(323,125,cs), +(323,64,o), +(283,24,o), +(224,24,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(314,-5,o), +(376,50,o), +(376,129,cs), +(376,199,o), +(327,246,o), +(254,246,cs), +(217,246,o), +(189,236,o), +(173,221,c), +(169,221,l), +(168,265,o), +(194,285,o), +(226,285,cs), +(244,285,o), +(263,278,o), +(267,267,c), +(381,267,l), +(371,335,o), +(315,380,o), +(227,380,cs), +(120,380,o), +(58,311,o), +(58,186,cs), +(58,49,o), +(123,-5,o), +(219,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,93,o), +(180,108,o), +(180,129,cs), +(180,150,o), +(197,163,o), +(222,163,cs), +(247,163,o), +(264,149,o), +(264,128,cs), +(264,107,o), +(247,93,o), +(222,93,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +metricWidth = H; +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/six.glyph b/sources/MonaSansMono.glyphspackage/glyphs/six.glyph new file mode 100644 index 00000000..32548f36 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/six.glyph @@ -0,0 +1,294 @@ +{ +glyphname = six; +kernLeft = zero; +kernRight = six; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(447,-8,o), +(543,83,o), +(543,229,cs), +(543,371,o), +(453,464,o), +(322,464,cs), +(213,464,o), +(135,403,o), +(113,311,c), +(110,311,l), +(114,532,o), +(143,696,o), +(324,696,cs), +(420,696,o), +(489,645,o), +(499,552,c), +(533,552,l), +(524,662,o), +(447,730,o), +(324,730,cs), +(154,730,o), +(75,605,o), +(75,315,cs), +(75,115,o), +(146,-8,o), +(312,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,26,o), +(123,100,o), +(123,223,cs), +(123,339,o), +(195,431,o), +(316,431,cs), +(427,431,o), +(502,355,o), +(502,231,cs), +(502,107,o), +(427,26,o), +(314,26,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(453,-8,o), +(550,82,o), +(550,227,cs), +(550,364,o), +(459,456,o), +(325,456,cs), +(217,456,o), +(138,397,o), +(116,306,c), +(113,306,l), +(117,543,o), +(145,704,o), +(329,704,cs), +(419,704,o), +(489,660,o), +(504,563,c), +(540,563,l), +(531,668,o), +(445,738,o), +(329,738,cs), +(157,738,o), +(77,614,o), +(77,310,cs), +(77,113,o), +(150,-8,o), +(317,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,26,o), +(126,99,o), +(126,219,cs), +(126,332,o), +(199,422,o), +(321,422,cs), +(432,422,o), +(509,347,o), +(509,227,cs), +(509,106,o), +(432,26,o), +(319,26,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(476,-9,o), +(588,82,o), +(588,244,cs), +(588,387,o), +(498,483,o), +(362,483,cs), +(298,483,o), +(247,461,o), +(222,427,c), +(214,427,l), +(211,522,o), +(252,566,o), +(316,566,cs), +(355,566,o), +(387,550,o), +(396,526,c), +(583,526,l), +(569,648,o), +(472,730,o), +(317,730,cs), +(129,730,o), +(19,603,o), +(19,356,cs), +(19,100,o), +(135,-9,o), +(310,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,156,o), +(227,192,o), +(227,249,cs), +(227,306,o), +(260,342,o), +(313,342,cs), +(366,342,o), +(399,306,o), +(399,249,cs), +(399,192,o), +(366,156,o), +(313,156,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(485,-9,o), +(600,94,o), +(600,248,cs), +(600,384,o), +(508,475,o), +(371,475,cs), +(294,475,o), +(239,448,o), +(213,411,c), +(205,411,l), +(205,520,o), +(250,575,o), +(324,575,cs), +(366,575,o), +(403,558,o), +(412,526,c), +(606,526,l), +(589,654,o), +(487,739,o), +(326,739,cs), +(128,739,o), +(16,606,o), +(16,354,cs), +(16,98,o), +(132,-9,o), +(311,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,158,o), +(226,193,o), +(226,246,cs), +(226,298,o), +(262,333,o), +(317,333,cs), +(371,333,o), +(407,298,o), +(407,246,cs), +(407,193,o), +(371,158,o), +(317,158,cs) +); +} +); +width = 618; +} +); +unicode = 54; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/six.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/six.numr.glyph new file mode 100644 index 00000000..27ec834f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/six.numr.glyph @@ -0,0 +1,125 @@ +{ +color = 6; +glyphname = six.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = six.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = six.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = six.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = six.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = six.dnom; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/six.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/six.tf.glyph new file mode 100644 index 00000000..ca438daf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/six.tf.glyph @@ -0,0 +1,208 @@ +{ +glyphname = six.tf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(456,-8,o), +(556,82,o), +(556,227,cs), +(556,364,o), +(462,456,o), +(324,456,cs), +(212,456,o), +(131,396,o), +(109,306,c), +(106,306,l), +(110,543,o), +(139,704,o), +(329,704,cs), +(423,704,o), +(495,659,o), +(510,563,c), +(547,563,l), +(537,668,o), +(448,738,o), +(329,738,cs), +(153,738,o), +(70,615,o), +(70,310,cs), +(70,113,o), +(145,-8,o), +(317,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,26,o), +(119,99,o), +(119,219,cs), +(119,332,o), +(195,422,o), +(321,422,cs), +(435,422,o), +(515,347,o), +(515,227,cs), +(515,106,o), +(435,26,o), +(319,26,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(478,-9,o), +(589,93,o), +(589,245,cs), +(589,380,o), +(501,470,o), +(369,470,cs), +(301,470,o), +(247,446,o), +(219,407,c), +(211,407,l), +(211,513,o), +(255,569,o), +(324,569,cs), +(362,569,o), +(398,552,o), +(407,520,c), +(595,520,l), +(578,647,o), +(481,731,o), +(326,731,cs), +(136,731,o), +(28,599,o), +(28,350,cs), +(28,97,o), +(140,-9,o), +(311,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,156,o), +(232,191,o), +(232,243,cs), +(232,295,o), +(266,329,o), +(317,329,cs), +(367,329,o), +(402,295,o), +(402,243,cs), +(402,191,o), +(367,156,o), +(317,156,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 618; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/sixinferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/sixinferior.glyph new file mode 100644 index 00000000..a708697d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/sixinferior.glyph @@ -0,0 +1,221 @@ +{ +glyphname = sixinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (222,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(309,-45,o), +(369,10,o), +(369,96,cs), +(369,177,o), +(314,232,o), +(233,232,cs), +(169,232,o), +(124,199,o), +(110,150,c), +(108,150,l), +(110,280,o), +(129,368,o), +(231,368,cs), +(280,368,o), +(322,346,o), +(331,291,c), +(365,291,l), +(359,355,o), +(306,398,o), +(232,398,cs), +(126,398,o), +(75,324,o), +(75,148,cs), +(75,27,o), +(122,-45,o), +(224,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,-14,o), +(116,26,o), +(116,92,cs), +(116,154,o), +(158,203,o), +(227,203,cs), +(289,203,o), +(333,162,o), +(333,96,cs), +(333,30,o), +(290,-14,o), +(226,-14,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (220,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(326,-45,o), +(395,17,o), +(395,109,cs), +(395,189,o), +(341,244,o), +(259,244,cs), +(217,244,o), +(186,230,o), +(170,213,c), +(165,213,l), +(165,266,o), +(193,291,o), +(227,291,cs), +(246,291,o), +(267,283,o), +(272,269,c), +(400,269,l), +(389,348,o), +(327,399,o), +(229,399,cs), +(109,399,o), +(40,318,o), +(40,174,cs), +(40,17,o), +(113,-45,o), +(219,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,65,o), +(179,83,o), +(179,108,cs), +(179,134,o), +(197,150,o), +(223,150,cs), +(250,150,o), +(268,132,o), +(268,107,cs), +(268,82,o), +(250,65,o), +(223,65,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 618; +} +); +unicode = 8326; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/sixsuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/sixsuperior.glyph new file mode 100644 index 00000000..d092c5a2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/sixsuperior.glyph @@ -0,0 +1,127 @@ +{ +color = 6; +glyphname = sixsuperior; +kernLeft = sixsuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = sixinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = sixinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +19 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = sixinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = sixinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = sixinferior; +}; +width = 618; +} +); +unicode = 8310; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = six; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/slash.glyph b/sources/MonaSansMono.glyphspackage/glyphs/slash.glyph new file mode 100644 index 00000000..f83c6f13 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/slash.glyph @@ -0,0 +1,79 @@ +{ +glyphname = slash; +kernLeft = slash; +kernRight = slash; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(140,-107,l), +(498,729,l), +(458,729,l), +(97,-107,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(249,-117,l), +(562,729,l), +(369,729,l), +(56,-117,l) +); +} +); +width = 618; +} +); +unicode = 47; +userData = { +KernOnName = slash; +KernOnSpecialSpacing = { +L = slash; +R = slash; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/slashlongcomb.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/slashlongcomb.case.glyph new file mode 100644 index 00000000..3219ee3d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/slashlongcomb.case.glyph @@ -0,0 +1,55 @@ +{ +glyphname = slashlongcomb.case; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (309,324); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(34,-81,l), +(628,729,l), +(587,729,l), +(-10,-81,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 441; +}; +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (310,324); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(88,-81,l), +(682,729,l), +(533,729,l), +(-64,-81,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 552; +}; +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/slashlongcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/slashlongcomb.glyph new file mode 100644 index 00000000..200710fc --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/slashlongcomb.glyph @@ -0,0 +1,62 @@ +{ +glyphname = slashlongcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (310,259); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(96,-60,l), +(564,577,l), +(524,577,l), +(55,-60,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 441; +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (309,272); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-60,l), +(609,604,l), +(499,604,l), +(9,-60,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 552; +}; +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 824; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/slashshortcomb.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/slashshortcomb.case.glyph new file mode 100644 index 00000000..fff21da2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/slashshortcomb.case.glyph @@ -0,0 +1,49 @@ +{ +glyphname = slashshortcomb.case; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (467,340); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(467,340,l), +(467,375,l), +(152,236,l), +(152,201,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (503,305); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(503,305,l), +(503,480,l), +(116,309,l), +(116,134,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/slashshortcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/slashshortcomb.glyph new file mode 100644 index 00000000..dc163535 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/slashshortcomb.glyph @@ -0,0 +1,50 @@ +{ +glyphname = slashshortcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (309,342); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(503,376,l), +(503,413,l), +(115,308,l), +(115,270,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (310,302); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(549,306,l), +(549,459,l), +(70,298,l), +(70,144,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 823; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/space.glyph b/sources/MonaSansMono.glyphspackage/glyphs/space.glyph new file mode 100644 index 00000000..4be2b760 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/space.glyph @@ -0,0 +1,20 @@ +{ +glyphname = space; +layers = ( +{ +layerId = m019; +width = 618; +}, +{ +layerId = m020; +width = 618; +} +); +unicode = 32; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/sterling.glyph b/sources/MonaSansMono.glyphspackage/glyphs/sterling.glyph new file mode 100644 index 00000000..822cf7a0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/sterling.glyph @@ -0,0 +1,255 @@ +{ +glyphname = sterling; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(138,13,l), +(201,86,o), +(221,156,o), +(221,241,cs), +(221,367,o), +(156,426,o), +(156,534,cs), +(156,639,o), +(223,700,o), +(334,700,cs), +(443,700,o), +(507,637,o), +(507,526,c), +(548,527,l), +(548,659,o), +(466,738,o), +(334,738,cs), +(200,738,o), +(116,661,o), +(116,535,cs), +(116,420,o), +(179,364,o), +(179,241,cs), +(179,155,o), +(161,99,o), +(107,31,c) +); +}, +{ +closed = 1; +nodes = ( +(542,0,l), +(542,178,l), +(506,178,l), +(506,36,l), +(50,36,l), +(50,0,l) +); +}, +{ +closed = 1; +nodes = ( +(431,345,l), +(431,380,l), +(70,380,l), +(70,345,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +30 +); +stem = -2; +target = ( +0, +31 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +12 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +29 +); +stem = -2; +target = ( +0, +4 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225,150,l), +(295,202,o), +(305,248,o), +(305,310,cs), +(305,375,o), +(281,459,o), +(281,497,cs), +(281,540,o), +(307,569,o), +(350,569,cs), +(388,569,o), +(417,549,o), +(415,494,c), +(598,499,l), +(600,642,o), +(509,738,o), +(344,738,cs), +(189,738,o), +(86,644,o), +(86,504,cs), +(86,439,o), +(109,366,o), +(109,299,cs), +(109,238,o), +(93,204,o), +(61,150,c) +); +}, +{ +closed = 1; +nodes = ( +(592,0,l), +(592,209,l), +(430,209,l), +(430,152,l), +(7,152,l), +(7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,294,l), +(437,435,l), +(17,435,l), +(17,294,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(224,146,l), +(295,193,o), +(313,242,o), +(313,308,cs), +(313,375,o), +(277,458,o), +(277,498,cs), +(277,543,o), +(300,573,o), +(350,573,cs), +(387,573,o), +(418,553,o), +(419,500,c), +(597,500,l), +(600,643,o), +(509,738,o), +(344,738,cs), +(190,738,o), +(88,646,o), +(88,507,cs), +(88,439,o), +(121,365,o), +(121,297,cs), +(121,244,o), +(110,208,o), +(73,146,c) +); +}, +{ +closed = 1; +nodes = ( +(590,0,l), +(590,228,l), +(432,228,l), +(432,149,l), +(19,149,l), +(19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(447,288,l), +(447,425,l), +(29,425,l), +(29,288,l) +); +} +); +width = 618; +} +); +unicode = 163; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/strokelongcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/strokelongcomb.glyph new file mode 100644 index 00000000..2593ce3e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/strokelongcomb.glyph @@ -0,0 +1,50 @@ +{ +glyphname = strokelongcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (309,369); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(618,352,l), +(618,386,l), +(0,386,l), +(0,352,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (309,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(618,300,l), +(618,438,l), +(0,438,l), +(0,300,l) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 822; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.case.T_.glyph b/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.case.T_.glyph new file mode 100644 index 00000000..2af81ac5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.case.T_.glyph @@ -0,0 +1,50 @@ +{ +export = 0; +glyphname = strokeshortcomb.case.T; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (309,354); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(499,337,l), +(499,371,l), +(119,371,l), +(119,337,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (310,347); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(530,264,l), +(530,430,l), +(89,430,l), +(89,264,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.case.glyph b/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.case.glyph new file mode 100644 index 00000000..d21afb6f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.case.glyph @@ -0,0 +1,55 @@ +{ +glyphname = strokeshortcomb.case; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (277,388); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(486,372,l), +(486,404,l), +(132,404,l), +(132,372,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (315,378); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(515,310,l), +(515,455,l), +(104,455,l), +(104,310,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.glyph new file mode 100644 index 00000000..b3133b7c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.glyph @@ -0,0 +1,50 @@ +{ +glyphname = strokeshortcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (309,307); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(461,291,l), +(461,323,l), +(157,323,l), +(157,291,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (310,306); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(484,248,l), +(484,364,l), +(135,364,l), +(135,248,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 821; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.t.glyph b/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.t.glyph new file mode 100644 index 00000000..8d2aeb80 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/strokeshortcomb.t.glyph @@ -0,0 +1,50 @@ +{ +export = 0; +glyphname = strokeshortcomb.t; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (309,259); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(446,243,l), +(446,275,l), +(172,275,l), +(172,243,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (310,277); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(500,204,l), +(500,349,l), +(119,349,l), +(119,204,l) +); +} +); +width = 619; +} +); +metricLeft = "=40"; +metricRight = "=40"; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/summation.glyph b/sources/MonaSansMono.glyphspackage/glyphs/summation.glyph new file mode 100644 index 00000000..e828c855 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/summation.glyph @@ -0,0 +1,100 @@ +{ +glyphname = summation; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(550,-151,l), +(550,-117,l), +(302,-117,l), +(118,-117,l), +(118,-114,l), +(406,289,l), +(118,692,l), +(118,695,l), +(302,695,l), +(550,695,l), +(550,729,l), +(73,729,l), +(73,689,l), +(356,291,l), +(356,288,l), +(73,-111,l), +(73,-151,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(568,-151,l), +(568,48,l), +(416,48,l), +(307,46,l), +(307,56,l), +(529,289,l), +(307,522,l), +(307,532,l), +(416,530,l), +(568,530,l), +(568,729,l), +(53,729,l), +(53,518,l), +(258,302,l), +(258,276,l), +(53,60,l), +(53,-151,l) +); +} +); +width = 619; +} +); +unicode = 8721; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/t.glyph b/sources/MonaSansMono.glyphspackage/glyphs/t.glyph new file mode 100644 index 00000000..4484ed18 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/t.glyph @@ -0,0 +1,279 @@ +{ +glyphname = t; +kernLeft = t; +kernRight = t; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (357,0); +}, +{ +name = center; +pos = (286,259); +}, +{ +name = top; +pos = (274,517); +}, +{ +name = topright; +pos = (305,785); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-60,0,l), +(-60,34,l), +(-140,34,ls), +(-181,34,o), +(-191,44,o), +(-191,85,cs), +(-191,485,l), +(-60,485,l), +(-60,517,l), +(-191,517,l), +(-191,690,l), +(-227,681,l), +(-227,517,l), +(-334,517,l), +(-334,485,l), +(-227,485,l), +(-227,79,ls), +(-227,23,o), +(-204,0,o), +(-148,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(941,0,l), +(941,36,l), +(872,36,ls), +(822,36,o), +(810,62,o), +(810,102,cs), +(810,485,l), +(940,485,l), +(940,517,l), +(809,517,l), +(809,690,l), +(773,681,l), +(773,517,l), +(666,517,l), +(666,485,l), +(773,485,l), +(773,91,ls), +(773,30,o), +(810,0,o), +(865,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(441,0,l), +(441,36,l), +(366,36,ls), +(329,36,o), +(310,49,o), +(310,95,cs), +(310,485,l), +(440,485,l), +(440,517,l), +(309,517,l), +(309,690,l), +(273,681,l), +(273,517,l), +(166,517,l), +(166,485,l), +(273,485,l), +(273,88,ls), +(273,26,o), +(307,0,o), +(361,0,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(538,0,l), +(538,36,l), +(367,36,ls), +(317,36,o), +(294,60,o), +(294,111,cs), +(294,485,l), +(536,485,l), +(536,517,l), +(292,517,l), +(292,690,l), +(257,681,l), +(257,517,l), +(78,517,l), +(78,485,l), +(257,485,l), +(257,107,ls), +(257,36,o), +(293,0,o), +(365,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (375,0); +}, +{ +name = center; +pos = (301,272); +}, +{ +name = top; +pos = (309,544); +}, +{ +name = topright; +pos = (404,739); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(491,0,l), +(491,153,l), +(431,153,ls), +(408,153,o), +(392,160,o), +(392,188,cs), +(392,391,l), +(491,391,l), +(491,544,l), +(392,544,l), +(392,699,l), +(201,683,l), +(201,544,l), +(110,544,l), +(110,391,l), +(201,391,l), +(201,152,ls), +(201,61,o), +(232,0,o), +(362,0,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(566,0,l), +(566,153,l), +(436,153,ls), +(408,153,o), +(390,160,o), +(390,188,cs), +(390,401,l), +(566,401,l), +(566,544,l), +(390,544,l), +(390,699,l), +(200,683,l), +(200,544,l), +(45,544,l), +(45,401,l), +(200,401,l), +(200,152,ls), +(200,47,o), +(248,0,o), +(358,0,cs) +); +} +); +width = 618; +} +); +unicode = 116; +userData = { +KernOnName = t; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/t_i.liga.glyph b/sources/MonaSansMono.glyphspackage/glyphs/t_i.liga.glyph new file mode 100644 index 00000000..91d6f0d3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/t_i.liga.glyph @@ -0,0 +1,36 @@ +{ +export = 0; +glyphname = t_i.liga; +kernLeft = t; +kernRight = i; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = t; +}, +{ +pos = (618,0); +ref = i; +} +); +width = 1237; +}, +{ +layerId = m020; +shapes = ( +{ +ref = t; +}, +{ +pos = (618,0); +ref = i; +} +); +width = 1236; +} +); +metricLeft = t; +metricRight = i; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/t_i.liga.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/t_i.liga.ss01.glyph new file mode 100644 index 00000000..4d56cbd4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/t_i.liga.ss01.glyph @@ -0,0 +1,170 @@ +{ +export = 0; +glyphname = t_i.liga.ss01; +kernLeft = t; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (178,0); +}, +{ +name = bottom_2; +pos = (441,0); +}, +{ +name = caret_1; +pos = (309,0); +}, +{ +name = center_1; +pos = (178,259); +}, +{ +name = center_2; +pos = (441,259); +}, +{ +name = top_1; +pos = (178,729); +}, +{ +name = top_2; +pos = (441,729); +}, +{ +name = topright_1; +pos = (553,729); +}, +{ +name = topright_2; +pos = (553,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(337,0,l), +(337,36,l), +(269,36,ls), +(228,36,o), +(209,56,o), +(209,101,cs), +(209,485,l), +(453,485,l), +(453,0,l), +(490,0,l), +(490,517,l), +(208,517,l), +(208,690,l), +(172,681,l), +(172,517,l), +(68,517,l), +(68,485,l), +(172,485,l), +(172,97,ls), +(172,28,o), +(207,0,o), +(266,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(490,613,l), +(490,729,l), +(453,729,l), +(453,613,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (129,0); +}, +{ +name = bottom_2; +pos = (490,0); +}, +{ +name = caret_1; +pos = (309,0); +}, +{ +name = center_1; +pos = (129,272); +}, +{ +name = center_2; +pos = (490,272); +}, +{ +name = top_1; +pos = (129,729); +}, +{ +name = top_2; +pos = (490,729); +}, +{ +name = topright_1; +pos = (650,729); +}, +{ +name = topright_2; +pos = (650,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(346,0,l), +(346,153,l), +(286,153,ls), +(263,153,o), +(247,160,o), +(247,188,cs), +(247,391,l), +(425,391,l), +(425,0,l), +(616,0,l), +(616,544,l), +(247,544,l), +(247,699,l), +(56,683,l), +(56,544,l), +(-35,544,l), +(-35,391,l), +(56,391,l), +(56,152,ls), +(56,47,o), +(101,0,o), +(207,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(616,601,l), +(616,729,l), +(425,729,l), +(425,601,l) +); +} +); +width = 618; +} +); +metricLeft = t; +metricRight = i.ss01; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/t_t.liga.glyph b/sources/MonaSansMono.glyphspackage/glyphs/t_t.liga.glyph new file mode 100644 index 00000000..66469024 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/t_t.liga.glyph @@ -0,0 +1,169 @@ +{ +export = 0; +glyphname = t_t.liga; +kernLeft = t; +kernRight = t; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = t; +}, +{ +pos = (618,0); +ref = t; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = t; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = t; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +42 +); +stem = -2; +target = ( +0, +43 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +1 +); +stem = -2; +target = ( +0, +14 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +30 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +0, +23 +); +type = Stem; +} +); +}; +width = 1236; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(236,-10,o), +(289,0,o), +(320,14,c), +(320,156,l), +(304,148,o), +(285,143,o), +(265,143,cs), +(227,143,o), +(206,145,o), +(206,202,cs), +(206,391,l), +(379,391,l), +(379,158,ls), +(379,33,o), +(447,-10,o), +(550,-10,cs), +(600,-10,o), +(653,0,o), +(684,14,c), +(684,156,l), +(668,148,o), +(649,143,o), +(629,143,cs), +(591,143,o), +(570,145,o), +(570,202,cs), +(570,391,l), +(684,391,l), +(684,544,l), +(570,544,l), +(570,710,l), +(379,668,l), +(379,544,l), +(206,544,l), +(206,710,l), +(15,668,l), +(15,544,l), +(-69,544,l), +(-69,391,l), +(15,391,l), +(15,158,ls), +(15,33,o), +(83,-10,o), +(186,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +ref = t; +}, +{ +pos = (618,0); +ref = t; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = t; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = t; +}; +width = 1236; +} +); +metricLeft = t; +metricRight = t; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/tbar.glyph b/sources/MonaSansMono.glyphspackage/glyphs/tbar.glyph new file mode 100644 index 00000000..e47fb0b4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/tbar.glyph @@ -0,0 +1,37 @@ +{ +color = 7; +glyphname = tbar; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (145,0); +ref = t; +}, +{ +pos = (122,0); +ref = strokeshortcomb.t; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (93,0); +ref = t; +}, +{ +pos = (84,-5); +ref = strokeshortcomb.t; +} +); +width = 618; +} +); +unicode = 359; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/tcaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/tcaron.glyph new file mode 100644 index 00000000..ed7965a1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/tcaron.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = tcaron; +kernLeft = t; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = t; +}, +{ +pos = (106,56); +ref = caroncomb.alt; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = t; +}, +{ +pos = (215,10); +ref = caroncomb.alt; +} +); +width = 618; +} +); +unicode = 357; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/tcedilla.glyph b/sources/MonaSansMono.glyphspackage/glyphs/tcedilla.glyph new file mode 100644 index 00000000..2070f737 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/tcedilla.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = tcedilla; +kernLeft = t; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = t; +}, +{ +pos = (43,0); +ref = cedillacomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = t; +}, +{ +pos = (43,0); +ref = cedillacomb; +} +); +width = 618; +} +); +unicode = 355; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/tcommaaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/tcommaaccent.glyph new file mode 100644 index 00000000..b5f33e11 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/tcommaaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = tcommaaccent; +kernLeft = t; +kernRight = t; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = t; +}, +{ +pos = (23,0); +ref = commaaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = t; +}, +{ +pos = (47,0); +ref = commaaccentcomb; +} +); +width = 618; +} +); +unicode = 539; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/tenge.glyph b/sources/MonaSansMono.glyphspackage/glyphs/tenge.glyph new file mode 100644 index 00000000..0be1fb96 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/tenge.glyph @@ -0,0 +1,78 @@ +{ +glyphname = tenge; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(290,0,l), +(328,0,l), +(328,527,l), +(290,527,l) +); +}, +{ +closed = 1; +nodes = ( +(553,553,l), +(65,553,l), +(65,517,l), +(553,517,l) +); +}, +{ +closed = 1; +nodes = ( +(553,729,l), +(65,729,l), +(65,693,l), +(553,693,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(213,0,l), +(406,0,l), +(406,379,l), +(213,379,l) +); +}, +{ +closed = 1; +nodes = ( +(585,519,l), +(34,519,l), +(34,363,l), +(585,363,l) +); +}, +{ +closed = 1; +nodes = ( +(585,729,l), +(34,729,l), +(34,571,l), +(585,571,l) +); +} +); +width = 619; +} +); +unicode = 8376; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/thorn.glyph b/sources/MonaSansMono.glyphspackage/glyphs/thorn.glyph new file mode 100644 index 00000000..2c60593c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/thorn.glyph @@ -0,0 +1,125 @@ +{ +glyphname = thorn; +kernRight = p; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (305,729); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(139,-167,l), +(139,119,l), +(142,119,l), +(168,43,o), +(236,-9,o), +(333,-9,cs), +(459,-9,o), +(545,92,o), +(545,258,cs), +(545,423,o), +(459,525,o), +(333,525,cs), +(237,525,o), +(168,472,o), +(142,396,c), +(140,396,l), +(140,729,l), +(103,729,l), +(103,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(208,24,o), +(140,120,o), +(140,222,cs), +(140,293,ls), +(140,395,o), +(208,491,o), +(325,491,cs), +(434,491,o), +(507,405,o), +(507,258,cs), +(507,109,o), +(434,24,o), +(325,24,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (308,729); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(227,-167,l), +(227,79,l), +(235,79,l), +(255,26,o), +(316,-10,o), +(389,-10,cs), +(521,-10,o), +(608,93,o), +(608,272,cs), +(608,451,o), +(521,554,o), +(389,554,cs), +(316,554,o), +(255,518,o), +(235,465,c), +(227,465,l), +(227,729,l), +(36,729,l), +(36,-167,l) +); +}, +{ +closed = 1; +nodes = ( +(261,143,o), +(227,181,o), +(227,249,cs), +(227,295,ls), +(227,359,o), +(255,401,o), +(318,401,cs), +(388,401,o), +(413,349,o), +(413,272,cs), +(413,195,o), +(385,143,o), +(313,143,cs) +); +} +); +width = 618; +} +); +metricLeft = l; +metricRight = b; +unicode = 254; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/three.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/three.blackC_ircled.glyph new file mode 100644 index 00000000..7815bff9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/three.blackC_ircled.glyph @@ -0,0 +1,580 @@ +{ +color = 0; +glyphname = three.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs), +(-3,140,o), +(148,-10,o), +(372,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(289,142,o), +(235,191,o), +(232,262,c), +(266,262,l), +(270,205,o), +(313,172,o), +(369,172,cs), +(435,172,o), +(478,209,o), +(478,267,cs), +(478,328,o), +(439,357,o), +(381,357,cs), +(340,357,l), +(340,385,l), +(372,385,ls), +(439,385,o), +(476,420,o), +(476,471,cs), +(476,525,o), +(436,555,o), +(378,555,cs), +(319,555,o), +(279,519,o), +(276,465,c), +(241,465,l), +(245,540,o), +(302,585,o), +(378,585,cs), +(460,585,o), +(511,541,o), +(511,474,cs), +(511,423,o), +(478,387,o), +(434,374,c), +(434,371,l), +(484,360,o), +(514,320,o), +(514,265,cs), +(514,191,o), +(456,142,o), +(369,142,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,189,o), +(200,228,o), +(197,284,c), +(224,284,l), +(228,240,o), +(262,213,o), +(306,213,cs), +(359,213,o), +(393,243,o), +(393,288,cs), +(393,337,o), +(362,360,o), +(315,360,cs), +(284,360,l), +(284,383,l), +(308,383,ls), +(362,383,o), +(391,411,o), +(391,451,cs), +(391,494,o), +(359,518,o), +(313,518,cs), +(267,518,o), +(235,489,o), +(232,447,c), +(204,447,l), +(208,506,o), +(253,542,o), +(313,542,cs), +(379,542,o), +(419,506,o), +(419,454,cs), +(419,413,o), +(393,384,o), +(358,374,c), +(358,371,l), +(398,363,o), +(422,331,o), +(422,287,cs), +(422,228,o), +(375,189,o), +(306,189,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +138, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +395, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +624, +32 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +359, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +473, +100 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +621, +41 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +363, +37 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +613, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +135, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +384, +35 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +616, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +301, +41 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +420, +110 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +578, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +305, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +570, +43 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs), +(-9,141,o), +(155,-9,o), +(379,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,143,o), +(211,200,o), +(207,287,c), +(331,287,l), +(331,262,o), +(351,248,o), +(377,248,cs), +(404,248,o), +(419,265,o), +(419,287,cs), +(419,309,o), +(405,322,o), +(377,322,cs), +(325,322,l), +(325,414,l), +(373,414,ls), +(398,414,o), +(412,429,o), +(412,449,cs), +(412,470,o), +(399,481,o), +(376,481,cs), +(350,481,o), +(335,467,o), +(334,445,c), +(210,445,l), +(213,532,o), +(278,587,o), +(381,587,cs), +(473,587,o), +(537,542,o), +(537,465,cs), +(537,423,o), +(511,389,o), +(478,376,c), +(478,371,l), +(523,358,o), +(548,320,o), +(548,276,cs), +(548,190,o), +(475,143,o), +(377,143,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,194,o), +(180,239,o), +(177,306,c), +(273,306,l), +(273,287,o), +(288,276,o), +(308,276,cs), +(329,276,o), +(341,289,o), +(341,306,cs), +(341,323,o), +(330,333,o), +(308,333,cs), +(268,333,l), +(268,404,l), +(305,404,ls), +(325,404,o), +(336,416,o), +(336,432,cs), +(336,448,o), +(326,456,o), +(308,456,cs), +(288,456,o), +(276,445,o), +(275,428,c), +(179,428,l), +(181,496,o), +(232,538,o), +(312,538,cs), +(383,538,o), +(432,504,o), +(432,444,cs), +(432,411,o), +(412,385,o), +(387,375,c), +(387,371,l), +(422,361,o), +(441,332,o), +(441,297,cs), +(441,231,o), +(384,194,o), +(308,194,cs) +); +} +); +width = 618; +} +); +unicode = 10104; +userData = { +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/three.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/three.circled.glyph new file mode 100644 index 00000000..2b4a8f0e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/three.circled.glyph @@ -0,0 +1,226 @@ +{ +color = 0; +glyphname = three.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,142,o), +(325,191,o), +(325,265,cs), +(325,320,o), +(295,360,o), +(245,371,c), +(245,374,l), +(289,387,o), +(322,423,o), +(322,474,cs), +(322,541,o), +(271,585,o), +(189,585,cs), +(113,585,o), +(56,540,o), +(52,465,c), +(87,465,l), +(90,519,o), +(130,555,o), +(189,555,cs), +(247,555,o), +(287,525,o), +(287,471,cs), +(287,420,o), +(250,385,o), +(183,385,cs), +(151,385,l), +(151,357,l), +(192,357,ls), +(250,357,o), +(289,328,o), +(289,267,cs), +(289,209,o), +(246,172,o), +(180,172,cs), +(124,172,o), +(81,205,o), +(77,262,c), +(43,262,l), +(46,191,o), +(100,142,o), +(180,142,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (97,189); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(288,143,o), +(361,190,o), +(361,276,cs), +(361,320,o), +(336,358,o), +(291,371,c), +(291,376,l), +(324,389,o), +(350,423,o), +(350,465,cs), +(350,542,o), +(286,587,o), +(194,587,cs), +(91,587,o), +(26,532,o), +(23,445,c), +(147,445,l), +(148,467,o), +(163,481,o), +(189,481,cs), +(212,481,o), +(225,470,o), +(225,449,cs), +(225,429,o), +(211,414,o), +(186,414,cs), +(138,414,l), +(138,322,l), +(190,322,ls), +(218,322,o), +(232,309,o), +(232,287,cs), +(232,265,o), +(217,248,o), +(190,248,cs), +(164,248,o), +(144,262,o), +(144,287,c), +(20,287,l), +(24,200,o), +(84,143,o), +(190,143,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (92,191); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9314; +userData = { +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/three.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/three.dnom.glyph new file mode 100644 index 00000000..2b3312ae --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/three.dnom.glyph @@ -0,0 +1,249 @@ +{ +glyphname = three.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-5,o), +(339,40,o), +(339,108,cs), +(339,161,o), +(310,196,o), +(266,205,c), +(266,208,l), +(309,221,o), +(337,255,o), +(337,300,cs), +(337,361,o), +(290,402,o), +(215,402,cs), +(146,402,o), +(93,361,o), +(90,292,c), +(121,292,l), +(124,341,o), +(161,374,o), +(215,374,cs), +(269,374,o), +(305,346,o), +(305,297,cs), +(305,250,o), +(270,218,o), +(209,218,cs), +(180,218,l), +(180,193,l), +(217,193,ls), +(271,193,o), +(306,165,o), +(306,110,cs), +(306,57,o), +(267,23,o), +(207,23,cs), +(153,23,o), +(115,56,o), +(112,106,c), +(81,106,l), +(84,40,o), +(134,-5,o), +(207,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-5,o), +(369,36,o), +(369,111,cs), +(369,148,o), +(347,181,o), +(307,193,c), +(307,197,l), +(338,209,o), +(360,239,o), +(360,273,cs), +(360,340,o), +(303,380,o), +(220,380,cs), +(127,380,o), +(70,332,o), +(67,256,c), +(176,256,l), +(178,278,o), +(195,286,o), +(215,286,cs), +(237,286,o), +(250,277,o), +(250,260,cs), +(250,242,o), +(236,230,o), +(213,230,cs), +(170,230,l), +(170,149,l), +(217,149,ls), +(242,149,o), +(255,138,o), +(255,120,cs), +(255,101,o), +(241,88,o), +(216,88,cs), +(193,88,o), +(173,99,o), +(174,120,c), +(64,120,l), +(67,45,o), +(122,-5,o), +(216,-5,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +metricWidth = H; +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/three.glyph b/sources/MonaSansMono.glyphspackage/glyphs/three.glyph new file mode 100644 index 00000000..329f07c6 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/three.glyph @@ -0,0 +1,382 @@ +{ +glyphname = three; +kernLeft = three; +kernRight = three; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(441,-8,o), +(534,73,o), +(534,195,cs), +(534,289,o), +(482,356,o), +(393,374,c), +(393,378,l), +(470,400,o), +(521,461,o), +(521,547,cs), +(521,657,o), +(439,730,o), +(305,730,cs), +(170,730,o), +(78,641,o), +(83,514,c), +(121,515,l), +(117,624,o), +(192,697,o), +(305,697,cs), +(411,697,o), +(482,642,o), +(482,546,cs), +(482,459,o), +(425,391,o), +(317,391,cs), +(249,391,l), +(249,358,l), +(315,358,ls), +(422,358,o), +(494,306,o), +(494,196,cs), +(494,92,o), +(417,26,o), +(300,26,cs), +(184,26,o), +(109,104,o), +(113,220,c), +(78,220,l), +(74,83,o), +(163,-8,o), +(301,-8,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(434,-8,o), +(526,74,o), +(526,197,cs), +(526,292,o), +(477,360,o), +(392,378,c), +(392,382,l), +(468,404,o), +(523,466,o), +(523,553,cs), +(523,664,o), +(442,738,o), +(310,738,cs), +(185,738,o), +(97,658,o), +(92,541,c), +(130,541,l), +(136,638,o), +(206,705,o), +(310,705,cs), +(414,705,o), +(484,649,o), +(484,552,cs), +(484,458,o), +(418,395,o), +(300,395,cs), +(249,395,l), +(249,362,l), +(315,362,ls), +(417,362,o), +(486,309,o), +(486,198,cs), +(486,93,o), +(410,26,o), +(294,26,cs), +(189,26,o), +(119,92,o), +(113,189,c), +(75,189,l), +(80,72,o), +(168,-8,o), +(294,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(1274,-10,o), +(1392,69,o), +(1392,210,cs), +(1392,288,o), +(1344,355,o), +(1273,371,c), +(1273,378,l), +(1332,397,o), +(1376,457,o), +(1376,528,cs), +(1376,655,o), +(1272,730,o), +(1117,730,cs), +(948,730,o), +(842,640,o), +(837,499,c), +(1026,499,l), +(1029,542,o), +(1061,568,o), +(1110,568,cs), +(1157,568,o), +(1185,546,o), +(1185,505,cs), +(1185,464,o), +(1157,436,o), +(1105,436,cs), +(1027,436,l), +(1027,295,l), +(1113,295,ls), +(1167,295,o), +(1195,270,o), +(1195,227,cs), +(1195,182,o), +(1164,152,o), +(1109,152,cs), +(1057,152,o), +(1021,178,o), +(1020,225,c), +(830,225,l), +(836,84,o), +(936,-10,o), +(1110,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,-10,o), +(587,69,o), +(587,210,cs), +(587,287,o), +(540,355,o), +(470,371,c), +(470,378,l), +(528,397,o), +(571,458,o), +(571,528,cs), +(571,655,o), +(468,730,o), +(315,730,cs), +(147,730,o), +(42,640,o), +(37,499,c), +(226,499,l), +(229,541,o), +(259,568,o), +(308,568,cs), +(353,568,o), +(380,546,o), +(380,505,cs), +(380,464,o), +(352,436,o), +(302,436,cs), +(225,436,l), +(225,295,l), +(310,295,ls), +(363,295,o), +(390,270,o), +(390,227,cs), +(390,182,o), +(360,152,o), +(307,152,cs), +(257,152,o), +(221,178,o), +(220,225,c), +(30,225,l), +(36,84,o), +(136,-10,o), +(308,-10,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(469,-10,o), +(587,70,o), +(587,212,cs), +(587,290,o), +(543,354,o), +(468,375,c), +(468,382,l), +(527,405,o), +(571,464,o), +(571,535,cs), +(571,662,o), +(467,738,o), +(313,738,cs), +(144,738,o), +(39,647,o), +(34,505,c), +(221,505,l), +(224,552,o), +(257,578,o), +(306,578,cs), +(353,578,o), +(382,555,o), +(382,512,cs), +(382,469,o), +(352,440,o), +(301,440,cs), +(223,440,l), +(223,300,l), +(309,300,ls), +(364,300,o), +(392,274,o), +(392,229,cs), +(392,182,o), +(361,150,o), +(305,150,cs), +(253,150,o), +(215,178,o), +(215,228,c), +(27,228,l), +(33,85,o), +(133,-10,o), +(306,-10,cs) +); +} +); +width = 619; +} +); +unicode = 51; +userData = { +KernOnName = three; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/three.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/three.numr.glyph new file mode 100644 index 00000000..daf863ee --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/three.numr.glyph @@ -0,0 +1,167 @@ +{ +color = 6; +glyphname = three.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = three.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.dnom; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/three.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/three.tf.glyph new file mode 100644 index 00000000..f1a5f0e4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/three.tf.glyph @@ -0,0 +1,248 @@ +{ +glyphname = three.tf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(438,-8,o), +(533,74,o), +(533,197,cs), +(533,287,o), +(487,359,o), +(395,378,c), +(395,382,l), +(476,405,o), +(530,468,o), +(530,553,cs), +(530,664,o), +(447,738,o), +(310,738,cs), +(182,738,o), +(90,658,o), +(85,541,c), +(123,541,l), +(129,638,o), +(203,705,o), +(310,705,cs), +(418,705,o), +(491,649,o), +(491,552,cs), +(491,458,o), +(422,395,o), +(300,395,cs), +(248,395,l), +(248,362,l), +(315,362,ls), +(421,362,o), +(493,309,o), +(493,198,cs), +(493,93,o), +(414,26,o), +(294,26,cs), +(185,26,o), +(112,92,o), +(106,189,c), +(68,189,l), +(73,72,o), +(164,-8,o), +(294,-8,cs) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-10,o), +(579,69,o), +(579,210,cs), +(579,286,o), +(536,350,o), +(463,371,c), +(463,378,l), +(521,401,o), +(563,459,o), +(563,529,cs), +(563,655,o), +(461,730,o), +(312,730,cs), +(148,730,o), +(46,640,o), +(41,499,c), +(224,499,l), +(227,546,o), +(259,572,o), +(305,572,cs), +(351,572,o), +(378,549,o), +(378,506,cs), +(378,464,o), +(350,435,o), +(301,435,cs), +(225,435,l), +(225,297,l), +(308,297,ls), +(361,297,o), +(388,271,o), +(388,226,cs), +(388,180,o), +(358,148,o), +(305,148,cs), +(255,148,o), +(218,176,o), +(218,225,c), +(34,225,l), +(40,84,o), +(137,-10,o), +(306,-10,cs) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 618; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/threeeighths.glyph b/sources/MonaSansMono.glyphspackage/glyphs/threeeighths.glyph new file mode 100644 index 00000000..52fcf2e3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/threeeighths.glyph @@ -0,0 +1,66 @@ +{ +color = 6; +glyphname = threeeighths; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (-81,0); +ref = three.numr; +}, +{ +alignment = -1; +pos = (3,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (264,0); +ref = eight.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-61,72); +ref = three.numr; +scale = (0.9,0.9); +}, +{ +alignment = -1; +pos = (5,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (280,0); +ref = eight.dnom; +scale = (0.9,0.9); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 618; +} +); +metricWidth = H; +unicode = 8540; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/threeinferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/threeinferior.glyph new file mode 100644 index 00000000..18fda406 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/threeinferior.glyph @@ -0,0 +1,261 @@ +{ +glyphname = threeinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (211,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(294,-45,o), +(352,4,o), +(352,78,cs), +(352,133,o), +(322,173,o), +(272,184,c), +(272,187,l), +(316,200,o), +(349,236,o), +(349,287,cs), +(349,354,o), +(298,398,o), +(216,398,cs), +(140,398,o), +(83,353,o), +(79,278,c), +(114,278,l), +(117,332,o), +(157,368,o), +(216,368,cs), +(274,368,o), +(314,338,o), +(314,284,cs), +(314,233,o), +(277,198,o), +(210,198,cs), +(178,198,l), +(178,170,l), +(219,170,ls), +(277,170,o), +(316,141,o), +(316,80,cs), +(316,22,o), +(273,-15,o), +(207,-15,cs), +(151,-15,o), +(108,18,o), +(104,75,c), +(70,75,l), +(73,4,o), +(127,-45,o), +(207,-45,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = _center; +pos = (217,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(314,-46,o), +(387,1,o), +(387,87,cs), +(387,131,o), +(362,169,o), +(317,182,c), +(317,187,l), +(350,200,o), +(376,234,o), +(376,276,cs), +(376,353,o), +(312,398,o), +(220,398,cs), +(117,398,o), +(52,343,o), +(49,256,c), +(173,256,l), +(174,278,o), +(189,292,o), +(215,292,cs), +(238,292,o), +(251,281,o), +(251,260,cs), +(251,240,o), +(237,225,o), +(212,225,cs), +(164,225,l), +(164,133,l), +(216,133,ls), +(244,133,o), +(258,120,o), +(258,98,cs), +(258,76,o), +(243,59,o), +(216,59,cs), +(190,59,o), +(170,73,o), +(170,98,c), +(46,98,l), +(50,11,o), +(110,-46,o), +(216,-46,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 618; +} +); +unicode = 8323; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/threequarters.glyph b/sources/MonaSansMono.glyphspackage/glyphs/threequarters.glyph new file mode 100644 index 00000000..585588d7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/threequarters.glyph @@ -0,0 +1,66 @@ +{ +color = 6; +glyphname = threequarters; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (-81,0); +ref = three.numr; +}, +{ +alignment = -1; +pos = (31,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (247,0); +ref = four.dnom; +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-58,72); +ref = three.numr; +scale = (0.9,0.9); +}, +{ +alignment = -1; +pos = (10,0); +ref = fraction; +}, +{ +alignment = -1; +pos = (272,0); +ref = four.dnom; +scale = (0.9,0.9); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = three.numr; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = three.numr; +}; +width = 618; +} +); +metricWidth = H; +unicode = 190; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/threesuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/threesuperior.glyph new file mode 100644 index 00000000..8dfe2802 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/threesuperior.glyph @@ -0,0 +1,169 @@ +{ +color = 6; +glyphname = threesuperior; +kernLeft = threesuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = threeinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = threeinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +target = ( +0, +41 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +26 +); +stem = -2; +target = ( +0, +27 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +19 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +38 +); +stem = -2; +target = ( +0, +37 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +27 +); +stem = -2; +target = ( +0, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +31 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +15 +); +stem = -2; +target = ( +0, +16 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +22 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = threeinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = threeinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = threeinferior; +}; +width = 618; +} +); +unicode = 179; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = three; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/tilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/tilde.glyph new file mode 100644 index 00000000..5bd04eda --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/tilde.glyph @@ -0,0 +1,27 @@ +{ +color = 6; +glyphname = tilde; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 732; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/tildecomb.glyph b/sources/MonaSansMono.glyphspackage/glyphs/tildecomb.glyph new file mode 100644 index 00000000..f75a988c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/tildecomb.glyph @@ -0,0 +1,117 @@ +{ +glyphname = tildecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (307,672); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(410,776,o), +(437,790,o), +(461,825,c), +(440,838,l), +(424,817,o), +(402,808,o), +(380,808,cs), +(334,807,o), +(285,836,o), +(244,836,cs), +(205,836,o), +(183,822,o), +(158,786,c), +(178,774,l), +(195,796,o), +(212,803,o), +(237,803,cs), +(280,803,o), +(312,776,o), +(372,776,cs) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = _top; +pos = (310,678); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(417,730,o), +(475,756,o), +(508,853,c), +(432,900,l), +(418,877,o), +(404,860,o), +(371,860,cs), +(320,860,o), +(305,898,o), +(243,898,cs), +(200,898,o), +(142,872,o), +(109,775,c), +(185,728,l), +(199,751,o), +(213,768,o), +(246,768,cs), +(297,768,o), +(312,730,o), +(374,730,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(441,736,o), +(491,759,o), +(526,846,c), +(442,894,l), +(424,868,o), +(401,857,o), +(376,857,cs), +(332,857,o), +(287,892,o), +(228,892,cs), +(180,892,o), +(134,869,o), +(92,782,c), +(175,734,l), +(190,755,o), +(210,771,o), +(240,771,cs), +(285,771,o), +(321,736,o), +(387,736,cs) +); +} +); +width = 618; +} +); +metricLeft = "=40"; +metricRight = "=40"; +unicode = 771; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/trademark.glyph b/sources/MonaSansMono.glyphspackage/glyphs/trademark.glyph new file mode 100644 index 00000000..e2642c49 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/trademark.glyph @@ -0,0 +1,140 @@ +{ +glyphname = trademark; +kernLeft = trademark; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(295,419,l), +(295,569,l), +(294,686,l), +(296,686,l), +(419,419,l), +(447,419,l), +(570,686,l), +(573,686,l), +(570,569,l), +(570,419,l), +(605,419,l), +(605,729,l), +(558,729,l), +(434,459,l), +(431,459,l), +(307,729,l), +(263,729,l), +(263,419,l) +); +}, +{ +closed = 1; +nodes = ( +(99,419,l), +(99,699,l), +(213,699,l), +(213,729,l), +(-44,729,l), +(-44,699,l), +(66,699,l), +(66,419,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(357,415,l), +(357,507,l), +(356,590,l), +(359,590,l), +(414,415,l), +(503,415,l), +(558,590,l), +(561,590,l), +(560,507,l), +(560,415,l), +(672,415,l), +(672,729,l), +(512,729,l), +(462,562,l), +(458,562,l), +(406,729,l), +(246,729,l), +(246,415,l) +); +}, +{ +closed = 1; +nodes = ( +(117,415,l), +(117,627,l), +(201,627,l), +(201,729,l), +(-85,729,l), +(-85,627,l), +(-3,627,l), +(-3,415,l) +); +} +); +width = 619; +} +); +unicode = 8482; +userData = { +KernOnSpecialSpacing = { +L = superiors; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/two.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/two.blackC_ircled.glyph new file mode 100644 index 00000000..8e1d5fd1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/two.blackC_ircled.glyph @@ -0,0 +1,318 @@ +{ +color = 0; +glyphname = two.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs), +(-3,140,o), +(148,-10,o), +(372,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,158,ls), +(241,308,o), +(470,340,o), +(470,462,cs), +(470,518,o), +(433,552,o), +(374,552,cs), +(315,552,o), +(271,514,o), +(273,451,c), +(238,450,l), +(236,528,o), +(292,582,o), +(375,582,cs), +(455,582,o), +(505,535,o), +(505,463,cs), +(505,326,o), +(288,293,o), +(276,176,c), +(508,176,l), +(508,145,l), +(241,145,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,204,ls), +(204,323,o), +(387,348,o), +(387,446,cs), +(387,490,o), +(357,517,o), +(310,517,cs), +(264,517,o), +(228,486,o), +(230,437,c), +(202,437,l), +(200,498,o), +(245,541,o), +(311,541,cs), +(375,541,o), +(415,503,o), +(415,447,cs), +(415,337,o), +(242,311,o), +(232,218,c), +(417,218,l), +(417,193,l), +(204,193,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 0; +options = 0; +place = ( +413, +222 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +138, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +613, +36 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +306, +38 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +570, +42 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-11, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs), +(-9,141,o), +(155,-9,o), +(379,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,169,ls), +(213,345,o), +(413,371,o), +(413,446,cs), +(413,466,o), +(397,477,o), +(380,477,cs), +(350,477,o), +(340,456,o), +(339,437,c), +(213,437,l), +(220,526,o), +(281,584,o), +(387,584,cs), +(480,584,o), +(541,529,o), +(541,452,cs), +(541,335,o), +(396,292,o), +(358,257,c), +(538,257,l), +(538,147,l), +(213,147,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,216,ls), +(182,352,o), +(337,373,o), +(337,431,cs), +(337,446,o), +(325,455,o), +(312,455,cs), +(288,455,o), +(281,439,o), +(280,424,c), +(182,424,l), +(188,493,o), +(235,538,o), +(317,538,cs), +(389,538,o), +(436,495,o), +(436,435,cs), +(436,345,o), +(324,311,o), +(295,284,c), +(434,284,l), +(434,199,l), +(182,199,l) +); +} +); +width = 618; +} +); +unicode = 10103; +userData = { +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/two.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/two.circled.glyph new file mode 100644 index 00000000..0fc1d46f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/two.circled.glyph @@ -0,0 +1,188 @@ +{ +color = 0; +glyphname = two.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,145,l), +(319,176,l), +(87,176,l), +(99,293,o), +(316,326,o), +(316,463,cs), +(316,535,o), +(266,582,o), +(186,582,cs), +(103,582,o), +(47,528,o), +(49,450,c), +(84,451,l), +(82,514,o), +(126,552,o), +(185,552,cs), +(244,552,o), +(281,518,o), +(281,462,cs), +(281,340,o), +(52,308,o), +(52,158,cs), +(52,145,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (89,189); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(351,147,l), +(351,257,l), +(171,257,l), +(209,292,o), +(354,335,o), +(354,452,cs), +(354,529,o), +(293,584,o), +(200,584,cs), +(94,584,o), +(33,526,o), +(26,437,c), +(152,437,l), +(153,456,o), +(163,477,o), +(193,477,cs), +(210,477,o), +(226,466,o), +(226,446,cs), +(226,371,o), +(26,345,o), +(26,169,cs), +(26,147,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (93,191); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +metricLeft = one.sansSerifCircled; +metricRight = one.sansSerifCircled; +unicode = 9313; +userData = { +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/two.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/two.dnom.glyph new file mode 100644 index 00000000..8d2833a4 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/two.dnom.glyph @@ -0,0 +1,160 @@ +{ +glyphname = two.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,28,l), +(131,28,l), +(141,136,o), +(341,166,o), +(341,291,cs), +(341,357,o), +(295,401,o), +(221,401,cs), +(142,401,o), +(94,347,o), +(96,280,c), +(128,280,l), +(126,335,o), +(163,373,o), +(221,373,cs), +(275,373,o), +(308,342,o), +(308,291,cs), +(308,179,o), +(98,149,o), +(98,12,cs), +(98,0,l) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(360,0,l), +(360,97,l), +(197,97,l), +(231,126,o), +(363,163,o), +(363,264,cs), +(363,331,o), +(308,379,o), +(225,379,cs), +(135,379,o), +(75,332,o), +(69,251,c), +(181,251,l), +(181,269,o), +(193,284,o), +(219,284,cs), +(235,284,o), +(250,275,o), +(250,259,cs), +(250,195,o), +(69,173,o), +(69,20,cs), +(69,0,l) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +}; +width = 618; +} +); +metricWidth = H; +userData = { +KernOnName = two.dnom; +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/two.glyph b/sources/MonaSansMono.glyphspackage/glyphs/two.glyph new file mode 100644 index 00000000..370d4a6c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/two.glyph @@ -0,0 +1,218 @@ +{ +glyphname = two; +kernLeft = two; +kernRight = two; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,0,l), +(536,34,l), +(132,34,l), +(141,242,o), +(525,300,o), +(525,532,cs), +(525,646,o), +(442,730,o), +(314,730,cs), +(181,730,o), +(89,643,o), +(94,515,c), +(128,515,l), +(124,624,o), +(200,696,o), +(311,696,cs), +(417,696,o), +(487,630,o), +(487,529,cs), +(487,309,o), +(93,269,o), +(93,13,cs), +(93,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(546,0,l), +(546,34,l), +(109,34,l), +(125,23,l), +(125,138,o), +(234,210,o), +(334,280,cs), +(431,348,o), +(530,421,o), +(530,538,cs), +(530,659,o), +(445,737,o), +(311,737,cs), +(172,737,o), +(79,646,o), +(84,518,c), +(122,519,l), +(118,628,o), +(194,703,o), +(311,703,cs), +(422,703,o), +(490,641,o), +(490,538,cs), +(490,440,o), +(408,375,o), +(312,307,cs), +(206,232,o), +(89,153,o), +(89,20,cs), +(89,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(577,0,l), +(577,165,l), +(194,165,l), +(276,133,l), +(272,227,o), +(572,285,o), +(572,511,cs), +(572,639,o), +(474,729,o), +(321,729,cs), +(157,729,o), +(50,639,o), +(40,487,c), +(229,487,l), +(230,532,o), +(256,568,o), +(311,568,cs), +(351,568,o), +(381,544,o), +(381,503,cs), +(381,367,o), +(39,322,o), +(39,35,cs), +(39,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(578,0,l), +(578,167,l), +(164,167,l), +(238,118,l), +(242,166,o), +(331,204,o), +(414,264,cs), +(500,326,o), +(580,401,o), +(580,517,cs), +(580,646,o), +(479,737,o), +(321,737,cs), +(152,737,o), +(42,646,o), +(32,492,c), +(223,492,l), +(224,538,o), +(252,574,o), +(311,574,cs), +(354,574,o), +(387,550,o), +(387,509,cs), +(387,456,o), +(328,419,o), +(258,370,cs), +(158,300,o), +(33,212,o), +(33,35,cs), +(33,0,l) +); +} +); +width = 619; +} +); +unicode = 50; +userData = { +KernOnName = two; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/two.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/two.numr.glyph new file mode 100644 index 00000000..ffce9579 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/two.numr.glyph @@ -0,0 +1,111 @@ +{ +color = 6; +glyphname = two.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = two.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = two.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = two.dnom; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/two.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/two.tf.glyph new file mode 100644 index 00000000..4e965d8d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/two.tf.glyph @@ -0,0 +1,189 @@ +{ +glyphname = two.tf; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(533,0,l), +(533,34,l), +(127,34,l), +(140,250,o), +(527,303,o), +(527,538,cs), +(527,659,o), +(444,737,o), +(310,737,cs), +(174,737,o), +(81,646,o), +(86,518,c), +(124,519,l), +(120,628,o), +(196,703,o), +(310,703,cs), +(421,703,o), +(488,641,o), +(488,538,cs), +(488,323,o), +(91,267,o), +(91,20,cs), +(91,0,l) +); +} +); +userData = { +RMXScaler = { +monoWidth = 600; +useSpacing = 90; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(627,0,l), +(627,167,l), +(467,167,ls), +(424,167,o), +(378,164,o), +(334,160,c), +(426,255,o), +(622,310,o), +(622,507,cs), +(622,649,o), +(518,730,o), +(363,730,cs), +(197,730,o), +(88,631,o), +(92,474,c), +(282,474,l), +(276,537,o), +(306,567,o), +(352,567,cs), +(395,567,o), +(424,542,o), +(424,498,cs), +(424,363,o), +(89,339,o), +(89,24,cs), +(89,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(566,0,l), +(566,165,l), +(256,165,l), +(315,243,o), +(569,312,o), +(569,511,cs), +(569,639,o), +(471,729,o), +(320,729,cs), +(158,729,o), +(51,639,o), +(41,487,c), +(229,487,l), +(230,532,o), +(256,568,o), +(310,568,cs), +(349,568,o), +(379,544,o), +(379,503,cs), +(379,367,o), +(42,322,o), +(42,35,cs), +(42,0,l) +); +} +); +userData = { +RMXScaler = { +keepStroke = 40; +monoWidth = 600; +useSpacing = 70; +}; +}; +width = 618; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/twoinferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/twoinferior.glyph new file mode 100644 index 00000000..e841734a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/twoinferior.glyph @@ -0,0 +1,168 @@ +{ +glyphname = twoinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (219,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(354,-40,l), +(354,-9,l), +(122,-9,l), +(134,108,o), +(351,141,o), +(351,278,cs), +(351,350,o), +(301,397,o), +(221,397,cs), +(138,397,o), +(82,344,o), +(84,266,c), +(119,266,l), +(117,329,o), +(161,367,o), +(220,367,cs), +(279,367,o), +(316,333,o), +(316,277,cs), +(316,155,o), +(87,123,o), +(87,-27,cs), +(87,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (216,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(377,-40,l), +(377,70,l), +(197,70,l), +(235,105,o), +(380,148,o), +(380,265,cs), +(380,342,o), +(319,397,o), +(226,397,cs), +(120,397,o), +(59,339,o), +(52,250,c), +(178,250,l), +(179,269,o), +(189,290,o), +(219,290,cs), +(236,290,o), +(252,279,o), +(252,259,cs), +(252,184,o), +(52,158,o), +(52,-18,cs), +(52,-40,l) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 619; +} +); +unicode = 8322; +userData = { +KernOnName = twoinferior; +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/twosuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/twosuperior.glyph new file mode 100644 index 00000000..3feb7eb5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/twosuperior.glyph @@ -0,0 +1,114 @@ +{ +color = 6; +glyphname = twosuperior; +kernLeft = twosuperior; +kernRight = twosuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = twoinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = twoinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +25 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +0, +18 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +21 +); +stem = -2; +target = ( +0, +8 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = twoinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = twoinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = twoinferior; +}; +width = 619; +} +); +unicode = 178; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = two; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/u.glyph b/sources/MonaSansMono.glyphspackage/glyphs/u.glyph new file mode 100644 index 00000000..0684bafb --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/u.glyph @@ -0,0 +1,175 @@ +{ +glyphname = u; +kernLeft = u; +kernRight = a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = ogonek; +pos = (505,0); +}, +{ +name = top; +pos = (305,517); +}, +{ +name = topright; +pos = (468,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(370,-8,o), +(435,44,o), +(461,121,c), +(471,121,l), +(471,0,l), +(505,0,l), +(505,517,l), +(468,517,l), +(468,249,ls), +(468,112,o), +(393,26,o), +(291,26,cs), +(186,26,o), +(141,94,o), +(141,211,cs), +(141,517,l), +(104,517,l), +(104,204,ls), +(104,61,o), +(176,-8,o), +(283,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +-20 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = ogonek; +pos = (566,0); +}, +{ +name = top; +pos = (305,544); +}, +{ +name = topright; +pos = (404,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-10,o), +(340,21,o), +(364,89,c), +(378,89,l), +(382,0,l), +(566,0,l), +(566,544,l), +(375,544,l), +(375,236,ls), +(375,193,o), +(352,144,o), +(301,144,cs), +(253,144,o), +(235,183,o), +(235,253,cs), +(235,544,l), +(44,544,l), +(44,201,ls), +(44,66,o), +(102,-10,o), +(222,-10,cs) +); +} +); +width = 618; +} +); +unicode = 117; +userData = { +KernOnName = u; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uacute.glyph new file mode 100644 index 00000000..36d193a3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = uacute; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,-155); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (44,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 250; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ubreve.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ubreve.glyph new file mode 100644 index 00000000..9979fc6d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ubreve.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ubreve; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-161); +ref = brevecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-134); +ref = brevecomb; +} +); +width = 618; +} +); +unicode = 365; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ucircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ucircumflex.glyph new file mode 100644 index 00000000..0cbefaa5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ucircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ucircumflex; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 251; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/udieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/udieresis.glyph new file mode 100644 index 00000000..c2ccf1b7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/udieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = udieresis; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-155); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-134); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 252; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/udieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/udieresis.ss01.glyph new file mode 100644 index 00000000..8460557c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/udieresis.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = udieresis.ss01; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-5,-155); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-134); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/udotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/udotbelow.glyph new file mode 100644 index 00000000..15d67b94 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/udotbelow.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = udotbelow; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,0); +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,0); +ref = dotbelowcomb; +} +); +width = 618; +} +); +unicode = 7909; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/udotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/udotbelow.ss01.glyph new file mode 100644 index 00000000..d88a6455 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/udotbelow.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = udotbelow.ss01; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-5,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-5,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ugrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ugrave.glyph new file mode 100644 index 00000000..f7bc887f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ugrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ugrave; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-44,-155); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-53,-134); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 249; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uhookabove.glyph new file mode 100644 index 00000000..973f0a05 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uhookabove.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = uhookabove; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-155); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (3,-134); +ref = hookabovecomb; +} +); +width = 618; +} +); +unicode = 7911; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uhorn.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uhorn.glyph new file mode 100644 index 00000000..6c9410ef --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uhorn.glyph @@ -0,0 +1,39 @@ +{ +color = 7; +glyphname = uhorn; +kernLeft = u; +layers = ( +{ +layerId = m019; +shapes = ( +{ +alignment = -1; +pos = (-14,0); +ref = u; +}, +{ +pos = (210,8); +ref = horncomb; +} +); +width = 600; +}, +{ +layerId = m020; +shapes = ( +{ +alignment = -1; +pos = (-15,0); +ref = u; +}, +{ +pos = (204,-46); +ref = horncomb; +} +); +width = 635; +} +); +metricLeft = u; +unicode = 432; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uhornacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uhornacute.glyph new file mode 100644 index 00000000..9b49ebb9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uhornacute.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = uhornacute; +kernLeft = u; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (21,-155); +ref = acutecomb; +} +); +width = 600; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (29,-134); +ref = acutecomb; +} +); +width = 635; +} +); +unicode = 7913; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uhorndotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uhorndotbelow.glyph new file mode 100644 index 00000000..3aef987c --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uhorndotbelow.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = uhorndotbelow; +kernLeft = u; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-18,0); +ref = dotbelowcomb; +} +); +width = 600; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-19,0); +ref = dotbelowcomb; +} +); +width = 635; +} +); +unicode = 7921; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uhorndotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uhorndotbelow.ss01.glyph new file mode 100644 index 00000000..fdd64465 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uhorndotbelow.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = uhorndotbelow.ss01; +kernLeft = u; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-19,0); +ref = dotbelowcomb.ss01; +} +); +width = 600; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-20,0); +ref = dotbelowcomb.ss01; +} +); +width = 635; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uhorngrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uhorngrave.glyph new file mode 100644 index 00000000..78d83772 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uhorngrave.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = uhorngrave; +kernLeft = u; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-58,-155); +ref = gravecomb; +} +); +width = 600; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-68,-134); +ref = gravecomb; +} +); +width = 635; +} +); +unicode = 7915; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uhornhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uhornhookabove.glyph new file mode 100644 index 00000000..e53eb578 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uhornhookabove.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = uhornhookabove; +kernLeft = u; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-18,-155); +ref = hookabovecomb; +} +); +width = 600; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-12,-134); +ref = hookabovecomb; +} +); +width = 635; +} +); +unicode = 7917; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uhorntilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uhorntilde.glyph new file mode 100644 index 00000000..fa178bbf --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uhorntilde.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = uhorntilde; +kernLeft = u; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-16,-155); +ref = tildecomb; +} +); +width = 600; +}, +{ +layerId = m020; +shapes = ( +{ +ref = uhorn; +}, +{ +pos = (-20,-134); +ref = tildecomb; +} +); +width = 635; +} +); +unicode = 7919; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uhungarumlaut.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uhungarumlaut.glyph new file mode 100644 index 00000000..79019af9 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uhungarumlaut.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = uhungarumlaut; +kernLeft = u; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,-155); +ref = hungarumlautcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (69,-134); +ref = hungarumlautcomb; +} +); +width = 618; +} +); +unicode = 369; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/umacron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/umacron.glyph new file mode 100644 index 00000000..063ccaa3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/umacron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = umacron; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-5,-155); +ref = macroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-5,-134); +ref = macroncomb; +} +); +width = 618; +} +); +unicode = 363; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/underscore.glyph b/sources/MonaSansMono.glyphspackage/glyphs/underscore.glyph new file mode 100644 index 00000000..6062a499 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/underscore.glyph @@ -0,0 +1,44 @@ +{ +glyphname = underscore; +kernLeft = underscore; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(474,-33,l), +(474,0,l), +(144,0,l), +(144,-33,l) +); +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(511,-160,l), +(511,0,l), +(107,0,l), +(107,-160,l) +); +} +); +width = 618; +} +); +unicode = 95; +userData = { +KernOnName = underscore; +KernOnSpecialSpacing = { +L = underscore; +R = underscore; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uogonek.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uogonek.glyph new file mode 100644 index 00000000..8630ef33 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uogonek.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = uogonek; +kernLeft = u; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (143,0); +ref = ogonekcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (141,0); +ref = ogonekcomb; +} +); +width = 618; +} +); +unicode = 371; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/upA_rrow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/upA_rrow.glyph new file mode 100644 index 00000000..cc3c5fbe --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/upA_rrow.glyph @@ -0,0 +1,76 @@ +{ +glyphname = upArrow; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,95,l), +(328,578,l), +(493,456,l), +(493,498,l), +(310,634,l), +(127,498,l), +(127,456,l), +(292,578,l), +(292,95,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(391,74,l), +(391,436,l), +(539,340,l), +(539,506,l), +(309,655,l), +(79,506,l), +(79,340,l), +(227,436,l), +(227,74,l) +); +} +); +width = 618; +} +); +unicode = 8593; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/uring.glyph b/sources/MonaSansMono.glyphspackage/glyphs/uring.glyph new file mode 100644 index 00000000..b61699ea --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/uring.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = uring; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-155); +ref = ringcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-4,-134); +ref = ringcomb; +} +); +width = 618; +} +); +unicode = 367; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/utilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/utilde.glyph new file mode 100644 index 00000000..7d3bef74 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/utilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = utilde; +kernLeft = u; +kernRight = a; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = u; +}, +{ +pos = (-2,-155); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = u; +}, +{ +pos = (-5,-134); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 361; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/v.glyph b/sources/MonaSansMono.glyphspackage/glyphs/v.glyph new file mode 100644 index 00000000..7fa17737 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/v.glyph @@ -0,0 +1,145 @@ +{ +glyphname = v; +kernLeft = v; +kernRight = v; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(330,0,l), +(526,518,l), +(486,518,l), +(344,134,l), +(310,39,l), +(308,39,l), +(273,134,l), +(130,518,l), +(89,518,l), +(288,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(332,0,l), +(554,517,l), +(514,517,l), +(352,132,l), +(313,30,l), +(305,30,l), +(266,132,l), +(104,517,l), +(64,517,l), +(286,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +target = ( +0, +7 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = top; +pos = (311,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(429,0,l), +(606,544,l), +(400,544,l), +(343,295,l), +(312,155,l), +(306,155,l), +(274,296,l), +(218,544,l), +(13,544,l), +(190,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(438,0,l), +(610,544,l), +(395,544,l), +(325,244,l), +(316,135,l), +(303,135,l), +(294,244,l), +(224,544,l), +(8,544,l), +(180,0,l) +); +} +); +width = 618; +} +); +unicode = 118; +userData = { +KernOnName = v; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/w.glyph b/sources/MonaSansMono.glyphspackage/glyphs/w.glyph new file mode 100644 index 00000000..dace5551 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/w.glyph @@ -0,0 +1,190 @@ +{ +glyphname = w; +kernLeft = w; +kernRight = w; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(306,471,l), +(309,471,l), +(446,0,l), +(494,0,l), +(639,517,l), +(603,517,l), +(472,38,l), +(470,38,l), +(331,517,l), +(286,517,l), +(153,37,l), +(151,37,l), +(15,517,l), +(-21,517,l), +(125,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(207,0,l), +(272,292,l), +(304,487,l), +(312,487,l), +(346,292,l), +(414,0,l), +(463,0,l), +(569,517,l), +(534,517,l), +(471,208,l), +(444,30,l), +(435,30,l), +(402,208,l), +(331,517,l), +(285,517,l), +(217,208,l), +(185,30,l), +(177,30,l), +(148,208,l), +(85,517,l), +(49,517,l), +(155,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +0, +1 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +0, +15 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = top; +pos = (310,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(255,0,l), +(302,300,l), +(308,300,l), +(355,0,l), +(605,0,l), +(727,544,l), +(538,544,l), +(472,188,l), +(467,188,l), +(417,544,l), +(211,544,l), +(158,191,l), +(150,191,l), +(88,544,l), +(-110,544,l), +(10,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(269,0,l), +(290,200,l), +(300,320,l), +(312,320,l), +(322,200,l), +(343,0,l), +(520,0,l), +(608,544,l), +(442,544,l), +(427,319,l), +(420,194,l), +(408,194,l), +(400,319,l), +(381,544,l), +(245,544,l), +(222,319,l), +(216,197,l), +(204,197,l), +(196,319,l), +(182,544,l), +(10,544,l), +(95,0,l) +); +} +); +width = 618; +} +); +unicode = 119; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/wacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/wacute.glyph new file mode 100644 index 00000000..06debae1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/wacute.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = wacute; +kernRight = w; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (39,-155); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (49,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 7811; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/wcircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/wcircumflex.glyph new file mode 100644 index 00000000..369324c2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/wcircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = wcircumflex; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (0,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (1,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 373; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/wdieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/wdieresis.glyph new file mode 100644 index 00000000..86f8e415 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/wdieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = wdieresis; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (0,-155); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (1,-134); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 7813; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/wdieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/wdieresis.ss01.glyph new file mode 100644 index 00000000..7aa10e66 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/wdieresis.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = wdieresis.ss01; +kernRight = w; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (-1,-155); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (1,-134); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/wgrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/wgrave.glyph new file mode 100644 index 00000000..4dfe3fb2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/wgrave.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = wgrave; +kernRight = w; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = w; +}, +{ +pos = (-40,-155); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = w; +}, +{ +pos = (-48,-134); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 7809; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/whiteC_ircle.glyph b/sources/MonaSansMono.glyphspackage/glyphs/whiteC_ircle.glyph new file mode 100644 index 00000000..31ef574d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/whiteC_ircle.glyph @@ -0,0 +1,98 @@ +{ +glyphname = whiteCircle; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(487,66,o), +(608,185,o), +(608,363,cs), +(608,541,o), +(487,660,o), +(308,660,cs), +(130,660,o), +(10,541,o), +(10,363,cs), +(10,185,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(146,91,o), +(37,201,o), +(37,363,cs), +(37,525,o), +(146,636,o), +(308,636,cs), +(471,636,o), +(580,525,o), +(580,363,cs), +(580,201,o), +(471,91,o), +(308,91,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (309,365); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,192,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(135,655,o), +(9,538,o), +(9,365,cs), +(9,192,o), +(135,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,135,o), +(74,227,o), +(74,365,cs), +(74,504,o), +(169,596,o), +(309,596,cs), +(448,596,o), +(543,504,o), +(543,365,cs), +(543,227,o), +(449,135,o), +(309,135,cs) +); +} +); +width = 618; +} +); +unicode = 9675; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/whiteF_rowningF_ace.glyph b/sources/MonaSansMono.glyphspackage/glyphs/whiteF_rowningF_ace.glyph new file mode 100644 index 00000000..9d9711d2 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/whiteF_rowningF_ace.glyph @@ -0,0 +1,318 @@ +{ +glyphname = whiteFrowningFace; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(527,-10,o), +(684,140,o), +(684,366,cs), +(684,590,o), +(527,739,o), +(310,739,cs), +(93,739,o), +(-65,590,o), +(-65,366,cs), +(-65,140,o), +(93,-10,o), +(310,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(102,156,l), +(133,235,o), +(212,285,o), +(308,285,cs), +(407,285,o), +(486,235,o), +(515,156,c), +(549,156,l), +(516,254,o), +(429,316,o), +(308,316,cs), +(189,316,o), +(101,254,o), +(69,156,c) +); +}, +{ +closed = 1; +nodes = ( +(112,19,o), +(-32,158,o), +(-32,366,cs), +(-32,572,o), +(112,710,o), +(310,710,cs), +(507,710,o), +(651,572,o), +(651,366,cs), +(651,158,o), +(507,19,o), +(310,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,412,o), +(281,431,o), +(281,458,cs), +(281,485,o), +(260,504,o), +(233,504,cs), +(206,504,o), +(185,485,o), +(185,458,cs), +(185,431,o), +(206,412,o), +(233,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(414,412,o), +(435,431,o), +(435,458,cs), +(435,485,o), +(414,504,o), +(387,504,cs), +(360,504,o), +(339,485,o), +(339,458,cs), +(339,431,o), +(360,412,o), +(387,412,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +14 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +5 +); +stem = -2; +target = ( +2, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +3, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(527,-10,o), +(688,143,o), +(688,367,cs), +(688,585,o), +(527,739,o), +(309,739,cs), +(91,739,o), +(-70,586,o), +(-70,367,cs), +(-70,143,o), +(91,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,191,l), +(180,235,o), +(239,265,o), +(309,265,cs), +(375,265,o), +(436,238,o), +(466,191,c), +(529,191,l), +(500,275,o), +(411,322,o), +(309,322,cs), +(207,322,o), +(118,275,o), +(89,191,c) +); +}, +{ +closed = 1; +nodes = ( +(128,63,o), +(7,185,o), +(7,367,cs), +(7,546,o), +(128,666,o), +(309,666,cs), +(490,666,o), +(611,546,o), +(611,367,cs), +(611,185,o), +(490,63,o), +(309,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,403,o), +(280,424,o), +(280,454,cs), +(280,484,o), +(257,505,o), +(227,505,cs), +(197,505,o), +(173,484,o), +(173,454,cs), +(173,424,o), +(197,403,o), +(227,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(423,403,o), +(446,424,o), +(446,454,cs), +(446,484,o), +(423,505,o), +(393,505,cs), +(363,505,o), +(339,484,o), +(339,454,cs), +(339,424,o), +(363,403,o), +(393,403,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 618; +} +); +metricLeft = copyright; +metricRight = copyright; +unicode = 9785; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/whiteS_milingF_ace.glyph b/sources/MonaSansMono.glyphspackage/glyphs/whiteS_milingF_ace.glyph new file mode 100644 index 00000000..53620892 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/whiteS_milingF_ace.glyph @@ -0,0 +1,362 @@ +{ +glyphname = whiteSmilingFace; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(527,-10,o), +(684,140,o), +(684,366,cs), +(684,590,o), +(527,739,o), +(310,739,cs), +(93,739,o), +(-65,590,o), +(-65,366,cs), +(-65,140,o), +(93,-10,o), +(310,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(447,105,o), +(542,187,o), +(560,311,c), +(596,311,l), +(596,326,l), +(487,326,l), +(487,311,l), +(526,311,l), +(514,206,o), +(425,136,o), +(308,136,cs), +(194,136,o), +(104,206,o), +(91,311,c), +(132,311,l), +(132,326,l), +(23,326,l), +(23,311,l), +(58,311,l), +(75,187,o), +(171,105,o), +(308,105,cs) +); +}, +{ +closed = 1; +nodes = ( +(112,19,o), +(-32,158,o), +(-32,366,cs), +(-32,572,o), +(112,710,o), +(310,710,cs), +(507,710,o), +(651,572,o), +(651,366,cs), +(651,158,o), +(507,19,o), +(310,19,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,412,o), +(281,431,o), +(281,458,cs), +(281,485,o), +(260,504,o), +(233,504,cs), +(206,504,o), +(185,485,o), +(185,458,cs), +(185,431,o), +(206,412,o), +(233,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(414,412,o), +(435,431,o), +(435,458,cs), +(435,485,o), +(414,504,o), +(387,504,cs), +(360,504,o), +(339,485,o), +(339,458,cs), +(339,431,o), +(360,412,o), +(387,412,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +10 +); +stem = -2; +target = ( +1, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +16 +); +stem = -2; +target = ( +1, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +3, +5 +); +stem = -2; +target = ( +3, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +3, +8 +); +stem = -2; +target = ( +3, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +4, +8 +); +stem = -2; +target = ( +4, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +17 +); +stem = -2; +target = ( +1, +14 +); +type = Stem; +} +); +}; +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(527,-10,o), +(688,143,o), +(688,367,cs), +(688,585,o), +(527,739,o), +(309,739,cs), +(91,739,o), +(-70,586,o), +(-70,367,cs), +(-70,143,o), +(91,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(426,124,o), +(519,195,o), +(538,297,c), +(563,297,l), +(563,332,l), +(437,332,l), +(437,297,l), +(469,297,l), +(451,232,o), +(390,191,o), +(309,191,cs), +(228,191,o), +(167,232,o), +(149,297,c), +(181,297,l), +(181,332,l), +(55,332,l), +(55,297,l), +(80,297,l), +(99,195,o), +(192,124,o), +(309,124,cs) +); +}, +{ +closed = 1; +nodes = ( +(128,63,o), +(7,185,o), +(7,367,cs), +(7,546,o), +(128,666,o), +(309,666,cs), +(490,666,o), +(611,546,o), +(611,367,cs), +(611,185,o), +(490,63,o), +(309,63,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,403,o), +(280,424,o), +(280,454,cs), +(280,484,o), +(257,505,o), +(227,505,cs), +(197,505,o), +(173,484,o), +(173,454,cs), +(173,424,o), +(197,403,o), +(227,403,cs) +); +}, +{ +closed = 1; +nodes = ( +(423,403,o), +(446,424,o), +(446,454,cs), +(446,484,o), +(423,505,o), +(393,505,cs), +(363,505,o), +(339,484,o), +(339,454,cs), +(339,424,o), +(363,403,o), +(393,403,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = copyright; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = copyright; +}; +width = 618; +} +); +metricLeft = copyright; +metricRight = copyright; +unicode = 9786; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/won.glyph b/sources/MonaSansMono.glyphspackage/glyphs/won.glyph new file mode 100644 index 00000000..9dfbb309 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/won.glyph @@ -0,0 +1,96 @@ +{ +glyphname = won; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(140,0,l), +(257,486,l), +(307,692,l), +(313,692,l), +(362,486,l), +(479,0,l), +(539,0,l), +(715,729,l), +(673,729,l), +(557,225,l), +(513,33,l), +(507,33,l), +(461,224,l), +(340,729,l), +(280,729,l), +(158,222,l), +(113,33,l), +(107,33,l), +(63,225,l), +(-53,729,l), +(-95,729,l), +(81,0,l) +); +}, +{ +closed = 1; +nodes = ( +(734,348,l), +(734,382,l), +(-114,382,l), +(-114,348,l) +); +} +); +width = 619; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(288,307,l), +(305,580,l), +(317,580,l), +(333,307,l), +(360,0,l), +(641,0,l), +(763,729,l), +(558,729,l), +(521,333,l), +(506,139,l), +(494,139,l), +(476,333,l), +(434,729,l), +(188,729,l), +(148,333,l), +(132,141,l), +(120,141,l), +(103,333,l), +(61,729,l), +(-144,729,l), +(-22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(779,270,l), +(779,406,l), +(-161,406,l), +(-161,270,l) +); +} +); +width = 618; +} +); +unicode = 8361; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/x.glyph b/sources/MonaSansMono.glyphspackage/glyphs/x.glyph new file mode 100644 index 00000000..fae67008 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/x.glyph @@ -0,0 +1,173 @@ +{ +glyphname = x; +kernLeft = x; +kernRight = x; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(117,0,l), +(308,244,l), +(312,244,l), +(498,0,l), +(541,0,l), +(334,271,l), +(519,517,l), +(477,517,l), +(313,298,l), +(309,298,l), +(142,517,l), +(99,517,l), +(287,270,l), +(76,0,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(263,189,l), +(305,250,l), +(315,250,l), +(356,189,l), +(502,0,l), +(550,0,l), +(336,271,l), +(528,517,l), +(482,517,l), +(367,367,l), +(316,291,l), +(306,291,l), +(251,367,l), +(136,517,l), +(90,517,l), +(284,271,l), +(67,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (309,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,l), +(265,102,l), +(303,170,l), +(309,170,l), +(346,102,l), +(409,0,l), +(634,0,l), +(442,282,l), +(617,544,l), +(400,544,l), +(350,459,l), +(316,395,l), +(310,395,l), +(276,459,l), +(227,544,l), +(0,544,l), +(181,277,l), +(-17,0,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(216,0,l), +(280,118,l), +(300,190,l), +(313,190,l), +(333,118,l), +(392,0,l), +(598,0,l), +(443,282,l), +(583,544,l), +(385,544,l), +(337,440,l), +(320,375,l), +(307,375,l), +(290,440,l), +(243,544,l), +(35,544,l), +(181,277,l), +(20,0,l) +); +} +); +width = 618; +} +); +unicode = 120; +userData = { +KernOnName = x; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/y.glyph b/sources/MonaSansMono.glyphspackage/glyphs/y.glyph new file mode 100644 index 00000000..d3e901ed --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/y.glyph @@ -0,0 +1,202 @@ +{ +glyphname = y; +kernLeft = y; +kernRight = y; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (411,0); +}, +{ +name = top; +pos = (309,517); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(165,-167,ls), +(235,-167,o), +(267,-138,o), +(291,-77,cs), +(529,517,l), +(492,517,l), +(345,145,l), +(317,73,l), +(313,73,l), +(283,145,l), +(128,517,l), +(88,517,l), +(302,23,l), +(302,40,l), +(260,-65,ls), +(241,-113,o), +(215,-135,o), +(163,-135,cs), +(116,-135,l), +(116,-167,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(152,-167,ls), +(227,-167,o), +(260,-138,o), +(287,-76,cs), +(546,517,l), +(508,517,l), +(379,223,l), +(321,70,l), +(311,70,l), +(247,223,l), +(110,517,l), +(70,517,l), +(302,23,l), +(302,39,l), +(256,-66,ls), +(234,-116,o), +(209,-135,o), +(151,-135,cs), +(100,-135,l), +(100,-167,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +13 +); +stem = -2; +target = ( +0, +20 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +17 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (511,0); +}, +{ +name = top; +pos = (309,544); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(178,-167,ls), +(279,-167,o), +(359,-137,o), +(406,-4,cs), +(603,544,l), +(398,544,l), +(353,376,ls), +(341,330,o), +(329,285,o), +(318,220,c), +(311,220,l), +(299,285,o), +(286,330,o), +(273,376,cs), +(225,544,l), +(15,544,l), +(228,25,l), +(228,70,l), +(216,38,ls), +(203,4,o), +(181,-11,o), +(140,-11,cs), +(71,-11,l), +(71,-167,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(178,-167,ls), +(279,-167,o), +(358,-137,o), +(406,-4,cs), +(603,544,l), +(398,544,l), +(330,290,l), +(321,190,l), +(308,190,l), +(298,290,l), +(225,544,l), +(15,544,l), +(235,8,l), +(235,88,l), +(216,38,ls), +(203,4,o), +(181,-11,o), +(140,-11,cs), +(71,-11,l), +(71,-167,l) +); +} +); +width = 618; +} +); +unicode = 121; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/yacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/yacute.glyph new file mode 100644 index 00000000..59cdecb3 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/yacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = yacute; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (39,-155); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (48,-134); +ref = acutecomb; +} +); +width = 618; +} +); +unicode = 253; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ycircumflex.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ycircumflex.glyph new file mode 100644 index 00000000..f5cad159 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ycircumflex.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ycircumflex; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (0,-155); +ref = circumflexcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (0,-134); +ref = circumflexcomb; +} +); +width = 618; +} +); +unicode = 375; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ydieresis.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ydieresis.glyph new file mode 100644 index 00000000..9e5d8c4f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ydieresis.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ydieresis; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (0,-155); +ref = dieresiscomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (0,-134); +ref = dieresiscomb; +} +); +width = 618; +} +); +unicode = 255; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ydieresis.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ydieresis.ss01.glyph new file mode 100644 index 00000000..5ebcee1f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ydieresis.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ydieresis.ss01; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (-1,-155); +ref = dieresiscomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (0,-134); +ref = dieresiscomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ydotbelow.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ydotbelow.glyph new file mode 100644 index 00000000..2d6ff728 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ydotbelow.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = ydotbelow; +kernLeft = y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (102,0); +ref = dotbelowcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (202,0); +ref = dotbelowcomb; +} +); +width = 618; +} +); +unicode = 7925; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ydotbelow.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ydotbelow.ss01.glyph new file mode 100644 index 00000000..cdade6f1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ydotbelow.ss01.glyph @@ -0,0 +1,33 @@ +{ +color = 6; +glyphname = ydotbelow.ss01; +kernLeft = y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (101,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (201,0); +ref = dotbelowcomb.ss01; +} +); +width = 618; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/yen.glyph b/sources/MonaSansMono.glyphspackage/glyphs/yen.glyph new file mode 100644 index 00000000..a136b7b1 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/yen.glyph @@ -0,0 +1,164 @@ +{ +glyphname = yen; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(328,0,l), +(328,159,l), +(516,159,l), +(516,192,l), +(328,192,l), +(328,311,l), +(516,311,l), +(516,344,l), +(348,344,l), +(578,729,l), +(537,729,l), +(311,346,l), +(308,346,l), +(81,729,l), +(40,729,l), +(272,344,l), +(101,344,l), +(101,311,l), +(292,311,l), +(292,192,l), +(101,192,l), +(101,159,l), +(292,159,l), +(292,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = Y; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = Y; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +20 +); +stem = -2; +target = ( +0, +21 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +target = ( +0, +17 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +14 +); +stem = -2; +target = ( +d, +o, +w, +n +); +type = TopGhost; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +23 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(407,0,l), +(407,83,l), +(580,83,l), +(580,214,l), +(407,214,l), +(407,276,l), +(580,276,l), +(580,408,l), +(488,408,l), +(654,729,l), +(447,729,l), +(312,435,l), +(303,435,l), +(173,729,l), +(-36,729,l), +(133,408,l), +(39,408,l), +(39,276,l), +(212,276,l), +(212,214,l), +(39,214,l), +(39,83,l), +(212,83,l), +(212,0,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = Y; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = Y; +}; +width = 618; +} +); +unicode = 165; +userData = { +KernOnSpecialSpacing = { +L = symbols; +R = symbols; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ygrave.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ygrave.glyph new file mode 100644 index 00000000..81e69cb5 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ygrave.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ygrave; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (-40,-155); +ref = gravecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (-49,-134); +ref = gravecomb; +} +); +width = 618; +} +); +unicode = 7923; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/yhookabove.glyph b/sources/MonaSansMono.glyphspackage/glyphs/yhookabove.glyph new file mode 100644 index 00000000..b419d0db --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/yhookabove.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = yhookabove; +kernRight = y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (0,-155); +ref = hookabovecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (7,-134); +ref = hookabovecomb; +} +); +width = 618; +} +); +unicode = 7927; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/ytilde.glyph b/sources/MonaSansMono.glyphspackage/glyphs/ytilde.glyph new file mode 100644 index 00000000..5682dad7 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/ytilde.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = ytilde; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = y; +}, +{ +pos = (2,-155); +ref = tildecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = y; +}, +{ +pos = (-1,-134); +ref = tildecomb; +} +); +width = 618; +} +); +unicode = 7929; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/z.glyph b/sources/MonaSansMono.glyphspackage/glyphs/z.glyph new file mode 100644 index 00000000..63c1475a --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/z.glyph @@ -0,0 +1,121 @@ +{ +glyphname = z; +kernLeft = z; +kernRight = z; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,259); +}, +{ +name = top; +pos = (309,517); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(521,0,l), +(521,32,l), +(139,32,l), +(139,42,l), +(227,137,l), +(510,484,l), +(510,517,l), +(108,517,l), +(108,485,l), +(469,485,l), +(469,475,l), +(384,384,l), +(97,33,l), +(97,0,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +2 +); +stem = -2; +target = ( +0, +9 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +0, +6 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = center; +pos = (308,272); +}, +{ +name = top; +pos = (308,544); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,153,l), +(302,153,l), +(302,166,l), +(376,231,l), +(548,411,l), +(548,544,l), +(75,544,l), +(75,391,l), +(303,391,l), +(303,378,l), +(236,321,l), +(57,136,l), +(57,0,l) +); +} +); +width = 619; +} +); +unicode = 122; +userData = { +KernOnName = z; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zacute.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zacute.glyph new file mode 100644 index 00000000..a32993ba --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zacute.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = zacute; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = z; +}, +{ +pos = (39,-155); +ref = acutecomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = z; +}, +{ +pos = (47,-134); +ref = acutecomb; +} +); +width = 619; +} +); +unicode = 378; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zcaron.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zcaron.glyph new file mode 100644 index 00000000..d2823ecb --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zcaron.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = zcaron; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = z; +}, +{ +pos = (0,-155); +ref = caroncomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = z; +}, +{ +pos = (-1,-134); +ref = caroncomb; +} +); +width = 619; +} +); +unicode = 382; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zdotaccent.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zdotaccent.glyph new file mode 100644 index 00000000..0fbe676b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zdotaccent.glyph @@ -0,0 +1,35 @@ +{ +color = 6; +glyphname = zdotaccent; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = z; +}, +{ +pos = (-1,-155); +ref = dotaccentcomb; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = z; +}, +{ +pos = (-8,-134); +ref = dotaccentcomb; +} +); +width = 619; +} +); +unicode = 380; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zdotaccent.ss01.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zdotaccent.ss01.glyph new file mode 100644 index 00000000..56fa400f --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zdotaccent.ss01.glyph @@ -0,0 +1,34 @@ +{ +color = 6; +glyphname = zdotaccent.ss01; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = m019; +shapes = ( +{ +ref = z; +}, +{ +pos = (-1,-155); +ref = dotaccentcomb.ss01; +} +); +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +ref = z; +}, +{ +pos = (-2,-134); +ref = dotaccentcomb.ss01; +} +); +width = 619; +} +); +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zero.blackC_ircled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zero.blackC_ircled.glyph new file mode 100644 index 00000000..462fabdc --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zero.blackC_ircled.glyph @@ -0,0 +1,332 @@ +{ +color = 0; +glyphname = zero.blackCircled; +layers = ( +{ +anchors = ( +{ +name = center; +pos = (308,363); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,-10,o), +(748,140,o), +(748,363,cs), +(748,587,o), +(597,736,o), +(372,736,cs), +(148,736,o), +(-3,587,o), +(-3,363,cs), +(-3,140,o), +(148,-10,o), +(372,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,486,l), +(271,486,l), +(271,512,l), +(287,512,ls), +(345,512,o), +(367,540,o), +(371,582,c), +(405,582,l), +(405,149,l), +(371,149,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(488,66,o), +(608,186,o), +(608,363,cs), +(608,542,o), +(488,661,o), +(308,661,cs), +(130,661,o), +(10,542,o), +(10,363,cs), +(10,186,o), +(130,66,o), +(308,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(237,189,o), +(191,248,o), +(191,365,cs), +(191,484,o), +(239,541,o), +(309,541,cs), +(382,541,o), +(428,482,o), +(428,365,cs), +(428,245,o), +(380,189,o), +(309,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(373,213,o), +(399,270,o), +(399,365,cs), +(399,460,o), +(373,517,o), +(309,517,cs), +(246,517,o), +(220,460,o), +(220,365,cs), +(220,270,o), +(246,213,o), +(309,213,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +112, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +529, +23 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +520, +33 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +105, +21 +); +stem = -2; +target = ( +u, +p +); +type = BottomGhost; +}, +{ +horizontal = 1; +options = 0; +place = ( +527, +31 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +482, +40 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 1; +options = 0; +place = ( +0, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +}, +{ +horizontal = 0; +options = 0; +place = ( +-18, +0 +); +stem = -2; +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = center; +pos = (308,365); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(602,-9,o), +(766,141,o), +(766,365,cs), +(766,589,o), +(602,739,o), +(379,739,cs), +(155,739,o), +(-9,589,o), +(-9,365,cs), +(-9,141,o), +(155,-9,o), +(379,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,405,l), +(225,405,l), +(225,502,l), +(245,502,ls), +(300,502,o), +(344,534,o), +(349,582,c), +(468,582,l), +(468,149,l), +(341,149,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(482,75,o), +(609,191,o), +(609,365,cs), +(609,538,o), +(482,655,o), +(309,655,cs), +(136,655,o), +(9,538,o), +(9,365,cs), +(9,191,o), +(136,75,o), +(309,75,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,194,o), +(177,265,o), +(177,366,cs), +(177,483,o), +(229,538,o), +(308,538,cs), +(400,538,o), +(441,467,o), +(441,366,cs), +(441,249,o), +(388,194,o), +(308,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(323,277,o), +(342,284,o), +(342,366,cs), +(342,449,o), +(323,456,o), +(308,456,cs), +(295,456,o), +(276,449,o), +(276,366,cs), +(276,283,o), +(295,277,o), +(308,277,cs) +); +} +); +width = 618; +} +); +unicode = 9471; +userData = { +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zero.circled.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zero.circled.glyph new file mode 100644 index 00000000..8d790b3e --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zero.circled.glyph @@ -0,0 +1,160 @@ +{ +color = 0; +glyphname = zero.circled; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(559,140,o), +(559,363,cs), +(559,587,o), +(408,736,o), +(183,736,cs), +(-41,736,o), +(-192,587,o), +(-192,363,cs), +(-192,140,o), +(-41,-10,o), +(183,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(-20,21,o), +(-158,159,o), +(-158,363,cs), +(-158,567,o), +(-20,706,o), +(183,706,cs), +(387,706,o), +(525,567,o), +(525,363,cs), +(525,159,o), +(387,21,o), +(183,21,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,149,l), +(216,582,l), +(182,582,l), +(178,540,o), +(156,512,o), +(98,512,cs), +(82,512,l), +(82,486,l), +(182,486,l), +(182,149,l) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (89,189); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -50; +width = 55; +}; +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(415,-9,o), +(579,141,o), +(579,365,cs), +(579,589,o), +(415,739,o), +(192,739,cs), +(-32,739,o), +(-196,589,o), +(-196,365,cs), +(-196,141,o), +(-32,-9,o), +(192,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(10,68,o), +(-112,187,o), +(-112,365,cs), +(-112,544,o), +(11,663,o), +(192,663,cs), +(372,663,o), +(495,544,o), +(495,365,cs), +(495,187,o), +(373,68,o), +(192,68,cs) +); +}, +{ +closed = 1; +nodes = ( +(299,149,l), +(299,582,l), +(180,582,l), +(175,534,o), +(131,502,o), +(76,502,cs), +(56,502,l), +(56,405,l), +(172,405,l), +(172,149,l) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = whiteCircle; +}, +{ +pos = (89,191); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -450; +width = 50; +}; +}; +width = 618; +} +); +unicode = 9450; +userData = { +RMXScaler = { +source = one; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zero.dnom.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zero.dnom.glyph new file mode 100644 index 00000000..58d4ec43 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zero.dnom.glyph @@ -0,0 +1,169 @@ +{ +glyphname = zero.dnom; +kernLeft = zero.dnom; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(301,-5,o), +(356,60,o), +(356,198,cs), +(356,334,o), +(303,401,o), +(220,401,cs), +(138,401,o), +(83,336,o), +(83,198,cs), +(83,63,o), +(136,-5,o), +(220,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(146,23,o), +(116,89,o), +(116,198,cs), +(116,307,o), +(146,373,o), +(220,373,cs), +(293,373,o), +(324,307,o), +(324,198,cs), +(324,89,o), +(293,23,o), +(220,23,cs) +); +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(310,-5,o), +(372,56,o), +(372,187,cs), +(372,299,o), +(324,379,o), +(219,379,cs), +(128,379,o), +(66,318,o), +(66,187,cs), +(66,74,o), +(114,-5,o), +(219,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,88,o), +(179,94,o), +(179,187,cs), +(179,280,o), +(201,285,o), +(219,285,cs), +(237,285,o), +(258,279,o), +(258,187,cs), +(258,94,o), +(237,88,o), +(219,88,cs) +); +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +}; +width = 618; +} +); +metricWidth = H; +userData = { +KernOnName = zero.dnom; +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = zero; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zero.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zero.glyph new file mode 100644 index 00000000..1cd9900b --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zero.glyph @@ -0,0 +1,190 @@ +{ +glyphname = zero; +kernLeft = zero; +kernRight = zero; +layers = ( +{ +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-9,o), +(535,110,o), +(535,364,cs), +(535,618,o), +(444,737,o), +(309,737,cs), +(174,737,o), +(83,618,o), +(83,364,cs), +(83,110,o), +(174,-9,o), +(309,-9,cs) +); +}, +{ +closed = 1; +nodes = ( +(176,25,o), +(123,162,o), +(123,364,cs), +(123,566,o), +(176,703,o), +(309,703,cs), +(442,703,o), +(495,566,o), +(495,364,cs), +(495,162,o), +(442,25,o), +(309,25,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,-6,o), +(598,126,o), +(598,362,cs), +(598,583,o), +(496,730,o), +(315,730,cs), +(142,730,o), +(26,598,o), +(26,364,cs), +(26,142,o), +(129,-6,o), +(311,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(260,154,o), +(216,181,o), +(216,363,cs), +(216,544,o), +(260,571,o), +(312,571,cs), +(364,571,o), +(408,544,o), +(408,363,cs), +(408,181,o), +(364,154,o), +(312,154,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-10,o), +(588,108,o), +(588,359,cs), +(588,581,o), +(499,729,o), +(309,729,cs), +(142,729,o), +(30,611,o), +(30,359,cs), +(30,138,o), +(119,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,149,o), +(222,177,o), +(222,359,cs), +(222,542,o), +(264,570,o), +(309,570,cs), +(354,570,o), +(396,542,o), +(396,359,cs), +(396,177,o), +(354,149,o), +(309,149,cs) +); +} +); +width = 618; +} +); +metricRight = "=|"; +unicode = 48; +userData = { +KernOnName = zero; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zero.numr.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zero.numr.glyph new file mode 100644 index 00000000..37a1ef83 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zero.numr.glyph @@ -0,0 +1,111 @@ +{ +color = 6; +glyphname = zero.numr; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,332); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 55; +weight = -40; +width = 55; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zero.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zero.dnom; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,354); +ref = zero.dnom; +} +); +userData = { +RMXScaler = { +height = 52; +weight = -370; +width = 54; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zero.dnom; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zero.dnom; +}; +width = 618; +} +); +userData = { +KernOnSpecialSpacing = { +L = "fraction numbers"; +R = "fraction numbers"; +}; +RMXScaler = { +source = zero; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zero.tf.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zero.tf.glyph new file mode 100644 index 00000000..fd631533 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zero.tf.glyph @@ -0,0 +1,205 @@ +{ +color = 6; +glyphname = zero.tf; +layers = ( +{ +background = { +anchors = ( +{ +name = center; +pos = (318,370); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(538,494,l), +(538,531,l), +(99,224,l), +(99,188,l) +); +}, +{ +closed = 1; +nodes = ( +(463,-10,o), +(561,117,o), +(561,360,cs), +(561,604,o), +(462,729,o), +(319,729,cs), +(172,729,o), +(75,603,o), +(75,360,cs), +(75,115,o), +(175,-10,o), +(320,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,24,o), +(114,149,o), +(114,360,cs), +(114,572,o), +(186,695,o), +(319,695,cs), +(450,695,o), +(523,571,o), +(523,360,cs), +(523,149,o), +(450,24,o), +(319,24,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +ref = _zero.tf.slash; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (318,368); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(448,386,l), +(448,517,l), +(189,337,l), +(189,207,l) +); +}, +{ +closed = 1; +nodes = ( +(489,-6,o), +(604,126,o), +(604,362,cs), +(604,583,o), +(502,730,o), +(321,730,cs), +(148,730,o), +(32,598,o), +(32,364,cs), +(32,142,o), +(135,-6,o), +(317,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,154,o), +(222,181,o), +(222,363,cs), +(222,544,o), +(266,571,o), +(318,571,cs), +(370,571,o), +(414,544,o), +(414,363,cs), +(414,181,o), +(370,154,o), +(318,154,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +ref = _zero.tf.slash; +} +); +width = 618; +} +); +metricWidth = "=600"; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zero.tf.ss08.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zero.tf.ss08.glyph new file mode 100644 index 00000000..779fa1c0 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zero.tf.ss08.glyph @@ -0,0 +1,233 @@ +{ +color = 6; +glyphname = zero.tf.ss08; +layers = ( +{ +background = { +anchors = ( +{ +name = center; +pos = (318,370); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(544,343,l), +(544,376,l), +(93,376,l), +(93,343,l) +); +}, +{ +closed = 1; +nodes = ( +(463,-10,o), +(561,117,o), +(561,360,cs), +(561,604,o), +(462,729,o), +(319,729,cs), +(172,729,o), +(75,603,o), +(75,360,cs), +(75,115,o), +(175,-10,o), +(320,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,24,o), +(114,149,o), +(114,360,cs), +(114,572,o), +(186,695,o), +(319,695,cs), +(450,695,o), +(523,571,o), +(523,360,cs), +(523,149,o), +(450,24,o), +(319,24,cs) +); +} +); +}; +layerId = m019; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +ref = _zero.tf.slash.ss08; +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +3 +); +stem = -2; +target = ( +0, +0 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +2, +11 +); +stem = -2; +target = ( +1, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +1, +5 +); +stem = -2; +target = ( +2, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +2, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +2, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +background = { +anchors = ( +{ +name = center; +pos = (318,368); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(490,304,l), +(490,420,l), +(147,420,l), +(147,304,l) +); +}, +{ +closed = 1; +nodes = ( +(489,-6,o), +(604,126,o), +(604,362,cs), +(604,583,o), +(502,730,o), +(321,730,cs), +(148,730,o), +(32,598,o), +(32,364,cs), +(32,142,o), +(135,-6,o), +(317,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,154,o), +(222,181,o), +(222,363,cs), +(222,544,o), +(266,571,o), +(318,571,cs), +(370,571,o), +(414,544,o), +(414,363,cs), +(414,181,o), +(370,154,o), +(318,154,cs) +); +} +); +}; +layerId = m020; +shapes = ( +{ +alignment = 1; +ref = _zero.tf.base; +}, +{ +ref = _zero.tf.slash.ss08; +} +); +width = 618; +} +); +metricWidth = zero.tf; +userData = { +KernOnSpecialSpacing = { +L = NoKerning; +R = NoKerning; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zeroinferior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zeroinferior.glyph new file mode 100644 index 00000000..f62b0a2d --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zeroinferior.glyph @@ -0,0 +1,181 @@ +{ +glyphname = zeroinferior; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (219,174); +} +); +layerId = m019; +shapes = ( +{ +closed = 1; +nodes = ( +(308,-45,o), +(368,25,o), +(368,176,cs), +(368,324,o), +(310,397,o), +(219,397,cs), +(130,397,o), +(70,326,o), +(70,176,cs), +(70,28,o), +(128,-45,o), +(219,-45,cs) +); +}, +{ +closed = 1; +nodes = ( +(139,-15,o), +(106,57,o), +(106,176,cs), +(106,295,o), +(139,367,o), +(219,367,cs), +(299,367,o), +(332,295,o), +(332,176,cs), +(332,57,o), +(299,-15,o), +(219,-15,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +anchors = ( +{ +name = _center; +pos = (220,174); +} +); +layerId = m020; +shapes = ( +{ +closed = 1; +nodes = ( +(321,-46,o), +(390,25,o), +(390,175,cs), +(390,306,o), +(337,397,o), +(219,397,cs), +(117,397,o), +(49,326,o), +(49,175,cs), +(49,45,o), +(102,-46,o), +(219,-46,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,60,o), +(177,68,o), +(177,175,cs), +(177,283,o), +(201,291,o), +(219,291,cs), +(238,291,o), +(262,283,o), +(262,175,cs), +(262,69,o), +(238,60,o), +(219,60,cs) +); +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +}; +width = 619; +} +); +metricRight = "=|"; +unicode = 8320; +userData = { +KernOnName = zeroinferior; +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = zero; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/glyphs/zerosuperior.glyph b/sources/MonaSansMono.glyphspackage/glyphs/zerosuperior.glyph new file mode 100644 index 00000000..6f601b84 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/glyphs/zerosuperior.glyph @@ -0,0 +1,112 @@ +{ +color = 6; +glyphname = zerosuperior; +layers = ( +{ +layerId = m019; +shapes = ( +{ +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -25; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zeroinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zeroinferior; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +1, +11 +); +stem = -2; +target = ( +0, +11 +); +type = Stem; +}, +{ +horizontal = 1; +options = 0; +origin = ( +0, +5 +); +stem = -2; +target = ( +1, +5 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +0, +8 +); +stem = -2; +target = ( +1, +2 +); +type = Stem; +}, +{ +horizontal = 0; +options = 0; +origin = ( +1, +8 +); +stem = -2; +target = ( +0, +2 +); +type = Stem; +} +); +}; +width = 618; +}, +{ +layerId = m020; +shapes = ( +{ +pos = (0,376); +ref = zeroinferior; +} +); +userData = { +RMXScaler = { +height = 60; +weight = -300; +width = 60; +}; +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = zeroinferior; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = zeroinferior; +}; +width = 619; +} +); +unicode = 8304; +userData = { +KernOnSpecialSpacing = { +L = superiors; +R = superiors; +}; +RMXScaler = { +source = zero; +}; +}; +} diff --git a/sources/MonaSansMono.glyphspackage/order.plist b/sources/MonaSansMono.glyphspackage/order.plist new file mode 100644 index 00000000..1480b200 --- /dev/null +++ b/sources/MonaSansMono.glyphspackage/order.plist @@ -0,0 +1,776 @@ +( +A, +Aacute, +Abreve, +Abreveacute, +Abrevedotbelow, +Abrevegrave, +Abrevehookabove, +Abrevetilde, +Acircumflex, +Acircumflexacute, +Acircumflexdotbelow, +Acircumflexgrave, +Acircumflexhookabove, +Acircumflextilde, +Adieresis, +Adotbelow, +Agrave, +Ahookabove, +Amacron, +Aogonek, +Aring, +Atilde, +AE, +B, +C, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent, +D, +Dcaron, +Dcroat, +Eth, +E, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Ecircumflexacute, +Ecircumflexdotbelow, +Ecircumflexgrave, +Ecircumflexhookabove, +Ecircumflextilde, +Edieresis, +Edotaccent, +Edotbelow, +Egrave, +Ehookabove, +Emacron, +Eogonek, +Etilde, +F, +G, +Gbreve, +Gcaron, +Gcircumflex, +Gcommaaccent, +Gdotaccent, +H, +Hbar, +Hcircumflex, +I, +IJ, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Idotbelow, +Igrave, +Ihookabove, +Imacron, +Iogonek, +Itilde, +J, +Jacute, +Jcircumflex, +K, +Kcommaaccent, +L, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash, +M, +N, +Nacute, +Ncaron, +Ncommaaccent, +Ntilde, +Eng, +O, +Oacute, +Ocircumflex, +Ocircumflexacute, +Ocircumflexdotbelow, +Ocircumflexgrave, +Ocircumflexhookabove, +Ocircumflextilde, +Odieresis, +Odotbelow, +Ograve, +Ohookabove, +Ohorn, +Ohornacute, +Ohorndotbelow, +Ohorngrave, +Ohornhookabove, +Ohorntilde, +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, +Udotbelow, +Ugrave, +Uhookabove, +Uhorn, +Uhornacute, +Uhorndotbelow, +Uhorngrave, +Uhornhookabove, +Uhorntilde, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde, +V, +W, +Wacute, +Wcircumflex, +Wdieresis, +Wgrave, +X, +Y, +Yacute, +Ycircumflex, +Ydieresis, +Ydotbelow, +Ygrave, +Yhookabove, +Ytilde, +Z, +Zacute, +Zcaron, +Zdotaccent, +Abrevedotbelow.ss01, +Acircumflexdotbelow.ss01, +Adieresis.ss01, +Adotbelow.ss01, +Cdotaccent.ss01, +Ecircumflexdotbelow.ss01, +Edieresis.ss01, +Edotaccent.ss01, +Edotbelow.ss01, +Gdotaccent.ss01, +Idieresis.ss01, +Idotaccent.ss01, +Idotbelow.ss01, +Ldot.ss01, +Ocircumflexdotbelow.ss01, +Odieresis.ss01, +Odotbelow.ss01, +Ohorndotbelow.ss01, +Udieresis.ss01, +Udotbelow.ss01, +Uhorndotbelow.ss01, +Wdieresis.ss01, +Ydieresis.ss01, +Ydotbelow.ss01, +Zdotaccent.ss01, +I.ss02, +IJ.ss02, +Iacute.ss02, +Ibreve.ss02, +Icircumflex.ss02, +Idieresis.ss02, +Idotaccent.ss02, +Idotbelow.ss02, +Igrave.ss02, +Ihookabove.ss02, +Imacron.ss02, +Iogonek.ss02, +Itilde.ss02, +G.ss07, +Gbreve.ss07, +Gcaron.ss07, +Gcircumflex.ss07, +Gcommaaccent.ss07, +Gdotaccent.ss07, +Gdotaccent.ss01.ss07, +a, +aacute, +abreve, +abreveacute, +abrevedotbelow, +abrevegrave, +abrevehookabove, +abrevetilde, +acircumflex, +acircumflexacute, +acircumflexdotbelow, +acircumflexgrave, +acircumflexhookabove, +acircumflextilde, +adieresis, +adotbelow, +agrave, +ahookabove, +amacron, +aogonek, +aring, +atilde, +ae, +b, +c, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent, +d, +dcaron, +dcroat, +eth, +e, +eacute, +ebreve, +ecaron, +ecircumflex, +ecircumflexacute, +ecircumflexdotbelow, +ecircumflexgrave, +ecircumflexhookabove, +ecircumflextilde, +edieresis, +edotaccent, +edotbelow, +egrave, +ehookabove, +emacron, +eogonek, +etilde, +f, +g, +gbreve, +gcaron, +gcircumflex, +gcommaaccent, +gdotaccent, +h, +hbar, +hcircumflex, +i, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +idotaccent, +idotbelow, +igrave, +ihookabove, +imacron, +iogonek, +itilde, +ij, +j, +jdotless, +jacute, +jcircumflex, +k, +kcommaaccent, +l, +lacute, +lcaron, +lcommaaccent, +ldot, +lslash, +m, +n, +nacute, +ncaron, +ncommaaccent, +ntilde, +eng, +o, +oacute, +ocircumflex, +ocircumflexacute, +ocircumflexdotbelow, +ocircumflexgrave, +ocircumflexhookabove, +ocircumflextilde, +odieresis, +odotbelow, +ograve, +ohookabove, +ohorn, +ohornacute, +ohorndotbelow, +ohorngrave, +ohornhookabove, +ohorntilde, +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, +udotbelow, +ugrave, +uhookabove, +uhorn, +uhornacute, +uhorndotbelow, +uhorngrave, +uhornhookabove, +uhorntilde, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde, +v, +w, +wacute, +wcircumflex, +wdieresis, +wgrave, +x, +y, +yacute, +ycircumflex, +ydieresis, +ydotbelow, +ygrave, +yhookabove, +ytilde, +z, +zacute, +zcaron, +zdotaccent, +idotbelow.dotless, +iogonek.dotless, +abrevedotbelow.ss01, +acircumflexdotbelow.ss01, +adotbelow.ss01, +cdotaccent.ss01, +ecircumflexdotbelow.ss01, +edieresis.ss01, +edotaccent.ss01, +edotbelow.ss01, +gdotaccent.ss01, +i.ss01, +idieresis.ss01, +idotaccent.ss01, +idotbelow.ss01, +j.ss01, +ldot.ss01, +ocircumflexdotbelow.ss01, +odieresis.ss01, +odotbelow.ss01, +ohorndotbelow.ss01, +udieresis.ss01, +udotbelow.ss01, +uhorndotbelow.ss01, +wdieresis.ss01, +ydieresis.ss01, +ydotbelow.ss01, +zdotaccent.ss01, +l.ss03, +lacute.ss03, +lcaron.ss03, +lcommaaccent.ss03, +ldot.ss03, +lslash.ss03, +l.ss04, +lacute.ss04, +lcaron.ss04, +lcommaaccent.ss04, +ldot.ss04, +lslash.ss04, +a.ss05, +aacute.ss05, +abreve.ss05, +abreveacute.ss05, +abrevedotbelow.ss05, +abrevegrave.ss05, +abrevehookabove.ss05, +abrevetilde.ss05, +acircumflex.ss05, +acircumflexacute.ss05, +acircumflexdotbelow.ss05, +acircumflexgrave.ss05, +acircumflexhookabove.ss05, +acircumflextilde.ss05, +adieresis.ss05, +adotbelow.ss05, +agrave.ss05, +ahookabove.ss05, +amacron.ss05, +aogonek.ss05, +aring.ss05, +atilde.ss05, +g.ss06, +gbreve.ss06, +gcaron.ss06, +gcircumflex.ss06, +gcommaaccent.ss06, +gdotaccent.ss06, +idotbelow.dotless.ss01, +adieresis.ss05.ss01, +adotbelow.ss05.ss01, +ldot.ss01.ss03, +ldot.ss01.ss04, +gdotaccent.ss01.ss06, +f_f.liga, +f_f_i.liga, +f_y.liga, +fi, +fl, +t_i.liga, +t_t.liga, +fi.ss01, +f_f_i.liga.ss01, +t_i.liga.ss01, +ordfeminine, +ordmasculine, +mu, +pi, +zero, +one, +two, +three, +four, +five, +six, +seven, +eight, +nine, +zero.blackCircled, +one.blackCircled, +two.blackCircled, +three.blackCircled, +four.blackCircled, +five.blackCircled, +six.blackCircled, +seven.blackCircled, +eight.blackCircled, +nine.blackCircled, +zero.circled, +one.circled, +two.circled, +three.circled, +four.circled, +five.circled, +six.circled, +seven.circled, +eight.circled, +nine.circled, +zero.tf, +one.tf, +two.tf, +three.tf, +four.tf, +five.tf, +six.tf, +seven.tf, +eight.tf, +nine.tf, +zero.tf.ss08, +_zero.tf.base, +zero.dnom, +one.dnom, +two.dnom, +three.dnom, +four.dnom, +five.dnom, +six.dnom, +seven.dnom, +eight.dnom, +nine.dnom, +zero.numr, +one.numr, +two.numr, +three.numr, +four.numr, +five.numr, +six.numr, +seven.numr, +eight.numr, +nine.numr, +fraction, +onehalf, +onequarter, +threequarters, +oneeighth, +threeeighths, +fiveeighths, +seveneighths, +zeroinferior, +oneinferior, +twoinferior, +threeinferior, +fourinferior, +fiveinferior, +sixinferior, +seveninferior, +eightinferior, +nineinferior, +zerosuperior, +onesuperior, +twosuperior, +threesuperior, +foursuperior, +fivesuperior, +sixsuperior, +sevensuperior, +eightsuperior, +ninesuperior, +space, +nbspace, +.notdef, +period, +comma, +colon, +semicolon, +ellipsis, +exclam, +exclamdown, +question, +questiondown, +periodcentered, +bullet, +asterisk, +numbersign, +slash, +backslash, +exclamdown.case, +questiondown.case, +periodcentered.loclCAT, +period.ss01, +comma.ss01, +colon.ss01, +semicolon.ss01, +ellipsis.ss01, +exclam.ss01, +exclamdown.ss01, +question.ss01, +questiondown.ss01, +periodcentered.ss01, +bullet.ss01, +periodcentered.loclCAT.case, +exclamdown.ss01.case, +questiondown.ss01.case, +periodcentered.loclCAT.ss01, +periodcentered.loclCAT.case.ss01, +hyphen, +endash, +emdash, +underscore, +hyphen.case, +endash.case, +emdash.case, +parenleft, +parenright, +braceleft, +braceright, +bracketleft, +bracketright, +parenleft.case, +parenright.case, +braceleft.case, +braceright.case, +bracketleft.case, +bracketright.case, +quotesinglbase, +quotedblbase, +quotedblleft, +quotedblright, +quoteleft, +quoteright, +guillemetleft, +guillemetright, +guilsinglleft, +guilsinglright, +quotedbl, +quotesingle, +quotesinglbase.ss01, +quotedblbase.ss01, +quotedblleft.ss01, +quotedblright.ss01, +quoteleft.ss01, +quoteright.ss01, +florin, +baht, +whiteFrowningFace, +whiteSmilingFace, +checkmark, +apple, +at, +ampersand, +paragraph, +section, +copyright, +registered, +published, +trademark, +degree, +bar, +brokenbar, +literSign, +estimated, +numero, +bitcoin, +cent, +currency, +dollar, +euro, +liraTurkish, +rupeeIndian, +sheqel, +sterling, +tenge, +won, +yen, +peseta, +plus, +minus, +multiply, +divide, +equal, +notequal, +greater, +less, +greaterequal, +lessequal, +plusminus, +approxequal, +logicalnot, +asciitilde, +asciicircum, +infinity, +emptyset, +integral, +product, +summation, +radical, +percent, +perthousand, +upArrow, +rightArrow, +downArrow, +leftArrow, +leftRightArrow, +blackCircle, +whiteCircle, +dottedCircle, +dieresiscomb, +dotaccentcomb, +gravecomb, +acutecomb, +hungarumlautcomb, +circumflexcomb, +caroncomb, +brevecomb, +ringcomb, +tildecomb, +macroncomb, +hookabovecomb, +commaturnedabovecomb, +horncomb, +dotbelowcomb, +commaaccentcomb, +cedillacomb, +ogonekcomb, +strokeshortcomb, +strokelongcomb, +slashshortcomb, +slashlongcomb, +brevecomb_acutecomb, +brevecomb_gravecomb, +brevecomb_hookabovecomb, +brevecomb_tildecomb, +circumflexcomb_acutecomb, +circumflexcomb_gravecomb, +circumflexcomb_hookabovecomb, +circumflexcomb_tildecomb, +strokeshortcomb.case, +slashshortcomb.case, +slashlongcomb.case, +dieresiscomb.ss01, +dotaccentcomb.ss01, +dotbelowcomb.ss01, +caroncomb.alt, +cedillacomb.T, +ogonekcomb.e, +strokeshortcomb.t, +strokeshortcomb.case.T, +dieresis, +dotaccent, +grave, +acute, +hungarumlaut, +circumflex, +caron, +breve, +ring, +tilde, +macron, +cedilla, +ogonek, +_B.currency, +_circle, +_Thorn.bowl, +_baht.bar, +_bitcoin.bars, +_copyright.C, +_published.P, +_slash.equal, +_tail.Q, +_zero.tf.slash, +_zero.tf.slash.ss08 +) \ No newline at end of file diff --git a/sources/README.md b/sources/README.md index 29a1ba16..b51c0ae5 100644 --- a/sources/README.md +++ b/sources/README.md @@ -1,18 +1,30 @@ # Build process +### MonaSansVF Build (via Glyphs.app) + +Mona Sans VF is exported from the Glyphs interface directly into the /fonts directory. This is the easiest way to distribute multiple cuts of the variable font. + +1. Open the Mona Sans project in Glyphs.app +2. Use File > Export > Variable Font + +The exported variable font will include the full feature set and axis range of Mona Sans. + +If the fonts aren't in the right directories, the build.sh will try to move them to the right place. + ### Google Fonts Build (`build.sh`) -The `build.sh` script handles building font files that meet Google Fonts specifications and requirements: +The `build.sh` script handles building font files that meet Google Fonts specifications and requirements, and builds into the /googlefonts folder. It also checks to make sure the other fonts are in the right place. ```bash sh sources/build.sh ``` -### MonaSansVF Build (via Glyphs.app) +You'll need gftools and ttfautohint installed. Which you can do via: -For the MonaSansVF version: +```bash +pip3 install gftools +brew install ttfautohint +``` -1. Open the Mona Sans project in Glyphs app -2. Use File > Export > Variable Font +This builds from `MonaSans.glyphspackage`, which is `2.0` the version of the font before optical sizes were added (). This build is significantly different from the current version, and should be removed once google fonts is caught up to the latest. -The exported variable font will include the full feature set and axis range of Mona Sans. \ No newline at end of file diff --git a/sources/build.sh b/sources/build.sh index 6567d923..16ed4e8d 100644 --- a/sources/build.sh +++ b/sources/build.sh @@ -1,15 +1,77 @@ #!/bin/bash # build.sh - Font building script for Mona Sans +# run from the root! set -e # Exit on any error +# Check if running from the correct directory +if [ ! -f "sources/config.yaml" ]; then + echo "Error: Please run this script from the root of the repository." + exit 1 +fi + +echo "Starting Mona Sans Google Fonts build process..." -echo "Starting Mona Sans build process..." # Check for required tools command -v gftools >/dev/null 2>&1 || { echo "Error: gftools is required but not installed. Aborting."; exit 1; } command -v ttfautohint >/dev/null 2>&1 || { echo "Warning: ttfautohint not found. Install for best hinting results."; } -# build +# build googlefonts gftools builder sources/config.yaml -echo "Font files available in the 'googlefonts' directory" \ No newline at end of file +# clean up build artifacts +rm -rf sources/instance_ufos +rm sources/.ninja_log +rm sources/build.ninja + +# remove buggy .woff2 that gftools builder creates +rm -f googlefonts/MonaSans[ital,wdth,wght].woff2 + +echo "Google's Font files available in the 'googlefonts/' directory" + + +echo "Organizing font files..." + +# Create necessary directories if they don't exist +mkdir -p fonts/static/ttf fonts/static/otf fonts/webfonts/static fonts/webfonts/variable fonts/variable + +# Sort Glyphs generated VF (only move if files exist) +if ls fonts/*].woff2 1> /dev/null 2>&1; then + mv fonts/*].woff2 fonts/webfonts/variable/ +fi +if ls fonts/*].woff 1> /dev/null 2>&1; then + mv fonts/*].woff fonts/webfonts/variable/ +fi +if ls fonts/*].ttf 1> /dev/null 2>&1; then + mv fonts/*].ttf fonts/variable/ +fi + +#Sort Glyphs generated static fonts (only move if files exist) +if ls fonts/*.ttf 1> /dev/null 2>&1; then + mv fonts/*.ttf fonts/static/ttf/ +fi +if ls fonts/*.otf 1> /dev/null 2>&1; then + mv fonts/*.otf fonts/static/otf/ +fi +if ls fonts/*.woff2 1> /dev/null 2>&1; then + mv fonts/*.woff2 fonts/webfonts/static/ +fi +if ls fonts/*.woff 1> /dev/null 2>&1; then + mv fonts/*.woff fonts/webfonts/static/ +fi + +#check if there are any fonts in the wrong places +if [ "$(ls -A fonts/*.ttf 2>/dev/null)" ] || [ "$(ls -A fonts/*.otf 2>/dev/null)" ] || [ "$(ls -A fonts/*.woff2 2>/dev/null)" ] || [ "$(ls -A fonts/*.woff 2>/dev/null)" ]; then + echo "!!! Warning: Some font files are still in the 'fonts/' directory. Please check and move them to the appropriate subdirectories." +fi + +#Count files in each directory +echo "File counts by directory:" +echo "Variable TTF: $(ls -1 fonts/variable/*.ttf 2>/dev/null | wc -l)" +echo "Static TTF: $(ls -1 fonts/static/ttf/*.ttf 2>/dev/null | wc -l)" +echo "Static OTF: $(ls -1 fonts/static/otf/*.otf 2>/dev/null | wc -l)" +echo "Variable WOFF2: $(ls -1 fonts/webfonts/variable/*.woff2 2>/dev/null | wc -l)" +echo "Variable WOFF: $(ls -1 fonts/webfonts/variable/*.woff 2>/dev/null | wc -l)" +echo "Static WOFF2: $(ls -1 fonts/webfonts/static/*.woff2 2>/dev/null | wc -l)" +echo "Static WOFF: $(ls -1 fonts/webfonts/static/*.woff 2>/dev/null | wc -l)" + diff --git a/sources/config.yaml b/sources/config.yaml index 791aa524..df3a156e 100644 --- a/sources/config.yaml +++ b/sources/config.yaml @@ -1,15 +1,15 @@ sources: - MonaSans.glyphspackage familyName: "Mona Sans" -outputDir: "../fonts" -buildOTF: True -buildVariable: True -buildWebfont: True -buildTTF: True +outputDir: "../googlefonts" +buildVariable: true +splitItalic: true +buildWebfont: False +buildOTF: False +buildTTF: False axisOrder: - wdth - wght - - ital stat: MonaSans[wdth,wght].ttf: - name: Width